@vuetify/nightly 3.8.8-master.2025-06-10 → 3.8.9-dev.2025-06-12
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/CHANGELOG.md +44 -19
- package/dist/json/attributes.json +2771 -2411
- package/dist/json/importMap-labs.json +32 -28
- package/dist/json/importMap.json +128 -128
- package/dist/json/tags.json +96 -1
- package/dist/json/web-types.json +5703 -4391
- package/dist/vuetify-labs.cjs +635 -146
- package/dist/vuetify-labs.css +4248 -4214
- package/dist/vuetify-labs.d.ts +9097 -1977
- package/dist/vuetify-labs.esm.js +636 -147
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +635 -146
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +383 -135
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5999 -5965
- package/dist/vuetify.d.ts +1586 -1085
- package/dist/vuetify.esm.js +384 -136
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +383 -135
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1219 -1203
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +15 -10
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VAppBar/VAppBarNavIcon.d.ts +20 -10
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +154 -103
- package/lib/components/VAutocomplete/VAutocomplete.js +21 -3
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/components/VBtn/VBtn.d.ts +20 -10
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCard/VCard.d.ts +20 -10
- package/lib/components/VCheckbox/VCheckbox.d.ts +23 -13
- package/lib/components/VCheckbox/VCheckboxBtn.d.ts +20 -10
- package/lib/components/VChip/VChip.d.ts +20 -10
- package/lib/components/VChipGroup/VChipGroup.d.ts +10 -0
- package/lib/components/VCombobox/VCombobox.d.ts +154 -103
- package/lib/components/VCombobox/VCombobox.js +22 -3
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +60 -0
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +13 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +4 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +42 -0
- package/lib/components/VDatePicker/VDatePicker.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanels.d.ts +20 -10
- package/lib/components/VFab/VFab.d.ts +20 -10
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInfiniteScroll/VInfiniteScroll.d.ts +9 -3
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +29 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VList/VList.d.ts +13 -0
- package/lib/components/VList/VList.js +4 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VList/VListChildren.js.map +1 -1
- package/lib/components/VList/VListItem.d.ts +23 -10
- package/lib/components/VList/VListItem.js +7 -3
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VList/list.d.ts +9 -2
- package/lib/components/VList/list.js +7 -0
- package/lib/components/VList/list.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +103 -89
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +2 -1
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadio/VRadio.d.ts +20 -10
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +23 -13
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +171 -107
- package/lib/components/VSelect/VSelect.js +21 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.d.ts +20 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.d.ts +28 -14
- package/lib/components/VSlideGroup/VSlideGroup.d.ts +10 -0
- package/lib/components/VSlideGroup/VSlideGroup.js +2 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSlider/VSliderThumb.d.ts +20 -10
- package/lib/components/VStepper/VStepperItem.d.ts +28 -14
- package/lib/components/VSwitch/VSwitch.d.ts +23 -13
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VTabs/VTab.d.ts +56 -28
- package/lib/components/VTabs/VTabs.d.ts +10 -0
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/calendar.d.ts +6 -0
- package/lib/composables/calendar.js +2 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +3 -3
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +4 -4
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +3 -3
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/mask.d.ts +38 -0
- package/lib/composables/mask.js +183 -0
- package/lib/composables/mask.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/directives/ripple/index.d.ts +2 -1
- package/lib/directives/ripple/index.js +12 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/entry-bundler.d.ts +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +72 -56
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +10 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +97 -87
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- package/lib/labs/VFileUpload/VFileUploadItem.d.ts +20 -10
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/VMaskInput/VMaskInput.d.ts +6993 -0
- package/lib/labs/VMaskInput/VMaskInput.js +67 -0
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -0
- package/lib/labs/VMaskInput/index.d.ts +1 -0
- package/lib/labs/VMaskInput/index.js +2 -0
- package/lib/labs/VMaskInput/index.js.map +1 -0
- package/lib/labs/VStepperVertical/VStepperVertical.d.ts +20 -10
- package/lib/labs/VStepperVertical/VStepperVerticalItem.d.ts +20 -10
- package/lib/labs/VTreeview/VTreeview.d.ts +13 -0
- package/lib/labs/VTreeview/VTreeviewItem.d.ts +20 -10
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/labs/entry-bundler.d.ts +3 -3
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +3 -1
@@ -0,0 +1,67 @@
|
|
1
|
+
import { mergeProps as _mergeProps, createVNode as _createVNode } from "vue";
|
2
|
+
// Components
|
3
|
+
import { makeVTextFieldProps, VTextField } from "../../components/VTextField/VTextField.js"; // Composables
|
4
|
+
import { forwardRefs } from "../../composables/forwardRefs.js";
|
5
|
+
import { makeMaskProps, useMask } from "../../composables/mask.js";
|
6
|
+
import { useProxiedModel } from "../../composables/proxiedModel.js"; // Utilities
|
7
|
+
import { computed, onBeforeMount, ref } from 'vue';
|
8
|
+
import { genericComponent, propsFactory, useRender } from "../../util/index.js"; // Types
|
9
|
+
export const makeVMaskInputProps = propsFactory({
|
10
|
+
...makeVTextFieldProps(),
|
11
|
+
...makeMaskProps()
|
12
|
+
}, 'VMaskInput');
|
13
|
+
export const VMaskInput = genericComponent()({
|
14
|
+
name: 'VMaskInput',
|
15
|
+
props: makeVMaskInputProps(),
|
16
|
+
emits: {
|
17
|
+
'update:modelValue': val => true
|
18
|
+
},
|
19
|
+
setup(props, _ref) {
|
20
|
+
let {
|
21
|
+
slots,
|
22
|
+
emit
|
23
|
+
} = _ref;
|
24
|
+
const vTextFieldRef = ref();
|
25
|
+
const {
|
26
|
+
maskText,
|
27
|
+
updateRange,
|
28
|
+
unmaskText
|
29
|
+
} = useMask(props, vTextFieldRef);
|
30
|
+
const returnMaskedValue = computed(() => props.mask && props.returnMaskedValue);
|
31
|
+
const model = useProxiedModel(props, 'modelValue', undefined,
|
32
|
+
// Always display masked value in input when mask is applied
|
33
|
+
val => props.mask ? maskText(unmaskText(val)) : val, val => {
|
34
|
+
if (props.mask) {
|
35
|
+
const valueBeforeChange = unmaskText(model.value);
|
36
|
+
// E.g. mask is #-# and the input value is '2-23'
|
37
|
+
// model-value should be enforced to '2-2'
|
38
|
+
const enforcedMaskedValue = maskText(unmaskText(val));
|
39
|
+
const newUnmaskedValue = unmaskText(enforcedMaskedValue);
|
40
|
+
if (newUnmaskedValue === valueBeforeChange) {
|
41
|
+
vTextFieldRef.value.value = enforcedMaskedValue;
|
42
|
+
}
|
43
|
+
val = newUnmaskedValue;
|
44
|
+
updateRange();
|
45
|
+
return returnMaskedValue.value ? maskText(val) : val;
|
46
|
+
}
|
47
|
+
return val;
|
48
|
+
});
|
49
|
+
onBeforeMount(() => {
|
50
|
+
if (props.returnMaskedValue) {
|
51
|
+
emit('update:modelValue', model.value);
|
52
|
+
}
|
53
|
+
});
|
54
|
+
useRender(() => {
|
55
|
+
const textFieldProps = VTextField.filterProps(props);
|
56
|
+
return _createVNode(VTextField, _mergeProps(textFieldProps, {
|
57
|
+
"modelValue": model.value,
|
58
|
+
"onUpdate:modelValue": $event => model.value = $event,
|
59
|
+
"ref": vTextFieldRef
|
60
|
+
}), {
|
61
|
+
...slots
|
62
|
+
});
|
63
|
+
});
|
64
|
+
return forwardRefs({}, vTextFieldRef);
|
65
|
+
}
|
66
|
+
});
|
67
|
+
//# sourceMappingURL=VMaskInput.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"VMaskInput.js","names":["makeVTextFieldProps","VTextField","forwardRefs","makeMaskProps","useMask","useProxiedModel","computed","onBeforeMount","ref","genericComponent","propsFactory","useRender","makeVMaskInputProps","VMaskInput","name","props","emits","val","setup","_ref","slots","emit","vTextFieldRef","maskText","updateRange","unmaskText","returnMaskedValue","mask","model","undefined","valueBeforeChange","value","enforcedMaskedValue","newUnmaskedValue","textFieldProps","filterProps","_createVNode","_mergeProps","$event"],"sources":["../../../src/labs/VMaskInput/VMaskInput.tsx"],"sourcesContent":["// Components\nimport { makeVTextFieldProps, VTextField } from '@/components/VTextField/VTextField'\n\n// Composables\nimport { forwardRefs } from '@/composables/forwardRefs'\nimport { makeMaskProps, useMask } from '@/composables/mask'\nimport { useProxiedModel } from '@/composables/proxiedModel'\n\n// Utilities\nimport { computed, onBeforeMount, ref } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { VTextFieldSlots } from '@/components/VTextField/VTextField'\n\nexport type VMaskInputSlots = VTextFieldSlots\n\nexport const makeVMaskInputProps = propsFactory({\n ...makeVTextFieldProps(),\n ...makeMaskProps(),\n}, 'VMaskInput')\n\nexport const VMaskInput = genericComponent<VMaskInputSlots>()({\n name: 'VMaskInput',\n\n props: makeVMaskInputProps(),\n\n emits: {\n 'update:modelValue': (val: string) => true,\n },\n\n setup (props, { slots, emit }) {\n const vTextFieldRef = ref<VTextField>()\n\n const { maskText, updateRange, unmaskText } = useMask(props, vTextFieldRef)\n const returnMaskedValue = computed(() => props.mask && props.returnMaskedValue)\n\n const model = useProxiedModel(\n props,\n 'modelValue',\n undefined,\n // Always display masked value in input when mask is applied\n val => props.mask ? maskText(unmaskText(val)) : val,\n val => {\n if (props.mask) {\n const valueBeforeChange = unmaskText(model.value)\n // E.g. mask is #-# and the input value is '2-23'\n // model-value should be enforced to '2-2'\n const enforcedMaskedValue = maskText(unmaskText(val))\n const newUnmaskedValue = unmaskText(enforcedMaskedValue)\n\n if (newUnmaskedValue === valueBeforeChange) {\n vTextFieldRef.value!.value = enforcedMaskedValue\n }\n val = newUnmaskedValue\n updateRange()\n return returnMaskedValue.value ? maskText(val) : val\n }\n return val\n },\n )\n\n onBeforeMount(() => {\n if (props.returnMaskedValue) {\n emit('update:modelValue', model.value)\n }\n })\n\n useRender(() => {\n const textFieldProps = VTextField.filterProps(props)\n\n return (\n <VTextField\n { ...textFieldProps }\n v-model={ model.value }\n ref={ vTextFieldRef }\n >\n {{ ...slots }}\n </VTextField>\n )\n })\n\n return forwardRefs({}, vTextFieldRef)\n },\n})\n\nexport type VMaskInput = InstanceType<typeof VMaskInput>\n"],"mappings":";AAAA;AAAA,SACSA,mBAAmB,EAAEC,UAAU,qDAExC;AAAA,SACSC,WAAW;AAAA,SACXC,aAAa,EAAEC,OAAO;AAAA,SACtBC,eAAe,6CAExB;AACA,SAASC,QAAQ,EAAEC,aAAa,EAAEC,GAAG,QAAQ,KAAK;AAAA,SACzCC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS,+BAElD;AAKA,OAAO,MAAMC,mBAAmB,GAAGF,YAAY,CAAC;EAC9C,GAAGV,mBAAmB,CAAC,CAAC;EACxB,GAAGG,aAAa,CAAC;AACnB,CAAC,EAAE,YAAY,CAAC;AAEhB,OAAO,MAAMU,UAAU,GAAGJ,gBAAgB,CAAkB,CAAC,CAAC;EAC5DK,IAAI,EAAE,YAAY;EAElBC,KAAK,EAAEH,mBAAmB,CAAC,CAAC;EAE5BI,KAAK,EAAE;IACL,mBAAmB,EAAGC,GAAW,IAAK;EACxC,CAAC;EAEDC,KAAKA,CAAEH,KAAK,EAAAI,IAAA,EAAmB;IAAA,IAAjB;MAAEC,KAAK;MAAEC;IAAK,CAAC,GAAAF,IAAA;IAC3B,MAAMG,aAAa,GAAGd,GAAG,CAAa,CAAC;IAEvC,MAAM;MAAEe,QAAQ;MAAEC,WAAW;MAAEC;IAAW,CAAC,GAAGrB,OAAO,CAACW,KAAK,EAAEO,aAAa,CAAC;IAC3E,MAAMI,iBAAiB,GAAGpB,QAAQ,CAAC,MAAMS,KAAK,CAACY,IAAI,IAAIZ,KAAK,CAACW,iBAAiB,CAAC;IAE/E,MAAME,KAAK,GAAGvB,eAAe,CAC3BU,KAAK,EACL,YAAY,EACZc,SAAS;IACT;IACAZ,GAAG,IAAIF,KAAK,CAACY,IAAI,GAAGJ,QAAQ,CAACE,UAAU,CAACR,GAAG,CAAC,CAAC,GAAGA,GAAG,EACnDA,GAAG,IAAI;MACL,IAAIF,KAAK,CAACY,IAAI,EAAE;QACd,MAAMG,iBAAiB,GAAGL,UAAU,CAACG,KAAK,CAACG,KAAK,CAAC;QACjD;QACA;QACA,MAAMC,mBAAmB,GAAGT,QAAQ,CAACE,UAAU,CAACR,GAAG,CAAC,CAAC;QACrD,MAAMgB,gBAAgB,GAAGR,UAAU,CAACO,mBAAmB,CAAC;QAExD,IAAIC,gBAAgB,KAAKH,iBAAiB,EAAE;UAC1CR,aAAa,CAACS,KAAK,CAAEA,KAAK,GAAGC,mBAAmB;QAClD;QACAf,GAAG,GAAGgB,gBAAgB;QACtBT,WAAW,CAAC,CAAC;QACb,OAAOE,iBAAiB,CAACK,KAAK,GAAGR,QAAQ,CAACN,GAAG,CAAC,GAAGA,GAAG;MACtD;MACA,OAAOA,GAAG;IACZ,CACF,CAAC;IAEDV,aAAa,CAAC,MAAM;MAClB,IAAIQ,KAAK,CAACW,iBAAiB,EAAE;QAC3BL,IAAI,CAAC,mBAAmB,EAAEO,KAAK,CAACG,KAAK,CAAC;MACxC;IACF,CAAC,CAAC;IAEFpB,SAAS,CAAC,MAAM;MACd,MAAMuB,cAAc,GAAGjC,UAAU,CAACkC,WAAW,CAACpB,KAAK,CAAC;MAEpD,OAAAqB,YAAA,CAAAnC,UAAA,EAAAoC,WAAA,CAESH,cAAc;QAAA,cACTN,KAAK,CAACG,KAAK;QAAA,uBAAAO,MAAA,IAAXV,KAAK,CAACG,KAAK,GAAAO,MAAA;QAAA,OACfhB;MAAa;QAEhB,GAAGF;MAAK;IAGjB,CAAC,CAAC;IAEF,OAAOlB,WAAW,CAAC,CAAC,CAAC,EAAEoB,aAAa,CAAC;EACvC;AACF,CAAC,CAAC","ignoreList":[]}
|
@@ -0,0 +1 @@
|
|
1
|
+
export { VMaskInput } from './VMaskInput.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","names":["VMaskInput"],"sources":["../../../src/labs/VMaskInput/index.ts"],"sourcesContent":["export { VMaskInput } from './VMaskInput'\n"],"mappings":"SAASA,UAAU","ignoreList":[]}
|
@@ -193,14 +193,18 @@ export declare const makeVStepperVerticalProps: <Defaults extends {
|
|
193
193
|
default: boolean;
|
194
194
|
}, "type" | "default"> & {
|
195
195
|
type: import("vue").PropType<unknown extends Defaults["ripple"] ? boolean | {
|
196
|
-
class
|
196
|
+
class?: string;
|
197
|
+
keys?: number[];
|
197
198
|
} | undefined : boolean | {
|
198
|
-
class
|
199
|
+
class?: string;
|
200
|
+
keys?: number[];
|
199
201
|
} | Defaults["ripple"] | undefined>;
|
200
202
|
default: unknown extends Defaults["ripple"] ? boolean | {
|
201
|
-
class
|
203
|
+
class?: string;
|
204
|
+
keys?: number[];
|
202
205
|
} | undefined : NonNullable<boolean | {
|
203
|
-
class
|
206
|
+
class?: string;
|
207
|
+
keys?: number[];
|
204
208
|
} | undefined> | Defaults["ripple"];
|
205
209
|
};
|
206
210
|
collapseIcon: unknown extends Defaults["collapseIcon"] ? {
|
@@ -333,7 +337,8 @@ export declare const VStepperVertical: {
|
|
333
337
|
itemValue: string;
|
334
338
|
tile: boolean;
|
335
339
|
ripple: boolean | {
|
336
|
-
class
|
340
|
+
class?: string;
|
341
|
+
keys?: number[];
|
337
342
|
} | undefined;
|
338
343
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
339
344
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -376,7 +381,8 @@ export declare const VStepperVertical: {
|
|
376
381
|
rounded: string | number | boolean;
|
377
382
|
tile: boolean;
|
378
383
|
ripple: boolean | {
|
379
|
-
class
|
384
|
+
class?: string;
|
385
|
+
keys?: number[];
|
380
386
|
} | undefined;
|
381
387
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
382
388
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -422,7 +428,8 @@ export declare const VStepperVertical: {
|
|
422
428
|
itemValue: string;
|
423
429
|
tile: boolean;
|
424
430
|
ripple: boolean | {
|
425
|
-
class
|
431
|
+
class?: string;
|
432
|
+
keys?: number[];
|
426
433
|
} | undefined;
|
427
434
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
428
435
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -463,7 +470,8 @@ export declare const VStepperVertical: {
|
|
463
470
|
rounded: string | number | boolean;
|
464
471
|
tile: boolean;
|
465
472
|
ripple: boolean | {
|
466
|
-
class
|
473
|
+
class?: string;
|
474
|
+
keys?: number[];
|
467
475
|
} | undefined;
|
468
476
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
469
477
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -494,7 +502,8 @@ export declare const VStepperVertical: {
|
|
494
502
|
itemValue: string;
|
495
503
|
tile: boolean;
|
496
504
|
ripple: boolean | {
|
497
|
-
class
|
505
|
+
class?: string;
|
506
|
+
keys?: number[];
|
498
507
|
} | undefined;
|
499
508
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
500
509
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -537,7 +546,8 @@ export declare const VStepperVertical: {
|
|
537
546
|
rounded: string | number | boolean;
|
538
547
|
tile: boolean;
|
539
548
|
ripple: boolean | {
|
540
|
-
class
|
549
|
+
class?: string;
|
550
|
+
keys?: number[];
|
541
551
|
} | undefined;
|
542
552
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
543
553
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -175,14 +175,18 @@ export declare const makeVStepperVerticalItemProps: <Defaults extends {
|
|
175
175
|
default: boolean;
|
176
176
|
}, "type" | "default"> & {
|
177
177
|
type: import("vue").PropType<unknown extends Defaults["ripple"] ? boolean | {
|
178
|
-
class
|
178
|
+
class?: string;
|
179
|
+
keys?: number[];
|
179
180
|
} | undefined : boolean | {
|
180
|
-
class
|
181
|
+
class?: string;
|
182
|
+
keys?: number[];
|
181
183
|
} | Defaults["ripple"] | undefined>;
|
182
184
|
default: unknown extends Defaults["ripple"] ? boolean | {
|
183
|
-
class
|
185
|
+
class?: string;
|
186
|
+
keys?: number[];
|
184
187
|
} | undefined : NonNullable<boolean | {
|
185
|
-
class
|
188
|
+
class?: string;
|
189
|
+
keys?: number[];
|
186
190
|
} | undefined> | Defaults["ripple"];
|
187
191
|
};
|
188
192
|
collapseIcon: unknown extends Defaults["collapseIcon"] ? Omit<{
|
@@ -296,7 +300,8 @@ export declare const VStepperVerticalItem: {
|
|
296
300
|
rules: readonly import("../../components/VStepper/VStepperItem.js").ValidationRule[];
|
297
301
|
tile: boolean;
|
298
302
|
ripple: boolean | {
|
299
|
-
class
|
303
|
+
class?: string;
|
304
|
+
keys?: number[];
|
300
305
|
} | undefined;
|
301
306
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
302
307
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -375,7 +380,8 @@ export declare const VStepperVerticalItem: {
|
|
375
380
|
rounded: string | number | boolean;
|
376
381
|
tile: boolean;
|
377
382
|
ripple: boolean | {
|
378
|
-
class
|
383
|
+
class?: string;
|
384
|
+
keys?: number[];
|
379
385
|
} | undefined;
|
380
386
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
381
387
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -413,7 +419,8 @@ export declare const VStepperVerticalItem: {
|
|
413
419
|
rules: readonly import("../../components/VStepper/VStepperItem.js").ValidationRule[];
|
414
420
|
tile: boolean;
|
415
421
|
ripple: boolean | {
|
416
|
-
class
|
422
|
+
class?: string;
|
423
|
+
keys?: number[];
|
417
424
|
} | undefined;
|
418
425
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
419
426
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -488,7 +495,8 @@ export declare const VStepperVerticalItem: {
|
|
488
495
|
rounded: string | number | boolean;
|
489
496
|
tile: boolean;
|
490
497
|
ripple: boolean | {
|
491
|
-
class
|
498
|
+
class?: string;
|
499
|
+
keys?: number[];
|
492
500
|
} | undefined;
|
493
501
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
494
502
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -514,7 +522,8 @@ export declare const VStepperVerticalItem: {
|
|
514
522
|
rules: readonly import("../../components/VStepper/VStepperItem.js").ValidationRule[];
|
515
523
|
tile: boolean;
|
516
524
|
ripple: boolean | {
|
517
|
-
class
|
525
|
+
class?: string;
|
526
|
+
keys?: number[];
|
518
527
|
} | undefined;
|
519
528
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
520
529
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -593,7 +602,8 @@ export declare const VStepperVerticalItem: {
|
|
593
602
|
rounded: string | number | boolean;
|
594
603
|
tile: boolean;
|
595
604
|
ripple: boolean | {
|
596
|
-
class
|
605
|
+
class?: string;
|
606
|
+
keys?: number[];
|
597
607
|
} | undefined;
|
598
608
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
599
609
|
expandIcon: import("../../composables/icons.js").IconValue;
|
@@ -36,6 +36,7 @@ export declare const makeVTreeviewProps: <Defaults extends {
|
|
36
36
|
activeColor?: unknown;
|
37
37
|
slim?: unknown;
|
38
38
|
activeClass?: unknown;
|
39
|
+
filterable?: unknown;
|
39
40
|
activatable?: unknown;
|
40
41
|
selectable?: unknown;
|
41
42
|
activeStrategy?: unknown;
|
@@ -281,6 +282,10 @@ export declare const makeVTreeviewProps: <Defaults extends {
|
|
281
282
|
type: import("vue").PropType<unknown extends Defaults["activeClass"] ? string : string | Defaults["activeClass"]>;
|
282
283
|
default: unknown extends Defaults["activeClass"] ? string : string | Defaults["activeClass"];
|
283
284
|
};
|
285
|
+
filterable: unknown extends Defaults["filterable"] ? BooleanConstructor : {
|
286
|
+
type: import("vue").PropType<unknown extends Defaults["filterable"] ? boolean : boolean | Defaults["filterable"]>;
|
287
|
+
default: unknown extends Defaults["filterable"] ? boolean : boolean | Defaults["filterable"];
|
288
|
+
};
|
284
289
|
activatable: unknown extends Defaults["activatable"] ? BooleanConstructor : {
|
285
290
|
type: import("vue").PropType<unknown extends Defaults["activatable"] ? boolean : boolean | Defaults["activatable"]>;
|
286
291
|
default: unknown extends Defaults["activatable"] ? boolean : boolean | Defaults["activatable"];
|
@@ -505,6 +510,7 @@ export declare const VTreeview: {
|
|
505
510
|
tile: boolean;
|
506
511
|
slim: boolean;
|
507
512
|
indeterminateIcon: import("../../composables/icons.js").IconValue;
|
513
|
+
filterable: boolean;
|
508
514
|
activatable: boolean;
|
509
515
|
selectable: boolean;
|
510
516
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
@@ -606,6 +612,7 @@ export declare const VTreeview: {
|
|
606
612
|
slim: boolean;
|
607
613
|
openOnClick: boolean;
|
608
614
|
indeterminateIcon: import("../../composables/icons.js").IconValue;
|
615
|
+
filterable: boolean;
|
609
616
|
activatable: boolean;
|
610
617
|
selectable: boolean;
|
611
618
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
@@ -667,6 +674,7 @@ export declare const VTreeview: {
|
|
667
674
|
tile: boolean;
|
668
675
|
slim: boolean;
|
669
676
|
indeterminateIcon: import("../../composables/icons.js").IconValue;
|
677
|
+
filterable: boolean;
|
670
678
|
activatable: boolean;
|
671
679
|
selectable: boolean;
|
672
680
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
@@ -753,6 +761,7 @@ export declare const VTreeview: {
|
|
753
761
|
slim: boolean;
|
754
762
|
openOnClick: boolean;
|
755
763
|
indeterminateIcon: import("../../composables/icons.js").IconValue;
|
764
|
+
filterable: boolean;
|
756
765
|
activatable: boolean;
|
757
766
|
selectable: boolean;
|
758
767
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
@@ -785,6 +794,7 @@ export declare const VTreeview: {
|
|
785
794
|
tile: boolean;
|
786
795
|
slim: boolean;
|
787
796
|
indeterminateIcon: import("../../composables/icons.js").IconValue;
|
797
|
+
filterable: boolean;
|
788
798
|
activatable: boolean;
|
789
799
|
selectable: boolean;
|
790
800
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
@@ -886,6 +896,7 @@ export declare const VTreeview: {
|
|
886
896
|
slim: boolean;
|
887
897
|
openOnClick: boolean;
|
888
898
|
indeterminateIcon: import("../../composables/icons.js").IconValue;
|
899
|
+
filterable: boolean;
|
889
900
|
activatable: boolean;
|
890
901
|
selectable: boolean;
|
891
902
|
collapseIcon: import("../../composables/icons.js").IconValue;
|
@@ -1000,6 +1011,7 @@ export declare const VTreeview: {
|
|
1000
1011
|
default: boolean;
|
1001
1012
|
};
|
1002
1013
|
activeClass: StringConstructor;
|
1014
|
+
filterable: BooleanConstructor;
|
1003
1015
|
activatable: BooleanConstructor;
|
1004
1016
|
selectable: BooleanConstructor;
|
1005
1017
|
activeStrategy: import("vue").PropType<import("../../composables/nested/nested.js").ActiveStrategyProp>;
|
@@ -1140,6 +1152,7 @@ export declare const VTreeview: {
|
|
1140
1152
|
default: boolean;
|
1141
1153
|
};
|
1142
1154
|
activeClass: StringConstructor;
|
1155
|
+
filterable: BooleanConstructor;
|
1143
1156
|
activatable: BooleanConstructor;
|
1144
1157
|
selectable: BooleanConstructor;
|
1145
1158
|
activeStrategy: import("vue").PropType<import("../../composables/nested/nested.js").ActiveStrategyProp>;
|
@@ -241,14 +241,18 @@ export declare const makeVTreeviewItemProps: <Defaults extends {
|
|
241
241
|
default: boolean;
|
242
242
|
}, "type" | "default"> & {
|
243
243
|
type: import("vue").PropType<unknown extends Defaults["ripple"] ? boolean | {
|
244
|
-
class
|
244
|
+
class?: string;
|
245
|
+
keys?: number[];
|
245
246
|
} | undefined : boolean | {
|
246
|
-
class
|
247
|
+
class?: string;
|
248
|
+
keys?: number[];
|
247
249
|
} | Defaults["ripple"] | undefined>;
|
248
250
|
default: unknown extends Defaults["ripple"] ? boolean | {
|
249
|
-
class
|
251
|
+
class?: string;
|
252
|
+
keys?: number[];
|
250
253
|
} | undefined : NonNullable<boolean | {
|
251
|
-
class
|
254
|
+
class?: string;
|
255
|
+
keys?: number[];
|
252
256
|
} | undefined> | Defaults["ripple"];
|
253
257
|
};
|
254
258
|
slim: unknown extends Defaults["slim"] ? {
|
@@ -316,7 +320,8 @@ export declare const VTreeviewItem: {
|
|
316
320
|
tile: boolean;
|
317
321
|
slim: boolean;
|
318
322
|
ripple: boolean | {
|
319
|
-
class
|
323
|
+
class?: string;
|
324
|
+
keys?: number[];
|
320
325
|
} | undefined;
|
321
326
|
} & {
|
322
327
|
link?: boolean | undefined;
|
@@ -391,7 +396,8 @@ export declare const VTreeviewItem: {
|
|
391
396
|
tile: boolean;
|
392
397
|
slim: boolean;
|
393
398
|
ripple: boolean | {
|
394
|
-
class
|
399
|
+
class?: string;
|
400
|
+
keys?: number[];
|
395
401
|
} | undefined;
|
396
402
|
subtitle: string | number | boolean;
|
397
403
|
}, true, {}, import("vue").SlotsType<Partial<{
|
@@ -420,7 +426,8 @@ export declare const VTreeviewItem: {
|
|
420
426
|
tile: boolean;
|
421
427
|
slim: boolean;
|
422
428
|
ripple: boolean | {
|
423
|
-
class
|
429
|
+
class?: string;
|
430
|
+
keys?: number[];
|
424
431
|
} | undefined;
|
425
432
|
} & {
|
426
433
|
link?: boolean | undefined;
|
@@ -493,7 +500,8 @@ export declare const VTreeviewItem: {
|
|
493
500
|
tile: boolean;
|
494
501
|
slim: boolean;
|
495
502
|
ripple: boolean | {
|
496
|
-
class
|
503
|
+
class?: string;
|
504
|
+
keys?: number[];
|
497
505
|
} | undefined;
|
498
506
|
subtitle: string | number | boolean;
|
499
507
|
}>;
|
@@ -513,7 +521,8 @@ export declare const VTreeviewItem: {
|
|
513
521
|
tile: boolean;
|
514
522
|
slim: boolean;
|
515
523
|
ripple: boolean | {
|
516
|
-
class
|
524
|
+
class?: string;
|
525
|
+
keys?: number[];
|
517
526
|
} | undefined;
|
518
527
|
} & {
|
519
528
|
link?: boolean | undefined;
|
@@ -588,7 +597,8 @@ export declare const VTreeviewItem: {
|
|
588
597
|
tile: boolean;
|
589
598
|
slim: boolean;
|
590
599
|
ripple: boolean | {
|
591
|
-
class
|
600
|
+
class?: string;
|
601
|
+
keys?: number[];
|
592
602
|
} | undefined;
|
593
603
|
subtitle: string | number | boolean;
|
594
604
|
}, {}, string, import("vue").SlotsType<Partial<{
|
package/lib/labs/components.d.ts
CHANGED
@@ -3,6 +3,7 @@ export * from './VColorInput/index.js';
|
|
3
3
|
export * from './VDateInput/index.js';
|
4
4
|
export * from './VFileUpload/index.js';
|
5
5
|
export * from './VIconBtn/index.js';
|
6
|
+
export * from './VMaskInput/index.js';
|
6
7
|
export * from './VPicker/index.js';
|
7
8
|
export * from './VStepperVertical/index.js';
|
8
9
|
export * from './VPullToRefresh/index.js';
|
package/lib/labs/components.js
CHANGED
@@ -3,6 +3,7 @@ export * from "./VColorInput/index.js";
|
|
3
3
|
export * from "./VDateInput/index.js";
|
4
4
|
export * from "./VFileUpload/index.js";
|
5
5
|
export * from "./VIconBtn/index.js";
|
6
|
+
export * from "./VMaskInput/index.js";
|
6
7
|
export * from "./VPicker/index.js";
|
7
8
|
export * from "./VStepperVertical/index.js";
|
8
9
|
export * from "./VPullToRefresh/index.js";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"components.js","names":[],"sources":["../../src/labs/components.ts"],"sourcesContent":["export * from './VCalendar'\nexport * from './VColorInput'\nexport * from './VDateInput'\nexport * from './VFileUpload'\nexport * from './VIconBtn'\nexport * from './VPicker'\nexport * from './VStepperVertical'\nexport * from './VPullToRefresh'\nexport * from './VTimePicker'\nexport * from './VTreeview'\n"],"mappings":"","ignoreList":[]}
|
1
|
+
{"version":3,"file":"components.js","names":[],"sources":["../../src/labs/components.ts"],"sourcesContent":["export * from './VCalendar'\nexport * from './VColorInput'\nexport * from './VDateInput'\nexport * from './VFileUpload'\nexport * from './VIconBtn'\nexport * from './VMaskInput'\nexport * from './VPicker'\nexport * from './VStepperVertical'\nexport * from './VPullToRefresh'\nexport * from './VTimePicker'\nexport * from './VTreeview'\n"],"mappings":"","ignoreList":[]}
|
@@ -41,10 +41,10 @@ export declare const createVuetify: (options?: VuetifyOptions) => {
|
|
41
41
|
startOfYear: (date: unknown) => unknown;
|
42
42
|
endOfYear: (date: unknown) => unknown;
|
43
43
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
44
|
-
isAfterDay: (
|
44
|
+
isAfterDay: (date: unknown, comparing: unknown) => boolean;
|
45
45
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
46
46
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
47
|
-
isSameYear: (
|
47
|
+
isSameYear: (date: unknown, comparing: unknown) => boolean;
|
48
48
|
isBefore: (date: unknown, comparing: unknown) => boolean;
|
49
49
|
isEqual: (date: unknown, comparing: unknown) => boolean;
|
50
50
|
isValid: (date: any) => boolean;
|
@@ -58,7 +58,7 @@ export declare const createVuetify: (options?: VuetifyOptions) => {
|
|
58
58
|
setYear: (date: unknown, year: number) => unknown;
|
59
59
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
60
60
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
61
|
-
getWeekdays: (firstDayOfWeek?: number | string) => string[];
|
61
|
+
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
62
62
|
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
|
63
63
|
getMonth: (date: unknown) => number;
|
64
64
|
setMonth: (date: unknown, month: number) => unknown;
|
package/lib/util/globals.d.ts
CHANGED
package/lib/util/globals.js
CHANGED
@@ -2,4 +2,5 @@ export const IN_BROWSER = typeof window !== 'undefined';
|
|
2
2
|
export const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window;
|
3
3
|
export const SUPPORTS_TOUCH = IN_BROWSER && ('ontouchstart' in window || window.navigator.maxTouchPoints > 0);
|
4
4
|
export const SUPPORTS_EYE_DROPPER = IN_BROWSER && 'EyeDropper' in window;
|
5
|
+
export const SUPPORTS_MATCH_MEDIA = IN_BROWSER && 'matchMedia' in window && typeof window.matchMedia === 'function';
|
5
6
|
//# sourceMappingURL=globals.js.map
|
package/lib/util/globals.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"globals.js","names":["IN_BROWSER","window","SUPPORTS_INTERSECTION","SUPPORTS_TOUCH","navigator","maxTouchPoints","SUPPORTS_EYE_DROPPER"],"sources":["../../src/util/globals.ts"],"sourcesContent":["export const IN_BROWSER = typeof window !== 'undefined'\nexport const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window\nexport const SUPPORTS_TOUCH = IN_BROWSER && ('ontouchstart' in window || window.navigator.maxTouchPoints > 0)\nexport const SUPPORTS_EYE_DROPPER = IN_BROWSER && 'EyeDropper' in window\n"],"mappings":"AAAA,OAAO,MAAMA,UAAU,GAAG,OAAOC,MAAM,KAAK,WAAW;AACvD,OAAO,MAAMC,qBAAqB,GAAGF,UAAU,IAAI,sBAAsB,IAAIC,MAAM;AACnF,OAAO,MAAME,cAAc,GAAGH,UAAU,KAAK,cAAc,IAAIC,MAAM,IAAIA,MAAM,CAACG,SAAS,CAACC,cAAc,GAAG,CAAC,CAAC;AAC7G,OAAO,MAAMC,oBAAoB,GAAGN,UAAU,IAAI,YAAY,IAAIC,MAAM","ignoreList":[]}
|
1
|
+
{"version":3,"file":"globals.js","names":["IN_BROWSER","window","SUPPORTS_INTERSECTION","SUPPORTS_TOUCH","navigator","maxTouchPoints","SUPPORTS_EYE_DROPPER","SUPPORTS_MATCH_MEDIA","matchMedia"],"sources":["../../src/util/globals.ts"],"sourcesContent":["export const IN_BROWSER = typeof window !== 'undefined'\nexport const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window\nexport const SUPPORTS_TOUCH = IN_BROWSER && ('ontouchstart' in window || window.navigator.maxTouchPoints > 0)\nexport const SUPPORTS_EYE_DROPPER = IN_BROWSER && 'EyeDropper' in window\nexport const SUPPORTS_MATCH_MEDIA = IN_BROWSER && 'matchMedia' in window && typeof window.matchMedia === 'function'\n"],"mappings":"AAAA,OAAO,MAAMA,UAAU,GAAG,OAAOC,MAAM,KAAK,WAAW;AACvD,OAAO,MAAMC,qBAAqB,GAAGF,UAAU,IAAI,sBAAsB,IAAIC,MAAM;AACnF,OAAO,MAAME,cAAc,GAAGH,UAAU,KAAK,cAAc,IAAIC,MAAM,IAAIA,MAAM,CAACG,SAAS,CAACC,cAAc,GAAG,CAAC,CAAC;AAC7G,OAAO,MAAMC,oBAAoB,GAAGN,UAAU,IAAI,YAAY,IAAIC,MAAM;AACxE,OAAO,MAAMM,oBAAoB,GAAGP,UAAU,IAAI,YAAY,IAAIC,MAAM,IAAI,OAAOA,MAAM,CAACO,UAAU,KAAK,UAAU","ignoreList":[]}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vuetify/nightly",
|
3
3
|
"description": "Vue Material Component Framework",
|
4
|
-
"version": "3.8.
|
4
|
+
"version": "3.8.9-dev.2025-06-12",
|
5
5
|
"author": {
|
6
6
|
"name": "John Leider",
|
7
7
|
"email": "john@vuetifyjs.com"
|
@@ -76,6 +76,8 @@
|
|
76
76
|
"./labs/components": "./lib/labs/components.js",
|
77
77
|
"./labs/*": "./lib/labs/*/index.js",
|
78
78
|
"./util/colors": "./lib/util/colors.js",
|
79
|
+
"./date/adapters/*": "./lib/composables/date/adapters/*.js",
|
80
|
+
"./util/transitions": "./lib/components/transitions/createTransition.js",
|
79
81
|
"./dist/vuetify.js": {
|
80
82
|
"types": "./dist/vuetify.d.ts",
|
81
83
|
"import": "./dist/vuetify.esm.js",
|