Skip to content

Commit

Permalink
0.13.2. (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
b4rtaz committed Jun 28, 2024
1 parent bd0f449 commit 5193dc9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.13.2

This version adds missing translations for the `variableDefinitions` value editor.

## 0.13.1

This version adds missing translations for the `variableNameValidator` function [#37](https://github.com/nocode-js/sequential-workflow-editor/issues/37).
Expand Down
4 changes: 2 additions & 2 deletions demos/webpack-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"sequential-workflow-model": "^0.2.0",
"sequential-workflow-designer": "^0.21.2",
"sequential-workflow-machine": "^0.4.0",
"sequential-workflow-editor-model": "^0.13.1",
"sequential-workflow-editor": "^0.13.1"
"sequential-workflow-editor-model": "^0.13.2",
"sequential-workflow-editor": "^0.13.2"
},
"devDependencies": {
"ts-loader": "^9.4.2",
Expand Down
2 changes: 2 additions & 0 deletions docs/I18N-KEYS.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ This document lists all the I18N keys used in the Sequential Workflow Editor.
"toolbox.defaultGroupName": "Others",
"variableDefinitions.delete": "Delete",
"variableDefinitions.namePlaceholder": "Variable name",
"variableDefinitions.newVariable": "New variable",
"variableDefinitions.noVariablesDefined": "No variables defined",
"variableDefinitions.valueTypeIsNotAllowed": "Value type is not allowed",
"variableDefinitions.variableNameIsDuplicated": "Variable name is already used",
"variableName.invalidCharacters": "Variable name contains invalid characters",
Expand Down
6 changes: 3 additions & 3 deletions editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sequential-workflow-editor",
"version": "0.13.1",
"version": "0.13.2",
"type": "module",
"main": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
Expand Down Expand Up @@ -46,11 +46,11 @@
"prettier:fix": "prettier --write ./src ./css"
},
"dependencies": {
"sequential-workflow-editor-model": "^0.13.1",
"sequential-workflow-editor-model": "^0.13.2",
"sequential-workflow-model": "^0.2.0"
},
"peerDependencies": {
"sequential-workflow-editor-model": "^0.13.1",
"sequential-workflow-editor-model": "^0.13.2",
"sequential-workflow-model": "^0.2.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ export function variableDefinitionsValueEditor(
item => variableDefinitionItemComponent(item, context),
context,
{
emptyMessage: 'No variables defined'
emptyMessage: context.i18n('variableDefinitions.noVariablesDefined', 'No variables defined')
}
);
list.onChanged.subscribe(onChanged);

const addButton = buttonComponent('New variable', {
const addButton = buttonComponent(context.i18n('variableDefinitions.newVariable', 'New variable'), {
size: 'small',
icon: Icons.add
});
Expand Down
2 changes: 1 addition & 1 deletion model/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sequential-workflow-editor-model",
"version": "0.13.1",
"version": "0.13.2",
"homepage": "https://nocode-js.com/",
"author": {
"name": "NoCode JS",
Expand Down

0 comments on commit 5193dc9

Please sign in to comment.