vuetify 3.6.10 → 3.6.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +2 -2
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +5 -5
- package/dist/vuetify-labs.css +2995 -2995
- package/dist/vuetify-labs.d.ts +18 -30
- package/dist/vuetify-labs.esm.js +57 -69
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +57 -69
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2913 -2913
- package/dist/vuetify.d.ts +44 -44
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +1 -1
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +44 -44
- package/lib/labs/VNumberInput/VNumberInput.mjs +48 -55
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVertical.mjs +2 -0
- package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs +5 -12
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +18 -30
- package/lib/labs/components.d.mts +18 -30
- package/package.json +2 -2
package/dist/vuetify-labs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.6.
|
|
2
|
+
* Vuetify v3.6.11
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -10833,7 +10833,7 @@
|
|
|
10833
10833
|
const potentialShadowDomRoot = vue.computed(() => activatorEl?.value?.getRootNode());
|
|
10834
10834
|
const {
|
|
10835
10835
|
teleportTarget
|
|
10836
|
-
} = useTeleport(vue.computed(() => props.attach || props.contained || potentialShadowDomRoot.value instanceof ShadowRoot ? potentialShadowDomRoot.value : false));
|
|
10836
|
+
} = useTeleport(vue.computed(() => props.attach || props.contained || potentialShadowDomRoot.value instanceof ShadowRoot ? potentialShadowDomRoot.value ?? true : false));
|
|
10837
10837
|
const {
|
|
10838
10838
|
dimensionStyles
|
|
10839
10839
|
} = useDimension(props);
|
|
@@ -28055,6 +28055,10 @@
|
|
|
28055
28055
|
const controlVariant = vue.computed(() => {
|
|
28056
28056
|
return props.hideInput ? 'stacked' : props.controlVariant;
|
|
28057
28057
|
});
|
|
28058
|
+
const incrementIcon = vue.computed(() => controlVariant.value === 'split' ? '$plus' : '$collapse');
|
|
28059
|
+
const decrementIcon = vue.computed(() => controlVariant.value === 'split' ? '$minus' : '$expand');
|
|
28060
|
+
const controlNodeSize = vue.computed(() => controlVariant.value === 'split' ? 'default' : 'small');
|
|
28061
|
+
const controlNodeDefaultHeight = vue.computed(() => controlVariant.value === 'stacked' ? 'auto' : '100%');
|
|
28058
28062
|
const incrementSlotProps = vue.computed(() => ({
|
|
28059
28063
|
click: onClickUp
|
|
28060
28064
|
}));
|
|
@@ -28112,18 +28116,42 @@
|
|
|
28112
28116
|
modelValue: _,
|
|
28113
28117
|
...textFieldProps
|
|
28114
28118
|
} = VTextField.filterProps(props);
|
|
28115
|
-
function
|
|
28116
|
-
|
|
28117
|
-
|
|
28118
|
-
"
|
|
28119
|
-
|
|
28119
|
+
function incrementControlNode() {
|
|
28120
|
+
return !slots.increment ? vue.createVNode(VBtn, {
|
|
28121
|
+
"disabled": !canIncrease.value,
|
|
28122
|
+
"flat": true,
|
|
28123
|
+
"key": "increment-btn",
|
|
28124
|
+
"height": controlNodeDefaultHeight.value,
|
|
28125
|
+
"name": "increment-btn",
|
|
28126
|
+
"icon": incrementIcon.value,
|
|
28127
|
+
"onClick": onClickUp,
|
|
28128
|
+
"onMousedown": onControlMousedown,
|
|
28129
|
+
"size": controlNodeSize.value,
|
|
28130
|
+
"tabindex": "-1"
|
|
28131
|
+
}, null) : vue.createVNode(VDefaultsProvider, {
|
|
28132
|
+
"key": "increment-defaults",
|
|
28133
|
+
"defaults": {
|
|
28134
|
+
VBtn: {
|
|
28135
|
+
disabled: !canIncrease.value,
|
|
28136
|
+
flat: true,
|
|
28137
|
+
height: controlNodeDefaultHeight.value,
|
|
28138
|
+
size: controlNodeSize.value,
|
|
28139
|
+
icon: incrementIcon.value
|
|
28140
|
+
}
|
|
28141
|
+
}
|
|
28142
|
+
}, {
|
|
28143
|
+
default: () => [slots.increment(incrementSlotProps.value)]
|
|
28144
|
+
});
|
|
28145
|
+
}
|
|
28146
|
+
function decrementControlNode() {
|
|
28147
|
+
return !slots.decrement ? vue.createVNode(VBtn, {
|
|
28120
28148
|
"disabled": !canDecrease.value,
|
|
28121
28149
|
"flat": true,
|
|
28122
28150
|
"key": "decrement-btn",
|
|
28123
|
-
"height":
|
|
28151
|
+
"height": controlNodeDefaultHeight.value,
|
|
28124
28152
|
"name": "decrement-btn",
|
|
28125
|
-
"icon":
|
|
28126
|
-
"size":
|
|
28153
|
+
"icon": decrementIcon.value,
|
|
28154
|
+
"size": controlNodeSize.value,
|
|
28127
28155
|
"tabindex": "-1",
|
|
28128
28156
|
"onClick": onClickDown,
|
|
28129
28157
|
"onMousedown": onControlMousedown
|
|
@@ -28133,40 +28161,21 @@
|
|
|
28133
28161
|
VBtn: {
|
|
28134
28162
|
disabled: !canDecrease.value,
|
|
28135
28163
|
flat: true,
|
|
28136
|
-
height:
|
|
28137
|
-
size:
|
|
28138
|
-
icon:
|
|
28164
|
+
height: controlNodeDefaultHeight.value,
|
|
28165
|
+
size: controlNodeSize.value,
|
|
28166
|
+
icon: decrementIcon.value
|
|
28139
28167
|
}
|
|
28140
28168
|
}
|
|
28141
28169
|
}, {
|
|
28142
28170
|
default: () => [slots.decrement(decrementSlotProps.value)]
|
|
28143
|
-
})
|
|
28171
|
+
});
|
|
28172
|
+
}
|
|
28173
|
+
function controlNode() {
|
|
28174
|
+
return vue.createVNode("div", {
|
|
28175
|
+
"class": "v-number-input__control"
|
|
28176
|
+
}, [decrementControlNode(), vue.createVNode(VDivider, {
|
|
28144
28177
|
"vertical": controlVariant.value !== 'stacked'
|
|
28145
|
-
}, null),
|
|
28146
|
-
"disabled": !canIncrease.value,
|
|
28147
|
-
"flat": true,
|
|
28148
|
-
"key": "increment-btn",
|
|
28149
|
-
"height": defaultHeight,
|
|
28150
|
-
"name": "increment-btn",
|
|
28151
|
-
"icon": "$collapse",
|
|
28152
|
-
"onClick": onClickUp,
|
|
28153
|
-
"onMousedown": onControlMousedown,
|
|
28154
|
-
"size": "small",
|
|
28155
|
-
"tabindex": "-1"
|
|
28156
|
-
}, null) : vue.createVNode(VDefaultsProvider, {
|
|
28157
|
-
"key": "increment-defaults",
|
|
28158
|
-
"defaults": {
|
|
28159
|
-
VBtn: {
|
|
28160
|
-
disabled: !canIncrease.value,
|
|
28161
|
-
flat: true,
|
|
28162
|
-
height: defaultHeight,
|
|
28163
|
-
size: 'small',
|
|
28164
|
-
icon: '$collapse'
|
|
28165
|
-
}
|
|
28166
|
-
}
|
|
28167
|
-
}, {
|
|
28168
|
-
default: () => [slots.increment(incrementSlotProps.value)]
|
|
28169
|
-
})]);
|
|
28178
|
+
}, null), incrementControlNode()]);
|
|
28170
28179
|
}
|
|
28171
28180
|
function dividerNode() {
|
|
28172
28181
|
return !props.hideInput && !props.inset ? vue.createVNode(VDivider, {
|
|
@@ -28177,27 +28186,11 @@
|
|
|
28177
28186
|
"class": "v-number-input__control"
|
|
28178
28187
|
}, [vue.createVNode(VDivider, {
|
|
28179
28188
|
"vertical": true
|
|
28180
|
-
}, null), vue.createVNode(
|
|
28181
|
-
"flat": true,
|
|
28182
|
-
"height": "100%",
|
|
28183
|
-
"icon": "$plus",
|
|
28184
|
-
"tile": true,
|
|
28185
|
-
"tabindex": "-1",
|
|
28186
|
-
"onClick": onClickUp,
|
|
28187
|
-
"onMousedown": onControlMousedown
|
|
28188
|
-
}, null)]) : !props.reverse ? vue.createVNode(vue.Fragment, null, [dividerNode(), controlNode()]) : undefined;
|
|
28189
|
+
}, null), incrementControlNode()]) : !props.reverse ? vue.createVNode(vue.Fragment, null, [dividerNode(), controlNode()]) : undefined;
|
|
28189
28190
|
const hasAppendInner = slots['append-inner'] || appendInnerControl;
|
|
28190
28191
|
const prependInnerControl = controlVariant.value === 'split' ? vue.createVNode("div", {
|
|
28191
28192
|
"class": "v-number-input__control"
|
|
28192
|
-
}, [vue.createVNode(
|
|
28193
|
-
"flat": true,
|
|
28194
|
-
"height": "100%",
|
|
28195
|
-
"icon": "$minus",
|
|
28196
|
-
"tile": true,
|
|
28197
|
-
"tabindex": "-1",
|
|
28198
|
-
"onClick": onClickDown,
|
|
28199
|
-
"onMousedown": onControlMousedown
|
|
28200
|
-
}, null), vue.createVNode(VDivider, {
|
|
28193
|
+
}, [decrementControlNode(), vue.createVNode(VDivider, {
|
|
28201
28194
|
"vertical": true
|
|
28202
28195
|
}, null)]) : props.reverse ? vue.createVNode(vue.Fragment, null, [controlNode(), dividerNode()]) : undefined;
|
|
28203
28196
|
const hasPrependInner = slots['prepend-inner'] || prependInnerControl;
|
|
@@ -28423,6 +28416,7 @@
|
|
|
28423
28416
|
const vExpansionPanelsRef = vue.ref();
|
|
28424
28417
|
const {
|
|
28425
28418
|
color,
|
|
28419
|
+
eager,
|
|
28426
28420
|
editable,
|
|
28427
28421
|
prevText,
|
|
28428
28422
|
nextText,
|
|
@@ -28441,6 +28435,7 @@
|
|
|
28441
28435
|
provideDefaults({
|
|
28442
28436
|
VStepperVerticalItem: {
|
|
28443
28437
|
color,
|
|
28438
|
+
eager,
|
|
28444
28439
|
editable,
|
|
28445
28440
|
prevText,
|
|
28446
28441
|
nextText,
|
|
@@ -29653,8 +29648,6 @@
|
|
|
29653
29648
|
...omit(makeVListProps({
|
|
29654
29649
|
collapseIcon: '$treeviewCollapse',
|
|
29655
29650
|
expandIcon: '$treeviewExpand',
|
|
29656
|
-
selectStrategy: 'classic',
|
|
29657
|
-
openStrategy: 'multiple',
|
|
29658
29651
|
slim: true
|
|
29659
29652
|
}), ['nav'])
|
|
29660
29653
|
}, 'VTreeview');
|
|
@@ -29672,17 +29665,16 @@
|
|
|
29672
29665
|
let {
|
|
29673
29666
|
slots
|
|
29674
29667
|
} = _ref;
|
|
29675
|
-
const vm = getCurrentInstance('VTreeview');
|
|
29676
29668
|
const {
|
|
29677
29669
|
items
|
|
29678
29670
|
} = useListItems(props);
|
|
29679
29671
|
const activeColor = vue.toRef(props, 'activeColor');
|
|
29680
29672
|
const baseColor = vue.toRef(props, 'baseColor');
|
|
29681
29673
|
const color = vue.toRef(props, 'color');
|
|
29682
|
-
const opened = useProxiedModel(props, 'opened');
|
|
29683
29674
|
const activated = useProxiedModel(props, 'activated');
|
|
29684
29675
|
const selected = useProxiedModel(props, 'selected');
|
|
29685
29676
|
const vListRef = vue.ref();
|
|
29677
|
+
const opened = vue.computed(() => props.openAll ? openAll(items.value) : props.opened);
|
|
29686
29678
|
const flatItems = vue.computed(() => flatten(items.value));
|
|
29687
29679
|
const search = vue.toRef(props, 'search');
|
|
29688
29680
|
const {
|
|
@@ -29716,11 +29708,6 @@
|
|
|
29716
29708
|
}
|
|
29717
29709
|
return arr;
|
|
29718
29710
|
}
|
|
29719
|
-
vue.watch(() => props.openAll, val => {
|
|
29720
|
-
opened.value = val ? openAll(items.value) : [];
|
|
29721
|
-
}, {
|
|
29722
|
-
immediate: true
|
|
29723
|
-
});
|
|
29724
29711
|
function openAll(item) {
|
|
29725
29712
|
let ids = [];
|
|
29726
29713
|
for (const i of item) {
|
|
@@ -29755,13 +29742,14 @@
|
|
|
29755
29742
|
}
|
|
29756
29743
|
});
|
|
29757
29744
|
useRender(() => {
|
|
29758
|
-
const listProps = VList.filterProps(
|
|
29745
|
+
const listProps = VList.filterProps(props);
|
|
29759
29746
|
const treeviewChildrenProps = VTreeviewChildren.filterProps(props);
|
|
29760
29747
|
return vue.createVNode(VList, vue.mergeProps({
|
|
29761
29748
|
"ref": vListRef
|
|
29762
29749
|
}, listProps, {
|
|
29763
29750
|
"class": ['v-treeview', props.class],
|
|
29764
29751
|
"style": props.style,
|
|
29752
|
+
"opened": opened.value,
|
|
29765
29753
|
"activated": activated.value,
|
|
29766
29754
|
"onUpdate:activated": $event => activated.value = $event,
|
|
29767
29755
|
"selected": selected.value,
|
|
@@ -30273,7 +30261,7 @@
|
|
|
30273
30261
|
goTo
|
|
30274
30262
|
};
|
|
30275
30263
|
}
|
|
30276
|
-
const version$1 = "3.6.
|
|
30264
|
+
const version$1 = "3.6.11";
|
|
30277
30265
|
createVuetify$1.version = version$1;
|
|
30278
30266
|
|
|
30279
30267
|
// Vue's inject() can only be used in setup
|
|
@@ -30526,7 +30514,7 @@
|
|
|
30526
30514
|
|
|
30527
30515
|
/* eslint-disable local-rules/sort-imports */
|
|
30528
30516
|
|
|
30529
|
-
const version = "3.6.
|
|
30517
|
+
const version = "3.6.11";
|
|
30530
30518
|
|
|
30531
30519
|
/* eslint-disable local-rules/sort-imports */
|
|
30532
30520
|
|