@ecan-bi/datav 1.4.34 → 1.4.35
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 +3400 -3359
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +19 -19
- 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 +8 -0
- package/types/control/date-picker/index.d.ts +8 -0
- package/types/control/date-picker/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -37,6 +37,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
37
|
type?: import("vue").PropType<string>;
|
|
38
38
|
default?: string;
|
|
39
39
|
};
|
|
40
|
+
data: {
|
|
41
|
+
type?: import("vue").PropType<string>;
|
|
42
|
+
default?: string;
|
|
43
|
+
};
|
|
40
44
|
id: {
|
|
41
45
|
type?: import("vue").PropType<string>;
|
|
42
46
|
default?: string;
|
|
@@ -296,6 +300,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
296
300
|
type?: import("vue").PropType<string>;
|
|
297
301
|
default?: string;
|
|
298
302
|
};
|
|
303
|
+
data: {
|
|
304
|
+
type?: import("vue").PropType<string>;
|
|
305
|
+
default?: string;
|
|
306
|
+
};
|
|
299
307
|
id: {
|
|
300
308
|
type?: import("vue").PropType<string>;
|
|
301
309
|
default?: string;
|
|
@@ -35,6 +35,10 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
35
35
|
type?: import("vue").PropType<string>;
|
|
36
36
|
default?: string;
|
|
37
37
|
};
|
|
38
|
+
data: {
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
41
|
+
};
|
|
38
42
|
id: {
|
|
39
43
|
type?: import("vue").PropType<string>;
|
|
40
44
|
default?: string;
|
|
@@ -294,6 +298,10 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
294
298
|
type?: import("vue").PropType<string>;
|
|
295
299
|
default?: string;
|
|
296
300
|
};
|
|
301
|
+
data: {
|
|
302
|
+
type?: import("vue").PropType<string>;
|
|
303
|
+
default?: string;
|
|
304
|
+
};
|
|
297
305
|
id: {
|
|
298
306
|
type?: import("vue").PropType<string>;
|
|
299
307
|
default?: string;
|
|
@@ -9,6 +9,7 @@ export interface DatePickerProps extends Props, EventsProp {
|
|
|
9
9
|
optionFontSize: string;
|
|
10
10
|
limitStartTime: string;
|
|
11
11
|
limitEndTime: string;
|
|
12
|
+
data: string;
|
|
12
13
|
}
|
|
13
14
|
export declare const datePickerProps: DatePickerProps;
|
|
14
15
|
export declare const datePickerComponentProps: {
|
|
@@ -48,6 +49,10 @@ export declare const datePickerComponentProps: {
|
|
|
48
49
|
type?: import("vue").PropType<string>;
|
|
49
50
|
default?: string;
|
|
50
51
|
};
|
|
52
|
+
data: {
|
|
53
|
+
type?: import("vue").PropType<string>;
|
|
54
|
+
default?: string;
|
|
55
|
+
};
|
|
51
56
|
id: {
|
|
52
57
|
type?: import("vue").PropType<string>;
|
|
53
58
|
default?: string;
|