@ecan-bi/datav 1.1.73 → 1.1.77
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 +1441 -1397
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/date-picker/DatePicker.vue.d.ts +18 -18
- package/types/control/date-picker/index.d.ts +9 -9
- package/types/control/date-picker/props.d.ts +3 -9
- package/types/control/range-picker/RangePicker.vue.d.ts +19 -19
- package/types/control/range-picker/index.d.ts +10 -10
- package/types/control/range-picker/props.d.ts +3 -4
- package/types/text/time-display/TimeDisplay.vue.d.ts +29 -1
- package/types/text/time-display/index.d.ts +29 -1
- package/types/text/time-display/props.d.ts +21 -1
- package/types/utils/props.d.ts +6 -0
|
@@ -31,6 +31,20 @@ export declare const EcanTimeDisplay: import('../../utils/withInstall').SFCWithI
|
|
|
31
31
|
type?: import("vue").PropType<string>;
|
|
32
32
|
default?: string;
|
|
33
33
|
};
|
|
34
|
+
operate: {
|
|
35
|
+
type?: import("vue").PropType<import("../../utils/props").DateOperate>;
|
|
36
|
+
default?: import("../../utils/props").DateOperate;
|
|
37
|
+
};
|
|
38
|
+
updateInterval: {
|
|
39
|
+
type?: import("vue").PropType<{
|
|
40
|
+
value: number;
|
|
41
|
+
mode: "second" | "minute" | "hour" | "day";
|
|
42
|
+
}>;
|
|
43
|
+
default?: {
|
|
44
|
+
value: number;
|
|
45
|
+
mode: "second" | "minute" | "hour" | "day";
|
|
46
|
+
};
|
|
47
|
+
};
|
|
34
48
|
id: {
|
|
35
49
|
type?: import("vue").PropType<string>;
|
|
36
50
|
default?: string;
|
|
@@ -125,7 +139,7 @@ export declare const EcanTimeDisplay: import('../../utils/withInstall').SFCWithI
|
|
|
125
139
|
};
|
|
126
140
|
}, {
|
|
127
141
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
128
|
-
time: import("vue").Ref<
|
|
142
|
+
time: import("vue").Ref<any>;
|
|
129
143
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
130
144
|
color: {
|
|
131
145
|
type?: import("vue").PropType<string>;
|
|
@@ -159,6 +173,20 @@ export declare const EcanTimeDisplay: import('../../utils/withInstall').SFCWithI
|
|
|
159
173
|
type?: import("vue").PropType<string>;
|
|
160
174
|
default?: string;
|
|
161
175
|
};
|
|
176
|
+
operate: {
|
|
177
|
+
type?: import("vue").PropType<import("../../utils/props").DateOperate>;
|
|
178
|
+
default?: import("../../utils/props").DateOperate;
|
|
179
|
+
};
|
|
180
|
+
updateInterval: {
|
|
181
|
+
type?: import("vue").PropType<{
|
|
182
|
+
value: number;
|
|
183
|
+
mode: "second" | "minute" | "hour" | "day";
|
|
184
|
+
}>;
|
|
185
|
+
default?: {
|
|
186
|
+
value: number;
|
|
187
|
+
mode: "second" | "minute" | "hour" | "day";
|
|
188
|
+
};
|
|
189
|
+
};
|
|
162
190
|
id: {
|
|
163
191
|
type?: import("vue").PropType<string>;
|
|
164
192
|
default?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Props } from '../../utils/props';
|
|
1
|
+
import { Props, DateOperate } from '../../utils/props';
|
|
2
2
|
export interface TimeDisplayProps extends Props {
|
|
3
3
|
color: string;
|
|
4
4
|
format: string;
|
|
@@ -8,6 +8,11 @@ export interface TimeDisplayProps extends Props {
|
|
|
8
8
|
textShadow: string;
|
|
9
9
|
alignItems: string;
|
|
10
10
|
justifyContent: string;
|
|
11
|
+
operate: null | DateOperate;
|
|
12
|
+
updateInterval: null | {
|
|
13
|
+
value: number;
|
|
14
|
+
mode: 'second' | 'minute' | 'hour' | 'day';
|
|
15
|
+
};
|
|
11
16
|
}
|
|
12
17
|
export declare const timeDisplayProps: TimeDisplayProps;
|
|
13
18
|
export declare const timeDisplayComponentProps: {
|
|
@@ -43,6 +48,20 @@ export declare const timeDisplayComponentProps: {
|
|
|
43
48
|
type?: import("vue").PropType<string>;
|
|
44
49
|
default?: string;
|
|
45
50
|
};
|
|
51
|
+
operate: {
|
|
52
|
+
type?: import("vue").PropType<DateOperate>;
|
|
53
|
+
default?: DateOperate;
|
|
54
|
+
};
|
|
55
|
+
updateInterval: {
|
|
56
|
+
type?: import("vue").PropType<{
|
|
57
|
+
value: number;
|
|
58
|
+
mode: 'second' | 'minute' | 'hour' | 'day';
|
|
59
|
+
}>;
|
|
60
|
+
default?: {
|
|
61
|
+
value: number;
|
|
62
|
+
mode: 'second' | 'minute' | 'hour' | 'day';
|
|
63
|
+
};
|
|
64
|
+
};
|
|
46
65
|
id: {
|
|
47
66
|
type?: import("vue").PropType<string>;
|
|
48
67
|
default?: string;
|
|
@@ -136,3 +155,4 @@ export declare const timeDisplayComponentProps: {
|
|
|
136
155
|
default?: "indicator" | "static" | "request";
|
|
137
156
|
};
|
|
138
157
|
};
|
|
158
|
+
export declare const timeDisplayEvents: string[];
|
package/types/utils/props.d.ts
CHANGED