@ecan-bi/datav 1.0.16 → 1.0.19
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 +740 -0
- package/dist/graph/combo-graph/index.d.ts +3 -0
- package/dist/graph/combo-graph/props.d.ts +465 -0
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +15 -0
- package/dist/graph/custom-graph/props.d.ts +11 -0
- package/dist/graph/index.d.ts +1 -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 -2
- package/dist/index.esm.js.map +1 -0
- package/dist/index.umd.js +3 -2
- 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 -1
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +0 -17
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
export declare const EVENT_BUS = "EVENT_BUS";
|
|
2
2
|
export declare const GLOBAL_CONFIG = "GLOBAL_CONFIG";
|
|
3
3
|
export declare const GLOBAL_MODEL = "GLOBAL_MODEL";
|
|
4
|
+
export declare const REQUEST_MODEL = "REQUEST_MODEL";
|
|
5
|
+
export declare const loadingOption: {
|
|
6
|
+
text: string;
|
|
7
|
+
color: string;
|
|
8
|
+
textColor: string;
|
|
9
|
+
maskColor: string;
|
|
10
|
+
lineWidth: number;
|
|
11
|
+
};
|
|
@@ -2,5 +2,7 @@ export * from './usePickComponentStyle';
|
|
|
2
2
|
export * from './usePickEchartsData';
|
|
3
3
|
export * from './useOnEvent';
|
|
4
4
|
export * from './useEmitEvent';
|
|
5
|
-
export * from './
|
|
5
|
+
export * from './useTransformChartDataByAttrValue';
|
|
6
6
|
export * from './useRequestData';
|
|
7
|
+
export * from './useTransformChartDataByAttrKey';
|
|
8
|
+
export * from './useImagePath';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Data, KeyTypeDataFieldNames } from '../props';
|
|
2
|
+
/**
|
|
3
|
+
* 图形转化数据
|
|
4
|
+
* @param data 数据
|
|
5
|
+
* @param dataFieldNames 字段映射
|
|
6
|
+
*/
|
|
7
|
+
export declare const useTransformChartDataByAttrKey: (data: Data, dataFieldNames: KeyTypeDataFieldNames) => {
|
|
8
|
+
dimensions: unknown[];
|
|
9
|
+
dataset: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}[];
|
|
12
|
+
};
|
|
13
|
+
export default useTransformChartDataByAttrKey;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Data, ValueTypeDataFieldNames } from '../props';
|
|
2
|
+
/**
|
|
3
|
+
* 图形转化数据
|
|
4
|
+
* @param data 数据
|
|
5
|
+
* @param dataFieldNames 字段映射
|
|
6
|
+
*/
|
|
7
|
+
export declare const useTransformChartDataByAttrValue: (data: Data, dataFieldNames?: ValueTypeDataFieldNames) => {
|
|
8
|
+
dimensions: unknown[];
|
|
9
|
+
dataset: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}[];
|
|
12
|
+
};
|
|
13
|
+
export default useTransformChartDataByAttrValue;
|
package/dist/_utils/props.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export interface Props {
|
|
|
37
37
|
isOpenRequestTimer: boolean;
|
|
38
38
|
requestInterval: number;
|
|
39
39
|
requestParams: RequestParams;
|
|
40
|
+
requestSort: number;
|
|
40
41
|
}
|
|
41
42
|
export declare const props: Props;
|
|
42
43
|
export declare const transformToComponentProps: <T extends {}>(props: T) => { [P in keyof T]: {
|
|
@@ -55,4 +56,16 @@ interface DataItem {
|
|
|
55
56
|
type?: string;
|
|
56
57
|
}
|
|
57
58
|
export declare type Data = DataItem[];
|
|
59
|
+
export interface KeyTypeDataFieldNames {
|
|
60
|
+
name: string;
|
|
61
|
+
types: {
|
|
62
|
+
label: string;
|
|
63
|
+
value: string;
|
|
64
|
+
}[];
|
|
65
|
+
}
|
|
66
|
+
export interface ValueTypeDataFieldNames {
|
|
67
|
+
name: string;
|
|
68
|
+
value: string;
|
|
69
|
+
type: string;
|
|
70
|
+
}
|
|
58
71
|
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
loading: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
block: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
11
|
+
loading?: unknown;
|
|
12
|
+
block?: unknown;
|
|
13
|
+
} & {
|
|
14
|
+
loading: boolean;
|
|
15
|
+
block: boolean;
|
|
16
|
+
} & {}>, {
|
|
17
|
+
loading: boolean;
|
|
18
|
+
block: boolean;
|
|
19
|
+
}>;
|
|
20
|
+
export default _default;
|
|
@@ -258,13 +258,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
258
258
|
dataIndexInside?: number;
|
|
259
259
|
}, value: number[]) => boolean;
|
|
260
260
|
getDataURL: (opts?: {
|
|
261
|
-
type?: "svg" | "png" | "
|
|
261
|
+
type?: "svg" | "png" | "jpeg";
|
|
262
262
|
pixelRatio?: number;
|
|
263
263
|
backgroundColor?: import("echarts/types/dist/shared").ZRColor;
|
|
264
264
|
excludeComponents?: string[];
|
|
265
265
|
}) => string;
|
|
266
266
|
getConnectedDataURL: (opts?: {
|
|
267
|
-
type?: "svg" | "png" | "
|
|
267
|
+
type?: "svg" | "png" | "jpeg";
|
|
268
268
|
pixelRatio?: number;
|
|
269
269
|
backgroundColor?: import("echarts/types/dist/shared").ZRColor;
|
|
270
270
|
connectedBackgroundColor?: import("echarts/types/dist/shared").ZRColor;
|
package/dist/common/index.d.ts
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
spinning: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
}, {
|
|
7
|
+
indicator: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
}>;
|
|
10
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
11
|
+
spinning?: unknown;
|
|
12
|
+
} & {
|
|
13
|
+
spinning: boolean;
|
|
14
|
+
} & {}>, {
|
|
15
|
+
spinning: boolean;
|
|
16
|
+
}>;
|
|
17
|
+
export default _default;
|
|
@@ -242,4 +242,13 @@ export declare const cardComponentProps: {
|
|
|
242
242
|
[key: string]: any;
|
|
243
243
|
} | import("../../_utils/props").RequestParams;
|
|
244
244
|
};
|
|
245
|
+
requestSort: {
|
|
246
|
+
type?: undefined;
|
|
247
|
+
default?: undefined;
|
|
248
|
+
} | {
|
|
249
|
+
type: any;
|
|
250
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
251
|
+
[key: string]: any;
|
|
252
|
+
} | import("../../_utils/props").RequestParams;
|
|
253
|
+
};
|
|
245
254
|
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const EcanCard: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>> & Record<string, any>;
|
|
2
|
+
export default EcanCard;
|
|
3
|
+
export * from './props';
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
import { Props } from '../../_utils/props';
|
|
2
|
+
export interface CardProps extends Props {
|
|
3
|
+
fontSize: string;
|
|
4
|
+
fontFamily: string;
|
|
5
|
+
fontWeight: number;
|
|
6
|
+
title: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const cardProps: CardProps;
|
|
9
|
+
export declare const cardComponentProps: {
|
|
10
|
+
fontSize: {
|
|
11
|
+
type?: undefined;
|
|
12
|
+
default?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
type: any;
|
|
15
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
fontFamily: {
|
|
20
|
+
type?: undefined;
|
|
21
|
+
default?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
type: any;
|
|
24
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
fontWeight: {
|
|
29
|
+
type?: undefined;
|
|
30
|
+
default?: undefined;
|
|
31
|
+
} | {
|
|
32
|
+
type: any;
|
|
33
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
title: {
|
|
38
|
+
type?: undefined;
|
|
39
|
+
default?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
type: any;
|
|
42
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
id: {
|
|
47
|
+
type?: undefined;
|
|
48
|
+
default?: undefined;
|
|
49
|
+
} | {
|
|
50
|
+
type: any;
|
|
51
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
52
|
+
[key: string]: any;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
name: {
|
|
56
|
+
type?: undefined;
|
|
57
|
+
default?: undefined;
|
|
58
|
+
} | {
|
|
59
|
+
type: any;
|
|
60
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
keyName: {
|
|
65
|
+
type?: undefined;
|
|
66
|
+
default?: undefined;
|
|
67
|
+
} | {
|
|
68
|
+
type: any;
|
|
69
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
70
|
+
[key: string]: any;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
type: {
|
|
74
|
+
type?: undefined;
|
|
75
|
+
default?: undefined;
|
|
76
|
+
} | {
|
|
77
|
+
type: any;
|
|
78
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
79
|
+
[key: string]: any;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
width: {
|
|
83
|
+
type?: undefined;
|
|
84
|
+
default?: undefined;
|
|
85
|
+
} | {
|
|
86
|
+
type: any;
|
|
87
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
height: {
|
|
92
|
+
type?: undefined;
|
|
93
|
+
default?: undefined;
|
|
94
|
+
} | {
|
|
95
|
+
type: any;
|
|
96
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
97
|
+
[key: string]: any;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
position: {
|
|
101
|
+
type?: undefined;
|
|
102
|
+
default?: undefined;
|
|
103
|
+
} | {
|
|
104
|
+
type: any;
|
|
105
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
106
|
+
[key: string]: any;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
top: {
|
|
110
|
+
type?: undefined;
|
|
111
|
+
default?: undefined;
|
|
112
|
+
} | {
|
|
113
|
+
type: any;
|
|
114
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
115
|
+
[key: string]: any;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
left: {
|
|
119
|
+
type?: undefined;
|
|
120
|
+
default?: undefined;
|
|
121
|
+
} | {
|
|
122
|
+
type: any;
|
|
123
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
124
|
+
[key: string]: any;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
zIndex: {
|
|
128
|
+
type?: undefined;
|
|
129
|
+
default?: undefined;
|
|
130
|
+
} | {
|
|
131
|
+
type: any;
|
|
132
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
133
|
+
[key: string]: any;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
rotate: {
|
|
137
|
+
type?: undefined;
|
|
138
|
+
default?: undefined;
|
|
139
|
+
} | {
|
|
140
|
+
type: any;
|
|
141
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
isShow: {
|
|
146
|
+
type?: undefined;
|
|
147
|
+
default?: undefined;
|
|
148
|
+
} | {
|
|
149
|
+
type: any;
|
|
150
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
151
|
+
[key: string]: any;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
isRender: {
|
|
155
|
+
type?: undefined;
|
|
156
|
+
default?: undefined;
|
|
157
|
+
} | {
|
|
158
|
+
type: any;
|
|
159
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
160
|
+
[key: string]: any;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
isRequestData: {
|
|
164
|
+
type?: undefined;
|
|
165
|
+
default?: undefined;
|
|
166
|
+
} | {
|
|
167
|
+
type: any;
|
|
168
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
169
|
+
[key: string]: any;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
events: {
|
|
173
|
+
type?: undefined;
|
|
174
|
+
default?: undefined;
|
|
175
|
+
} | {
|
|
176
|
+
type: any;
|
|
177
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
178
|
+
[key: string]: any;
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
requestUrl: {
|
|
182
|
+
type?: undefined;
|
|
183
|
+
default?: undefined;
|
|
184
|
+
} | {
|
|
185
|
+
type: any;
|
|
186
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
requestMethod: {
|
|
191
|
+
type?: undefined;
|
|
192
|
+
default?: undefined;
|
|
193
|
+
} | {
|
|
194
|
+
type: any;
|
|
195
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
requestHeaders: {
|
|
200
|
+
type?: undefined;
|
|
201
|
+
default?: undefined;
|
|
202
|
+
} | {
|
|
203
|
+
type: any;
|
|
204
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
205
|
+
[key: string]: any;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
isOpenRequestTimer: {
|
|
209
|
+
type?: undefined;
|
|
210
|
+
default?: undefined;
|
|
211
|
+
} | {
|
|
212
|
+
type: any;
|
|
213
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
214
|
+
[key: string]: any;
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
requestInterval: {
|
|
218
|
+
type?: undefined;
|
|
219
|
+
default?: undefined;
|
|
220
|
+
} | {
|
|
221
|
+
type: any;
|
|
222
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
223
|
+
[key: string]: any;
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
requestParams: {
|
|
227
|
+
type?: undefined;
|
|
228
|
+
default?: undefined;
|
|
229
|
+
} | {
|
|
230
|
+
type: any;
|
|
231
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
232
|
+
[key: string]: any;
|
|
233
|
+
};
|
|
234
|
+
};
|
|
235
|
+
requestSort: {
|
|
236
|
+
type?: undefined;
|
|
237
|
+
default?: undefined;
|
|
238
|
+
} | {
|
|
239
|
+
type: any;
|
|
240
|
+
default: string | number | boolean | import("../../_utils/props").RequestParams | import("../../_utils/props").Events | {
|
|
241
|
+
[key: string]: any;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
};
|
|
@@ -190,6 +190,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
190
190
|
[key: string]: any;
|
|
191
191
|
} | import("src/_utils/props").RequestParams;
|
|
192
192
|
};
|
|
193
|
+
requestSort: {
|
|
194
|
+
type?: undefined;
|
|
195
|
+
default?: undefined;
|
|
196
|
+
} | {
|
|
197
|
+
type: any;
|
|
198
|
+
default: string | number | boolean | Events | {
|
|
199
|
+
[key: string]: any;
|
|
200
|
+
} | import("src/_utils/props").RequestParams;
|
|
201
|
+
};
|
|
193
202
|
}, {
|
|
194
203
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
195
204
|
click: () => void;
|
|
@@ -215,6 +224,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
215
224
|
isOpenRequestTimer?: unknown;
|
|
216
225
|
requestInterval?: unknown;
|
|
217
226
|
requestParams?: unknown;
|
|
227
|
+
requestSort?: unknown;
|
|
218
228
|
} & {} & {
|
|
219
229
|
type?: string | number | boolean | {
|
|
220
230
|
[key: string]: any;
|
|
@@ -279,5 +289,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
279
289
|
requestParams?: string | number | boolean | {
|
|
280
290
|
[key: string]: any;
|
|
281
291
|
};
|
|
292
|
+
requestSort?: string | number | boolean | {
|
|
293
|
+
[key: string]: any;
|
|
294
|
+
};
|
|
282
295
|
}>, {}>;
|
|
283
296
|
export default _default;
|
|
@@ -192,5 +192,14 @@ export declare const buttonComponentProps: {
|
|
|
192
192
|
[key: string]: any;
|
|
193
193
|
} | import("../../_utils/props").RequestParams;
|
|
194
194
|
};
|
|
195
|
+
requestSort: {
|
|
196
|
+
type?: undefined;
|
|
197
|
+
default?: undefined;
|
|
198
|
+
} | {
|
|
199
|
+
type: any;
|
|
200
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
201
|
+
[key: string]: any;
|
|
202
|
+
} | import("../../_utils/props").RequestParams;
|
|
203
|
+
};
|
|
195
204
|
};
|
|
196
205
|
export declare const buttonEvents: string[];
|
|
@@ -227,6 +227,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
227
227
|
[key: string]: any;
|
|
228
228
|
} | import("../../_utils/props").RequestParams;
|
|
229
229
|
};
|
|
230
|
+
requestSort: {
|
|
231
|
+
type?: undefined;
|
|
232
|
+
default?: undefined;
|
|
233
|
+
} | {
|
|
234
|
+
type: any;
|
|
235
|
+
default: string | number | boolean | Events | {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
} | import("../../_utils/props").RequestParams;
|
|
238
|
+
};
|
|
230
239
|
}, {
|
|
231
240
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
232
241
|
getPopupContainer: () => HTMLElement;
|
|
@@ -272,7 +281,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
272
281
|
startOf: (unit: dayjs.OpUnitType) => dayjs.Dayjs;
|
|
273
282
|
endOf: (unit: dayjs.OpUnitType) => dayjs.Dayjs;
|
|
274
283
|
format: (template?: string) => string;
|
|
275
|
-
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "date" | "week" | "month" | "quarter" | "year" | "M" | "day" | "hour" | "minute" | "second" | "millisecond" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "s" | "ms" | "weeks" | "w" | "quarters" | "Q", float?: boolean) => number;
|
|
284
|
+
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "date" | "week" | "month" | "quarter" | "year" | "D" | "M" | "day" | "hour" | "minute" | "second" | "millisecond" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "s" | "ms" | "weeks" | "w" | "quarters" | "Q", float?: boolean) => number;
|
|
276
285
|
valueOf: () => number;
|
|
277
286
|
unix: () => number;
|
|
278
287
|
daysInMonth: () => number;
|
|
@@ -317,6 +326,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
317
326
|
isOpenRequestTimer?: unknown;
|
|
318
327
|
requestInterval?: unknown;
|
|
319
328
|
requestParams?: unknown;
|
|
329
|
+
requestSort?: unknown;
|
|
320
330
|
} & {} & {
|
|
321
331
|
type?: string | number | boolean | {
|
|
322
332
|
[key: string]: any;
|
|
@@ -393,5 +403,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
393
403
|
requestParams?: string | number | boolean | {
|
|
394
404
|
[key: string]: any;
|
|
395
405
|
};
|
|
406
|
+
requestSort?: string | number | boolean | {
|
|
407
|
+
[key: string]: any;
|
|
408
|
+
};
|
|
396
409
|
}>, {}>;
|
|
397
410
|
export default _default;
|
|
@@ -232,5 +232,14 @@ export declare const datePickerComponentProps: {
|
|
|
232
232
|
[key: string]: any;
|
|
233
233
|
} | import("../../_utils/props").RequestParams;
|
|
234
234
|
};
|
|
235
|
+
requestSort: {
|
|
236
|
+
type?: undefined;
|
|
237
|
+
default?: undefined;
|
|
238
|
+
} | {
|
|
239
|
+
type: any;
|
|
240
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
241
|
+
[key: string]: any;
|
|
242
|
+
} | import("../../_utils/props").RequestParams;
|
|
243
|
+
};
|
|
235
244
|
};
|
|
236
245
|
export declare const datePickerEvents: string[];
|
package/dist/control/index.d.ts
CHANGED
|
@@ -207,6 +207,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
207
207
|
[key: string]: any;
|
|
208
208
|
} | import("../../_utils/props").RequestParams;
|
|
209
209
|
};
|
|
210
|
+
requestSort: {
|
|
211
|
+
type?: undefined;
|
|
212
|
+
default?: undefined;
|
|
213
|
+
} | {
|
|
214
|
+
type: any;
|
|
215
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
} | import("../../_utils/props").RequestParams;
|
|
218
|
+
};
|
|
210
219
|
}, {
|
|
211
220
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
212
221
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
@@ -233,6 +242,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
233
242
|
isOpenRequestTimer?: unknown;
|
|
234
243
|
requestInterval?: unknown;
|
|
235
244
|
requestParams?: unknown;
|
|
245
|
+
requestSort?: unknown;
|
|
236
246
|
} & {} & {
|
|
237
247
|
id?: string | number | boolean | {
|
|
238
248
|
[key: string]: any;
|
|
@@ -303,5 +313,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
303
313
|
requestParams?: string | number | boolean | {
|
|
304
314
|
[key: string]: any;
|
|
305
315
|
};
|
|
316
|
+
requestSort?: string | number | boolean | {
|
|
317
|
+
[key: string]: any;
|
|
318
|
+
};
|
|
306
319
|
}>, {}>;
|
|
307
320
|
export default _default;
|
|
@@ -212,4 +212,13 @@ export declare const inputComponentProps: {
|
|
|
212
212
|
[key: string]: any;
|
|
213
213
|
} | import("../../_utils/props").RequestParams;
|
|
214
214
|
};
|
|
215
|
+
requestSort: {
|
|
216
|
+
type?: undefined;
|
|
217
|
+
default?: undefined;
|
|
218
|
+
} | {
|
|
219
|
+
type: any;
|
|
220
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
221
|
+
[key: string]: any;
|
|
222
|
+
} | import("../../_utils/props").RequestParams;
|
|
223
|
+
};
|
|
215
224
|
};
|