vuetify 3.6.8 → 3.6.10
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 +4 -4
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +13 -14
- package/dist/vuetify-labs.css +2643 -2642
- package/dist/vuetify-labs.d.ts +187 -189
- package/dist/vuetify-labs.esm.js +94 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +94 -62
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1384 -1383
- package/dist/vuetify.d.ts +226 -234
- package/dist/vuetify.esm.js +82 -55
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +82 -55
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +47 -41
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +58 -56
- package/lib/blueprints/md1.d.mts +58 -56
- package/lib/blueprints/md2.d.mts +58 -56
- package/lib/blueprints/md3.d.mts +58 -56
- package/lib/components/VAutocomplete/VAutocomplete.mjs +17 -14
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBanner/VBanner.css +1 -0
- package/lib/components/VBanner/VBanner.sass +1 -0
- package/lib/components/VBanner/_variables.scss +1 -0
- package/lib/components/VCombobox/VCombobox.mjs +7 -11
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +5 -2
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VEmptyState/VEmptyState.css +2 -2
- package/lib/components/VEmptyState/VEmptyState.mjs +1 -1
- package/lib/components/VEmptyState/VEmptyState.mjs.map +1 -1
- package/lib/components/VEmptyState/_variables.scss +2 -2
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs +23 -11
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +13 -5
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VFab/VFab.mjs +4 -7
- package/lib/components/VFab/VFab.mjs.map +1 -1
- package/lib/components/VFab/index.d.mts +46 -49
- package/lib/components/VList/VList.mjs +1 -0
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +2 -0
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +4 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -45
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/scroll.mjs +6 -0
- package/lib/composables/scroll.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +154 -155
- package/lib/labs/VNumberInput/VNumberInput.mjs +0 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VStepperVertical/index.d.mts +3 -3
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +3 -1
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +7 -2
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs +3 -4
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +6 -0
- package/lib/labs/components.d.mts +6 -0
- package/package.json +2 -2
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.6.
|
|
2
|
+
* Vuetify v3.6.10
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3756,6 +3756,7 @@ function useScroll(props) {
|
|
|
3756
3756
|
canScroll
|
|
3757
3757
|
} = args;
|
|
3758
3758
|
let previousScroll = 0;
|
|
3759
|
+
let previousScrollHeight = 0;
|
|
3759
3760
|
const target = ref(null);
|
|
3760
3761
|
const currentScroll = shallowRef(0);
|
|
3761
3762
|
const savedScroll = shallowRef(0);
|
|
@@ -3778,6 +3779,11 @@ function useScroll(props) {
|
|
|
3778
3779
|
if (!targetEl || canScroll && !canScroll.value) return;
|
|
3779
3780
|
previousScroll = currentScroll.value;
|
|
3780
3781
|
currentScroll.value = 'window' in targetEl ? targetEl.pageYOffset : targetEl.scrollTop;
|
|
3782
|
+
const currentScrollHeight = targetEl instanceof Window ? document.documentElement.scrollHeight : targetEl.scrollHeight;
|
|
3783
|
+
if (previousScrollHeight !== currentScrollHeight) {
|
|
3784
|
+
previousScrollHeight = currentScrollHeight;
|
|
3785
|
+
return;
|
|
3786
|
+
}
|
|
3781
3787
|
isScrollingUp.value = currentScroll.value < previousScroll;
|
|
3782
3788
|
currentThreshold.value = Math.abs(currentScroll.value - scrollThreshold.value);
|
|
3783
3789
|
};
|
|
@@ -9384,6 +9390,7 @@ const makeVListProps = propsFactory({
|
|
|
9384
9390
|
nav: Boolean,
|
|
9385
9391
|
'onClick:open': EventProp(),
|
|
9386
9392
|
'onClick:select': EventProp(),
|
|
9393
|
+
'onUpdate:opened': EventProp(),
|
|
9387
9394
|
...makeNestedProps({
|
|
9388
9395
|
selectStrategy: 'single-leaf',
|
|
9389
9396
|
openStrategy: 'list'
|
|
@@ -10787,9 +10794,6 @@ const VOverlay = genericComponent()({
|
|
|
10787
10794
|
if (!(v && props.disabled)) model.value = v;
|
|
10788
10795
|
}
|
|
10789
10796
|
});
|
|
10790
|
-
const {
|
|
10791
|
-
teleportTarget
|
|
10792
|
-
} = useTeleport(computed(() => props.attach || props.contained));
|
|
10793
10797
|
const {
|
|
10794
10798
|
themeClasses
|
|
10795
10799
|
} = provideTheme(props);
|
|
@@ -10822,6 +10826,10 @@ const VOverlay = genericComponent()({
|
|
|
10822
10826
|
isActive,
|
|
10823
10827
|
isTop: localTop
|
|
10824
10828
|
});
|
|
10829
|
+
const potentialShadowDomRoot = computed(() => activatorEl?.value?.getRootNode());
|
|
10830
|
+
const {
|
|
10831
|
+
teleportTarget
|
|
10832
|
+
} = useTeleport(computed(() => props.attach || props.contained || potentialShadowDomRoot.value instanceof ShadowRoot ? potentialShadowDomRoot.value : false));
|
|
10825
10833
|
const {
|
|
10826
10834
|
dimensionStyles
|
|
10827
10835
|
} = useDimension(props);
|
|
@@ -11164,7 +11172,7 @@ const VMenu = genericComponent()({
|
|
|
11164
11172
|
function onKeydown(e) {
|
|
11165
11173
|
if (props.disabled) return;
|
|
11166
11174
|
if (e.key === 'Tab' || e.key === 'Enter' && !props.closeOnContentClick) {
|
|
11167
|
-
if (e.key === 'Enter' && e.target instanceof HTMLTextAreaElement) return;
|
|
11175
|
+
if (e.key === 'Enter' && (e.target instanceof HTMLTextAreaElement || e.target instanceof HTMLInputElement && !!e.target.closest('form'))) return;
|
|
11168
11176
|
if (e.key === 'Enter') e.preventDefault();
|
|
11169
11177
|
const nextElement = getNextElement(focusableChildren(overlay.value?.contentEl, false), e.shiftKey ? 'prev' : 'next', el => el.tabIndex >= 0);
|
|
11170
11178
|
if (!nextElement) {
|
|
@@ -12908,7 +12916,12 @@ const VAutocomplete = genericComponent()({
|
|
|
12908
12916
|
if (['Escape'].includes(e.key)) {
|
|
12909
12917
|
menu.value = false;
|
|
12910
12918
|
}
|
|
12911
|
-
if (highlightFirst.value && e.key
|
|
12919
|
+
if (highlightFirst.value && ['Enter', 'Tab'].includes(e.key) && !model.value.some(_ref2 => {
|
|
12920
|
+
let {
|
|
12921
|
+
value
|
|
12922
|
+
} = _ref2;
|
|
12923
|
+
return value === displayItems.value[0].value;
|
|
12924
|
+
})) {
|
|
12912
12925
|
select(displayItems.value[0]);
|
|
12913
12926
|
}
|
|
12914
12927
|
if (e.key === 'ArrowDown' && highlightFirst.value) {
|
|
@@ -13011,16 +13024,14 @@ const VAutocomplete = genericComponent()({
|
|
|
13011
13024
|
isPristine.value = true;
|
|
13012
13025
|
nextTick(() => isSelecting.value = false);
|
|
13013
13026
|
} else {
|
|
13014
|
-
if (!props.multiple && search.value == null) model.value = [];
|
|
13015
|
-
let {
|
|
13016
|
-
value
|
|
13017
|
-
} = _ref2;
|
|
13018
|
-
return value === displayItems.value[0].value;
|
|
13019
|
-
})) {
|
|
13020
|
-
select(displayItems.value[0]);
|
|
13021
|
-
}
|
|
13027
|
+
if (!props.multiple && search.value == null) model.value = [];
|
|
13022
13028
|
menu.value = false;
|
|
13023
|
-
if (
|
|
13029
|
+
if (!model.value.some(_ref3 => {
|
|
13030
|
+
let {
|
|
13031
|
+
title
|
|
13032
|
+
} = _ref3;
|
|
13033
|
+
return title === search.value;
|
|
13034
|
+
})) search.value = '';
|
|
13024
13035
|
selectionIndex.value = -1;
|
|
13025
13036
|
}
|
|
13026
13037
|
});
|
|
@@ -13106,12 +13117,12 @@ const VAutocomplete = genericComponent()({
|
|
|
13106
13117
|
"renderless": true,
|
|
13107
13118
|
"items": displayItems.value
|
|
13108
13119
|
}, {
|
|
13109
|
-
default:
|
|
13120
|
+
default: _ref4 => {
|
|
13110
13121
|
let {
|
|
13111
13122
|
item,
|
|
13112
13123
|
index,
|
|
13113
13124
|
itemRef
|
|
13114
|
-
} =
|
|
13125
|
+
} = _ref4;
|
|
13115
13126
|
const itemProps = mergeProps(item.props, {
|
|
13116
13127
|
ref: itemRef,
|
|
13117
13128
|
key: index,
|
|
@@ -13125,10 +13136,10 @@ const VAutocomplete = genericComponent()({
|
|
|
13125
13136
|
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
|
13126
13137
|
"role": "option"
|
|
13127
13138
|
}), {
|
|
13128
|
-
prepend:
|
|
13139
|
+
prepend: _ref5 => {
|
|
13129
13140
|
let {
|
|
13130
13141
|
isSelected
|
|
13131
|
-
} =
|
|
13142
|
+
} = _ref5;
|
|
13132
13143
|
return createVNode(Fragment, null, [props.multiple && !props.hideSelected ? createVNode(VCheckboxBtn, {
|
|
13133
13144
|
"key": item.value,
|
|
13134
13145
|
"modelValue": isSelected,
|
|
@@ -16778,8 +16789,13 @@ const VCombobox = genericComponent()({
|
|
|
16778
16789
|
if (['Escape'].includes(e.key)) {
|
|
16779
16790
|
menu.value = false;
|
|
16780
16791
|
}
|
|
16781
|
-
if (['Enter', 'Escape'].includes(e.key)) {
|
|
16782
|
-
if (highlightFirst.value && e.key
|
|
16792
|
+
if (['Enter', 'Escape', 'Tab'].includes(e.key)) {
|
|
16793
|
+
if (highlightFirst.value && ['Enter', 'Tab'].includes(e.key) && !model.value.some(_ref2 => {
|
|
16794
|
+
let {
|
|
16795
|
+
value
|
|
16796
|
+
} = _ref2;
|
|
16797
|
+
return value === displayItems.value[0].value;
|
|
16798
|
+
})) {
|
|
16783
16799
|
select(filteredItems.value[0]);
|
|
16784
16800
|
}
|
|
16785
16801
|
isPristine.value = true;
|
|
@@ -16874,15 +16890,6 @@ const VCombobox = genericComponent()({
|
|
|
16874
16890
|
if (val || val === oldVal) return;
|
|
16875
16891
|
selectionIndex.value = -1;
|
|
16876
16892
|
menu.value = false;
|
|
16877
|
-
if (highlightFirst.value && !listHasFocus.value && !model.value.some(_ref2 => {
|
|
16878
|
-
let {
|
|
16879
|
-
value
|
|
16880
|
-
} = _ref2;
|
|
16881
|
-
return value === displayItems.value[0].value;
|
|
16882
|
-
})) {
|
|
16883
|
-
select(displayItems.value[0]);
|
|
16884
|
-
return;
|
|
16885
|
-
}
|
|
16886
16893
|
if (search.value) {
|
|
16887
16894
|
if (props.multiple) {
|
|
16888
16895
|
select(transformItem$3(props, search.value));
|
|
@@ -22034,8 +22041,11 @@ const VDatePicker = genericComponent()({
|
|
|
22034
22041
|
emit('update:year', value);
|
|
22035
22042
|
}
|
|
22036
22043
|
watch(model, (val, oldVal) => {
|
|
22037
|
-
const
|
|
22038
|
-
const
|
|
22044
|
+
const arrBefore = wrapInArray(oldVal);
|
|
22045
|
+
const arrAfter = wrapInArray(val);
|
|
22046
|
+
if (!arrAfter.length) return;
|
|
22047
|
+
const before = adapter.date(arrBefore[arrBefore.length - 1]);
|
|
22048
|
+
const after = adapter.date(arrAfter[arrAfter.length - 1]);
|
|
22039
22049
|
const newMonth = adapter.getMonth(after);
|
|
22040
22050
|
const newYear = adapter.getYear(after);
|
|
22041
22051
|
if (newMonth !== month.value) {
|
|
@@ -22246,7 +22256,7 @@ const VEmptyState = genericComponent()({
|
|
|
22246
22256
|
"defaults": {
|
|
22247
22257
|
VBtn: {
|
|
22248
22258
|
class: 'v-empty-state__action-btn',
|
|
22249
|
-
color: props.color,
|
|
22259
|
+
color: props.color ?? 'surface-variant',
|
|
22250
22260
|
text: props.actionText
|
|
22251
22261
|
}
|
|
22252
22262
|
}
|
|
@@ -22344,6 +22354,7 @@ const VExpansionPanelTitle = genericComponent()({
|
|
|
22344
22354
|
expandIcon: props.expandIcon,
|
|
22345
22355
|
readonly: props.readonly
|
|
22346
22356
|
}));
|
|
22357
|
+
const icon = computed(() => expansionPanel.isSelected.value ? props.collapseIcon : props.expandIcon);
|
|
22347
22358
|
useRender(() => withDirectives(createVNode("button", {
|
|
22348
22359
|
"class": ['v-expansion-panel-title', {
|
|
22349
22360
|
'v-expansion-panel-title--active': expansionPanel.isSelected.value,
|
|
@@ -22358,11 +22369,17 @@ const VExpansionPanelTitle = genericComponent()({
|
|
|
22358
22369
|
"onClick": !props.readonly ? expansionPanel.toggle : undefined
|
|
22359
22370
|
}, [createVNode("span", {
|
|
22360
22371
|
"class": "v-expansion-panel-title__overlay"
|
|
22361
|
-
}, null), slots.default?.(slotProps.value), !props.hideActions && createVNode(
|
|
22362
|
-
"
|
|
22363
|
-
|
|
22364
|
-
|
|
22365
|
-
|
|
22372
|
+
}, null), slots.default?.(slotProps.value), !props.hideActions && createVNode(VDefaultsProvider, {
|
|
22373
|
+
"defaults": {
|
|
22374
|
+
VIcon: {
|
|
22375
|
+
icon: icon.value
|
|
22376
|
+
}
|
|
22377
|
+
}
|
|
22378
|
+
}, {
|
|
22379
|
+
default: () => [createVNode("span", {
|
|
22380
|
+
"class": "v-expansion-panel-title__icon"
|
|
22381
|
+
}, [slots.actions?.(slotProps.value) ?? createVNode(VIcon, null, null)])]
|
|
22382
|
+
})]), [[resolveDirective("ripple"), props.ripple]]));
|
|
22366
22383
|
return {};
|
|
22367
22384
|
}
|
|
22368
22385
|
});
|
|
@@ -22429,15 +22446,26 @@ const VExpansionPanel = genericComponent()({
|
|
|
22429
22446
|
}, {
|
|
22430
22447
|
default: () => [createVNode("div", {
|
|
22431
22448
|
"class": ['v-expansion-panel__shadow', ...elevationClasses.value]
|
|
22432
|
-
}, null),
|
|
22433
|
-
"
|
|
22434
|
-
|
|
22435
|
-
|
|
22436
|
-
|
|
22437
|
-
|
|
22438
|
-
|
|
22439
|
-
|
|
22440
|
-
|
|
22449
|
+
}, null), createVNode(VDefaultsProvider, {
|
|
22450
|
+
"defaults": {
|
|
22451
|
+
VExpansionPanelTitle: {
|
|
22452
|
+
...expansionPanelTitleProps
|
|
22453
|
+
},
|
|
22454
|
+
VExpansionPanelText: {
|
|
22455
|
+
...expansionPanelTextProps
|
|
22456
|
+
}
|
|
22457
|
+
}
|
|
22458
|
+
}, {
|
|
22459
|
+
default: () => [hasTitle && createVNode(VExpansionPanelTitle, {
|
|
22460
|
+
"key": "title"
|
|
22461
|
+
}, {
|
|
22462
|
+
default: () => [slots.title ? slots.title() : props.title]
|
|
22463
|
+
}), hasText && createVNode(VExpansionPanelText, {
|
|
22464
|
+
"key": "text"
|
|
22465
|
+
}, {
|
|
22466
|
+
default: () => [slots.text ? slots.text() : props.text]
|
|
22467
|
+
}), slots.default?.()]
|
|
22468
|
+
})]
|
|
22441
22469
|
});
|
|
22442
22470
|
});
|
|
22443
22471
|
return {
|
|
@@ -22513,15 +22541,13 @@ const VExpansionPanels = genericComponent()({
|
|
|
22513
22541
|
}
|
|
22514
22542
|
});
|
|
22515
22543
|
|
|
22544
|
+
// Types
|
|
22545
|
+
|
|
22516
22546
|
const makeVFabProps = propsFactory({
|
|
22517
22547
|
app: Boolean,
|
|
22518
22548
|
appear: Boolean,
|
|
22519
22549
|
extended: Boolean,
|
|
22520
22550
|
layout: Boolean,
|
|
22521
|
-
location: {
|
|
22522
|
-
type: String,
|
|
22523
|
-
default: 'bottom end'
|
|
22524
|
-
},
|
|
22525
22551
|
offset: Boolean,
|
|
22526
22552
|
modelValue: {
|
|
22527
22553
|
type: Boolean,
|
|
@@ -22531,6 +22557,7 @@ const makeVFabProps = propsFactory({
|
|
|
22531
22557
|
active: true
|
|
22532
22558
|
}), ['location']),
|
|
22533
22559
|
...makeLayoutItemProps(),
|
|
22560
|
+
...makeLocationProps(),
|
|
22534
22561
|
...makeTransitionProps({
|
|
22535
22562
|
transition: 'fab-transition'
|
|
22536
22563
|
})
|
|
@@ -22557,11 +22584,11 @@ const VFab = genericComponent()({
|
|
|
22557
22584
|
const hasPosition = computed(() => props.app || props.absolute);
|
|
22558
22585
|
const position = computed(() => {
|
|
22559
22586
|
if (!hasPosition.value) return false;
|
|
22560
|
-
return props.location
|
|
22587
|
+
return props.location?.split(' ').shift() ?? 'bottom';
|
|
22561
22588
|
});
|
|
22562
22589
|
const orientation = computed(() => {
|
|
22563
22590
|
if (!hasPosition.value) return false;
|
|
22564
|
-
return props.location
|
|
22591
|
+
return props.location?.split(' ')[1] ?? 'end';
|
|
22565
22592
|
});
|
|
22566
22593
|
useToggleScope(() => props.app, () => {
|
|
22567
22594
|
const layout = useLayoutItem({
|
|
@@ -27988,7 +28015,6 @@ const makeVNumberInputProps = propsFactory({
|
|
|
27988
28015
|
}, 'VNumberInput');
|
|
27989
28016
|
const VNumberInput = genericComponent()({
|
|
27990
28017
|
name: 'VNumberInput',
|
|
27991
|
-
inheritAttrs: false,
|
|
27992
28018
|
props: {
|
|
27993
28019
|
...makeVNumberInputProps()
|
|
27994
28020
|
},
|
|
@@ -28762,6 +28788,7 @@ const VTimePickerClock = genericComponent()({
|
|
|
28762
28788
|
return !props.allowedValues || props.allowedValues(value);
|
|
28763
28789
|
}
|
|
28764
28790
|
function wheel(e) {
|
|
28791
|
+
if (!props.scrollable || props.disabled) return;
|
|
28765
28792
|
e.preventDefault();
|
|
28766
28793
|
const delta = Math.sign(-e.deltaY || 1);
|
|
28767
28794
|
let value = displayedValue.value;
|
|
@@ -28856,6 +28883,7 @@ const VTimePickerClock = genericComponent()({
|
|
|
28856
28883
|
}
|
|
28857
28884
|
}
|
|
28858
28885
|
function onMouseDown(e) {
|
|
28886
|
+
if (props.disabled) return;
|
|
28859
28887
|
e.preventDefault();
|
|
28860
28888
|
window.addEventListener('mousemove', onDragMove);
|
|
28861
28889
|
window.addEventListener('touchmove', onDragMove);
|
|
@@ -28886,7 +28914,7 @@ const VTimePickerClock = genericComponent()({
|
|
|
28886
28914
|
}],
|
|
28887
28915
|
"onMousedown": onMouseDown,
|
|
28888
28916
|
"onTouchstart": onMouseDown,
|
|
28889
|
-
"onWheel":
|
|
28917
|
+
"onWheel": wheel,
|
|
28890
28918
|
"ref": clockRef
|
|
28891
28919
|
}, [createVNode("div", {
|
|
28892
28920
|
"class": "v-time-picker-clock__inner",
|
|
@@ -28988,6 +29016,7 @@ const VTimePickerControls = genericComponent()({
|
|
|
28988
29016
|
}, [createVNode(VBtn, {
|
|
28989
29017
|
"active": props.selecting === 1,
|
|
28990
29018
|
"color": props.selecting === 1 ? props.color : undefined,
|
|
29019
|
+
"disabled": props.disabled,
|
|
28991
29020
|
"variant": "tonal",
|
|
28992
29021
|
"class": {
|
|
28993
29022
|
'v-time-picker-controls__time__btn': true,
|
|
@@ -29009,6 +29038,7 @@ const VTimePickerControls = genericComponent()({
|
|
|
29009
29038
|
'v-time-picker-controls__time--with-ampm__btn': props.ampm,
|
|
29010
29039
|
'v-time-picker-controls__time--with-seconds__btn': props.useSeconds
|
|
29011
29040
|
},
|
|
29041
|
+
"disabled": props.disabled,
|
|
29012
29042
|
"variant": "tonal",
|
|
29013
29043
|
"text": props.minute == null ? '--' : pad(props.minute),
|
|
29014
29044
|
"onClick": () => emit('update:selecting', SelectingTimes.Minute)
|
|
@@ -29026,6 +29056,7 @@ const VTimePickerControls = genericComponent()({
|
|
|
29026
29056
|
'v-time-picker-controls__time__btn__active': props.selecting === 3,
|
|
29027
29057
|
'v-time-picker-controls__time--with-seconds__btn': props.useSeconds
|
|
29028
29058
|
},
|
|
29059
|
+
"disabled": props.disabled,
|
|
29029
29060
|
"text": props.second == null ? '--' : pad(props.second)
|
|
29030
29061
|
}, null), props.ampm && createVNode("div", {
|
|
29031
29062
|
"class": ['v-time-picker-controls__ampm', {
|
|
@@ -29039,8 +29070,9 @@ const VTimePickerControls = genericComponent()({
|
|
|
29039
29070
|
'v-time-picker-controls__ampm__btn': true,
|
|
29040
29071
|
'v-time-picker-controls__ampm__btn__active': props.period === 'am'
|
|
29041
29072
|
},
|
|
29073
|
+
"disabled": props.disabled,
|
|
29042
29074
|
"text": t('$vuetify.timePicker.am'),
|
|
29043
|
-
"variant":
|
|
29075
|
+
"variant": props.disabled && props.period === 'am' ? 'elevated' : 'tonal',
|
|
29044
29076
|
"onClick": () => props.period !== 'am' ? emit('update:period', 'am') : null
|
|
29045
29077
|
}, null), createVNode(VBtn, {
|
|
29046
29078
|
"active": props.period === 'pm',
|
|
@@ -29050,8 +29082,9 @@ const VTimePickerControls = genericComponent()({
|
|
|
29050
29082
|
'v-time-picker-controls__ampm__btn': true,
|
|
29051
29083
|
'v-time-picker-controls__ampm__btn__active': props.period === 'pm'
|
|
29052
29084
|
},
|
|
29085
|
+
"disabled": props.disabled,
|
|
29053
29086
|
"text": t('$vuetify.timePicker.pm'),
|
|
29054
|
-
"variant":
|
|
29087
|
+
"variant": props.disabled && props.period === 'pm' ? 'elevated' : 'tonal',
|
|
29055
29088
|
"onClick": () => props.period !== 'pm' ? emit('update:period', 'pm') : null
|
|
29056
29089
|
}, null)])])]);
|
|
29057
29090
|
});
|
|
@@ -29635,6 +29668,7 @@ const VTreeview = genericComponent()({
|
|
|
29635
29668
|
let {
|
|
29636
29669
|
slots
|
|
29637
29670
|
} = _ref;
|
|
29671
|
+
const vm = getCurrentInstance('VTreeview');
|
|
29638
29672
|
const {
|
|
29639
29673
|
items
|
|
29640
29674
|
} = useListItems(props);
|
|
@@ -29717,15 +29751,13 @@ const VTreeview = genericComponent()({
|
|
|
29717
29751
|
}
|
|
29718
29752
|
});
|
|
29719
29753
|
useRender(() => {
|
|
29720
|
-
const listProps = VList.filterProps(props);
|
|
29754
|
+
const listProps = VList.filterProps(vm.vnode.props);
|
|
29721
29755
|
const treeviewChildrenProps = VTreeviewChildren.filterProps(props);
|
|
29722
29756
|
return createVNode(VList, mergeProps({
|
|
29723
29757
|
"ref": vListRef
|
|
29724
29758
|
}, listProps, {
|
|
29725
29759
|
"class": ['v-treeview', props.class],
|
|
29726
29760
|
"style": props.style,
|
|
29727
|
-
"opened": opened.value,
|
|
29728
|
-
"onUpdate:opened": $event => opened.value = $event,
|
|
29729
29761
|
"activated": activated.value,
|
|
29730
29762
|
"onUpdate:activated": $event => activated.value = $event,
|
|
29731
29763
|
"selected": selected.value,
|
|
@@ -30237,7 +30269,7 @@ function createVuetify$1() {
|
|
|
30237
30269
|
goTo
|
|
30238
30270
|
};
|
|
30239
30271
|
}
|
|
30240
|
-
const version$1 = "3.6.
|
|
30272
|
+
const version$1 = "3.6.10";
|
|
30241
30273
|
createVuetify$1.version = version$1;
|
|
30242
30274
|
|
|
30243
30275
|
// Vue's inject() can only be used in setup
|
|
@@ -30490,7 +30522,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
30490
30522
|
|
|
30491
30523
|
/* eslint-disable local-rules/sort-imports */
|
|
30492
30524
|
|
|
30493
|
-
const version = "3.6.
|
|
30525
|
+
const version = "3.6.10";
|
|
30494
30526
|
|
|
30495
30527
|
/* eslint-disable local-rules/sort-imports */
|
|
30496
30528
|
|