Skip to content

Commit 95bcf12

Browse files
authored
0.14.2. (#44)
1 parent 2503075 commit 95bcf12

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.14.2
2+
3+
This version adds the `formatPropertyValue` method to the `PropertyValidatorContext` class.
4+
15
## 0.14.1
26

37
This version adds the `formatPropertyValue` method to: `PropertyContext`, `DefaultValueContext`, `ScopedPropertyContext` and `ValueContext` classes.

demos/webpack-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"sequential-workflow-model": "^0.2.0",
1919
"sequential-workflow-designer": "^0.21.2",
2020
"sequential-workflow-machine": "^0.4.0",
21-
"sequential-workflow-editor-model": "^0.14.1",
22-
"sequential-workflow-editor": "^0.14.1"
21+
"sequential-workflow-editor-model": "^0.14.2",
22+
"sequential-workflow-editor": "^0.14.2"
2323
},
2424
"devDependencies": {
2525
"ts-loader": "^9.4.2",

editor/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sequential-workflow-editor",
3-
"version": "0.14.1",
3+
"version": "0.14.2",
44
"type": "module",
55
"main": "./lib/esm/index.js",
66
"types": "./lib/index.d.ts",
@@ -46,11 +46,11 @@
4646
"prettier:fix": "prettier --write ./src ./css"
4747
},
4848
"dependencies": {
49-
"sequential-workflow-editor-model": "^0.14.1",
49+
"sequential-workflow-editor-model": "^0.14.2",
5050
"sequential-workflow-model": "^0.2.0"
5151
},
5252
"peerDependencies": {
53-
"sequential-workflow-editor-model": "^0.14.1",
53+
"sequential-workflow-editor-model": "^0.14.2",
5454
"sequential-workflow-model": "^0.2.0"
5555
},
5656
"devDependencies": {

model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sequential-workflow-editor-model",
3-
"version": "0.14.1",
3+
"version": "0.14.2",
44
"homepage": "https://nocode-js.com/",
55
"author": {
66
"name": "NoCode JS",

model/src/validator/property-validator-context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export class PropertyValidatorContext<TValue extends PropertyValue = PropertyVal
1212
protected constructor(private readonly valueContext: ValueContext<ValueModel, TProperties>) {}
1313

1414
public readonly getPropertyValue = this.valueContext.getPropertyValue;
15+
public readonly formatPropertyValue = this.valueContext.formatPropertyValue;
1516
public readonly getSupportedValueTypes = this.valueContext.getValueTypes;
1617
public readonly hasVariable = this.valueContext.hasVariable;
1718
public readonly findFirstUndefinedVariable = this.valueContext.findFirstUndefinedVariable;

0 commit comments

Comments
 (0)