@ecan-bi/datav 1.3.64 → 1.3.65
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/index.es.js +8258 -5439
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +29 -25
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +3 -2
- package/types/control/date-picker/DatePicker.vue.d.ts +12 -3
- package/types/control/date-picker/index.d.ts +12 -3
- package/types/control/range-picker/RangePicker.vue.d.ts +23 -6
- package/types/control/range-picker/index.d.ts +23 -6
- package/types/control/select/Select.vue.d.ts +10 -0
- package/types/control/select/index.d.ts +10 -0
- package/types/graph/scatter/Scatter.vue.d.ts +65 -0
- package/types/graph/scatter/index.d.ts +65 -0
- package/types/graph/scatter/props.d.ts +30 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/datav",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.65",
|
|
4
4
|
"main": "dist/index.umd.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -86,7 +86,8 @@
|
|
|
86
86
|
"lodash-es": "^4.17.21",
|
|
87
87
|
"lottie-web": "^5.12.2",
|
|
88
88
|
"mitt": "^3.0.0",
|
|
89
|
-
"resize-detector": "^0.3.0"
|
|
89
|
+
"resize-detector": "^0.3.0",
|
|
90
|
+
"vant": "^4.9.5"
|
|
90
91
|
},
|
|
91
92
|
"peerDependencies": {
|
|
92
93
|
"ant-design-vue": "^3.1.1",
|
|
@@ -175,14 +175,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
175
175
|
};
|
|
176
176
|
startOf: {
|
|
177
177
|
(unit: dayjs.OpUnitType): dayjs.Dayjs;
|
|
178
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
178
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): dayjs.Dayjs;
|
|
179
179
|
};
|
|
180
180
|
endOf: {
|
|
181
181
|
(unit: dayjs.OpUnitType): dayjs.Dayjs;
|
|
182
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
182
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): dayjs.Dayjs;
|
|
183
183
|
};
|
|
184
184
|
format: (template?: string) => string;
|
|
185
|
-
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
185
|
+
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w", float?: boolean) => number;
|
|
186
186
|
valueOf: () => number;
|
|
187
187
|
unix: () => number;
|
|
188
188
|
daysInMonth: () => number;
|
|
@@ -221,6 +221,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
221
221
|
popupStyle: any;
|
|
222
222
|
customStyle: any;
|
|
223
223
|
openChange: (status: boolean) => void;
|
|
224
|
+
isMobile: boolean;
|
|
225
|
+
mobileDateStr: import("vue").Ref<string>;
|
|
226
|
+
handleClearDate: () => void;
|
|
227
|
+
openDatePick: () => void;
|
|
228
|
+
datePickVisible: import("vue").Ref<boolean>;
|
|
229
|
+
columnsType: import("vue").ComputedRef<string[]>;
|
|
230
|
+
mobileDate: import("vue").Ref<any[]>;
|
|
231
|
+
onConfirmDate: () => void;
|
|
232
|
+
onCancelDate: () => void;
|
|
224
233
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
225
234
|
value: {
|
|
226
235
|
type?: import("vue").PropType<string>;
|
|
@@ -173,14 +173,14 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
173
173
|
};
|
|
174
174
|
startOf: {
|
|
175
175
|
(unit: import("dayjs").OpUnitType): import("dayjs").Dayjs;
|
|
176
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
176
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): import("dayjs").Dayjs;
|
|
177
177
|
};
|
|
178
178
|
endOf: {
|
|
179
179
|
(unit: import("dayjs").OpUnitType): import("dayjs").Dayjs;
|
|
180
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
180
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): import("dayjs").Dayjs;
|
|
181
181
|
};
|
|
182
182
|
format: (template?: string) => string;
|
|
183
|
-
diff: (date?: string | number | import("dayjs").Dayjs | Date, unit?: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
183
|
+
diff: (date?: string | number | import("dayjs").Dayjs | Date, unit?: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w", float?: boolean) => number;
|
|
184
184
|
valueOf: () => number;
|
|
185
185
|
unix: () => number;
|
|
186
186
|
daysInMonth: () => number;
|
|
@@ -219,6 +219,15 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
219
219
|
popupStyle: any;
|
|
220
220
|
customStyle: any;
|
|
221
221
|
openChange: (status: boolean) => void;
|
|
222
|
+
isMobile: boolean;
|
|
223
|
+
mobileDateStr: import("vue").Ref<string>;
|
|
224
|
+
handleClearDate: () => void;
|
|
225
|
+
openDatePick: () => void;
|
|
226
|
+
datePickVisible: import("vue").Ref<boolean>;
|
|
227
|
+
columnsType: import("vue").ComputedRef<string[]>;
|
|
228
|
+
mobileDate: import("vue").Ref<any[]>;
|
|
229
|
+
onConfirmDate: () => void;
|
|
230
|
+
onCancelDate: () => void;
|
|
222
231
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
223
232
|
value: {
|
|
224
233
|
type?: import("vue").PropType<string>;
|
|
@@ -205,14 +205,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
205
205
|
};
|
|
206
206
|
startOf: {
|
|
207
207
|
(unit: dayjs.OpUnitType): dayjs.Dayjs;
|
|
208
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
208
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): dayjs.Dayjs;
|
|
209
209
|
};
|
|
210
210
|
endOf: {
|
|
211
211
|
(unit: dayjs.OpUnitType): dayjs.Dayjs;
|
|
212
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
212
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): dayjs.Dayjs;
|
|
213
213
|
};
|
|
214
214
|
format: (template?: string) => string;
|
|
215
|
-
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
215
|
+
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w", float?: boolean) => number;
|
|
216
216
|
valueOf: () => number;
|
|
217
217
|
unix: () => number;
|
|
218
218
|
daysInMonth: () => number;
|
|
@@ -288,14 +288,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
288
288
|
};
|
|
289
289
|
startOf: {
|
|
290
290
|
(unit: dayjs.OpUnitType): dayjs.Dayjs;
|
|
291
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
291
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): dayjs.Dayjs;
|
|
292
292
|
};
|
|
293
293
|
endOf: {
|
|
294
294
|
(unit: dayjs.OpUnitType): dayjs.Dayjs;
|
|
295
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
295
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): dayjs.Dayjs;
|
|
296
296
|
};
|
|
297
297
|
format: (template?: string) => string;
|
|
298
|
-
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
298
|
+
diff: (date?: string | number | dayjs.Dayjs | Date, unit?: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w", float?: boolean) => number;
|
|
299
299
|
valueOf: () => number;
|
|
300
300
|
unix: () => number;
|
|
301
301
|
daysInMonth: () => number;
|
|
@@ -329,6 +329,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
329
329
|
calendarChange: (dates: [Dayjs, Dayjs] | null, _dateStrings: any, info: any) => void;
|
|
330
330
|
openChange: (status: boolean) => void;
|
|
331
331
|
change: () => void;
|
|
332
|
+
isMobile: boolean;
|
|
333
|
+
mobileDateStr: import("vue").Ref<string>;
|
|
334
|
+
datePickVisible: import("vue").Ref<boolean>;
|
|
335
|
+
columnsType: import("vue").ComputedRef<string[]>;
|
|
336
|
+
openDatePick: () => void;
|
|
337
|
+
handleClearDate: () => void;
|
|
338
|
+
onConfirmDate: () => void;
|
|
339
|
+
onCancelDate: () => void;
|
|
340
|
+
mobileStartDate: import("vue").Ref<any[]>;
|
|
341
|
+
mobileEndDate: import("vue").Ref<any[]>;
|
|
342
|
+
startMinDate: import("vue").Ref<any>;
|
|
343
|
+
startMaxDate: import("vue").Ref<any>;
|
|
344
|
+
endMinDate: import("vue").Ref<any>;
|
|
345
|
+
endMaxDate: import("vue").Ref<any>;
|
|
346
|
+
pickerTabKey: import("vue").Ref<number>;
|
|
347
|
+
onStartDateChange: () => void;
|
|
348
|
+
onEndDateChange: () => void;
|
|
332
349
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
333
350
|
picker: {
|
|
334
351
|
type?: import("vue").PropType<"date" | "month" | "year" | "quarter" | "week">;
|
|
@@ -203,14 +203,14 @@ export declare const EcanRangePicker: import("../../utils/withInstall").SFCWithI
|
|
|
203
203
|
};
|
|
204
204
|
startOf: {
|
|
205
205
|
(unit: import("dayjs").OpUnitType): import("dayjs").Dayjs;
|
|
206
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
206
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): import("dayjs").Dayjs;
|
|
207
207
|
};
|
|
208
208
|
endOf: {
|
|
209
209
|
(unit: import("dayjs").OpUnitType): import("dayjs").Dayjs;
|
|
210
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
210
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): import("dayjs").Dayjs;
|
|
211
211
|
};
|
|
212
212
|
format: (template?: string) => string;
|
|
213
|
-
diff: (date?: string | number | import("dayjs").Dayjs | Date, unit?: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
213
|
+
diff: (date?: string | number | import("dayjs").Dayjs | Date, unit?: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w", float?: boolean) => number;
|
|
214
214
|
valueOf: () => number;
|
|
215
215
|
unix: () => number;
|
|
216
216
|
daysInMonth: () => number;
|
|
@@ -286,14 +286,14 @@ export declare const EcanRangePicker: import("../../utils/withInstall").SFCWithI
|
|
|
286
286
|
};
|
|
287
287
|
startOf: {
|
|
288
288
|
(unit: import("dayjs").OpUnitType): import("dayjs").Dayjs;
|
|
289
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
289
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): import("dayjs").Dayjs;
|
|
290
290
|
};
|
|
291
291
|
endOf: {
|
|
292
292
|
(unit: import("dayjs").OpUnitType): import("dayjs").Dayjs;
|
|
293
|
-
(unit: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
293
|
+
(unit: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w"): import("dayjs").Dayjs;
|
|
294
294
|
};
|
|
295
295
|
format: (template?: string) => string;
|
|
296
|
-
diff: (date?: string | number | import("dayjs").Dayjs | Date, unit?: "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "
|
|
296
|
+
diff: (date?: string | number | import("dayjs").Dayjs | Date, unit?: "D" | "M" | "s" | "date" | "millisecond" | "second" | "minute" | "hour" | "day" | "month" | "year" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "y" | "h" | "m" | "ms" | "quarter" | "quarters" | "Q" | "week" | "weeks" | "w", float?: boolean) => number;
|
|
297
297
|
valueOf: () => number;
|
|
298
298
|
unix: () => number;
|
|
299
299
|
daysInMonth: () => number;
|
|
@@ -327,6 +327,23 @@ export declare const EcanRangePicker: import("../../utils/withInstall").SFCWithI
|
|
|
327
327
|
calendarChange: (dates: [import("dayjs").Dayjs, import("dayjs").Dayjs], _dateStrings: any, info: any) => void;
|
|
328
328
|
openChange: (status: boolean) => void;
|
|
329
329
|
change: () => void;
|
|
330
|
+
isMobile: boolean;
|
|
331
|
+
mobileDateStr: import("vue").Ref<string>;
|
|
332
|
+
datePickVisible: import("vue").Ref<boolean>;
|
|
333
|
+
columnsType: import("vue").ComputedRef<string[]>;
|
|
334
|
+
openDatePick: () => void;
|
|
335
|
+
handleClearDate: () => void;
|
|
336
|
+
onConfirmDate: () => void;
|
|
337
|
+
onCancelDate: () => void;
|
|
338
|
+
mobileStartDate: import("vue").Ref<any[]>;
|
|
339
|
+
mobileEndDate: import("vue").Ref<any[]>;
|
|
340
|
+
startMinDate: import("vue").Ref<any>;
|
|
341
|
+
startMaxDate: import("vue").Ref<any>;
|
|
342
|
+
endMinDate: import("vue").Ref<any>;
|
|
343
|
+
endMaxDate: import("vue").Ref<any>;
|
|
344
|
+
pickerTabKey: import("vue").Ref<number>;
|
|
345
|
+
onStartDateChange: () => void;
|
|
346
|
+
onEndDateChange: () => void;
|
|
330
347
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
331
348
|
picker: {
|
|
332
349
|
type?: import("vue").PropType<"date" | "month" | "year" | "quarter" | "week">;
|
|
@@ -170,6 +170,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
170
170
|
filterOption: (input: string, option: any) => boolean;
|
|
171
171
|
loading: import("vue").Ref<boolean>;
|
|
172
172
|
resultValue: import("vue").WritableComputedRef<any>;
|
|
173
|
+
isMobile: boolean;
|
|
174
|
+
customFieldName: {
|
|
175
|
+
text: string;
|
|
176
|
+
value: string;
|
|
177
|
+
};
|
|
178
|
+
pickVisible: import("vue").Ref<boolean>;
|
|
179
|
+
onConfirmPicker: () => void;
|
|
180
|
+
mobileValue: import("vue").ComputedRef<string>;
|
|
181
|
+
openPicker: () => void;
|
|
182
|
+
mobileSelectValue: import("vue").Ref<any[]>;
|
|
173
183
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
174
184
|
data: {
|
|
175
185
|
type?: import("vue").PropType<import("./props").SelectOptions>;
|
|
@@ -170,6 +170,16 @@ export declare const EcanSelect: import('../../utils/withInstall').SFCWithInstal
|
|
|
170
170
|
filterOption: (input: string, option: any) => boolean;
|
|
171
171
|
loading: import("vue").Ref<boolean>;
|
|
172
172
|
resultValue: import("vue").WritableComputedRef<any>;
|
|
173
|
+
isMobile: boolean;
|
|
174
|
+
customFieldName: {
|
|
175
|
+
text: string;
|
|
176
|
+
value: string;
|
|
177
|
+
};
|
|
178
|
+
pickVisible: import("vue").Ref<boolean>;
|
|
179
|
+
onConfirmPicker: () => void;
|
|
180
|
+
mobileValue: import("vue").ComputedRef<string>;
|
|
181
|
+
openPicker: () => void;
|
|
182
|
+
mobileSelectValue: import("vue").Ref<any[]>;
|
|
173
183
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
174
184
|
data: {
|
|
175
185
|
type?: import("vue").PropType<import("./props").SelectOptions>;
|
|
@@ -67,6 +67,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
67
67
|
type?: import("vue").PropType<number>;
|
|
68
68
|
default?: number;
|
|
69
69
|
};
|
|
70
|
+
symbolColor: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
70
74
|
xAxisLabelInterval: {
|
|
71
75
|
type?: import("vue").PropType<number>;
|
|
72
76
|
default?: number;
|
|
@@ -269,6 +273,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
269
273
|
type?: import("vue").PropType<string>;
|
|
270
274
|
default?: string;
|
|
271
275
|
};
|
|
276
|
+
showXAxisLineArrow: {
|
|
277
|
+
type?: import("vue").PropType<boolean>;
|
|
278
|
+
default?: boolean;
|
|
279
|
+
};
|
|
280
|
+
showYAxisLineArrow: {
|
|
281
|
+
type?: import("vue").PropType<boolean>;
|
|
282
|
+
default?: boolean;
|
|
283
|
+
};
|
|
284
|
+
xAxisLineInverse: {
|
|
285
|
+
type?: import("vue").PropType<boolean>;
|
|
286
|
+
default?: boolean;
|
|
287
|
+
};
|
|
288
|
+
yAxisLineInverse: {
|
|
289
|
+
type?: import("vue").PropType<boolean>;
|
|
290
|
+
default?: boolean;
|
|
291
|
+
};
|
|
292
|
+
yAxisTickShow: {
|
|
293
|
+
type?: import("vue").PropType<boolean>;
|
|
294
|
+
default?: boolean;
|
|
295
|
+
};
|
|
272
296
|
id: {
|
|
273
297
|
type?: import("vue").PropType<string>;
|
|
274
298
|
default?: string;
|
|
@@ -439,6 +463,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
439
463
|
lineStyle: {
|
|
440
464
|
color: string;
|
|
441
465
|
};
|
|
466
|
+
symbol: string[];
|
|
467
|
+
symbolSize: number[];
|
|
468
|
+
onZero: boolean;
|
|
442
469
|
};
|
|
443
470
|
axisTick: {
|
|
444
471
|
show: boolean;
|
|
@@ -449,6 +476,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
449
476
|
color: string;
|
|
450
477
|
align: string;
|
|
451
478
|
};
|
|
479
|
+
inverse: boolean;
|
|
452
480
|
};
|
|
453
481
|
yAxis: {
|
|
454
482
|
splitLine: {
|
|
@@ -458,6 +486,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
458
486
|
type: "dashed" | "dotted" | "solid";
|
|
459
487
|
};
|
|
460
488
|
};
|
|
489
|
+
axisTick: {
|
|
490
|
+
show: boolean;
|
|
491
|
+
};
|
|
461
492
|
splitArea: {
|
|
462
493
|
show: boolean;
|
|
463
494
|
};
|
|
@@ -472,6 +503,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
472
503
|
lineStyle: {
|
|
473
504
|
color: string;
|
|
474
505
|
};
|
|
506
|
+
symbol: string[];
|
|
507
|
+
symbolSize: number[];
|
|
508
|
+
onZero: boolean;
|
|
475
509
|
};
|
|
476
510
|
name: string;
|
|
477
511
|
nameTextStyle: {
|
|
@@ -479,6 +513,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
479
513
|
color: string;
|
|
480
514
|
align: string;
|
|
481
515
|
};
|
|
516
|
+
inverse: boolean;
|
|
482
517
|
};
|
|
483
518
|
tooltip: {
|
|
484
519
|
show: boolean;
|
|
@@ -513,6 +548,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
513
548
|
}[];
|
|
514
549
|
type: string;
|
|
515
550
|
symbolSize: number;
|
|
551
|
+
itemStyle: {
|
|
552
|
+
color: string;
|
|
553
|
+
};
|
|
516
554
|
} | {
|
|
517
555
|
markLine?: undefined;
|
|
518
556
|
data: {
|
|
@@ -520,6 +558,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
520
558
|
}[];
|
|
521
559
|
type: string;
|
|
522
560
|
symbolSize: number;
|
|
561
|
+
itemStyle: {
|
|
562
|
+
color: string;
|
|
563
|
+
};
|
|
523
564
|
})[];
|
|
524
565
|
}>;
|
|
525
566
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -596,6 +637,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
596
637
|
type?: import("vue").PropType<number>;
|
|
597
638
|
default?: number;
|
|
598
639
|
};
|
|
640
|
+
symbolColor: {
|
|
641
|
+
type?: import("vue").PropType<string>;
|
|
642
|
+
default?: string;
|
|
643
|
+
};
|
|
599
644
|
xAxisLabelInterval: {
|
|
600
645
|
type?: import("vue").PropType<number>;
|
|
601
646
|
default?: number;
|
|
@@ -798,6 +843,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
798
843
|
type?: import("vue").PropType<string>;
|
|
799
844
|
default?: string;
|
|
800
845
|
};
|
|
846
|
+
showXAxisLineArrow: {
|
|
847
|
+
type?: import("vue").PropType<boolean>;
|
|
848
|
+
default?: boolean;
|
|
849
|
+
};
|
|
850
|
+
showYAxisLineArrow: {
|
|
851
|
+
type?: import("vue").PropType<boolean>;
|
|
852
|
+
default?: boolean;
|
|
853
|
+
};
|
|
854
|
+
xAxisLineInverse: {
|
|
855
|
+
type?: import("vue").PropType<boolean>;
|
|
856
|
+
default?: boolean;
|
|
857
|
+
};
|
|
858
|
+
yAxisLineInverse: {
|
|
859
|
+
type?: import("vue").PropType<boolean>;
|
|
860
|
+
default?: boolean;
|
|
861
|
+
};
|
|
862
|
+
yAxisTickShow: {
|
|
863
|
+
type?: import("vue").PropType<boolean>;
|
|
864
|
+
default?: boolean;
|
|
865
|
+
};
|
|
801
866
|
id: {
|
|
802
867
|
type?: import("vue").PropType<string>;
|
|
803
868
|
default?: string;
|
|
@@ -67,6 +67,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
67
67
|
type?: import("vue").PropType<number>;
|
|
68
68
|
default?: number;
|
|
69
69
|
};
|
|
70
|
+
symbolColor: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
70
74
|
xAxisLabelInterval: {
|
|
71
75
|
type?: import("vue").PropType<number>;
|
|
72
76
|
default?: number;
|
|
@@ -269,6 +273,26 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
269
273
|
type?: import("vue").PropType<string>;
|
|
270
274
|
default?: string;
|
|
271
275
|
};
|
|
276
|
+
showXAxisLineArrow: {
|
|
277
|
+
type?: import("vue").PropType<boolean>;
|
|
278
|
+
default?: boolean;
|
|
279
|
+
};
|
|
280
|
+
showYAxisLineArrow: {
|
|
281
|
+
type?: import("vue").PropType<boolean>;
|
|
282
|
+
default?: boolean;
|
|
283
|
+
};
|
|
284
|
+
xAxisLineInverse: {
|
|
285
|
+
type?: import("vue").PropType<boolean>;
|
|
286
|
+
default?: boolean;
|
|
287
|
+
};
|
|
288
|
+
yAxisLineInverse: {
|
|
289
|
+
type?: import("vue").PropType<boolean>;
|
|
290
|
+
default?: boolean;
|
|
291
|
+
};
|
|
292
|
+
yAxisTickShow: {
|
|
293
|
+
type?: import("vue").PropType<boolean>;
|
|
294
|
+
default?: boolean;
|
|
295
|
+
};
|
|
272
296
|
id: {
|
|
273
297
|
type?: import("vue").PropType<string>;
|
|
274
298
|
default?: string;
|
|
@@ -439,6 +463,9 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
439
463
|
lineStyle: {
|
|
440
464
|
color: string;
|
|
441
465
|
};
|
|
466
|
+
symbol: string[];
|
|
467
|
+
symbolSize: number[];
|
|
468
|
+
onZero: boolean;
|
|
442
469
|
};
|
|
443
470
|
axisTick: {
|
|
444
471
|
show: boolean;
|
|
@@ -449,6 +476,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
449
476
|
color: string;
|
|
450
477
|
align: string;
|
|
451
478
|
};
|
|
479
|
+
inverse: boolean;
|
|
452
480
|
};
|
|
453
481
|
yAxis: {
|
|
454
482
|
splitLine: {
|
|
@@ -458,6 +486,9 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
458
486
|
type: "dashed" | "dotted" | "solid";
|
|
459
487
|
};
|
|
460
488
|
};
|
|
489
|
+
axisTick: {
|
|
490
|
+
show: boolean;
|
|
491
|
+
};
|
|
461
492
|
splitArea: {
|
|
462
493
|
show: boolean;
|
|
463
494
|
};
|
|
@@ -472,6 +503,9 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
472
503
|
lineStyle: {
|
|
473
504
|
color: string;
|
|
474
505
|
};
|
|
506
|
+
symbol: string[];
|
|
507
|
+
symbolSize: number[];
|
|
508
|
+
onZero: boolean;
|
|
475
509
|
};
|
|
476
510
|
name: string;
|
|
477
511
|
nameTextStyle: {
|
|
@@ -479,6 +513,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
479
513
|
color: string;
|
|
480
514
|
align: string;
|
|
481
515
|
};
|
|
516
|
+
inverse: boolean;
|
|
482
517
|
};
|
|
483
518
|
tooltip: {
|
|
484
519
|
show: boolean;
|
|
@@ -513,6 +548,9 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
513
548
|
}[];
|
|
514
549
|
type: string;
|
|
515
550
|
symbolSize: number;
|
|
551
|
+
itemStyle: {
|
|
552
|
+
color: string;
|
|
553
|
+
};
|
|
516
554
|
} | {
|
|
517
555
|
markLine?: undefined;
|
|
518
556
|
data: {
|
|
@@ -520,6 +558,9 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
520
558
|
}[];
|
|
521
559
|
type: string;
|
|
522
560
|
symbolSize: number;
|
|
561
|
+
itemStyle: {
|
|
562
|
+
color: string;
|
|
563
|
+
};
|
|
523
564
|
})[];
|
|
524
565
|
}>;
|
|
525
566
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -596,6 +637,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
596
637
|
type?: import("vue").PropType<number>;
|
|
597
638
|
default?: number;
|
|
598
639
|
};
|
|
640
|
+
symbolColor: {
|
|
641
|
+
type?: import("vue").PropType<string>;
|
|
642
|
+
default?: string;
|
|
643
|
+
};
|
|
599
644
|
xAxisLabelInterval: {
|
|
600
645
|
type?: import("vue").PropType<number>;
|
|
601
646
|
default?: number;
|
|
@@ -798,6 +843,26 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
798
843
|
type?: import("vue").PropType<string>;
|
|
799
844
|
default?: string;
|
|
800
845
|
};
|
|
846
|
+
showXAxisLineArrow: {
|
|
847
|
+
type?: import("vue").PropType<boolean>;
|
|
848
|
+
default?: boolean;
|
|
849
|
+
};
|
|
850
|
+
showYAxisLineArrow: {
|
|
851
|
+
type?: import("vue").PropType<boolean>;
|
|
852
|
+
default?: boolean;
|
|
853
|
+
};
|
|
854
|
+
xAxisLineInverse: {
|
|
855
|
+
type?: import("vue").PropType<boolean>;
|
|
856
|
+
default?: boolean;
|
|
857
|
+
};
|
|
858
|
+
yAxisLineInverse: {
|
|
859
|
+
type?: import("vue").PropType<boolean>;
|
|
860
|
+
default?: boolean;
|
|
861
|
+
};
|
|
862
|
+
yAxisTickShow: {
|
|
863
|
+
type?: import("vue").PropType<boolean>;
|
|
864
|
+
default?: boolean;
|
|
865
|
+
};
|
|
801
866
|
id: {
|
|
802
867
|
type?: import("vue").PropType<string>;
|
|
803
868
|
default?: string;
|
|
@@ -17,6 +17,7 @@ export interface ScatterProps extends Props {
|
|
|
17
17
|
legendOrient: 'vertical' | 'horizontal';
|
|
18
18
|
legendTextStyleColor: string;
|
|
19
19
|
symbolSize: number;
|
|
20
|
+
symbolColor: string;
|
|
20
21
|
xAxisLabelInterval: number;
|
|
21
22
|
xAxisLabelWidth: number | undefined;
|
|
22
23
|
xAxisLabelOverflow: 'none' | 'truncate' | 'break' | 'breakAll';
|
|
@@ -70,6 +71,11 @@ export interface ScatterProps extends Props {
|
|
|
70
71
|
markLineType: 'min' | 'max' | 'average' | 'median';
|
|
71
72
|
yAxisName: string;
|
|
72
73
|
xAxisName: string;
|
|
74
|
+
showXAxisLineArrow: boolean;
|
|
75
|
+
showYAxisLineArrow: boolean;
|
|
76
|
+
xAxisLineInverse: boolean;
|
|
77
|
+
yAxisLineInverse: boolean;
|
|
78
|
+
yAxisTickShow: boolean;
|
|
73
79
|
}
|
|
74
80
|
export declare const scatterProps: ScatterProps;
|
|
75
81
|
export declare const scatterComponentProps: {
|
|
@@ -141,6 +147,10 @@ export declare const scatterComponentProps: {
|
|
|
141
147
|
type?: import("vue").PropType<number>;
|
|
142
148
|
default?: number;
|
|
143
149
|
};
|
|
150
|
+
symbolColor: {
|
|
151
|
+
type?: import("vue").PropType<string>;
|
|
152
|
+
default?: string;
|
|
153
|
+
};
|
|
144
154
|
xAxisLabelInterval: {
|
|
145
155
|
type?: import("vue").PropType<number>;
|
|
146
156
|
default?: number;
|
|
@@ -343,6 +353,26 @@ export declare const scatterComponentProps: {
|
|
|
343
353
|
type?: import("vue").PropType<string>;
|
|
344
354
|
default?: string;
|
|
345
355
|
};
|
|
356
|
+
showXAxisLineArrow: {
|
|
357
|
+
type?: import("vue").PropType<boolean>;
|
|
358
|
+
default?: boolean;
|
|
359
|
+
};
|
|
360
|
+
showYAxisLineArrow: {
|
|
361
|
+
type?: import("vue").PropType<boolean>;
|
|
362
|
+
default?: boolean;
|
|
363
|
+
};
|
|
364
|
+
xAxisLineInverse: {
|
|
365
|
+
type?: import("vue").PropType<boolean>;
|
|
366
|
+
default?: boolean;
|
|
367
|
+
};
|
|
368
|
+
yAxisLineInverse: {
|
|
369
|
+
type?: import("vue").PropType<boolean>;
|
|
370
|
+
default?: boolean;
|
|
371
|
+
};
|
|
372
|
+
yAxisTickShow: {
|
|
373
|
+
type?: import("vue").PropType<boolean>;
|
|
374
|
+
default?: boolean;
|
|
375
|
+
};
|
|
346
376
|
id: {
|
|
347
377
|
type?: import("vue").PropType<string>;
|
|
348
378
|
default?: string;
|