@farris/ui-vue 1.0.0-beta.4 → 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 +1054 -534
- 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/style.css +11 -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,336 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
displayFormat: {
|
|
3
|
+
Type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
minYear: {
|
|
7
|
+
Type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
maxYear: {
|
|
11
|
+
Type: NumberConstructor;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
valueFormat: {
|
|
15
|
+
Type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
displayTime: {
|
|
19
|
+
Type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
selectMode: {
|
|
23
|
+
Type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
disableUntil: {
|
|
27
|
+
Type: ObjectConstructor;
|
|
28
|
+
default: {
|
|
29
|
+
year: number;
|
|
30
|
+
month: number;
|
|
31
|
+
day: number;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
disableSince: {
|
|
35
|
+
Type: ObjectConstructor;
|
|
36
|
+
default: {
|
|
37
|
+
year: number;
|
|
38
|
+
month: number;
|
|
39
|
+
day: number;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
disableDates: {
|
|
43
|
+
Type: {
|
|
44
|
+
(arrayLength: number): import("..").DateObject[];
|
|
45
|
+
(...items: import("..").DateObject[]): import("..").DateObject[];
|
|
46
|
+
new (arrayLength: number): import("..").DateObject[];
|
|
47
|
+
new (...items: import("..").DateObject[]): import("..").DateObject[];
|
|
48
|
+
isArray(arg: any): arg is any[];
|
|
49
|
+
readonly prototype: any[];
|
|
50
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
51
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
52
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
53
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
54
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
55
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
56
|
+
};
|
|
57
|
+
default: never[];
|
|
58
|
+
};
|
|
59
|
+
disablePeriod: {
|
|
60
|
+
Type: {
|
|
61
|
+
(arrayLength: number): import("..").Period[];
|
|
62
|
+
(...items: import("..").Period[]): import("..").Period[];
|
|
63
|
+
new (arrayLength: number): import("..").Period[];
|
|
64
|
+
new (...items: import("..").Period[]): import("..").Period[];
|
|
65
|
+
isArray(arg: any): arg is any[];
|
|
66
|
+
readonly prototype: any[];
|
|
67
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
68
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
69
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
70
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
71
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
72
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
73
|
+
};
|
|
74
|
+
default: never[];
|
|
75
|
+
};
|
|
76
|
+
disableWeekends: {
|
|
77
|
+
Type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
disableWeekdays: {
|
|
81
|
+
Type: {
|
|
82
|
+
(arrayLength: number): string[];
|
|
83
|
+
(...items: string[]): string[];
|
|
84
|
+
new (arrayLength: number): string[];
|
|
85
|
+
new (...items: string[]): string[];
|
|
86
|
+
isArray(arg: any): arg is any[];
|
|
87
|
+
readonly prototype: any[];
|
|
88
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
89
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
90
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
91
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
92
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
93
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
94
|
+
};
|
|
95
|
+
default: never[];
|
|
96
|
+
};
|
|
97
|
+
highlightDates: {
|
|
98
|
+
Type: {
|
|
99
|
+
(arrayLength: number): import("..").DateObject[];
|
|
100
|
+
(...items: import("..").DateObject[]): import("..").DateObject[];
|
|
101
|
+
new (arrayLength: number): import("..").DateObject[];
|
|
102
|
+
new (...items: import("..").DateObject[]): import("..").DateObject[];
|
|
103
|
+
isArray(arg: any): arg is any[];
|
|
104
|
+
readonly prototype: any[];
|
|
105
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
106
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
107
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
108
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
109
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
110
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
111
|
+
};
|
|
112
|
+
default: never[];
|
|
113
|
+
};
|
|
114
|
+
highlightSaturday: {
|
|
115
|
+
Type: BooleanConstructor;
|
|
116
|
+
default: boolean;
|
|
117
|
+
};
|
|
118
|
+
highlightSunday: {
|
|
119
|
+
Type: BooleanConstructor;
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
122
|
+
modelValue: {
|
|
123
|
+
type: StringConstructor;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
nameOfMonths: {
|
|
127
|
+
Type: ObjectConstructor;
|
|
128
|
+
default: {
|
|
129
|
+
1: string;
|
|
130
|
+
2: string;
|
|
131
|
+
3: string;
|
|
132
|
+
4: string;
|
|
133
|
+
5: string;
|
|
134
|
+
6: string;
|
|
135
|
+
7: string;
|
|
136
|
+
8: string;
|
|
137
|
+
9: string;
|
|
138
|
+
10: string;
|
|
139
|
+
11: string;
|
|
140
|
+
12: string;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
periodDelimiter: {
|
|
144
|
+
Type: StringConstructor;
|
|
145
|
+
default: string;
|
|
146
|
+
};
|
|
147
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
148
|
+
displayFormat: {
|
|
149
|
+
Type: StringConstructor;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
152
|
+
minYear: {
|
|
153
|
+
Type: NumberConstructor;
|
|
154
|
+
default: number;
|
|
155
|
+
};
|
|
156
|
+
maxYear: {
|
|
157
|
+
Type: NumberConstructor;
|
|
158
|
+
default: number;
|
|
159
|
+
};
|
|
160
|
+
valueFormat: {
|
|
161
|
+
Type: StringConstructor;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
164
|
+
displayTime: {
|
|
165
|
+
Type: BooleanConstructor;
|
|
166
|
+
default: boolean;
|
|
167
|
+
};
|
|
168
|
+
selectMode: {
|
|
169
|
+
Type: StringConstructor;
|
|
170
|
+
default: string;
|
|
171
|
+
};
|
|
172
|
+
disableUntil: {
|
|
173
|
+
Type: ObjectConstructor;
|
|
174
|
+
default: {
|
|
175
|
+
year: number;
|
|
176
|
+
month: number;
|
|
177
|
+
day: number;
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
disableSince: {
|
|
181
|
+
Type: ObjectConstructor;
|
|
182
|
+
default: {
|
|
183
|
+
year: number;
|
|
184
|
+
month: number;
|
|
185
|
+
day: number;
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
disableDates: {
|
|
189
|
+
Type: {
|
|
190
|
+
(arrayLength: number): import("..").DateObject[];
|
|
191
|
+
(...items: import("..").DateObject[]): import("..").DateObject[];
|
|
192
|
+
new (arrayLength: number): import("..").DateObject[];
|
|
193
|
+
new (...items: import("..").DateObject[]): import("..").DateObject[];
|
|
194
|
+
isArray(arg: any): arg is any[];
|
|
195
|
+
readonly prototype: any[];
|
|
196
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
197
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
198
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
199
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
200
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
201
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
202
|
+
};
|
|
203
|
+
default: never[];
|
|
204
|
+
};
|
|
205
|
+
disablePeriod: {
|
|
206
|
+
Type: {
|
|
207
|
+
(arrayLength: number): import("..").Period[];
|
|
208
|
+
(...items: import("..").Period[]): import("..").Period[];
|
|
209
|
+
new (arrayLength: number): import("..").Period[];
|
|
210
|
+
new (...items: import("..").Period[]): import("..").Period[];
|
|
211
|
+
isArray(arg: any): arg is any[];
|
|
212
|
+
readonly prototype: any[];
|
|
213
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
214
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
215
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
216
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
217
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
218
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
219
|
+
};
|
|
220
|
+
default: never[];
|
|
221
|
+
};
|
|
222
|
+
disableWeekends: {
|
|
223
|
+
Type: BooleanConstructor;
|
|
224
|
+
default: boolean;
|
|
225
|
+
};
|
|
226
|
+
disableWeekdays: {
|
|
227
|
+
Type: {
|
|
228
|
+
(arrayLength: number): string[];
|
|
229
|
+
(...items: string[]): string[];
|
|
230
|
+
new (arrayLength: number): string[];
|
|
231
|
+
new (...items: string[]): string[];
|
|
232
|
+
isArray(arg: any): arg is any[];
|
|
233
|
+
readonly prototype: any[];
|
|
234
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
235
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
236
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
237
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
238
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
239
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
240
|
+
};
|
|
241
|
+
default: never[];
|
|
242
|
+
};
|
|
243
|
+
highlightDates: {
|
|
244
|
+
Type: {
|
|
245
|
+
(arrayLength: number): import("..").DateObject[];
|
|
246
|
+
(...items: import("..").DateObject[]): import("..").DateObject[];
|
|
247
|
+
new (arrayLength: number): import("..").DateObject[];
|
|
248
|
+
new (...items: import("..").DateObject[]): import("..").DateObject[];
|
|
249
|
+
isArray(arg: any): arg is any[];
|
|
250
|
+
readonly prototype: any[];
|
|
251
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
252
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
253
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
254
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
255
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
256
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
257
|
+
};
|
|
258
|
+
default: never[];
|
|
259
|
+
};
|
|
260
|
+
highlightSaturday: {
|
|
261
|
+
Type: BooleanConstructor;
|
|
262
|
+
default: boolean;
|
|
263
|
+
};
|
|
264
|
+
highlightSunday: {
|
|
265
|
+
Type: BooleanConstructor;
|
|
266
|
+
default: boolean;
|
|
267
|
+
};
|
|
268
|
+
modelValue: {
|
|
269
|
+
type: StringConstructor;
|
|
270
|
+
default: string;
|
|
271
|
+
};
|
|
272
|
+
nameOfMonths: {
|
|
273
|
+
Type: ObjectConstructor;
|
|
274
|
+
default: {
|
|
275
|
+
1: string;
|
|
276
|
+
2: string;
|
|
277
|
+
3: string;
|
|
278
|
+
4: string;
|
|
279
|
+
5: string;
|
|
280
|
+
6: string;
|
|
281
|
+
7: string;
|
|
282
|
+
8: string;
|
|
283
|
+
9: string;
|
|
284
|
+
10: string;
|
|
285
|
+
11: string;
|
|
286
|
+
12: string;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
periodDelimiter: {
|
|
290
|
+
Type: StringConstructor;
|
|
291
|
+
default: string;
|
|
292
|
+
};
|
|
293
|
+
}>> & {
|
|
294
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
295
|
+
}, {
|
|
296
|
+
modelValue: string;
|
|
297
|
+
selectMode: string;
|
|
298
|
+
disableDates: never[];
|
|
299
|
+
disablePeriod: never[];
|
|
300
|
+
disableSince: {
|
|
301
|
+
year: number;
|
|
302
|
+
month: number;
|
|
303
|
+
day: number;
|
|
304
|
+
};
|
|
305
|
+
disableWeekdays: never[];
|
|
306
|
+
disableWeekends: boolean;
|
|
307
|
+
disableUntil: {
|
|
308
|
+
year: number;
|
|
309
|
+
month: number;
|
|
310
|
+
day: number;
|
|
311
|
+
};
|
|
312
|
+
highlightDates: never[];
|
|
313
|
+
highlightSaturday: boolean;
|
|
314
|
+
highlightSunday: boolean;
|
|
315
|
+
maxYear: number;
|
|
316
|
+
minYear: number;
|
|
317
|
+
nameOfMonths: {
|
|
318
|
+
1: string;
|
|
319
|
+
2: string;
|
|
320
|
+
3: string;
|
|
321
|
+
4: string;
|
|
322
|
+
5: string;
|
|
323
|
+
6: string;
|
|
324
|
+
7: string;
|
|
325
|
+
8: string;
|
|
326
|
+
9: string;
|
|
327
|
+
10: string;
|
|
328
|
+
11: string;
|
|
329
|
+
12: string;
|
|
330
|
+
};
|
|
331
|
+
displayFormat: string;
|
|
332
|
+
valueFormat: string;
|
|
333
|
+
displayTime: boolean;
|
|
334
|
+
periodDelimiter: string;
|
|
335
|
+
}>;
|
|
336
|
+
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
Type: BooleanConstructor;
|
|
12
12
|
default: boolean;
|
|
13
13
|
};
|
|
14
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
14
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
checked: {
|
|
16
16
|
Type: BooleanConstructor;
|
|
17
17
|
default: boolean;
|
|
@@ -24,7 +24,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
Type: BooleanConstructor;
|
|
25
25
|
default: boolean;
|
|
26
26
|
};
|
|
27
|
-
}
|
|
27
|
+
}>> & {
|
|
28
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
29
|
+
}, {
|
|
28
30
|
id: string;
|
|
29
31
|
disabled: boolean;
|
|
30
32
|
checked: boolean;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
data: {
|
|
3
|
+
type: {
|
|
4
|
+
(arrayLength: number): object[];
|
|
5
|
+
(...items: object[]): object[];
|
|
6
|
+
new (arrayLength: number): object[];
|
|
7
|
+
new (...items: object[]): object[];
|
|
8
|
+
isArray(arg: any): arg is any[];
|
|
9
|
+
readonly prototype: any[];
|
|
10
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
11
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
12
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
13
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
14
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
15
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
16
|
+
};
|
|
17
|
+
default: never[];
|
|
18
|
+
};
|
|
19
|
+
multiSelect: {
|
|
20
|
+
Type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
cardView: {
|
|
24
|
+
Type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
+
data: {
|
|
29
|
+
type: {
|
|
30
|
+
(arrayLength: number): object[];
|
|
31
|
+
(...items: object[]): object[];
|
|
32
|
+
new (arrayLength: number): object[];
|
|
33
|
+
new (...items: object[]): object[];
|
|
34
|
+
isArray(arg: any): arg is any[];
|
|
35
|
+
readonly prototype: any[];
|
|
36
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
37
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
38
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
39
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
40
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
41
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
42
|
+
};
|
|
43
|
+
default: never[];
|
|
44
|
+
};
|
|
45
|
+
multiSelect: {
|
|
46
|
+
Type: BooleanConstructor;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
cardView: {
|
|
50
|
+
Type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
}>> & {
|
|
54
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
55
|
+
}, {
|
|
56
|
+
data: object[];
|
|
57
|
+
multiSelect: boolean;
|
|
58
|
+
cardView: boolean;
|
|
59
|
+
}>;
|
|
60
|
+
export default _default;
|
|
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
detail: string;
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
31
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
32
|
type: {
|
|
33
33
|
Type: StringConstructor;
|
|
34
34
|
default: string;
|
|
@@ -57,7 +57,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
detail: string;
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
|
-
}
|
|
60
|
+
}>> & {
|
|
61
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
62
|
+
}, {
|
|
61
63
|
type: string;
|
|
62
64
|
title: string;
|
|
63
65
|
detail: string;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ExceptionInfo } from './message-box.props';
|
|
2
|
+
export interface MessageBoxOption {
|
|
3
|
+
type: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
detail?: string;
|
|
6
|
+
okButtonText?: string;
|
|
7
|
+
cancelButtonText?: string;
|
|
8
|
+
exceptionInfo?: ExceptionInfo;
|
|
9
|
+
acceptCallback?: () => void;
|
|
10
|
+
rejectCallback?: () => void;
|
|
11
|
+
}
|
|
12
|
+
export default class MessageBoxService {
|
|
13
|
+
static show(options: MessageBoxOption): void;
|
|
14
|
+
static info(message: string, detail: string): void;
|
|
15
|
+
static warning(message: string, detail: string): void;
|
|
16
|
+
static success(message: string, detail: string): void;
|
|
17
|
+
static error(message: string, detail: string, date?: string): any;
|
|
18
|
+
static prompt(message: string, detail: string): void;
|
|
19
|
+
static question(message: string, detail: string, acceptCallback: () => void, rejectCallback: () => void): void;
|
|
20
|
+
}
|
|
@@ -45,7 +45,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
45
|
type: BooleanConstructor;
|
|
46
46
|
default: boolean;
|
|
47
47
|
};
|
|
48
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
48
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
49
|
class: {
|
|
50
50
|
type: StringConstructor;
|
|
51
51
|
default: string;
|
|
@@ -91,7 +91,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
91
|
type: BooleanConstructor;
|
|
92
92
|
default: boolean;
|
|
93
93
|
};
|
|
94
|
-
}
|
|
94
|
+
}>> & {
|
|
95
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
96
|
+
}, {
|
|
95
97
|
height: number;
|
|
96
98
|
width: number;
|
|
97
99
|
title: string;
|
|
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
options: {
|
|
8
8
|
type: import("vue").PropType<NotifyData>;
|
|
9
9
|
};
|
|
10
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
10
|
+
}, () => 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
11
|
animate: {
|
|
12
12
|
type: import("vue").PropType<import("../notify.props").ToastyAnimate>;
|
|
13
13
|
default: string;
|
|
@@ -15,7 +15,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
options: {
|
|
16
16
|
type: import("vue").PropType<NotifyData>;
|
|
17
17
|
};
|
|
18
|
-
}
|
|
18
|
+
}>> & {
|
|
19
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
20
|
+
}, {
|
|
19
21
|
animate: import("../notify.props").ToastyAnimate;
|
|
20
22
|
}>;
|
|
21
23
|
export default _default;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { NotifyData } from './notify.props';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
limit: {
|
|
4
|
+
type: NumberConstructor;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
showCloseButton: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
position: {
|
|
12
|
+
type: import("vue").PropType<import("./notify.props").NotifyPosition>;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
timeout: {
|
|
16
|
+
type: NumberConstructor;
|
|
17
|
+
default: number;
|
|
18
|
+
};
|
|
19
|
+
theme: {
|
|
20
|
+
type: import("vue").PropType<import("./notify.props").NotifyTheme>;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
left: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
};
|
|
26
|
+
right: {
|
|
27
|
+
type: NumberConstructor;
|
|
28
|
+
};
|
|
29
|
+
top: {
|
|
30
|
+
type: NumberConstructor;
|
|
31
|
+
};
|
|
32
|
+
bottom: {
|
|
33
|
+
type: NumberConstructor;
|
|
34
|
+
};
|
|
35
|
+
id: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
};
|
|
38
|
+
animate: {
|
|
39
|
+
type: import("vue").PropType<import("./notify.props").ToastyAnimate>;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
toasts: {
|
|
43
|
+
type: {
|
|
44
|
+
(arrayLength: number): NotifyData[];
|
|
45
|
+
(...items: NotifyData[]): NotifyData[];
|
|
46
|
+
new (arrayLength: number): NotifyData[];
|
|
47
|
+
new (...items: NotifyData[]): NotifyData[];
|
|
48
|
+
isArray(arg: any): arg is any[];
|
|
49
|
+
readonly prototype: any[];
|
|
50
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
51
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
52
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
53
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
54
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
55
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
options: {
|
|
59
|
+
type: import("vue").PropType<NotifyData>;
|
|
60
|
+
};
|
|
61
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
|
+
limit: {
|
|
63
|
+
type: NumberConstructor;
|
|
64
|
+
default: number;
|
|
65
|
+
};
|
|
66
|
+
showCloseButton: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
position: {
|
|
71
|
+
type: import("vue").PropType<import("./notify.props").NotifyPosition>;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
timeout: {
|
|
75
|
+
type: NumberConstructor;
|
|
76
|
+
default: number;
|
|
77
|
+
};
|
|
78
|
+
theme: {
|
|
79
|
+
type: import("vue").PropType<import("./notify.props").NotifyTheme>;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
82
|
+
left: {
|
|
83
|
+
type: NumberConstructor;
|
|
84
|
+
};
|
|
85
|
+
right: {
|
|
86
|
+
type: NumberConstructor;
|
|
87
|
+
};
|
|
88
|
+
top: {
|
|
89
|
+
type: NumberConstructor;
|
|
90
|
+
};
|
|
91
|
+
bottom: {
|
|
92
|
+
type: NumberConstructor;
|
|
93
|
+
};
|
|
94
|
+
id: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
};
|
|
97
|
+
animate: {
|
|
98
|
+
type: import("vue").PropType<import("./notify.props").ToastyAnimate>;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
toasts: {
|
|
102
|
+
type: {
|
|
103
|
+
(arrayLength: number): NotifyData[];
|
|
104
|
+
(...items: NotifyData[]): NotifyData[];
|
|
105
|
+
new (arrayLength: number): NotifyData[];
|
|
106
|
+
new (...items: NotifyData[]): NotifyData[];
|
|
107
|
+
isArray(arg: any): arg is any[];
|
|
108
|
+
readonly prototype: any[];
|
|
109
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
110
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
111
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
112
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
113
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
114
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
options: {
|
|
118
|
+
type: import("vue").PropType<NotifyData>;
|
|
119
|
+
};
|
|
120
|
+
}>> & {
|
|
121
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
122
|
+
}, {
|
|
123
|
+
animate: import("./notify.props").ToastyAnimate;
|
|
124
|
+
position: import("./notify.props").NotifyPosition;
|
|
125
|
+
limit: number;
|
|
126
|
+
showCloseButton: boolean;
|
|
127
|
+
timeout: number;
|
|
128
|
+
theme: import("./notify.props").NotifyTheme;
|
|
129
|
+
}>;
|
|
130
|
+
export default _default;
|
|
@@ -108,7 +108,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
108
108
|
type: StringConstructor;
|
|
109
109
|
default: string;
|
|
110
110
|
};
|
|
111
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
111
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
112
|
id: StringConstructor;
|
|
113
113
|
disabled: {
|
|
114
114
|
type: BooleanConstructor;
|
|
@@ -218,7 +218,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
218
218
|
type: StringConstructor;
|
|
219
219
|
default: string;
|
|
220
220
|
};
|
|
221
|
-
}
|
|
221
|
+
}>> & {
|
|
222
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
223
|
+
}, {
|
|
222
224
|
readonly: boolean;
|
|
223
225
|
disabled: boolean;
|
|
224
226
|
editable: boolean;
|
|
@@ -88,7 +88,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
88
|
type: BooleanConstructor;
|
|
89
89
|
default: boolean;
|
|
90
90
|
};
|
|
91
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
91
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
92
92
|
id: StringConstructor;
|
|
93
93
|
disabled: {
|
|
94
94
|
type: BooleanConstructor;
|
|
@@ -178,7 +178,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
178
178
|
type: BooleanConstructor;
|
|
179
179
|
default: boolean;
|
|
180
180
|
};
|
|
181
|
-
}
|
|
181
|
+
}>> & {
|
|
182
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
183
|
+
}, {
|
|
182
184
|
readonly: boolean;
|
|
183
185
|
disabled: boolean;
|
|
184
186
|
editable: boolean;
|