@ecan-bi/datav 1.1.40 → 1.1.42

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 (83) hide show
  1. package/dist/index.es.js +1307 -1297
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +6 -6
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +2 -2
  6. package/package.json +1 -1
  7. package/types/container/border/Border.vue.d.ts +144 -618
  8. package/types/container/border/index.d.ts +144 -618
  9. package/types/container/border/props.d.ts +72 -309
  10. package/types/container/modal/Modal.vue.d.ts +74 -237
  11. package/types/container/modal/index.d.ts +73 -237
  12. package/types/container/modal/props.d.ts +36 -117
  13. package/types/container/tabs/Tabs.vue.d.ts +176 -400
  14. package/types/container/tabs/index.d.ts +176 -400
  15. package/types/container/tabs/props.d.ts +88 -200
  16. package/types/control/button/Button.vue.d.ts +126 -418
  17. package/types/control/button/index.d.ts +126 -418
  18. package/types/control/button/props.d.ts +63 -209
  19. package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
  20. package/types/control/checkbox/index.d.ts +102 -334
  21. package/types/control/checkbox/props.d.ts +51 -167
  22. package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
  23. package/types/control/date-picker/index.d.ts +119 -391
  24. package/types/control/date-picker/props.d.ts +59 -195
  25. package/types/control/input/Input.vue.d.ts +102 -334
  26. package/types/control/input/index.d.ts +102 -334
  27. package/types/control/input/props.d.ts +51 -167
  28. package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
  29. package/types/control/range-picker/index.d.ts +128 -420
  30. package/types/control/range-picker/props.d.ts +63 -209
  31. package/types/control/select/Select.vue.d.ts +125 -531
  32. package/types/control/select/index.d.ts +125 -531
  33. package/types/control/select/props.d.ts +59 -265
  34. package/types/graph/bar/Bar.vue.d.ts +374 -2044
  35. package/types/graph/bar/index.d.ts +373 -2043
  36. package/types/graph/bar/props.d.ts +166 -962
  37. package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
  38. package/types/graph/combo-graph/index.d.ts +339 -741
  39. package/types/graph/combo-graph/props.d.ts +154 -355
  40. package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
  41. package/types/graph/custom-graph/index.d.ts +100 -420
  42. package/types/graph/custom-graph/props.d.ts +50 -210
  43. package/types/graph/line/Line.vue.d.ts +364 -2546
  44. package/types/graph/line/index.d.ts +364 -2546
  45. package/types/graph/line/props.d.ts +149 -1211
  46. package/types/graph/pie/Pie.vue.d.ts +317 -722
  47. package/types/graph/pie/index.d.ts +316 -722
  48. package/types/graph/pie/props.d.ts +142 -345
  49. package/types/graph/scatter/Scatter.vue.d.ts +293 -639
  50. package/types/graph/scatter/index.d.ts +293 -639
  51. package/types/graph/scatter/props.d.ts +132 -305
  52. package/types/map/map/Map.vue.d.ts +269 -1404
  53. package/types/map/map/index.d.ts +269 -1404
  54. package/types/map/map/props.d.ts +121 -664
  55. package/types/media/iframe/Iframe.vue.d.ts +102 -334
  56. package/types/media/iframe/index.d.ts +102 -334
  57. package/types/media/iframe/props.d.ts +51 -167
  58. package/types/media/image/Image.vue.d.ts +110 -362
  59. package/types/media/image/index.d.ts +110 -362
  60. package/types/media/image/props.d.ts +55 -181
  61. package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
  62. package/types/setting/page-config/index.d.ts +28 -70
  63. package/types/setting/page-config/props.d.ts +14 -35
  64. package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
  65. package/types/setting/provider-config/index.d.ts +22 -62
  66. package/types/setting/provider-config/props.d.ts +11 -31
  67. package/types/table/table/Table.vue.d.ts +234 -1660
  68. package/types/table/table/index.d.ts +234 -1660
  69. package/types/table/table/props.d.ts +101 -811
  70. package/types/text/list/List.vue.d.ts +136 -688
  71. package/types/text/list/index.d.ts +136 -688
  72. package/types/text/list/props.d.ts +68 -344
  73. package/types/text/proportion/Proportion.vue.d.ts +148 -636
  74. package/types/text/proportion/index.d.ts +148 -636
  75. package/types/text/proportion/props.d.ts +74 -318
  76. package/types/text/text/Text.vue.d.ts +160 -690
  77. package/types/text/text/index.d.ts +160 -690
  78. package/types/text/text/props.d.ts +81 -346
  79. package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
  80. package/types/text/time-display/index.d.ts +126 -418
  81. package/types/text/time-display/props.d.ts +63 -209
  82. package/types/utils/props.d.ts +3 -5
  83. package/types/utils/runCode.d.ts +2 -0
