@a2simcode/ui 0.0.20 → 0.0.22

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.
Files changed (84) hide show
  1. package/LICENSE +53 -53
  2. package/README.md +130 -130
  3. package/dist/components/autocomplete/index.d.ts +3 -0
  4. package/dist/components/autocomplete/src/autocomplete.vue.d.ts +3 -0
  5. package/dist/components/barcode/index.d.ts +520 -93
  6. package/dist/components/barcode/src/barcode.vue.d.ts +419 -98
  7. package/dist/components/button-select/index.d.ts +61 -0
  8. package/dist/components/button-select/src/button-select.vue.d.ts +35 -0
  9. package/dist/components/cascader-select/index.d.ts +4 -20
  10. package/dist/components/cascader-select/src/cascader-select.vue.d.ts +4 -33
  11. package/dist/components/checkbox/index.d.ts +3 -3
  12. package/dist/components/checkbox/src/checkbox.vue.d.ts +1 -1
  13. package/dist/components/code-mirror/index.d.ts +0 -1
  14. package/dist/components/code-mirror/src/code-mirror.vue.d.ts +0 -1
  15. package/dist/components/collapse/index.d.ts +44 -0
  16. package/dist/components/collapse/src/collapse.vue.d.ts +37 -0
  17. package/dist/components/comp/index.d.ts +30 -15
  18. package/dist/components/comp/src/comp.vue.d.ts +31 -45
  19. package/dist/components/comp/src/interface.d.ts +101 -0
  20. package/dist/components/count-up/index.d.ts +3 -3
  21. package/dist/components/count-up/src/count-up.vue.d.ts +1 -1
  22. package/dist/components/dialog/index.d.ts +5 -5
  23. package/dist/components/dialog/src/index.vue.d.ts +2 -2
  24. package/dist/components/dialog-full/index.d.ts +5 -5
  25. package/dist/components/dialog-full/src/index.vue.d.ts +2 -2
  26. package/dist/components/drawer/index.d.ts +5 -5
  27. package/dist/components/drawer/src/drawer.vue.d.ts +2 -2
  28. package/dist/components/editor/index.d.ts +160 -0
  29. package/dist/components/editor/src/editor.vue.d.ts +86 -0
  30. package/dist/components/form/index.d.ts +6 -6
  31. package/dist/components/form/src/form.vue.d.ts +3 -3
  32. package/dist/components/form-item/src/form-item.vue.d.ts +1 -1
  33. package/dist/components/icon/src/icon.vue.d.ts +0 -4
  34. package/dist/components/index.d.ts +22 -6
  35. package/dist/components/inject-provide.d.ts +159 -0
  36. package/dist/components/input/index.d.ts +3 -1
  37. package/dist/components/input/src/input.vue.d.ts +5 -1
  38. package/dist/components/input-color/index.d.ts +114 -0
  39. package/dist/components/input-color/src/input-color.vue.d.ts +73 -0
  40. package/dist/components/input-rows/index.d.ts +200 -0
  41. package/dist/components/input-rows/src/input-rows.vue.d.ts +154 -0
  42. package/dist/components/input-rows/src/interface.d.ts +33 -0
  43. package/dist/components/layer-form/index.d.ts +178 -0
  44. package/dist/components/layer-form/src/layer-form.vue.d.ts +149 -0
  45. package/dist/components/map/index.d.ts +127 -0
  46. package/dist/components/map/src/map.vue.d.ts +92 -0
  47. package/dist/components/number/index.d.ts +3 -3
  48. package/dist/components/number/src/number.vue.d.ts +3 -3
  49. package/dist/components/page/index.d.ts +6 -6
  50. package/dist/components/page/src/page.vue.d.ts +2 -2
  51. package/dist/components/select/index.d.ts +6 -1
  52. package/dist/components/select/src/select.vue.d.ts +7 -2
  53. package/dist/components/slider/index.d.ts +3 -3
  54. package/dist/components/slider/src/slider.vue.d.ts +1 -1
  55. package/dist/components/switch/index.d.ts +71 -0
  56. package/dist/components/switch/src/switch.vue.d.ts +83 -0
  57. package/dist/components/table/index.d.ts +275 -66
  58. package/dist/components/table/src/editors/index.d.ts +26 -0
  59. package/dist/components/table/src/editors/j-comp-editor.d.ts +62 -0
  60. package/dist/components/table/src/table.vue.d.ts +326 -61
  61. package/dist/components/table/src/theme/default.d.ts +27 -0
  62. package/dist/components/table-panel/index.d.ts +459 -0
  63. package/dist/components/table-panel/src/column-panel.vue.d.ts +37 -0
  64. package/dist/components/table-panel/src/filter-panel.vue.d.ts +49 -0
  65. package/dist/components/table-panel/src/keyword-panel.vue.d.ts +36 -0
  66. package/dist/components/table-panel/src/order-panel.vue.d.ts +24 -0
  67. package/dist/components/table-panel/src/table-panel.vue.d.ts +445 -0
  68. package/dist/components/tabs/index.d.ts +156 -0
  69. package/dist/components/tabs/src/tabs.vue.d.ts +110 -0
  70. package/dist/components/tree/index.d.ts +451 -0
  71. package/dist/components/tree/src/tree.vue.d.ts +478 -0
  72. package/dist/components/upload/index.d.ts +13 -13
  73. package/dist/components/upload/src/list.vue.d.ts +1 -1
  74. package/dist/components/upload/src/upload.vue.d.ts +5 -5
  75. package/dist/core/utils/comp.d.ts +18 -0
  76. package/dist/core/utils/index.d.ts +2 -0
  77. package/dist/core/utils/map.d.ts +1 -0
  78. package/dist/core/utils/tree.d.ts +1 -0
  79. package/dist/core/utils/useSortable.d.ts +5 -0
  80. package/dist/simcode-ui.es.js +6888 -3212
  81. package/dist/simcode-ui.umd.js +2 -2
  82. package/dist/stats.html +1 -1
  83. package/dist/ui.css +1 -1
  84. package/package.json +50 -25
