@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/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.11-master.2025-06-24
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
- }, headerProps, {
20704
- "onKeydown": event => column.sortable && handleEnterKeyPress(event, column)
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-24";
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-24";
29539
+ const version = "3.8.11-master.2025-06-27";
29541
29540
  createVuetify.version = version;
29542
29541
 
29543
29542
  exports.blueprints = index;