@vuetify/nightly 4.0.0-dev-20230419.0 → 4.0.0-dev-20230422.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 (121) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/attributes.json +172 -108
  3. package/dist/json/importMap.json +58 -58
  4. package/dist/json/tags.json +16 -0
  5. package/dist/json/web-types.json +522 -220
  6. package/dist/vuetify-labs.css +335 -172
  7. package/dist/vuetify-labs.d.ts +620 -171
  8. package/dist/vuetify-labs.esm.js +864 -182
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +864 -181
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +166 -3
  13. package/dist/vuetify.d.ts +584 -167
  14. package/dist/vuetify.esm.js +806 -134
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +806 -133
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +748 -682
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/adapters/date-adapter.mjs +2 -0
  22. package/lib/adapters/date-adapter.mjs.map +1 -0
  23. package/lib/adapters/vuetify.mjs +399 -0
  24. package/lib/adapters/vuetify.mjs.map +1 -0
  25. package/lib/blueprints/index.d.ts +34 -0
  26. package/lib/blueprints/md1.d.ts +34 -0
  27. package/lib/blueprints/md2.d.ts +34 -0
  28. package/lib/blueprints/md3.d.ts +34 -0
  29. package/lib/components/VAppBar/VAppBar.mjs +62 -10
  30. package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
  31. package/lib/components/VAppBar/index.d.ts +26 -0
  32. package/lib/components/VAutocomplete/VAutocomplete.css +9 -0
  33. package/lib/components/VAutocomplete/VAutocomplete.mjs +50 -6
  34. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  35. package/lib/components/VAutocomplete/VAutocomplete.sass +10 -0
  36. package/lib/components/VAutocomplete/index.d.ts +29 -17
  37. package/lib/components/VBtn/_mixins.scss +1 -1
  38. package/lib/components/VCard/VCard.mjs.map +1 -1
  39. package/lib/components/VCard/index.d.ts +21 -16
  40. package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
  41. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  42. package/lib/components/VCheckbox/index.d.ts +22 -1
  43. package/lib/components/VCombobox/VCombobox.css +1 -1
  44. package/lib/components/VCombobox/VCombobox.mjs +6 -4
  45. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  46. package/lib/components/VCombobox/VCombobox.sass +1 -1
  47. package/lib/components/VCombobox/index.d.ts +29 -17
  48. package/lib/components/VField/index.d.ts +6 -0
  49. package/lib/components/VFileInput/VFileInput.mjs +13 -17
  50. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  51. package/lib/components/VFileInput/index.d.ts +68 -23
  52. package/lib/components/VInput/VInput.mjs +14 -7
  53. package/lib/components/VInput/VInput.mjs.map +1 -1
  54. package/lib/components/VInput/index.d.ts +22 -1
  55. package/lib/components/VOverlay/locationStrategies.mjs +9 -4
  56. package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
  57. package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
  58. package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
  59. package/lib/components/VRadioGroup/index.d.ts +22 -1
  60. package/lib/components/VRangeSlider/VRangeSlider.mjs +33 -22
  61. package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
  62. package/lib/components/VRangeSlider/index.d.ts +39 -6
  63. package/lib/components/VSelect/VSelect.mjs +6 -0
  64. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  65. package/lib/components/VSelect/index.d.ts +32 -17
  66. package/lib/components/VSlider/VSlider.mjs +33 -15
  67. package/lib/components/VSlider/VSlider.mjs.map +1 -1
  68. package/lib/components/VSlider/index.d.ts +39 -6
  69. package/lib/components/VSlider/slider.mjs +43 -23
  70. package/lib/components/VSlider/slider.mjs.map +1 -1
  71. package/lib/components/VSwitch/VSwitch.mjs +5 -3
  72. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  73. package/lib/components/VSwitch/index.d.ts +43 -1
  74. package/lib/components/VTextField/VTextField.mjs +4 -12
  75. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  76. package/lib/components/VTextField/index.d.ts +70 -22
  77. package/lib/components/VTextarea/VTextarea.mjs +4 -12
  78. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  79. package/lib/components/VTextarea/index.d.ts +61 -22
  80. package/lib/components/VToolbar/VToolbar.css +3 -1
  81. package/lib/components/VToolbar/VToolbar.sass +3 -1
  82. package/lib/components/VValidation/index.d.ts +10 -1
  83. package/lib/components/index.d.ts +525 -150
  84. package/lib/composables/date.mjs +39 -0
  85. package/lib/composables/date.mjs.map +1 -0
  86. package/lib/composables/focus.mjs +3 -2
  87. package/lib/composables/focus.mjs.map +1 -1
  88. package/lib/composables/index.mjs +1 -0
  89. package/lib/composables/index.mjs.map +1 -1
  90. package/lib/composables/items.mjs +7 -2
  91. package/lib/composables/items.mjs.map +1 -1
  92. package/lib/composables/scroll.mjs +3 -0
  93. package/lib/composables/scroll.mjs.map +1 -1
  94. package/lib/entry-bundler.mjs +1 -1
  95. package/lib/framework.mjs +8 -3
  96. package/lib/framework.mjs.map +1 -1
  97. package/lib/iconsets/mdi-svg.mjs +2 -2
  98. package/lib/iconsets/mdi-svg.mjs.map +1 -1
  99. package/lib/index.d.ts +59 -17
  100. package/lib/labs/VDataTable/VDataTable.mjs +2 -2
  101. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  102. package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
  103. package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -1
  104. package/lib/labs/VDataTable/VDataTableRows.mjs +52 -44
  105. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  106. package/lib/labs/VDataTable/VDataTableServer.mjs +2 -1
  107. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  108. package/lib/labs/VDataTable/VDataTableVirtual.mjs +0 -1
  109. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  110. package/lib/labs/VDataTable/composables/options.mjs +2 -1
  111. package/lib/labs/VDataTable/composables/options.mjs.map +1 -1
  112. package/lib/labs/VDataTable/index.d.ts +44 -11
  113. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs +1 -0
  114. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
  115. package/lib/labs/VSkeletonLoader/index.d.ts +9 -9
  116. package/lib/labs/components.d.ts +53 -20
  117. package/lib/styles/main.css +152 -0
  118. package/lib/styles/settings/_utilities.scss +11 -1
  119. package/lib/util/helpers.mjs +4 -0
  120. package/lib/util/helpers.mjs.map +1 -1
  121. package/package.json +2 -2
