sequential-workflow-designer-svelte 0.19.3 → 0.20.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.
|
@@ -15,9 +15,10 @@ export let keyboard = void 0;
|
|
|
15
15
|
export let undoStackSize = void 0;
|
|
16
16
|
export let undoStack = void 0;
|
|
17
17
|
export let validator = void 0;
|
|
18
|
-
export let uidGenerator = void 0;
|
|
19
18
|
export let definitionWalker = void 0;
|
|
20
19
|
export let extensions = void 0;
|
|
20
|
+
export let i18n = void 0;
|
|
21
|
+
export let uidGenerator = void 0;
|
|
21
22
|
export let customActionHandler = void 0;
|
|
22
23
|
export let stepEditor = null;
|
|
23
24
|
export let nativeStepEditor = null;
|
|
@@ -79,6 +80,7 @@ function init() {
|
|
|
79
80
|
definitionWalker,
|
|
80
81
|
extensions,
|
|
81
82
|
isReadonly,
|
|
83
|
+
i18n,
|
|
82
84
|
uidGenerator,
|
|
83
85
|
customActionHandler
|
|
84
86
|
});
|
|
@@ -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 } 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 } from 'sequential-workflow-designer';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
5
5
|
definition: Definition;
|
|
@@ -13,9 +13,10 @@ declare const __propDef: {
|
|
|
13
13
|
undoStackSize?: number | undefined;
|
|
14
14
|
undoStack?: UndoStack | undefined;
|
|
15
15
|
validator?: ValidatorConfiguration | undefined;
|
|
16
|
-
uidGenerator?: UidGenerator | undefined;
|
|
17
16
|
definitionWalker?: DefinitionWalker | undefined;
|
|
18
17
|
extensions?: DesignerExtension[] | undefined;
|
|
18
|
+
i18n?: I18n | undefined;
|
|
19
|
+
uidGenerator?: UidGenerator | undefined;
|
|
19
20
|
customActionHandler?: CustomActionHandler | undefined;
|
|
20
21
|
/**
|
|
21
22
|
* @description Svelte component that will be used to render the step editor. If this property is set, the `nativeStepEditor` property will be ignored.
|
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.20.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.20.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"sequential-workflow-designer": "^0.
|
|
34
|
+
"sequential-workflow-designer": "^0.20.0",
|
|
35
35
|
"@sveltejs/adapter-static": "^2.0.3",
|
|
36
36
|
"@sveltejs/kit": "^1.20.4",
|
|
37
37
|
"@sveltejs/package": "^2.0.0",
|