@vuetify/nightly 3.8.11-master.2025-06-24 → 3.8.11-master.2025-06-27
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 +16 -3
- package/dist/json/attributes.json +3469 -3469
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +136 -136
- package/dist/json/web-types.json +6059 -6059
- package/dist/vuetify-labs.cjs +10 -10
- package/dist/vuetify-labs.css +5010 -5010
- package/dist/vuetify-labs.d.ts +51 -51
- package/dist/vuetify-labs.esm.js +10 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +9 -10
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4410 -4410
- package/dist/vuetify.d.ts +51 -51
- package/dist/vuetify.esm.js +9 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableColumn.js +0 -1
- package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.js +5 -5
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +1 -1
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +51 -51
- package/lib/framework.js +1 -1
- package/lib/labs/VIconBtn/VIconBtn.js +1 -0
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.11-master.2025-06-
|
2
|
+
* Vuetify v3.8.11-master.2025-06-27
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -12416,7 +12416,7 @@
|
|
12416
12416
|
if (!isFocused.value) focus();
|
12417
12417
|
vue.nextTick(() => {
|
12418
12418
|
if (inputRef.value !== document.activeElement) {
|
12419
|
-
inputRef.value?.focus();
|
12419
|
+
vue.nextTick(() => inputRef.value?.focus());
|
12420
12420
|
}
|
12421
12421
|
});
|
12422
12422
|
}
|
@@ -20294,7 +20294,6 @@
|
|
20294
20294
|
} = _ref;
|
20295
20295
|
const Tag = props.tag ?? 'td';
|
20296
20296
|
return vue.createVNode(Tag, {
|
20297
|
-
"tabindex": "0",
|
20298
20297
|
"class": vue.normalizeClass(['v-data-table__td', {
|
20299
20298
|
'v-data-table-column--fixed': props.fixed,
|
20300
20299
|
'v-data-table-column--last-fixed': props.lastFixed,
|
@@ -20695,14 +20694,14 @@
|
|
20695
20694
|
},
|
20696
20695
|
"colspan": column.colspan,
|
20697
20696
|
"rowspan": column.rowspan,
|
20698
|
-
"onClick": column.sortable ? () => toggleSort(column) : undefined,
|
20699
20697
|
"fixed": column.fixed,
|
20700
20698
|
"nowrap": column.nowrap,
|
20701
20699
|
"lastFixed": column.lastFixed,
|
20702
|
-
"noPadding": noPadding
|
20703
|
-
|
20704
|
-
"
|
20705
|
-
|
20700
|
+
"noPadding": noPadding,
|
20701
|
+
"tabindex": column.sortable ? 0 : undefined,
|
20702
|
+
"onClick": column.sortable ? () => toggleSort(column) : undefined,
|
20703
|
+
"onKeydown": column.sortable ? event => handleEnterKeyPress(event, column) : undefined
|
20704
|
+
}, headerProps), {
|
20706
20705
|
default: () => {
|
20707
20706
|
const columnSlotName = `header.${column.key}`;
|
20708
20707
|
const columnSlotProps = {
|
@@ -29512,7 +29511,7 @@
|
|
29512
29511
|
};
|
29513
29512
|
});
|
29514
29513
|
}
|
29515
|
-
const version$1 = "3.8.11-master.2025-06-
|
29514
|
+
const version$1 = "3.8.11-master.2025-06-27";
|
29516
29515
|
createVuetify$1.version = version$1;
|
29517
29516
|
|
29518
29517
|
// Vue's inject() can only be used in setup
|
@@ -29537,7 +29536,7 @@
|
|
29537
29536
|
...options
|
29538
29537
|
});
|
29539
29538
|
};
|
29540
|
-
const version = "3.8.11-master.2025-06-
|
29539
|
+
const version = "3.8.11-master.2025-06-27";
|
29541
29540
|
createVuetify.version = version;
|
29542
29541
|
|
29543
29542
|
exports.blueprints = index;
|