sequential-workflow-designer 0.30.3 → 0.30.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/README.md CHANGED
@@ -106,10 +106,10 @@ Add the below code to your head section in HTML document.
106
106
  ```html
107
107
  <head>
108
108
  ...
109
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.3/css/designer.css" rel="stylesheet">
110
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.3/css/designer-light.css" rel="stylesheet">
111
- <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.3/css/designer-dark.css" rel="stylesheet">
112
- <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.3/dist/index.umd.js"></script>
109
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.4/css/designer.css" rel="stylesheet">
110
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.4/css/designer-light.css" rel="stylesheet">
111
+ <link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.4/css/designer-dark.css" rel="stylesheet">
112
+ <script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.30.4/dist/index.umd.js"></script>
113
113
  ```
114
114
 
115
115
  Call the designer by:
package/dist/index.umd.js CHANGED
@@ -2475,6 +2475,42 @@
2475
2475
  }
2476
2476
  }
2477
2477
 
2478
+ const defaultConfiguration$2 = {
2479
+ gapWidth: 88,
2480
+ gapHeight: 24,
2481
+ radius: 6,
2482
+ iconSize: 16
2483
+ };
2484
+ class RectPlaceholderExtension {
2485
+ static create(configuration) {
2486
+ return new RectPlaceholderExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$2);
2487
+ }
2488
+ constructor(configuration) {
2489
+ this.configuration = configuration;
2490
+ this.alongGapSize = new Vector(defaultConfiguration$2.gapWidth, defaultConfiguration$2.gapHeight);
2491
+ this.perpendicularGapSize = new Vector(defaultConfiguration$2.gapHeight, defaultConfiguration$2.gapWidth);
2492
+ }
2493
+ getGapSize(orientation) {
2494
+ return orientation === exports.PlaceholderGapOrientation.perpendicular ? this.perpendicularGapSize : this.alongGapSize;
2495
+ }
2496
+ createForGap(parent, parentSequence, index, orientation) {
2497
+ const gapSize = this.getGapSize(orientation);
2498
+ return RectPlaceholder.create(parent, gapSize, exports.PlaceholderDirection.gap, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
2499
+ }
2500
+ createForArea(parent, size, direction, parentSequence, index) {
2501
+ return RectPlaceholder.create(parent, size, direction, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
2502
+ }
2503
+ }
2504
+
2505
+ class RectPlaceholderDesignerExtension {
2506
+ static create(configuration) {
2507
+ return new RectPlaceholderDesignerExtension(RectPlaceholderExtension.create(configuration));
2508
+ }
2509
+ constructor(placeholder) {
2510
+ this.placeholder = placeholder;
2511
+ }
2512
+ }
2513
+
2478
2514
  class StartStopRootComponentDesignerExtension {
2479
2515
  static create(configuration) {
2480
2516
  return new StartStopRootComponentDesignerExtension(StartStopRootComponentExtension.create(configuration));
@@ -2484,7 +2520,7 @@
2484
2520
  }
2485
2521
  }
2486
2522
 
2487
- const defaultConfiguration$2 = {
2523
+ const defaultConfiguration$1 = {
2488
2524
  view: {
2489
2525
  paddingTop: 20,
2490
2526
  paddingX: 20,
@@ -2502,7 +2538,7 @@
2502
2538
  };
2503
2539
  class ContainerStepExtension {
2504
2540
  static create(configuration) {
2505
- return new ContainerStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$2);
2541
+ return new ContainerStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$1);
2506
2542
  }
2507
2543
  constructor(configuration) {
2508
2544
  this.configuration = configuration;
@@ -2547,7 +2583,7 @@
2547
2583
  }
2548
2584
  }
2549
2585
 
2550
- const defaultConfiguration$1 = {
2586
+ const defaultConfiguration = {
2551
2587
  view: {
2552
2588
  paddingLeft: 12,
2553
2589
  paddingRight: 12,
@@ -2562,7 +2598,7 @@
2562
2598
  };
2563
2599
  class TaskStepExtension {
2564
2600
  static create(configuration) {
2565
- return new TaskStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$1);
2601
+ return new TaskStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration);
2566
2602
  }
2567
2603
  constructor(configuration) {
2568
2604
  this.configuration = configuration;
@@ -4927,33 +4963,6 @@
4927
4963
  }
4928
4964
  }
4929
4965
 
4930
- const defaultConfiguration = {
4931
- gapWidth: 88,
4932
- gapHeight: 24,
4933
- radius: 6,
4934
- iconSize: 16
4935
- };
4936
- class RectPlaceholderExtension {
4937
- static create(configuration) {
4938
- return new RectPlaceholderExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration);
4939
- }
4940
- constructor(configuration) {
4941
- this.configuration = configuration;
4942
- this.alongGapSize = new Vector(defaultConfiguration.gapWidth, defaultConfiguration.gapHeight);
4943
- this.perpendicularGapSize = new Vector(defaultConfiguration.gapHeight, defaultConfiguration.gapWidth);
4944
- }
4945
- getGapSize(orientation) {
4946
- return orientation === exports.PlaceholderGapOrientation.perpendicular ? this.perpendicularGapSize : this.alongGapSize;
4947
- }
4948
- createForGap(parent, parentSequence, index, orientation) {
4949
- const gapSize = this.getGapSize(orientation);
4950
- return RectPlaceholder.create(parent, gapSize, exports.PlaceholderDirection.gap, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
4951
- }
4952
- createForArea(parent, size, direction, parentSequence, index) {
4953
- return RectPlaceholder.create(parent, size, direction, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
4954
- }
4955
- }
4956
-
4957
4966
  class DefaultSequenceComponentExtension {
4958
4967
  constructor() {
4959
4968
  this.create = DefaultSequenceComponent.create;
@@ -5387,6 +5396,7 @@
5387
5396
  exports.PathBarApi = PathBarApi;
5388
5397
  exports.PlaceholderController = PlaceholderController;
5389
5398
  exports.RectPlaceholder = RectPlaceholder;
5399
+ exports.RectPlaceholderDesignerExtension = RectPlaceholderDesignerExtension;
5390
5400
  exports.RectPlaceholderView = RectPlaceholderView;
5391
5401
  exports.SelectStepBehaviorEndToken = SelectStepBehaviorEndToken;
5392
5402
  exports.ServicesResolver = ServicesResolver;
package/lib/cjs/index.cjs CHANGED
@@ -2290,6 +2290,42 @@ class LineGridDesignerExtension {
2290
2290
  }
2291
2291
  }
2292
2292
 
2293
+ const defaultConfiguration$2 = {
2294
+ gapWidth: 88,
2295
+ gapHeight: 24,
2296
+ radius: 6,
2297
+ iconSize: 16
2298
+ };
2299
+ class RectPlaceholderExtension {
2300
+ static create(configuration) {
2301
+ return new RectPlaceholderExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$2);
2302
+ }
2303
+ constructor(configuration) {
2304
+ this.configuration = configuration;
2305
+ this.alongGapSize = new Vector(defaultConfiguration$2.gapWidth, defaultConfiguration$2.gapHeight);
2306
+ this.perpendicularGapSize = new Vector(defaultConfiguration$2.gapHeight, defaultConfiguration$2.gapWidth);
2307
+ }
2308
+ getGapSize(orientation) {
2309
+ return orientation === exports.PlaceholderGapOrientation.perpendicular ? this.perpendicularGapSize : this.alongGapSize;
2310
+ }
2311
+ createForGap(parent, parentSequence, index, orientation) {
2312
+ const gapSize = this.getGapSize(orientation);
2313
+ return RectPlaceholder.create(parent, gapSize, exports.PlaceholderDirection.gap, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
2314
+ }
2315
+ createForArea(parent, size, direction, parentSequence, index) {
2316
+ return RectPlaceholder.create(parent, size, direction, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
2317
+ }
2318
+ }
2319
+
2320
+ class RectPlaceholderDesignerExtension {
2321
+ static create(configuration) {
2322
+ return new RectPlaceholderDesignerExtension(RectPlaceholderExtension.create(configuration));
2323
+ }
2324
+ constructor(placeholder) {
2325
+ this.placeholder = placeholder;
2326
+ }
2327
+ }
2328
+
2293
2329
  class StartStopRootComponentDesignerExtension {
2294
2330
  static create(configuration) {
2295
2331
  return new StartStopRootComponentDesignerExtension(StartStopRootComponentExtension.create(configuration));
@@ -2299,7 +2335,7 @@ class StartStopRootComponentDesignerExtension {
2299
2335
  }
2300
2336
  }
2301
2337
 
2302
- const defaultConfiguration$2 = {
2338
+ const defaultConfiguration$1 = {
2303
2339
  view: {
2304
2340
  paddingTop: 20,
2305
2341
  paddingX: 20,
@@ -2317,7 +2353,7 @@ const defaultConfiguration$2 = {
2317
2353
  };
2318
2354
  class ContainerStepExtension {
2319
2355
  static create(configuration) {
2320
- return new ContainerStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$2);
2356
+ return new ContainerStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$1);
2321
2357
  }
2322
2358
  constructor(configuration) {
2323
2359
  this.configuration = configuration;
@@ -2362,7 +2398,7 @@ class SwitchStepExtension {
2362
2398
  }
2363
2399
  }
2364
2400
 
2365
- const defaultConfiguration$1 = {
2401
+ const defaultConfiguration = {
2366
2402
  view: {
2367
2403
  paddingLeft: 12,
2368
2404
  paddingRight: 12,
@@ -2377,7 +2413,7 @@ const defaultConfiguration$1 = {
2377
2413
  };
2378
2414
  class TaskStepExtension {
2379
2415
  static create(configuration) {
2380
- return new TaskStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$1);
2416
+ return new TaskStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration);
2381
2417
  }
2382
2418
  constructor(configuration) {
2383
2419
  this.configuration = configuration;
@@ -4742,33 +4778,6 @@ class ToolboxExtension {
4742
4778
  }
4743
4779
  }
4744
4780
 
4745
- const defaultConfiguration = {
4746
- gapWidth: 88,
4747
- gapHeight: 24,
4748
- radius: 6,
4749
- iconSize: 16
4750
- };
4751
- class RectPlaceholderExtension {
4752
- static create(configuration) {
4753
- return new RectPlaceholderExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration);
4754
- }
4755
- constructor(configuration) {
4756
- this.configuration = configuration;
4757
- this.alongGapSize = new Vector(defaultConfiguration.gapWidth, defaultConfiguration.gapHeight);
4758
- this.perpendicularGapSize = new Vector(defaultConfiguration.gapHeight, defaultConfiguration.gapWidth);
4759
- }
4760
- getGapSize(orientation) {
4761
- return orientation === exports.PlaceholderGapOrientation.perpendicular ? this.perpendicularGapSize : this.alongGapSize;
4762
- }
4763
- createForGap(parent, parentSequence, index, orientation) {
4764
- const gapSize = this.getGapSize(orientation);
4765
- return RectPlaceholder.create(parent, gapSize, exports.PlaceholderDirection.gap, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
4766
- }
4767
- createForArea(parent, size, direction, parentSequence, index) {
4768
- return RectPlaceholder.create(parent, size, direction, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
4769
- }
4770
- }
4771
-
4772
4781
  class DefaultSequenceComponentExtension {
4773
4782
  constructor() {
4774
4783
  this.create = DefaultSequenceComponent.create;
@@ -5201,6 +5210,7 @@ exports.OutputView = OutputView;
5201
5210
  exports.PathBarApi = PathBarApi;
5202
5211
  exports.PlaceholderController = PlaceholderController;
5203
5212
  exports.RectPlaceholder = RectPlaceholder;
5213
+ exports.RectPlaceholderDesignerExtension = RectPlaceholderDesignerExtension;
5204
5214
  exports.RectPlaceholderView = RectPlaceholderView;
5205
5215
  exports.SelectStepBehaviorEndToken = SelectStepBehaviorEndToken;
5206
5216
  exports.ServicesResolver = ServicesResolver;
package/lib/esm/index.js CHANGED
@@ -2289,6 +2289,42 @@ class LineGridDesignerExtension {
2289
2289
  }
2290
2290
  }
2291
2291
 
2292
+ const defaultConfiguration$2 = {
2293
+ gapWidth: 88,
2294
+ gapHeight: 24,
2295
+ radius: 6,
2296
+ iconSize: 16
2297
+ };
2298
+ class RectPlaceholderExtension {
2299
+ static create(configuration) {
2300
+ return new RectPlaceholderExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$2);
2301
+ }
2302
+ constructor(configuration) {
2303
+ this.configuration = configuration;
2304
+ this.alongGapSize = new Vector(defaultConfiguration$2.gapWidth, defaultConfiguration$2.gapHeight);
2305
+ this.perpendicularGapSize = new Vector(defaultConfiguration$2.gapHeight, defaultConfiguration$2.gapWidth);
2306
+ }
2307
+ getGapSize(orientation) {
2308
+ return orientation === PlaceholderGapOrientation.perpendicular ? this.perpendicularGapSize : this.alongGapSize;
2309
+ }
2310
+ createForGap(parent, parentSequence, index, orientation) {
2311
+ const gapSize = this.getGapSize(orientation);
2312
+ return RectPlaceholder.create(parent, gapSize, PlaceholderDirection.gap, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
2313
+ }
2314
+ createForArea(parent, size, direction, parentSequence, index) {
2315
+ return RectPlaceholder.create(parent, size, direction, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
2316
+ }
2317
+ }
2318
+
2319
+ class RectPlaceholderDesignerExtension {
2320
+ static create(configuration) {
2321
+ return new RectPlaceholderDesignerExtension(RectPlaceholderExtension.create(configuration));
2322
+ }
2323
+ constructor(placeholder) {
2324
+ this.placeholder = placeholder;
2325
+ }
2326
+ }
2327
+
2292
2328
  class StartStopRootComponentDesignerExtension {
2293
2329
  static create(configuration) {
2294
2330
  return new StartStopRootComponentDesignerExtension(StartStopRootComponentExtension.create(configuration));
@@ -2298,7 +2334,7 @@ class StartStopRootComponentDesignerExtension {
2298
2334
  }
2299
2335
  }
2300
2336
 
2301
- const defaultConfiguration$2 = {
2337
+ const defaultConfiguration$1 = {
2302
2338
  view: {
2303
2339
  paddingTop: 20,
2304
2340
  paddingX: 20,
@@ -2316,7 +2352,7 @@ const defaultConfiguration$2 = {
2316
2352
  };
2317
2353
  class ContainerStepExtension {
2318
2354
  static create(configuration) {
2319
- return new ContainerStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$2);
2355
+ return new ContainerStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$1);
2320
2356
  }
2321
2357
  constructor(configuration) {
2322
2358
  this.configuration = configuration;
@@ -2361,7 +2397,7 @@ class SwitchStepExtension {
2361
2397
  }
2362
2398
  }
2363
2399
 
2364
- const defaultConfiguration$1 = {
2400
+ const defaultConfiguration = {
2365
2401
  view: {
2366
2402
  paddingLeft: 12,
2367
2403
  paddingRight: 12,
@@ -2376,7 +2412,7 @@ const defaultConfiguration$1 = {
2376
2412
  };
2377
2413
  class TaskStepExtension {
2378
2414
  static create(configuration) {
2379
- return new TaskStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration$1);
2415
+ return new TaskStepExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration);
2380
2416
  }
2381
2417
  constructor(configuration) {
2382
2418
  this.configuration = configuration;
@@ -4741,33 +4777,6 @@ class ToolboxExtension {
4741
4777
  }
4742
4778
  }
4743
4779
 
4744
- const defaultConfiguration = {
4745
- gapWidth: 88,
4746
- gapHeight: 24,
4747
- radius: 6,
4748
- iconSize: 16
4749
- };
4750
- class RectPlaceholderExtension {
4751
- static create(configuration) {
4752
- return new RectPlaceholderExtension(configuration !== null && configuration !== void 0 ? configuration : defaultConfiguration);
4753
- }
4754
- constructor(configuration) {
4755
- this.configuration = configuration;
4756
- this.alongGapSize = new Vector(defaultConfiguration.gapWidth, defaultConfiguration.gapHeight);
4757
- this.perpendicularGapSize = new Vector(defaultConfiguration.gapHeight, defaultConfiguration.gapWidth);
4758
- }
4759
- getGapSize(orientation) {
4760
- return orientation === PlaceholderGapOrientation.perpendicular ? this.perpendicularGapSize : this.alongGapSize;
4761
- }
4762
- createForGap(parent, parentSequence, index, orientation) {
4763
- const gapSize = this.getGapSize(orientation);
4764
- return RectPlaceholder.create(parent, gapSize, PlaceholderDirection.gap, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
4765
- }
4766
- createForArea(parent, size, direction, parentSequence, index) {
4767
- return RectPlaceholder.create(parent, size, direction, parentSequence, index, this.configuration.radius, this.configuration.iconSize);
4768
- }
4769
- }
4770
-
4771
4780
  class DefaultSequenceComponentExtension {
4772
4781
  constructor() {
4773
4782
  this.create = DefaultSequenceComponent.create;
@@ -5169,4 +5178,4 @@ class Designer {
5169
5178
  }
5170
5179
  }
5171
5180
 
5172
- export { Badges, CenteredViewportCalculator, ClassicWheelControllerExtension, ClickCommandType, ComponentContext, ComponentDom, ControlBarApi, CustomActionController, DefaultRegionComponentViewExtension, DefaultRegionView, DefaultSequenceComponent, DefaultSequenceComponentView, DefaultViewportController, DefaultViewportControllerDesignerExtension, DefaultViewportControllerExtension, DefinitionChangeType, Designer, DesignerApi, DesignerContext, DesignerState, Dom, Editor, EditorApi, Icons, InputView, JoinView, KeyboardAction, LabelView, LineGridDesignerExtension, ObjectCloner, OutputView, PathBarApi, PlaceholderController, PlaceholderDirection, PlaceholderGapOrientation, RectPlaceholder, RectPlaceholderView, SelectStepBehaviorEndToken, ServicesResolver, SimpleEvent, StartStopRootComponentDesignerExtension, StartStopRootComponentExtension, StepComponent, StepExtensionResolver, StepsDesignerExtension, TYPE, ToolboxApi, Uid, ValidationErrorBadgeExtension, Vector, ViewportApi, WorkspaceApi, createContainerStepComponentViewFactory, createLaunchPadStepComponentViewFactory, createSwitchStepComponentViewFactory, createTaskStepComponentViewFactory, getAbsolutePosition, race };
5181
+ export { Badges, CenteredViewportCalculator, ClassicWheelControllerExtension, ClickCommandType, ComponentContext, ComponentDom, ControlBarApi, CustomActionController, DefaultRegionComponentViewExtension, DefaultRegionView, DefaultSequenceComponent, DefaultSequenceComponentView, DefaultViewportController, DefaultViewportControllerDesignerExtension, DefaultViewportControllerExtension, DefinitionChangeType, Designer, DesignerApi, DesignerContext, DesignerState, Dom, Editor, EditorApi, Icons, InputView, JoinView, KeyboardAction, LabelView, LineGridDesignerExtension, ObjectCloner, OutputView, PathBarApi, PlaceholderController, PlaceholderDirection, PlaceholderGapOrientation, RectPlaceholder, RectPlaceholderDesignerExtension, RectPlaceholderView, SelectStepBehaviorEndToken, ServicesResolver, SimpleEvent, StartStopRootComponentDesignerExtension, StartStopRootComponentExtension, StepComponent, StepExtensionResolver, StepsDesignerExtension, TYPE, ToolboxApi, Uid, ValidationErrorBadgeExtension, Vector, ViewportApi, WorkspaceApi, createContainerStepComponentViewFactory, createLaunchPadStepComponentViewFactory, createSwitchStepComponentViewFactory, createTaskStepComponentViewFactory, getAbsolutePosition, race };
package/lib/index.d.ts CHANGED
@@ -1258,6 +1258,12 @@ declare class LineGridDesignerExtension implements DesignerExtension {
1258
1258
  private constructor();
1259
1259
  }
1260
1260
 
1261
+ declare class RectPlaceholderDesignerExtension implements DesignerExtension {
1262
+ readonly placeholder: PlaceholderExtension;
1263
+ static create(configuration?: RectPlaceholderConfiguration): RectPlaceholderDesignerExtension;
1264
+ private constructor();
1265
+ }
1266
+
1261
1267
  declare class StartStopRootComponentDesignerExtension implements DesignerExtension {
1262
1268
  readonly rootComponent: RootComponentExtension;
1263
1269
  static create(configuration: StartStopRootComponentExtensionConfiguration): DesignerExtension;
@@ -1422,5 +1428,5 @@ declare class Designer<TDefinition extends Definition = Definition> {
1422
1428
  private getHistoryController;
1423
1429
  }
1424
1430
 
1425
- export { Badges, CenteredViewportCalculator, ClassicWheelControllerExtension, ClickCommandType, ComponentContext, ComponentDom, ControlBarApi, CustomActionController, DefaultRegionComponentViewExtension, DefaultRegionView, DefaultSequenceComponent, DefaultSequenceComponentView, DefaultViewportController, DefaultViewportControllerDesignerExtension, DefaultViewportControllerExtension, DefinitionChangeType, Designer, DesignerApi, DesignerContext, DesignerState, Dom, Editor, EditorApi, Icons, InputView, JoinView, KeyboardAction, LabelView, LineGridDesignerExtension, ObjectCloner, OutputView, PathBarApi, PlaceholderController, PlaceholderDirection, PlaceholderGapOrientation, RectPlaceholder, RectPlaceholderView, SelectStepBehaviorEndToken, ServicesResolver, SimpleEvent, StartStopRootComponentDesignerExtension, StartStopRootComponentExtension, StepComponent, StepExtensionResolver, StepsDesignerExtension, TYPE, ToolboxApi, Uid, ValidationErrorBadgeExtension, Vector, ViewportApi, WorkspaceApi, createContainerStepComponentViewFactory, createLaunchPadStepComponentViewFactory, createSwitchStepComponentViewFactory, createTaskStepComponentViewFactory, getAbsolutePosition, race };
1431
+ export { Badges, CenteredViewportCalculator, ClassicWheelControllerExtension, ClickCommandType, ComponentContext, ComponentDom, ControlBarApi, CustomActionController, DefaultRegionComponentViewExtension, DefaultRegionView, DefaultSequenceComponent, DefaultSequenceComponentView, DefaultViewportController, DefaultViewportControllerDesignerExtension, DefaultViewportControllerExtension, DefinitionChangeType, Designer, DesignerApi, DesignerContext, DesignerState, Dom, Editor, EditorApi, Icons, InputView, JoinView, KeyboardAction, LabelView, LineGridDesignerExtension, ObjectCloner, OutputView, PathBarApi, PlaceholderController, PlaceholderDirection, PlaceholderGapOrientation, RectPlaceholder, RectPlaceholderDesignerExtension, RectPlaceholderView, SelectStepBehaviorEndToken, ServicesResolver, SimpleEvent, StartStopRootComponentDesignerExtension, StartStopRootComponentExtension, StepComponent, StepExtensionResolver, StepsDesignerExtension, TYPE, ToolboxApi, Uid, ValidationErrorBadgeExtension, Vector, ViewportApi, WorkspaceApi, createContainerStepComponentViewFactory, createLaunchPadStepComponentViewFactory, createSwitchStepComponentViewFactory, createTaskStepComponentViewFactory, getAbsolutePosition, race };
1426
1432
  export type { Attributes, Badge, BadgeExtension, BadgeView, BadgesDecorator, BadgesResult, BaseClickCommand, Behavior, BehaviorEndToken, BranchNamesResolver, ClickBehaviorWrapper, ClickBehaviorWrapperExtension, ClickCommand, ClickDetails, Component, ComponentView, ContainerStepComponentViewConfiguration, ContainerStepExtensionConfiguration, ContextMenuExtension, ContextMenuItem, ContextMenuItemsProvider, CustomAction, CustomActionHandler, CustomActionHandlerContext, Daemon, DaemonExtension, DefaultViewportControllerConfiguration, DefaultViewportControllerExtensionConfiguration, DefinitionChangedEvent, DesignerConfiguration, DesignerExtension, DraggedComponent, DraggedComponentExtension, EditorsConfiguration, FoundPlaceholders, Grid, GridExtension, I18n, KeyboardConfiguration, LaunchPadStepComponentViewConfiguration, LaunchPadStepExtensionConfiguration, LineGridConfiguration, NextScale, OpenFolderClickCommand, Placeholder, PlaceholderConfiguration, PlaceholderExtension, PlaceholderView, PreferenceStorage, RectPlaceholderConfiguration, RegionComponentViewContentFactory, RegionComponentViewExtension, RegionView, RegionViewFactory, RerenderStepClickCommand, RootComponentExtension, RootEditorContext, RootEditorProvider, RootValidator, SelectStepClickCommand, SelectedStepIdProvider, SequenceComponent, SequenceComponentExtension, SequenceContext, SequencePlaceIndicator, Services, SimpleEventListener, StartStopRootComponentExtensionConfiguration, StartStopRootComponentViewConfiguration, StateModifierDependency, StepBadgesDecoratorExtension, StepComponentView, StepComponentViewContext, StepComponentViewFactory, StepComponentViewWrapperExtension, StepContext, StepDefinition, StepDescriptionProvider, StepEditorContext, StepEditorProvider, StepExtension, StepIconUrlProvider, StepLabelProvider, StepValidator, StepsConfiguration, StepsDesignerExtensionConfiguration, SwitchStepComponentViewConfiguration, SwitchStepExtensionConfiguration, TaskStepComponentViewConfiguration, TaskStepExtensionConfiguration, ToolboxConfiguration, ToolboxGroupConfiguration, TriggerCustomActionClickCommand, UiComponent, UiComponentExtension, UidGenerator, UndoStack, UndoStackItem, ValidationErrorBadgeExtensionConfiguration, ValidationErrorBadgeViewConfiguration, ValidatorConfiguration, Viewport, ViewportController, ViewportControllerExtension, WheelController, WheelControllerExtension, WorkspaceRootSequence };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sequential-workflow-designer",
3
3
  "description": "Customizable no-code component for building flow-based programming applications.",
4
- "version": "0.30.3",
4
+ "version": "0.30.4",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "types": "./lib/index.d.ts",