@ecan-bi/datav 1.4.21 → 1.4.22
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 +1143 -1132
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +14 -14
- 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 -1
- package/types/control/date-picker/index.d.ts +17 -0
- package/types/control/date-picker/props.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DateOperate } from '../../utils/props';
|
|
2
|
-
import dayjs from 'dayjs';
|
|
2
|
+
import dayjs, { Dayjs } from 'dayjs';
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
4
|
value: {
|
|
5
5
|
type?: import("vue").PropType<string>;
|
|
@@ -29,6 +29,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
29
29
|
type?: import("vue").PropType<string>;
|
|
30
30
|
default?: string;
|
|
31
31
|
};
|
|
32
|
+
limitStartTime: {
|
|
33
|
+
type?: import("vue").PropType<string>;
|
|
34
|
+
default?: string;
|
|
35
|
+
};
|
|
36
|
+
limitEndTime: {
|
|
37
|
+
type?: import("vue").PropType<string>;
|
|
38
|
+
default?: string;
|
|
39
|
+
};
|
|
32
40
|
id: {
|
|
33
41
|
type?: import("vue").PropType<string>;
|
|
34
42
|
default?: string;
|
|
@@ -250,6 +258,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
250
258
|
mobileDate: import("vue").Ref<any[]>;
|
|
251
259
|
onConfirmDate: () => void;
|
|
252
260
|
onCancelDate: () => void;
|
|
261
|
+
disabledDate: (current: Dayjs) => boolean;
|
|
253
262
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
254
263
|
value: {
|
|
255
264
|
type?: import("vue").PropType<string>;
|
|
@@ -279,6 +288,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
279
288
|
type?: import("vue").PropType<string>;
|
|
280
289
|
default?: string;
|
|
281
290
|
};
|
|
291
|
+
limitStartTime: {
|
|
292
|
+
type?: import("vue").PropType<string>;
|
|
293
|
+
default?: string;
|
|
294
|
+
};
|
|
295
|
+
limitEndTime: {
|
|
296
|
+
type?: import("vue").PropType<string>;
|
|
297
|
+
default?: string;
|
|
298
|
+
};
|
|
282
299
|
id: {
|
|
283
300
|
type?: import("vue").PropType<string>;
|
|
284
301
|
default?: string;
|
|
@@ -27,6 +27,14 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
27
27
|
type?: import("vue").PropType<string>;
|
|
28
28
|
default?: string;
|
|
29
29
|
};
|
|
30
|
+
limitStartTime: {
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
33
|
+
};
|
|
34
|
+
limitEndTime: {
|
|
35
|
+
type?: import("vue").PropType<string>;
|
|
36
|
+
default?: string;
|
|
37
|
+
};
|
|
30
38
|
id: {
|
|
31
39
|
type?: import("vue").PropType<string>;
|
|
32
40
|
default?: string;
|
|
@@ -248,6 +256,7 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
248
256
|
mobileDate: import("vue").Ref<any[]>;
|
|
249
257
|
onConfirmDate: () => void;
|
|
250
258
|
onCancelDate: () => void;
|
|
259
|
+
disabledDate: (current: import("dayjs").Dayjs) => boolean;
|
|
251
260
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
252
261
|
value: {
|
|
253
262
|
type?: import("vue").PropType<string>;
|
|
@@ -277,6 +286,14 @@ export declare const EcanDatePicker: import('../../utils/withInstall').SFCWithIn
|
|
|
277
286
|
type?: import("vue").PropType<string>;
|
|
278
287
|
default?: string;
|
|
279
288
|
};
|
|
289
|
+
limitStartTime: {
|
|
290
|
+
type?: import("vue").PropType<string>;
|
|
291
|
+
default?: string;
|
|
292
|
+
};
|
|
293
|
+
limitEndTime: {
|
|
294
|
+
type?: import("vue").PropType<string>;
|
|
295
|
+
default?: string;
|
|
296
|
+
};
|
|
280
297
|
id: {
|
|
281
298
|
type?: import("vue").PropType<string>;
|
|
282
299
|
default?: string;
|
|
@@ -7,6 +7,8 @@ export interface DatePickerProps extends Props, EventsProp {
|
|
|
7
7
|
useCurrentTime: boolean;
|
|
8
8
|
operate: null | DateOperate;
|
|
9
9
|
optionFontSize: string;
|
|
10
|
+
limitStartTime: string;
|
|
11
|
+
limitEndTime: string;
|
|
10
12
|
}
|
|
11
13
|
export declare const datePickerProps: DatePickerProps;
|
|
12
14
|
export declare const datePickerComponentProps: {
|
|
@@ -38,6 +40,14 @@ export declare const datePickerComponentProps: {
|
|
|
38
40
|
type?: import("vue").PropType<string>;
|
|
39
41
|
default?: string;
|
|
40
42
|
};
|
|
43
|
+
limitStartTime: {
|
|
44
|
+
type?: import("vue").PropType<string>;
|
|
45
|
+
default?: string;
|
|
46
|
+
};
|
|
47
|
+
limitEndTime: {
|
|
48
|
+
type?: import("vue").PropType<string>;
|
|
49
|
+
default?: string;
|
|
50
|
+
};
|
|
41
51
|
id: {
|
|
42
52
|
type?: import("vue").PropType<string>;
|
|
43
53
|
default?: string;
|