sequential-workflow-designer-svelte 0.20.0 → 0.21.0
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.
|
@@ -12,6 +12,7 @@ export let controlBar = true;
|
|
|
12
12
|
export let theme = "light";
|
|
13
13
|
export let contextMenu = true;
|
|
14
14
|
export let keyboard = void 0;
|
|
15
|
+
export let preferenceStorage = void 0;
|
|
15
16
|
export let undoStackSize = void 0;
|
|
16
17
|
export let undoStack = void 0;
|
|
17
18
|
export let validator = void 0;
|
|
@@ -74,6 +75,7 @@ function init() {
|
|
|
74
75
|
theme,
|
|
75
76
|
contextMenu,
|
|
76
77
|
keyboard,
|
|
78
|
+
preferenceStorage,
|
|
77
79
|
undoStackSize,
|
|
78
80
|
undoStack,
|
|
79
81
|
validator,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
|
-
import { DefinitionWalker, type Definition, type StepsConfiguration, type ToolboxConfiguration, type UndoStack, type ValidatorConfiguration, type UidGenerator, type DesignerExtension, type CustomActionHandler, type StepEditorProvider, type RootEditorProvider, type KeyboardConfiguration, type I18n } from 'sequential-workflow-designer';
|
|
2
|
+
import { DefinitionWalker, type Definition, type StepsConfiguration, type ToolboxConfiguration, type UndoStack, type ValidatorConfiguration, type UidGenerator, type DesignerExtension, type CustomActionHandler, type StepEditorProvider, type RootEditorProvider, type KeyboardConfiguration, type I18n, type PreferenceStorage } from 'sequential-workflow-designer';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
5
5
|
definition: Definition;
|
|
@@ -10,6 +10,7 @@ declare const __propDef: {
|
|
|
10
10
|
theme?: string | undefined;
|
|
11
11
|
contextMenu?: boolean | undefined;
|
|
12
12
|
keyboard?: boolean | KeyboardConfiguration | undefined;
|
|
13
|
+
preferenceStorage?: PreferenceStorage | undefined;
|
|
13
14
|
undoStackSize?: number | undefined;
|
|
14
15
|
undoStack?: UndoStack | undefined;
|
|
15
16
|
validator?: ValidatorConfiguration | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sequential-workflow-designer-svelte",
|
|
3
3
|
"description": "Svelte wrapper for Sequential Workflow Designer component.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.21.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prepare": "cp ../LICENSE LICENSE",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"svelte": "^4.0.0",
|
|
31
|
-
"sequential-workflow-designer": "^0.
|
|
31
|
+
"sequential-workflow-designer": "^0.21.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"sequential-workflow-designer": "^0.
|
|
34
|
+
"sequential-workflow-designer": "^0.21.0",
|
|
35
35
|
"@sveltejs/adapter-static": "^2.0.3",
|
|
36
36
|
"@sveltejs/kit": "^1.20.4",
|
|
37
37
|
"@sveltejs/package": "^2.0.0",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"tslib": "^2.4.1",
|
|
41
41
|
"typescript": "^5.0.0",
|
|
42
42
|
"vite": "^4.4.2",
|
|
43
|
-
"prettier": "^2.
|
|
44
|
-
"prettier-plugin-svelte": "^2.
|
|
43
|
+
"prettier": "^3.2.5",
|
|
44
|
+
"prettier-plugin-svelte": "^3.2.3",
|
|
45
45
|
"@typescript-eslint/eslint-plugin": "^5.47.0",
|
|
46
46
|
"@typescript-eslint/parser": "^5.47.0",
|
|
47
47
|
"eslint": "^8.30.0"
|