@@ -70,18 +70,18 @@ export declare const JDialogFull: {
70
70
  };
71
71
  }>> & Readonly<{
72
72
  onOk?: ((...args: any[]) => any) | undefined;
73
+ onCancel?: ((...args: any[]) => any) | undefined;
73
74
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
74
75
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
75
- onCancel?: ((...args: any[]) => any) | undefined;
76
76
  onClosed?: ((...args: any[]) => any) | undefined;
77
77
  }>, {
78
78
  showLoading: (text?: string) => void;
79
79
  hideLoading: () => void;
80
80
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
81
81
  ok: (...args: any[]) => void;
82
+ cancel: (...args: any[]) => void;
82
83
  "update:visible": (...args: any[]) => void;
83
84
  "update:stepActive": (...args: any[]) => void;
84
- cancel: (...args: any[]) => void;
85
85
  closed: (...args: any[]) => void;
86
86
  }, import('vue').PublicProps, {
87
87
  title: string;
@@ -176,9 +176,9 @@ export declare const JDialogFull: {
176
176
  };
177
177
  }>> & Readonly<{
178
178
  onOk?: ((...args: any[]) => any) | undefined;
179
+ onCancel?: ((...args: any[]) => any) | undefined;
179
180
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
180
181
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
181
- onCancel?: ((...args: any[]) => any) | undefined;
182
182
  onClosed?: ((...args: any[]) => any) | undefined;
183
183
  }>, {
184
184
  showLoading: (text?: string) => void;
@@ -273,18 +273,18 @@ export declare const JDialogFull: {
273
273
  };
274
274
  }>> & Readonly<{
275
275
  onOk?: ((...args: any[]) => any) | undefined;
276
+ onCancel?: ((...args: any[]) => any) | undefined;
276
277
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
277
278
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
278
- onCancel?: ((...args: any[]) => any) | undefined;
279
279
  onClosed?: ((...args: any[]) => any) | undefined;
280
280
  }>, {
281
281
  showLoading: (text?: string) => void;
282
282
  hideLoading: () => void;
283
283
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
284
284
  ok: (...args: any[]) => void;
285
+ cancel: (...args: any[]) => void;
285
286
  "update:visible": (...args: any[]) => void;
286
287
  "update:stepActive": (...args: any[]) => void;
287
- cancel: (...args: any[]) => void;
288
288
  closed: (...args: any[]) => void;
289
289
  }, string, {
290
290
  title: string;
@@ -133,9 +133,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
133
133
  hideLoading: () => void;
134
134
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
135
135
  ok: (...args: any[]) => void;
136
+ cancel: (...args: any[]) => void;
136
137
  "update:visible": (...args: any[]) => void;
137
138
  "update:stepActive": (...args: any[]) => void;
138
- cancel: (...args: any[]) => void;
139
139
  closed: (...args: any[]) => void;
140
140
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
141
141
  /**
@@ -258,9 +258,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
258
258
  };
259
259
  }>> & Readonly<{
260
260
  onOk?: ((...args: any[]) => any) | undefined;
261
+ onCancel?: ((...args: any[]) => any) | undefined;
261
262
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
262
263
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
263
- onCancel?: ((...args: any[]) => any) | undefined;
264
264
  onClosed?: ((...args: any[]) => any) | undefined;
265
265
  }>, {
266
266
  title: string;
@@ -74,18 +74,18 @@ export declare const JDrawer: {
74
74
  };
75
75
  }>> & Readonly<{
76
76
  onOk?: ((...args: any[]) => any) | undefined;
77
+ onCancel?: ((...args: any[]) => any) | undefined;
77
78
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
78
79
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
79
- onCancel?: ((...args: any[]) => any) | undefined;
80
80
  onClosed?: ((...args: any[]) => any) | undefined;
81
81
  }>, {
82
82
  showLoading: (text?: string) => void;
83
83
  hideLoading: () => void;
84
84
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
85
85
  ok: (...args: any[]) => void;
86
+ cancel: (...args: any[]) => void;
86
87
  "update:visible": (...args: any[]) => void;
87
88
  "update:stepActive": (...args: any[]) => void;
88
- cancel: (...args: any[]) => void;
89
89
  closed: (...args: any[]) => void;
90
90
  }, import('vue').PublicProps, {
91
91
  title: string;
@@ -188,9 +188,9 @@ export declare const JDrawer: {
188
188
  };
189
189
  }>> & Readonly<{
190
190
  onOk?: ((...args: any[]) => any) | undefined;
191
+ onCancel?: ((...args: any[]) => any) | undefined;
191
192
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
192
193
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
193
- onCancel?: ((...args: any[]) => any) | undefined;
194
194
  onClosed?: ((...args: any[]) => any) | undefined;
195
195
  }>, {
196
196
  showLoading: (text?: string) => void;
@@ -293,18 +293,18 @@ export declare const JDrawer: {
293
293
  };
294
294
  }>> & Readonly<{
295
295
  onOk?: ((...args: any[]) => any) | undefined;
296
+ onCancel?: ((...args: any[]) => any) | undefined;
296
297
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
297
298
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
298
- onCancel?: ((...args: any[]) => any) | undefined;
299
299
  onClosed?: ((...args: any[]) => any) | undefined;
300
300
  }>, {
301
301
  showLoading: (text?: string) => void;
302
302
  hideLoading: () => void;
303
303
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
304
304
  ok: (...args: any[]) => void;
305
+ cancel: (...args: any[]) => void;
305
306
  "update:visible": (...args: any[]) => void;
306
307
  "update:stepActive": (...args: any[]) => void;
307
- cancel: (...args: any[]) => void;
308
308
  closed: (...args: any[]) => void;
309
309
  }, string, {
310
310
  title: string;
@@ -156,9 +156,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
156
156
  hideLoading: () => void;
157
157
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
158
158
  ok: (...args: any[]) => void;
159
+ cancel: (...args: any[]) => void;
159
160
  "update:visible": (...args: any[]) => void;
160
161
  "update:stepActive": (...args: any[]) => void;
161
- cancel: (...args: any[]) => void;
162
162
  closed: (...args: any[]) => void;
163
163
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
164
164
  /**
@@ -304,9 +304,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
304
304
  };
305
305
  }>> & Readonly<{
306
306
  onOk?: ((...args: any[]) => any) | undefined;
307
+ onCancel?: ((...args: any[]) => any) | undefined;
307
308
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
308
309
  "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
309
- onCancel?: ((...args: any[]) => any) | undefined;
310
310
  onClosed?: ((...args: any[]) => any) | undefined;
311
311
  }>, {
312
312
  title: string;
@@ -0,0 +1,160 @@
1
+ export declare const JEditorComp: {
2
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3
+ value: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ height: {
8
+ type: (StringConstructor | NumberConstructor)[];
9
+ default: number;
10
+ };
11
+ options: {
12
+ type: ObjectConstructor;
13
+ default: () => {};
14
+ };
15
+ placeholder: {
16
+ type: StringConstructor;
17
+ default: undefined;
18
+ };
19
+ readonly: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ isUploadImg: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ token: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ apiUrl: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ }>> & Readonly<{
36
+ onChange?: ((...args: any[]) => any) | undefined;
37
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
38
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
39
+ change: (...args: any[]) => void;
40
+ "update:value": (...args: any[]) => void;
41
+ }, import('vue').PublicProps, {
42
+ height: string | number;
43
+ value: string;
44
+ readonly: boolean;
45
+ placeholder: string;
46
+ options: Record<string, any>;
47
+ isUploadImg: boolean;
48
+ apiUrl: string;
49
+ token: string;
50
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
51
+ toolbarRef: HTMLDivElement;
52
+ editorRef: HTMLDivElement;
53
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
54
+ P: {};
55
+ B: {};
56
+ D: {};
57
+ C: {};
58
+ M: {};
59
+ Defaults: {};
60
+ }, Readonly<import('vue').ExtractPropTypes<{
61
+ value: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ height: {
66
+ type: (StringConstructor | NumberConstructor)[];
67
+ default: number;
68
+ };
69
+ options: {
70
+ type: ObjectConstructor;
71
+ default: () => {};
72
+ };
73
+ placeholder: {
74
+ type: StringConstructor;
75
+ default: undefined;
76
+ };
77
+ readonly: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ isUploadImg: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
85
+ token: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ apiUrl: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ }>> & Readonly<{
94
+ onChange?: ((...args: any[]) => any) | undefined;
95
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
96
+ }>, {}, {}, {}, {}, {
97
+ height: string | number;
98
+ value: string;
99
+ readonly: boolean;
100
+ placeholder: string;
101
+ options: Record<string, any>;
102
+ isUploadImg: boolean;
103
+ apiUrl: string;
104
+ token: string;
105
+ }>;
106
+ __isFragment?: never;
107
+ __isTeleport?: never;
108
+ __isSuspense?: never;
109
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
110
+ value: {
111
+ type: StringConstructor;
112
+ default: string;
113
+ };
114
+ height: {
115
+ type: (StringConstructor | NumberConstructor)[];
116
+ default: number;
117
+ };
118
+ options: {
119
+ type: ObjectConstructor;
120
+ default: () => {};
121
+ };
122
+ placeholder: {
123
+ type: StringConstructor;
124
+ default: undefined;
125
+ };
126
+ readonly: {
127
+ type: BooleanConstructor;
128
+ default: boolean;
129
+ };
130
+ isUploadImg: {
131
+ type: BooleanConstructor;
132
+ default: boolean;
133
+ };
134
+ token: {
135
+ type: StringConstructor;
136
+ default: string;
137
+ };
138
+ apiUrl: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ }>> & Readonly<{
143
+ onChange?: ((...args: any[]) => any) | undefined;
144
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
145
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
146
+ change: (...args: any[]) => void;
147
+ "update:value": (...args: any[]) => void;
148
+ }, string, {
149
+ height: string | number;
150
+ value: string;
151
+ readonly: boolean;
152
+ placeholder: string;
153
+ options: Record<string, any>;
154
+ isUploadImg: boolean;
155
+ apiUrl: string;
156
+ token: string;
157
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
158
+ install: (app: import('vue').App) => void;
159
+ };
160
+ export default JEditorComp;
@@ -0,0 +1,86 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ value: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ height: {
7
+ type: (StringConstructor | NumberConstructor)[];
8
+ default: number;
9
+ };
10
+ options: {
11
+ type: ObjectConstructor;
12
+ default: () => {};
13
+ };
14
+ placeholder: {
15
+ type: StringConstructor;
16
+ default: undefined;
17
+ };
18
+ readonly: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ isUploadImg: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ token: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ apiUrl: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
35
+ change: (...args: any[]) => void;
36
+ "update:value": (...args: any[]) => void;
37
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
+ value: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ height: {
43
+ type: (StringConstructor | NumberConstructor)[];
44
+ default: number;
45
+ };
46
+ options: {
47
+ type: ObjectConstructor;
48
+ default: () => {};
49
+ };
50
+ placeholder: {
51
+ type: StringConstructor;
52
+ default: undefined;
53
+ };
54
+ readonly: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ isUploadImg: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ token: {
63
+ type: StringConstructor;
64
+ default: string;
65
+ };
66
+ apiUrl: {
67
+ type: StringConstructor;
68
+ default: string;
69
+ };
70
+ }>> & Readonly<{
71
+ onChange?: ((...args: any[]) => any) | undefined;
72
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
73
+ }>, {
74
+ height: string | number;
75
+ value: string;
76
+ readonly: boolean;
77
+ placeholder: string;
78
+ options: Record<string, any>;
79
+ isUploadImg: boolean;
80
+ apiUrl: string;
81
+ token: string;
82
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
83
+ toolbarRef: HTMLDivElement;
84
+ editorRef: HTMLDivElement;
85
+ }, HTMLDivElement>;
86
+ export default _default;
@@ -2,7 +2,7 @@ export declare const JForm: {
2
2
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3
3
  config: {
4
4
  type: import('vue').PropType<{
5
- labelWidth: number | string;
5
+ labelWidth: number;
6
6
  labelPosition: "left" | "right" | "top";
7
7
  size: "" | "large" | "default" | "small";
8
8
  gutter: number;
@@ -51,7 +51,7 @@ export declare const JForm: {
51
51
  }, import('vue').PublicProps, {
52
52
  readonly: boolean;
53
53
  config: {
54
- labelWidth: number | string;
54
+ labelWidth: number;
55
55
  labelPosition: "left" | "right" | "top";
56
56
  size: "" | "large" | "default" | "small";
57
57
  gutter: number;
@@ -70,7 +70,7 @@ export declare const JForm: {
70
70
  }, Readonly<import('vue').ExtractPropTypes<{
71
71
  config: {
72
72
  type: import('vue').PropType<{
73
- labelWidth: number | string;
73
+ labelWidth: number;
74
74
  labelPosition: "left" | "right" | "top";
75
75
  size: "" | "large" | "default" | "small";
76
76
  gutter: number;
@@ -117,7 +117,7 @@ export declare const JForm: {
117
117
  }, {}, {}, {}, {
118
118
  readonly: boolean;
119
119
  config: {
120
- labelWidth: number | string;
120
+ labelWidth: number;
121
121
  labelPosition: "left" | "right" | "top";
122
122
  size: "" | "large" | "default" | "small";
123
123
  gutter: number;
@@ -133,7 +133,7 @@ export declare const JForm: {
133
133
  } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
134
134
  config: {
135
135
  type: import('vue').PropType<{
136
- labelWidth: number | string;
136
+ labelWidth: number;
137
137
  labelPosition: "left" | "right" | "top";
138
138
  size: "" | "large" | "default" | "small";
139
139
  gutter: number;
@@ -182,7 +182,7 @@ export declare const JForm: {
182
182
  }, string, {
183
183
  readonly: boolean;
184
184
  config: {
185
- labelWidth: number | string;
185
+ labelWidth: number;
186
186
  labelPosition: "left" | "right" | "top";
187
187
  size: "" | "large" | "default" | "small";
188
188
  gutter: number;
@@ -6,7 +6,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
6
6
  */
7
7
  config: {
8
8
  type: PropType<{
9
- labelWidth: number | string;
9
+ labelWidth: number;
10
10
  labelPosition: "left" | "right" | "top";
11
11
  size: "" | "large" | "default" | "small";
12
12
  gutter: number;
@@ -62,7 +62,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
62
62
  */
63
63
  config: {
64
64
  type: PropType<{
65
- labelWidth: number | string;
65
+ labelWidth: number;
66
66
  labelPosition: "left" | "right" | "top";
67
67
  size: "" | "large" | "default" | "small";
68
68
  gutter: number;
@@ -94,7 +94,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
94
94
  }>, {
95
95
  readonly: boolean;
96
96
  config: {
97
- labelWidth: number | string;
97
+ labelWidth: number;
98
98
  labelPosition: "left" | "right" | "top";
99
99
  size: "" | "large" | "default" | "small";
100
100
  gutter: number;
@@ -1,5 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- import { SchemaRuntimeConfig } from '../../comp/src/comp.vue';
2
+ import { SchemaRuntimeConfig } from '../../comp/src/interface';
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  /**
5
5
  * @zh 组件 id
@@ -15,10 +15,6 @@ export interface IconProps {
15
15
  * @zh 旋转角度
16
16
  */
17
17
  rotate?: number;
18
- /**
19
- * @zh 翻转
20
- * /
21
- flip?: 'horizontal' | 'vertical' | 'both'
22
18
  /**
23
19
  * @zh 是否需要div包裹
24
20
  */
@@ -29,23 +29,32 @@ import { default as JDivider } from './divider';
29
29
  import { default as JHpanel } from './hpanel';
30
30
  import { default as JInputButton } from './input-button';
31
31
  import { default as JInputCode } from './input-code';
32
+ import { default as JInputColor } from './input-color';
32
33
  import { default as JTitle } from './title';
33
34
  import { default as JCodeMirror } from './code-mirror';
34
35
  import { default as JSliderCaptcha } from './slider-captcha';
35
36
  import { default as JMenu } from './menu';
37
+ import { default as JTablePanel } from './table-panel';
38
+ import { default as JButtonSelect } from './button-select';
39
+ import { default as JTree } from './tree';
36
40
  import { default as JComp } from './comp';
37
41
  import { default as JForm } from './form';
38
42
  import { default as JFormItem } from './form-item';
39
43
  import { default as JPage } from './page';
40
44
  import { default as JGuid } from './guid';
41
- export { JButton, JButtons, JInput, JIcon, JRadio, JSelect, JCascaderSelect, JCheckbox, JNumber, JAutoComplete, JLayout, JTable, JDialog, JDialogFull, JDrawer, JLayer, JDynamicLayer, JInputTag, JRate, JSlider, JUpload, JEcharts, JBarcode, JCodeMirror, JCount, JCountUp, JDataPanel, JDivider, JHpanel, JGuid, JInputButton, JInputCode, JTitle, JComp, JForm, JFormItem, JPage, JSliderCaptcha, JMenu };
45
+ import { default as JInputRows } from './input-rows';
46
+ import { default as JLayerForm } from './layer-form';
47
+ import { default as JSwitch } from './switch';
48
+ import { default as JTabs } from './tabs';
49
+ import { default as JCollapse } from './collapse';
50
+ import { default as JEditor } from './editor';
51
+ export { JButton, JButtons, JInput, JIcon, JRadio, JSelect, JCascaderSelect, JCheckbox, JNumber, JAutoComplete, JLayout, JTable, JDialog, JDialogFull, JDrawer, JLayer, JDynamicLayer, JInputTag, JRate, JSlider, JUpload, JEcharts, JBarcode, JCodeMirror, JCount, JCountUp, JDataPanel, JDivider, JHpanel, JGuid, JInputButton, JInputCode, JInputColor, JTitle, JButtonSelect, JTree, JComp, JForm, JFormItem, JPage, JSliderCaptcha, JMenu, JTablePanel, JInputRows, JLayerForm, JSwitch, JTabs, JCollapse, JEditor, };
42
52
  export * from '../core';
43
53
  export type { InputProps } from './input/src/input.vue';
44
54
  export type { SelectOption, SelectProps } from './select/src/select.vue';
45
- export type { TableColumn, TableRecord } from './table/src/table.vue';
46
- export type { BarcodeFormat, BarcodeProps } from './barcode/src/barcode.vue';
47
- export type { Option as AutocompleteOption, AutocompleteProps } from './autocomplete/src/autocomplete.vue';
48
- export type { CascaderSelectOption, CascaderSelectProps } from './cascader-select/src/cascader-select.vue';
55
+ export type { SwitchProps } from './switch/src/switch.vue';
56
+ export type { Option as AutocompleteOption, AutocompleteProps, } from './autocomplete/src/autocomplete.vue';
57
+ export type { CascaderSelectOption, CascaderSelectProps, } from './cascader-select/src/cascader-select.vue';
49
58
  export type { CheckboxOption, CheckboxProps } from './checkbox/src/checkbox.vue';
50
59
  export type { CodeMirrorProps } from './code-mirror/src/code-mirror.vue';
51
60
  export type { DividerProps } from './divider/src/divider.vue';
@@ -57,7 +66,7 @@ export type { SliderProps } from './slider/src/slider.vue';
57
66
  export type { CountProps } from './count/src/count.vue';
58
67
  export type { CountUpProps } from './count-up/src/count-up.vue';
59
68
  export type { DataPanelProps } from './data-panel/src/data-panel.vue';
60
- export type { SchemaRuntimeConfig } from './comp/src/comp.vue';
69
+ export type { SchemaRuntimeConfig } from './comp/src/interface';
61
70
  export type { buttonItem } from './buttons/src/interface';
62
71
  export type { FormLayerParamType } from './dynamic-layer/src/interface';
63
72
  export type { FormSchemaConfig, RuleType } from './form/src/interface';
@@ -65,7 +74,14 @@ export type { PageSchemaConfig } from './page/src/interface';
65
74
  export type { GuidProps, GuidSizeType } from './guid/src/guid.vue';
66
75
  export type { InputButtonProps } from './input-button/src/input-button.vue';
67
76
  export type { InputCodeProps } from './input-code/src/input-code.vue';
77
+ export type { InputColorProps } from './input-color/src/input-color.vue';
68
78
  export type { TitleProps } from './title/src/title.vue';
79
+ export type { ButtonItem as TablePanelButtonItem } from './table-panel/src/table-panel.vue';
80
+ export type { ButtonSelectProps, ButtonSelectOption } from './button-select/src/button-select.vue';
81
+ export type { EditConfigType } from './input-rows/src/interface';
82
+ export type { TableColumnConfig, TableAction } from './table/src/table.vue';
83
+ export type { TabsProps } from './tabs/src/tabs.vue';
84
+ export type { CollapseProps } from './collapse/src/collapse.vue';
69
85
  declare const _default: {
70
86
  install: (app: App) => void;
71
87
  };