@zyui/components 0.0.117 → 0.0.118

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.
@@ -6,10 +6,7 @@ declare function __VLS_template(): {
6
6
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
7
  formData: import('vue').PropType<any>;
8
8
  nodes: import('vue').PropType<any>;
9
- modelValue: {
10
- type: StringConstructor;
11
- default: string;
12
- };
9
+ modelValue: import('vue').PropType<any>;
13
10
  renderType: {
14
11
  type: () => RenderType;
15
12
  default: string;
@@ -29,10 +26,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
29
26
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
30
27
  formData: import('vue').PropType<any>;
31
28
  nodes: import('vue').PropType<any>;
32
- modelValue: {
33
- type: StringConstructor;
34
- default: string;
35
- };
29
+ modelValue: import('vue').PropType<any>;
36
30
  renderType: {
37
31
  type: () => RenderType;
38
32
  default: string;
@@ -50,7 +44,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
50
44
  default: () => never[];
51
45
  };
52
46
  }>> & Readonly<{}>, {
53
- modelValue: string;
54
47
  renderType: RenderType;
55
48
  disabledNodes: unknown[];
56
49
  editorId: string;
@@ -3,7 +3,7 @@ import { NodeItem, RenderType } from './type';
3
3
 
4
4
  type NodesEditorContext = {
5
5
  renderType: RenderType;
6
- modelValue: string;
6
+ modelValue: Ref<string>;
7
7
  inputTypes: any[];
8
8
  nodes: Ref<any[]>;
9
9
  updateNodes: (nodes: any[]) => void;
@@ -65,6 +65,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
65
65
  };
66
66
  setSelectedNodes: (nodes: NodeItem[]) => void;
67
67
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
68
+ "update:modelValue": (...args: any[]) => void;
68
69
  onSelectedNodes: (...args: any[]) => void;
69
70
  onUiReady: (...args: any[]) => void;
70
71
  "update:nodes": (...args: any[]) => void;
@@ -124,6 +125,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
124
125
  default: () => {};
125
126
  };
126
127
  }>> & Readonly<{
128
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
127
129
  onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
128
130
  onOnUiReady?: ((...args: any[]) => any) | undefined;
129
131
  "onUpdate:nodes"?: ((...args: any[]) => any) | undefined;