vuetify 3.5.10 → 3.5.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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.10
2
+ * Vuetify v3.5.11
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -23139,7 +23139,7 @@ const VOtpInput = genericComponent()({
23139
23139
  e.preventDefault();
23140
23140
  e.stopPropagation();
23141
23141
  const clipboardText = e?.clipboardData?.getData('Text') ?? '';
23142
- if (!isValidNumber(clipboardText)) return;
23142
+ if (isValidNumber(clipboardText)) return;
23143
23143
  model.value = clipboardText.split('');
23144
23144
  inputRef.value?.[index].blur();
23145
23145
  }
@@ -23155,7 +23155,7 @@ const VOtpInput = genericComponent()({
23155
23155
  focusIndex.value = -1;
23156
23156
  }
23157
23157
  function isValidNumber(value) {
23158
- return props.type === 'number' && !isNaN(Number(value));
23158
+ return props.type === 'number' && /[^0-9]/g.test(value);
23159
23159
  }
23160
23160
  provideDefaults({
23161
23161
  VField: {
@@ -26492,7 +26492,7 @@ const VNumberInput = genericComponent()({
26492
26492
  "flat": true,
26493
26493
  "key": "decrement-btn",
26494
26494
  "height": defaultHeight,
26495
- "icon": "mdi-chevron-down",
26495
+ "icon": "$expand",
26496
26496
  "rounded": "0",
26497
26497
  "size": "small",
26498
26498
  "onClick": onClickDown
@@ -26504,7 +26504,7 @@ const VNumberInput = genericComponent()({
26504
26504
  rounded: '0',
26505
26505
  height: defaultHeight,
26506
26506
  size: 'small',
26507
- icon: 'mdi-chevron-down'
26507
+ icon: '$expand'
26508
26508
  }
26509
26509
  }
26510
26510
  }, {
@@ -26515,7 +26515,7 @@ const VNumberInput = genericComponent()({
26515
26515
  "flat": true,
26516
26516
  "key": "increment-btn",
26517
26517
  "height": defaultHeight,
26518
- "icon": "mdi-chevron-up",
26518
+ "icon": "$collapse",
26519
26519
  "onClick": onClickUp,
26520
26520
  "rounded": "0",
26521
26521
  "size": "small"
@@ -26527,7 +26527,7 @@ const VNumberInput = genericComponent()({
26527
26527
  height: defaultHeight,
26528
26528
  rounded: '0',
26529
26529
  size: 'small',
26530
- icon: 'mdi-chevron-up'
26530
+ icon: '$collapse'
26531
26531
  }
26532
26532
  }
26533
26533
  }, {
@@ -26584,7 +26584,7 @@ const VNumberInput = genericComponent()({
26584
26584
  }, null), createVNode(VBtn, {
26585
26585
  "flat": true,
26586
26586
  "height": "100%",
26587
- "icon": "mdi-plus",
26587
+ "icon": "$plus",
26588
26588
  "tile": true,
26589
26589
  "onClick": onClickUp
26590
26590
  }, null)]) : !props.reverse ? () => createVNode(Fragment, null, [dividerNode(), controlNode()]) : undefined,
@@ -26593,7 +26593,7 @@ const VNumberInput = genericComponent()({
26593
26593
  }, [createVNode(VBtn, {
26594
26594
  "flat": true,
26595
26595
  "height": "100%",
26596
- "icon": "mdi-minus",
26596
+ "icon": "$minus",
26597
26597
  "tile": true,
26598
26598
  "onClick": onClickDown
26599
26599
  }, null), createVNode(VDivider, {
@@ -27858,7 +27858,7 @@ function createVuetify$1() {
27858
27858
  goTo
27859
27859
  };
27860
27860
  }
27861
- const version$1 = "3.5.10";
27861
+ const version$1 = "3.5.11";
27862
27862
  createVuetify$1.version = version$1;
27863
27863
 
27864
27864
  // Vue's inject() can only be used in setup
@@ -28111,7 +28111,7 @@ var index = /*#__PURE__*/Object.freeze({
28111
28111
 
28112
28112
  /* eslint-disable local-rules/sort-imports */
28113
28113
 
28114
- const version = "3.5.10";
28114
+ const version = "3.5.11";
28115
28115
 
28116
28116
  /* eslint-disable local-rules/sort-imports */
28117
28117