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
  */
@@ -23143,7 +23143,7 @@
23143
23143
  e.preventDefault();
23144
23144
  e.stopPropagation();
23145
23145
  const clipboardText = e?.clipboardData?.getData('Text') ?? '';
23146
- if (!isValidNumber(clipboardText)) return;
23146
+ if (isValidNumber(clipboardText)) return;
23147
23147
  model.value = clipboardText.split('');
23148
23148
  inputRef.value?.[index].blur();
23149
23149
  }
@@ -23159,7 +23159,7 @@
23159
23159
  focusIndex.value = -1;
23160
23160
  }
23161
23161
  function isValidNumber(value) {
23162
- return props.type === 'number' && !isNaN(Number(value));
23162
+ return props.type === 'number' && /[^0-9]/g.test(value);
23163
23163
  }
23164
23164
  provideDefaults({
23165
23165
  VField: {
@@ -26496,7 +26496,7 @@
26496
26496
  "flat": true,
26497
26497
  "key": "decrement-btn",
26498
26498
  "height": defaultHeight,
26499
- "icon": "mdi-chevron-down",
26499
+ "icon": "$expand",
26500
26500
  "rounded": "0",
26501
26501
  "size": "small",
26502
26502
  "onClick": onClickDown
@@ -26508,7 +26508,7 @@
26508
26508
  rounded: '0',
26509
26509
  height: defaultHeight,
26510
26510
  size: 'small',
26511
- icon: 'mdi-chevron-down'
26511
+ icon: '$expand'
26512
26512
  }
26513
26513
  }
26514
26514
  }, {
@@ -26519,7 +26519,7 @@
26519
26519
  "flat": true,
26520
26520
  "key": "increment-btn",
26521
26521
  "height": defaultHeight,
26522
- "icon": "mdi-chevron-up",
26522
+ "icon": "$collapse",
26523
26523
  "onClick": onClickUp,
26524
26524
  "rounded": "0",
26525
26525
  "size": "small"
@@ -26531,7 +26531,7 @@
26531
26531
  height: defaultHeight,
26532
26532
  rounded: '0',
26533
26533
  size: 'small',
26534
- icon: 'mdi-chevron-up'
26534
+ icon: '$collapse'
26535
26535
  }
26536
26536
  }
26537
26537
  }, {
@@ -26588,7 +26588,7 @@
26588
26588
  }, null), vue.createVNode(VBtn, {
26589
26589
  "flat": true,
26590
26590
  "height": "100%",
26591
- "icon": "mdi-plus",
26591
+ "icon": "$plus",
26592
26592
  "tile": true,
26593
26593
  "onClick": onClickUp
26594
26594
  }, null)]) : !props.reverse ? () => vue.createVNode(vue.Fragment, null, [dividerNode(), controlNode()]) : undefined,
@@ -26597,7 +26597,7 @@
26597
26597
  }, [vue.createVNode(VBtn, {
26598
26598
  "flat": true,
26599
26599
  "height": "100%",
26600
- "icon": "mdi-minus",
26600
+ "icon": "$minus",
26601
26601
  "tile": true,
26602
26602
  "onClick": onClickDown
26603
26603
  }, null), vue.createVNode(VDivider, {
@@ -27862,7 +27862,7 @@
27862
27862
  goTo
27863
27863
  };
27864
27864
  }
27865
- const version$1 = "3.5.10";
27865
+ const version$1 = "3.5.11";
27866
27866
  createVuetify$1.version = version$1;
27867
27867
 
27868
27868
  // Vue's inject() can only be used in setup
@@ -28115,7 +28115,7 @@
28115
28115
 
28116
28116
  /* eslint-disable local-rules/sort-imports */
28117
28117
 
28118
- const version = "3.5.10";
28118
+ const version = "3.5.11";
28119
28119
 
28120
28120
  /* eslint-disable local-rules/sort-imports */
28121
28121