@farris/ui-vue 1.0.0-beta.5 → 1.0.0-beta.6
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/accordion/index.esm.js +2 -2
- package/accordion/package.json +1 -1
- package/avatar/index.esm.js +28 -1
- package/avatar/package.json +1 -1
- package/button/index.esm.js +111 -52
- package/button/index.umd.js +1 -1
- package/button/package.json +1 -1
- package/button-edit/index.esm.js +58 -4
- package/button-edit/index.umd.js +1 -1
- package/button-edit/package.json +1 -1
- package/checkbox/index.esm.js +38 -1
- package/checkbox/package.json +1 -1
- package/combo-list/index.esm.js +125 -5
- package/combo-list/package.json +1 -1
- package/data-grid/index.esm.js +235 -143
- package/data-grid/index.umd.js +1 -1
- package/data-grid/package.json +1 -1
- package/date-picker/index.esm.js +70 -13
- package/date-picker/index.umd.js +1 -1
- package/date-picker/package.json +1 -1
- package/farris.all.esm.js +1052 -533
- package/farris.all.umd.js +1 -1
- package/list-view/index.esm.js +3 -3
- package/list-view/index.umd.js +1 -1
- package/list-view/package.json +1 -1
- package/message-box/index.esm.js +35 -35
- package/message-box/index.umd.js +1 -1
- package/message-box/package.json +1 -1
- package/modal/index.esm.js +3 -3
- package/modal/index.umd.js +1 -1
- package/modal/package.json +1 -1
- package/notify/index.esm.js +2 -2
- package/notify/package.json +1 -1
- package/package.json +3 -2
- package/pagination/index.esm.js +4 -4
- package/pagination/index.umd.js +1 -1
- package/pagination/package.json +1 -1
- package/popover/index.esm.js +1 -1
- package/popover/package.json +1 -1
- package/radio-group/index.esm.js +28 -1
- package/radio-group/package.json +1 -1
- package/section/index.esm.js +1 -1
- package/section/package.json +1 -1
- package/switch/index.esm.js +4 -1
- package/switch/package.json +1 -1
- package/tabs/index.esm.js +6 -5
- package/tabs/index.umd.js +1 -1
- package/tabs/package.json +1 -1
- package/text/index.esm.js +4 -1
- package/text/package.json +1 -1
- package/tooltip/index.esm.js +1 -1
- package/tooltip/package.json +1 -1
- package/types/accordion/src/accordion.component.d.ts +4 -2
- package/types/accordion/src/components/accordion-item.component.d.ts +4 -2
- package/types/avatar/src/avatar.component.d.ts +4 -2
- package/types/button/index.d.ts +2 -1
- package/types/button/src/button-group.component.d.ts +4 -2
- package/types/button/src/button.component.d.ts +4 -2
- package/types/button-edit/src/button-edit.component.d.ts +141 -0
- package/types/checkbox/src/checkbox-group.component.d.ts +4 -2
- package/types/combo-list/src/combo-list.component.d.ts +232 -0
- package/types/combo-list/src/components/option.component.d.ts +4 -2
- package/types/combo-list/src/components/options.component.d.ts +4 -2
- package/types/combo-list/src/components/panel.component.d.ts +25 -0
- package/types/data-grid/src/components/editors/date-picker.component.d.ts +15 -0
- package/types/date-picker/src/components/calendar/calendar.component.d.ts +4 -2
- package/types/date-picker/src/components/calendar-navbar/calendar-navbar.component.d.ts +4 -2
- package/types/date-picker/src/components/date-picker-container/date-picker-container.component.d.ts +4 -2
- package/types/date-picker/src/components/month/month.component.d.ts +4 -2
- package/types/date-picker/src/components/year/year.component.d.ts +4 -2
- package/types/date-picker/src/date-picker.component.d.ts +336 -0
- package/types/list-view/src/components/list-view-checkbox.component.d.ts +4 -2
- package/types/list-view/src/list-view.component.d.ts +60 -0
- package/types/message-box/src/message-box.component.d.ts +4 -2
- package/types/message-box/src/message-box.service.d.ts +20 -0
- package/types/modal/src/modal.component.d.ts +4 -2
- package/types/notify/src/components/toast.component.d.ts +4 -2
- package/types/notify/src/notify.component.d.ts +130 -0
- package/types/notify/src/notify.service.d.ts +4 -0
- package/types/number-range/src/number-range.component.d.ts +4 -2
- package/types/number-spinner/src/number-spinner.component.d.ts +4 -2
- package/types/overlay/src/overlay.component.d.ts +4 -2
- package/types/pagination/src/pagination.components.d.ts +4 -2
- package/types/popover/src/popover.component.d.ts +4 -2
- package/types/radio-group/src/radio-group.component.d.ts +4 -2
- package/types/section/src/section.component.d.ts +4 -2
- package/types/switch/src/switch.component.d.ts +4 -2
- package/types/tabs/src/components/tab-page.component.d.ts +4 -2
- package/types/tabs/src/tabs.component.d.ts +4 -2
- package/types/text/src/text.component.d.ts +4 -2
- package/types/tooltip/src/composition/use-adjust-position.d.ts +15 -0
- package/types/tooltip/src/tooltip.component.d.ts +4 -2
- package/types/tooltip/src/tooltip.directive.d.ts +5 -0
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
id: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
};
|
|
5
|
+
editable: {
|
|
6
|
+
default: boolean;
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
};
|
|
9
|
+
disabled: {
|
|
10
|
+
default: boolean;
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
};
|
|
13
|
+
readonly: {
|
|
14
|
+
default: boolean;
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
};
|
|
17
|
+
maxLength: {
|
|
18
|
+
type: NumberConstructor;
|
|
19
|
+
};
|
|
20
|
+
placeholder: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
};
|
|
23
|
+
forcePlaceholder: {
|
|
24
|
+
default: boolean;
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
};
|
|
27
|
+
enableClear: {
|
|
28
|
+
default: boolean;
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
31
|
+
enableTitle: {
|
|
32
|
+
default: boolean;
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
};
|
|
35
|
+
viewType: {
|
|
36
|
+
default: import("./types").ViewType;
|
|
37
|
+
type: import("vue").PropType<import("./types").ViewType>;
|
|
38
|
+
};
|
|
39
|
+
mapFields: {
|
|
40
|
+
type: ObjectConstructor;
|
|
41
|
+
};
|
|
42
|
+
data: {
|
|
43
|
+
type: import("vue").PropType<import("./types").Options>;
|
|
44
|
+
};
|
|
45
|
+
idField: {
|
|
46
|
+
default: string;
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
};
|
|
49
|
+
valueField: {
|
|
50
|
+
default: string;
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
};
|
|
53
|
+
textField: {
|
|
54
|
+
default: string;
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
};
|
|
57
|
+
multiSelect: {
|
|
58
|
+
default: boolean;
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
};
|
|
61
|
+
remote: {
|
|
62
|
+
default: null;
|
|
63
|
+
type: import("vue").PropType<import("./types").Remote>;
|
|
64
|
+
};
|
|
65
|
+
maxHeight: {
|
|
66
|
+
default: number;
|
|
67
|
+
type: NumberConstructor;
|
|
68
|
+
};
|
|
69
|
+
remoteSearch: {
|
|
70
|
+
default: boolean;
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
};
|
|
73
|
+
hidePanelOnClear: {
|
|
74
|
+
default: boolean;
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
};
|
|
77
|
+
separator: {
|
|
78
|
+
default: string;
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
};
|
|
81
|
+
displayText: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
default: string;
|
|
84
|
+
};
|
|
85
|
+
modelValue: {
|
|
86
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
87
|
+
};
|
|
88
|
+
dropDownIcon: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
tabIndex: {
|
|
93
|
+
type: NumberConstructor;
|
|
94
|
+
default: number;
|
|
95
|
+
};
|
|
96
|
+
enableSearch: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
placement: {
|
|
101
|
+
type: import("vue").PropType<import("./types").Placement>;
|
|
102
|
+
default: import("./types").Placement;
|
|
103
|
+
};
|
|
104
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
105
|
+
id: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
};
|
|
108
|
+
editable: {
|
|
109
|
+
default: boolean;
|
|
110
|
+
type: BooleanConstructor;
|
|
111
|
+
};
|
|
112
|
+
disabled: {
|
|
113
|
+
default: boolean;
|
|
114
|
+
type: BooleanConstructor;
|
|
115
|
+
};
|
|
116
|
+
readonly: {
|
|
117
|
+
default: boolean;
|
|
118
|
+
type: BooleanConstructor;
|
|
119
|
+
};
|
|
120
|
+
maxLength: {
|
|
121
|
+
type: NumberConstructor;
|
|
122
|
+
};
|
|
123
|
+
placeholder: {
|
|
124
|
+
type: StringConstructor;
|
|
125
|
+
};
|
|
126
|
+
forcePlaceholder: {
|
|
127
|
+
default: boolean;
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
};
|
|
130
|
+
enableClear: {
|
|
131
|
+
default: boolean;
|
|
132
|
+
type: BooleanConstructor;
|
|
133
|
+
};
|
|
134
|
+
enableTitle: {
|
|
135
|
+
default: boolean;
|
|
136
|
+
type: BooleanConstructor;
|
|
137
|
+
};
|
|
138
|
+
viewType: {
|
|
139
|
+
default: import("./types").ViewType;
|
|
140
|
+
type: import("vue").PropType<import("./types").ViewType>;
|
|
141
|
+
};
|
|
142
|
+
mapFields: {
|
|
143
|
+
type: ObjectConstructor;
|
|
144
|
+
};
|
|
145
|
+
data: {
|
|
146
|
+
type: import("vue").PropType<import("./types").Options>;
|
|
147
|
+
};
|
|
148
|
+
idField: {
|
|
149
|
+
default: string;
|
|
150
|
+
type: StringConstructor;
|
|
151
|
+
};
|
|
152
|
+
valueField: {
|
|
153
|
+
default: string;
|
|
154
|
+
type: StringConstructor;
|
|
155
|
+
};
|
|
156
|
+
textField: {
|
|
157
|
+
default: string;
|
|
158
|
+
type: StringConstructor;
|
|
159
|
+
};
|
|
160
|
+
multiSelect: {
|
|
161
|
+
default: boolean;
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
};
|
|
164
|
+
remote: {
|
|
165
|
+
default: null;
|
|
166
|
+
type: import("vue").PropType<import("./types").Remote>;
|
|
167
|
+
};
|
|
168
|
+
maxHeight: {
|
|
169
|
+
default: number;
|
|
170
|
+
type: NumberConstructor;
|
|
171
|
+
};
|
|
172
|
+
remoteSearch: {
|
|
173
|
+
default: boolean;
|
|
174
|
+
type: BooleanConstructor;
|
|
175
|
+
};
|
|
176
|
+
hidePanelOnClear: {
|
|
177
|
+
default: boolean;
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
};
|
|
180
|
+
separator: {
|
|
181
|
+
default: string;
|
|
182
|
+
type: StringConstructor;
|
|
183
|
+
};
|
|
184
|
+
displayText: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
modelValue: {
|
|
189
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
190
|
+
};
|
|
191
|
+
dropDownIcon: {
|
|
192
|
+
type: StringConstructor;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
195
|
+
tabIndex: {
|
|
196
|
+
type: NumberConstructor;
|
|
197
|
+
default: number;
|
|
198
|
+
};
|
|
199
|
+
enableSearch: {
|
|
200
|
+
type: BooleanConstructor;
|
|
201
|
+
default: boolean;
|
|
202
|
+
};
|
|
203
|
+
placement: {
|
|
204
|
+
type: import("vue").PropType<import("./types").Placement>;
|
|
205
|
+
default: import("./types").Placement;
|
|
206
|
+
};
|
|
207
|
+
}>> & {
|
|
208
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
209
|
+
}, {
|
|
210
|
+
readonly: boolean;
|
|
211
|
+
disabled: boolean;
|
|
212
|
+
placement: import("./types").Placement;
|
|
213
|
+
editable: boolean;
|
|
214
|
+
enableClear: boolean;
|
|
215
|
+
enableTitle: boolean;
|
|
216
|
+
forcePlaceholder: boolean;
|
|
217
|
+
tabIndex: number;
|
|
218
|
+
textField: string;
|
|
219
|
+
valueField: string;
|
|
220
|
+
separator: string;
|
|
221
|
+
viewType: import("./types").ViewType;
|
|
222
|
+
idField: string;
|
|
223
|
+
multiSelect: boolean;
|
|
224
|
+
remote: import("./types").Remote;
|
|
225
|
+
maxHeight: number;
|
|
226
|
+
remoteSearch: boolean;
|
|
227
|
+
hidePanelOnClear: boolean;
|
|
228
|
+
displayText: string;
|
|
229
|
+
dropDownIcon: string;
|
|
230
|
+
enableSearch: boolean;
|
|
231
|
+
}>;
|
|
232
|
+
export default _default;
|
|
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
default: boolean;
|
|
16
16
|
type: BooleanConstructor;
|
|
17
17
|
};
|
|
18
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
18
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
19
|
value: {
|
|
20
20
|
required: boolean;
|
|
21
21
|
type: import("vue").PropType<string | number>;
|
|
@@ -32,7 +32,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
default: boolean;
|
|
33
33
|
type: BooleanConstructor;
|
|
34
34
|
};
|
|
35
|
-
}
|
|
35
|
+
}>> & {
|
|
36
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
37
|
+
}, {
|
|
36
38
|
disabled: boolean;
|
|
37
39
|
checked: boolean;
|
|
38
40
|
}>;
|
|
@@ -2,9 +2,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2
2
|
options: {
|
|
3
3
|
type: import("vue").PropType<import("../types").Options>;
|
|
4
4
|
};
|
|
5
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
5
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
6
|
options: {
|
|
7
7
|
type: import("vue").PropType<import("../types").Options>;
|
|
8
8
|
};
|
|
9
|
-
}
|
|
9
|
+
}>> & {
|
|
10
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
11
|
+
}, {}>;
|
|
10
12
|
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
isPanelVisible: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
position: {
|
|
7
|
+
type: import("vue").PropType<import("../types").Placement>;
|
|
8
|
+
default: import("../types").Placement;
|
|
9
|
+
};
|
|
10
|
+
}, () => false | JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
isPanelVisible: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
position: {
|
|
16
|
+
type: import("vue").PropType<import("../types").Placement>;
|
|
17
|
+
default: import("../types").Placement;
|
|
18
|
+
};
|
|
19
|
+
}>> & {
|
|
20
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
21
|
+
}, {
|
|
22
|
+
position: import("../types").Placement;
|
|
23
|
+
isPanelVisible: boolean;
|
|
24
|
+
}>;
|
|
25
|
+
export default _default;
|
|
@@ -1,2 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import { VisualDataCell } from '../../composition/types';
|
|
2
17
|
export default function (cell: VisualDataCell): JSX.Element;
|
|
@@ -74,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
74
|
Type: StringConstructor;
|
|
75
75
|
default: string;
|
|
76
76
|
};
|
|
77
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
77
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
78
78
|
dates: {
|
|
79
79
|
Type: {
|
|
80
80
|
(arrayLength: number): CalendarWeekItem[];
|
|
@@ -149,7 +149,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
149
149
|
Type: StringConstructor;
|
|
150
150
|
default: string;
|
|
151
151
|
};
|
|
152
|
-
}
|
|
152
|
+
}>> & {
|
|
153
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
154
|
+
}, {
|
|
153
155
|
dates: never[];
|
|
154
156
|
daysInWeek: string[];
|
|
155
157
|
enableKeyboadNavigate: boolean;
|
|
@@ -60,7 +60,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
60
60
|
type: import("vue").PropType<import("../../..").SelectMode>;
|
|
61
61
|
default: string;
|
|
62
62
|
};
|
|
63
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
63
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
64
|
activeMonth: {
|
|
65
65
|
type: ObjectConstructor;
|
|
66
66
|
require: boolean;
|
|
@@ -122,7 +122,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
122
122
|
type: import("vue").PropType<import("../../..").SelectMode>;
|
|
123
123
|
default: string;
|
|
124
124
|
};
|
|
125
|
-
}
|
|
125
|
+
}>> & {
|
|
126
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
127
|
+
}, {
|
|
126
128
|
selectMode: import("../../..").SelectMode;
|
|
127
129
|
ariaLabelPrevMonth: string;
|
|
128
130
|
ariaLabelNextMonth: string;
|
package/types/date-picker/src/components/date-picker-container/date-picker-container.component.d.ts
CHANGED
|
@@ -283,7 +283,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
283
283
|
};
|
|
284
284
|
default: never[][];
|
|
285
285
|
};
|
|
286
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
286
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
287
287
|
top: {
|
|
288
288
|
type: NumberConstructor;
|
|
289
289
|
default: number;
|
|
@@ -567,7 +567,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
567
567
|
};
|
|
568
568
|
default: never[][];
|
|
569
569
|
};
|
|
570
|
-
}
|
|
570
|
+
}>> & {
|
|
571
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
572
|
+
}, {
|
|
571
573
|
top: number;
|
|
572
574
|
left: number;
|
|
573
575
|
position: string;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
Type: ObjectConstructor;
|
|
38
38
|
default: null;
|
|
39
39
|
};
|
|
40
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
40
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
41
|
months: {
|
|
42
42
|
Type: {
|
|
43
43
|
(arrayLength: number): MonthViewItem[][];
|
|
@@ -75,7 +75,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
75
|
Type: ObjectConstructor;
|
|
76
76
|
default: null;
|
|
77
77
|
};
|
|
78
|
-
}
|
|
78
|
+
}>> & {
|
|
79
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
80
|
+
}, {
|
|
79
81
|
enableKeyboadNavigate: boolean;
|
|
80
82
|
enableMarkCurrent: boolean;
|
|
81
83
|
enablePeriod: boolean;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
Type: ObjectConstructor;
|
|
38
38
|
default: null;
|
|
39
39
|
};
|
|
40
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
40
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
41
|
years: {
|
|
42
42
|
Type: {
|
|
43
43
|
(arrayLength: number): YearViewItem[][];
|
|
@@ -75,7 +75,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
75
|
Type: ObjectConstructor;
|
|
76
76
|
default: null;
|
|
77
77
|
};
|
|
78
|
-
}
|
|
78
|
+
}>> & {
|
|
79
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
80
|
+
}, {
|
|
79
81
|
enableKeyboadNavigate: boolean;
|
|
80
82
|
enableMarkCurrent: boolean;
|
|
81
83
|
enablePeriod: boolean;
|