vuetify 3.4.1 → 3.4.3
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/json/attributes.json +1928 -1928
- package/dist/json/importMap.json +136 -136
- package/dist/json/web-types.json +3673 -3658
- package/dist/vuetify-labs.css +2924 -2918
- package/dist/vuetify-labs.d.ts +298 -151
- package/dist/vuetify-labs.esm.js +710 -696
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +709 -695
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1824 -1818
- package/dist/vuetify.d.ts +343 -196
- package/dist/vuetify.esm.js +710 -696
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +709 -695
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +222 -221
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +48 -48
- package/lib/blueprints/md1.d.mts +48 -48
- package/lib/blueprints/md2.d.mts +48 -48
- package/lib/blueprints/md3.d.mts +48 -48
- package/lib/components/VBtn/VBtn.css +3 -0
- package/lib/components/VBtn/VBtn.sass +4 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VCarousel/VCarousel.css +2 -1
- package/lib/components/VCarousel/VCarousel.mjs +1 -1
- package/lib/components/VCarousel/VCarousel.mjs.map +1 -1
- package/lib/components/VCarousel/VCarousel.sass +3 -1
- package/lib/components/VCarousel/_variables.scss +6 -0
- package/lib/components/VCheckbox/index.d.mts +32 -20
- package/lib/components/VDataTable/VDataTable.css +0 -3
- package/lib/components/VDataTable/VDataTable.mjs +2 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.sass +0 -2
- package/lib/components/VDataTable/VDataTableFooter.css +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs +18 -31
- package/lib/components/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/_variables.scss +1 -1
- package/lib/components/VDataTable/index.d.mts +3 -3
- package/lib/components/VDatePicker/VDatePicker.mjs +3 -3
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +18 -15
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.mjs +1 -0
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/VPagination/VPagination.mjs +2 -2
- package/lib/components/VPagination/VPagination.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +16 -10
- package/lib/components/VRadioGroup/index.d.mts +16 -10
- package/lib/components/VSelect/VSelect.mjs +3 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +16 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +4 -1
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
- package/lib/components/VSelectionControlGroup/index.d.mts +16 -10
- package/lib/components/VSlideGroup/VSlideGroup.mjs +2 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSwitch/index.d.mts +16 -10
- package/lib/components/VTable/VTable.css +6 -1
- package/lib/components/VTable/VTable.sass +6 -1
- package/lib/components/VTable/_variables.scss +2 -0
- package/lib/components/VTabs/VTab.mjs +4 -3
- package/lib/components/VTabs/VTab.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +72 -0
- package/lib/components/index.d.mts +187 -73
- package/lib/composables/date/date.mjs +21 -13
- package/lib/composables/date/date.mjs.map +1 -1
- package/lib/composables/router.mjs +7 -2
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +4 -3
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +156 -123
- package/lib/locale/fr.mjs +1 -1
- package/lib/locale/fr.mjs.map +1 -1
- package/package.json +2 -2
package/lib/index.d.mts
CHANGED
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
2
|
import { Ref, DeepReadonly, JSXComponent, PropType, CSSProperties, App } from 'vue';
|
|
3
3
|
|
|
4
|
+
interface DateAdapter<T = unknown> {
|
|
5
|
+
date(value?: any): T | null;
|
|
6
|
+
format(date: T, formatString: string): string;
|
|
7
|
+
toJsDate(value: T): Date;
|
|
8
|
+
parseISO(date: string): T;
|
|
9
|
+
toISO(date: T): string;
|
|
10
|
+
startOfDay(date: T): T;
|
|
11
|
+
endOfDay(date: T): T;
|
|
12
|
+
startOfMonth(date: T): T;
|
|
13
|
+
endOfMonth(date: T): T;
|
|
14
|
+
startOfYear(date: T): T;
|
|
15
|
+
endOfYear(date: T): T;
|
|
16
|
+
isBefore(date: T, comparing: T): boolean;
|
|
17
|
+
isAfter(date: T, comparing: T): boolean;
|
|
18
|
+
isEqual(date: T, comparing: T): boolean;
|
|
19
|
+
isSameDay(date: T, comparing: T): boolean;
|
|
20
|
+
isSameMonth(date: T, comparing: T): boolean;
|
|
21
|
+
isValid(date: any): boolean;
|
|
22
|
+
isWithinRange(date: T, range: [T, T]): boolean;
|
|
23
|
+
addDays(date: T, amount: number): T;
|
|
24
|
+
addMonths(date: T, amount: number): T;
|
|
25
|
+
getYear(date: T): number;
|
|
26
|
+
setYear(date: T, year: number): T;
|
|
27
|
+
getDiff(date: T, comparing: T | string, unit?: string): number;
|
|
28
|
+
getWeekArray(date: T): T[][];
|
|
29
|
+
getWeekdays(): string[];
|
|
30
|
+
getMonth(date: T): number;
|
|
31
|
+
setMonth(date: T, month: number): T;
|
|
32
|
+
getNextMonth(date: T): T;
|
|
33
|
+
}
|
|
34
|
+
|
|
4
35
|
interface LocaleMessages {
|
|
5
36
|
[key: string]: LocaleMessages | string;
|
|
6
37
|
}
|
|
@@ -33,6 +64,54 @@ declare function useRtl(): {
|
|
|
33
64
|
rtlClasses: Ref<string>;
|
|
34
65
|
};
|
|
35
66
|
|
|
67
|
+
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
|
68
|
+
locale?: any;
|
|
69
|
+
}
|
|
70
|
+
/** Supports module augmentation to specify date object types */
|
|
71
|
+
interface DateInstanceType {
|
|
72
|
+
instanceType: unknown;
|
|
73
|
+
}
|
|
74
|
+
type InternalDateOptions<T = unknown> = {
|
|
75
|
+
adapter: (new (options: {
|
|
76
|
+
locale: any;
|
|
77
|
+
formats?: any;
|
|
78
|
+
}) => DateInstance<T>) | DateInstance<T>;
|
|
79
|
+
formats?: Record<string, any>;
|
|
80
|
+
locale: Record<string, any>;
|
|
81
|
+
};
|
|
82
|
+
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
|
83
|
+
declare function useDate(): {
|
|
84
|
+
locale?: any;
|
|
85
|
+
date: (value?: any) => unknown;
|
|
86
|
+
format: (date: unknown, formatString: string) => string;
|
|
87
|
+
toJsDate: (value: unknown) => Date;
|
|
88
|
+
parseISO: (date: string) => unknown;
|
|
89
|
+
toISO: (date: unknown) => string;
|
|
90
|
+
startOfDay: (date: unknown) => unknown;
|
|
91
|
+
endOfDay: (date: unknown) => unknown;
|
|
92
|
+
startOfMonth: (date: unknown) => unknown;
|
|
93
|
+
endOfMonth: (date: unknown) => unknown;
|
|
94
|
+
startOfYear: (date: unknown) => unknown;
|
|
95
|
+
endOfYear: (date: unknown) => unknown;
|
|
96
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
97
|
+
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
98
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
99
|
+
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
100
|
+
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
101
|
+
isValid: (date: any) => boolean;
|
|
102
|
+
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
103
|
+
addDays: (date: unknown, amount: number) => unknown;
|
|
104
|
+
addMonths: (date: unknown, amount: number) => unknown;
|
|
105
|
+
getYear: (date: unknown) => number;
|
|
106
|
+
setYear: (date: unknown, year: number) => unknown;
|
|
107
|
+
getDiff: (date: unknown, comparing: unknown, unit?: string | undefined) => number;
|
|
108
|
+
getWeekArray: (date: unknown) => unknown[][];
|
|
109
|
+
getWeekdays: () => string[];
|
|
110
|
+
getMonth: (date: unknown) => number;
|
|
111
|
+
setMonth: (date: unknown, month: number) => unknown;
|
|
112
|
+
getNextMonth: (date: unknown) => unknown;
|
|
113
|
+
};
|
|
114
|
+
|
|
36
115
|
type DeepPartial<T> = T extends object ? {
|
|
37
116
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
38
117
|
} : T;
|
|
@@ -185,55 +264,6 @@ type DefaultsOptions = Partial<DefaultsInstance>;
|
|
|
185
264
|
declare function useDefaults<T extends Record<string, any>>(props: T, name?: string): T;
|
|
186
265
|
declare function useDefaults(props?: undefined, name?: string): Record<string, any>;
|
|
187
266
|
|
|
188
|
-
interface DateAdapter<T = unknown> {
|
|
189
|
-
date(value?: any): T | null;
|
|
190
|
-
format(date: T, formatString: string): string;
|
|
191
|
-
toJsDate(value: T): Date;
|
|
192
|
-
parseISO(date: string): T;
|
|
193
|
-
toISO(date: T): string;
|
|
194
|
-
startOfDay(date: T): T;
|
|
195
|
-
endOfDay(date: T): T;
|
|
196
|
-
startOfMonth(date: T): T;
|
|
197
|
-
endOfMonth(date: T): T;
|
|
198
|
-
startOfYear(date: T): T;
|
|
199
|
-
endOfYear(date: T): T;
|
|
200
|
-
isBefore(date: T, comparing: T): boolean;
|
|
201
|
-
isAfter(date: T, comparing: T): boolean;
|
|
202
|
-
isEqual(date: T, comparing: T): boolean;
|
|
203
|
-
isSameDay(date: T, comparing: T): boolean;
|
|
204
|
-
isSameMonth(date: T, comparing: T): boolean;
|
|
205
|
-
isValid(date: any): boolean;
|
|
206
|
-
isWithinRange(date: T, range: [T, T]): boolean;
|
|
207
|
-
addDays(date: T, amount: number): T;
|
|
208
|
-
addMonths(date: T, amount: number): T;
|
|
209
|
-
getYear(date: T): number;
|
|
210
|
-
setYear(date: T, year: number): T;
|
|
211
|
-
getDiff(date: T, comparing: T | string, unit?: string): number;
|
|
212
|
-
getWeekArray(date: T): T[][];
|
|
213
|
-
getWeekdays(): string[];
|
|
214
|
-
getMonth(date: T): number;
|
|
215
|
-
setMonth(date: T, month: number): T;
|
|
216
|
-
getNextMonth(date: T): T;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
|
220
|
-
locale?: any;
|
|
221
|
-
}
|
|
222
|
-
/** Supports module augmentation to specify date object types */
|
|
223
|
-
interface DateInstanceType {
|
|
224
|
-
instanceType: unknown;
|
|
225
|
-
}
|
|
226
|
-
type InternalDateOptions<T = unknown> = {
|
|
227
|
-
adapter: (new (options: {
|
|
228
|
-
locale: any;
|
|
229
|
-
formats?: any;
|
|
230
|
-
}) => DateInstance<T>) | DateInstance<T>;
|
|
231
|
-
formats?: Record<string, any>;
|
|
232
|
-
locale: Record<string, any>;
|
|
233
|
-
};
|
|
234
|
-
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
|
235
|
-
declare function useDate(): DateInstance<unknown>;
|
|
236
|
-
|
|
237
267
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
238
268
|
declare const IconValue: PropType<IconValue>;
|
|
239
269
|
interface IconAliases {
|
|
@@ -354,35 +384,38 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
|
|
|
354
384
|
provide: (props: LocaleOptions) => LocaleInstance;
|
|
355
385
|
};
|
|
356
386
|
date: {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
387
|
+
options: InternalDateOptions<unknown>;
|
|
388
|
+
instance: {
|
|
389
|
+
locale?: any;
|
|
390
|
+
date: (value?: any) => unknown;
|
|
391
|
+
format: (date: unknown, formatString: string) => string;
|
|
392
|
+
toJsDate: (value: unknown) => Date;
|
|
393
|
+
parseISO: (date: string) => unknown;
|
|
394
|
+
toISO: (date: unknown) => string;
|
|
395
|
+
startOfDay: (date: unknown) => unknown;
|
|
396
|
+
endOfDay: (date: unknown) => unknown;
|
|
397
|
+
startOfMonth: (date: unknown) => unknown;
|
|
398
|
+
endOfMonth: (date: unknown) => unknown;
|
|
399
|
+
startOfYear: (date: unknown) => unknown;
|
|
400
|
+
endOfYear: (date: unknown) => unknown;
|
|
401
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
402
|
+
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
403
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
404
|
+
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
405
|
+
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
406
|
+
isValid: (date: any) => boolean;
|
|
407
|
+
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
408
|
+
addDays: (date: unknown, amount: number) => unknown;
|
|
409
|
+
addMonths: (date: unknown, amount: number) => unknown;
|
|
410
|
+
getYear: (date: unknown) => number;
|
|
411
|
+
setYear: (date: unknown, year: number) => unknown;
|
|
412
|
+
getDiff: (date: unknown, comparing: unknown, unit?: string | undefined) => number;
|
|
413
|
+
getWeekArray: (date: unknown) => unknown[][];
|
|
414
|
+
getWeekdays: () => string[];
|
|
415
|
+
getMonth: (date: unknown) => number;
|
|
416
|
+
setMonth: (date: unknown, month: number) => unknown;
|
|
417
|
+
getNextMonth: (date: unknown) => unknown;
|
|
418
|
+
};
|
|
386
419
|
};
|
|
387
420
|
};
|
|
388
421
|
declare namespace createVuetify {
|
|
@@ -433,76 +466,75 @@ declare module '@vue/runtime-core' {
|
|
|
433
466
|
}
|
|
434
467
|
|
|
435
468
|
export interface GlobalComponents {
|
|
436
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
437
469
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
438
470
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
439
471
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
440
472
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
441
|
-
|
|
442
|
-
|
|
473
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
474
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
443
475
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
444
476
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
445
477
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
478
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
479
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
480
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
446
481
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
447
482
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
483
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
484
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
485
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
486
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
451
487
|
VCard: typeof import('vuetify/components')['VCard']
|
|
452
488
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
453
489
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
454
490
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
455
491
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
456
492
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
460
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
461
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
462
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
493
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
494
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
463
495
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
464
496
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
465
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
466
497
|
VChip: typeof import('vuetify/components')['VChip']
|
|
467
|
-
|
|
498
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
499
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
468
500
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
501
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
502
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
469
503
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
470
504
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
471
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
472
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
473
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
474
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
475
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
476
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
477
505
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
478
506
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
479
507
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
480
508
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
481
509
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
482
510
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
483
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
484
511
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
512
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
513
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
514
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
515
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
516
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
517
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
488
518
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
489
519
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
490
520
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
491
521
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
492
|
-
|
|
522
|
+
VField: typeof import('vuetify/components')['VField']
|
|
523
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
493
524
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
525
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
526
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
494
527
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
495
528
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
496
529
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
497
530
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
498
531
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
499
532
|
VImg: typeof import('vuetify/components')['VImg']
|
|
500
|
-
|
|
533
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
501
534
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
502
535
|
VItem: typeof import('vuetify/components')['VItem']
|
|
503
|
-
|
|
536
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
504
537
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
505
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
506
538
|
VList: typeof import('vuetify/components')['VList']
|
|
507
539
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
508
540
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -512,47 +544,48 @@ declare module '@vue/runtime-core' {
|
|
|
512
544
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
513
545
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
514
546
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
547
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
515
548
|
VMain: typeof import('vuetify/components')['VMain']
|
|
516
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
517
549
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
518
|
-
|
|
550
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
519
551
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
552
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
520
553
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
521
554
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
522
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
523
555
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
556
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
524
557
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
525
558
|
VRating: typeof import('vuetify/components')['VRating']
|
|
526
|
-
|
|
559
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
527
560
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
528
|
-
|
|
561
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
562
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
529
563
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
530
564
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
531
|
-
|
|
532
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
533
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
534
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
565
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
535
566
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
536
567
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
537
568
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
538
569
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
539
570
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
540
571
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
572
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
573
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
544
574
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
545
575
|
VTable: typeof import('vuetify/components')['VTable']
|
|
546
|
-
|
|
576
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
577
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
578
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
579
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
547
580
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
548
581
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
549
|
-
|
|
582
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
583
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
550
584
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
551
585
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
552
586
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
553
587
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
554
588
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
555
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
556
589
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
557
590
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
558
591
|
VForm: typeof import('vuetify/components')['VForm']
|
|
@@ -566,13 +599,13 @@ declare module '@vue/runtime-core' {
|
|
|
566
599
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
567
600
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
568
601
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
602
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
569
603
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
570
604
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
571
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
572
605
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
573
606
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
574
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
575
607
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
608
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
576
609
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
577
610
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
578
611
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
package/lib/locale/fr.mjs
CHANGED
package/lib/locale/fr.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/fr.ts"],"sourcesContent":["export default {\n badge: 'Badge',\n open: 'Ouvrir',\n close: 'Fermer',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Annuler',\n },\n dataIterator: {\n noResultsText: 'Aucun enregistrement correspondant trouvé',\n loadingText: `Chargement de l'élément...`,\n },\n dataTable: {\n itemsPerPageText: 'Lignes par page :',\n ariaLabel: {\n sortDescending: 'Tri décroissant.',\n sortAscending: 'Tri croissant.',\n sortNone: 'Non trié.',\n activateNone: 'Activer pour supprimer le tri.',\n activateDescending: 'Activer pour trier par ordre décroissant.',\n activateAscending: 'Activer pour trier par ordre croissant.',\n },\n sortBy: 'Trier par',\n },\n dataFooter: {\n itemsPerPageText: '
|
|
1
|
+
{"version":3,"file":"fr.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/fr.ts"],"sourcesContent":["export default {\n badge: 'Badge',\n open: 'Ouvrir',\n close: 'Fermer',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Annuler',\n },\n dataIterator: {\n noResultsText: 'Aucun enregistrement correspondant trouvé',\n loadingText: `Chargement de l'élément...`,\n },\n dataTable: {\n itemsPerPageText: 'Lignes par page :',\n ariaLabel: {\n sortDescending: 'Tri décroissant.',\n sortAscending: 'Tri croissant.',\n sortNone: 'Non trié.',\n activateNone: 'Activer pour supprimer le tri.',\n activateDescending: 'Activer pour trier par ordre décroissant.',\n activateAscending: 'Activer pour trier par ordre croissant.',\n },\n sortBy: 'Trier par',\n },\n dataFooter: {\n itemsPerPageText: 'Éléments par page :',\n itemsPerPageAll: 'Tous',\n nextPage: 'Page suivante',\n prevPage: 'Page précédente',\n firstPage: 'Première page',\n lastPage: 'Dernière page',\n pageText: '{0}-{1} de {2}',\n },\n dateRangeInput: {\n divider: 'à',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Sélectionner des dates',\n header: 'Entrer des dates',\n },\n title: 'Sélectionner une date',\n header: 'Entrer une date',\n input: {\n placeholder: 'Entrer une date',\n },\n },\n noDataText: 'Aucune donnée disponible',\n carousel: {\n prev: 'Visuel précédent',\n next: 'Visuel suivant',\n ariaLabel: {\n delimiter: 'Diapositive {0} de {1}',\n },\n },\n calendar: {\n moreEvents: '{0} de plus',\n },\n input: {\n clear: 'Vider {0}',\n prependAction: '{0} action avant',\n appendAction: '{0} action après',\n otp: 'Caractère {0} du mot de passe à usage unique',\n },\n fileInput: {\n counter: '{0} fichier(s)',\n counterSize: '{0} fichier(s) ({1} au total)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Navigation de pagination',\n next: 'Page suivante',\n previous: 'Page précédente',\n page: 'Aller à la page {0}',\n currentPage: 'Page actuelle, Page {0}',\n first: 'Première page',\n last: 'Dernière page',\n },\n },\n stepper: {\n next: 'Suivant',\n prev: 'Précédent',\n },\n rating: {\n ariaLabel: {\n item: 'Note de {0} sur {1}',\n },\n },\n loading: 'Chargement...',\n infiniteScroll: {\n loadMore: 'Charger plus',\n empty: 'Aucune donnée supplémentaire',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,QAAQ;EACdC,KAAK,EAAE,QAAQ;EACfC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,2CAA2C;IAC1DC,WAAW,EAAG;EAChB,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,mBAAmB;IACrCC,SAAS,EAAE;MACTC,cAAc,EAAE,kBAAkB;MAClCC,aAAa,EAAE,gBAAgB;MAC/BC,QAAQ,EAAE,WAAW;MACrBC,YAAY,EAAE,gCAAgC;MAC9CC,kBAAkB,EAAE,2CAA2C;MAC/DC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,qBAAqB;IACvCU,eAAe,EAAE,MAAM;IACvBC,QAAQ,EAAE,eAAe;IACzBC,QAAQ,EAAE,iBAAiB;IAC3BC,SAAS,EAAE,eAAe;IAC1BC,QAAQ,EAAE,eAAe;IACzBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,wBAAwB;MAC/BC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,uBAAuB;IAC9BC,MAAM,EAAE,iBAAiB;IACzBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,0BAA0B;EACtCC,QAAQ,EAAE;IACRC,IAAI,EAAE,kBAAkB;IACxBC,IAAI,EAAE,gBAAgB;IACtB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE;EACd,CAAC;EACDR,KAAK,EAAE;IACLS,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,kBAAkB;IACjCC,YAAY,EAAE,kBAAkB;IAChCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,gBAAgB;IACzBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACVzC,SAAS,EAAE;MACT0C,IAAI,EAAE,0BAA0B;MAChCf,IAAI,EAAE,eAAe;MACrBgB,QAAQ,EAAE,iBAAiB;MAC3BC,IAAI,EAAE,qBAAqB;MAC3BC,WAAW,EAAE,yBAAyB;MACtCC,KAAK,EAAE,eAAe;MACtBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPrB,IAAI,EAAE,SAAS;IACfD,IAAI,EAAE;EACR,CAAC;EACDuB,MAAM,EAAE;IACNjD,SAAS,EAAE;MACTkD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,eAAe;EACxBC,cAAc,EAAE;IACdC,QAAQ,EAAE,cAAc;IACxBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify",
|
|
3
3
|
"description": "Vue Material Component Framework",
|
|
4
|
-
"version": "3.4.
|
|
4
|
+
"version": "3.4.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "John Leider",
|
|
7
7
|
"email": "john@vuetifyjs.com"
|
|
@@ -200,5 +200,5 @@
|
|
|
200
200
|
"attributes": "dist/json/attributes.json"
|
|
201
201
|
},
|
|
202
202
|
"web-types": "dist/json/web-types.json",
|
|
203
|
-
"gitHead": "
|
|
203
|
+
"gitHead": "93c7f12a384b91ddbdbce78c0585a9ad8a0ac449"
|
|
204
204
|
}
|