@operato/process 1.5.2 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/process",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "Webcomponent for business process modeling following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -68,16 +68,16 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@open-wc/scoped-elements": "^2.1.3",
|
|
71
|
-
"@operato/app": "^1.5.
|
|
72
|
-
"@operato/board": "^1.5.
|
|
73
|
-
"@operato/data-grist": "^1.5.
|
|
74
|
-
"@operato/font": "^1.5.
|
|
71
|
+
"@operato/app": "^1.5.4",
|
|
72
|
+
"@operato/board": "^1.5.4",
|
|
73
|
+
"@operato/data-grist": "^1.5.4",
|
|
74
|
+
"@operato/font": "^1.5.4",
|
|
75
75
|
"@operato/graphql": "^1.4.76",
|
|
76
76
|
"@operato/i18n": "^1.4.64",
|
|
77
|
-
"@operato/input": "^1.5.
|
|
77
|
+
"@operato/input": "^1.5.4",
|
|
78
78
|
"@operato/markdown": "^1.4.64",
|
|
79
79
|
"@operato/popup": "^1.5.1",
|
|
80
|
-
"@operato/property-editor": "^1.5.
|
|
80
|
+
"@operato/property-editor": "^1.5.4",
|
|
81
81
|
"@operato/styles": "^1.4.64",
|
|
82
82
|
"@operato/utils": "^1.4.64",
|
|
83
83
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"prettier --write"
|
|
129
129
|
]
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "54a26979d8f6ac219b320f5dce9db5f66a589266"
|
|
132
132
|
}
|
|
@@ -392,5 +392,21 @@ export class OxProcessModeller extends ScopedElementsMixin(LitElement) {
|
|
|
392
392
|
}
|
|
393
393
|
}
|
|
394
394
|
|
|
395
|
+
undoable(): boolean {
|
|
396
|
+
return !!this.scene?.undoable()
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
redoable(): boolean {
|
|
400
|
+
return !!this.scene?.redoable()
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
preserve(): void {
|
|
404
|
+
this.scene?.preserve()
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
hasUnpreservedChanges(): boolean {
|
|
408
|
+
return !!this.scene?.hasUnpreservedChanges()
|
|
409
|
+
}
|
|
410
|
+
|
|
395
411
|
onContextMenu() {}
|
|
396
412
|
}
|