@szjy/workflow 0.1.8 → 0.1.9
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.mjs +21791 -21720
- package/dist/index.umd.js +192 -192
- package/dist/packages/components/Workflow/biz-logic/leave/types.d.ts +1 -0
- package/dist/packages/components/Workflow/slots.d.ts +1 -0
- package/dist/packages/components/Workflow/utils/common.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -1,6 +1,7 @@
|
|
1
1
|
export declare const SLOT_NAMES: {
|
2
2
|
readonly TOOLBAR_PREFIX: "TOOLBAR_PREFIX";
|
3
3
|
readonly USER_CHOOSER_SUFFIX: "USER_CHOOSER_SUFFIX";
|
4
|
+
readonly FORMID_CHOOSER_SUFFIX: "FORMID_CHOOSER_SUFFIX";
|
4
5
|
};
|
5
6
|
type SlotNames = keyof typeof SLOT_NAMES;
|
6
7
|
export declare const slotKeyName: (name: SlotNames) => string;
|
@@ -1,3 +1,4 @@
|
|
1
1
|
export declare function isUndefined(value: any): value is undefined;
|
2
2
|
export declare function isJsonString(str?: string): str is string;
|
3
3
|
export declare function tryNormalizeJsonString(str?: string): string;
|
4
|
+
export declare function generateRandomId(min: number, max: number): number;
|