@spiffcommerce/core 26.22.1 → 26.23.0-beta.bb34beac-e663-5dca-b95b-caf892d90f8d
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/dist/index.d.ts +3 -0
- package/dist/index.js +45 -43
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +180 -174
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2713,6 +2713,7 @@ interface Step<T extends AnyStepData = AnyStepData> {
|
|
|
2713
2713
|
globalPropertyAspectConfigurations?: GlobalPropertyAspectConfiguration[];
|
|
2714
2714
|
helpText?: string;
|
|
2715
2715
|
mandatory?: boolean;
|
|
2716
|
+
relevantPanelName?: string;
|
|
2716
2717
|
silent?: boolean;
|
|
2717
2718
|
option?: OptionResource;
|
|
2718
2719
|
optionId?: string;
|
|
@@ -3378,6 +3379,7 @@ interface ILayout {
|
|
|
3378
3379
|
width: number;
|
|
3379
3380
|
};
|
|
3380
3381
|
name: string;
|
|
3382
|
+
title?: string;
|
|
3381
3383
|
}
|
|
3382
3384
|
interface FileInfo {
|
|
3383
3385
|
/**
|
|
@@ -4401,6 +4403,7 @@ interface WorkflowPanel {
|
|
|
4401
4403
|
height: number;
|
|
4402
4404
|
width: number;
|
|
4403
4405
|
name: string;
|
|
4406
|
+
title?: string;
|
|
4404
4407
|
index: number;
|
|
4405
4408
|
transparentBackground?: boolean;
|
|
4406
4409
|
previewRegion?: PreviewRegion;
|