@creatorsn/vfluent3 0.3.10 → 0.3.12
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/style.css +1 -1
- package/dist/types/packages/calendar-date-picker/index.d.ts +54 -23
- package/dist/types/packages/calendar-date-picker/source/index.vue.d.ts +54 -23
- package/dist/types/packages/calendar-view/index.d.ts +31 -116
- package/dist/types/packages/calendar-view/source/index.vue.d.ts +31 -116
- package/dist/types/packages/calendar-view/source/sub/dateSelector/dateUnit.vue.d.ts +37 -0
- package/dist/types/packages/calendar-view/source/sub/dateSelector/index.vue.d.ts +59 -0
- package/dist/types/packages/calendar-view/source/sub/monthSelector/index.vue.d.ts +40 -0
- package/dist/types/packages/calendar-view/source/sub/monthSelector/monthUnit.vue.d.ts +34 -0
- package/dist/types/packages/calendar-view/source/sub/yearSelector/index.vue.d.ts +37 -0
- package/dist/types/packages/calendar-view/source/sub/yearSelector/yearUnit.vue.d.ts +31 -0
- package/dist/types/packages/collapse/index.d.ts +3 -3
- package/dist/types/packages/collapse/source/index.vue.d.ts +3 -3
- package/dist/types/packages/date-picker/index.d.ts +156 -316
- package/dist/types/packages/date-picker/source/index.vue.d.ts +156 -316
- package/dist/types/packages/flip-view/index.d.ts +1 -1
- package/dist/types/packages/flip-view/source/index.vue.d.ts +1 -1
- package/dist/types/packages/navigation-panel/index.d.ts +6 -0
- package/dist/types/packages/navigation-panel/source/index.vue.d.ts +6 -0
- package/dist/types/packages/navigation-view/index.d.ts +9 -0
- package/dist/types/packages/navigation-view/source/index.vue.d.ts +9 -0
- package/dist/types/packages/search-box/index.d.ts +12 -12
- package/dist/types/packages/search-box/source/index.vue.d.ts +12 -12
- package/dist/types/packages/table-view/source/sub/defaultExtensions/date/index.d.ts +9 -11
- package/dist/types/packages/table-view/source/sub/defaultExtensions/email/index.d.ts +9 -11
- package/dist/types/packages/table-view/source/sub/defaultExtensions/number/index.d.ts +9 -11
- package/dist/types/packages/text-box/index.d.ts +15 -9
- package/dist/types/packages/text-box/source/index.vue.d.ts +15 -9
- package/dist/types/packages/text-field/index.d.ts +6 -6
- package/dist/types/packages/text-field/source/index.vue.d.ts +6 -6
- package/dist/types/packages/time-picker/index.d.ts +154 -1
- package/dist/types/packages/time-picker/source/index.vue.d.ts +154 -1
- package/dist/types/packages/verify-box/index.d.ts +3 -3
- package/dist/types/packages/verify-box/source/index.vue.d.ts +3 -3
- package/dist/vfluent3.js +16698 -16598
- package/dist/vfluent3.umd.cjs +15 -7
- package/package.json +1 -1
- package/dist/types/packages/calendar-date-picker/source/input/input.vue.d.ts +0 -2
- package/dist/types/packages/calendar-view/source/sub/dateBox.vue.d.ts +0 -2
- package/dist/types/packages/calendar-view/source/sub/monthBox.vue.d.ts +0 -2
- package/dist/types/packages/calendar-view/source/sub/yearBox.vue.d.ts +0 -2
- package/dist/types/packages/date-picker/source/index.d.ts +0 -321
|
@@ -2,38 +2,47 @@ import "./style";
|
|
|
2
2
|
export declare const FvCalendarDatePicker: import("../../types/plugins/component-plugin").ComponentPlugin<{
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
4
4
|
$props: {
|
|
5
|
+
readonly background?: string | undefined;
|
|
5
6
|
readonly borderRadius?: string | undefined;
|
|
6
7
|
readonly borderWidth?: number | undefined;
|
|
7
8
|
readonly theme?: string | undefined;
|
|
8
9
|
readonly disabled?: boolean | undefined;
|
|
9
10
|
readonly lang?: string | undefined;
|
|
10
|
-
readonly modelValue?:
|
|
11
|
+
readonly modelValue?: never[] | undefined;
|
|
11
12
|
readonly foreground?: string | undefined;
|
|
12
|
-
readonly start?: number | undefined;
|
|
13
|
-
readonly end?: number | undefined;
|
|
14
|
-
readonly lan?: string | undefined;
|
|
15
13
|
readonly placeholder?: string | undefined;
|
|
14
|
+
readonly dropDownBorderRadius?: number | undefined;
|
|
16
15
|
readonly inputForeground?: string | undefined;
|
|
17
16
|
readonly inputBackground?: string | undefined;
|
|
18
17
|
readonly dropDownIcon?: string | undefined;
|
|
19
18
|
readonly dropDownIconForeground?: string | undefined;
|
|
19
|
+
readonly dropDownRevealBorder?: boolean | undefined;
|
|
20
|
+
readonly dropDownIsBoxShadow?: boolean | undefined;
|
|
21
|
+
readonly dropDownStyles?: {} | undefined;
|
|
22
|
+
readonly editable?: boolean | undefined;
|
|
20
23
|
readonly multiple?: string | undefined;
|
|
21
24
|
readonly choosenDates?: never[] | undefined;
|
|
25
|
+
readonly nowDayColor?: string | undefined;
|
|
26
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
27
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
22
28
|
};
|
|
23
29
|
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj", ...args: any[]) => void;
|
|
24
30
|
}, {
|
|
25
|
-
thisValue:
|
|
26
|
-
|
|
31
|
+
thisValue: Function;
|
|
32
|
+
displayContent: string;
|
|
27
33
|
show: {
|
|
28
34
|
calendar: boolean;
|
|
29
35
|
};
|
|
30
36
|
}, {
|
|
31
37
|
isDisabled(): boolean;
|
|
38
|
+
computedDate(): Date;
|
|
39
|
+
computedContent(): string;
|
|
32
40
|
$theme(): string;
|
|
33
41
|
}, {
|
|
34
42
|
outSideClickInit(): void;
|
|
35
43
|
outSideClickEvent(event: any): void;
|
|
36
|
-
|
|
44
|
+
showCalendar(): void;
|
|
45
|
+
parseContent(): void;
|
|
37
46
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
38
47
|
P: {};
|
|
39
48
|
B: {};
|
|
@@ -43,88 +52,110 @@ export declare const FvCalendarDatePicker: import("../../types/plugins/component
|
|
|
43
52
|
Defaults: {};
|
|
44
53
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
45
54
|
$props: {
|
|
55
|
+
readonly background?: string | undefined;
|
|
46
56
|
readonly borderRadius?: string | undefined;
|
|
47
57
|
readonly borderWidth?: number | undefined;
|
|
48
58
|
readonly theme?: string | undefined;
|
|
49
59
|
readonly disabled?: boolean | undefined;
|
|
50
60
|
readonly lang?: string | undefined;
|
|
51
|
-
readonly modelValue?:
|
|
61
|
+
readonly modelValue?: never[] | undefined;
|
|
52
62
|
readonly foreground?: string | undefined;
|
|
53
|
-
readonly start?: number | undefined;
|
|
54
|
-
readonly end?: number | undefined;
|
|
55
|
-
readonly lan?: string | undefined;
|
|
56
63
|
readonly placeholder?: string | undefined;
|
|
64
|
+
readonly dropDownBorderRadius?: number | undefined;
|
|
57
65
|
readonly inputForeground?: string | undefined;
|
|
58
66
|
readonly inputBackground?: string | undefined;
|
|
59
67
|
readonly dropDownIcon?: string | undefined;
|
|
60
68
|
readonly dropDownIconForeground?: string | undefined;
|
|
69
|
+
readonly dropDownRevealBorder?: boolean | undefined;
|
|
70
|
+
readonly dropDownIsBoxShadow?: boolean | undefined;
|
|
71
|
+
readonly dropDownStyles?: {} | undefined;
|
|
72
|
+
readonly editable?: boolean | undefined;
|
|
61
73
|
readonly multiple?: string | undefined;
|
|
62
74
|
readonly choosenDates?: never[] | undefined;
|
|
75
|
+
readonly nowDayColor?: string | undefined;
|
|
76
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
77
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
63
78
|
};
|
|
64
79
|
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj", ...args: any[]) => void;
|
|
65
80
|
}, {
|
|
66
|
-
thisValue:
|
|
67
|
-
|
|
81
|
+
thisValue: Function;
|
|
82
|
+
displayContent: string;
|
|
68
83
|
show: {
|
|
69
84
|
calendar: boolean;
|
|
70
85
|
};
|
|
71
86
|
}, {
|
|
72
87
|
isDisabled(): boolean;
|
|
88
|
+
computedDate(): Date;
|
|
89
|
+
computedContent(): string;
|
|
73
90
|
$theme(): string;
|
|
74
91
|
}, {
|
|
75
92
|
outSideClickInit(): void;
|
|
76
93
|
outSideClickEvent(event: any): void;
|
|
77
|
-
|
|
94
|
+
showCalendar(): void;
|
|
95
|
+
parseContent(): void;
|
|
78
96
|
}, {}>;
|
|
79
97
|
__isFragment?: undefined;
|
|
80
98
|
__isTeleport?: undefined;
|
|
81
99
|
__isSuspense?: undefined;
|
|
82
100
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
83
101
|
$props: {
|
|
102
|
+
readonly background?: string | undefined;
|
|
84
103
|
readonly borderRadius?: string | undefined;
|
|
85
104
|
readonly borderWidth?: number | undefined;
|
|
86
105
|
readonly theme?: string | undefined;
|
|
87
106
|
readonly disabled?: boolean | undefined;
|
|
88
107
|
readonly lang?: string | undefined;
|
|
89
|
-
readonly modelValue?:
|
|
108
|
+
readonly modelValue?: never[] | undefined;
|
|
90
109
|
readonly foreground?: string | undefined;
|
|
91
|
-
readonly start?: number | undefined;
|
|
92
|
-
readonly end?: number | undefined;
|
|
93
|
-
readonly lan?: string | undefined;
|
|
94
110
|
readonly placeholder?: string | undefined;
|
|
111
|
+
readonly dropDownBorderRadius?: number | undefined;
|
|
95
112
|
readonly inputForeground?: string | undefined;
|
|
96
113
|
readonly inputBackground?: string | undefined;
|
|
97
114
|
readonly dropDownIcon?: string | undefined;
|
|
98
115
|
readonly dropDownIconForeground?: string | undefined;
|
|
116
|
+
readonly dropDownRevealBorder?: boolean | undefined;
|
|
117
|
+
readonly dropDownIsBoxShadow?: boolean | undefined;
|
|
118
|
+
readonly dropDownStyles?: {} | undefined;
|
|
119
|
+
readonly editable?: boolean | undefined;
|
|
99
120
|
readonly multiple?: string | undefined;
|
|
100
121
|
readonly choosenDates?: never[] | undefined;
|
|
122
|
+
readonly nowDayColor?: string | undefined;
|
|
123
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
124
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
101
125
|
};
|
|
102
126
|
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj", ...args: any[]) => void;
|
|
103
127
|
}, {
|
|
104
|
-
thisValue:
|
|
105
|
-
|
|
128
|
+
thisValue: Function;
|
|
129
|
+
displayContent: string;
|
|
106
130
|
show: {
|
|
107
131
|
calendar: boolean;
|
|
108
132
|
};
|
|
109
133
|
}, {
|
|
110
134
|
isDisabled(): boolean;
|
|
135
|
+
computedDate(): Date;
|
|
136
|
+
computedContent(): string;
|
|
111
137
|
$theme(): string;
|
|
112
138
|
}, {
|
|
113
139
|
outSideClickInit(): void;
|
|
114
140
|
outSideClickEvent(event: any): void;
|
|
115
|
-
|
|
141
|
+
showCalendar(): void;
|
|
142
|
+
parseContent(): void;
|
|
116
143
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
117
144
|
$slots: {
|
|
145
|
+
default: (_: {
|
|
146
|
+
displayContent: string;
|
|
147
|
+
showCalendar: () => void;
|
|
148
|
+
disabled: boolean;
|
|
149
|
+
}) => any;
|
|
118
150
|
statement: (_: {
|
|
119
151
|
value: string;
|
|
120
152
|
dayRange: {
|
|
121
153
|
year: number;
|
|
122
154
|
month: number;
|
|
123
|
-
no: number;
|
|
124
155
|
};
|
|
125
156
|
}) => any;
|
|
126
157
|
weekday_content: (_: {
|
|
127
|
-
value:
|
|
158
|
+
value: string;
|
|
128
159
|
}) => any;
|
|
129
160
|
};
|
|
130
161
|
})>;
|
|
@@ -1,38 +1,47 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
3
|
$props: {
|
|
4
|
+
readonly background?: string | undefined;
|
|
4
5
|
readonly borderRadius?: string | undefined;
|
|
5
6
|
readonly borderWidth?: number | undefined;
|
|
6
7
|
readonly theme?: string | undefined;
|
|
7
8
|
readonly disabled?: boolean | undefined;
|
|
8
9
|
readonly lang?: string | undefined;
|
|
9
|
-
readonly modelValue?:
|
|
10
|
+
readonly modelValue?: never[] | undefined;
|
|
10
11
|
readonly foreground?: string | undefined;
|
|
11
|
-
readonly start?: number | undefined;
|
|
12
|
-
readonly end?: number | undefined;
|
|
13
|
-
readonly lan?: string | undefined;
|
|
14
12
|
readonly placeholder?: string | undefined;
|
|
13
|
+
readonly dropDownBorderRadius?: number | undefined;
|
|
15
14
|
readonly inputForeground?: string | undefined;
|
|
16
15
|
readonly inputBackground?: string | undefined;
|
|
17
16
|
readonly dropDownIcon?: string | undefined;
|
|
18
17
|
readonly dropDownIconForeground?: string | undefined;
|
|
18
|
+
readonly dropDownRevealBorder?: boolean | undefined;
|
|
19
|
+
readonly dropDownIsBoxShadow?: boolean | undefined;
|
|
20
|
+
readonly dropDownStyles?: {} | undefined;
|
|
21
|
+
readonly editable?: boolean | undefined;
|
|
19
22
|
readonly multiple?: string | undefined;
|
|
20
23
|
readonly choosenDates?: never[] | undefined;
|
|
24
|
+
readonly nowDayColor?: string | undefined;
|
|
25
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
26
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
21
27
|
};
|
|
22
28
|
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj", ...args: any[]) => void;
|
|
23
29
|
}, {
|
|
24
|
-
thisValue:
|
|
25
|
-
|
|
30
|
+
thisValue: Function;
|
|
31
|
+
displayContent: string;
|
|
26
32
|
show: {
|
|
27
33
|
calendar: boolean;
|
|
28
34
|
};
|
|
29
35
|
}, {
|
|
30
36
|
isDisabled(): boolean;
|
|
37
|
+
computedDate(): Date;
|
|
38
|
+
computedContent(): string;
|
|
31
39
|
$theme(): string;
|
|
32
40
|
}, {
|
|
33
41
|
outSideClickInit(): void;
|
|
34
42
|
outSideClickEvent(event: any): void;
|
|
35
|
-
|
|
43
|
+
showCalendar(): void;
|
|
44
|
+
parseContent(): void;
|
|
36
45
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
37
46
|
P: {};
|
|
38
47
|
B: {};
|
|
@@ -42,88 +51,110 @@ declare const _default: {
|
|
|
42
51
|
Defaults: {};
|
|
43
52
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
44
53
|
$props: {
|
|
54
|
+
readonly background?: string | undefined;
|
|
45
55
|
readonly borderRadius?: string | undefined;
|
|
46
56
|
readonly borderWidth?: number | undefined;
|
|
47
57
|
readonly theme?: string | undefined;
|
|
48
58
|
readonly disabled?: boolean | undefined;
|
|
49
59
|
readonly lang?: string | undefined;
|
|
50
|
-
readonly modelValue?:
|
|
60
|
+
readonly modelValue?: never[] | undefined;
|
|
51
61
|
readonly foreground?: string | undefined;
|
|
52
|
-
readonly start?: number | undefined;
|
|
53
|
-
readonly end?: number | undefined;
|
|
54
|
-
readonly lan?: string | undefined;
|
|
55
62
|
readonly placeholder?: string | undefined;
|
|
63
|
+
readonly dropDownBorderRadius?: number | undefined;
|
|
56
64
|
readonly inputForeground?: string | undefined;
|
|
57
65
|
readonly inputBackground?: string | undefined;
|
|
58
66
|
readonly dropDownIcon?: string | undefined;
|
|
59
67
|
readonly dropDownIconForeground?: string | undefined;
|
|
68
|
+
readonly dropDownRevealBorder?: boolean | undefined;
|
|
69
|
+
readonly dropDownIsBoxShadow?: boolean | undefined;
|
|
70
|
+
readonly dropDownStyles?: {} | undefined;
|
|
71
|
+
readonly editable?: boolean | undefined;
|
|
60
72
|
readonly multiple?: string | undefined;
|
|
61
73
|
readonly choosenDates?: never[] | undefined;
|
|
74
|
+
readonly nowDayColor?: string | undefined;
|
|
75
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
76
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
62
77
|
};
|
|
63
78
|
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj", ...args: any[]) => void;
|
|
64
79
|
}, {
|
|
65
|
-
thisValue:
|
|
66
|
-
|
|
80
|
+
thisValue: Function;
|
|
81
|
+
displayContent: string;
|
|
67
82
|
show: {
|
|
68
83
|
calendar: boolean;
|
|
69
84
|
};
|
|
70
85
|
}, {
|
|
71
86
|
isDisabled(): boolean;
|
|
87
|
+
computedDate(): Date;
|
|
88
|
+
computedContent(): string;
|
|
72
89
|
$theme(): string;
|
|
73
90
|
}, {
|
|
74
91
|
outSideClickInit(): void;
|
|
75
92
|
outSideClickEvent(event: any): void;
|
|
76
|
-
|
|
93
|
+
showCalendar(): void;
|
|
94
|
+
parseContent(): void;
|
|
77
95
|
}, {}>;
|
|
78
96
|
__isFragment?: undefined;
|
|
79
97
|
__isTeleport?: undefined;
|
|
80
98
|
__isSuspense?: undefined;
|
|
81
99
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
82
100
|
$props: {
|
|
101
|
+
readonly background?: string | undefined;
|
|
83
102
|
readonly borderRadius?: string | undefined;
|
|
84
103
|
readonly borderWidth?: number | undefined;
|
|
85
104
|
readonly theme?: string | undefined;
|
|
86
105
|
readonly disabled?: boolean | undefined;
|
|
87
106
|
readonly lang?: string | undefined;
|
|
88
|
-
readonly modelValue?:
|
|
107
|
+
readonly modelValue?: never[] | undefined;
|
|
89
108
|
readonly foreground?: string | undefined;
|
|
90
|
-
readonly start?: number | undefined;
|
|
91
|
-
readonly end?: number | undefined;
|
|
92
|
-
readonly lan?: string | undefined;
|
|
93
109
|
readonly placeholder?: string | undefined;
|
|
110
|
+
readonly dropDownBorderRadius?: number | undefined;
|
|
94
111
|
readonly inputForeground?: string | undefined;
|
|
95
112
|
readonly inputBackground?: string | undefined;
|
|
96
113
|
readonly dropDownIcon?: string | undefined;
|
|
97
114
|
readonly dropDownIconForeground?: string | undefined;
|
|
115
|
+
readonly dropDownRevealBorder?: boolean | undefined;
|
|
116
|
+
readonly dropDownIsBoxShadow?: boolean | undefined;
|
|
117
|
+
readonly dropDownStyles?: {} | undefined;
|
|
118
|
+
readonly editable?: boolean | undefined;
|
|
98
119
|
readonly multiple?: string | undefined;
|
|
99
120
|
readonly choosenDates?: never[] | undefined;
|
|
121
|
+
readonly nowDayColor?: string | undefined;
|
|
122
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
123
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
100
124
|
};
|
|
101
125
|
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj", ...args: any[]) => void;
|
|
102
126
|
}, {
|
|
103
|
-
thisValue:
|
|
104
|
-
|
|
127
|
+
thisValue: Function;
|
|
128
|
+
displayContent: string;
|
|
105
129
|
show: {
|
|
106
130
|
calendar: boolean;
|
|
107
131
|
};
|
|
108
132
|
}, {
|
|
109
133
|
isDisabled(): boolean;
|
|
134
|
+
computedDate(): Date;
|
|
135
|
+
computedContent(): string;
|
|
110
136
|
$theme(): string;
|
|
111
137
|
}, {
|
|
112
138
|
outSideClickInit(): void;
|
|
113
139
|
outSideClickEvent(event: any): void;
|
|
114
|
-
|
|
140
|
+
showCalendar(): void;
|
|
141
|
+
parseContent(): void;
|
|
115
142
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
116
143
|
$slots: {
|
|
144
|
+
default: (_: {
|
|
145
|
+
displayContent: string;
|
|
146
|
+
showCalendar: () => void;
|
|
147
|
+
disabled: boolean;
|
|
148
|
+
}) => any;
|
|
117
149
|
statement: (_: {
|
|
118
150
|
value: string;
|
|
119
151
|
dayRange: {
|
|
120
152
|
year: number;
|
|
121
153
|
month: number;
|
|
122
|
-
no: number;
|
|
123
154
|
};
|
|
124
155
|
}) => any;
|
|
125
156
|
weekday_content: (_: {
|
|
126
|
-
value:
|
|
157
|
+
value: string;
|
|
127
158
|
}) => any;
|
|
128
159
|
};
|
|
129
160
|
});
|
|
@@ -1,53 +1,25 @@
|
|
|
1
1
|
import "./style";
|
|
2
2
|
export declare const FvCalendarView: import("../../types/plugins/component-plugin").ComponentPlugin<{
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
4
|
-
resetDate: () => void;
|
|
5
4
|
$props: {
|
|
5
|
+
readonly background?: string | undefined;
|
|
6
|
+
readonly borderRadius?: string | undefined;
|
|
6
7
|
readonly theme?: string | undefined;
|
|
7
8
|
readonly disabled?: boolean | undefined;
|
|
8
9
|
readonly lang?: string | undefined;
|
|
9
10
|
readonly modelValue?: Date | undefined;
|
|
10
11
|
readonly foreground?: string | undefined;
|
|
11
|
-
readonly start?: number | undefined;
|
|
12
|
-
readonly end?: number | undefined;
|
|
13
|
-
readonly lan?: string | undefined;
|
|
14
12
|
readonly multiple?: string | undefined;
|
|
15
13
|
readonly choosenDates?: never[] | undefined;
|
|
14
|
+
readonly nowDayColor?: string | undefined;
|
|
15
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
16
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
17
|
+
readonly start?: number | undefined;
|
|
18
|
+
readonly weekdays?: string[] | undefined;
|
|
19
|
+
readonly monthList?: string[] | undefined;
|
|
16
20
|
};
|
|
17
|
-
$emit: (event: "update:modelValue" | "choosen-dates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
18
|
-
}, {
|
|
19
|
-
status: string;
|
|
20
|
-
thisValue: Function;
|
|
21
|
-
yearRange: number;
|
|
22
|
-
monthRange: {
|
|
23
|
-
year: number;
|
|
24
|
-
no: number;
|
|
25
|
-
};
|
|
26
|
-
dayRange: {
|
|
27
|
-
year: number;
|
|
28
|
-
month: number;
|
|
29
|
-
no: number;
|
|
30
|
-
};
|
|
31
|
-
transitionName: string;
|
|
32
|
-
monthList: {
|
|
33
|
-
en: string[];
|
|
34
|
-
zh: string[];
|
|
35
|
-
};
|
|
36
|
-
}, {
|
|
37
|
-
$theme(): string;
|
|
38
|
-
statement(): string;
|
|
39
|
-
background(): any;
|
|
40
|
-
selectedBackground(): string;
|
|
41
|
-
selectedBorderColor(): string;
|
|
42
|
-
}, {
|
|
43
|
-
slideUp(): void;
|
|
44
|
-
slideDown(): void;
|
|
45
|
-
daySlide(a?: number): void;
|
|
46
|
-
switchView(): void;
|
|
47
|
-
chooseYear(item: any): void;
|
|
48
|
-
chooseMonth(item: any): void;
|
|
49
|
-
chooseDate(item: any): void;
|
|
50
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
21
|
+
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj" | "update:choosenDates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
22
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
51
23
|
P: {};
|
|
52
24
|
B: {};
|
|
53
25
|
D: {};
|
|
@@ -55,115 +27,58 @@ export declare const FvCalendarView: import("../../types/plugins/component-plugi
|
|
|
55
27
|
M: {};
|
|
56
28
|
Defaults: {};
|
|
57
29
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
58
|
-
resetDate: () => void;
|
|
59
30
|
$props: {
|
|
31
|
+
readonly background?: string | undefined;
|
|
32
|
+
readonly borderRadius?: string | undefined;
|
|
60
33
|
readonly theme?: string | undefined;
|
|
61
34
|
readonly disabled?: boolean | undefined;
|
|
62
35
|
readonly lang?: string | undefined;
|
|
63
36
|
readonly modelValue?: Date | undefined;
|
|
64
37
|
readonly foreground?: string | undefined;
|
|
65
|
-
readonly start?: number | undefined;
|
|
66
|
-
readonly end?: number | undefined;
|
|
67
|
-
readonly lan?: string | undefined;
|
|
68
38
|
readonly multiple?: string | undefined;
|
|
69
39
|
readonly choosenDates?: never[] | undefined;
|
|
40
|
+
readonly nowDayColor?: string | undefined;
|
|
41
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
42
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
43
|
+
readonly start?: number | undefined;
|
|
44
|
+
readonly weekdays?: string[] | undefined;
|
|
45
|
+
readonly monthList?: string[] | undefined;
|
|
70
46
|
};
|
|
71
|
-
$emit: (event: "update:modelValue" | "choosen-dates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
72
|
-
}, {
|
|
73
|
-
status: string;
|
|
74
|
-
thisValue: Function;
|
|
75
|
-
yearRange: number;
|
|
76
|
-
monthRange: {
|
|
77
|
-
year: number;
|
|
78
|
-
no: number;
|
|
79
|
-
};
|
|
80
|
-
dayRange: {
|
|
81
|
-
year: number;
|
|
82
|
-
month: number;
|
|
83
|
-
no: number;
|
|
84
|
-
};
|
|
85
|
-
transitionName: string;
|
|
86
|
-
monthList: {
|
|
87
|
-
en: string[];
|
|
88
|
-
zh: string[];
|
|
89
|
-
};
|
|
90
|
-
}, {
|
|
91
|
-
$theme(): string;
|
|
92
|
-
statement(): string;
|
|
93
|
-
background(): any;
|
|
94
|
-
selectedBackground(): string;
|
|
95
|
-
selectedBorderColor(): string;
|
|
96
|
-
}, {
|
|
97
|
-
slideUp(): void;
|
|
98
|
-
slideDown(): void;
|
|
99
|
-
daySlide(a?: number): void;
|
|
100
|
-
switchView(): void;
|
|
101
|
-
chooseYear(item: any): void;
|
|
102
|
-
chooseMonth(item: any): void;
|
|
103
|
-
chooseDate(item: any): void;
|
|
104
|
-
}, {}>;
|
|
47
|
+
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj" | "update:choosenDates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
48
|
+
}, {}, {}, {}, {}>;
|
|
105
49
|
__isFragment?: undefined;
|
|
106
50
|
__isTeleport?: undefined;
|
|
107
51
|
__isSuspense?: undefined;
|
|
108
52
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
109
|
-
resetDate: () => void;
|
|
110
53
|
$props: {
|
|
54
|
+
readonly background?: string | undefined;
|
|
55
|
+
readonly borderRadius?: string | undefined;
|
|
111
56
|
readonly theme?: string | undefined;
|
|
112
57
|
readonly disabled?: boolean | undefined;
|
|
113
58
|
readonly lang?: string | undefined;
|
|
114
59
|
readonly modelValue?: Date | undefined;
|
|
115
60
|
readonly foreground?: string | undefined;
|
|
116
|
-
readonly start?: number | undefined;
|
|
117
|
-
readonly end?: number | undefined;
|
|
118
|
-
readonly lan?: string | undefined;
|
|
119
61
|
readonly multiple?: string | undefined;
|
|
120
62
|
readonly choosenDates?: never[] | undefined;
|
|
63
|
+
readonly nowDayColor?: string | undefined;
|
|
64
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
65
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
66
|
+
readonly start?: number | undefined;
|
|
67
|
+
readonly weekdays?: string[] | undefined;
|
|
68
|
+
readonly monthList?: string[] | undefined;
|
|
121
69
|
};
|
|
122
|
-
$emit: (event: "update:modelValue" | "choosen-dates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
123
|
-
}, {
|
|
124
|
-
status: string;
|
|
125
|
-
thisValue: Function;
|
|
126
|
-
yearRange: number;
|
|
127
|
-
monthRange: {
|
|
128
|
-
year: number;
|
|
129
|
-
no: number;
|
|
130
|
-
};
|
|
131
|
-
dayRange: {
|
|
132
|
-
year: number;
|
|
133
|
-
month: number;
|
|
134
|
-
no: number;
|
|
135
|
-
};
|
|
136
|
-
transitionName: string;
|
|
137
|
-
monthList: {
|
|
138
|
-
en: string[];
|
|
139
|
-
zh: string[];
|
|
140
|
-
};
|
|
141
|
-
}, {
|
|
142
|
-
$theme(): string;
|
|
143
|
-
statement(): string;
|
|
144
|
-
background(): any;
|
|
145
|
-
selectedBackground(): string;
|
|
146
|
-
selectedBorderColor(): string;
|
|
147
|
-
}, {
|
|
148
|
-
slideUp(): void;
|
|
149
|
-
slideDown(): void;
|
|
150
|
-
daySlide(a?: number): void;
|
|
151
|
-
switchView(): void;
|
|
152
|
-
chooseYear(item: any): void;
|
|
153
|
-
chooseMonth(item: any): void;
|
|
154
|
-
chooseDate(item: any): void;
|
|
155
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
70
|
+
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj" | "update:choosenDates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
71
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
156
72
|
$slots: {
|
|
157
73
|
statement: (_: {
|
|
158
74
|
value: string;
|
|
159
75
|
dayRange: {
|
|
160
76
|
year: number;
|
|
161
77
|
month: number;
|
|
162
|
-
no: number;
|
|
163
78
|
};
|
|
164
79
|
}) => any;
|
|
165
80
|
weekday_content: (_: {
|
|
166
|
-
value:
|
|
81
|
+
value: string;
|
|
167
82
|
}) => any;
|
|
168
83
|
};
|
|
169
84
|
})>;
|