@szjy/workflow 0.1.7 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +7 -0
- 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 +2 -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;
|