Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.14.2

This version adds the `formatPropertyValue` method to the `PropertyValidatorContext` class.

## 0.14.1

This version adds the `formatPropertyValue` method to: `PropertyContext`, `DefaultValueContext`, `ScopedPropertyContext` and `ValueContext` classes.
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.14.1",
"sequential-workflow-editor": "^0.14.1"
"sequential-workflow-editor-model": "^0.14.2",
"sequential-workflow-editor": "^0.14.2"
},
"devDependencies": {
"ts-loader": "^9.4.2",
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.14.1",
"version": "0.14.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.14.1",
"sequential-workflow-editor-model": "^0.14.2",
"sequential-workflow-model": "^0.2.0"
},
"peerDependencies": {
"sequential-workflow-editor-model": "^0.14.1",
"sequential-workflow-editor-model": "^0.14.2",
"sequential-workflow-model": "^0.2.0"
},
"devDependencies": {
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.14.1",
"version": "0.14.2",
"homepage": "https://nocode-js.com/",
"author": {
"name": "NoCode JS",
Expand Down
1 change: 1 addition & 0 deletions model/src/validator/property-validator-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export class PropertyValidatorContext<TValue extends PropertyValue = PropertyVal
protected constructor(private readonly valueContext: ValueContext<ValueModel, TProperties>) {}

public readonly getPropertyValue = this.valueContext.getPropertyValue;
public readonly formatPropertyValue = this.valueContext.formatPropertyValue;
public readonly getSupportedValueTypes = this.valueContext.getValueTypes;
public readonly hasVariable = this.valueContext.hasVariable;
public readonly findFirstUndefinedVariable = this.valueContext.findFirstUndefinedVariable;
Expand Down
Loading