@vuetify/nightly 3.4.0-alpha.1-dev.2023-10-19 → 3.4.0-alpha.1-dev.2023-10-21

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/importMap-labs.json +24 -24
  3. package/dist/json/importMap.json +12 -12
  4. package/dist/json/web-types.json +1 -1
  5. package/dist/vuetify-labs.css +77 -88
  6. package/dist/vuetify-labs.esm.js +7 -6
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +7 -6
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +77 -88
  11. package/dist/vuetify.d.ts +10 -10
  12. package/dist/vuetify.esm.js +7 -6
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +7 -6
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +6 -6
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VAutocomplete/VAutocomplete.css +7 -9
  20. package/lib/components/VAutocomplete/VAutocomplete.sass +10 -9
  21. package/lib/components/VAutocomplete/_variables.scss +3 -2
  22. package/lib/components/VCombobox/VCombobox.css +7 -9
  23. package/lib/components/VCombobox/VCombobox.sass +10 -9
  24. package/lib/components/VCombobox/_variables.scss +1 -0
  25. package/lib/components/VField/VField.css +32 -16
  26. package/lib/components/VField/VField.sass +11 -2
  27. package/lib/components/VField/_variables.scss +5 -3
  28. package/lib/components/VFileInput/VFileInput.css +6 -4
  29. package/lib/components/VFileInput/VFileInput.mjs +2 -1
  30. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  31. package/lib/components/VFileInput/VFileInput.sass +10 -4
  32. package/lib/components/VInput/VInput.css +22 -16
  33. package/lib/components/VInput/VInput.sass +17 -6
  34. package/lib/components/VInput/_variables.scss +3 -3
  35. package/lib/components/VSelect/VSelect.css +0 -4
  36. package/lib/components/VSelect/VSelect.sass +0 -3
  37. package/lib/components/VTextField/VTextField.css +1 -28
  38. package/lib/components/VTextField/VTextField.mjs +1 -1
  39. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  40. package/lib/components/VTextField/VTextField.sass +0 -26
  41. package/lib/components/VTextarea/VTextarea.mjs +1 -1
  42. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  43. package/lib/entry-bundler.mjs +1 -1
  44. package/lib/framework.mjs +1 -1
  45. package/lib/index.d.mts +10 -10
  46. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.4.0-alpha.1-dev.2023-10-19
2
+ * Vuetify v3.4.0-alpha.1-dev.2023-10-21
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -10579,7 +10579,7 @@
10579
10579
  "class": ['v-text-field', {
10580
10580
  'v-text-field--prefixed': props.prefix,
10581
10581
  'v-text-field--suffixed': props.suffix,
10582
- 'v-text-field--plain-underlined': ['plain', 'underlined'].includes(props.variant)
10582
+ 'v-input--plain-underlined': isPlainOrUnderlined.value
10583
10583
  }, props.class],
10584
10584
  "style": props.style
10585
10585
  }, rootAttrs, inputProps, {
@@ -15921,7 +15921,8 @@
15921
15921
  "modelValue": model.value,
15922
15922
  "onUpdate:modelValue": $event => model.value = $event,
15923
15923
  "class": ['v-file-input', {
15924
- 'v-text-field--plain-underlined': isPlainOrUnderlined.value
15924
+ 'v-file-input--chips': !!props.chips,
15925
+ 'v-input--plain-underlined': isPlainOrUnderlined.value
15925
15926
  }, props.class],
15926
15927
  "style": props.style,
15927
15928
  "onClick:prepend": onClickPrepend
@@ -19339,7 +19340,7 @@
19339
19340
  'v-text-field--suffixed': props.suffix,
19340
19341
  'v-textarea--auto-grow': props.autoGrow,
19341
19342
  'v-textarea--no-resize': props.noResize || props.autoGrow,
19342
- 'v-text-field--plain-underlined': isPlainOrUnderlined.value
19343
+ 'v-input--plain-underlined': isPlainOrUnderlined.value
19343
19344
  }, props.class],
19344
19345
  "style": props.style
19345
19346
  }, rootAttrs, inputProps, {
@@ -24901,7 +24902,7 @@
24901
24902
  date
24902
24903
  };
24903
24904
  }
24904
- const version$1 = "3.4.0-alpha.1-dev.2023-10-19";
24905
+ const version$1 = "3.4.0-alpha.1-dev.2023-10-21";
24905
24906
  createVuetify$1.version = version$1;
24906
24907
 
24907
24908
  // Vue's inject() can only be used in setup
@@ -24915,7 +24916,7 @@
24915
24916
 
24916
24917
  /* eslint-disable local-rules/sort-imports */
24917
24918
 
24918
- const version = "3.4.0-alpha.1-dev.2023-10-19";
24919
+ const version = "3.4.0-alpha.1-dev.2023-10-21";
24919
24920
 
24920
24921
  /* eslint-disable local-rules/sort-imports */
24921
24922