sequential-workflow-designer-svelte 0.34.0 → 0.34.1

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.
@@ -1,5 +1,5 @@
1
1
  import { SvelteComponent } from "svelte";
2
- import { DefinitionWalker, type UndoStack, type ValidatorConfiguration, type PlaceholderConfiguration, type UidGenerator, type DesignerExtension, type CustomActionHandler, type StepEditorProvider, type RootEditorProvider, type KeyboardConfiguration, type I18n, type PreferenceStorage } from 'sequential-workflow-designer';
2
+ import { DefinitionWalker, type Definition, type StepsConfiguration, type ToolboxConfiguration, type UndoStack, type ValidatorConfiguration, type PlaceholderConfiguration, 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;
@@ -25,13 +25,13 @@ declare const __propDef: {
25
25
  */ stepEditor?: ConstructorOfATypedSvelteComponent | null | undefined;
26
26
  /**
27
27
  * @description Function that will be used to render the step editor.
28
- */ nativeStepEditor?: StepEditorProvider | null;
28
+ */ nativeStepEditor?: StepEditorProvider | null | undefined;
29
29
  /**
30
30
  * @description Svelte component that will be used to render the root editor. If this property is set, the `nativeRootEditor` property will be ignored.
31
31
  */ rootEditor?: ConstructorOfATypedSvelteComponent | null | undefined;
32
32
  /**
33
33
  * @description Function that will be used to render the root editor.
34
- */ nativeRootEditor?: RootEditorProvider | null;
34
+ */ nativeRootEditor?: RootEditorProvider | null | undefined;
35
35
  isEditorCollapsed?: boolean | undefined;
36
36
  isReadonly?: boolean | undefined;
37
37
  selectedStepId?: string | null | 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.34.0",
4
+ "version": "0.34.1",
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.34.0"
31
+ "sequential-workflow-designer": "^0.34.1"
32
32
  },
33
33
  "devDependencies": {
34
- "sequential-workflow-designer": "^0.34.0",
34
+ "sequential-workflow-designer": "^0.34.1",
35
35
  "@sveltejs/adapter-static": "^2.0.3",
36
36
  "@sveltejs/kit": "^1.20.4",
37
37
  "@sveltejs/package": "^2.0.0",