@vuetify/nightly 3.7.7-dev.2025-01-22 → 3.7.7-dev.2025-01-23

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.7.7-dev.2025-01-22
2
+ * Vuetify v3.7.7-dev.2025-01-23
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9062,6 +9062,7 @@
9062
9062
  } = useSsrBoot();
9063
9063
  function onClick(e) {
9064
9064
  e.stopPropagation();
9065
+ if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
9065
9066
  open(!isOpen.value, e);
9066
9067
  }
9067
9068
  const activatorProps = vue.computed(() => ({
@@ -9279,6 +9280,7 @@
9279
9280
  }));
9280
9281
  function onClick(e) {
9281
9282
  emit('click', e);
9283
+ if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
9282
9284
  if (!isClickable.value) return;
9283
9285
  link.navigate?.(e);
9284
9286
  if (isGroupActivator) return;
@@ -9291,6 +9293,7 @@
9291
9293
  }
9292
9294
  }
9293
9295
  function onKeyDown(e) {
9296
+ if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
9294
9297
  if (e.key === 'Enter' || e.key === ' ') {
9295
9298
  e.preventDefault();
9296
9299
  e.target.dispatchEvent(new MouseEvent('click', e));
@@ -28371,7 +28374,7 @@
28371
28374
  };
28372
28375
  });
28373
28376
  }
28374
- const version$1 = "3.7.7-dev.2025-01-22";
28377
+ const version$1 = "3.7.7-dev.2025-01-23";
28375
28378
  createVuetify$1.version = version$1;
28376
28379
 
28377
28380
  // Vue's inject() can only be used in setup
@@ -28396,7 +28399,7 @@
28396
28399
  ...options
28397
28400
  });
28398
28401
  };
28399
- const version = "3.7.7-dev.2025-01-22";
28402
+ const version = "3.7.7-dev.2025-01-23";
28400
28403
  createVuetify.version = version;
28401
28404
 
28402
28405
  exports.blueprints = index;