@ecan-bi/datav 1.0.18 → 1.0.21
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/dist/_utils/constant.d.ts +8 -0
- package/dist/_utils/hooks/index.d.ts +3 -1
- package/dist/_utils/hooks/useImagePath.d.ts +2 -0
- package/dist/_utils/hooks/useRequestParams.d.ts +5 -0
- package/dist/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
- package/dist/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
- package/dist/_utils/props.d.ts +13 -0
- package/dist/_utils/request.d.ts +2 -0
- package/dist/common/Skeleton/Skeleton.vue.d.ts +20 -0
- package/dist/common/Skeleton/index.d.ts +2 -0
- package/dist/common/echarts/ECharts.d.ts +2 -2
- package/dist/common/index.d.ts +2 -0
- package/dist/common/spin/Spin.vue.d.ts +17 -0
- package/dist/common/spin/index.d.ts +2 -0
- package/dist/container/border/props.d.ts +9 -0
- package/dist/container/card/index.d.ts +3 -0
- package/dist/container/card/props.d.ts +244 -0
- package/dist/container/index.d.ts +0 -1
- package/dist/container/modal/Modal.vue.d.ts +1 -0
- package/dist/control/button/Button.vue.d.ts +13 -0
- package/dist/control/button/props.d.ts +9 -0
- package/dist/control/date-picker/DatePicker.vue.d.ts +14 -1
- package/dist/control/date-picker/props.d.ts +9 -0
- package/dist/control/index.d.ts +1 -0
- package/dist/control/input/Input.vue.d.ts +13 -0
- package/dist/control/input/props.d.ts +9 -0
- package/dist/control/range-picker/RangePicker.vue.d.ts +194 -22
- package/dist/control/range-picker/props.d.ts +40 -0
- package/dist/control/select/Select.vue.d.ts +129 -26
- package/dist/control/select/props.d.ts +121 -23
- package/dist/{container → control}/tabs/Tabs.vue.d.ts +23 -1
- package/dist/{container → control}/tabs/index.d.ts +0 -0
- package/dist/{container → control}/tabs/props.d.ts +16 -0
- package/dist/graph/bar/Bar.vue.d.ts +88 -224
- package/dist/graph/bar/props.d.ts +76 -227
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +89 -229
- package/dist/graph/combo-graph/props.d.ts +78 -232
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +15 -0
- package/dist/graph/custom-graph/props.d.ts +11 -0
- package/dist/graph/line/Line.vue.d.ts +87 -219
- package/dist/graph/line/props.d.ts +76 -222
- package/dist/graph/pie/Pie.vue.d.ts +82 -259
- package/dist/graph/pie/props.d.ts +74 -262
- package/dist/graph/scatter/Scatter.vue.d.ts +17 -0
- package/dist/graph/scatter/props.d.ts +13 -0
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -0
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -0
- package/dist/media/image/Image.vue.d.ts +14 -0
- package/dist/media/image/props.d.ts +9 -0
- package/dist/setting/event-config/index.d.ts +2 -0
- package/dist/table/table/Table.vue.d.ts +19 -1
- package/dist/table/table/props.d.ts +13 -0
- package/dist/text/list/List.vue.d.ts +21 -0
- package/dist/text/list/props.d.ts +18 -0
- package/dist/text/text/Text.vue.d.ts +16 -0
- package/dist/text/text/props.d.ts +12 -0
- package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -0
- package/dist/text/time-display/props.d.ts +9 -0
- package/package.json +1 -2
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +0 -17
|
@@ -55,6 +55,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
55
55
|
type: any;
|
|
56
56
|
default: any;
|
|
57
57
|
};
|
|
58
|
+
value: {
|
|
59
|
+
type?: undefined;
|
|
60
|
+
default?: undefined;
|
|
61
|
+
} | {
|
|
62
|
+
type: any;
|
|
63
|
+
default: any;
|
|
64
|
+
};
|
|
58
65
|
id: {
|
|
59
66
|
type?: undefined;
|
|
60
67
|
default?: undefined;
|
|
@@ -202,11 +209,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
202
209
|
type: any;
|
|
203
210
|
default: any;
|
|
204
211
|
};
|
|
212
|
+
requestSort: {
|
|
213
|
+
type?: undefined;
|
|
214
|
+
default?: undefined;
|
|
215
|
+
} | {
|
|
216
|
+
type: any;
|
|
217
|
+
default: any;
|
|
218
|
+
};
|
|
205
219
|
}, {
|
|
206
220
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
207
221
|
activeKey: import("vue").Ref<number>;
|
|
208
222
|
isActive: (index: number) => boolean;
|
|
209
|
-
|
|
223
|
+
tabChange: () => void;
|
|
224
|
+
myData: import("vue").Ref<{
|
|
225
|
+
[x: string]: any;
|
|
226
|
+
}[]>;
|
|
227
|
+
useImagePath: (path: string) => string;
|
|
210
228
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
211
229
|
data?: unknown;
|
|
212
230
|
backgroundColor?: unknown;
|
|
@@ -216,6 +234,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
216
234
|
tabBackgroundImage?: unknown;
|
|
217
235
|
tabBarGutter?: unknown;
|
|
218
236
|
activeTabBackgroundImage?: unknown;
|
|
237
|
+
value?: unknown;
|
|
219
238
|
id?: unknown;
|
|
220
239
|
name?: unknown;
|
|
221
240
|
keyName?: unknown;
|
|
@@ -237,6 +256,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
237
256
|
isOpenRequestTimer?: unknown;
|
|
238
257
|
requestInterval?: unknown;
|
|
239
258
|
requestParams?: unknown;
|
|
259
|
+
requestSort?: unknown;
|
|
240
260
|
} & {} & {
|
|
241
261
|
type?: any;
|
|
242
262
|
data?: any;
|
|
@@ -247,6 +267,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
247
267
|
tabBackgroundImage?: any;
|
|
248
268
|
tabBarGutter?: any;
|
|
249
269
|
activeTabBackgroundImage?: any;
|
|
270
|
+
value?: any;
|
|
250
271
|
id?: any;
|
|
251
272
|
name?: any;
|
|
252
273
|
keyName?: any;
|
|
@@ -267,5 +288,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
267
288
|
isOpenRequestTimer?: any;
|
|
268
289
|
requestInterval?: any;
|
|
269
290
|
requestParams?: any;
|
|
291
|
+
requestSort?: any;
|
|
270
292
|
}>, {}>;
|
|
271
293
|
export default _default;
|
|
File without changes
|
|
@@ -10,6 +10,7 @@ export interface TabsProps extends Props {
|
|
|
10
10
|
tabBackgroundImage: string;
|
|
11
11
|
tabBarGutter: string;
|
|
12
12
|
activeTabBackgroundImage: any;
|
|
13
|
+
value: string;
|
|
13
14
|
}
|
|
14
15
|
export declare const tabsProps: TabsProps;
|
|
15
16
|
export declare const tabsComponentProps: {
|
|
@@ -69,6 +70,13 @@ export declare const tabsComponentProps: {
|
|
|
69
70
|
type: any;
|
|
70
71
|
default: any;
|
|
71
72
|
};
|
|
73
|
+
value: {
|
|
74
|
+
type?: undefined;
|
|
75
|
+
default?: undefined;
|
|
76
|
+
} | {
|
|
77
|
+
type: any;
|
|
78
|
+
default: any;
|
|
79
|
+
};
|
|
72
80
|
id: {
|
|
73
81
|
type?: undefined;
|
|
74
82
|
default?: undefined;
|
|
@@ -216,4 +224,12 @@ export declare const tabsComponentProps: {
|
|
|
216
224
|
type: any;
|
|
217
225
|
default: any;
|
|
218
226
|
};
|
|
227
|
+
requestSort: {
|
|
228
|
+
type?: undefined;
|
|
229
|
+
default?: undefined;
|
|
230
|
+
} | {
|
|
231
|
+
type: any;
|
|
232
|
+
default: any;
|
|
233
|
+
};
|
|
219
234
|
};
|
|
235
|
+
export declare const tabsEvents: string[];
|