vuetify 3.3.13 → 3.3.14
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 +70 -66
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +12 -12
- package/dist/json/tags.json +5 -4
- package/dist/json/web-types.json +180 -140
- package/dist/vuetify-labs.css +363 -304
- package/dist/vuetify-labs.d.ts +384 -236
- package/dist/vuetify-labs.esm.js +410 -297
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +409 -296
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +291 -232
- package/dist/vuetify.d.ts +232 -76
- package/dist/vuetify.esm.js +210 -160
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +209 -159
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +838 -827
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.mjs +12 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBadge/VBadge.css +1 -1
- package/lib/components/VBadge/_variables.scss +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/VCheckboxBtn.mjs +14 -11
- package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerEdit.css +4 -2
- package/lib/components/VColorPicker/VColorPickerPreview.css +11 -6
- package/lib/components/VCombobox/VCombobox.mjs +11 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.css +22 -7
- package/lib/components/VField/VField.sass +8 -1
- package/lib/components/VField/_variables.scss +1 -0
- package/lib/components/VGrid/VGrid.css +153 -142
- package/lib/components/VProgressLinear/VProgressLinear.css +3 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +114 -33
- package/lib/components/VSelect/VSelect.mjs +12 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +2 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.css +8 -4
- package/lib/components/VSlider/VSliderTrack.css +22 -12
- package/lib/components/VSlider/index.d.mts +114 -33
- package/lib/components/VSwitch/VSwitch.mjs +9 -9
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VTimeline/VTimeline.css +19 -10
- package/lib/components/VTimeline/VTimeline.sass +5 -0
- package/lib/components/VToolbar/VToolbar.css +4 -2
- package/lib/components/index.d.mts +228 -72
- package/lib/composables/color.mjs +6 -1
- package/lib/composables/color.mjs.map +1 -1
- package/lib/composables/defaults.mjs +9 -9
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/theme.mjs +2 -5
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +4 -4
- package/lib/labs/VDateInput/index.d.mts +2 -2
- package/lib/labs/VDatePicker/VDateCard.mjs +3 -0
- package/lib/labs/VDatePicker/VDateCard.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePicker.mjs +51 -21
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.css +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.mjs +53 -35
- package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs +37 -28
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerYears.mjs +19 -17
- package/lib/labs/VDatePicker/VDatePickerYears.mjs.map +1 -1
- package/lib/labs/VDatePicker/index.d.mts +148 -156
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs +3 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs.map +1 -1
- package/lib/labs/VDateRangePicker/index.d.mts +59 -52
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
- package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
- package/lib/labs/components.d.mts +156 -164
- package/lib/locale/no.mjs +1 -1
- package/lib/locale/no.mjs.map +1 -1
- package/lib/styles/tools/_rtl.sass +4 -2
- package/lib/util/colorUtils.mjs +6 -0
- package/lib/util/colorUtils.mjs.map +1 -1
- package/lib/util/helpers.mjs +10 -4
- package/lib/util/helpers.mjs.map +1 -1
- package/lib/util/injectSelf.mjs +2 -1
- package/lib/util/injectSelf.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
"description": "The amount of scroll distance down before **scroll-behavior** activates."
|
|
209
209
|
},
|
|
210
210
|
"v-app-bar/scroll-behavior": {
|
|
211
|
-
"type": "'hide'
|
|
211
|
+
"type": " | (string & {})\n | 'hide'\n | 'inverted'\n | 'collapse'\n | 'elevate'\n | 'fade-image'\n",
|
|
212
212
|
"description": "Specify an action to take when the scroll position of **scroll-target** reaches **scroll-threshold**. Accepts any combination of hide, inverted, collapse, elevate, and fade-image. Multiple values can be used, separated by a space."
|
|
213
213
|
},
|
|
214
214
|
"v-app-bar-nav-icon/symbol": {
|
|
@@ -501,7 +501,7 @@
|
|
|
501
501
|
},
|
|
502
502
|
"v-autocomplete/menu-props": {
|
|
503
503
|
"type": "unknown\n",
|
|
504
|
-
"description": "
|
|
504
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended."
|
|
505
505
|
},
|
|
506
506
|
"v-autocomplete/transition": {
|
|
507
507
|
"type": "string | boolean\n",
|
|
@@ -633,7 +633,7 @@
|
|
|
633
633
|
},
|
|
634
634
|
"v-autocomplete/clear-icon": {
|
|
635
635
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
636
|
-
"description": "The icon used when the **
|
|
636
|
+
"description": "The icon used when the **clearable** prop is set to true"
|
|
637
637
|
},
|
|
638
638
|
"v-autocomplete/base-color": {
|
|
639
639
|
"type": "string\n",
|
|
@@ -937,7 +937,7 @@
|
|
|
937
937
|
},
|
|
938
938
|
"v-bottom-navigation/multiple": {
|
|
939
939
|
"type": "boolean\n",
|
|
940
|
-
"description": "Allows one to select
|
|
940
|
+
"description": "Allows one to select multiple items."
|
|
941
941
|
},
|
|
942
942
|
"v-bottom-navigation/bg-color": {
|
|
943
943
|
"type": "string\n",
|
|
@@ -1425,7 +1425,7 @@
|
|
|
1425
1425
|
},
|
|
1426
1426
|
"v-btn-toggle/multiple": {
|
|
1427
1427
|
"type": "boolean\n",
|
|
1428
|
-
"description": "Allows one to select
|
|
1428
|
+
"description": "Allows one to select multiple items."
|
|
1429
1429
|
},
|
|
1430
1430
|
"v-btn-toggle/max": {
|
|
1431
1431
|
"type": "number\n",
|
|
@@ -2197,7 +2197,7 @@
|
|
|
2197
2197
|
},
|
|
2198
2198
|
"v-chip-group/multiple": {
|
|
2199
2199
|
"type": "boolean\n",
|
|
2200
|
-
"description": "Allows one to select
|
|
2200
|
+
"description": "Allows one to select multiple items."
|
|
2201
2201
|
},
|
|
2202
2202
|
"v-chip-group/value-comparator": {
|
|
2203
2203
|
"type": "(a: any, b: any) => boolean\n",
|
|
@@ -2525,7 +2525,7 @@
|
|
|
2525
2525
|
},
|
|
2526
2526
|
"v-combobox/menu-props": {
|
|
2527
2527
|
"type": "unknown\n",
|
|
2528
|
-
"description": "
|
|
2528
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended."
|
|
2529
2529
|
},
|
|
2530
2530
|
"v-combobox/transition": {
|
|
2531
2531
|
"type": "string | boolean\n",
|
|
@@ -2657,7 +2657,7 @@
|
|
|
2657
2657
|
},
|
|
2658
2658
|
"v-combobox/clear-icon": {
|
|
2659
2659
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
2660
|
-
"description": "The icon used when the **
|
|
2660
|
+
"description": "The icon used when the **clearable** prop is set to true"
|
|
2661
2661
|
},
|
|
2662
2662
|
"v-combobox/base-color": {
|
|
2663
2663
|
"type": "string\n",
|
|
@@ -3435,6 +3435,10 @@
|
|
|
3435
3435
|
"type": "string\n",
|
|
3436
3436
|
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3437
3437
|
},
|
|
3438
|
+
"v-date-card/disabled": {
|
|
3439
|
+
"type": "boolean | string[]\n",
|
|
3440
|
+
"description": "Removes the ability to click or target the component"
|
|
3441
|
+
},
|
|
3438
3442
|
"v-date-card/transition": {
|
|
3439
3443
|
"type": " | string\n | {\n component: ComponentPublicInstanceConstructor<\n {\n $: ComponentInternalInstance\n $data: {}\n $props: {\n disabled?: boolean\n origin?: string\n mode?: string\n group?: boolean\n hideOnLeave?: boolean\n leaveAbsolute?: boolean\n style?: unknown\n class?: unknown\n 'v-slot:default'?: false | (() => VNodeChild)\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n key?: string | number | symbol\n ref?: VNodeRef\n ref_for?: boolean\n ref_key?: string\n onVnodeBeforeMount?: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted?: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate?: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated?: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount?: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted?: VNodeMountHook | VNodeMountHook[]\n }\n $attrs: Data\n $refs: Data\n $slots: Readonly<{\n default?: () => VNode<\n RendererNode,\n RendererElement,\n { [key: string]: any }\n >[]\n }>\n $root: ComponentPublicInstance<\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n false,\n ComponentOptionsBase<\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n {},\n {},\n string,\n {}\n >,\n {},\n {}\n >\n $parent: ComponentPublicInstance<\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n false,\n ComponentOptionsBase<\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n {},\n {},\n string,\n {}\n >,\n {},\n {}\n >\n $emit: (event: string, ...args: any[]) => void\n $el: any\n $options: ComponentOptionsBase<\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n } & {} & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n } & { 'v-slot:default'?: false | (() => VNodeChild) },\n () => VNode<RendererNode, RendererElement, { [key: string]: any }>,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n },\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>\n > &\n MergedComponentOptionsOverride\n $forceUpdate: () => void\n $nextTick: typeof nextTick\n $watch<T extends string | ((...args: any) => any)>(\n source: T,\n cb: T extends (...args: any) => infer R\n ? (args_0: R, args_1: R) => any\n : (...args: any) => any,\n options?: WatchOptions<boolean>,\n ): WatchStopHandle\n } & {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n } & {} & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n } & {\n 'v-slot:default'?: false | (() => VNodeChild)\n } & ShallowUnwrapRef<\n () => VNode<RendererNode, RendererElement, { [key: string]: any }>\n > &\n ExtractComputedReturns<{}> &\n ComponentCustomProperties & {},\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n } & {} & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n } & { 'v-slot:default'?: false | (() => VNodeChild) },\n () => VNode<RendererNode, RendererElement, { [key: string]: any }>,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n },\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => [Partial<Pick<T, U>>, Omit<T, U>]\n }\n leaveAbsolute: boolean\n }\n",
|
|
3440
3444
|
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
|
|
@@ -3444,7 +3448,7 @@
|
|
|
3444
3448
|
"description": "MISSING DESCRIPTION"
|
|
3445
3449
|
},
|
|
3446
3450
|
"v-date-card/max": {
|
|
3447
|
-
"type": "number\n",
|
|
3451
|
+
"type": "string | number | Date\n",
|
|
3448
3452
|
"description": "MISSING DESCRIPTION"
|
|
3449
3453
|
},
|
|
3450
3454
|
"v-date-card/next-icon": {
|
|
@@ -3471,6 +3475,10 @@
|
|
|
3471
3475
|
"type": "boolean\n",
|
|
3472
3476
|
"description": "MISSING DESCRIPTION"
|
|
3473
3477
|
},
|
|
3478
|
+
"v-date-card/display-date": {
|
|
3479
|
+
"type": "any\n",
|
|
3480
|
+
"description": "MISSING DESCRIPTION"
|
|
3481
|
+
},
|
|
3474
3482
|
"v-date-card/expand-icon": {
|
|
3475
3483
|
"type": "string\n",
|
|
3476
3484
|
"description": "MISSING DESCRIPTION"
|
|
@@ -3479,22 +3487,10 @@
|
|
|
3479
3487
|
"type": "string\n",
|
|
3480
3488
|
"description": "MISSING DESCRIPTION"
|
|
3481
3489
|
},
|
|
3482
|
-
"v-date-card/range": {
|
|
3483
|
-
"type": "string | boolean\n",
|
|
3484
|
-
"description": "MISSING DESCRIPTION"
|
|
3485
|
-
},
|
|
3486
|
-
"v-date-card/display-date": {
|
|
3487
|
-
"type": "any\n",
|
|
3488
|
-
"description": "MISSING DESCRIPTION"
|
|
3489
|
-
},
|
|
3490
3490
|
"v-date-card/view-mode": {
|
|
3491
3491
|
"type": "'month' | 'year'\n",
|
|
3492
3492
|
"description": "MISSING DESCRIPTION"
|
|
3493
3493
|
},
|
|
3494
|
-
"v-date-card/format": {
|
|
3495
|
-
"type": "string\n",
|
|
3496
|
-
"description": "MISSING DESCRIPTION"
|
|
3497
|
-
},
|
|
3498
3494
|
"v-date-card/show-adjacent-months": {
|
|
3499
3495
|
"type": "boolean\n",
|
|
3500
3496
|
"description": "MISSING DESCRIPTION"
|
|
@@ -3516,7 +3512,11 @@
|
|
|
3516
3512
|
"description": "MISSING DESCRIPTION"
|
|
3517
3513
|
},
|
|
3518
3514
|
"v-date-card/min": {
|
|
3519
|
-
"type": "number\n",
|
|
3515
|
+
"type": "string | number | Date\n",
|
|
3516
|
+
"description": "MISSING DESCRIPTION"
|
|
3517
|
+
},
|
|
3518
|
+
"v-date-card/format": {
|
|
3519
|
+
"type": "string\n",
|
|
3520
3520
|
"description": "MISSING DESCRIPTION"
|
|
3521
3521
|
},
|
|
3522
3522
|
"v-date-picker/title": {
|
|
@@ -3587,12 +3587,16 @@
|
|
|
3587
3587
|
"type": "string\n",
|
|
3588
3588
|
"description": "Text shown when no **display-date** is set."
|
|
3589
3589
|
},
|
|
3590
|
+
"v-date-picker/disabled": {
|
|
3591
|
+
"type": "boolean | string[]\n",
|
|
3592
|
+
"description": "Removes the ability to click or target the component"
|
|
3593
|
+
},
|
|
3590
3594
|
"v-date-picker/multiple": {
|
|
3591
3595
|
"type": "boolean\n",
|
|
3592
3596
|
"description": "Allow the selection of multiple dates"
|
|
3593
3597
|
},
|
|
3594
3598
|
"v-date-picker/max": {
|
|
3595
|
-
"type": "number\n",
|
|
3599
|
+
"type": "string | number | Date\n",
|
|
3596
3600
|
"description": "Maximum allowed date/month (ISO 8601 format)"
|
|
3597
3601
|
},
|
|
3598
3602
|
"v-date-picker/next-icon": {
|
|
@@ -3619,6 +3623,10 @@
|
|
|
3619
3623
|
"type": "boolean\n",
|
|
3620
3624
|
"description": "Hide the picker actions"
|
|
3621
3625
|
},
|
|
3626
|
+
"v-date-picker/display-date": {
|
|
3627
|
+
"type": "any\n",
|
|
3628
|
+
"description": "The date displayed in the picker header."
|
|
3629
|
+
},
|
|
3622
3630
|
"v-date-picker/expand-icon": {
|
|
3623
3631
|
"type": "string\n",
|
|
3624
3632
|
"description": "Icon used for **view-mode** toggle."
|
|
@@ -3627,22 +3635,10 @@
|
|
|
3627
3635
|
"type": "string\n",
|
|
3628
3636
|
"description": "MISSING DESCRIPTION"
|
|
3629
3637
|
},
|
|
3630
|
-
"v-date-picker/range": {
|
|
3631
|
-
"type": "string | boolean\n",
|
|
3632
|
-
"description": "Allow the selection of date range"
|
|
3633
|
-
},
|
|
3634
|
-
"v-date-picker/display-date": {
|
|
3635
|
-
"type": "any\n",
|
|
3636
|
-
"description": "The date displayed in the picker header."
|
|
3637
|
-
},
|
|
3638
3638
|
"v-date-picker/view-mode": {
|
|
3639
3639
|
"type": "'month' | 'year'\n",
|
|
3640
3640
|
"description": "MISSING DESCRIPTION"
|
|
3641
3641
|
},
|
|
3642
|
-
"v-date-picker/format": {
|
|
3643
|
-
"type": "string\n",
|
|
3644
|
-
"description": "Takes a date object and returns it in a specified format."
|
|
3645
|
-
},
|
|
3646
3642
|
"v-date-picker/show-adjacent-months": {
|
|
3647
3643
|
"type": "boolean\n",
|
|
3648
3644
|
"description": "Toggles visibility of days from previous and next months"
|
|
@@ -3664,9 +3660,13 @@
|
|
|
3664
3660
|
"description": "MISSING DESCRIPTION"
|
|
3665
3661
|
},
|
|
3666
3662
|
"v-date-picker/min": {
|
|
3667
|
-
"type": "number\n",
|
|
3663
|
+
"type": "string | number | Date\n",
|
|
3668
3664
|
"description": "Minimum allowed date/month (ISO 8601 format)"
|
|
3669
3665
|
},
|
|
3666
|
+
"v-date-picker/format": {
|
|
3667
|
+
"type": "string\n",
|
|
3668
|
+
"description": "Takes a date object and returns it in a specified format."
|
|
3669
|
+
},
|
|
3670
3670
|
"v-date-picker/calendar-icon": {
|
|
3671
3671
|
"type": "string\n",
|
|
3672
3672
|
"description": "The icon shown in the header when in 'input' **input-mode**."
|
|
@@ -3687,6 +3687,10 @@
|
|
|
3687
3687
|
"type": "boolean\n",
|
|
3688
3688
|
"description": "MISSING DESCRIPTION"
|
|
3689
3689
|
},
|
|
3690
|
+
"v-date-picker-controls/disabled": {
|
|
3691
|
+
"type": "boolean | string[]\n",
|
|
3692
|
+
"description": "Removes the ability to click or target the component"
|
|
3693
|
+
},
|
|
3690
3694
|
"v-date-picker-controls/next-icon": {
|
|
3691
3695
|
"type": "string\n",
|
|
3692
3696
|
"description": "MISSING DESCRIPTION"
|
|
@@ -3695,30 +3699,22 @@
|
|
|
3695
3699
|
"type": "string\n",
|
|
3696
3700
|
"description": "MISSING DESCRIPTION"
|
|
3697
3701
|
},
|
|
3698
|
-
"v-date-picker-controls/
|
|
3702
|
+
"v-date-picker-controls/display-date": {
|
|
3699
3703
|
"type": "string\n",
|
|
3700
3704
|
"description": "MISSING DESCRIPTION"
|
|
3701
3705
|
},
|
|
3702
|
-
"v-date-picker-controls/
|
|
3706
|
+
"v-date-picker-controls/expand-icon": {
|
|
3703
3707
|
"type": "string\n",
|
|
3704
3708
|
"description": "MISSING DESCRIPTION"
|
|
3705
3709
|
},
|
|
3706
|
-
"v-date-picker-controls/
|
|
3707
|
-
"type": "string
|
|
3708
|
-
"description": "MISSING DESCRIPTION"
|
|
3709
|
-
},
|
|
3710
|
-
"v-date-picker-controls/display-date": {
|
|
3711
|
-
"type": "any\n",
|
|
3710
|
+
"v-date-picker-controls/collapse-icon": {
|
|
3711
|
+
"type": "string\n",
|
|
3712
3712
|
"description": "MISSING DESCRIPTION"
|
|
3713
3713
|
},
|
|
3714
3714
|
"v-date-picker-controls/view-mode": {
|
|
3715
3715
|
"type": "'month' | 'year'\n",
|
|
3716
3716
|
"description": "MISSING DESCRIPTION"
|
|
3717
3717
|
},
|
|
3718
|
-
"v-date-picker-controls/format": {
|
|
3719
|
-
"type": "string\n",
|
|
3720
|
-
"description": "MISSING DESCRIPTION"
|
|
3721
|
-
},
|
|
3722
3718
|
"v-date-picker-header/color": {
|
|
3723
3719
|
"type": "string\n",
|
|
3724
3720
|
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
@@ -3747,12 +3743,12 @@
|
|
|
3747
3743
|
"type": "boolean\n",
|
|
3748
3744
|
"description": "MISSING DESCRIPTION"
|
|
3749
3745
|
},
|
|
3750
|
-
"v-date-picker-month/
|
|
3751
|
-
"type": "
|
|
3746
|
+
"v-date-picker-month/max": {
|
|
3747
|
+
"type": "string | number | Date\n",
|
|
3752
3748
|
"description": "MISSING DESCRIPTION"
|
|
3753
3749
|
},
|
|
3754
|
-
"v-date-picker-month/
|
|
3755
|
-
"type": "
|
|
3750
|
+
"v-date-picker-month/display-date": {
|
|
3751
|
+
"type": "any\n",
|
|
3756
3752
|
"description": "MISSING DESCRIPTION"
|
|
3757
3753
|
},
|
|
3758
3754
|
"v-date-picker-month/show-adjacent-months": {
|
|
@@ -3775,6 +3771,14 @@
|
|
|
3775
3771
|
"type": "string\n",
|
|
3776
3772
|
"description": "MISSING DESCRIPTION"
|
|
3777
3773
|
},
|
|
3774
|
+
"v-date-picker-month/min": {
|
|
3775
|
+
"type": "string | number | Date\n",
|
|
3776
|
+
"description": "MISSING DESCRIPTION"
|
|
3777
|
+
},
|
|
3778
|
+
"v-date-picker-month/format": {
|
|
3779
|
+
"type": "string\n",
|
|
3780
|
+
"description": "MISSING DESCRIPTION"
|
|
3781
|
+
},
|
|
3778
3782
|
"v-date-picker-years/height": {
|
|
3779
3783
|
"type": "string | number\n",
|
|
3780
3784
|
"description": "Sets the height for the component"
|
|
@@ -3784,7 +3788,7 @@
|
|
|
3784
3788
|
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3785
3789
|
},
|
|
3786
3790
|
"v-date-picker-years/max": {
|
|
3787
|
-
"type": "number\n",
|
|
3791
|
+
"type": "string | number | Date\n",
|
|
3788
3792
|
"description": "MISSING DESCRIPTION"
|
|
3789
3793
|
},
|
|
3790
3794
|
"v-date-picker-years/display-date": {
|
|
@@ -3792,12 +3796,12 @@
|
|
|
3792
3796
|
"description": "MISSING DESCRIPTION"
|
|
3793
3797
|
},
|
|
3794
3798
|
"v-date-picker-years/min": {
|
|
3795
|
-
"type": "number\n",
|
|
3799
|
+
"type": "string | number | Date\n",
|
|
3796
3800
|
"description": "MISSING DESCRIPTION"
|
|
3797
3801
|
},
|
|
3798
3802
|
"v-defaults-provider/disabled": {
|
|
3799
3803
|
"type": "boolean\n",
|
|
3800
|
-
"description": "Turns off all
|
|
3804
|
+
"description": "Turns off all calculations of new default values for improved performance in situations where defaults propagation isn't necessary"
|
|
3801
3805
|
},
|
|
3802
3806
|
"v-defaults-provider/root": {
|
|
3803
3807
|
"type": "string | boolean\n",
|
|
@@ -4177,7 +4181,7 @@
|
|
|
4177
4181
|
},
|
|
4178
4182
|
"v-expansion-panels/multiple": {
|
|
4179
4183
|
"type": "boolean\n",
|
|
4180
|
-
"description": "Allows one to select
|
|
4184
|
+
"description": "Allows one to select multiple items."
|
|
4181
4185
|
},
|
|
4182
4186
|
"v-expansion-panels/readonly": {
|
|
4183
4187
|
"type": "boolean\n",
|
|
@@ -4313,7 +4317,7 @@
|
|
|
4313
4317
|
},
|
|
4314
4318
|
"v-field/clear-icon": {
|
|
4315
4319
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
4316
|
-
"description": "The icon used when the **
|
|
4320
|
+
"description": "The icon used when the **clearable** prop is set to true"
|
|
4317
4321
|
},
|
|
4318
4322
|
"v-field/base-color": {
|
|
4319
4323
|
"type": "string\n",
|
|
@@ -4481,7 +4485,7 @@
|
|
|
4481
4485
|
},
|
|
4482
4486
|
"v-file-input/clear-icon": {
|
|
4483
4487
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
4484
|
-
"description": "The icon used when the **
|
|
4488
|
+
"description": "The icon used when the **clearable** prop is set to true"
|
|
4485
4489
|
},
|
|
4486
4490
|
"v-file-input/base-color": {
|
|
4487
4491
|
"type": "string\n",
|
|
@@ -4881,7 +4885,7 @@
|
|
|
4881
4885
|
},
|
|
4882
4886
|
"v-item-group/multiple": {
|
|
4883
4887
|
"type": "boolean\n",
|
|
4884
|
-
"description": "Allows one to select
|
|
4888
|
+
"description": "Allows one to select multiple items."
|
|
4885
4889
|
},
|
|
4886
4890
|
"v-item-group/max": {
|
|
4887
4891
|
"type": "number\n",
|
|
@@ -5601,7 +5605,7 @@
|
|
|
5601
5605
|
},
|
|
5602
5606
|
"v-navigation-drawer/disable-resize-watcher": {
|
|
5603
5607
|
"type": "boolean\n",
|
|
5604
|
-
"description": "
|
|
5608
|
+
"description": "Prevents the automatic opening or closing of the drawer when resized, based on whether the device is mobile or desktop."
|
|
5605
5609
|
},
|
|
5606
5610
|
"v-navigation-drawer/disable-route-watcher": {
|
|
5607
5611
|
"type": "boolean\n",
|
|
@@ -6957,7 +6961,7 @@
|
|
|
6957
6961
|
},
|
|
6958
6962
|
"v-select/menu-props": {
|
|
6959
6963
|
"type": "unknown\n",
|
|
6960
|
-
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [
|
|
6964
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended."
|
|
6961
6965
|
},
|
|
6962
6966
|
"v-select/transition": {
|
|
6963
6967
|
"type": "string | { component: Component }\n",
|
|
@@ -7089,7 +7093,7 @@
|
|
|
7089
7093
|
},
|
|
7090
7094
|
"v-select/clear-icon": {
|
|
7091
7095
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
7092
|
-
"description": "The icon used when the **
|
|
7096
|
+
"description": "The icon used when the **clearable** prop is set to true"
|
|
7093
7097
|
},
|
|
7094
7098
|
"v-select/base-color": {
|
|
7095
7099
|
"type": "string\n",
|
|
@@ -7328,7 +7332,7 @@
|
|
|
7328
7332
|
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
7329
7333
|
},
|
|
7330
7334
|
"v-skeleton-loader/type": {
|
|
7331
|
-
"type": "string | string[]\n",
|
|
7335
|
+
"type": " | 'text'\n | (string & {})\n | 'image'\n | 'button'\n | 'chip'\n | 'actions'\n | 'avatar'\n | 'divider'\n | 'subtitle'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'article'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n | (\n | 'text'\n | (string & {})\n | 'image'\n | 'button'\n | 'chip'\n | 'actions'\n | 'avatar'\n | 'divider'\n | 'subtitle'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'article'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n )[]\n",
|
|
7332
7336
|
"description": "A string delimited list of skeleton components to create such as `type=\"text@3\"` or `type=\"card, list-item\"`. Will recursively generate a corresponding skeleton from the provided string. Also supports short-hand for multiple elements such as **article@3** and **paragraph@2** which will generate 3 _article_ skeletons and 2 _paragraph_ skeletons. Please see below for a list of available pre-defined options."
|
|
7333
7337
|
},
|
|
7334
7338
|
"v-skeleton-loader/height": {
|
|
@@ -7401,7 +7405,7 @@
|
|
|
7401
7405
|
},
|
|
7402
7406
|
"v-slide-group/multiple": {
|
|
7403
7407
|
"type": "boolean\n",
|
|
7404
|
-
"description": "Allows one to select
|
|
7408
|
+
"description": "Allows one to select multiple items."
|
|
7405
7409
|
},
|
|
7406
7410
|
"v-slide-group/direction": {
|
|
7407
7411
|
"type": "'horizontal' | 'vertical'\n",
|
|
@@ -8329,7 +8333,7 @@
|
|
|
8329
8333
|
},
|
|
8330
8334
|
"v-tabs/multiple": {
|
|
8331
8335
|
"type": "boolean\n",
|
|
8332
|
-
"description": "Allows one to select
|
|
8336
|
+
"description": "Allows one to select multiple items."
|
|
8333
8337
|
},
|
|
8334
8338
|
"v-tabs/direction": {
|
|
8335
8339
|
"type": "'horizontal' | 'vertical'\n",
|
|
@@ -8741,7 +8745,7 @@
|
|
|
8741
8745
|
},
|
|
8742
8746
|
"v-textarea/clear-icon": {
|
|
8743
8747
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
8744
|
-
"description": "The icon used when the **
|
|
8748
|
+
"description": "The icon used when the **clearable** prop is set to true"
|
|
8745
8749
|
},
|
|
8746
8750
|
"v-textarea/base-color": {
|
|
8747
8751
|
"type": "string\n",
|
|
@@ -56,10 +56,6 @@
|
|
|
56
56
|
"from": "labs/VInfiniteScroll/index.mjs",
|
|
57
57
|
"styles": []
|
|
58
58
|
},
|
|
59
|
-
"VOtpInput": {
|
|
60
|
-
"from": "labs/VOtpInput/index.mjs",
|
|
61
|
-
"styles": []
|
|
62
|
-
},
|
|
63
59
|
"VPicker": {
|
|
64
60
|
"from": "labs/VPicker/index.mjs",
|
|
65
61
|
"styles": []
|
|
@@ -96,6 +92,10 @@
|
|
|
96
92
|
"from": "labs/VStepper/index.mjs",
|
|
97
93
|
"styles": []
|
|
98
94
|
},
|
|
95
|
+
"VOtpInput": {
|
|
96
|
+
"from": "labs/VOtpInput/index.mjs",
|
|
97
|
+
"styles": []
|
|
98
|
+
},
|
|
99
99
|
"VDataIterator": {
|
|
100
100
|
"from": "labs/VDataIterator/index.mjs",
|
|
101
101
|
"styles": []
|
package/dist/json/importMap.json
CHANGED
|
@@ -76,14 +76,6 @@
|
|
|
76
76
|
"from": "components/VBtnToggle/index.mjs",
|
|
77
77
|
"styles": []
|
|
78
78
|
},
|
|
79
|
-
"VCarousel": {
|
|
80
|
-
"from": "components/VCarousel/index.mjs",
|
|
81
|
-
"styles": []
|
|
82
|
-
},
|
|
83
|
-
"VCarouselItem": {
|
|
84
|
-
"from": "components/VCarousel/index.mjs",
|
|
85
|
-
"styles": []
|
|
86
|
-
},
|
|
87
79
|
"VCard": {
|
|
88
80
|
"from": "components/VCard/index.mjs",
|
|
89
81
|
"styles": []
|
|
@@ -108,6 +100,14 @@
|
|
|
108
100
|
"from": "components/VCard/index.mjs",
|
|
109
101
|
"styles": []
|
|
110
102
|
},
|
|
103
|
+
"VCarousel": {
|
|
104
|
+
"from": "components/VCarousel/index.mjs",
|
|
105
|
+
"styles": []
|
|
106
|
+
},
|
|
107
|
+
"VCarouselItem": {
|
|
108
|
+
"from": "components/VCarousel/index.mjs",
|
|
109
|
+
"styles": []
|
|
110
|
+
},
|
|
111
111
|
"VCheckbox": {
|
|
112
112
|
"from": "components/VCheckbox/index.mjs",
|
|
113
113
|
"styles": []
|
|
@@ -140,14 +140,14 @@
|
|
|
140
140
|
"from": "components/VCounter/index.mjs",
|
|
141
141
|
"styles": []
|
|
142
142
|
},
|
|
143
|
-
"VDivider": {
|
|
144
|
-
"from": "components/VDivider/index.mjs",
|
|
145
|
-
"styles": []
|
|
146
|
-
},
|
|
147
143
|
"VDialog": {
|
|
148
144
|
"from": "components/VDialog/index.mjs",
|
|
149
145
|
"styles": []
|
|
150
146
|
},
|
|
147
|
+
"VDivider": {
|
|
148
|
+
"from": "components/VDivider/index.mjs",
|
|
149
|
+
"styles": []
|
|
150
|
+
},
|
|
151
151
|
"VExpansionPanels": {
|
|
152
152
|
"from": "components/VExpansionPanel/index.mjs",
|
|
153
153
|
"styles": []
|
package/dist/json/tags.json
CHANGED
|
@@ -1093,6 +1093,7 @@
|
|
|
1093
1093
|
"cancel-text",
|
|
1094
1094
|
"collapse-icon",
|
|
1095
1095
|
"color",
|
|
1096
|
+
"disabled",
|
|
1096
1097
|
"display-date",
|
|
1097
1098
|
"expand-icon",
|
|
1098
1099
|
"format",
|
|
@@ -1108,7 +1109,6 @@
|
|
|
1108
1109
|
"next-icon",
|
|
1109
1110
|
"ok-text",
|
|
1110
1111
|
"prev-icon",
|
|
1111
|
-
"range",
|
|
1112
1112
|
"show-adjacent-months",
|
|
1113
1113
|
"show-week",
|
|
1114
1114
|
"side",
|
|
@@ -1124,6 +1124,7 @@
|
|
|
1124
1124
|
"cancel-text",
|
|
1125
1125
|
"collapse-icon",
|
|
1126
1126
|
"color",
|
|
1127
|
+
"disabled",
|
|
1127
1128
|
"display-date",
|
|
1128
1129
|
"elevation",
|
|
1129
1130
|
"expand-icon",
|
|
@@ -1151,7 +1152,6 @@
|
|
|
1151
1152
|
"ok-text",
|
|
1152
1153
|
"position",
|
|
1153
1154
|
"prev-icon",
|
|
1154
|
-
"range",
|
|
1155
1155
|
"rounded",
|
|
1156
1156
|
"show-adjacent-months",
|
|
1157
1157
|
"show-week",
|
|
@@ -1167,12 +1167,11 @@
|
|
|
1167
1167
|
"v-date-picker-controls": {
|
|
1168
1168
|
"attributes": [
|
|
1169
1169
|
"collapse-icon",
|
|
1170
|
+
"disabled",
|
|
1170
1171
|
"display-date",
|
|
1171
1172
|
"expand-icon",
|
|
1172
|
-
"format",
|
|
1173
1173
|
"next-icon",
|
|
1174
1174
|
"prev-icon",
|
|
1175
|
-
"range",
|
|
1176
1175
|
"view-mode"
|
|
1177
1176
|
],
|
|
1178
1177
|
"description": ""
|
|
@@ -1193,6 +1192,8 @@
|
|
|
1193
1192
|
"format",
|
|
1194
1193
|
"hide-weekdays",
|
|
1195
1194
|
"hover-date",
|
|
1195
|
+
"max",
|
|
1196
|
+
"min",
|
|
1196
1197
|
"model-value",
|
|
1197
1198
|
"multiple",
|
|
1198
1199
|
"show-adjacent-months",
|