@zyui/components 1.0.39 → 1.0.40
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 +69 -69
- package/es/index.mjs +8178 -8180
- package/es/index.umd.js +69 -69
- package/es/src/components/NodesEditor/NodesProvider.vue.d.ts +9 -0
- package/es/src/components/NodesEditor/context.d.ts +1 -0
- package/es/src/components/NodesEditor/index.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/NodesProvider.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/context.d.ts +1 -0
- package/lib/src/components/NodesEditor/index.vue.d.ts +9 -0
- package/package.json +1 -1
|
@@ -23,6 +23,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
23
23
|
type: ArrayConstructor;
|
|
24
24
|
default: () => never[];
|
|
25
25
|
};
|
|
26
|
+
dynamicNodes: {
|
|
27
|
+
type: ArrayConstructor;
|
|
28
|
+
default: () => never[];
|
|
29
|
+
};
|
|
26
30
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
31
|
formData: import('vue').PropType<any>;
|
|
28
32
|
nodes: import('vue').PropType<any>;
|
|
@@ -43,11 +47,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
43
47
|
type: ArrayConstructor;
|
|
44
48
|
default: () => never[];
|
|
45
49
|
};
|
|
50
|
+
dynamicNodes: {
|
|
51
|
+
type: ArrayConstructor;
|
|
52
|
+
default: () => never[];
|
|
53
|
+
};
|
|
46
54
|
}>> & Readonly<{}>, {
|
|
47
55
|
renderType: RenderType;
|
|
48
56
|
disabledNodes: unknown[];
|
|
49
57
|
editorId: string;
|
|
50
58
|
inputTypes: unknown[];
|
|
59
|
+
dynamicNodes: unknown[];
|
|
51
60
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
52
61
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
53
62
|
export default _default;
|
|
@@ -12,6 +12,7 @@ type NodesEditorContext = {
|
|
|
12
12
|
updateSelectNodes?: (node: NodeItem[]) => void;
|
|
13
13
|
editorId?: string;
|
|
14
14
|
disabledNodes?: Ref<NodeItem[]>;
|
|
15
|
+
dynamicNodes?: Ref<NodeItem[]>;
|
|
15
16
|
};
|
|
16
17
|
export declare const nodesEditorKey: unique symbol;
|
|
17
18
|
export declare const useNodesEditorContext: () => NodesEditorContext;
|
|
@@ -84,6 +84,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
84
84
|
type: BooleanConstructor;
|
|
85
85
|
default: boolean;
|
|
86
86
|
};
|
|
87
|
+
dynamicNodes: {
|
|
88
|
+
type: ArrayConstructor;
|
|
89
|
+
default: () => never[];
|
|
90
|
+
};
|
|
87
91
|
}>, {
|
|
88
92
|
formRef: {
|
|
89
93
|
validate: () => any;
|
|
@@ -179,6 +183,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
179
183
|
type: BooleanConstructor;
|
|
180
184
|
default: boolean;
|
|
181
185
|
};
|
|
186
|
+
dynamicNodes: {
|
|
187
|
+
type: ArrayConstructor;
|
|
188
|
+
default: () => never[];
|
|
189
|
+
};
|
|
182
190
|
}>> & Readonly<{
|
|
183
191
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
184
192
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -195,6 +203,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
195
203
|
disabledNodes: unknown[];
|
|
196
204
|
inputTypes: unknown[];
|
|
197
205
|
nodesGroups: unknown[];
|
|
206
|
+
dynamicNodes: unknown[];
|
|
198
207
|
pagesize: string;
|
|
199
208
|
showTableOperationButtons: boolean;
|
|
200
209
|
headerHtml: string;
|
|
@@ -23,6 +23,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
23
23
|
type: ArrayConstructor;
|
|
24
24
|
default: () => never[];
|
|
25
25
|
};
|
|
26
|
+
dynamicNodes: {
|
|
27
|
+
type: ArrayConstructor;
|
|
28
|
+
default: () => never[];
|
|
29
|
+
};
|
|
26
30
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
31
|
formData: import('vue').PropType<any>;
|
|
28
32
|
nodes: import('vue').PropType<any>;
|
|
@@ -43,11 +47,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
43
47
|
type: ArrayConstructor;
|
|
44
48
|
default: () => never[];
|
|
45
49
|
};
|
|
50
|
+
dynamicNodes: {
|
|
51
|
+
type: ArrayConstructor;
|
|
52
|
+
default: () => never[];
|
|
53
|
+
};
|
|
46
54
|
}>> & Readonly<{}>, {
|
|
47
55
|
renderType: RenderType;
|
|
48
56
|
disabledNodes: unknown[];
|
|
49
57
|
editorId: string;
|
|
50
58
|
inputTypes: unknown[];
|
|
59
|
+
dynamicNodes: unknown[];
|
|
51
60
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
52
61
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
53
62
|
export default _default;
|
|
@@ -12,6 +12,7 @@ type NodesEditorContext = {
|
|
|
12
12
|
updateSelectNodes?: (node: NodeItem[]) => void;
|
|
13
13
|
editorId?: string;
|
|
14
14
|
disabledNodes?: Ref<NodeItem[]>;
|
|
15
|
+
dynamicNodes?: Ref<NodeItem[]>;
|
|
15
16
|
};
|
|
16
17
|
export declare const nodesEditorKey: unique symbol;
|
|
17
18
|
export declare const useNodesEditorContext: () => NodesEditorContext;
|
|
@@ -84,6 +84,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
84
84
|
type: BooleanConstructor;
|
|
85
85
|
default: boolean;
|
|
86
86
|
};
|
|
87
|
+
dynamicNodes: {
|
|
88
|
+
type: ArrayConstructor;
|
|
89
|
+
default: () => never[];
|
|
90
|
+
};
|
|
87
91
|
}>, {
|
|
88
92
|
formRef: {
|
|
89
93
|
validate: () => any;
|
|
@@ -179,6 +183,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
179
183
|
type: BooleanConstructor;
|
|
180
184
|
default: boolean;
|
|
181
185
|
};
|
|
186
|
+
dynamicNodes: {
|
|
187
|
+
type: ArrayConstructor;
|
|
188
|
+
default: () => never[];
|
|
189
|
+
};
|
|
182
190
|
}>> & Readonly<{
|
|
183
191
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
184
192
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -195,6 +203,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
195
203
|
disabledNodes: unknown[];
|
|
196
204
|
inputTypes: unknown[];
|
|
197
205
|
nodesGroups: unknown[];
|
|
206
|
+
dynamicNodes: unknown[];
|
|
198
207
|
pagesize: string;
|
|
199
208
|
showTableOperationButtons: boolean;
|
|
200
209
|
headerHtml: string;
|