vuetify 3.2.0 → 3.2.1

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.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.2.0
2
+ * Vuetify v3.2.1
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -19981,21 +19981,6 @@ textarea.v-field__input::placeholder {
19981
19981
 
19982
19982
  .v-label--clickable {
19983
19983
  cursor: pointer;
19984
- }.v-layout {
19985
- --v-scrollbar-offset: 0px;
19986
- display: flex;
19987
- flex: 1 1 auto;
19988
- }
19989
- .v-layout--full-height {
19990
- --v-scrollbar-offset: inherit;
19991
- height: 100%;
19992
- }.v-layout-item {
19993
- position: absolute;
19994
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
19995
- }
19996
-
19997
- .v-layout-item--absolute {
19998
- position: absolute;
19999
19984
  }.v-list {
20000
19985
  overflow: auto;
20001
19986
  padding: 8px 0;
@@ -20493,6 +20478,21 @@ textarea.v-field__input::placeholder {
20493
20478
  opacity: 0;
20494
20479
  }.v-locale-provider {
20495
20480
  display: contents;
20481
+ }.v-layout {
20482
+ --v-scrollbar-offset: 0px;
20483
+ display: flex;
20484
+ flex: 1 1 auto;
20485
+ }
20486
+ .v-layout--full-height {
20487
+ --v-scrollbar-offset: inherit;
20488
+ height: 100%;
20489
+ }.v-layout-item {
20490
+ position: absolute;
20491
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20492
+ }
20493
+
20494
+ .v-layout-item--absolute {
20495
+ position: absolute;
20496
20496
  }.v-main {
20497
20497
  flex: 1 0 auto;
20498
20498
  max-width: 100%;
@@ -21097,28 +21097,6 @@ html.v-overlay-scroll-blocked {
21097
21097
 
21098
21098
  .v-slider__label {
21099
21099
  margin-inline-end: 12px;
21100
- }.v-responsive {
21101
- display: flex;
21102
- flex: 1 0 auto;
21103
- max-height: 100%;
21104
- max-width: 100%;
21105
- overflow: hidden;
21106
- position: relative;
21107
- }
21108
-
21109
- .v-responsive__content {
21110
- flex: 1 0 0px;
21111
- max-width: 100%;
21112
- }
21113
-
21114
- .v-responsive__sizer ~ .v-responsive__content {
21115
- margin-inline-start: -100%;
21116
- }
21117
-
21118
- .v-responsive__sizer {
21119
- flex: 1 0 0px;
21120
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21121
- pointer-events: none;
21122
21100
  }.v-rating {
21123
21101
  max-width: 100%;
21124
21102
  display: inline-flex;
@@ -21173,6 +21151,28 @@ html.v-overlay-scroll-blocked {
21173
21151
  opacity: 0;
21174
21152
  position: absolute;
21175
21153
  width: 0;
21154
+ }.v-responsive {
21155
+ display: flex;
21156
+ flex: 1 0 auto;
21157
+ max-height: 100%;
21158
+ max-width: 100%;
21159
+ overflow: hidden;
21160
+ position: relative;
21161
+ }
21162
+
21163
+ .v-responsive__content {
21164
+ flex: 1 0 0px;
21165
+ max-width: 100%;
21166
+ }
21167
+
21168
+ .v-responsive__sizer ~ .v-responsive__content {
21169
+ margin-inline-start: -100%;
21170
+ }
21171
+
21172
+ .v-responsive__sizer {
21173
+ flex: 1 0 0px;
21174
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21175
+ pointer-events: none;
21176
21176
  }.v-input--density-default {
21177
21177
  --select-chips-margin-bottom: 0px;
21178
21178
  }
package/dist/vuetify.d.ts CHANGED
@@ -260,10 +260,7 @@ type DefaultsInstance = undefined | {
260
260
  global?: Record<string, unknown>;
261
261
  };
262
262
  type DefaultsOptions = Partial<DefaultsInstance>;
263
- declare function useDefaults(props?: Record<string, any>, name?: string, defaults?: Ref<DefaultsInstance>): {
264
- props: Record<string, any>;
265
- provideSubDefaults: () => void;
266
- };
263
+ declare function useDefaults(props?: Record<string, any>, name?: string): Record<string, any>;
267
264
 
268
265
  type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
269
266
  declare const IconValue: PropType<IconValue>;
@@ -59520,11 +59517,11 @@ declare module '@vue/runtime-core' {
59520
59517
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
59521
59518
  VCardText: typeof import('vuetify/components')['VCardText']
59522
59519
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
59523
- VCarousel: typeof import('vuetify/components')['VCarousel']
59524
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
59525
59520
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
59526
59521
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
59527
59522
  VChip: typeof import('vuetify/components')['VChip']
59523
+ VCarousel: typeof import('vuetify/components')['VCarousel']
59524
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
59528
59525
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
59529
59526
  VCode: typeof import('vuetify/components')['VCode']
59530
59527
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
@@ -1,10 +1,10 @@
1
1
  /*!
2
- * Vuetify v3.2.0
2
+ * Vuetify v3.2.1
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
6
6
 
7
- import { ref, onBeforeUnmount, watch, readonly, reactive, computed, watchEffect, toRefs, capitalize, onScopeDispose, effectScope, shallowRef, inject as inject$1, unref, provide, defineComponent as defineComponent$1, camelize, h, getCurrentInstance as getCurrentInstance$1, onDeactivated, onActivated, onMounted, toRaw, createVNode, TransitionGroup, Transition, mergeProps, onBeforeMount, nextTick, withDirectives, Fragment, resolveDirective, vShow, isRef, toRef, Text, resolveDynamicComponent, cloneVNode, warn, toHandlers, Teleport, createTextVNode, onBeforeUpdate, vModelText, onUpdated } from 'vue';
7
+ import { ref, onBeforeUnmount, watch, readonly, reactive, computed, watchEffect, toRefs, capitalize, onScopeDispose, effectScope, unref, provide, shallowRef, inject as inject$1, defineComponent as defineComponent$1, camelize, h, getCurrentInstance as getCurrentInstance$1, onDeactivated, onActivated, onMounted, toRaw, createVNode, TransitionGroup, Transition, mergeProps, onBeforeMount, nextTick, withDirectives, Fragment, resolveDirective, vShow, isRef, toRef, Text, resolveDynamicComponent, cloneVNode, warn, toHandlers, Teleport, createTextVNode, onBeforeUpdate, vModelText, onUpdated } from 'vue';
8
8
 
9
9
  const IN_BROWSER = typeof window !== 'undefined';
10
10
  const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window;
@@ -1012,7 +1012,7 @@ function provideDefaults(defaults, options) {
1012
1012
  function propIsDefined(vnode, prop) {
1013
1013
  return typeof vnode.props?.[prop] !== 'undefined' || typeof vnode.props?.[toKebabCase(prop)] !== 'undefined';
1014
1014
  }
1015
- function useDefaults() {
1015
+ function internalUseDefaults() {
1016
1016
  let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1017
1017
  let name = arguments.length > 1 ? arguments[1] : undefined;
1018
1018
  let defaults = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : injectDefaults();
@@ -1056,6 +1056,16 @@ function useDefaults() {
1056
1056
  provideSubDefaults
1057
1057
  };
1058
1058
  }
1059
+ function useDefaults() {
1060
+ let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1061
+ let name = arguments.length > 1 ? arguments[1] : undefined;
1062
+ const {
1063
+ props: _props,
1064
+ provideSubDefaults
1065
+ } = internalUseDefaults(props, name);
1066
+ provideSubDefaults();
1067
+ return _props;
1068
+ }
1059
1069
 
1060
1070
  // Utils
1061
1071
 
@@ -1083,7 +1093,7 @@ function defineComponent(options) {
1083
1093
  const {
1084
1094
  props: _props,
1085
1095
  provideSubDefaults
1086
- } = useDefaults(props, props._as ?? options.name, defaults);
1096
+ } = internalUseDefaults(props, props._as ?? options.name, defaults);
1087
1097
  const setupBindings = options._setup(_props, ctx);
1088
1098
  provideSubDefaults();
1089
1099
  return setupBindings;
@@ -19417,7 +19427,7 @@ function createVuetify$1() {
19417
19427
  date
19418
19428
  };
19419
19429
  }
19420
- const version$1 = "3.2.0";
19430
+ const version$1 = "3.2.1";
19421
19431
  createVuetify$1.version = version$1;
19422
19432
 
19423
19433
  // Vue's inject() can only be used in setup
@@ -19437,7 +19447,7 @@ const createVuetify = function () {
19437
19447
  ...options
19438
19448
  });
19439
19449
  };
19440
- const version = "3.2.0";
19450
+ const version = "3.2.1";
19441
19451
  createVuetify.version = version;
19442
19452
 
19443
19453
  export { components, createVuetify, directives, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };