vuetify 3.3.7 → 3.3.8

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.3.7
2
+ * Vuetify v3.3.8
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -20132,6 +20132,7 @@ html.overflow-y-hidden {
20132
20132
  letter-spacing: 0.009375em;
20133
20133
  opacity: var(--v-high-emphasis-opacity);
20134
20134
  min-height: calc(max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom)) + var(--v-input-chips-margin-bottom) + 2px);
20135
+ min-width: 0;
20135
20136
  padding-inline-start: var(--v-field-padding-start);
20136
20137
  padding-inline-end: var(--v-field-padding-end);
20137
20138
  padding-top: var(--v-field-input-padding-top);
@@ -20798,6 +20799,21 @@ textarea.v-field__input::placeholder {
20798
20799
 
20799
20800
  .v-label--clickable {
20800
20801
  cursor: pointer;
20802
+ }.v-layout {
20803
+ --v-scrollbar-offset: 0px;
20804
+ display: flex;
20805
+ flex: 1 1 auto;
20806
+ }
20807
+ .v-layout--full-height {
20808
+ --v-scrollbar-offset: inherit;
20809
+ height: 100%;
20810
+ }.v-layout-item {
20811
+ position: absolute;
20812
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20813
+ }
20814
+
20815
+ .v-layout-item--absolute {
20816
+ position: absolute;
20801
20817
  }.v-list {
20802
20818
  overflow: auto;
20803
20819
  padding: 8px 0;
@@ -21342,6 +21358,19 @@ textarea.v-field__input::placeholder {
21342
21358
  --v-layout-right: 0px;
21343
21359
  --v-layout-top: 0px;
21344
21360
  --v-layout-bottom: 0px;
21361
+ }.v-menu > .v-overlay__content {
21362
+ display: flex;
21363
+ flex-direction: column;
21364
+ border-radius: 4px;
21365
+ }
21366
+ .v-menu > .v-overlay__content > .v-card,
21367
+ .v-menu > .v-overlay__content > .v-sheet,
21368
+ .v-menu > .v-overlay__content > .v-list {
21369
+ background: rgb(var(--v-theme-surface));
21370
+ border-radius: inherit;
21371
+ overflow: auto;
21372
+ height: 100%;
21373
+ box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
21345
21374
  }.v-messages {
21346
21375
  flex: 1 1 auto;
21347
21376
  font-size: 12px;
@@ -21358,19 +21387,6 @@ textarea.v-field__input::placeholder {
21358
21387
  -webkit-hyphens: auto;
21359
21388
  hyphens: auto;
21360
21389
  transition-duration: 150ms;
21361
- }.v-menu > .v-overlay__content {
21362
- display: flex;
21363
- flex-direction: column;
21364
- border-radius: 4px;
21365
- }
21366
- .v-menu > .v-overlay__content > .v-card,
21367
- .v-menu > .v-overlay__content > .v-sheet,
21368
- .v-menu > .v-overlay__content > .v-list {
21369
- background: rgb(var(--v-theme-surface));
21370
- border-radius: inherit;
21371
- overflow: auto;
21372
- height: 100%;
21373
- box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
21374
21390
  }.v-navigation-drawer {
21375
21391
  -webkit-overflow-scrolling: touch;
21376
21392
  background: rgb(var(--v-theme-surface));
@@ -21977,6 +21993,32 @@ html.v-overlay-scroll-blocked {
21977
21993
  opacity: 0;
21978
21994
  position: absolute;
21979
21995
  width: 0;
21996
+ }.v-responsive {
21997
+ display: flex;
21998
+ flex: 1 0 auto;
21999
+ max-height: 100%;
22000
+ max-width: 100%;
22001
+ overflow: hidden;
22002
+ position: relative;
22003
+ }
22004
+ .v-responsive--inline {
22005
+ display: inline-flex;
22006
+ flex: 0 0 auto;
22007
+ }
22008
+
22009
+ .v-responsive__content {
22010
+ flex: 1 0 0px;
22011
+ max-width: 100%;
22012
+ }
22013
+
22014
+ .v-responsive__sizer ~ .v-responsive__content {
22015
+ margin-inline-start: -100%;
22016
+ }
22017
+
22018
+ .v-responsive__sizer {
22019
+ flex: 1 0 0px;
22020
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22021
+ pointer-events: none;
21980
22022
  }.v-select .v-field .v-text-field__prefix,
21981
22023
  .v-select .v-field .v-text-field__suffix,
21982
22024
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -22028,32 +22070,6 @@ html.v-overlay-scroll-blocked {
22028
22070
  .v-select--active-menu .v-select__menu-icon {
22029
22071
  opacity: var(--v-high-emphasis-opacity);
22030
22072
  transform: rotate(180deg);
22031
- }.v-responsive {
22032
- display: flex;
22033
- flex: 1 0 auto;
22034
- max-height: 100%;
22035
- max-width: 100%;
22036
- overflow: hidden;
22037
- position: relative;
22038
- }
22039
- .v-responsive--inline {
22040
- display: inline-flex;
22041
- flex: 0 0 auto;
22042
- }
22043
-
22044
- .v-responsive__content {
22045
- flex: 1 0 0px;
22046
- max-width: 100%;
22047
- }
22048
-
22049
- .v-responsive__sizer ~ .v-responsive__content {
22050
- margin-inline-start: -100%;
22051
- }
22052
-
22053
- .v-responsive__sizer {
22054
- flex: 1 0 0px;
22055
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22056
- pointer-events: none;
22057
22073
  }.v-selection-control {
22058
22074
  align-items: center;
22059
22075
  contain: layout;
@@ -22682,6 +22698,48 @@ html.v-overlay-scroll-blocked {
22682
22698
  border-top: 0px !important;
22683
22699
  position: sticky;
22684
22700
  bottom: 0;
22701
+ }.v-textarea .v-field {
22702
+ --v-textarea-control-height: var(--v-input-control-height);
22703
+ }
22704
+ .v-textarea .v-field__field {
22705
+ --v-input-control-height: var(--v-textarea-control-height);
22706
+ }
22707
+ .v-textarea .v-field__input {
22708
+ flex: 1 1 auto;
22709
+ outline: none;
22710
+ -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));
22711
+ 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));
22712
+ }
22713
+ .v-textarea .v-field__input.v-textarea__sizer {
22714
+ visibility: hidden;
22715
+ position: absolute;
22716
+ top: 0;
22717
+ left: 0;
22718
+ height: 0 !important;
22719
+ min-height: 0 !important;
22720
+ pointer-events: none;
22721
+ }
22722
+ .v-textarea--auto-grow .v-field__input {
22723
+ overflow: hidden;
22724
+ }
22725
+ .v-textarea--no-resize .v-field__input {
22726
+ resize: none;
22727
+ }
22728
+ .v-textarea .v-field--no-label textarea,
22729
+ .v-textarea .v-field--active textarea {
22730
+ opacity: 1;
22731
+ }
22732
+ .v-textarea textarea {
22733
+ opacity: 0;
22734
+ flex: 1;
22735
+ min-width: 0;
22736
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
22737
+ }
22738
+ .v-textarea textarea:focus, .v-textarea textarea:active {
22739
+ outline: none;
22740
+ }
22741
+ .v-textarea textarea:invalid {
22742
+ box-shadow: none;
22685
22743
  }/* region BLOCK */
22686
22744
  .v-text-field input {
22687
22745
  color: inherit;
@@ -22766,49 +22824,7 @@ html.v-overlay-scroll-blocked {
22766
22824
  padding-top: calc(var(--v-field-padding-top--plain-underlined) + var(--v-input-padding-top));
22767
22825
  }
22768
22826
 
22769
- /* endregion */.v-textarea .v-field {
22770
- --v-textarea-control-height: var(--v-input-control-height);
22771
- }
22772
- .v-textarea .v-field__field {
22773
- --v-input-control-height: var(--v-textarea-control-height);
22774
- }
22775
- .v-textarea .v-field__input {
22776
- flex: 1 1 auto;
22777
- outline: none;
22778
- -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));
22779
- 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));
22780
- }
22781
- .v-textarea .v-field__input.v-textarea__sizer {
22782
- visibility: hidden;
22783
- position: absolute;
22784
- top: 0;
22785
- left: 0;
22786
- height: 0 !important;
22787
- min-height: 0 !important;
22788
- pointer-events: none;
22789
- }
22790
- .v-textarea--auto-grow .v-field__input {
22791
- overflow: hidden;
22792
- }
22793
- .v-textarea--no-resize .v-field__input {
22794
- resize: none;
22795
- }
22796
- .v-textarea .v-field--no-label textarea,
22797
- .v-textarea .v-field--active textarea {
22798
- opacity: 1;
22799
- }
22800
- .v-textarea textarea {
22801
- opacity: 0;
22802
- flex: 1;
22803
- min-width: 0;
22804
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
22805
- }
22806
- .v-textarea textarea:focus, .v-textarea textarea:active {
22807
- outline: none;
22808
- }
22809
- .v-textarea textarea:invalid {
22810
- box-shadow: none;
22811
- }.v-theme-provider {
22827
+ /* endregion */.v-theme-provider {
22812
22828
  background: rgb(var(--v-theme-background));
22813
22829
  color: rgb(var(--v-theme-on-background));
22814
22830
  }.v-timeline .v-timeline-divider__dot {
@@ -23489,21 +23505,6 @@ html.v-overlay-scroll-blocked {
23489
23505
  }
23490
23506
  .v-window-y-reverse-transition-leave-to {
23491
23507
  transform: translateY(100%);
23492
- }.v-layout {
23493
- --v-scrollbar-offset: 0px;
23494
- display: flex;
23495
- flex: 1 1 auto;
23496
- }
23497
- .v-layout--full-height {
23498
- --v-scrollbar-offset: inherit;
23499
- height: 100%;
23500
- }.v-layout-item {
23501
- position: absolute;
23502
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23503
- }
23504
-
23505
- .v-layout-item--absolute {
23506
- position: absolute;
23507
23508
  }.v-color-picker-canvas {
23508
23509
  display: flex;
23509
23510
  position: relative;
@@ -23555,6 +23556,41 @@ html.v-overlay-scroll-blocked {
23555
23556
  }
23556
23557
  .v-color-picker-edit__input span {
23557
23558
  font-size: 0.75rem;
23559
+ }.v-color-picker-swatches {
23560
+ overflow-y: auto;
23561
+ }
23562
+ .v-color-picker-swatches > div {
23563
+ display: flex;
23564
+ flex-wrap: wrap;
23565
+ justify-content: center;
23566
+ padding: 8px;
23567
+ }
23568
+
23569
+ .v-color-picker-swatches__swatch {
23570
+ display: flex;
23571
+ flex-direction: column;
23572
+ margin-bottom: 10px;
23573
+ }
23574
+
23575
+ .v-color-picker-swatches__color {
23576
+ position: relative;
23577
+ height: 18px;
23578
+ max-height: 18px;
23579
+ width: 45px;
23580
+ margin: 2px 4px;
23581
+ border-radius: 2px;
23582
+ -webkit-user-select: none;
23583
+ user-select: none;
23584
+ overflow: hidden;
23585
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
23586
+ cursor: pointer;
23587
+ }
23588
+ .v-color-picker-swatches__color > div {
23589
+ display: flex;
23590
+ align-items: center;
23591
+ justify-content: center;
23592
+ width: 100%;
23593
+ height: 100%;
23558
23594
  }.v-color-picker-preview__alpha .v-slider-track__background {
23559
23595
  background-color: transparent !important;
23560
23596
  }
@@ -23621,41 +23657,6 @@ html.v-overlay-scroll-blocked {
23621
23657
  align-items: center;
23622
23658
  display: flex;
23623
23659
  margin-bottom: 24px;
23624
- }.v-color-picker-swatches {
23625
- overflow-y: auto;
23626
- }
23627
- .v-color-picker-swatches > div {
23628
- display: flex;
23629
- flex-wrap: wrap;
23630
- justify-content: center;
23631
- padding: 8px;
23632
- }
23633
-
23634
- .v-color-picker-swatches__swatch {
23635
- display: flex;
23636
- flex-direction: column;
23637
- margin-bottom: 10px;
23638
- }
23639
-
23640
- .v-color-picker-swatches__color {
23641
- position: relative;
23642
- height: 18px;
23643
- max-height: 18px;
23644
- width: 45px;
23645
- margin: 2px 4px;
23646
- border-radius: 2px;
23647
- -webkit-user-select: none;
23648
- user-select: none;
23649
- overflow: hidden;
23650
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
23651
- cursor: pointer;
23652
- }
23653
- .v-color-picker-swatches__color > div {
23654
- display: flex;
23655
- align-items: center;
23656
- justify-content: center;
23657
- width: 100%;
23658
- height: 100%;
23659
23660
  }.v-slider-thumb {
23660
23661
  touch-action: none;
23661
23662
  color: rgb(var(--v-theme-surface-variant));
@@ -1,10 +1,10 @@
1
1
  /*!
2
- * Vuetify v3.3.7
2
+ * Vuetify v3.3.8
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
6
6
 
7
- import { Fragment, reactive, computed, watchEffect, toRefs, capitalize, warn, watch, onScopeDispose, effectScope, ref, unref, provide, shallowRef, inject as inject$1, defineComponent as defineComponent$1, camelize, h, getCurrentInstance as getCurrentInstance$1, onBeforeUnmount, readonly, onDeactivated, onActivated, onMounted, toRaw, createVNode, TransitionGroup, Transition, mergeProps, onBeforeMount, nextTick, withDirectives, resolveDirective, vShow, isRef, toRef, Text, resolveDynamicComponent, Teleport, cloneVNode, createTextVNode, toValue, onBeforeUpdate, vModelText, withModifiers } from 'vue';
7
+ import { Fragment, reactive, computed, watchEffect, toRefs, capitalize, warn, watch, onScopeDispose, effectScope, ref, unref, provide, shallowRef, inject as inject$1, defineComponent as defineComponent$1, camelize, h, getCurrentInstance as getCurrentInstance$1, onBeforeUnmount, readonly, onDeactivated, onActivated, onMounted, toRaw, createVNode, TransitionGroup, Transition, mergeProps, onBeforeMount, nextTick, withDirectives, resolveDirective, vShow, isRef, toRef, Text, resolveDynamicComponent, Teleport, cloneVNode, createTextVNode, onBeforeUpdate, vModelText, withModifiers } from 'vue';
8
8
 
9
9
  // Types
10
10
  // eslint-disable-line vue/prefer-import-from-vue
@@ -2161,7 +2161,7 @@ function parseThemeOptions() {
2161
2161
 
2162
2162
  // Composables
2163
2163
  function createTheme(options) {
2164
- const parsedOptions = reactive(parseThemeOptions(options));
2164
+ const parsedOptions = parseThemeOptions(options);
2165
2165
  const name = ref(parsedOptions.defaultTheme);
2166
2166
  const themes = ref(parsedOptions.themes);
2167
2167
  const computedThemes = computed(() => {
@@ -9615,11 +9615,11 @@ const VOverlay = genericComponent()({
9615
9615
  props: mergeProps({
9616
9616
  ref: activatorRef
9617
9617
  }, activatorEvents.value, props.activatorProps)
9618
- }), isMounted.value && createVNode(Teleport, {
9618
+ }), isMounted.value && hasContent.value && createVNode(Teleport, {
9619
9619
  "disabled": !teleportTarget.value,
9620
9620
  "to": teleportTarget.value
9621
9621
  }, {
9622
- default: () => [hasContent.value && createVNode("div", mergeProps({
9622
+ default: () => [createVNode("div", mergeProps({
9623
9623
  "class": ['v-overlay', {
9624
9624
  'v-overlay--absolute': props.absolute || props.contained,
9625
9625
  'v-overlay--active': isActive.value,
@@ -11104,7 +11104,8 @@ function useFilter(props, items, query, options) {
11104
11104
  const filteredMatches = ref(new Map());
11105
11105
  const transformedItems = computed(() => options?.transform ? unref(items).map(options?.transform) : unref(items));
11106
11106
  watchEffect(() => {
11107
- const strQuery = typeof toValue(query) !== 'string' && typeof toValue(query) !== 'number' ? '' : String(toValue(query));
11107
+ const _query = typeof query === 'function' ? query() : unref(query);
11108
+ const strQuery = typeof _query !== 'string' && typeof _query !== 'number' ? '' : String(_query);
11108
11109
  const results = filterItems(transformedItems.value, strQuery, {
11109
11110
  customKeyFilter: props.customKeyFilter,
11110
11111
  default: props.customFilter,
@@ -12677,64 +12678,65 @@ const VCarousel = genericComponent()({
12677
12678
  window.clearTimeout(slideTimeout);
12678
12679
  window.requestAnimationFrame(startTimeout);
12679
12680
  }
12680
- useRender(() => createVNode(VWindow, {
12681
- "ref": windowRef,
12682
- "modelValue": model.value,
12683
- "onUpdate:modelValue": $event => model.value = $event,
12684
- "class": ['v-carousel', {
12685
- 'v-carousel--hide-delimiter-background': props.hideDelimiterBackground,
12686
- 'v-carousel--vertical-delimiters': props.verticalDelimiters
12687
- }, props.class],
12688
- "style": [{
12689
- height: convertToUnit(props.height)
12690
- }, props.style],
12691
- "continuous": true,
12692
- "mandatory": "force",
12693
- "showArrows": props.showArrows
12694
- }, {
12695
- default: slots.default,
12696
- additional: _ref2 => {
12697
- let {
12698
- group
12699
- } = _ref2;
12700
- return createVNode(Fragment, null, [!props.hideDelimiters && createVNode("div", {
12701
- "class": "v-carousel__controls",
12702
- "style": {
12703
- left: props.verticalDelimiters === 'left' && props.verticalDelimiters ? 0 : 'auto',
12704
- right: props.verticalDelimiters === 'right' ? 0 : 'auto'
12705
- }
12706
- }, [group.items.value.length > 0 && createVNode(VDefaultsProvider, {
12707
- "defaults": {
12708
- VBtn: {
12709
- color: props.color,
12710
- icon: props.delimiterIcon,
12711
- size: 'x-small',
12712
- variant: 'text'
12681
+ useRender(() => {
12682
+ const [windowProps] = VWindow.filterProps(props);
12683
+ return createVNode(VWindow, mergeProps({
12684
+ "ref": windowRef
12685
+ }, windowProps, {
12686
+ "modelValue": model.value,
12687
+ "onUpdate:modelValue": $event => model.value = $event,
12688
+ "class": ['v-carousel', {
12689
+ 'v-carousel--hide-delimiter-background': props.hideDelimiterBackground,
12690
+ 'v-carousel--vertical-delimiters': props.verticalDelimiters
12691
+ }, props.class],
12692
+ "style": [{
12693
+ height: convertToUnit(props.height)
12694
+ }, props.style]
12695
+ }), {
12696
+ default: slots.default,
12697
+ additional: _ref2 => {
12698
+ let {
12699
+ group
12700
+ } = _ref2;
12701
+ return createVNode(Fragment, null, [!props.hideDelimiters && createVNode("div", {
12702
+ "class": "v-carousel__controls",
12703
+ "style": {
12704
+ left: props.verticalDelimiters === 'left' && props.verticalDelimiters ? 0 : 'auto',
12705
+ right: props.verticalDelimiters === 'right' ? 0 : 'auto'
12713
12706
  }
12714
- },
12715
- "scoped": true
12716
- }, {
12717
- default: () => [group.items.value.map((item, index) => {
12718
- const props = {
12719
- id: `carousel-item-${item.id}`,
12720
- 'aria-label': t('$vuetify.carousel.ariaLabel.delimiter', index + 1, group.items.value.length),
12721
- class: [group.isSelected(item.id) && 'v-btn--active'],
12722
- onClick: () => group.select(item.id, true)
12723
- };
12724
- return slots.item ? slots.item({
12725
- props,
12726
- item
12727
- }) : createVNode(VBtn, mergeProps(item, props), null);
12728
- })]
12729
- })]), props.progress && createVNode(VProgressLinear, {
12730
- "class": "v-carousel__progress",
12731
- "color": typeof props.progress === 'string' ? props.progress : undefined,
12732
- "modelValue": (group.getItemIndex(model.value) + 1) / group.items.value.length * 100
12733
- }, null)]);
12734
- },
12735
- prev: slots.prev,
12736
- next: slots.next
12737
- }));
12707
+ }, [group.items.value.length > 0 && createVNode(VDefaultsProvider, {
12708
+ "defaults": {
12709
+ VBtn: {
12710
+ color: props.color,
12711
+ icon: props.delimiterIcon,
12712
+ size: 'x-small',
12713
+ variant: 'text'
12714
+ }
12715
+ },
12716
+ "scoped": true
12717
+ }, {
12718
+ default: () => [group.items.value.map((item, index) => {
12719
+ const props = {
12720
+ id: `carousel-item-${item.id}`,
12721
+ 'aria-label': t('$vuetify.carousel.ariaLabel.delimiter', index + 1, group.items.value.length),
12722
+ class: [group.isSelected(item.id) && 'v-btn--active'],
12723
+ onClick: () => group.select(item.id, true)
12724
+ };
12725
+ return slots.item ? slots.item({
12726
+ props,
12727
+ item
12728
+ }) : createVNode(VBtn, mergeProps(item, props), null);
12729
+ })]
12730
+ })]), props.progress && createVNode(VProgressLinear, {
12731
+ "class": "v-carousel__progress",
12732
+ "color": typeof props.progress === 'string' ? props.progress : undefined,
12733
+ "modelValue": (group.getItemIndex(model.value) + 1) / group.items.value.length * 100
12734
+ }, null)]);
12735
+ },
12736
+ prev: slots.prev,
12737
+ next: slots.next
12738
+ });
12739
+ });
12738
12740
  return {};
12739
12741
  }
12740
12742
  });
@@ -23596,7 +23598,7 @@ function createVuetify$1() {
23596
23598
  date
23597
23599
  };
23598
23600
  }
23599
- const version$1 = "3.3.7";
23601
+ const version$1 = "3.3.8";
23600
23602
  createVuetify$1.version = version$1;
23601
23603
 
23602
23604
  // Vue's inject() can only be used in setup
@@ -23610,7 +23612,7 @@ function inject(key) {
23610
23612
 
23611
23613
  /* eslint-disable local-rules/sort-imports */
23612
23614
 
23613
- const version = "3.3.7";
23615
+ const version = "3.3.8";
23614
23616
 
23615
23617
  /* eslint-disable local-rules/sort-imports */
23616
23618