sequential-workflow-designer 0.37.0 → 0.37.2
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 +4 -4
- package/dist/index.umd.js +20 -13
- package/lib/cjs/index.cjs +20 -13
- package/lib/esm/index.js +20 -13
- package/lib/index.d.ts +9 -2
- package/package.json +1 -1
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.37.
|
|
110
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.37.
|
|
111
|
-
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.37.
|
|
112
|
-
<script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.37.
|
|
109
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.37.2/css/designer.css" rel="stylesheet" />
|
|
110
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.37.2/css/designer-light.css" rel="stylesheet" />
|
|
111
|
+
<link href="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.37.2/css/designer-dark.css" rel="stylesheet" />
|
|
112
|
+
<script src="https://cdn.jsdelivr.net/npm/sequential-workflow-designer@0.37.2/dist/index.umd.js"></script>
|
|
113
113
|
</head>
|
|
114
114
|
```
|
|
115
115
|
|
package/dist/index.umd.js
CHANGED
|
@@ -1685,12 +1685,15 @@
|
|
|
1685
1685
|
return regionView.getClientPosition();
|
|
1686
1686
|
},
|
|
1687
1687
|
resolveClick(click) {
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
if (
|
|
1691
|
-
return
|
|
1688
|
+
const result = regionView.resolveClick(click);
|
|
1689
|
+
if (result === true) {
|
|
1690
|
+
if (cfg.isRegionClickable) {
|
|
1691
|
+
return true;
|
|
1692
1692
|
}
|
|
1693
1693
|
}
|
|
1694
|
+
else if (result !== null) {
|
|
1695
|
+
return result;
|
|
1696
|
+
}
|
|
1694
1697
|
return labelView.g.contains(click.element) || (inputView && inputView.g.contains(click.element)) ? true : null;
|
|
1695
1698
|
},
|
|
1696
1699
|
setIsDragging(isDragging) {
|
|
@@ -1870,12 +1873,15 @@
|
|
|
1870
1873
|
return regionView.getClientPosition();
|
|
1871
1874
|
},
|
|
1872
1875
|
resolveClick(click) {
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
if (
|
|
1876
|
-
return
|
|
1876
|
+
const result = regionView.resolveClick(click);
|
|
1877
|
+
if (result === true) {
|
|
1878
|
+
if (cfg.isRegionClickable) {
|
|
1879
|
+
return true;
|
|
1877
1880
|
}
|
|
1878
1881
|
}
|
|
1882
|
+
else if (result !== null) {
|
|
1883
|
+
return result;
|
|
1884
|
+
}
|
|
1879
1885
|
return labelViews.some(v => v.g.contains(click.element) || (inputView && inputView.g.contains(click.element))) ? true : null;
|
|
1880
1886
|
},
|
|
1881
1887
|
setIsDragging(isDragging) {
|
|
@@ -1891,7 +1897,7 @@
|
|
|
1891
1897
|
}
|
|
1892
1898
|
};
|
|
1893
1899
|
}
|
|
1894
|
-
const createSwitchStepComponentViewFactory = (cfg, branchNameResolver) => (parent, stepContext, viewContext) => {
|
|
1900
|
+
const createSwitchStepComponentViewFactory = (cfg, branchNameResolver, branchNameLabelResolver) => (parent, stepContext, viewContext) => {
|
|
1895
1901
|
return viewContext.createRegionComponentView(parent, COMPONENT_CLASS_NAME$1, (g, regionViewBuilder) => {
|
|
1896
1902
|
const step = stepContext.step;
|
|
1897
1903
|
const paddingTop = cfg.paddingTop1 + cfg.paddingTop2;
|
|
@@ -1914,9 +1920,10 @@
|
|
|
1914
1920
|
let totalBranchesWidth = 0;
|
|
1915
1921
|
let maxBranchesHeight = 0;
|
|
1916
1922
|
branchNames.forEach((branchName, i) => {
|
|
1923
|
+
const label = branchNameLabelResolver ? branchNameLabelResolver(branchName, step) : branchName;
|
|
1924
|
+
const translatedLabel = viewContext.i18n(`stepComponent.${step.type}.branchName`, label);
|
|
1917
1925
|
const labelY = paddingTop + cfg.nameLabel.height + cfg.connectionHeight;
|
|
1918
|
-
const
|
|
1919
|
-
const labelView = LabelView.create(g, labelY, cfg.branchNameLabel, translatedBranchName, 'secondary');
|
|
1926
|
+
const labelView = LabelView.create(g, labelY, cfg.branchNameLabel, translatedLabel, 'secondary');
|
|
1920
1927
|
const component = viewContext.createSequenceComponent(g, step.branches[branchName]);
|
|
1921
1928
|
const halfOfWidestBranchElement = Math.max(labelView.width, cfg.minBranchWidth) / 2;
|
|
1922
1929
|
const branchOffsetLeft = Math.max(halfOfWidestBranchElement - component.view.joinX, 0) + cfg.paddingX;
|
|
@@ -2594,10 +2601,10 @@
|
|
|
2594
2601
|
return new SwitchStepExtension(configuration);
|
|
2595
2602
|
}
|
|
2596
2603
|
constructor(configuration) {
|
|
2597
|
-
var _a, _b, _c, _d, _e;
|
|
2604
|
+
var _a, _b, _c, _d, _e, _f;
|
|
2598
2605
|
this.configuration = configuration;
|
|
2599
2606
|
this.componentType = (_b = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.componentType) !== null && _b !== void 0 ? _b : 'switch';
|
|
2600
|
-
this.createComponentView = createSwitchStepComponentViewFactory((_d = (_c = this.configuration) === null || _c === void 0 ? void 0 : _c.view) !== null && _d !== void 0 ? _d : defaultViewConfiguration$2, (_e = this.configuration) === null || _e === void 0 ? void 0 : _e.branchNamesResolver);
|
|
2607
|
+
this.createComponentView = createSwitchStepComponentViewFactory((_d = (_c = this.configuration) === null || _c === void 0 ? void 0 : _c.view) !== null && _d !== void 0 ? _d : defaultViewConfiguration$2, (_e = this.configuration) === null || _e === void 0 ? void 0 : _e.branchNamesResolver, (_f = this.configuration) === null || _f === void 0 ? void 0 : _f.branchNameLabelResolver);
|
|
2601
2608
|
}
|
|
2602
2609
|
}
|
|
2603
2610
|
|
package/lib/cjs/index.cjs
CHANGED
|
@@ -1500,12 +1500,15 @@ const createContainerStepComponentViewFactory = (cfg) => (parentElement, stepCon
|
|
|
1500
1500
|
return regionView.getClientPosition();
|
|
1501
1501
|
},
|
|
1502
1502
|
resolveClick(click) {
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
if (
|
|
1506
|
-
return
|
|
1503
|
+
const result = regionView.resolveClick(click);
|
|
1504
|
+
if (result === true) {
|
|
1505
|
+
if (cfg.isRegionClickable) {
|
|
1506
|
+
return true;
|
|
1507
1507
|
}
|
|
1508
1508
|
}
|
|
1509
|
+
else if (result !== null) {
|
|
1510
|
+
return result;
|
|
1511
|
+
}
|
|
1509
1512
|
return labelView.g.contains(click.element) || (inputView && inputView.g.contains(click.element)) ? true : null;
|
|
1510
1513
|
},
|
|
1511
1514
|
setIsDragging(isDragging) {
|
|
@@ -1685,12 +1688,15 @@ function createView(g, width, height, joinX, viewContext, sequenceComponents, la
|
|
|
1685
1688
|
return regionView.getClientPosition();
|
|
1686
1689
|
},
|
|
1687
1690
|
resolveClick(click) {
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
if (
|
|
1691
|
-
return
|
|
1691
|
+
const result = regionView.resolveClick(click);
|
|
1692
|
+
if (result === true) {
|
|
1693
|
+
if (cfg.isRegionClickable) {
|
|
1694
|
+
return true;
|
|
1692
1695
|
}
|
|
1693
1696
|
}
|
|
1697
|
+
else if (result !== null) {
|
|
1698
|
+
return result;
|
|
1699
|
+
}
|
|
1694
1700
|
return labelViews.some(v => v.g.contains(click.element) || (inputView && inputView.g.contains(click.element))) ? true : null;
|
|
1695
1701
|
},
|
|
1696
1702
|
setIsDragging(isDragging) {
|
|
@@ -1706,7 +1712,7 @@ function createView(g, width, height, joinX, viewContext, sequenceComponents, la
|
|
|
1706
1712
|
}
|
|
1707
1713
|
};
|
|
1708
1714
|
}
|
|
1709
|
-
const createSwitchStepComponentViewFactory = (cfg, branchNameResolver) => (parent, stepContext, viewContext) => {
|
|
1715
|
+
const createSwitchStepComponentViewFactory = (cfg, branchNameResolver, branchNameLabelResolver) => (parent, stepContext, viewContext) => {
|
|
1710
1716
|
return viewContext.createRegionComponentView(parent, COMPONENT_CLASS_NAME$1, (g, regionViewBuilder) => {
|
|
1711
1717
|
const step = stepContext.step;
|
|
1712
1718
|
const paddingTop = cfg.paddingTop1 + cfg.paddingTop2;
|
|
@@ -1729,9 +1735,10 @@ const createSwitchStepComponentViewFactory = (cfg, branchNameResolver) => (paren
|
|
|
1729
1735
|
let totalBranchesWidth = 0;
|
|
1730
1736
|
let maxBranchesHeight = 0;
|
|
1731
1737
|
branchNames.forEach((branchName, i) => {
|
|
1738
|
+
const label = branchNameLabelResolver ? branchNameLabelResolver(branchName, step) : branchName;
|
|
1739
|
+
const translatedLabel = viewContext.i18n(`stepComponent.${step.type}.branchName`, label);
|
|
1732
1740
|
const labelY = paddingTop + cfg.nameLabel.height + cfg.connectionHeight;
|
|
1733
|
-
const
|
|
1734
|
-
const labelView = LabelView.create(g, labelY, cfg.branchNameLabel, translatedBranchName, 'secondary');
|
|
1741
|
+
const labelView = LabelView.create(g, labelY, cfg.branchNameLabel, translatedLabel, 'secondary');
|
|
1735
1742
|
const component = viewContext.createSequenceComponent(g, step.branches[branchName]);
|
|
1736
1743
|
const halfOfWidestBranchElement = Math.max(labelView.width, cfg.minBranchWidth) / 2;
|
|
1737
1744
|
const branchOffsetLeft = Math.max(halfOfWidestBranchElement - component.view.joinX, 0) + cfg.paddingX;
|
|
@@ -2409,10 +2416,10 @@ class SwitchStepExtension {
|
|
|
2409
2416
|
return new SwitchStepExtension(configuration);
|
|
2410
2417
|
}
|
|
2411
2418
|
constructor(configuration) {
|
|
2412
|
-
var _a, _b, _c, _d, _e;
|
|
2419
|
+
var _a, _b, _c, _d, _e, _f;
|
|
2413
2420
|
this.configuration = configuration;
|
|
2414
2421
|
this.componentType = (_b = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.componentType) !== null && _b !== void 0 ? _b : 'switch';
|
|
2415
|
-
this.createComponentView = createSwitchStepComponentViewFactory((_d = (_c = this.configuration) === null || _c === void 0 ? void 0 : _c.view) !== null && _d !== void 0 ? _d : defaultViewConfiguration$2, (_e = this.configuration) === null || _e === void 0 ? void 0 : _e.branchNamesResolver);
|
|
2422
|
+
this.createComponentView = createSwitchStepComponentViewFactory((_d = (_c = this.configuration) === null || _c === void 0 ? void 0 : _c.view) !== null && _d !== void 0 ? _d : defaultViewConfiguration$2, (_e = this.configuration) === null || _e === void 0 ? void 0 : _e.branchNamesResolver, (_f = this.configuration) === null || _f === void 0 ? void 0 : _f.branchNameLabelResolver);
|
|
2416
2423
|
}
|
|
2417
2424
|
}
|
|
2418
2425
|
|
package/lib/esm/index.js
CHANGED
|
@@ -1499,12 +1499,15 @@ const createContainerStepComponentViewFactory = (cfg) => (parentElement, stepCon
|
|
|
1499
1499
|
return regionView.getClientPosition();
|
|
1500
1500
|
},
|
|
1501
1501
|
resolveClick(click) {
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
if (
|
|
1505
|
-
return
|
|
1502
|
+
const result = regionView.resolveClick(click);
|
|
1503
|
+
if (result === true) {
|
|
1504
|
+
if (cfg.isRegionClickable) {
|
|
1505
|
+
return true;
|
|
1506
1506
|
}
|
|
1507
1507
|
}
|
|
1508
|
+
else if (result !== null) {
|
|
1509
|
+
return result;
|
|
1510
|
+
}
|
|
1508
1511
|
return labelView.g.contains(click.element) || (inputView && inputView.g.contains(click.element)) ? true : null;
|
|
1509
1512
|
},
|
|
1510
1513
|
setIsDragging(isDragging) {
|
|
@@ -1684,12 +1687,15 @@ function createView(g, width, height, joinX, viewContext, sequenceComponents, la
|
|
|
1684
1687
|
return regionView.getClientPosition();
|
|
1685
1688
|
},
|
|
1686
1689
|
resolveClick(click) {
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
if (
|
|
1690
|
-
return
|
|
1690
|
+
const result = regionView.resolveClick(click);
|
|
1691
|
+
if (result === true) {
|
|
1692
|
+
if (cfg.isRegionClickable) {
|
|
1693
|
+
return true;
|
|
1691
1694
|
}
|
|
1692
1695
|
}
|
|
1696
|
+
else if (result !== null) {
|
|
1697
|
+
return result;
|
|
1698
|
+
}
|
|
1693
1699
|
return labelViews.some(v => v.g.contains(click.element) || (inputView && inputView.g.contains(click.element))) ? true : null;
|
|
1694
1700
|
},
|
|
1695
1701
|
setIsDragging(isDragging) {
|
|
@@ -1705,7 +1711,7 @@ function createView(g, width, height, joinX, viewContext, sequenceComponents, la
|
|
|
1705
1711
|
}
|
|
1706
1712
|
};
|
|
1707
1713
|
}
|
|
1708
|
-
const createSwitchStepComponentViewFactory = (cfg, branchNameResolver) => (parent, stepContext, viewContext) => {
|
|
1714
|
+
const createSwitchStepComponentViewFactory = (cfg, branchNameResolver, branchNameLabelResolver) => (parent, stepContext, viewContext) => {
|
|
1709
1715
|
return viewContext.createRegionComponentView(parent, COMPONENT_CLASS_NAME$1, (g, regionViewBuilder) => {
|
|
1710
1716
|
const step = stepContext.step;
|
|
1711
1717
|
const paddingTop = cfg.paddingTop1 + cfg.paddingTop2;
|
|
@@ -1728,9 +1734,10 @@ const createSwitchStepComponentViewFactory = (cfg, branchNameResolver) => (paren
|
|
|
1728
1734
|
let totalBranchesWidth = 0;
|
|
1729
1735
|
let maxBranchesHeight = 0;
|
|
1730
1736
|
branchNames.forEach((branchName, i) => {
|
|
1737
|
+
const label = branchNameLabelResolver ? branchNameLabelResolver(branchName, step) : branchName;
|
|
1738
|
+
const translatedLabel = viewContext.i18n(`stepComponent.${step.type}.branchName`, label);
|
|
1731
1739
|
const labelY = paddingTop + cfg.nameLabel.height + cfg.connectionHeight;
|
|
1732
|
-
const
|
|
1733
|
-
const labelView = LabelView.create(g, labelY, cfg.branchNameLabel, translatedBranchName, 'secondary');
|
|
1740
|
+
const labelView = LabelView.create(g, labelY, cfg.branchNameLabel, translatedLabel, 'secondary');
|
|
1734
1741
|
const component = viewContext.createSequenceComponent(g, step.branches[branchName]);
|
|
1735
1742
|
const halfOfWidestBranchElement = Math.max(labelView.width, cfg.minBranchWidth) / 2;
|
|
1736
1743
|
const branchOffsetLeft = Math.max(halfOfWidestBranchElement - component.view.joinX, 0) + cfg.paddingX;
|
|
@@ -2408,10 +2415,10 @@ class SwitchStepExtension {
|
|
|
2408
2415
|
return new SwitchStepExtension(configuration);
|
|
2409
2416
|
}
|
|
2410
2417
|
constructor(configuration) {
|
|
2411
|
-
var _a, _b, _c, _d, _e;
|
|
2418
|
+
var _a, _b, _c, _d, _e, _f;
|
|
2412
2419
|
this.configuration = configuration;
|
|
2413
2420
|
this.componentType = (_b = (_a = this.configuration) === null || _a === void 0 ? void 0 : _a.componentType) !== null && _b !== void 0 ? _b : 'switch';
|
|
2414
|
-
this.createComponentView = createSwitchStepComponentViewFactory((_d = (_c = this.configuration) === null || _c === void 0 ? void 0 : _c.view) !== null && _d !== void 0 ? _d : defaultViewConfiguration$2, (_e = this.configuration) === null || _e === void 0 ? void 0 : _e.branchNamesResolver);
|
|
2421
|
+
this.createComponentView = createSwitchStepComponentViewFactory((_d = (_c = this.configuration) === null || _c === void 0 ? void 0 : _c.view) !== null && _d !== void 0 ? _d : defaultViewConfiguration$2, (_e = this.configuration) === null || _e === void 0 ? void 0 : _e.branchNamesResolver, (_f = this.configuration) === null || _f === void 0 ? void 0 : _f.branchNameLabelResolver);
|
|
2415
2422
|
}
|
|
2416
2423
|
}
|
|
2417
2424
|
|
package/lib/index.d.ts
CHANGED
|
@@ -721,6 +721,7 @@ interface SwitchStepComponentViewConfiguration {
|
|
|
721
721
|
}
|
|
722
722
|
|
|
723
723
|
type BranchNamesResolver = (step: BranchedStep) => string[];
|
|
724
|
+
type BranchNameLabelResolver = (branchName: string, step: Step) => string;
|
|
724
725
|
interface SwitchStepExtensionConfiguration {
|
|
725
726
|
componentType?: string;
|
|
726
727
|
view?: SwitchStepComponentViewConfiguration;
|
|
@@ -730,9 +731,15 @@ interface SwitchStepExtensionConfiguration {
|
|
|
730
731
|
* You can use this to provide custom ordering or filtering of branch names.
|
|
731
732
|
*/
|
|
732
733
|
branchNamesResolver?: BranchNamesResolver;
|
|
734
|
+
/**
|
|
735
|
+
* A function that takes a branch name and a step, and returns the label to display for that branch.
|
|
736
|
+
* If not provided, the branch name itself will be used as the label.
|
|
737
|
+
* Before rendering, the label is translated using the i18n callback.
|
|
738
|
+
*/
|
|
739
|
+
branchNameLabelResolver?: BranchNameLabelResolver;
|
|
733
740
|
}
|
|
734
741
|
|
|
735
|
-
declare const createSwitchStepComponentViewFactory: (cfg: SwitchStepComponentViewConfiguration, branchNameResolver: BranchNamesResolver | undefined) => StepComponentViewFactory;
|
|
742
|
+
declare const createSwitchStepComponentViewFactory: (cfg: SwitchStepComponentViewConfiguration, branchNameResolver: BranchNamesResolver | undefined, branchNameLabelResolver: BranchNameLabelResolver | undefined) => StepComponentViewFactory;
|
|
736
743
|
|
|
737
744
|
interface TaskStepComponentViewConfiguration {
|
|
738
745
|
paddingLeft: number;
|
|
@@ -1487,4 +1494,4 @@ declare class Designer<TDefinition extends Definition = Definition> {
|
|
|
1487
1494
|
}
|
|
1488
1495
|
|
|
1489
1496
|
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 };
|
|
1490
|
-
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, DefinitionChangedEventDetails, DesignerConfiguration, DesignerExtension, DraggedComponent, DraggedComponentExtension, DuplicatedStepId, EditorsConfiguration, FoundPlaceholders, Grid, GridExtension, I18n, KeyboardConfiguration, LaunchPadStepComponentViewConfiguration, LaunchPadStepExtensionConfiguration, LineGridConfiguration, NextScale, OpenFolderClickCommand, Placeholder, PlaceholderConfiguration, PlaceholderExtension, PlaceholderView, PreferenceChange, PreferenceStorage, PreferencesChangedEvent, RectPlaceholderConfiguration, RegionComponentViewContentFactory, RegionComponentViewExtension, RegionView, RegionViewFactory, RootComponentExtension, RootEditorContext, RootEditorProvider, RootValidator, SelectStepClickCommand, SelectedStepIdProvider, SequenceComponent, SequenceComponentExtension, SequenceContext, SequencePlaceIndicator, Services, SetPreferencesClickCommand, 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 };
|
|
1497
|
+
export type { Attributes, Badge, BadgeExtension, BadgeView, BadgesDecorator, BadgesResult, BaseClickCommand, Behavior, BehaviorEndToken, BranchNameLabelResolver, BranchNamesResolver, ClickBehaviorWrapper, ClickBehaviorWrapperExtension, ClickCommand, ClickDetails, Component, ComponentView, ContainerStepComponentViewConfiguration, ContainerStepExtensionConfiguration, ContextMenuExtension, ContextMenuItem, ContextMenuItemsProvider, CustomAction, CustomActionHandler, CustomActionHandlerContext, Daemon, DaemonExtension, DefaultViewportControllerConfiguration, DefaultViewportControllerExtensionConfiguration, DefinitionChangedEvent, DefinitionChangedEventDetails, DesignerConfiguration, DesignerExtension, DraggedComponent, DraggedComponentExtension, DuplicatedStepId, EditorsConfiguration, FoundPlaceholders, Grid, GridExtension, I18n, KeyboardConfiguration, LaunchPadStepComponentViewConfiguration, LaunchPadStepExtensionConfiguration, LineGridConfiguration, NextScale, OpenFolderClickCommand, Placeholder, PlaceholderConfiguration, PlaceholderExtension, PlaceholderView, PreferenceChange, PreferenceStorage, PreferencesChangedEvent, RectPlaceholderConfiguration, RegionComponentViewContentFactory, RegionComponentViewExtension, RegionView, RegionViewFactory, RootComponentExtension, RootEditorContext, RootEditorProvider, RootValidator, SelectStepClickCommand, SelectedStepIdProvider, SequenceComponent, SequenceComponentExtension, SequenceContext, SequencePlaceIndicator, Services, SetPreferencesClickCommand, 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.37.
|
|
4
|
+
"version": "0.37.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/esm/index.js",
|
|
7
7
|
"types": "./lib/index.d.ts",
|