vuetify 3.10.3 → 3.10.5
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 +3285 -3269
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +176 -176
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5963 -5923
- package/dist/vuetify-labs.cjs +125 -81
- package/dist/vuetify-labs.css +6900 -6889
- package/dist/vuetify-labs.d.ts +117 -59
- package/dist/vuetify-labs.esm.js +126 -82
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +125 -81
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +117 -77
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3658 -3647
- package/dist/vuetify.d.ts +117 -59
- package/dist/vuetify.esm.js +117 -77
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +117 -77
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +43 -39
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.css +10 -0
- package/lib/components/VBadge/VBadge.sass +9 -0
- package/lib/components/VBtn/VBtn.js +1 -1
- package/lib/components/VBtn/VBtn.js.map +1 -1
- package/lib/components/VChip/VChip.js +13 -2
- package/lib/components/VChip/VChip.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +13 -0
- package/lib/components/VCombobox/VCombobox.js +3 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.js +4 -1
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +3 -0
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableRow.js +3 -0
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableRows.js +4 -3
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +29 -11
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VDialog/__test__/VDialog.spec.browser.js +41 -0
- package/lib/components/VDialog/__test__/VDialog.spec.browser.js.map +1 -1
- package/lib/components/VDivider/VDivider.css +1 -0
- package/lib/components/VDivider/VDivider.sass +1 -0
- package/lib/components/VFileInput/VFileInput.js +2 -1
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VKbd/_variables.scss +3 -1
- package/lib/components/VList/VListItem.js +1 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VTable/VTable.js +20 -32
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/composables/group.d.ts +2 -0
- package/lib/composables/group.js +15 -9
- package/lib/composables/group.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +59 -59
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.js +7 -3
- package/lib/labs/VCalendar/VCalendar.js.map +1 -1
- package/lib/labs/VCalendar/composables/calendarWithEvents.js +7 -4
- package/lib/labs/VCalendar/composables/calendarWithEvents.js.map +1 -1
- package/lib/labs/VFileUpload/VFileUpload.js +2 -1
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/lib/labs/rules/rules.js +3 -3
- package/lib/labs/rules/rules.js.map +1 -1
- package/lib/util/animation.js +1 -1
- package/lib/util/animation.js.map +1 -1
- package/lib/util/box.d.ts +1 -1
- package/lib/util/box.js +19 -14
- package/lib/util/box.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.10.
|
|
2
|
+
* Vuetify v3.10.5
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -588,17 +588,19 @@
|
|
|
588
588
|
}
|
|
589
589
|
|
|
590
590
|
class Box {
|
|
591
|
-
constructor(
|
|
592
|
-
|
|
591
|
+
constructor(args) {
|
|
592
|
+
const pageScale = document.body.currentCSSZoom ?? 1;
|
|
593
|
+
const factor = args instanceof DOMRect ? 1 + (1 - pageScale) / pageScale : 1;
|
|
594
|
+
const {
|
|
593
595
|
x,
|
|
594
596
|
y,
|
|
595
597
|
width,
|
|
596
598
|
height
|
|
597
|
-
} =
|
|
598
|
-
this.x = x;
|
|
599
|
-
this.y = y;
|
|
600
|
-
this.width = width;
|
|
601
|
-
this.height = height;
|
|
599
|
+
} = args;
|
|
600
|
+
this.x = x * factor;
|
|
601
|
+
this.y = y * factor;
|
|
602
|
+
this.width = width * factor;
|
|
603
|
+
this.height = height * factor;
|
|
602
604
|
}
|
|
603
605
|
get top() {
|
|
604
606
|
return this.y;
|
|
@@ -627,14 +629,16 @@
|
|
|
627
629
|
}
|
|
628
630
|
function getTargetBox(target) {
|
|
629
631
|
if (Array.isArray(target)) {
|
|
632
|
+
const pageScale = document.body.currentCSSZoom ?? 1;
|
|
633
|
+
const factor = 1 + (1 - pageScale) / pageScale;
|
|
630
634
|
return new Box({
|
|
631
|
-
x: target[0],
|
|
632
|
-
y: target[1],
|
|
633
|
-
width: 0,
|
|
634
|
-
height: 0
|
|
635
|
+
x: target[0] * factor,
|
|
636
|
+
y: target[1] * factor,
|
|
637
|
+
width: 0 * factor,
|
|
638
|
+
height: 0 * factor
|
|
635
639
|
});
|
|
636
640
|
} else {
|
|
637
|
-
return target.getBoundingClientRect();
|
|
641
|
+
return new Box(target.getBoundingClientRect());
|
|
638
642
|
}
|
|
639
643
|
}
|
|
640
644
|
function getElementBox(el) {
|
|
@@ -647,11 +651,12 @@
|
|
|
647
651
|
height: document.documentElement.clientHeight
|
|
648
652
|
});
|
|
649
653
|
} else {
|
|
654
|
+
const pageScale = document.body.currentCSSZoom ?? 1;
|
|
650
655
|
return new Box({
|
|
651
656
|
x: visualViewport.scale > 1 ? 0 : visualViewport.offsetLeft,
|
|
652
657
|
y: visualViewport.scale > 1 ? 0 : visualViewport.offsetTop,
|
|
653
|
-
width: visualViewport.width * visualViewport.scale,
|
|
654
|
-
height: visualViewport.height * visualViewport.scale
|
|
658
|
+
width: visualViewport.width * visualViewport.scale / pageScale,
|
|
659
|
+
height: visualViewport.height * visualViewport.scale / pageScale
|
|
655
660
|
});
|
|
656
661
|
}
|
|
657
662
|
} else {
|
|
@@ -669,7 +674,7 @@
|
|
|
669
674
|
|
|
670
675
|
/** @see https://stackoverflow.com/a/57876601/2074736 */
|
|
671
676
|
function nullifyTransforms(el) {
|
|
672
|
-
const rect = el.getBoundingClientRect();
|
|
677
|
+
const rect = new Box(el.getBoundingClientRect());
|
|
673
678
|
const style = getComputedStyle(el);
|
|
674
679
|
const tx = style.transform;
|
|
675
680
|
if (tx) {
|
|
@@ -5008,14 +5013,18 @@
|
|
|
5008
5013
|
}
|
|
5009
5014
|
const value = vue.toRef(() => props.value);
|
|
5010
5015
|
const disabled = vue.computed(() => !!(group.disabled.value || props.disabled));
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5016
|
+
function register() {
|
|
5017
|
+
group?.register({
|
|
5018
|
+
id,
|
|
5019
|
+
value,
|
|
5020
|
+
disabled
|
|
5021
|
+
}, vm);
|
|
5022
|
+
}
|
|
5023
|
+
function unregister() {
|
|
5024
|
+
group?.unregister(id);
|
|
5025
|
+
}
|
|
5026
|
+
vue.onMounted(() => register());
|
|
5027
|
+
vue.onBeforeUnmount(() => unregister());
|
|
5019
5028
|
const isSelected = vue.computed(() => {
|
|
5020
5029
|
return group.isSelected(id);
|
|
5021
5030
|
});
|
|
@@ -5043,7 +5052,9 @@
|
|
|
5043
5052
|
selectedClass,
|
|
5044
5053
|
value,
|
|
5045
5054
|
disabled,
|
|
5046
|
-
group
|
|
5055
|
+
group,
|
|
5056
|
+
register,
|
|
5057
|
+
unregister
|
|
5047
5058
|
};
|
|
5048
5059
|
}
|
|
5049
5060
|
function useGroup(props, injectKey) {
|
|
@@ -6405,7 +6416,7 @@
|
|
|
6405
6416
|
});
|
|
6406
6417
|
function onClick(e) {
|
|
6407
6418
|
if (isDisabled.value || link.isLink.value && (e.metaKey || e.ctrlKey || e.shiftKey || e.button !== 0 || attrs.target === '_blank')) return;
|
|
6408
|
-
if (link.
|
|
6419
|
+
if (link.isRouterLink.value) {
|
|
6409
6420
|
link.navigate?.(e);
|
|
6410
6421
|
} else {
|
|
6411
6422
|
// Group active state for links is handled by useSelectLink
|
|
@@ -8851,6 +8862,7 @@
|
|
|
8851
8862
|
} = provideTheme(props);
|
|
8852
8863
|
const isActive = useProxiedModel(props, 'modelValue');
|
|
8853
8864
|
const group = useGroupItem(props, VChipGroupSymbol, false);
|
|
8865
|
+
const slideGroup = useGroupItem(props, VSlideGroupSymbol, false);
|
|
8854
8866
|
const link = useLink(props, attrs);
|
|
8855
8867
|
const isLink = vue.toRef(() => props.link !== false && link.isLink.value);
|
|
8856
8868
|
const isClickable = vue.computed(() => !props.disabled && props.link !== false && (!!group || props.link || link.isClickable.value));
|
|
@@ -8864,6 +8876,15 @@
|
|
|
8864
8876
|
emit('click:close', e);
|
|
8865
8877
|
}
|
|
8866
8878
|
}));
|
|
8879
|
+
vue.watch(isActive, val => {
|
|
8880
|
+
if (val) {
|
|
8881
|
+
group?.register();
|
|
8882
|
+
slideGroup?.register();
|
|
8883
|
+
} else {
|
|
8884
|
+
group?.unregister();
|
|
8885
|
+
slideGroup?.unregister();
|
|
8886
|
+
}
|
|
8887
|
+
});
|
|
8867
8888
|
const {
|
|
8868
8889
|
colorClasses,
|
|
8869
8890
|
colorStyles,
|
|
@@ -10017,7 +10038,7 @@
|
|
|
10017
10038
|
const isLink = vue.toRef(() => props.link !== false && link.isLink.value);
|
|
10018
10039
|
const isSelectable = vue.computed(() => !!list && (root.selectable.value || root.activatable.value || props.value != null));
|
|
10019
10040
|
const isClickable = vue.computed(() => !props.disabled && props.link !== false && (props.link || link.isClickable.value || isSelectable.value));
|
|
10020
|
-
const role = vue.computed(() => list ? isSelectable.value ? 'option' : 'listitem' : undefined);
|
|
10041
|
+
const role = vue.computed(() => list ? isLink.value ? 'link' : isSelectable.value ? 'option' : 'listitem' : undefined);
|
|
10021
10042
|
const ariaSelected = vue.computed(() => {
|
|
10022
10043
|
if (!isSelectable.value) return undefined;
|
|
10023
10044
|
return root.activatable.value ? isActivated.value : root.selectable.value ? isSelected.value : isActive.value;
|
|
@@ -15045,10 +15066,11 @@
|
|
|
15045
15066
|
scopeId
|
|
15046
15067
|
} = useScopeId();
|
|
15047
15068
|
const overlay = vue.ref();
|
|
15048
|
-
function onFocusin(e) {
|
|
15069
|
+
async function onFocusin(e) {
|
|
15049
15070
|
const before = e.relatedTarget;
|
|
15050
15071
|
const after = e.target;
|
|
15051
|
-
|
|
15072
|
+
await vue.nextTick();
|
|
15073
|
+
if (isActive.value && before !== after && overlay.value?.contentEl &&
|
|
15052
15074
|
// We're the topmost dialog
|
|
15053
15075
|
overlay.value?.globalTop &&
|
|
15054
15076
|
// It isn't the document or the dialog body
|
|
@@ -15056,22 +15078,39 @@
|
|
|
15056
15078
|
// It isn't inside the dialog body
|
|
15057
15079
|
!overlay.value.contentEl.contains(after)) {
|
|
15058
15080
|
const focusable = focusableChildren(overlay.value.contentEl);
|
|
15059
|
-
|
|
15060
|
-
|
|
15061
|
-
|
|
15062
|
-
|
|
15063
|
-
|
|
15064
|
-
|
|
15065
|
-
|
|
15066
|
-
|
|
15081
|
+
focusable[0]?.focus();
|
|
15082
|
+
}
|
|
15083
|
+
}
|
|
15084
|
+
function onKeydown(e) {
|
|
15085
|
+
if (e.key !== 'Tab' || !overlay.value?.contentEl) return;
|
|
15086
|
+
const focusable = focusableChildren(overlay.value.contentEl);
|
|
15087
|
+
if (!focusable.length) return;
|
|
15088
|
+
const firstElement = focusable[0];
|
|
15089
|
+
const lastElement = focusable[focusable.length - 1];
|
|
15090
|
+
const active = document.activeElement;
|
|
15091
|
+
if (e.shiftKey && active === firstElement) {
|
|
15092
|
+
e.preventDefault();
|
|
15093
|
+
lastElement.focus();
|
|
15094
|
+
} else if (!e.shiftKey && active === lastElement) {
|
|
15095
|
+
e.preventDefault();
|
|
15096
|
+
firstElement.focus();
|
|
15067
15097
|
}
|
|
15068
15098
|
}
|
|
15069
15099
|
vue.onBeforeUnmount(() => {
|
|
15070
15100
|
document.removeEventListener('focusin', onFocusin);
|
|
15101
|
+
document.removeEventListener('keydown', onKeydown);
|
|
15071
15102
|
});
|
|
15072
15103
|
if (IN_BROWSER) {
|
|
15073
15104
|
vue.watch(() => isActive.value && props.retainFocus, val => {
|
|
15074
|
-
|
|
15105
|
+
if (val) {
|
|
15106
|
+
document.addEventListener('focusin', onFocusin, {
|
|
15107
|
+
once: true
|
|
15108
|
+
});
|
|
15109
|
+
document.addEventListener('keydown', onKeydown);
|
|
15110
|
+
} else {
|
|
15111
|
+
document.removeEventListener('focusin', onFocusin);
|
|
15112
|
+
document.removeEventListener('keydown', onKeydown);
|
|
15113
|
+
}
|
|
15075
15114
|
}, {
|
|
15076
15115
|
immediate: true
|
|
15077
15116
|
});
|
|
@@ -19459,6 +19498,7 @@
|
|
|
19459
19498
|
// Types
|
|
19460
19499
|
|
|
19461
19500
|
const makeVComboboxProps = propsFactory({
|
|
19501
|
+
alwaysFilter: Boolean,
|
|
19462
19502
|
autoSelectFirst: {
|
|
19463
19503
|
type: [Boolean, String]
|
|
19464
19504
|
},
|
|
@@ -19558,7 +19598,7 @@
|
|
|
19558
19598
|
const {
|
|
19559
19599
|
filteredItems,
|
|
19560
19600
|
getMatches
|
|
19561
|
-
} = useFilter(props, items, () => isPristine.value ?
|
|
19601
|
+
} = useFilter(props, items, () => props.alwaysFilter || !isPristine.value ? search.value : '');
|
|
19562
19602
|
const displayItems = vue.computed(() => {
|
|
19563
19603
|
if (props.hideSelected) {
|
|
19564
19604
|
return filteredItems.value.filter(filteredItem => !model.value.some(s => s.value === filteredItem.value));
|
|
@@ -19605,6 +19645,7 @@
|
|
|
19605
19645
|
const listEvents = useScrolling(listRef, vTextFieldRef);
|
|
19606
19646
|
function onClear(e) {
|
|
19607
19647
|
cleared = true;
|
|
19648
|
+
vue.nextTick(() => cleared = false);
|
|
19608
19649
|
if (props.openOnClear) {
|
|
19609
19650
|
menu.value = true;
|
|
19610
19651
|
}
|
|
@@ -21838,6 +21879,7 @@
|
|
|
21838
21879
|
},
|
|
21839
21880
|
/** @deprecated */
|
|
21840
21881
|
sticky: Boolean,
|
|
21882
|
+
...makeDensityProps(),
|
|
21841
21883
|
...makeDisplayProps(),
|
|
21842
21884
|
...makeLoaderProps()
|
|
21843
21885
|
}, 'VDataTableHeaders');
|
|
@@ -21962,6 +22004,7 @@
|
|
|
21962
22004
|
if (isEmpty) return '';
|
|
21963
22005
|
if (column.key === 'data-table-select') {
|
|
21964
22006
|
return slots['header.data-table-select']?.(columnSlotProps) ?? (showSelectAll.value && vue.createVNode(VCheckboxBtn, {
|
|
22007
|
+
"density": props.density,
|
|
21965
22008
|
"modelValue": allSelected.value,
|
|
21966
22009
|
"indeterminate": someSelected.value && !allSelected.value,
|
|
21967
22010
|
"onUpdate:modelValue": selectAll
|
|
@@ -22062,7 +22105,8 @@
|
|
|
22062
22105
|
groupExpandIcon: {
|
|
22063
22106
|
type: IconValue,
|
|
22064
22107
|
default: '$tableGroupExpand'
|
|
22065
|
-
}
|
|
22108
|
+
},
|
|
22109
|
+
...makeDensityProps()
|
|
22066
22110
|
}, 'VDataTableGroupHeaderRow');
|
|
22067
22111
|
const VDataTableGroupHeaderRow = genericComponent()({
|
|
22068
22112
|
name: 'VDataTableGroupHeaderRow',
|
|
@@ -22130,6 +22174,7 @@
|
|
|
22130
22174
|
"noPadding": true
|
|
22131
22175
|
}, {
|
|
22132
22176
|
default: () => [vue.createVNode(VCheckboxBtn, {
|
|
22177
|
+
"density": props.density,
|
|
22133
22178
|
"modelValue": modelValue,
|
|
22134
22179
|
"indeterminate": indeterminate,
|
|
22135
22180
|
"onUpdate:modelValue": selectGroup
|
|
@@ -22158,6 +22203,7 @@
|
|
|
22158
22203
|
onClick: EventProp(),
|
|
22159
22204
|
onContextmenu: EventProp(),
|
|
22160
22205
|
onDblclick: EventProp(),
|
|
22206
|
+
...makeDensityProps(),
|
|
22161
22207
|
...makeDisplayProps()
|
|
22162
22208
|
}, 'VDataTableRow');
|
|
22163
22209
|
const VDataTableRow = genericComponent()({
|
|
@@ -22266,6 +22312,7 @@
|
|
|
22266
22312
|
}
|
|
22267
22313
|
}) ?? vue.createVNode(VCheckboxBtn, {
|
|
22268
22314
|
"disabled": !item.selectable,
|
|
22315
|
+
"density": props.density,
|
|
22269
22316
|
"modelValue": isSelected([item]),
|
|
22270
22317
|
"onClick": vue.withModifiers(event => toggleSelect(item, props.index, event), ['stop'])
|
|
22271
22318
|
}, null);
|
|
@@ -22318,8 +22365,8 @@
|
|
|
22318
22365
|
},
|
|
22319
22366
|
rowProps: [Object, Function],
|
|
22320
22367
|
cellProps: [Object, Function],
|
|
22321
|
-
...pick(makeVDataTableRowProps(), ['collapseIcon', 'expandIcon']),
|
|
22322
|
-
...pick(makeVDataTableGroupHeaderRowProps(), ['groupCollapseIcon', 'groupExpandIcon']),
|
|
22368
|
+
...pick(makeVDataTableRowProps(), ['collapseIcon', 'expandIcon', 'density']),
|
|
22369
|
+
...pick(makeVDataTableGroupHeaderRowProps(), ['groupCollapseIcon', 'groupExpandIcon', 'density']),
|
|
22323
22370
|
...makeDisplayProps()
|
|
22324
22371
|
}, 'VDataTableRows');
|
|
22325
22372
|
const VDataTableRows = genericComponent()({
|
|
@@ -22354,7 +22401,7 @@
|
|
|
22354
22401
|
mobile
|
|
22355
22402
|
} = useDisplay(props);
|
|
22356
22403
|
useRender(() => {
|
|
22357
|
-
const groupHeaderRowProps = pick(props, ['groupCollapseIcon', 'groupExpandIcon']);
|
|
22404
|
+
const groupHeaderRowProps = pick(props, ['groupCollapseIcon', 'groupExpandIcon', 'density']);
|
|
22358
22405
|
if (props.loading && (!props.items.length || slots.loading)) {
|
|
22359
22406
|
return vue.createElementVNode("tr", {
|
|
22360
22407
|
"class": "v-data-table-rows-loading",
|
|
@@ -22420,6 +22467,7 @@
|
|
|
22420
22467
|
cellProps: props.cellProps,
|
|
22421
22468
|
collapseIcon: props.collapseIcon,
|
|
22422
22469
|
expandIcon: props.expandIcon,
|
|
22470
|
+
density: props.density,
|
|
22423
22471
|
mobile: mobile.value
|
|
22424
22472
|
}, getPrefixedEventHandlers(attrs, ':row', () => slotProps), typeof props.rowProps === 'function' ? props.rowProps({
|
|
22425
22473
|
item: slotProps.item,
|
|
@@ -22436,6 +22484,8 @@
|
|
|
22436
22484
|
}
|
|
22437
22485
|
});
|
|
22438
22486
|
|
|
22487
|
+
// Types
|
|
22488
|
+
|
|
22439
22489
|
const makeVTableProps = propsFactory({
|
|
22440
22490
|
fixedHeader: Boolean,
|
|
22441
22491
|
fixedFooter: Boolean,
|
|
@@ -22465,37 +22515,26 @@
|
|
|
22465
22515
|
const {
|
|
22466
22516
|
densityClasses
|
|
22467
22517
|
} = useDensity(props);
|
|
22468
|
-
useRender(() => {
|
|
22469
|
-
|
|
22470
|
-
|
|
22471
|
-
|
|
22518
|
+
useRender(() => vue.createVNode(props.tag, {
|
|
22519
|
+
"class": vue.normalizeClass(['v-table', {
|
|
22520
|
+
'v-table--fixed-height': !!props.height,
|
|
22521
|
+
'v-table--fixed-header': props.fixedHeader,
|
|
22522
|
+
'v-table--fixed-footer': props.fixedFooter,
|
|
22523
|
+
'v-table--has-top': !!slots.top,
|
|
22524
|
+
'v-table--has-bottom': !!slots.bottom,
|
|
22525
|
+
'v-table--hover': props.hover,
|
|
22526
|
+
'v-table--striped-even': props.striped === 'even',
|
|
22527
|
+
'v-table--striped-odd': props.striped === 'odd'
|
|
22528
|
+
}, themeClasses.value, densityClasses.value, props.class]),
|
|
22529
|
+
"style": vue.normalizeStyle(props.style)
|
|
22530
|
+
}, {
|
|
22531
|
+
default: () => [slots.top?.(), slots.default ? vue.createElementVNode("div", {
|
|
22532
|
+
"class": "v-table__wrapper",
|
|
22533
|
+
"style": {
|
|
22534
|
+
height: convertToUnit(props.height)
|
|
22472
22535
|
}
|
|
22473
|
-
}
|
|
22474
|
-
|
|
22475
|
-
"class": vue.normalizeClass(['v-table', {
|
|
22476
|
-
'v-table--fixed-height': !!props.height,
|
|
22477
|
-
'v-table--fixed-header': props.fixedHeader,
|
|
22478
|
-
'v-table--fixed-footer': props.fixedFooter,
|
|
22479
|
-
'v-table--has-top': !!slots.top,
|
|
22480
|
-
'v-table--has-bottom': !!slots.bottom,
|
|
22481
|
-
'v-table--hover': props.hover,
|
|
22482
|
-
'v-table--striped-even': props.striped === 'even',
|
|
22483
|
-
'v-table--striped-odd': props.striped === 'odd'
|
|
22484
|
-
}, themeClasses.value, densityClasses.value, props.class]),
|
|
22485
|
-
"style": vue.normalizeStyle(props.style)
|
|
22486
|
-
}, {
|
|
22487
|
-
default: () => [slots.top?.(), vue.createVNode(VDefaultsProvider, {
|
|
22488
|
-
"defaults": tableContentDefaults
|
|
22489
|
-
}, {
|
|
22490
|
-
default: () => [slots.default ? vue.createElementVNode("div", {
|
|
22491
|
-
"class": "v-table__wrapper",
|
|
22492
|
-
"style": {
|
|
22493
|
-
height: convertToUnit(props.height)
|
|
22494
|
-
}
|
|
22495
|
-
}, [vue.createElementVNode("table", null, [slots.default()])]) : slots.wrapper?.()]
|
|
22496
|
-
}), slots.bottom?.()]
|
|
22497
|
-
});
|
|
22498
|
-
});
|
|
22536
|
+
}, [vue.createElementVNode("table", null, [slots.default()])]) : slots.wrapper?.(), slots.bottom?.()]
|
|
22537
|
+
}));
|
|
22499
22538
|
return {};
|
|
22500
22539
|
}
|
|
22501
22540
|
});
|
|
@@ -25278,7 +25317,8 @@
|
|
|
25278
25317
|
'onClick:clear': onClear
|
|
25279
25318
|
};
|
|
25280
25319
|
const expectsDirectory = attrs.webkitdirectory !== undefined && attrs.webkitdirectory !== false;
|
|
25281
|
-
const
|
|
25320
|
+
const acceptFallback = attrs.accept ? String(attrs.accept) : undefined;
|
|
25321
|
+
const inputAccept = expectsDirectory ? undefined : props.filterByType ?? acceptFallback;
|
|
25282
25322
|
return vue.createVNode(VInput, vue.mergeProps({
|
|
25283
25323
|
"ref": vInputRef,
|
|
25284
25324
|
"modelValue": props.multiple ? model.value : model.value[0],
|
|
@@ -31533,6 +31573,7 @@
|
|
|
31533
31573
|
...itemProps,
|
|
31534
31574
|
...activatorProps,
|
|
31535
31575
|
value: itemProps?.value,
|
|
31576
|
+
indentLines: indentLines.node,
|
|
31536
31577
|
onToggleExpand: [() => checkChildren(item), activatorProps.onClick],
|
|
31537
31578
|
onClick: isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
31538
31579
|
};
|
|
@@ -31546,7 +31587,6 @@
|
|
|
31546
31587
|
}, listItemProps, {
|
|
31547
31588
|
"hasCustomPrepend": !!slots.prepend,
|
|
31548
31589
|
"hideActions": props.hideActions,
|
|
31549
|
-
"indentLines": indentLines.node,
|
|
31550
31590
|
"value": props.returnObject ? item.raw : itemProps.value,
|
|
31551
31591
|
"loading": loading
|
|
31552
31592
|
}), slotsWithItem));
|
|
@@ -32241,7 +32281,7 @@
|
|
|
32241
32281
|
};
|
|
32242
32282
|
});
|
|
32243
32283
|
}
|
|
32244
|
-
const version$1 = "3.10.
|
|
32284
|
+
const version$1 = "3.10.5";
|
|
32245
32285
|
createVuetify$1.version = version$1;
|
|
32246
32286
|
|
|
32247
32287
|
// Vue's inject() can only be used in setup
|
|
@@ -32266,7 +32306,7 @@
|
|
|
32266
32306
|
...options
|
|
32267
32307
|
});
|
|
32268
32308
|
};
|
|
32269
|
-
const version = "3.10.
|
|
32309
|
+
const version = "3.10.5";
|
|
32270
32310
|
createVuetify.version = version;
|
|
32271
32311
|
|
|
32272
32312
|
exports.blueprints = index;
|