@vuetify/nightly 3.1.5-master-20230212.0 → 3.2.0-dev-20230214.0

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 (35) hide show
  1. package/CHANGELOG.md +13 -4
  2. package/dist/json/web-types.json +1 -1
  3. package/dist/vuetify-labs.css +334 -324
  4. package/dist/vuetify-labs.d.ts +18 -0
  5. package/dist/vuetify-labs.esm.js +52 -16
  6. package/dist/vuetify-labs.esm.js.map +1 -1
  7. package/dist/vuetify-labs.js +52 -16
  8. package/dist/vuetify-labs.min.css +2 -2
  9. package/dist/vuetify.css +47 -46
  10. package/dist/vuetify.esm.js +5 -5
  11. package/dist/vuetify.esm.js.map +1 -1
  12. package/dist/vuetify.js +5 -5
  13. package/dist/vuetify.js.map +1 -1
  14. package/dist/vuetify.min.css +2 -2
  15. package/dist/vuetify.min.js +57 -57
  16. package/dist/vuetify.min.js.map +1 -1
  17. package/lib/components/VList/VListItem.css +2 -2
  18. package/lib/components/VList/VListItem.sass +0 -2
  19. package/lib/components/VOverlay/scrollStrategies.mjs +1 -1
  20. package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
  21. package/lib/components/VToolbar/VToolbar.css +1 -0
  22. package/lib/components/VToolbar/VToolbar.sass +1 -0
  23. package/lib/entry-bundler.mjs +1 -1
  24. package/lib/entry-bundler.mjs.map +1 -1
  25. package/lib/framework.mjs +1 -1
  26. package/lib/framework.mjs.map +1 -1
  27. package/lib/labs/VDataTable/VDataTableFooter.css +9 -0
  28. package/lib/labs/VDataTable/VDataTableFooter.mjs +50 -12
  29. package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
  30. package/lib/labs/VDataTable/VDataTableFooter.sass +7 -0
  31. package/lib/labs/VDataTable/index.d.ts +18 -0
  32. package/lib/labs/components.d.ts +18 -0
  33. package/lib/util/defineComponent.mjs +1 -1
  34. package/lib/util/defineComponent.mjs.map +1 -1
  35. package/package.json +1 -1
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.1.5-master-20230212.0
2
+ * Vuetify v3.2.0-dev-20230214.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -19840,7 +19840,7 @@ textarea.v-field__input::placeholder {
19840
19840
  .v-list-item__prepend > .v-icon {
19841
19841
  margin-inline-end: 32px;
19842
19842
  }
19843
- .v-list-item--two-line .v-list-item__prepend, .v-list-item--three-line .v-list-item__prepend {
19843
+ .v-list-item--three-line .v-list-item__prepend {
19844
19844
  align-self: start;
19845
19845
  }
19846
19846
 
@@ -19856,7 +19856,7 @@ textarea.v-field__input::placeholder {
19856
19856
  .v-list-item__append > .v-icon {
19857
19857
  margin-inline-start: 32px;
19858
19858
  }
19859
- .v-list-item--two-line .v-list-item__append, .v-list-item--three-line .v-list-item__append {
19859
+ .v-list-item--three-line .v-list-item__append {
19860
19860
  align-self: start;
19861
19861
  }
19862
19862
 
@@ -21465,48 +21465,6 @@ html.v-overlay-scroll-blocked {
21465
21465
  border-top: 0px !important;
21466
21466
  position: sticky;
21467
21467
  bottom: 0;
21468
- }.v-textarea .v-field {
21469
- --v-textarea-control-height: var(--v-input-control-height);
21470
- }
21471
- .v-textarea .v-field__field {
21472
- --v-input-control-height: var(--v-textarea-control-height);
21473
- }
21474
- .v-textarea .v-field__input {
21475
- flex: 1 1 auto;
21476
- outline: none;
21477
- -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
21478
- mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
21479
- }
21480
- .v-textarea--auto-grow .v-field__input {
21481
- overflow: hidden;
21482
- }
21483
- .v-textarea--no-resize .v-field__input {
21484
- resize: none;
21485
- }
21486
- .v-textarea__sizer {
21487
- visibility: hidden;
21488
- position: absolute;
21489
- top: 0;
21490
- left: 0;
21491
- height: 0 !important;
21492
- min-height: 0 !important;
21493
- pointer-events: none;
21494
- }
21495
- .v-textarea .v-field--no-label textarea,
21496
- .v-textarea .v-field--active textarea {
21497
- opacity: 1;
21498
- }
21499
- .v-textarea textarea {
21500
- opacity: 0;
21501
- flex: 1;
21502
- min-width: 0;
21503
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
21504
- }
21505
- .v-textarea textarea:focus, .v-textarea textarea:active {
21506
- outline: none;
21507
- }
21508
- .v-textarea textarea:invalid {
21509
- box-shadow: none;
21510
21468
  }/* region BLOCK */
21511
21469
  .v-text-field input {
21512
21470
  color: inherit;
@@ -21576,7 +21534,49 @@ html.v-overlay-scroll-blocked {
21576
21534
  padding: 0;
21577
21535
  }
21578
21536
 
21579
- /* endregion */.v-theme-provider {
21537
+ /* endregion */.v-textarea .v-field {
21538
+ --v-textarea-control-height: var(--v-input-control-height);
21539
+ }
21540
+ .v-textarea .v-field__field {
21541
+ --v-input-control-height: var(--v-textarea-control-height);
21542
+ }
21543
+ .v-textarea .v-field__input {
21544
+ flex: 1 1 auto;
21545
+ outline: none;
21546
+ -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
21547
+ mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
21548
+ }
21549
+ .v-textarea--auto-grow .v-field__input {
21550
+ overflow: hidden;
21551
+ }
21552
+ .v-textarea--no-resize .v-field__input {
21553
+ resize: none;
21554
+ }
21555
+ .v-textarea__sizer {
21556
+ visibility: hidden;
21557
+ position: absolute;
21558
+ top: 0;
21559
+ left: 0;
21560
+ height: 0 !important;
21561
+ min-height: 0 !important;
21562
+ pointer-events: none;
21563
+ }
21564
+ .v-textarea .v-field--no-label textarea,
21565
+ .v-textarea .v-field--active textarea {
21566
+ opacity: 1;
21567
+ }
21568
+ .v-textarea textarea {
21569
+ opacity: 0;
21570
+ flex: 1;
21571
+ min-width: 0;
21572
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
21573
+ }
21574
+ .v-textarea textarea:focus, .v-textarea textarea:active {
21575
+ outline: none;
21576
+ }
21577
+ .v-textarea textarea:invalid {
21578
+ box-shadow: none;
21579
+ }.v-theme-provider {
21580
21580
  background: rgb(var(--v-theme-background));
21581
21581
  color: rgb(var(--v-theme-on-background));
21582
21582
  }.v-timeline .v-timeline-divider__dot {
@@ -22035,6 +22035,7 @@ html.v-overlay-scroll-blocked {
22035
22035
  position: relative;
22036
22036
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22037
22037
  transition-property: height, width, transform, max-width, left, right, top, bottom;
22038
+ width: 100%;
22038
22039
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22039
22040
  border-style: solid;
22040
22041
  border-width: 0;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.1.5-master-20230212.0
2
+ * Vuetify v3.2.0-dev-20230214.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1021,7 +1021,7 @@ const defineComponent = function defineComponent(options) {
1021
1021
  const componentDefaults = computed(() => defaults.value[props._as ?? options.name]);
1022
1022
  const _props = new Proxy(props, {
1023
1023
  get(target, prop) {
1024
- if (!propIsDefined(vm.vnode, prop)) {
1024
+ if (typeof prop === 'string' && !propIsDefined(vm.vnode, prop)) {
1025
1025
  return componentDefaults.value?.[prop] ?? defaults.value.global?.[prop] ?? target[prop];
1026
1026
  }
1027
1027
  return Reflect.get(target, prop);
@@ -9015,7 +9015,7 @@ function repositionScrollStrategy(data, props, scope) {
9015
9015
  slow = time / (1000 / 60) > 2;
9016
9016
  });
9017
9017
  }
9018
- ric = requestIdleCallback(() => {
9018
+ ric = (typeof requestIdleCallback === 'undefined' ? cb => cb() : requestIdleCallback)(() => {
9019
9019
  scope.run(() => {
9020
9020
  bindScroll(data.activatorEl.value ?? data.contentEl.value, e => {
9021
9021
  if (slow) {
@@ -18139,7 +18139,7 @@ function createVuetify$1() {
18139
18139
  locale
18140
18140
  };
18141
18141
  }
18142
- const version$1 = "3.1.5-master-20230212.0";
18142
+ const version$1 = "3.2.0-dev-20230214.0";
18143
18143
  createVuetify$1.version = version$1;
18144
18144
 
18145
18145
  // Vue's inject() can only be used in setup
@@ -18159,7 +18159,7 @@ const createVuetify = function () {
18159
18159
  ...options
18160
18160
  });
18161
18161
  };
18162
- const version = "3.1.5-master-20230212.0";
18162
+ const version = "3.2.0-dev-20230214.0";
18163
18163
  createVuetify.version = version;
18164
18164
 
18165
18165
  export { components, createVuetify, directives, useDisplay, useLayout, useLocale, useRtl, useTheme, version };