@vuetify/nightly 3.1.2-next-20230113.0 → 3.1.2

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 (59) hide show
  1. package/CHANGELOG.md +15 -2
  2. package/dist/json/importMap.json +56 -56
  3. package/dist/vuetify-labs.css +178 -177
  4. package/dist/vuetify-labs.d.ts +40 -3
  5. package/dist/vuetify-labs.esm.js +158 -90
  6. package/dist/vuetify-labs.esm.js.map +1 -1
  7. package/dist/vuetify-labs.js +158 -90
  8. package/dist/vuetify-labs.min.css +2 -2
  9. package/dist/vuetify.css +203 -202
  10. package/dist/vuetify.d.ts +56 -19
  11. package/dist/vuetify.esm.js +105 -74
  12. package/dist/vuetify.esm.js.map +1 -1
  13. package/dist/vuetify.js +105 -74
  14. package/dist/vuetify.js.map +1 -1
  15. package/dist/vuetify.min.css +2 -2
  16. package/dist/vuetify.min.js +52 -52
  17. package/dist/vuetify.min.js.map +1 -1
  18. package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -0
  19. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  20. package/lib/components/VBtn/VBtn.mjs +9 -3
  21. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  22. package/lib/components/VCard/VCard.mjs +5 -2
  23. package/lib/components/VCard/VCard.mjs.map +1 -1
  24. package/lib/components/VCard/index.d.ts +8 -2
  25. package/lib/components/VCombobox/VCombobox.mjs +2 -1
  26. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  27. package/lib/components/VFileInput/VFileInput.css +1 -0
  28. package/lib/components/VFileInput/VFileInput.sass +1 -0
  29. package/lib/components/VList/VListItem.css +1 -1
  30. package/lib/components/VList/VListItem.mjs +5 -1
  31. package/lib/components/VList/VListItem.mjs.map +1 -1
  32. package/lib/components/VList/VListItem.sass +1 -1
  33. package/lib/components/VList/index.d.ts +20 -1
  34. package/lib/components/VProgressLinear/VProgressLinear.mjs +13 -1
  35. package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
  36. package/lib/components/VProgressLinear/index.d.ts +18 -0
  37. package/lib/components/VSelect/VSelect.mjs +1 -0
  38. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  39. package/lib/components/VSlider/VSliderThumb.mjs +5 -1
  40. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  41. package/lib/components/index.d.ts +40 -3
  42. package/lib/composables/filter.mjs +3 -3
  43. package/lib/composables/filter.mjs.map +1 -1
  44. package/lib/entry-bundler.mjs +1 -1
  45. package/lib/entry-bundler.mjs.map +1 -1
  46. package/lib/framework.mjs +1 -1
  47. package/lib/framework.mjs.map +1 -1
  48. package/lib/index.d.ts +16 -16
  49. package/lib/labs/VDataTable/VDataTable.mjs +4 -1
  50. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  51. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +3 -3
  52. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -1
  53. package/lib/labs/VDataTable/VDataTableRows.mjs +36 -8
  54. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  55. package/lib/labs/VDataTable/VDataTableVirtual.mjs +4 -1
  56. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  57. package/lib/labs/VDataTable/composables/group.mjs +9 -4
  58. package/lib/labs/VDataTable/composables/group.mjs.map +1 -1
  59. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.1.2-next-20230113.0
