vuetify 3.3.3 → 3.3.4
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/_component-variables-labs.sass +2 -0
- package/dist/json/attributes.json +452 -12
- package/dist/json/importMap-labs.json +32 -0
- package/dist/json/importMap.json +20 -20
- package/dist/json/tags.json +150 -0
- package/dist/json/web-types.json +1609 -21
- package/dist/vuetify-labs.css +469 -192
- package/dist/vuetify-labs.d.ts +5178 -217
- package/dist/vuetify-labs.esm.js +1902 -990
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +1902 -990
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +210 -203
- package/dist/vuetify.d.ts +60 -45
- package/dist/vuetify.esm.js +142 -104
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +142 -104
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +159 -160
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +32 -25
- package/lib/blueprints/md1.d.mts +32 -25
- package/lib/blueprints/md2.d.mts +32 -25
- package/lib/blueprints/md3.d.mts +32 -25
- package/lib/components/VAppBar/VAppBar.mjs +3 -10
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +4 -22
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +6 -17
- package/lib/components/VBreadcrumbs/index.d.mts +7 -7
- package/lib/components/VBtn/VBtn.css +11 -11
- package/lib/components/VBtn/VBtn.sass +1 -1
- package/lib/components/VBtn/_mixins.scss +1 -1
- package/lib/components/VChip/VChip.css +67 -67
- package/lib/components/VChip/_variables.scss +1 -1
- package/lib/components/VCombobox/VCombobox.css +4 -22
- package/lib/components/VCombobox/VCombobox.sass +6 -17
- package/lib/components/VCombobox/_variables.scss +3 -3
- package/lib/components/VCounter/index.d.mts +8 -8
- package/lib/components/VField/VField.css +71 -8
- package/lib/components/VField/VField.sass +9 -5
- package/lib/components/VField/_mixins.sass +7 -0
- package/lib/components/VFileInput/VFileInput.css +2 -17
- package/lib/components/VFileInput/VFileInput.mjs +0 -2
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/VFileInput.sass +2 -11
- package/lib/components/VFileInput/_variables.scss +3 -3
- package/lib/components/VInput/VInput.css +14 -1
- package/lib/components/VInput/VInput.sass +6 -0
- package/lib/components/VInput/_variables.scss +5 -1
- package/lib/components/VList/VListItem.mjs +1 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.css +2 -20
- package/lib/components/VSelect/VSelect.mjs +1 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.sass +2 -12
- package/lib/components/VSelect/_variables.scss +3 -3
- package/lib/components/VTabs/VTab.mjs +2 -2
- package/lib/components/VTabs/VTab.mjs.map +1 -1
- package/lib/components/VTimePicker/VTimePickerTitle.mjs +1 -1
- package/lib/components/index.d.mts +15 -15
- package/lib/components/index.mjs +1 -2
- package/lib/components/index.mjs.map +1 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/list-items.mjs +5 -2
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/composables/nested/nested.mjs +1 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa-svg.d.mts +1 -0
- package/lib/iconsets/fa.d.mts +1 -0
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.d.mts +1 -0
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.d.mts +1 -0
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.d.mts +1 -0
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.d.mts +1 -0
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +45 -30
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +16 -12
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/headers.mjs +2 -5
- package/lib/labs/VDataTable/composables/headers.mjs.map +1 -1
- package/lib/labs/VDateInput/VDateInput.mjs +127 -0
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -0
- package/lib/labs/VDateInput/VDateInput.sass +11 -0
- package/lib/labs/VDateInput/VDateRangeInput.mjs +223 -0
- package/lib/labs/VDateInput/VDateRangeInput.mjs.map +1 -0
- package/lib/labs/VDateInput/VDateRangeInput.sass +10 -0
- package/lib/labs/VDateInput/composables.mjs +59 -0
- package/lib/labs/VDateInput/composables.mjs.map +1 -0
- package/lib/labs/VDateInput/index.d.mts +1352 -0
- package/lib/labs/VDateInput/index.mjs +3 -0
- package/lib/labs/VDateInput/index.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDateCard.css +33 -0
- package/lib/labs/VDatePicker/VDateCard.mjs +112 -0
- package/lib/labs/VDatePicker/VDateCard.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDateCard.sass +32 -0
- package/lib/labs/VDatePicker/VDatePicker.css +23 -0
- package/lib/labs/VDatePicker/VDatePicker.mjs +172 -0
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePicker.sass +23 -0
- package/lib/labs/VDatePicker/VDatePickerControls.css +15 -0
- package/lib/labs/VDatePicker/VDatePickerControls.mjs +80 -0
- package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerControls.sass +15 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.css +54 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.mjs +75 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.sass +51 -0
- package/lib/labs/VDatePicker/VDatePickerInput.sass +17 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.css +77 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs +286 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.sass +69 -0
- package/lib/{components → labs}/VDatePicker/VDatePickerTitle.mjs +1 -1
- package/lib/labs/VDatePicker/VDatePickerTitle.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerYears.css +18 -0
- package/lib/labs/VDatePicker/VDatePickerYears.mjs +64 -0
- package/lib/labs/VDatePicker/VDatePickerYears.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerYears.sass +16 -0
- package/lib/labs/VDatePicker/composables.mjs +33 -0
- package/lib/labs/VDatePicker/composables.mjs.map +1 -0
- package/lib/labs/VDatePicker/index.d.mts +4430 -0
- package/lib/labs/VDatePicker/index.mjs +7 -0
- package/lib/labs/VDatePicker/index.mjs.map +1 -0
- package/lib/labs/VDatePicker/mixins/date-picker-table.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/createNativeLocaleFormatter.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/eventHelpers.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/index.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/isDateAllowed.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/monthChange.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/pad.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/sanitizeDateString.mjs.map +1 -0
- package/lib/labs/VDatePicker/utils.mjs +69 -0
- package/lib/labs/VDatePicker/utils.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs +87 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.sass +33 -0
- package/lib/labs/VDateRangePicker/VDateRangePicker.mjs +131 -0
- package/lib/labs/VDateRangePicker/VDateRangePicker.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangePicker.sass +21 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.mjs +103 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.sass +39 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerMonth.mjs +61 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerMonth.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerMonth.sass +12 -0
- package/lib/labs/VDateRangePicker/index.d.mts +1065 -0
- package/lib/labs/VDateRangePicker/index.mjs +3 -0
- package/lib/labs/VDateRangePicker/index.mjs.map +1 -0
- package/lib/labs/VPicker/VPicker.css +57 -0
- package/lib/labs/VPicker/VPicker.mjs +47 -0
- package/lib/labs/VPicker/VPicker.mjs.map +1 -0
- package/lib/labs/VPicker/VPicker.sass +53 -0
- package/lib/labs/VPicker/VPickerTitle.mjs +4 -0
- package/lib/labs/VPicker/VPickerTitle.mjs.map +1 -0
- package/lib/labs/VPicker/index.d.mts +541 -0
- package/lib/labs/VPicker/index.mjs +3 -0
- package/lib/labs/VPicker/index.mjs.map +1 -0
- package/lib/labs/components.d.mts +5136 -198
- package/lib/labs/components.mjs +2 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/labs/date/DateAdapter.mjs.map +1 -1
- package/lib/labs/date/adapters/vuetify.d.mts +28 -25
- package/lib/labs/date/adapters/vuetify.mjs +65 -75
- package/lib/labs/date/adapters/vuetify.mjs.map +1 -1
- package/lib/labs/date/date.mjs +82 -11
- package/lib/labs/date/date.mjs.map +1 -1
- package/lib/labs/date/index.d.mts +31 -30
- package/lib/locale/af.mjs +14 -5
- package/lib/locale/af.mjs.map +1 -1
- package/lib/locale/ar.mjs +14 -5
- package/lib/locale/ar.mjs.map +1 -1
- package/lib/locale/az.mjs +14 -5
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/bg.mjs +14 -5
- package/lib/locale/bg.mjs.map +1 -1
- package/lib/locale/ca.mjs +14 -5
- package/lib/locale/ca.mjs.map +1 -1
- package/lib/locale/ckb.mjs +14 -5
- package/lib/locale/ckb.mjs.map +1 -1
- package/lib/locale/cs.mjs +14 -5
- package/lib/locale/cs.mjs.map +1 -1
- package/lib/locale/da.mjs +14 -5
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +14 -5
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/el.mjs +14 -5
- package/lib/locale/el.mjs.map +1 -1
- package/lib/locale/en.mjs +14 -5
- package/lib/locale/en.mjs.map +1 -1
- package/lib/locale/es.mjs +14 -5
- package/lib/locale/es.mjs.map +1 -1
- package/lib/locale/et.mjs +14 -5
- package/lib/locale/et.mjs.map +1 -1
- package/lib/locale/fa.mjs +14 -5
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/locale/fi.mjs +14 -5
- package/lib/locale/fi.mjs.map +1 -1
- package/lib/locale/fr.mjs +14 -5
- package/lib/locale/fr.mjs.map +1 -1
- package/lib/locale/he.mjs +14 -5
- package/lib/locale/he.mjs.map +1 -1
- package/lib/locale/hr.mjs +14 -5
- package/lib/locale/hr.mjs.map +1 -1
- package/lib/locale/hu.mjs +14 -5
- package/lib/locale/hu.mjs.map +1 -1
- package/lib/locale/id.mjs +14 -5
- package/lib/locale/id.mjs.map +1 -1
- package/lib/locale/index.d.mts +588 -210
- package/lib/locale/it.mjs +14 -5
- package/lib/locale/it.mjs.map +1 -1
- package/lib/locale/ja.mjs +14 -5
- package/lib/locale/ja.mjs.map +1 -1
- package/lib/locale/ko.mjs +14 -5
- package/lib/locale/ko.mjs.map +1 -1
- package/lib/locale/lt.mjs +14 -5
- package/lib/locale/lt.mjs.map +1 -1
- package/lib/locale/lv.mjs +14 -5
- package/lib/locale/lv.mjs.map +1 -1
- package/lib/locale/nl.mjs +14 -5
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/locale/no.mjs +14 -5
- package/lib/locale/no.mjs.map +1 -1
- package/lib/locale/pl.mjs +14 -5
- package/lib/locale/pl.mjs.map +1 -1
- package/lib/locale/pt.mjs +14 -5
- package/lib/locale/pt.mjs.map +1 -1
- package/lib/locale/ro.mjs +14 -5
- package/lib/locale/ro.mjs.map +1 -1
- package/lib/locale/ru.mjs +14 -5
- package/lib/locale/ru.mjs.map +1 -1
- package/lib/locale/sk.mjs +14 -5
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/locale/sl.mjs +14 -5
- package/lib/locale/sl.mjs.map +1 -1
- package/lib/locale/sr-Cyrl.mjs +14 -5
- package/lib/locale/sr-Cyrl.mjs.map +1 -1
- package/lib/locale/sr-Latn.mjs +14 -5
- package/lib/locale/sr-Latn.mjs.map +1 -1
- package/lib/locale/sv.mjs +14 -5
- package/lib/locale/sv.mjs.map +1 -1
- package/lib/locale/th.mjs +14 -5
- package/lib/locale/th.mjs.map +1 -1
- package/lib/locale/tr.mjs +14 -5
- package/lib/locale/tr.mjs.map +1 -1
- package/lib/locale/uk.mjs +14 -5
- package/lib/locale/uk.mjs.map +1 -1
- package/lib/locale/vi.mjs +14 -5
- package/lib/locale/vi.mjs.map +1 -1
- package/lib/locale/zh-Hans.mjs +14 -5
- package/lib/locale/zh-Hans.mjs.map +1 -1
- package/lib/locale/zh-Hant.mjs +14 -5
- package/lib/locale/zh-Hant.mjs.map +1 -1
- package/lib/util/dateTimeUtils.mjs +68 -0
- package/lib/util/dateTimeUtils.mjs.map +1 -1
- package/package.json +5 -2
- package/lib/components/VDatePicker/VDatePicker.mjs +0 -475
- package/lib/components/VDatePicker/VDatePicker.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerDateTable.mjs +0 -120
- package/lib/components/VDatePicker/VDatePickerDateTable.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerHeader.mjs +0 -136
- package/lib/components/VDatePicker/VDatePickerHeader.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerHeader.sass +0 -46
- package/lib/components/VDatePicker/VDatePickerMonthTable.mjs +0 -48
- package/lib/components/VDatePicker/VDatePickerMonthTable.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerTitle.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerYears.mjs +0 -84
- package/lib/components/VDatePicker/VDatePickerYears.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerYears.sass +0 -30
- package/lib/components/VDatePicker/index.mjs +0 -18
- package/lib/components/VDatePicker/index.mjs.map +0 -1
- package/lib/components/VDatePicker/mixins/date-picker-table.mjs.map +0 -1
- package/lib/components/VDatePicker/util/createNativeLocaleFormatter.mjs.map +0 -1
- package/lib/components/VDatePicker/util/eventHelpers.mjs.map +0 -1
- package/lib/components/VDatePicker/util/index.mjs.map +0 -1
- package/lib/components/VDatePicker/util/isDateAllowed.mjs.map +0 -1
- package/lib/components/VDatePicker/util/monthChange.mjs.map +0 -1
- package/lib/components/VDatePicker/util/pad.mjs.map +0 -1
- package/lib/components/VDatePicker/util/sanitizeDateString.mjs.map +0 -1
- package/lib/components/VPicker/VPicker.mjs +0 -86
- package/lib/components/VPicker/VPicker.mjs.map +0 -1
- package/lib/components/VPicker/VPicker.sass +0 -94
- package/lib/components/VPicker/index.mjs +0 -4
- package/lib/components/VPicker/index.mjs.map +0 -1
- /package/lib/{components → labs}/VDatePicker/VDatePickerTable.sass +0 -0
- /package/lib/{components → labs}/VDatePicker/VDatePickerTitle.sass +0 -0
- /package/lib/{components → labs}/VDatePicker/_variables.scss +0 -0
- /package/lib/{components → labs}/VDatePicker/mixins/date-picker-table.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/createNativeLocaleFormatter.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/eventHelpers.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/index.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/isDateAllowed.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/monthChange.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/pad.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/sanitizeDateString.mjs +0 -0
- /package/lib/{components → labs}/VPicker/_variables.scss +0 -0
package/dist/vuetify.d.ts
CHANGED
|
@@ -259,6 +259,7 @@ interface IconAliases {
|
|
|
259
259
|
file: IconValue;
|
|
260
260
|
plus: IconValue;
|
|
261
261
|
minus: IconValue;
|
|
262
|
+
calendar: IconValue;
|
|
262
263
|
}
|
|
263
264
|
interface IconProps {
|
|
264
265
|
tag: string;
|
|
@@ -831,36 +832,42 @@ declare const VClassIcon: {
|
|
|
831
832
|
}>>;
|
|
832
833
|
type VClassIcon = InstanceType<typeof VClassIcon>;
|
|
833
834
|
|
|
834
|
-
interface DateAdapter<
|
|
835
|
-
date(value?: any):
|
|
836
|
-
format(date:
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
835
|
+
interface DateAdapter<T> {
|
|
836
|
+
date(value?: any): T | null;
|
|
837
|
+
format(date: T, formatString: string): string;
|
|
838
|
+
toJsDate(value: T): Date;
|
|
839
|
+
startOfMonth(date: T): T;
|
|
840
|
+
endOfMonth(date: T): T;
|
|
841
|
+
startOfYear(date: T): T;
|
|
842
|
+
endOfYear(date: T): T;
|
|
843
|
+
isBefore(date: T, comparing: T): boolean;
|
|
844
|
+
isAfter(date: T, comparing: T): boolean;
|
|
845
|
+
isEqual(date: T, comparing: T): boolean;
|
|
846
|
+
isSameDay(date: T, comparing: T): boolean;
|
|
847
|
+
isSameMonth(date: T, comparing: T): boolean;
|
|
845
848
|
isValid(date: any): boolean;
|
|
846
|
-
isWithinRange(date:
|
|
847
|
-
addDays(date:
|
|
848
|
-
addMonths(date:
|
|
849
|
-
getYear(date:
|
|
850
|
-
setYear(date:
|
|
851
|
-
getDiff(date:
|
|
852
|
-
|
|
853
|
-
getWeekArray(date: Date): (Date | null)[][];
|
|
849
|
+
isWithinRange(date: T, range: [T, T]): boolean;
|
|
850
|
+
addDays(date: T, amount: number): T;
|
|
851
|
+
addMonths(date: T, amount: number): T;
|
|
852
|
+
getYear(date: T): number;
|
|
853
|
+
setYear(date: T, year: number): T;
|
|
854
|
+
getDiff(date: T, comparing: T | string, unit?: string): number;
|
|
855
|
+
getWeekArray(date: T): T[][];
|
|
854
856
|
getWeekdays(): string[];
|
|
855
|
-
getMonth(date:
|
|
857
|
+
getMonth(date: T): number;
|
|
856
858
|
}
|
|
857
859
|
|
|
858
|
-
interface DateInstance extends DateAdapter<
|
|
859
|
-
locale
|
|
860
|
+
interface DateInstance<T> extends DateAdapter<T> {
|
|
861
|
+
locale?: any;
|
|
860
862
|
}
|
|
861
|
-
type
|
|
862
|
-
adapter: (new (
|
|
863
|
+
type InternalDateOptions<T = any> = {
|
|
864
|
+
adapter: (new (options: {
|
|
865
|
+
locale: any;
|
|
866
|
+
}) => DateInstance<T>) | DateInstance<T>;
|
|
867
|
+
formats?: Record<string, string>;
|
|
868
|
+
locale: Record<string, any>;
|
|
863
869
|
};
|
|
870
|
+
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
|
864
871
|
|
|
865
872
|
type Position = 'top' | 'left' | 'right' | 'bottom';
|
|
866
873
|
interface Layer {
|
|
@@ -8649,9 +8656,9 @@ declare const VBreadcrumbs: {
|
|
|
8649
8656
|
style?: vue.StyleValue | undefined;
|
|
8650
8657
|
disabled?: boolean | undefined;
|
|
8651
8658
|
tag?: string | undefined;
|
|
8659
|
+
divider?: string | undefined;
|
|
8652
8660
|
rounded?: string | number | boolean | undefined;
|
|
8653
8661
|
density?: Density | undefined;
|
|
8654
|
-
divider?: string | undefined;
|
|
8655
8662
|
key?: string | number | symbol | undefined;
|
|
8656
8663
|
color?: string | undefined;
|
|
8657
8664
|
class?: any;
|
|
@@ -8735,8 +8742,8 @@ declare const VBreadcrumbs: {
|
|
|
8735
8742
|
style: vue.StyleValue;
|
|
8736
8743
|
disabled: boolean;
|
|
8737
8744
|
tag: string;
|
|
8738
|
-
density: Density;
|
|
8739
8745
|
divider: string;
|
|
8746
|
+
density: Density;
|
|
8740
8747
|
} & {
|
|
8741
8748
|
color?: string | undefined;
|
|
8742
8749
|
class?: any;
|
|
@@ -8749,9 +8756,9 @@ declare const VBreadcrumbs: {
|
|
|
8749
8756
|
style: vue.StyleValue;
|
|
8750
8757
|
disabled: boolean;
|
|
8751
8758
|
tag: string;
|
|
8759
|
+
divider: string;
|
|
8752
8760
|
rounded: string | number | boolean;
|
|
8753
8761
|
density: Density;
|
|
8754
|
-
divider: string;
|
|
8755
8762
|
}, {}, string, vue.SlotsType<Partial<{
|
|
8756
8763
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8757
8764
|
[key: string]: any;
|
|
@@ -8795,8 +8802,8 @@ declare const VBreadcrumbs: {
|
|
|
8795
8802
|
style: vue.StyleValue;
|
|
8796
8803
|
disabled: boolean;
|
|
8797
8804
|
tag: string;
|
|
8798
|
-
density: Density;
|
|
8799
8805
|
divider: string;
|
|
8806
|
+
density: Density;
|
|
8800
8807
|
} & {
|
|
8801
8808
|
color?: string | undefined;
|
|
8802
8809
|
class?: any;
|
|
@@ -8813,8 +8820,8 @@ declare const VBreadcrumbs: {
|
|
|
8813
8820
|
style: vue.StyleValue;
|
|
8814
8821
|
disabled: boolean;
|
|
8815
8822
|
tag: string;
|
|
8816
|
-
density: Density;
|
|
8817
8823
|
divider: string;
|
|
8824
|
+
density: Density;
|
|
8818
8825
|
} & {
|
|
8819
8826
|
color?: string | undefined;
|
|
8820
8827
|
class?: any;
|
|
@@ -8827,9 +8834,9 @@ declare const VBreadcrumbs: {
|
|
|
8827
8834
|
style: vue.StyleValue;
|
|
8828
8835
|
disabled: boolean;
|
|
8829
8836
|
tag: string;
|
|
8837
|
+
divider: string;
|
|
8830
8838
|
rounded: string | number | boolean;
|
|
8831
8839
|
density: Density;
|
|
8832
|
-
divider: string;
|
|
8833
8840
|
}, {}, string, vue.SlotsType<Partial<{
|
|
8834
8841
|
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8835
8842
|
[key: string]: any;
|
|
@@ -9215,6 +9222,7 @@ declare const VBreadcrumbsDivider: {
|
|
|
9215
9222
|
ref_for?: boolean | undefined;
|
|
9216
9223
|
ref_key?: string | undefined;
|
|
9217
9224
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
9225
|
+
divider?: string | number | undefined;
|
|
9218
9226
|
'v-slots'?: {
|
|
9219
9227
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
9220
9228
|
} | undefined;
|
|
@@ -9256,7 +9264,6 @@ declare const VBreadcrumbsDivider: {
|
|
|
9256
9264
|
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
9257
9265
|
[key: string]: any;
|
|
9258
9266
|
}>) => void)[] | undefined;
|
|
9259
|
-
divider?: string | number | undefined;
|
|
9260
9267
|
};
|
|
9261
9268
|
$attrs: {
|
|
9262
9269
|
[x: string]: unknown;
|
|
@@ -19660,9 +19667,9 @@ declare const VCounter: {
|
|
|
19660
19667
|
max?: string | number | undefined;
|
|
19661
19668
|
key?: string | number | symbol | undefined;
|
|
19662
19669
|
class?: any;
|
|
19663
|
-
$children?: vue.VNodeChild | {
|
|
19670
|
+
$children?: vue.VNodeChild | ((arg: VCounterSlot) => vue.VNodeChild) | {
|
|
19664
19671
|
default?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
19665
|
-
}
|
|
19672
|
+
};
|
|
19666
19673
|
ref?: vue.VNodeRef | undefined;
|
|
19667
19674
|
ref_for?: boolean | undefined;
|
|
19668
19675
|
ref_key?: string | undefined;
|
|
@@ -19737,9 +19744,9 @@ declare const VCounter: {
|
|
|
19737
19744
|
max?: string | number | undefined;
|
|
19738
19745
|
class?: any;
|
|
19739
19746
|
} & {
|
|
19740
|
-
$children?: vue.VNodeChild | {
|
|
19747
|
+
$children?: vue.VNodeChild | ((arg: VCounterSlot) => vue.VNodeChild) | {
|
|
19741
19748
|
default?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
19742
|
-
}
|
|
19749
|
+
};
|
|
19743
19750
|
'v-slots'?: {
|
|
19744
19751
|
default?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
19745
19752
|
} | undefined;
|
|
@@ -19791,9 +19798,9 @@ declare const VCounter: {
|
|
|
19791
19798
|
max?: string | number | undefined;
|
|
19792
19799
|
class?: any;
|
|
19793
19800
|
} & {
|
|
19794
|
-
$children?: vue.VNodeChild | {
|
|
19801
|
+
$children?: vue.VNodeChild | ((arg: VCounterSlot) => vue.VNodeChild) | {
|
|
19795
19802
|
default?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
19796
|
-
}
|
|
19803
|
+
};
|
|
19797
19804
|
'v-slots'?: {
|
|
19798
19805
|
default?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
19799
19806
|
} | undefined;
|
|
@@ -19816,9 +19823,9 @@ declare const VCounter: {
|
|
|
19816
19823
|
max?: string | number | undefined;
|
|
19817
19824
|
class?: any;
|
|
19818
19825
|
} & {
|
|
19819
|
-
$children?: vue.VNodeChild | {
|
|
19826
|
+
$children?: vue.VNodeChild | ((arg: VCounterSlot) => vue.VNodeChild) | {
|
|
19820
19827
|
default?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
19821
|
-
}
|
|
19828
|
+
};
|
|
19822
19829
|
'v-slots'?: {
|
|
19823
19830
|
default?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
19824
19831
|
} | undefined;
|
|
@@ -59930,7 +59937,7 @@ declare const createVuetify: {
|
|
|
59930
59937
|
n: (value: number) => string;
|
|
59931
59938
|
provide: (props: LocaleOptions) => LocaleInstance;
|
|
59932
59939
|
};
|
|
59933
|
-
date:
|
|
59940
|
+
date: Record<string, any>;
|
|
59934
59941
|
};
|
|
59935
59942
|
version: string;
|
|
59936
59943
|
};
|
|
@@ -60005,13 +60012,13 @@ declare module '@vue/runtime-core' {
|
|
|
60005
60012
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
60006
60013
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
60007
60014
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
60008
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
60009
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
60010
60015
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
60011
60016
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
60012
60017
|
VChip: typeof import('vuetify/components')['VChip']
|
|
60013
60018
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
60014
60019
|
VCode: typeof import('vuetify/components')['VCode']
|
|
60020
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
60021
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
60015
60022
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
60016
60023
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
60017
60024
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
@@ -60062,13 +60069,12 @@ declare module '@vue/runtime-core' {
|
|
|
60062
60069
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
60063
60070
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
60064
60071
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
60065
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
60066
60072
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
60073
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
60067
60074
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
60068
60075
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
60069
60076
|
VTab: typeof import('vuetify/components')['VTab']
|
|
60070
60077
|
VTable: typeof import('vuetify/components')['VTable']
|
|
60071
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
60072
60078
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
60073
60079
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
60074
60080
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
@@ -60080,11 +60086,11 @@ declare module '@vue/runtime-core' {
|
|
|
60080
60086
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
60081
60087
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
60082
60088
|
VForm: typeof import('vuetify/components')['VForm']
|
|
60089
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
60083
60090
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
60084
60091
|
VCol: typeof import('vuetify/components')['VCol']
|
|
60085
60092
|
VRow: typeof import('vuetify/components')['VRow']
|
|
60086
60093
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
60087
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
60088
60094
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
60089
60095
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
60090
60096
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
@@ -60113,6 +60119,7 @@ declare module '@vue/runtime-core' {
|
|
|
60113
60119
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
60114
60120
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
60115
60121
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
60122
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
60116
60123
|
VBottomSheet: typeof import('vuetify/labs/components')['VBottomSheet']
|
|
60117
60124
|
VDataTable: typeof import('vuetify/labs/components')['VDataTable']
|
|
60118
60125
|
VDataTableFooter: typeof import('vuetify/labs/components')['VDataTableFooter']
|
|
@@ -60120,7 +60127,15 @@ declare module '@vue/runtime-core' {
|
|
|
60120
60127
|
VDataTableRow: typeof import('vuetify/labs/components')['VDataTableRow']
|
|
60121
60128
|
VDataTableVirtual: typeof import('vuetify/labs/components')['VDataTableVirtual']
|
|
60122
60129
|
VDataTableServer: typeof import('vuetify/labs/components')['VDataTableServer']
|
|
60130
|
+
VDateCard: typeof import('vuetify/labs/components')['VDateCard']
|
|
60131
|
+
VDatePicker: typeof import('vuetify/labs/components')['VDatePicker']
|
|
60132
|
+
VDatePickerControls: typeof import('vuetify/labs/components')['VDatePickerControls']
|
|
60133
|
+
VDatePickerHeader: typeof import('vuetify/labs/components')['VDatePickerHeader']
|
|
60134
|
+
VDatePickerMonth: typeof import('vuetify/labs/components')['VDatePickerMonth']
|
|
60135
|
+
VDatePickerYears: typeof import('vuetify/labs/components')['VDatePickerYears']
|
|
60123
60136
|
VInfiniteScroll: typeof import('vuetify/labs/components')['VInfiniteScroll']
|
|
60137
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
60138
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
60124
60139
|
VSkeletonLoader: typeof import('vuetify/labs/components')['VSkeletonLoader']
|
|
60125
60140
|
VDataIterator: typeof import('vuetify/labs/components')['VDataIterator']
|
|
60126
60141
|
}
|