@@ -13,220 +13,104 @@ export interface CheckboxProps extends Props {
13
13
  export declare const checkboxProps: CheckboxProps;
14
14
  export declare const checkboxComponentProps: {
15
15
  value: {
16
- type?: undefined;
17
- default?: undefined;
18
- } | {
19
- type: any;
20
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
21
- [key: string]: any;
22
- } | import('../../utils/props').RequestParams | CheckboxOptions;
16
+ type?: import("vue").PropType<string | string[]>;
17
+ default?: string | string[];
23
18
  };
24
19
  data: {
25
- type?: undefined;
26
- default?: undefined;
27
- } | {
28
- type: any;
29
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
30
- [key: string]: any;
31
- } | import('../../utils/props').RequestParams | CheckboxOptions;
20
+ type?: import("vue").PropType<CheckboxOptions>;
21
+ default?: CheckboxOptions;
32
22
  };
33
23
  id: {
34
- type?: undefined;
35
- default?: undefined;
36
- } | {
37
- type: any;
38
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
39
- [key: string]: any;
40
- } | import('../../utils/props').RequestParams | CheckboxOptions;
24
+ type?: import("vue").PropType<string>;
25
+ default?: string;
41
26
  };
42
27
  name: {
43
- type?: undefined;
44
- default?: undefined;
45
- } | {
46
- type: any;
47
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
48
- [key: string]: any;
49
- } | import('../../utils/props').RequestParams | CheckboxOptions;
28
+ type?: import("vue").PropType<string>;
29
+ default?: string;
50
30
  };
51
31
  keyName: {
52
- type?: undefined;
53
- default?: undefined;
54
- } | {
55
- type: any;
56
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
57
- [key: string]: any;
58
- } | import('../../utils/props').RequestParams | CheckboxOptions;
32
+ type?: import("vue").PropType<string>;
33
+ default?: string;
59
34
  };
60
35
  type: {
61
- type?: undefined;
62
- default?: undefined;
63
- } | {
64
- type: any;
65
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
66
- [key: string]: any;
67
- } | import('../../utils/props').RequestParams | CheckboxOptions;
36
+ type?: import("vue").PropType<string>;
37
+ default?: string;
68
38
  };
69
39
  width: {
70
- type?: undefined;
71
- default?: undefined;
72
- } | {
73
- type: any;
74
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
75
- [key: string]: any;
76
- } | import('../../utils/props').RequestParams | CheckboxOptions;
40
+ type?: import("vue").PropType<string>;
41
+ default?: string;
77
42
  };
78
43
  height: {
79
- type?: undefined;
80
- default?: undefined;
81
- } | {
82
- type: any;
83
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
84
- [key: string]: any;
85
- } | import('../../utils/props').RequestParams | CheckboxOptions;
44
+ type?: import("vue").PropType<string>;
45
+ default?: string;
86
46
  };
87
47
  position: {
88
- type?: undefined;
89
- default?: undefined;
90
- } | {
91
- type: any;
92
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
93
- [key: string]: any;
94
- } | import('../../utils/props').RequestParams | CheckboxOptions;
48
+ type?: import("vue").PropType<string>;
49
+ default?: string;
95
50
  };
96
51
  top: {
97
- type?: undefined;
98
- default?: undefined;
99
- } | {
100
- type: any;
101
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
102
- [key: string]: any;
103
- } | import('../../utils/props').RequestParams | CheckboxOptions;
52
+ type?: import("vue").PropType<string>;
53
+ default?: string;
104
54
  };
105
55
  left: {
106
- type?: undefined;
107
- default?: undefined;
108
- } | {
109
- type: any;
110
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
111
- [key: string]: any;
112
- } | import('../../utils/props').RequestParams | CheckboxOptions;
56
+ type?: import("vue").PropType<string>;
57
+ default?: string;
113
58
  };
114
59
  zIndex: {
115
- type?: undefined;
116
- default?: undefined;
117
- } | {
118
- type: any;
119
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
120
- [key: string]: any;
121
- } | import('../../utils/props').RequestParams | CheckboxOptions;
60
+ type?: import("vue").PropType<number>;
61
+ default?: number;
122
62
  };