2
+ * Vuetify v3.1.2
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18873,76 +18873,6 @@ html.overflow-y-hidden {
18873
18873
  .v-autocomplete--selection-slot.v-text-field input {
18874
18874
  position: relative;
18875
18875
  padding-inline-start: 0;
18876
- }.v-badge {
18877
- display: inline-block;
18878
- line-height: 1;
18879
- }
18880
-
18881
- .v-badge__badge {
18882
- align-items: center;
18883
- border-radius: 10px;
18884
- font-size: 0.75rem;
18885
- font-weight: 500;
18886
- height: 1.25rem;
18887
- justify-content: center;
18888
- min-width: 20px;
18889
- padding: 4px 6px;
18890
- pointer-events: auto;
18891
- position: absolute;
18892
- text-align: center;
18893
- text-indent: 0;
18894
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18895
- white-space: nowrap;
18896
- background: rgb(var(--v-theme-surface-variant));
18897
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18898
- }
18899
- .v-badge--bordered .v-badge__badge::after {
18900
- border-radius: inherit;
18901
- border-style: solid;
18902
- border-width: 2px;
18903
- bottom: 0;
18904
- color: rgb(var(--v-theme-background));
18905
- content: "";
18906
- left: 0;
18907
- position: absolute;
18908
- right: 0;
18909
- top: 0;
18910
- transform: scale(1.2);
18911
- }
18912
- .v-badge--dot .v-badge__badge {
18913
- border-radius: 4.5px;
18914
- height: 9px;
18915
- min-width: 0;
18916
- padding: 0;
18917
- width: 9px;
18918
- }
18919
- .v-badge--dot .v-badge__badge::after {
18920
- border-width: 1.5px;
18921
- }
18922
- .v-badge--inline .v-badge__badge {
18923
- position: relative;
18924
- vertical-align: middle;
18925
- }
18926
- .v-badge__badge .v-icon {
18927
- color: inherit;
18928
- font-size: 0.75rem;
18929
- margin: 0 -2px;
18930
- }
18931
- .v-badge__badge img,
18932
- .v-badge__badge .v-img {
18933
- height: 100%;
18934
- width: 100%;
18935
- }
18936
-
18937
- .v-badge__wrapper {
18938
- display: flex;
18939
- position: relative;
18940
- }
18941
- .v-badge--inline .v-badge__wrapper {
18942
- align-items: center;
18943
- display: inline-flex;
18944
- justify-content: center;
18945
- margin: 0 4px;
18946
18876
  }.v-avatar {
18947
18877
  flex: none;
18948
18878
  align-items: center;
@@ -19030,6 +18960,76 @@ html.overflow-y-hidden {
19030
18960
  .v-avatar .v-img {
19031
18961
  height: 100%;
19032
18962
  width: 100%;
18963
+ }.v-badge {
18964
+ display: inline-block;
18965
+ line-height: 1;
18966
+ }
18967
+
18968
+ .v-badge__badge {
18969
+ align-items: center;
18970
+ border-radius: 10px;
18971
+ font-size: 0.75rem;
18972
+ font-weight: 500;
18973
+ height: 1.25rem;
18974
+ justify-content: center;
18975
+ min-width: 20px;
18976
+ padding: 4px 6px;
18977
+ pointer-events: auto;
18978
+ position: absolute;
18979
+ text-align: center;
18980
+ text-indent: 0;
18981
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18982
+ white-space: nowrap;
18983
+ background: rgb(var(--v-theme-surface-variant));
18984
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18985
+ }
18986
+ .v-badge--bordered .v-badge__badge::after {
18987
+ border-radius: inherit;
18988
+ border-style: solid;
18989
+ border-width: 2px;
18990
+ bottom: 0;
18991
+ color: rgb(var(--v-theme-background));
18992
+ content: "";
18993
+ left: 0;
18994
+ position: absolute;
18995
+ right: 0;
18996
+ top: 0;
18997
+ transform: scale(1.2);
18998
+ }
18999
+ .v-badge--dot .v-badge__badge {
19000
+ border-radius: 4.5px;
19001
+ height: 9px;
19002
+ min-width: 0;
19003
+ padding: 0;
19004
+ width: 9px;
19005
+ }
19006
+ .v-badge--dot .v-badge__badge::after {
19007
+ border-width: 1.5px;
19008
+ }
19009
+ .v-badge--inline .v-badge__badge {
19010
+ position: relative;
19011
+ vertical-align: middle;
19012
+ }
19013
+ .v-badge__badge .v-icon {
19014
+ color: inherit;
19015
+ font-size: 0.75rem;
19016
+ margin: 0 -2px;
19017
+ }
19018
+ .v-badge__badge img,
19019
+ .v-badge__badge .v-img {
19020
+ height: 100%;
19021
+ width: 100%;
19022
+ }
19023
+
19024
+ .v-badge__wrapper {
19025
+ display: flex;
19026
+ position: relative;
19027
+ }
19028
+ .v-badge--inline .v-badge__wrapper {
19029
+ align-items: center;
19030
+ display: inline-flex;
19031
+ justify-content: center;
19032
+ margin: 0 4px;
19033
19033
  }.v-banner {
19034
19034
  display: grid;
19035
19035
  flex: 1 1;
@@ -20515,26 +20515,6 @@ html.overflow-y-hidden {
20515
20515
  .v-chip-group--column {
20516
20516
  flex-wrap: wrap;
20517
20517
  white-space: normal;
20518
- }.v-color-picker {
20519
- align-self: flex-start;
20520
- contain: content;
20521
- }
20522
- .v-color-picker.v-sheet {
20523
- box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20524
- border-radius: 4px;
20525
- }
20526
-
20527
- .v-color-picker__controls {
20528
- display: flex;
20529
- flex-direction: column;
20530
- padding: 16px;
20531
- }
20532
-
20533
- .v-color-picker--flat {
20534
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20535
- }
20536
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20537
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20538
20518
  }.v-input--density-default {
20539
20519
  --combobox-chips-margin-bottom: 0px;
20540
20520
  }
@@ -20623,6 +20603,26 @@ html.overflow-y-hidden {
20623
20603
  }
20624
20604
  .v-combobox--single .v-field--focused .v-combobox__selection {
20625
20605
  opacity: 0;
20606
+ }.v-color-picker {
20607
+ align-self: flex-start;
20608
+ contain: content;
20609
+ }
20610
+ .v-color-picker.v-sheet {
20611
+ box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20612
+ border-radius: 4px;
20613
+ }
20614
+
20615
+ .v-color-picker__controls {
20616
+ display: flex;
20617
+ flex-direction: column;
20618
+ padding: 16px;
20619
+ }
20620
+
20621
+ .v-color-picker--flat {
20622
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20623
+ }
20624
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20625
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20626
20626
  }.v-container {
20627
20627
  width: 100%;
20628
20628
  padding: 16px;
@@ -21634,35 +21634,6 @@ html.overflow-y-hidden {
21634
21634
  flex: 0 1 auto;
21635
21635
  font-size: 12px;
21636
21636
  transition-duration: 150ms;
21637
- }.v-divider {
21638
- display: block;
21639
- flex: 1 1 100%;
21640
- height: 0px;
21641
- max-height: 0px;
21642
- opacity: var(--v-border-opacity);
21643
- transition: inherit;
21644
- border-style: solid;
21645
- border-width: thin 0 0 0;
21646
- }
21647
- .v-divider--vertical {
21648
- align-self: stretch;
21649
- border-width: 0 thin 0 0;
21650
- display: inline-flex;
21651
- height: inherit;
21652
- margin-left: -1px;
21653
- max-height: 100%;
21654
- max-width: 0px;
21655
- vertical-align: text-bottom;
21656
- width: 0px;
21657
- }
21658
- .v-divider--inset:not(.v-divider--vertical) {
21659
- max-width: calc(100% - 72px);
21660
- margin-inline-start: 72px;
21661
- }
21662
- .v-divider--inset.v-divider--vertical {
21663
- margin-bottom: 8px;
21664
- margin-top: 8px;
21665
- max-height: calc(100% - 16px);
21666
21637
  }.v-dialog {
21667
21638
  align-items: center;
21668
21639
  justify-content: center;
@@ -21739,6 +21710,35 @@ html.overflow-y-hidden {
21739
21710
  -webkit-backface-visibility: hidden;
21740
21711
  backface-visibility: hidden;
21741
21712
  overflow-y: auto;
21713
+ }.v-divider {
21714
+ display: block;
21715
+ flex: 1 1 100%;
21716
+ height: 0px;
21717
+ max-height: 0px;
21718
+ opacity: var(--v-border-opacity);
21719
+ transition: inherit;
21720
+ border-style: solid;
21721
+ border-width: thin 0 0 0;
21722
+ }
21723
+ .v-divider--vertical {
21724
+ align-self: stretch;
21725
+ border-width: 0 thin 0 0;
21726
+ display: inline-flex;
21727
+ height: inherit;
21728
+ margin-left: -1px;
21729
+ max-height: 100%;
21730
+ max-width: 0px;
21731
+ vertical-align: text-bottom;
21732
+ width: 0px;
21733
+ }
21734
+ .v-divider--inset:not(.v-divider--vertical) {
21735
+ max-width: calc(100% - 72px);
21736
+ margin-inline-start: 72px;
21737
+ }
21738
+ .v-divider--inset.v-divider--vertical {
21739
+ margin-bottom: 8px;
21740
+ margin-top: 8px;
21741
+ max-height: calc(100% - 16px);
21742
21742
  }.v-expansion-panel {
21743
21743
  background-color: rgb(var(--v-theme-surface));
21744
21744
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -21936,6 +21936,56 @@ html.overflow-y-hidden {
21936
21936
  }
21937
21937
  .v-expansion-panels--variant-inset > .v-expansion-panel--active {
21938
21938
  max-width: calc(100% - 32px);
21939
+ }.v-input--density-default {
21940
+ --file-input-chips-margin-bottom: 0px;
21941
+ }
21942
+
21943
+ .v-input--density-comfortable {
21944
+ --file-input-chips-margin-bottom: 2px;
21945
+ }
21946
+
21947
+ .v-input--density-compact {
21948
+ --file-input-chips-margin-bottom: 4px;
21949
+ }
21950
+
21951
+ .v-file-input input[type=file] {
21952
+ height: 100%;
21953
+ left: 0;
21954
+ opacity: 0;
21955
+ position: absolute;
21956
+ top: 0;
21957
+ width: 100%;
21958
+ z-index: 1;
21959
+ }
21960
+ .v-file-input .v-chip {
21961
+ margin-top: 2px;
21962
+ margin-bottom: var(--file-input-chips-margin-bottom);
21963
+ }.v-footer {
21964
+ align-items: center;
21965
+ display: flex;
21966
+ flex: 1 1 auto;
21967
+ padding: 8px 16px;
21968
+ position: relative;
21969
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21970
+ border-style: solid;
21971
+ border-width: 0;
21972
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
21973
+ border-radius: 0;
21974
+ background: rgb(var(--v-theme-surface));
21975
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21976
+ }
21977
+ .v-footer--border {
21978
+ border-width: thin;
21979
+ box-shadow: none;
21980
+ }
21981
+ .v-footer--absolute {
21982
+ position: absolute;
21983
+ }
21984
+ .v-footer--fixed {
21985
+ position: fixed;
21986
+ }
21987
+ .v-footer--rounded {
21988
+ border-radius: 4px;
21939
21989
  }/* region INPUT */
21940
21990
  .v-field {
21941
21991
  display: grid;
@@ -22367,56 +22417,7 @@ textarea.v-field__input::placeholder {
22367
22417
  opacity: 0;
22368
22418
  }
22369
22419
 
22370
- /* endregion */.v-input--density-default {
22371
- --file-input-chips-margin-bottom: 0px;
22372
- }
22373
-
22374
- .v-input--density-comfortable {
22375
- --file-input-chips-margin-bottom: 2px;
22376
- }
22377
-
22378
- .v-input--density-compact {
22379
- --file-input-chips-margin-bottom: 4px;
22380
- }
22381
-
22382
- .v-file-input input[type=file] {
22383
- height: 100%;
22384
- left: 0;
22385
- opacity: 0;
22386
- position: absolute;
22387
- top: 0;
22388
- width: 100%;
22389
- }
22390
- .v-file-input .v-chip {
22391
- margin-top: 2px;
22392
- margin-bottom: var(--file-input-chips-margin-bottom);
22393
- }.v-footer {
22394
- align-items: center;
22395
- display: flex;
22396
- flex: 1 1 auto;
22397
- padding: 8px 16px;
22398
- position: relative;
22399
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22400
- border-style: solid;
22401
- border-width: 0;
22402
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
22403
- border-radius: 0;
22404
- background: rgb(var(--v-theme-surface));
22405
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22406
- }
22407
- .v-footer--border {
22408
- border-width: thin;
22409
- box-shadow: none;
22410
- }
22411
- .v-footer--absolute {
22412
- position: absolute;
22413
- }
22414
- .v-footer--fixed {
22415
- position: fixed;
22416
- }
22417
- .v-footer--rounded {
22418
- border-radius: 4px;
22419
- }.v-icon {
22420
+ /* endregion */.v-icon {
22420
22421
  --v-icon-size-multiplier: 1;
22421
22422
  align-items: center;
22422
22423
  display: inline-flex;
@@ -23069,7 +23070,7 @@ textarea.v-field__input::placeholder {
23069
23070
  padding-inline-start: 8px;
23070
23071
  padding-inline-end: 8px;
23071
23072
  }
23072
- .v-list .v-list-item--nav:not(:last-child):not(:only-child) {
23073
+ .v-list .v-list-item--nav:not(:only-child) {
23073
23074
  margin-bottom: 4px;
23074
23075
  }
23075
23076
 
@@ -23340,12 +23341,6 @@ html.v-overlay-scroll-blocked {
23340
23341
  }
23341
23342
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23342
23343
  margin: 0.3rem;
23343
- }.v-parallax {
23344
- position: relative;
23345
- overflow: hidden;
23346
- }
23347
- .v-parallax--active > .v-img__img {
23348
- will-change: transform;
23349
23344
  }.v-progress-circular {
23350
23345
  align-items: center;
23351
23346
  display: inline-flex;
@@ -23657,6 +23652,12 @@ html.v-overlay-scroll-blocked {
23657
23652
  0% {
23658
23653
  background-position-x: var(--v-progress-linear-height);
23659
23654
  }
23655
+ }.v-parallax {
23656
+ position: relative;
23657
+ overflow: hidden;
23658
+ }
23659
+ .v-parallax--active > .v-img__img {
23660
+ will-change: transform;
23660
23661
  }.v-radio-group > .v-input__control {
23661
23662
  flex-direction: column;
23662
23663
  }
@@ -4633,7 +4633,10 @@ declare const VCard: vue.DefineComponent<{
4633
4633
  };
4634
4634
  prependAvatar: StringConstructor;
4635
4635
  prependIcon: vue.PropType<IconValue>;
4636
- ripple: BooleanConstructor;
4636
+ ripple: {
4637
+ type: BooleanConstructor;
4638
+ default: boolean;
4639
+ };
4637
4640
  subtitle: StringConstructor;
4638
4641
  text: StringConstructor;
4639
4642
  title: StringConstructor;
@@ -4694,7 +4697,10 @@ declare const VCard: vue.DefineComponent<{
4694
4697
  };
4695
4698
  prependAvatar: StringConstructor;
4696
4699
  prependIcon: vue.PropType<IconValue>;
4697
- ripple: BooleanConstructor;
4700
+ ripple: {
4701
+ type: BooleanConstructor;
4702
+ default: boolean;
4703
+ };
4698
4704
  subtitle: StringConstructor;
4699
4705
  text: StringConstructor;
4700
4706
  title: StringConstructor;
@@ -11921,6 +11927,7 @@ declare const VListItem: {
11921
11927
  rounded: string | number | boolean;
11922
11928
  density: Density;
11923
11929
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
11930
+ ripple: boolean;
11924
11931
  }> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
11925
11932
  color: StringConstructor;
11926
11933
  variant: Omit<{
@@ -11977,6 +11984,10 @@ declare const VListItem: {
11977
11984
  nav: BooleanConstructor;
11978
11985
  prependAvatar: StringConstructor;
11979
11986
  prependIcon: PropType<IconValue>;
11987
+ ripple: {
11988
+ type: BooleanConstructor;
11989
+ default: boolean;
11990
+ };
11980
11991
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
11981
11992
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
11982
11993
  value: null;
@@ -11984,7 +11995,7 @@ declare const VListItem: {
11984
11995
  onClickOnce: PropType<EventProp<(...args: any[]) => any>>;
11985
11996
  }, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:subtitle">>> & {
11986
11997
  onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
11987
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant">;
11998
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant" | "ripple">;
11988
11999
  $attrs: {
11989
12000
  [x: string]: unknown;
11990
12001
  };
@@ -12054,6 +12065,10 @@ declare const VListItem: {
12054
12065
  nav: BooleanConstructor;
12055
12066
  prependAvatar: StringConstructor;
12056
12067
  prependIcon: PropType<IconValue>;
12068
+ ripple: {
12069
+ type: BooleanConstructor;
12070
+ default: boolean;
12071
+ };
12057
12072
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12058
12073
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12059
12074
  value: null;
@@ -12074,6 +12089,7 @@ declare const VListItem: {
12074
12089
  rounded: string | number | boolean;
12075
12090
  density: Density;
12076
12091
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
12092
+ ripple: boolean;
12077
12093
  }> & {
12078
12094
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
12079
12095
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -12150,6 +12166,10 @@ declare const VListItem: {
12150
12166
  nav: BooleanConstructor;
12151
12167
  prependAvatar: StringConstructor;
12152
12168
  prependIcon: PropType<IconValue>;
12169
+ ripple: {
12170
+ type: BooleanConstructor;
12171
+ default: boolean;
12172
+ };
12153
12173
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12154
12174
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12155
12175
  value: null;
@@ -12217,6 +12237,10 @@ declare const VListItem: {
12217
12237
  nav: BooleanConstructor;
12218
12238
  prependAvatar: StringConstructor;
12219
12239
  prependIcon: PropType<IconValue>;
12240
+ ripple: {
12241
+ type: BooleanConstructor;
12242
+ default: boolean;
12243
+ };
12220
12244
  subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12221
12245
  title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
12222
12246
  value: null;
@@ -12237,6 +12261,7 @@ declare const VListItem: {
12237
12261
  rounded: string | number | boolean;
12238
12262
  density: Density;
12239
12263
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
12264
+ ripple: boolean;
12240
12265
  }> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
12241
12266
  $props: SlotsToProps<{
12242
12267
  prepend: [ListItemSlot];
@@ -14865,6 +14890,11 @@ declare const VProgressLinear: vue.DefineComponent<{
14865
14890
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
14866
14891
  default: undefined;
14867
14892
  };
14893
+ location: {
14894
+ type: vue.PropType<Anchor | (Anchor & {})>;
14895
+ default: Anchor | (Anchor & {});
14896
+ };
14897
+ absolute: BooleanConstructor;
14868
14898
  active: {
14869
14899
  type: BooleanConstructor;
14870
14900
  default: boolean;
@@ -14906,6 +14936,11 @@ declare const VProgressLinear: vue.DefineComponent<{
14906
14936
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
14907
14937
  default: undefined;
14908
14938
  };
14939
+ location: {
14940
+ type: vue.PropType<Anchor | (Anchor & {})>;
14941
+ default: Anchor | (Anchor & {});
14942
+ };
14943
+ absolute: BooleanConstructor;
14909
14944
  active: {
14910
14945
  type: BooleanConstructor;
14911
14946
  default: boolean;
@@ -14940,6 +14975,8 @@ declare const VProgressLinear: vue.DefineComponent<{
14940
14975
  }, {
14941
14976
  reverse: boolean;
14942
14977
  max: string | number;
14978
+ absolute: boolean;
14979
+ location: Anchor | (Anchor & {});
14943
14980
  height: string | number;
14944
14981
  active: boolean;
14945
14982
  tag: string;