vuetify 3.10.9 → 3.10.11
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 +3178 -3218
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +154 -154
- package/dist/json/tags.json +0 -10
- package/dist/json/web-types.json +5596 -5696
- package/dist/vuetify-labs.cjs +204 -216
- package/dist/vuetify-labs.css +4081 -4083
- package/dist/vuetify-labs.d.ts +470 -658
- package/dist/vuetify-labs.esm.js +204 -216
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +204 -216
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +136 -99
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2706 -2696
- package/dist/vuetify.d.ts +328 -456
- package/dist/vuetify.esm.js +136 -99
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +136 -99
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +333 -329
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +63 -94
- package/lib/components/VAvatar/VAvatar.css +1 -1
- package/lib/components/VAvatar/_variables.scss +1 -1
- package/lib/components/VBtnToggle/VBtnToggle.sass +1 -1
- package/lib/components/VCard/VCard.js +8 -1
- package/lib/components/VCard/VCard.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +63 -94
- package/lib/components/VDatePicker/VDatePicker.js +7 -16
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VField/VField.css +6 -1
- package/lib/components/VField/VField.d.ts +8 -13
- package/lib/components/VField/VField.js +1 -1
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VField/VField.sass +5 -0
- package/lib/components/VFileInput/VFileInput.d.ts +0 -13
- package/lib/components/VNumberInput/VNumberInput.d.ts +63 -89
- package/lib/components/VSelect/VSelect.d.ts +63 -94
- package/lib/components/VTabs/VTab.css +3 -2
- package/lib/components/VTabs/VTab.sass +2 -1
- package/lib/components/VTextField/VTextField.d.ts +18 -31
- package/lib/components/VTextField/VTextField.js +17 -7
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.d.ts +0 -13
- package/lib/components/VTextarea/VTextarea.js +17 -7
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/components/VWindow/VWindow.js +2 -2
- package/lib/components/VWindow/VWindow.js.map +1 -1
- package/lib/composables/calendar.d.ts +6 -0
- package/lib/composables/calendar.js +37 -2
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/delay.js +3 -2
- package/lib/composables/delay.js.map +1 -1
- package/lib/composables/hotkey/hotkey.js +42 -53
- package/lib/composables/hotkey/hotkey.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +50 -50
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +0 -13
- package/lib/labs/VDateInput/VDateInput.d.ts +63 -94
- package/lib/labs/VDateInput/VDateInput.js +8 -12
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VHotkey/VHotkey.css +4 -16
- package/lib/labs/VHotkey/VHotkey.d.ts +29 -29
- package/lib/labs/VHotkey/VHotkey.js +62 -106
- package/lib/labs/VHotkey/VHotkey.js.map +1 -1
- package/lib/labs/VHotkey/VHotkey.scss +8 -25
- package/lib/labs/VMaskInput/VMaskInput.d.ts +63 -94
- package/lib/styles/main.css +4 -0
- package/lib/styles/settings/_variables.scss +1 -0
- package/lib/util/box.js +3 -8
- package/lib/util/box.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hotkey.js","names":["splitKeyCombination","splitKeySequence","
|
|
1
|
+
{"version":3,"file":"hotkey.js","names":["splitKeyCombination","splitKeySequence","onScopeDispose","toValue","watch","IN_BROWSER","useHotkey","keys","callback","options","arguments","length","undefined","event","inputs","preventDefault","sequenceTimeout","isMac","navigator","userAgent","includes","timeout","keyGroups","isSequence","groupIndex","isInputFocused","activeElement","document","tagName","isContentEditable","contentEditable","resetSequence","clearTimeout","handler","e","group","matchesKeyGroup","window","setTimeout","cleanup","removeEventListener","newKeys","groups","toLowerCase","addEventListener","immediate","newEvent","oldEvent","modifiers","actualKey","parseKeyGroup","expectCtrl","ctrl","cmd","meta","expectMeta","ctrlKey","metaKey","shiftKey","shift","altKey","alt","key","MODIFIERS","parts","Object","fromEntries","map","m","part"],"sources":["../../../src/composables/hotkey/hotkey.ts"],"sourcesContent":["// Composables\nimport { splitKeyCombination, splitKeySequence } from '@/composables/hotkey/hotkey-parsing'\n\n// Utilities\nimport { onScopeDispose, toValue, watch } from 'vue'\nimport { IN_BROWSER } from '@/util'\n\n// Types\nimport type { MaybeRef } from '@/util'\n\ninterface HotkeyOptions {\n event?: MaybeRef<'keydown' | 'keyup'>\n inputs?: MaybeRef<boolean>\n preventDefault?: MaybeRef<boolean>\n sequenceTimeout?: MaybeRef<number>\n}\n\nexport function useHotkey (\n keys: MaybeRef<string | undefined>,\n callback: (e: KeyboardEvent) => void,\n options: HotkeyOptions = {}\n) {\n if (!IN_BROWSER) return function () {}\n\n const {\n event = 'keydown',\n inputs = false,\n preventDefault = true,\n sequenceTimeout = 1000,\n } = options\n\n const isMac = navigator?.userAgent?.includes('Macintosh') ?? false\n let timeout = 0\n let keyGroups: string[]\n let isSequence = false\n let groupIndex = 0\n\n function isInputFocused () {\n if (toValue(inputs)) return false\n\n const activeElement = document.activeElement as HTMLElement\n\n return activeElement && (\n activeElement.tagName === 'INPUT' ||\n activeElement.tagName === 'TEXTAREA' ||\n activeElement.isContentEditable ||\n activeElement.contentEditable === 'true'\n )\n }\n\n function resetSequence () {\n groupIndex = 0\n clearTimeout(timeout)\n }\n\n function handler (e: KeyboardEvent) {\n const group = keyGroups[groupIndex]\n\n if (!group || isInputFocused()) return\n\n if (!matchesKeyGroup(e, group, isMac)) {\n if (isSequence) resetSequence()\n return\n }\n\n if (toValue(preventDefault)) e.preventDefault()\n\n if (!isSequence) {\n callback(e)\n return\n }\n\n clearTimeout(timeout)\n groupIndex++\n\n if (groupIndex === keyGroups.length) {\n callback(e)\n resetSequence()\n return\n }\n\n timeout = window.setTimeout(resetSequence, toValue(sequenceTimeout))\n }\n\n function cleanup () {\n window.removeEventListener(toValue(event), handler)\n clearTimeout(timeout)\n }\n\n watch(() => toValue(keys), newKeys => {\n cleanup()\n\n if (newKeys) {\n const groups = splitKeySequence(newKeys.toLowerCase())\n isSequence = groups.length > 1\n keyGroups = groups\n resetSequence()\n window.addEventListener(toValue(event), handler)\n }\n }, { immediate: true })\n\n // Watch for changes in the event type to re-register the listener\n watch(() => toValue(event), (newEvent, oldEvent) => {\n if (oldEvent && keyGroups && keyGroups.length > 0) {\n window.removeEventListener(oldEvent, handler)\n window.addEventListener(newEvent, handler)\n }\n })\n\n onScopeDispose(cleanup, true)\n\n return cleanup\n}\n\nfunction matchesKeyGroup (e: KeyboardEvent, group: string, isMac: boolean) {\n const { modifiers, actualKey } = parseKeyGroup(group)\n\n const expectCtrl = modifiers.ctrl || (!isMac && (modifiers.cmd || modifiers.meta))\n const expectMeta = isMac && (modifiers.cmd || modifiers.meta)\n\n return (\n e.ctrlKey === expectCtrl &&\n e.metaKey === expectMeta &&\n e.shiftKey === modifiers.shift &&\n e.altKey === modifiers.alt &&\n e.key.toLowerCase() === actualKey?.toLowerCase()\n )\n}\n\nfunction parseKeyGroup (group: string) {\n const MODIFIERS = ['ctrl', 'shift', 'alt', 'meta', 'cmd']\n\n // Use the shared combination splitting logic\n const parts = splitKeyCombination(group.toLowerCase())\n\n // If the combination is invalid, return empty result\n if (parts.length === 0) {\n return { modifiers: Object.fromEntries(MODIFIERS.map(m => [m, false])), actualKey: undefined }\n }\n\n const modifiers = Object.fromEntries(MODIFIERS.map(m => [m, false])) as Record<string, boolean>\n let actualKey: string | undefined\n\n for (const part of parts) {\n if (MODIFIERS.includes(part)) {\n modifiers[part] = true\n } else {\n actualKey = part\n }\n }\n\n return { modifiers, actualKey }\n}\n"],"mappings":"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","ignoreList":[]}
|
package/lib/entry-bundler.js
CHANGED
|
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
|
16
16
|
...options
|
|
17
17
|
});
|
|
18
18
|
};
|
|
19
|
-
export const version = "3.10.
|
|
19
|
+
export const version = "3.10.11";
|
|
20
20
|
createVuetify.version = version;
|
|
21
21
|
export { blueprints, components, directives };
|
|
22
22
|
export * from "./composables/index.js";
|
package/lib/entry-bundler.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entry-bundler.js","names":["blueprints","components","directives","createVuetify","_createVuetify","options","arguments","length","undefined","version"],"sources":["../src/entry-bundler.ts"],"sourcesContent":["/* eslint-disable local-rules/sort-imports */\n\n// Styles\nimport './styles/main.sass'\n\n// Components\nimport * as blueprints from './blueprints'\nimport * as components from './components'\nimport * as directives from './directives'\nimport { createVuetify as _createVuetify } from './framework'\n\n// Types\nimport type { VuetifyOptions } from './framework'\n\nexport const createVuetify = (options: VuetifyOptions = {}) => {\n return _createVuetify({ components, directives, ...options })\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\nexport {\n blueprints,\n components,\n directives,\n}\nexport * from './composables'\n"],"mappings":"AAAA;;AAEA;AACA;;AAEA;AAAA,OACO,KAAKA,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,SACbC,aAAa,IAAIC,cAAc,0BAExC;AAGA,OAAO,MAAMD,aAAa,GAAG,SAAAA,CAAA,EAAkC;EAAA,IAAjCE,OAAuB,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EACxD,OAAOF,cAAc,CAAC;IAAEH,UAAU;IAAEC,UAAU;IAAE,GAAGG;EAAQ,CAAC,CAAC;AAC/D,CAAC;AAED,OAAO,MAAMI,OAAO,
|
|
1
|
+
{"version":3,"file":"entry-bundler.js","names":["blueprints","components","directives","createVuetify","_createVuetify","options","arguments","length","undefined","version"],"sources":["../src/entry-bundler.ts"],"sourcesContent":["/* eslint-disable local-rules/sort-imports */\n\n// Styles\nimport './styles/main.sass'\n\n// Components\nimport * as blueprints from './blueprints'\nimport * as components from './components'\nimport * as directives from './directives'\nimport { createVuetify as _createVuetify } from './framework'\n\n// Types\nimport type { VuetifyOptions } from './framework'\n\nexport const createVuetify = (options: VuetifyOptions = {}) => {\n return _createVuetify({ components, directives, ...options })\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\nexport {\n blueprints,\n components,\n directives,\n}\nexport * from './composables'\n"],"mappings":"AAAA;;AAEA;AACA;;AAEA;AAAA,OACO,KAAKA,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,SACbC,aAAa,IAAIC,cAAc,0BAExC;AAGA,OAAO,MAAMD,aAAa,GAAG,SAAAA,CAAA,EAAkC;EAAA,IAAjCE,OAAuB,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EACxD,OAAOF,cAAc,CAAC;IAAEH,UAAU;IAAEC,UAAU;IAAE,GAAGG;EAAQ,CAAC,CAAC;AAC/D,CAAC;AAED,OAAO,MAAMI,OAAO,YAAsB;AAC1CN,aAAa,CAACM,OAAO,GAAGA,OAAO;AAE/B,SACET,UAAU,EACVC,UAAU,EACVC,UAAU;AACX","ignoreList":[]}
|
package/lib/framework.d.ts
CHANGED
|
@@ -2722,41 +2722,42 @@ declare module 'vue' {
|
|
|
2722
2722
|
$children?: VNodeChild
|
|
2723
2723
|
}
|
|
2724
2724
|
export interface GlobalComponents {
|
|
2725
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
2726
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
2727
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
2725
2728
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
2726
2729
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
2727
2730
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
2728
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
2729
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
2730
2731
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
2731
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
2732
2732
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
2733
|
-
|
|
2733
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
2734
2734
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
2735
2735
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
2736
2736
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
2737
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
2738
2737
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
2739
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
2740
2738
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
2741
2739
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
2742
2740
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
2743
|
-
|
|
2741
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
2742
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
2744
2743
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
2745
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
2746
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
2747
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
2748
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
2749
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
2750
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
2751
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
2752
2744
|
VCard: typeof import('vuetify/components')['VCard']
|
|
2753
2745
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
2754
2746
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
2755
2747
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
2756
2748
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
2757
2749
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
2758
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
2759
2750
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
2751
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
2752
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
2753
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
2754
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
2755
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
2756
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
2757
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
2758
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
2759
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
2760
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
2760
2761
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
2761
2762
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
2762
2763
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -2764,38 +2765,35 @@ declare module 'vue' {
|
|
|
2764
2765
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
2765
2766
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
2766
2767
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
2767
|
-
|
|
2768
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
2768
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
2769
2769
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
2770
2770
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
2771
2771
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
2772
2772
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
2773
2773
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
2774
2774
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
2775
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
2776
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
2777
|
+
VFab: typeof import('vuetify/components')['VFab']
|
|
2775
2778
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
2776
2779
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
2777
2780
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
2778
2781
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
2779
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
2780
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
2781
|
-
VFab: typeof import('vuetify/components')['VFab']
|
|
2782
2782
|
VField: typeof import('vuetify/components')['VField']
|
|
2783
2783
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
2784
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
2785
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
2786
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
2784
2787
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
2785
2788
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
2786
2789
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
2787
2790
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
2788
2791
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
2789
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
2790
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
2791
2792
|
VImg: typeof import('vuetify/components')['VImg']
|
|
2792
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
2793
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
2794
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
2795
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
2796
2793
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
2797
2794
|
VItem: typeof import('vuetify/components')['VItem']
|
|
2798
|
-
|
|
2795
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
2796
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
2799
2797
|
VList: typeof import('vuetify/components')['VList']
|
|
2800
2798
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
2801
2799
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -2805,46 +2803,48 @@ declare module 'vue' {
|
|
|
2805
2803
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
2806
2804
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
2807
2805
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
2808
|
-
|
|
2806
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
2809
2807
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
2810
2808
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
2814
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
2809
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
2810
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
2815
2811
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
2812
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
2816
2813
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
2814
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
|
2815
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
2816
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
2817
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
2817
2818
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
2818
2819
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
2819
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
2820
2820
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
2821
2821
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
2822
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
2823
2822
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
2823
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
2824
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
2824
2825
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
2825
2826
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
2827
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
2828
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
2826
2829
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
2827
2830
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
2828
2831
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
2829
2832
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
2830
2833
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
2831
2834
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
2832
|
-
|
|
2833
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
2834
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
2835
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
2835
2836
|
VTab: typeof import('vuetify/components')['VTab']
|
|
2836
2837
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
2837
2838
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
2838
2839
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
2839
|
-
|
|
2840
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
2840
2841
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
2841
2842
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
2842
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
2843
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
2844
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
2845
2843
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
2846
2844
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
2847
2845
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
2846
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
2847
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
2848
2848
|
VTimePicker: typeof import('vuetify/components')['VTimePicker']
|
|
2849
2849
|
VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
|
|
2850
2850
|
VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
|
|
@@ -2857,27 +2857,27 @@ declare module 'vue' {
|
|
|
2857
2857
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
|
2858
2858
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
2859
2859
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
2860
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
2860
2861
|
VForm: typeof import('vuetify/components')['VForm']
|
|
2861
2862
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
2862
2863
|
VCol: typeof import('vuetify/components')['VCol']
|
|
2863
2864
|
VRow: typeof import('vuetify/components')['VRow']
|
|
2864
2865
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
2865
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
2866
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
2867
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
2868
2866
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
2869
2867
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
2868
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
2870
2869
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
2871
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
2872
2870
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
2871
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
2873
2872
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
2874
2873
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
2874
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
2875
2875
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
2876
2876
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
|
2877
2877
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
2878
2878
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
2879
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
2880
2879
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
2880
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
2881
2881
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
2882
2882
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
2883
2883
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -2894,19 +2894,19 @@ declare module 'vue' {
|
|
|
2894
2894
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
2895
2895
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
2896
2896
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
2897
|
+
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
2897
2898
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
|
2898
2899
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
|
2899
2900
|
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
|
2900
2901
|
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
|
2901
|
-
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
2902
2902
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
2903
2903
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
2904
|
-
VPie: typeof import('vuetify/labs/components')['VPie']
|
|
2905
|
-
VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
|
|
2906
|
-
VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
|
|
2907
2904
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
2908
2905
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
2909
2906
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
2907
|
+
VPie: typeof import('vuetify/labs/components')['VPie']
|
|
2908
|
+
VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
|
|
2909
|
+
VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
|
|
2910
2910
|
VVideo: typeof import('vuetify/labs/components')['VVideo']
|
|
2911
2911
|
VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
|
|
2912
2912
|
VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
|
package/lib/framework.js
CHANGED
package/lib/framework.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"framework.js","names":["createDate","DateAdapterSymbol","DateOptionsSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createGoTo","GoToSymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","effectScope","nextTick","reactive","defineComponent","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","scope","run","defaults","display","ssr","theme","icons","locale","date","goTo","install","app","key","directive","component","name","aliasName","appScope","onUnmount","stop","provide","instance","$nuxt","hook","update","mount","vm","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","unmount","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol, DateOptionsSymbol } from '@/composables/date/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createGoTo, GoToSymbol } from '@/composables/goto'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { effectScope, nextTick, reactive } from 'vue'\nimport { defineComponent, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { GoToOptions } from '@/composables/goto'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\n// Exports\nexport * from './composables'\nexport * from './types'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n goTo?: GoToOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const scope = effectScope()\n return scope.run(() => {\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n const goTo = createGoTo(options.goTo, locale)\n\n function install (app: App) {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n const appScope = effectScope()\n appScope.run(() => {\n theme.install(app)\n })\n app.onUnmount(() => appScope.stop())\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateOptionsSymbol, date.options)\n app.provide(DateAdapterSymbol, date.instance)\n app.provide(GoToSymbol, goTo)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n function unmount () {\n scope.stop()\n }\n\n return {\n install,\n unmount,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n goTo,\n }\n })!\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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
|
|
1
|
+
{"version":3,"file":"framework.js","names":["createDate","DateAdapterSymbol","DateOptionsSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createGoTo","GoToSymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","effectScope","nextTick","reactive","defineComponent","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","scope","run","defaults","display","ssr","theme","icons","locale","date","goTo","install","app","key","directive","component","name","aliasName","appScope","onUnmount","stop","provide","instance","$nuxt","hook","update","mount","vm","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","unmount","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol, DateOptionsSymbol } from '@/composables/date/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createGoTo, GoToSymbol } from '@/composables/goto'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { effectScope, nextTick, reactive } from 'vue'\nimport { defineComponent, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { GoToOptions } from '@/composables/goto'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\n// Exports\nexport * from './composables'\nexport * from './types'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n goTo?: GoToOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const scope = effectScope()\n return scope.run(() => {\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n const goTo = createGoTo(options.goTo, locale)\n\n function install (app: App) {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n const appScope = effectScope()\n appScope.run(() => {\n theme.install(app)\n })\n app.onUnmount(() => appScope.stop())\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateOptionsSymbol, date.options)\n app.provide(DateAdapterSymbol, date.instance)\n app.provide(GoToSymbol, goTo)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n function unmount () {\n scope.stop()\n }\n\n return {\n install,\n unmount,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n goTo,\n }\n })!\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -55,7 +55,6 @@ export declare const makeVColorInputProps: <Defaults extends {
|
|
|
55
55
|
active?: unknown;
|
|
56
56
|
centerAffix?: unknown;
|
|
57
57
|
baseColor?: unknown;
|
|
58
|
-
details?: unknown;
|
|
59
58
|
dirty?: unknown;
|
|
60
59
|
glow?: unknown;
|
|
61
60
|
error?: unknown;
|
|
@@ -360,10 +359,6 @@ export declare const makeVColorInputProps: <Defaults extends {
|
|
|
360
359
|
type: PropType<unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"]>;
|
|
361
360
|
default: unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"];
|
|
362
361
|
};
|
|
363
|
-
details: unknown extends Defaults["details"] ? BooleanConstructor : {
|
|
364
|
-
type: PropType<unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"]>;
|
|
365
|
-
default: unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"];
|
|
366
|
-
};
|
|
367
362
|
dirty: unknown extends Defaults["dirty"] ? BooleanConstructor : {
|
|
368
363
|
type: PropType<unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"]>;
|
|
369
364
|
default: unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"];
|
|
@@ -774,7 +769,6 @@ export declare const VColorInput: {
|
|
|
774
769
|
clearable: boolean;
|
|
775
770
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
776
771
|
active: boolean;
|
|
777
|
-
details: boolean;
|
|
778
772
|
dirty: boolean;
|
|
779
773
|
glow: boolean;
|
|
780
774
|
error: boolean;
|
|
@@ -952,7 +946,6 @@ export declare const VColorInput: {
|
|
|
952
946
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
953
947
|
active: boolean;
|
|
954
948
|
centerAffix: boolean;
|
|
955
|
-
details: boolean;
|
|
956
949
|
dirty: boolean;
|
|
957
950
|
glow: boolean;
|
|
958
951
|
error: boolean;
|
|
@@ -1055,7 +1048,6 @@ export declare const VColorInput: {
|
|
|
1055
1048
|
clearable: boolean;
|
|
1056
1049
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1057
1050
|
active: boolean;
|
|
1058
|
-
details: boolean;
|
|
1059
1051
|
dirty: boolean;
|
|
1060
1052
|
glow: boolean;
|
|
1061
1053
|
error: boolean;
|
|
@@ -1231,7 +1223,6 @@ export declare const VColorInput: {
|
|
|
1231
1223
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1232
1224
|
active: boolean;
|
|
1233
1225
|
centerAffix: boolean;
|
|
1234
|
-
details: boolean;
|
|
1235
1226
|
dirty: boolean;
|
|
1236
1227
|
glow: boolean;
|
|
1237
1228
|
error: boolean;
|
|
@@ -1289,7 +1280,6 @@ export declare const VColorInput: {
|
|
|
1289
1280
|
clearable: boolean;
|
|
1290
1281
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1291
1282
|
active: boolean;
|
|
1292
|
-
details: boolean;
|
|
1293
1283
|
dirty: boolean;
|
|
1294
1284
|
glow: boolean;
|
|
1295
1285
|
error: boolean;
|
|
@@ -1467,7 +1457,6 @@ export declare const VColorInput: {
|
|
|
1467
1457
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1468
1458
|
active: boolean;
|
|
1469
1459
|
centerAffix: boolean;
|
|
1470
|
-
details: boolean;
|
|
1471
1460
|
dirty: boolean;
|
|
1472
1461
|
glow: boolean;
|
|
1473
1462
|
error: boolean;
|
|
@@ -1631,7 +1620,6 @@ export declare const VColorInput: {
|
|
|
1631
1620
|
default: undefined;
|
|
1632
1621
|
};
|
|
1633
1622
|
baseColor: StringConstructor;
|
|
1634
|
-
details: BooleanConstructor;
|
|
1635
1623
|
dirty: BooleanConstructor;
|
|
1636
1624
|
glow: BooleanConstructor;
|
|
1637
1625
|
error: BooleanConstructor;
|
|
@@ -1835,7 +1823,6 @@ export declare const VColorInput: {
|
|
|
1835
1823
|
default: undefined;
|
|
1836
1824
|
};
|
|
1837
1825
|
baseColor: StringConstructor;
|
|
1838
|
-
details: BooleanConstructor;
|
|
1839
1826
|
dirty: BooleanConstructor;
|
|
1840
1827
|
glow: BooleanConstructor;
|
|
1841
1828
|
error: BooleanConstructor;
|