123
63
  rotate: {
124
- type?: undefined;
125
- default?: undefined;
126
- } | {
127
- type: any;
128
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
129
- [key: string]: any;
130
- } | import('../../utils/props').RequestParams | CheckboxOptions;
64
+ type?: import("vue").PropType<string>;
65
+ default?: string;
131
66
  };
132
67
  isShow: {
133
- type?: undefined;
134
- default?: undefined;
135
- } | {
136
- type: any;
137
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
138
- [key: string]: any;
139
- } | import('../../utils/props').RequestParams | CheckboxOptions;
68
+ type?: import("vue").PropType<boolean>;
69
+ default?: boolean;
140
70
  };
141
71
  isRender: {
142
- type?: undefined;
143
- default?: undefined;
144
- } | {
145
- type: any;
146
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
147
- [key: string]: any;
148
- } | import('../../utils/props').RequestParams | CheckboxOptions;
72
+ type?: import("vue").PropType<boolean>;
73
+ default?: boolean;
149
74
  };
150
75
  events: {
151
- type?: undefined;
152
- default?: undefined;
153
- } | {
154
- type: any;
155
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
156
- [key: string]: any;
157
- } | import('../../utils/props').RequestParams | CheckboxOptions;
76
+ type?: import("vue").PropType<import('../../utils/props').Events>;
77
+ default?: import('../../utils/props').Events;
158
78
  };
159
79
  requestUrl: {
160
- type?: undefined;
161
- default?: undefined;
162
- } | {
163
- type: any;
164
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
165
- [key: string]: any;
166
- } | import('../../utils/props').RequestParams | CheckboxOptions;
80
+ type?: import("vue").PropType<string>;
81
+ default?: string;
167
82
  };
168
83
  requestMethod: {
169
- type?: undefined;
170
- default?: undefined;
171
- } | {
172
- type: any;
173
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
174
- [key: string]: any;
175
- } | import('../../utils/props').RequestParams | CheckboxOptions;
84
+ type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
85
+ default?: import('../../utils/props').RequestMethod;
176
86
  };
177
87
  requestHeaders: {
178
- type?: undefined;
179
- default?: undefined;
180
- } | {
181
- type: any;
182
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
88
+ type?: import("vue").PropType<{
183
89
  [key: string]: any;
184
- } | import('../../utils/props').RequestParams | CheckboxOptions;
90
+ }>;
91
+ default?: {
92
+ [key: string]: any;
93
+ };
185
94
  };
186
95
  isOpenRequestTimer: {
187
- type?: undefined;
188
- default?: undefined;
189
- } | {
190
- type: any;
191
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
192
- [key: string]: any;
193
- } | import('../../utils/props').RequestParams | CheckboxOptions;
96
+ type?: import("vue").PropType<boolean>;
97
+ default?: boolean;
194
98
  };
195
99
  requestInterval: {
196
- type?: undefined;
197
- default?: undefined;
198
- } | {
199
- type: any;
200
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
201
- [key: string]: any;
202
- } | import('../../utils/props').RequestParams | CheckboxOptions;
100
+ type?: import("vue").PropType<number>;
101
+ default?: number;
203
102
  };
204
103
  requestParams: {
205
- type?: undefined;
206
- default?: undefined;
207
- } | {
208
- type: any;
209
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
210
- [key: string]: any;
211
- } | import('../../utils/props').RequestParams | CheckboxOptions;
104
+ type?: import("vue").PropType<import('../../utils/props').RequestParams>;
105
+ default?: import('../../utils/props').RequestParams;
212
106
  };
213
107
  requestSort: {
214
- type?: undefined;
215
- default?: undefined;
216
- } | {
217
- type: any;
218
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
219
- [key: string]: any;
220
- } | import('../../utils/props').RequestParams | CheckboxOptions;
108
+ type?: import("vue").PropType<number>;
109
+ default?: number;
221
110
  };
222
111
  dataType: {
223
- type?: undefined;
224
- default?: undefined;
225
- } | {
226
- type: any;
227
- default: string | number | boolean | string[] | import('../../utils/props').Events | {
228
- [key: string]: any;
229
- } | import('../../utils/props').RequestParams | CheckboxOptions;
112
+ type?: import("vue").PropType<"indicator" | "static" | "request">;
113
+ default?: "indicator" | "static" | "request";
230
114
  };
231
115
  };
232
116
  export declare const checkboxEvents: string[];