@vuetify/nightly 3.5.4-master.2024-02-21 → 3.5.5-master.2024-02-23

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 (89) hide show
  1. package/CHANGELOG.md +5 -15
  2. package/dist/json/attributes.json +91 -3
  3. package/dist/json/importMap-labs.json +4 -0
  4. package/dist/json/importMap.json +128 -128
  5. package/dist/json/tags.json +27 -0
  6. package/dist/json/web-types.json +259 -4
  7. package/dist/vuetify-labs.css +3602 -3584
  8. package/dist/vuetify-labs.d.ts +754 -122
  9. package/dist/vuetify-labs.esm.js +521 -51
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +521 -51
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +2188 -2170
  14. package/dist/vuetify.d.ts +428 -162
  15. package/dist/vuetify.esm.js +87 -50
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +87 -50
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +606 -603
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs +7 -5
  23. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  24. package/lib/components/VCombobox/VCombobox.mjs +3 -1
  25. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  26. package/lib/components/VDataIterator/index.d.mts +3 -3
  27. package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
  28. package/lib/components/VDataTable/index.d.mts +355 -117
  29. package/lib/components/VDataTable/types.mjs.map +1 -1
  30. package/lib/components/VDatePicker/VDatePicker.mjs +14 -10
  31. package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
  32. package/lib/components/VDatePicker/VDatePickerMonth.mjs +1 -1
  33. package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
  34. package/lib/components/VDatePicker/VDatePickerMonths.mjs +6 -3
  35. package/lib/components/VDatePicker/VDatePickerMonths.mjs.map +1 -1
  36. package/lib/components/VDatePicker/VDatePickerYears.mjs +8 -1
  37. package/lib/components/VDatePicker/VDatePickerYears.mjs.map +1 -1
  38. package/lib/components/VDatePicker/index.d.mts +4 -4
  39. package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
  40. package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
  41. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
  42. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  43. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
  44. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  45. package/lib/components/VExpansionPanel/index.d.mts +27 -0
  46. package/lib/components/VField/VField.css +20 -1
  47. package/lib/components/VField/VField.sass +19 -1
  48. package/lib/components/VList/VListItem.css +2 -1
  49. package/lib/components/VList/VListItem.sass +1 -0
  50. package/lib/components/VList/_variables.scss +2 -1
  51. package/lib/components/VMenu/VMenu.mjs +5 -5
  52. package/lib/components/VMenu/VMenu.mjs.map +1 -1
  53. package/lib/components/VMenu/shared.mjs.map +1 -1
  54. package/lib/components/VSelect/VSelect.mjs +4 -3
  55. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  56. package/lib/components/VTooltip/VTooltip.css +1 -0
  57. package/lib/components/VTooltip/VTooltip.sass +1 -0
  58. package/lib/components/VTooltip/_variables.scss +1 -0
  59. package/lib/components/index.d.mts +386 -121
  60. package/lib/composables/filter.mjs +1 -1
  61. package/lib/composables/filter.mjs.map +1 -1
  62. package/lib/composables/icons.mjs +17 -13
  63. package/lib/composables/icons.mjs.map +1 -1
  64. package/lib/entry-bundler.mjs +1 -1
  65. package/lib/framework.mjs +1 -1
  66. package/lib/index.d.mts +42 -41
  67. package/lib/labs/VCalendar/VCalendar.mjs +1 -1
  68. package/lib/labs/VCalendar/VCalendar.mjs.map +1 -1
  69. package/lib/labs/VSparkline/VBarline.mjs +138 -0
  70. package/lib/labs/VSparkline/VBarline.mjs.map +1 -0
  71. package/lib/labs/VSparkline/VSparkline.mjs +49 -0
  72. package/lib/labs/VSparkline/VSparkline.mjs.map +1 -0
  73. package/lib/labs/VSparkline/VTrendline.mjs +143 -0
  74. package/lib/labs/VSparkline/VTrendline.mjs.map +1 -0
  75. package/lib/labs/VSparkline/index.d.mts +374 -0
  76. package/lib/labs/VSparkline/index.mjs +2 -0
  77. package/lib/labs/VSparkline/index.mjs.map +1 -0
  78. package/lib/labs/VSparkline/util/line.mjs +52 -0
  79. package/lib/labs/VSparkline/util/line.mjs.map +1 -0
  80. package/lib/labs/VSparkline/util/path.mjs +60 -0
  81. package/lib/labs/VSparkline/util/path.mjs.map +1 -0
  82. package/lib/labs/components.d.mts +367 -1
  83. package/lib/labs/components.mjs +1 -0
  84. package/lib/labs/components.mjs.map +1 -1
  85. package/lib/locale/nl.mjs +1 -1
  86. package/lib/locale/nl.mjs.map +1 -1
  87. package/lib/util/helpers.mjs +10 -0
  88. package/lib/util/helpers.mjs.map +1 -1
  89. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,25 +1,15 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.5.4-master.2024-02-21...v) (2024-02-21)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.5.5-master.2024-02-23...v) (2024-02-23)
