@zyui/components 1.0.12 → 1.0.14
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/es/index.js +79 -79
- package/es/index.mjs +21438 -21249
- package/es/src/components/NodesEditor/index.d.ts +2 -0
- package/es/src/components/ProEditor/plugins/helper.d.ts +1 -0
- package/es/src/components/WorkforceSelector/hooks/useUserGroupByDepartment.d.ts +1 -1
- package/es/src/components/WorkforceSelector/hooks/useUserGroupByRole.d.ts +1 -1
- package/es/style.css +1 -1
- package/lib/src/components/NodesEditor/index.d.ts +2 -0
- package/lib/src/components/ProEditor/plugins/helper.d.ts +1 -0
- package/lib/src/components/WorkforceSelector/hooks/useUserGroupByDepartment.d.ts +1 -1
- package/lib/src/components/WorkforceSelector/hooks/useUserGroupByRole.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export { default as NodesEditor } from './index.vue';
|
|
2
2
|
export { default as NodeSelect } from './NodeSelect/index.vue';
|
|
3
|
+
export { default as NodesText } from './NodesText/index.vue';
|
|
3
4
|
export { default as NodeFormula } from './Formula/index.vue';
|
|
4
5
|
export { default as FunctionSelect } from './Formula/FunctionSelect/index.vue';
|
|
5
6
|
export { default as NodesEditorPreview } from './Preview/index.vue';
|
|
6
7
|
export { useSelect as useNodeSelect } from './NodeSelect/hooks/useSelect';
|
|
8
|
+
export * from './helper';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useUserGroupByDepartment: (data: any, params: any) => import('vue').ComputedRef<any[]>;
|
|
1
|
+
export declare const useUserGroupByDepartment: (data: any, params: any, options?: any) => import('vue').ComputedRef<any[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useUserGroupByRole: (data: any, params: any) => import('vue').ComputedRef<any[]>;
|
|
1
|
+
export declare const useUserGroupByRole: (data: any, params: any, options?: any) => import('vue').ComputedRef<any[]>;
|