@@ -1891,6 +1891,7 @@ declare const VDataTable: {
1891
1891
  'onClick:row': PropType<(e: Event, value: {
1892
1892
  item: DataTableItem;
1893
1893
  }) => void>;
1894
+ search: StringConstructor;
1894
1895
  headers: {
1895
1896
  type: PropType<DataTableHeader[] | DataTableHeader[][]>;
1896
1897
  default: () => never[];
@@ -1919,7 +1920,6 @@ declare const VDataTable: {
1919
1920
  default: string;
1920
1921
  };
1921
1922
  returnObject: BooleanConstructor;
1922
- search: StringConstructor;
1923
1923
  }, vue.ExtractPropTypes<{
1924
1924
  customFilter: PropType<FilterFunction>;
1925
1925
  customKeyFilter: PropType<FilterKeyFunctions>;
@@ -1971,6 +1971,7 @@ declare const VDataTable: {
1971
1971
  'onClick:row': PropType<(e: Event, value: {
1972
1972
  item: DataTableItem;
1973
1973
  }) => void>;
1974
+ search: StringConstructor;
1974
1975
  headers: {
1975
1976
  type: PropType<DataTableHeader[] | DataTableHeader[][]>;
1976
1977
  default: () => never[];
@@ -1999,7 +2000,6 @@ declare const VDataTable: {
1999
2000
  default: string;
2000
2001
  };
2001
2002
  returnObject: BooleanConstructor;
2002
- search: StringConstructor;
2003
2003
  }>>;
2004
2004
  type VDataTable = InstanceType<typeof VDataTable>;
2005
2005
 
@@ -3635,6 +3635,7 @@ declare const VDataTableServer: {
3635
3635
  itemsPerPage: string | number;
3636
3636
  itemsLength: string | number;
3637
3637
  } & {
3638
+ search?: string | undefined;
3638
3639
  height?: string | number | undefined;
3639
3640
  width?: string | number | undefined;
3640
3641
  color?: string | undefined;
@@ -3976,6 +3977,7 @@ declare const VDataTableServer: {
3976
3977
  itemsPerPage: string | number;
3977
3978
  itemsLength: string | number;
3978
3979
  } & {
3980
+ search?: string | undefined;
3979
3981
  height?: string | number | undefined;
3980
3982
  width?: string | number | undefined;
3981
3983
  color?: string | undefined;
@@ -4357,6 +4359,7 @@ declare const VDataTableServer: {
4357
4359
  itemsPerPage: string | number;
4358
4360
  itemsLength: string | number;
4359
4361
  } & {
4362
+ search?: string | undefined;
4360
4363
  height?: string | number | undefined;
4361
4364
  width?: string | number | undefined;
4362
4365
  color?: string | undefined;
@@ -4686,6 +4689,7 @@ declare const VDataTableServer: {
4686
4689
  itemsPerPage: string | number;
4687
4690
  itemsLength: string | number;
4688
4691
  } & {
4692
+ search?: string | undefined;
4689
4693
  height?: string | number | undefined;
4690
4694
  width?: string | number | undefined;
4691
4695
  color?: string | undefined;
@@ -5091,6 +5095,7 @@ declare const VDataTableServer: {
5091
5095
  'onClick:row': vue.PropType<(e: Event, value: {
5092
5096
  item: DataTableItem;
5093
5097
  }) => void>;
5098
+ search: StringConstructor;
5094
5099
  color: StringConstructor;
5095
5100
  loading: (StringConstructor | BooleanConstructor)[];
5096
5101
  loadingText: {
@@ -5172,6 +5177,7 @@ declare const VDataTableServer: {
5172
5177
  'onClick:row': vue.PropType<(e: Event, value: {
5173
5178
  item: DataTableItem;
5174
5179
  }) => void>;
5180
+ search: StringConstructor;
5175
5181
  color: StringConstructor;
5176
5182
  loading: (StringConstructor | BooleanConstructor)[];
5177
5183
  loadingText: {
@@ -5201,7 +5207,10 @@ declare const VDataTableFooter: {
5201
5207
  prevPageLabel: string;
5202
5208
  nextPageLabel: string;
5203
5209
  lastPageLabel: string;
5204
- itemsPerPageOptions: InternalItem<any>[];
5210
+ itemsPerPageOptions: {
5211
+ title: string;
5212
+ value: number;
5213
+ }[];
5205
5214
  }> & Omit<{
5206
5215
  itemsPerPageText: string;
5207
5216
  pageText: string;
@@ -5214,7 +5223,10 @@ declare const VDataTableFooter: {
5214
5223
  prevPageLabel: string;
5215
5224
  nextPageLabel: string;
5216
5225
  lastPageLabel: string;
5217
- itemsPerPageOptions: InternalItem<any>[];
5226
+ itemsPerPageOptions: {
5227
+ title: string;
5228
+ value: number;
5229
+ }[];
5218
5230
  } & {} & {
5219
5231
  $children?: {} | vue.VNodeChild | {
5220
5232
  prepend?: (() => vue.VNodeChild) | undefined;
@@ -5253,7 +5265,10 @@ declare const VDataTableFooter: {
5253
5265
  prevPageLabel: string;
5254
5266
  nextPageLabel: string;
5255
5267
  lastPageLabel: string;
5256
- itemsPerPageOptions: InternalItem<any>[];
5268
+ itemsPerPageOptions: {
5269
+ title: string;
5270
+ value: number;
5271
+ }[];
5257
5272
  } & {} & {
5258
5273
  $children?: {} | vue.VNodeChild | {
5259
5274
  prepend?: (() => vue.VNodeChild) | undefined;
@@ -5278,7 +5293,10 @@ declare const VDataTableFooter: {
5278
5293
  prevPageLabel: string;
5279
5294
  nextPageLabel: string;
5280
5295
  lastPageLabel: string;
5281
- itemsPerPageOptions: InternalItem<any>[];
5296
+ itemsPerPageOptions: {
5297
+ title: string;
5298
+ value: number;
5299
+ }[];
5282
5300
  }, {}, string> & {
5283
5301
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
5284
5302
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -5311,7 +5329,10 @@ declare const VDataTableFooter: {
5311
5329
  prevPageLabel: string;
5312
5330
  nextPageLabel: string;
5313
5331
  lastPageLabel: string;
5314
- itemsPerPageOptions: InternalItem<any>[];
5332
+ itemsPerPageOptions: {
5333
+ title: string;
5334
+ value: number;
5335
+ }[];
5315
5336
  } & {} & {
5316
5337
  $children?: {} | vue.VNodeChild | {
5317
5338
  prepend?: (() => vue.VNodeChild) | undefined;
@@ -5340,7 +5361,10 @@ declare const VDataTableFooter: {
5340
5361
  prevPageLabel: string;
5341
5362
  nextPageLabel: string;
5342
5363
  lastPageLabel: string;
5343
- itemsPerPageOptions: InternalItem<any>[];
5364
+ itemsPerPageOptions: {
5365
+ title: string;
5366
+ value: number;
5367
+ }[];
5344
5368
  } & {} & {
5345
5369
  $children?: {} | vue.VNodeChild | {
5346
5370
  prepend?: (() => vue.VNodeChild) | undefined;
@@ -5365,7 +5389,10 @@ declare const VDataTableFooter: {
5365
5389
  prevPageLabel: string;
5366
5390
  nextPageLabel: string;
5367
5391
  lastPageLabel: string;
5368
- itemsPerPageOptions: InternalItem<any>[];
5392
+ itemsPerPageOptions: {
5393
+ title: string;
5394
+ value: number;
5395
+ }[];
5369
5396
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
5370
5397
  prevIcon: {
5371
5398
  type: StringConstructor;
@@ -5408,7 +5435,10 @@ declare const VDataTableFooter: {
5408
5435
  default: string;
5409
5436
  };
5410
5437
  itemsPerPageOptions: {
5411
- type: PropType<InternalItem<any>[]>;
5438
+ type: PropType<{
5439
+ title: string;
5440
+ value: number;
5441
+ }[]>;
5412
5442
  default: () => {
5413
5443
  value: number;
5414
5444
  title: string;
@@ -5457,7 +5487,10 @@ declare const VDataTableFooter: {
5457
5487
  default: string;
5458
5488
  };
5459
5489
  itemsPerPageOptions: {
5460
- type: PropType<InternalItem<any>[]>;
5490
+ type: PropType<{
5491
+ title: string;
5492
+ value: number;
5493
+ }[]>;
5461
5494
  default: () => {
5462
5495
  value: number;
5463
5496
  title: string;
@@ -5471,12 +5504,12 @@ declare const VSkeletonLoader: {
5471
5504
  $: vue.ComponentInternalInstance;
5472
5505
  $data: {};
5473
5506
  $props: Partial<{
5474
- type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5507
+ type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5475
5508
  loading: boolean;
5476
5509
  loadingText: string;
5477
5510
  boilerplate: boolean;
5478
5511
  }> & Omit<{
5479
- type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5512
+ type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5480
5513
  loading: boolean;
5481
5514
  loadingText: string;
5482
5515
  boilerplate: boolean;
@@ -5517,7 +5550,7 @@ declare const VSkeletonLoader: {
5517
5550
  $emit: (event: string, ...args: any[]) => void;
5518
5551
  $el: any;
5519
5552
  $options: vue.ComponentOptionsBase<{
5520
- type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5553
+ type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5521
5554
  loading: boolean;
5522
5555
  loadingText: string;
5523
5556
  boilerplate: boolean;
@@ -5544,7 +5577,7 @@ declare const VSkeletonLoader: {
5544
5577
  } & {
5545
5578
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
5546
5579
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
5547
- type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5580
+ type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5548
5581
  loading: boolean;
5549
5582
  loadingText: string;
5550
5583
  boilerplate: boolean;
@@ -5569,7 +5602,7 @@ declare const VSkeletonLoader: {
5569
5602
  $nextTick: typeof vue.nextTick;
5570
5603
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
5571
5604
  } & {
5572
- type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5605
+ type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5573
5606
  loading: boolean;
5574
5607
  loadingText: string;
5575
5608
  boilerplate: boolean;
@@ -5600,7 +5633,7 @@ declare const VSkeletonLoader: {
5600
5633
  __isTeleport?: undefined;
5601
5634
  __isSuspense?: undefined;
5602
5635
  } & vue.ComponentOptionsBase<{
5603
- type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5636
+ type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5604
5637
  loading: boolean;
5605
5638
  loadingText: string;
5606
5639
  boilerplate: boolean;
@@ -5627,7 +5660,7 @@ declare const VSkeletonLoader: {
5627
5660
  } & {
5628
5661
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
5629
5662
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
5630
- type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5663
+ type: "button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
5631
5664
  loading: boolean;
5632
5665
  loadingText: string;
5633
5666
  boilerplate: boolean;
@@ -5651,7 +5684,7 @@ declare const VSkeletonLoader: {
5651
5684
  default: string;
5652
5685
  };
5653
5686
  type: {
5654
- type: PropType<"button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
5687
+ type: PropType<"button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
5655
5688
  default: string;
5656
5689
  };
5657
5690
  }, vue.ExtractPropTypes<{
@@ -5674,7 +5707,7 @@ declare const VSkeletonLoader: {
5674
5707
  default: string;
5675
5708
  };
5676
5709
  type: {
5677
- type: PropType<"button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
5710
+ type: PropType<"button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | ("button" | "article" | "table" | "image" | "text" | "table-row" | "list-item" | "sentences" | "heading" | "subtitle" | "divider" | "chip" | "actions" | "avatar" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
5678
5711
  default: string;
5679
5712
  };
5680
5713
  }>>;
@@ -3449,6 +3449,38 @@ html.overflow-y-hidden {
3449
3449
  flex: 1 1 auto !important;
3450
3450
  }
3451
3451
 
3452
+ .flex-1-1 {
3453
+ flex: 1 1 auto !important;
3454
+ }
3455
+
3456
+ .flex-1-0 {
3457
+ flex: 1 0 auto !important;
3458
+ }
3459
+
3460
+ .flex-0-1 {
3461
+ flex: 0 1 auto !important;
3462
+ }
3463
+
3464
+ .flex-0-0 {
3465
+ flex: 0 0 auto !important;
3466
+ }
3467
+
3468
+ .flex-1-1-100 {
3469
+ flex: 1 1 100% !important;
3470
+ }
3471
+
3472
+ .flex-1-0-100 {
3473
+ flex: 1 0 100% !important;
3474
+ }
3475
+
3476
+ .flex-0-1-100 {
3477
+ flex: 0 1 100% !important;
3478
+ }
3479
+
3480
+ .flex-0-0-100 {
3481
+ flex: 0 0 100% !important;
3482
+ }
3483
+
3452
3484
  .flex-row {
3453
3485
  flex-direction: row !important;
3454
3486
  }
@@ -6727,6 +6759,30 @@ html.overflow-y-hidden {
6727
6759
  .flex-sm-fill {
6728
6760
  flex: 1 1 auto !important;
6729
6761
  }
6762
+ .flex-sm-1-1 {
6763
+ flex: 1 1 auto !important;
6764
+ }
6765
+ .flex-sm-1-0 {
6766
+ flex: 1 0 auto !important;
6767
+ }
6768
+ .flex-sm-0-1 {
6769
+ flex: 0 1 auto !important;
6770
+ }
6771
+ .flex-sm-0-0 {
6772
+ flex: 0 0 auto !important;
6773
+ }
6774
+ .flex-sm-1-1-100 {
6775
+ flex: 1 1 100% !important;
6776
+ }
6777
+ .flex-sm-1-0-100 {
6778
+ flex: 1 0 100% !important;
6779
+ }
6780
+ .flex-sm-0-1-100 {
6781
+ flex: 0 1 100% !important;
6782
+ }
6783
+ .flex-sm-0-0-100 {
6784
+ flex: 0 0 100% !important;
6785
+ }
6730
6786
  .flex-sm-row {
6731
6787
  flex-direction: row !important;
6732
6788
  }
@@ -8531,6 +8587,30 @@ html.overflow-y-hidden {
8531
8587
  .flex-md-fill {
8532
8588
  flex: 1 1 auto !important;
8533
8589
  }
8590
+ .flex-md-1-1 {
8591
+ flex: 1 1 auto !important;
8592
+ }
8593
+ .flex-md-1-0 {
8594
+ flex: 1 0 auto !important;
8595
+ }
8596
+ .flex-md-0-1 {
8597
+ flex: 0 1 auto !important;
8598
+ }
8599
+ .flex-md-0-0 {
8600
+ flex: 0 0 auto !important;
8601
+ }
8602
+ .flex-md-1-1-100 {
8603
+ flex: 1 1 100% !important;
8604
+ }
8605
+ .flex-md-1-0-100 {
8606
+ flex: 1 0 100% !important;
8607
+ }
8608
+ .flex-md-0-1-100 {
8609
+ flex: 0 1 100% !important;
8610
+ }
8611
+ .flex-md-0-0-100 {
8612
+ flex: 0 0 100% !important;
8613
+ }
8534
8614
  .flex-md-row {
8535
8615
  flex-direction: row !important;
8536
8616
  }
@@ -10335,6 +10415,30 @@ html.overflow-y-hidden {
10335
10415
  .flex-lg-fill {
10336
10416
  flex: 1 1 auto !important;
10337
10417
  }
10418
+ .flex-lg-1-1 {
10419
+ flex: 1 1 auto !important;
10420
+ }
10421
+ .flex-lg-1-0 {
10422
+ flex: 1 0 auto !important;
10423
+ }
10424
+ .flex-lg-0-1 {
10425
+ flex: 0 1 auto !important;
10426
+ }
10427
+ .flex-lg-0-0 {
10428
+ flex: 0 0 auto !important;
10429
+ }
10430
+ .flex-lg-1-1-100 {
10431
+ flex: 1 1 100% !important;
10432
+ }
10433
+ .flex-lg-1-0-100 {
10434
+ flex: 1 0 100% !important;
10435
+ }
10436
+ .flex-lg-0-1-100 {
10437
+ flex: 0 1 100% !important;
10438
+ }
10439
+ .flex-lg-0-0-100 {
10440
+ flex: 0 0 100% !important;
10441
+ }
10338
10442
  .flex-lg-row {
10339
10443
  flex-direction: row !important;
10340
10444
  }
@@ -12139,6 +12243,30 @@ html.overflow-y-hidden {
12139
12243
  .flex-xl-fill {
12140
12244
  flex: 1 1 auto !important;
12141
12245
  }
12246
+ .flex-xl-1-1 {
12247
+ flex: 1 1 auto !important;
12248
+ }
12249
+ .flex-xl-1-0 {
12250
+ flex: 1 0 auto !important;
12251
+ }
12252
+ .flex-xl-0-1 {
12253
+ flex: 0 1 auto !important;
12254
+ }
12255
+ .flex-xl-0-0 {
12256
+ flex: 0 0 auto !important;
12257
+ }
12258
+ .flex-xl-1-1-100 {
12259
+ flex: 1 1 100% !important;
12260
+ }
12261
+ .flex-xl-1-0-100 {
12262
+ flex: 1 0 100% !important;
12263
+ }
12264
+ .flex-xl-0-1-100 {
12265
+ flex: 0 1 100% !important;
12266
+ }
12267
+ .flex-xl-0-0-100 {
12268
+ flex: 0 0 100% !important;
12269
+ }
12142
12270
  .flex-xl-row {
12143
12271
  flex-direction: row !important;
12144
12272
  }
@@ -13943,6 +14071,30 @@ html.overflow-y-hidden {
13943
14071
  .flex-xxl-fill {
13944
14072
  flex: 1 1 auto !important;
13945
14073
  }
14074
+ .flex-xxl-1-1 {
14075
+ flex: 1 1 auto !important;
14076
+ }
14077
+ .flex-xxl-1-0 {
14078
+ flex: 1 0 auto !important;
14079
+ }
14080
+ .flex-xxl-0-1 {
14081
+ flex: 0 1 auto !important;
14082
+ }
14083
+ .flex-xxl-0-0 {
14084
+ flex: 0 0 auto !important;
14085
+ }
14086
+ .flex-xxl-1-1-100 {
14087
+ flex: 1 1 100% !important;
14088
+ }
14089
+ .flex-xxl-1-0-100 {
14090
+ flex: 1 0 100% !important;
14091
+ }
14092
+ .flex-xxl-0-1-100 {
14093
+ flex: 0 1 100% !important;
14094
+ }
14095
+ .flex-xxl-0-0-100 {
14096
+ flex: 0 0 100% !important;
14097
+ }
13946
14098
  .flex-xxl-row {
13947
14099
  flex-direction: row !important;
13948
14100
  }
@@ -58,7 +58,17 @@ $utilities: () !default;
58
58
  "flex": (
59
59
  responsive: true,
60
60
  property: flex,
61
- values: (fill: 1 1 auto)
61
+ values: (
62
+ fill: 1 1 auto,
63
+ '1-1': 1 1 auto,
64
+ '1-0': 1 0 auto,
65
+ '0-1': 0 1 auto,
66
+ '0-0': 0 0 auto,
67
+ '1-1-100': 1 1 100%,
68
+ '1-0-100': 1 0 100%,
69
+ '0-1-100': 0 1 100%,
70
+ '0-0-100': 0 0 100%
71
+ )
62
72
  ),
63
73
  "flex-direction": (
64
74
  responsive: true,
@@ -244,6 +244,10 @@ export function padEnd(str, length) {
244
244
  let char = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '0';
245
245
  return str + char.repeat(Math.max(0, length - str.length));
246
246
  }
247
+ export function padStart(str, length) {
248
+ let char = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '0';
249
+ return char.repeat(Math.max(0, length - str.length)) + str;
250
+ }
247
251
  export function chunk(str) {
248
252
  let size = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;
249
253
  const chunked = [];