2
2
 
3
3
 
4
4
 
5
- ## [3.5.4-master.2024-02-21](https://github.com/vuetifyjs/vuetify/compare/v3.5.4...v3.5.4-master.2024-02-21) (2024-02-21)
5
+ ## [3.5.5-master.2024-02-23](https://github.com/vuetifyjs/vuetify/compare/v3.5.5...v3.5.5-master.2024-02-23) (2024-02-23)
6
6
 
7
7
 
8
8
  ### Bug Fixes
9
9
 
10
- * **goto:** retry unreachable target ([#19128](https://github.com/vuetifyjs/vuetify/issues/19128)) ([b146397](https://github.com/vuetifyjs/vuetify/commit/b1463977924cc3a5023e87e029fdd3f106fb5b3b))
11
- * **rounded:** add missing tile prop ([e33ae9f](https://github.com/vuetifyjs/vuetify/commit/e33ae9f8d1e758edf9cde84f1f417a93793d2c34))
12
- * **VDataTableHeaders:** add missing type export ([a163956](https://github.com/vuetifyjs/vuetify/commit/a16395673674ac7e86ddb206841dd551974acecf))
13
- * **VDatePicker:** height and element sizing ([67bd7d5](https://github.com/vuetifyjs/vuetify/commit/67bd7d5795bdb379e32b8b63c52bcbfbd9651a8f)), closes [#19202](https://github.com/vuetifyjs/vuetify/issues/19202)
14
- * **VDatePickerMonth:** day btn sizing ([ceef1f2](https://github.com/vuetifyjs/vuetify/commit/ceef1f26bb803633e835260364b3c5245bc5df14))
15
- * **VExpansionPanels:** add missing flat prop ([76147a7](https://github.com/vuetifyjs/vuetify/commit/76147a7c46cb22bb8459322e9210c65e3ac9769c))
16
- * **VExpansionPanels:** add missing tile prop ([090736d](https://github.com/vuetifyjs/vuetify/commit/090736d7a64e3bcd24ebdb3ae46b12c51a5000c3))
17
- * **VExpansionPanels:** correct static prop defaults target ([f5c0f7b](https://github.com/vuetifyjs/vuetify/commit/f5c0f7b08e7134e72199d68ab4605854d0d9cf09))
18
- * **VFileInput:** don't emit control click when clicking prepend ([389372c](https://github.com/vuetifyjs/vuetify/commit/389372c3bcbd481b23d94bf5ed7b2f8d9364fe3a)), closes [#19232](https://github.com/vuetifyjs/vuetify/issues/19232)
19
- * **VForm:** batch validation updates ([07d91b2](https://github.com/vuetifyjs/vuetify/commit/07d91b29402953b16a23c36bfb85ba7d219e3270)), closes [#19161](https://github.com/vuetifyjs/vuetify/issues/19161)
20
- * **VIcon:** remove tag attribute from fa-svg ([4923e53](https://github.com/vuetifyjs/vuetify/commit/4923e531488ca9c05880d983525c5ac742e97633)), closes [#19148](https://github.com/vuetifyjs/vuetify/issues/19148)
21
- * **VTabs:** animate tab indicator when switching to next ([72a2194](https://github.com/vuetifyjs/vuetify/commit/72a219438a209643a6453125a0f642c625344958)), closes [#18892](https://github.com/vuetifyjs/vuetify/issues/18892)
22
- * **VVirtualScroll:** reset scroll velocity when height changes ([cb62963](https://github.com/vuetifyjs/vuetify/commit/cb629635f437f3921b4ea7de72f9f56a5c3658ab)), closes [#18918](https://github.com/vuetifyjs/vuetify/issues/18918)
10
+ * **filter:** don't return entire object for undefined values ([ce127c4](https://github.com/vuetifyjs/vuetify/commit/ce127c481d350daf0e42c30e7bd06810beedc286)), closes [#19260](https://github.com/vuetifyjs/vuetify/issues/19260)
11
+ * **VAutocomplete:** fix screenreader navigation ([#19199](https://github.com/vuetifyjs/vuetify/issues/19199)) ([1ef07bd](https://github.com/vuetifyjs/vuetify/commit/1ef07bd87469c970e075a3627f1035d65da7a3a3)), closes [#18858](https://github.com/vuetifyjs/vuetify/issues/18858)
12
+ * **VExpansionPanels:** add missing focusable prop ([f346f84](https://github.com/vuetifyjs/vuetify/commit/f346f84b0636c3d38ba817b41bdf8f464ac5bf03))
23
13
 
24
14
 
25
15
 
@@ -3296,7 +3296,7 @@
3296
3296
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color."
3297
3297
  },
3298
3298
  "VDataTable/headers": {
3299
- "type": "{\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n}[]\n",
3299
+ "type": "{\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey<any>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n}[]\n",
3300
3300
  "description": "An array of objects that each describe a header column. See the example below for a definition of all properties."
3301
3301
  },
3302
3302
  "VDataTable/page": {
@@ -3560,7 +3560,7 @@
3560
3560
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color."
3561
3561
  },
3562
3562
  "VDataTableServer/headers": {
3563
- "type": "{\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n}[]\n",
3563
+ "type": "{\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?:\n | readonly {\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n }[]\n | undefined\n}[]\n",
3564
3564
  "description": "An array of objects that each describe a header column."
3565
3565
  },
3566
3566
  "VDataTableServer/items-length": {
@@ -3764,7 +3764,7 @@
3764
3764
  "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
3765
3765
  },
3766
3766
  "VDataTableVirtual/headers": {
3767
- "type": "{\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n}[]\n",
3767
+ "type": "{\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?:\n | readonly {\n readonly key?:\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | (string & {})\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n }[]\n | undefined\n}[]\n",
3768
3768
  "description": "An array of objects that each describe a header column."
3769
3769
  },
3770
3770
  "VDataTableVirtual/loading": {
@@ -4539,6 +4539,10 @@
4539
4539
  "type": "boolean\n",
4540
4540
  "description": "Hide the expand icon in the content title."
4541
4541
  },
4542
+ "VExpansionPanel/focusable": {
4543
+ "type": "boolean\n",
4544
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
4545
+ },
4542
4546
  "VExpansionPanel/static": {
4543
4547
  "type": "boolean\n",
4544
4548
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
@@ -4571,6 +4575,10 @@
4571
4575
  "type": "boolean\n",
4572
4576
  "description": "Hide the expand icon in the content title."
4573
4577
  },
4578
+ "VExpansionPanelTitle/focusable": {
4579
+ "type": "boolean\n",
4580
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
4581
+ },
4574
4582
  "VExpansionPanelTitle/static": {
4575
4583
  "type": "boolean\n",
4576
4584
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
@@ -4591,6 +4599,10 @@
4591
4599
  "type": "string\n",
4592
4600
  "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)."
4593
4601
  },
4602
+ "VExpansionPanels/focusable": {
4603
+ "type": "boolean\n",
4604
+ "description": "Makes the expansion-panel headers focusable."
4605
+ },
4594
4606
  "VExpansionPanels/static": {
4595
4607
  "type": "boolean\n",
4596
4608
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VExpansionPanels.json))"
@@ -8487,6 +8499,82 @@
8487
8499
  "type": "string\n",
8488
8500
  "description": "Specify a custom tag used on the root element."
8489
8501
  },
8502
+ "VSparkline/type": {
8503
+ "type": "'trend' | 'bar'\n",
8504
+ "description": "Choose between a trendline or bars."
8505
+ },
8506
+ "VSparkline/auto-line-width": {
8507
+ "type": "boolean\n",
8508
+ "description": "Automatically expand bars to use space efficiently."
8509
+ },
8510
+ "VSparkline/auto-draw": {
8511
+ "type": "boolean\n",
8512
+ "description": "Trace the length of the line when first rendered."
8513
+ },
8514
+ "VSparkline/auto-draw-duration": {
8515
+ "type": "string | number\n",
8516
+ "description": "Amount of time (in ms) to run the trace animation."
8517
+ },
8518
+ "VSparkline/auto-draw-easing": {
8519
+ "type": "string\n",
8520
+ "description": "The easing function to use for the trace animation."
8521
+ },
8522
+ "VSparkline/color": {
8523
+ "type": "string\n",
8524
+ "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)."
8525
+ },
8526
+ "VSparkline/gradient": {
8527
+ "type": "string[]\n",
8528
+ "description": "An array of colors to use as a linear-gradient."
8529
+ },
8530
+ "VSparkline/gradient-direction": {
8531
+ "type": "'top' | 'bottom' | 'left' | 'right'\n",
8532
+ "description": "The direction the gradient should run."
8533
+ },
8534
+ "VSparkline/height": {
8535
+ "type": "string | number\n",
8536
+ "description": "Height of the SVG trendline or bars."
8537
+ },
8538
+ "VSparkline/labels": {
8539
+ "type": "(number | { value: number })[]\n",
8540
+ "description": "An array of string labels that correspond to the same index as its data counterpart."
8541
+ },
8542
+ "VSparkline/label-size": {
8543
+ "type": "string | number\n",
8544
+ "description": "The label font size."
8545
+ },
8546
+ "VSparkline/line-width": {
8547
+ "type": "string | number\n",
8548
+ "description": "The thickness of the line, in px."
8549
+ },
8550
+ "VSparkline/id": {
8551
+ "type": "string\n",
8552
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/Line.json))"
8553
+ },
8554
+ "VSparkline/model-value": {
8555
+ "type": "(number | { value: number })[]\n",
8556
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8557
+ },
8558
+ "VSparkline/padding": {
8559
+ "type": "string | number\n",
8560
+ "description": "Low `smooth` or high `line-width` values may result in cropping, increase padding to compensate."
8561
+ },
8562
+ "VSparkline/show-labels": {
8563
+ "type": "boolean\n",
8564
+ "description": "Show labels below each data point."
8565
+ },
8566
+ "VSparkline/smooth": {
8567
+ "type": "boolean\n",
8568
+ "description": "Number of px to use as a corner radius. `true` defaults to 8, `false` is 0."
8569
+ },
8570
+ "VSparkline/width": {
8571
+ "type": "string | number\n",
8572
+ "description": "Width of the SVG trendline or bars."
8573
+ },
8574
+ "VSparkline/fill": {
8575
+ "type": "boolean\n",
8576
+ "description": "Using the **fill** property allows you to better customize the look and feel of your sparkline."
8577
+ },
8490
8578
  "VStepper/flat": {
8491
8579
  "type": "boolean\n",
8492
8580
  "description": "Removes the stepper's elevation."
@@ -35,6 +35,10 @@
35
35
  "VConfirmEdit": {
36
36
  "from": "labs/VConfirmEdit/index.mjs",
37
37
  "styles": []
38
+ },
39
+ "VSparkline": {
40
+ "from": "labs/VSparkline/index.mjs",
41
+ "styles": []
38
42
  }
39
43
  }
40
44
  }