vuetify 3.0.7 → 3.1.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.
- package/_settings.scss +1 -0
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +452 -4
- package/dist/json/importMap-labs.json +28 -0
- package/dist/json/importMap.json +50 -50
- package/dist/json/tags.json +154 -8
- package/dist/json/web-types.json +1514 -18
- package/dist/vuetify-labs.d.ts +875 -0
- package/dist/vuetify-labs.js +9748 -0
- package/dist/vuetify.css +34 -55
- package/dist/vuetify.d.ts +169 -192
- package/dist/vuetify.esm.js +141 -103
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +140 -102
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +783 -777
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.ts +3 -2
- package/lib/blueprints/md1.d.ts +3 -2
- package/lib/blueprints/md2.d.ts +3 -2
- package/lib/blueprints/md3.d.ts +3 -2
- package/lib/components/VAlert/VAlertTitle.mjs.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +8 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.ts +3 -12
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +23 -20
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs +21 -2
- package/lib/components/VBreadcrumbs/VBreadcrumbsDivider.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.ts +4 -15
- package/lib/components/VCombobox/VCombobox.mjs +8 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.ts +3 -12
- package/lib/components/VDivider/VDivider.css +1 -1
- package/lib/components/VDivider/VDivider.sass +1 -0
- package/lib/components/VDivider/_variables.scss +2 -1
- package/lib/components/VIcon/VIcon.mjs +25 -20
- package/lib/components/VIcon/VIcon.mjs.map +1 -1
- package/lib/components/VIcon/index.d.ts +4 -8
- package/lib/components/VList/VListItem.css +0 -4
- package/lib/components/VList/VListItem.sass +12 -6
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +10 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.ts +11 -3
- package/lib/components/VSelect/VSelect.mjs +11 -8
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VTable/VTable.css +12 -29
- package/lib/components/VTable/VTable.mjs +3 -3
- package/lib/components/VTable/VTable.mjs.map +1 -1
- package/lib/components/VTable/VTable.sass +10 -17
- package/lib/components/VTable/_variables.scss +4 -2
- package/lib/components/index.d.ts +26 -50
- package/lib/composables/filter.mjs +18 -10
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/icons.mjs +12 -7
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa-svg.d.ts +3 -2
- package/lib/iconsets/fa.d.ts +3 -2
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.d.ts +3 -2
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.d.ts +3 -2
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.d.ts +3 -2
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.d.ts +3 -2
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.ts +16 -15
- package/lib/labs/VDataTable/VDataTable.css +119 -0
- package/lib/labs/VDataTable/VDataTable.mjs +146 -0
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTable.sass +106 -0
- package/lib/labs/VDataTable/VDataTableColumn.mjs +37 -0
- package/lib/labs/VDataTable/VDataTableColumn.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableFooter.css +22 -0
- package/lib/labs/VDataTable/VDataTableFooter.mjs +105 -0
- package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableFooter.sass +23 -0
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +88 -0
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableHeaders.mjs +143 -0
- package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableRow.mjs +75 -0
- package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableRows.mjs +87 -0
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableServer.mjs +124 -0
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -0
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +154 -0
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -0
- package/lib/labs/VDataTable/_variables.scss +6 -0
- package/lib/labs/VDataTable/composables/expand.mjs +51 -0
- package/lib/labs/VDataTable/composables/expand.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/group.mjs +124 -0
- package/lib/labs/VDataTable/composables/group.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/headers.mjs +152 -0
- package/lib/labs/VDataTable/composables/headers.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/items.mjs +30 -0
- package/lib/labs/VDataTable/composables/items.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/options.mjs +44 -0
- package/lib/labs/VDataTable/composables/options.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/paginate.mjs +62 -0
- package/lib/labs/VDataTable/composables/paginate.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/select.mjs +57 -0
- package/lib/labs/VDataTable/composables/select.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/sort.mjs +109 -0
- package/lib/labs/VDataTable/composables/sort.mjs.map +1 -0
- package/lib/labs/VDataTable/composables/virtual.mjs +77 -0
- package/lib/labs/VDataTable/composables/virtual.mjs.map +1 -0
- package/lib/labs/VDataTable/index.d.ts +705 -0
- package/lib/labs/VDataTable/index.mjs +6 -0
- package/lib/labs/VDataTable/index.mjs.map +1 -0
- package/lib/labs/VDataTable/types.mjs +2 -0
- package/lib/labs/VDataTable/types.mjs.map +1 -0
- package/lib/labs/VVirtualScroll/VVirtualScroll.css +11 -0
- package/lib/labs/VVirtualScroll/VVirtualScroll.mjs +118 -0
- package/lib/labs/VVirtualScroll/VVirtualScroll.mjs.map +1 -0
- package/lib/{components → labs}/VVirtualScroll/VVirtualScroll.sass +0 -5
- package/lib/labs/VVirtualScroll/VVirtualScrollItem.mjs +35 -0
- package/lib/labs/VVirtualScroll/VVirtualScrollItem.mjs.map +1 -0
- package/lib/labs/VVirtualScroll/index.d.ts +154 -0
- package/lib/labs/VVirtualScroll/index.mjs +2 -0
- package/lib/labs/VVirtualScroll/index.mjs.map +1 -0
- package/lib/labs/components.d.ts +856 -0
- package/lib/labs/components.mjs +3 -0
- package/lib/labs/components.mjs.map +1 -0
- package/lib/labs/index.mjs +3 -0
- package/lib/labs/index.mjs.map +1 -0
- package/lib/util/defineComponent.mjs +4 -0
- package/lib/util/defineComponent.mjs.map +1 -1
- package/lib/util/helpers.mjs +0 -38
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +4 -2
- package/lib/components/VDataTable/MobileRow.mjs +0 -63
- package/lib/components/VDataTable/MobileRow.mjs.map +0 -1
- package/lib/components/VDataTable/Row.mjs +0 -57
- package/lib/components/VDataTable/Row.mjs.map +0 -1
- package/lib/components/VDataTable/RowGroup.mjs +0 -48
- package/lib/components/VDataTable/RowGroup.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTable.mjs +0 -577
- package/lib/components/VDataTable/VDataTable.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTable.sass +0 -98
- package/lib/components/VDataTable/VDataTableHeader.mjs +0 -42
- package/lib/components/VDataTable/VDataTableHeader.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTableHeader.sass +0 -80
- package/lib/components/VDataTable/VDataTableHeaderDesktop.mjs +0 -96
- package/lib/components/VDataTable/VDataTableHeaderDesktop.mjs.map +0 -1
- package/lib/components/VDataTable/VDataTableHeaderMobile.mjs +0 -89
- package/lib/components/VDataTable/VDataTableHeaderMobile.mjs.map +0 -1
- package/lib/components/VDataTable/VEditDialog.mjs +0 -127
- package/lib/components/VDataTable/VEditDialog.mjs.map +0 -1
- package/lib/components/VDataTable/VEditDialog.sass +0 -22
- package/lib/components/VDataTable/VVirtualTable.mjs +0 -132
- package/lib/components/VDataTable/VVirtualTable.mjs.map +0 -1
- package/lib/components/VDataTable/VVirtualTable.sass +0 -13
- package/lib/components/VDataTable/_variables.scss +0 -24
- package/lib/components/VDataTable/index.mjs +0 -21
- package/lib/components/VDataTable/index.mjs.map +0 -1
- package/lib/components/VDataTable/mixins/header.mjs +0 -71
- package/lib/components/VDataTable/mixins/header.mjs.map +0 -1
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs +0 -108
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs.map +0 -1
- package/lib/components/VVirtualScroll/index.mjs +0 -4
- package/lib/components/VVirtualScroll/index.mjs.map +0 -1
package/_settings.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@forward '../lib/labs/VDataTable/_variables.scss'
|
|
@@ -199,6 +199,10 @@
|
|
|
199
199
|
"type": "string",
|
|
200
200
|
"description": "Specify title text for the alert."
|
|
201
201
|
},
|
|
202
|
+
"v-alert-title/tag": {
|
|
203
|
+
"type": "string",
|
|
204
|
+
"description": "MISSING DESCRIPTION"
|
|
205
|
+
},
|
|
202
206
|
"v-autocomplete/label": {
|
|
203
207
|
"type": "string",
|
|
204
208
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-field.json))"
|
|
@@ -847,10 +851,6 @@
|
|
|
847
851
|
"type": "string",
|
|
848
852
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-breadcrumbs-item.json))"
|
|
849
853
|
},
|
|
850
|
-
"v-breadcrumbs-divider/tag": {
|
|
851
|
-
"type": "string",
|
|
852
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-breadcrumbs-divider.json))"
|
|
853
|
-
},
|
|
854
854
|
"v-btn/symbol": {
|
|
855
855
|
"type": "any",
|
|
856
856
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-btn.json))"
|
|
@@ -2767,6 +2767,38 @@
|
|
|
2767
2767
|
"type": "string",
|
|
2768
2768
|
"description": "Specify a theme for this component and all of its children"
|
|
2769
2769
|
},
|
|
2770
|
+
"v-component-icon/icon": {
|
|
2771
|
+
"type": "string | (new () => any) | FunctionalComponent",
|
|
2772
|
+
"description": "MISSING DESCRIPTION"
|
|
2773
|
+
},
|
|
2774
|
+
"v-component-icon/tag": {
|
|
2775
|
+
"type": "string",
|
|
2776
|
+
"description": "MISSING DESCRIPTION"
|
|
2777
|
+
},
|
|
2778
|
+
"v-svg-icon/icon": {
|
|
2779
|
+
"type": "string | (new () => any) | FunctionalComponent",
|
|
2780
|
+
"description": "MISSING DESCRIPTION"
|
|
2781
|
+
},
|
|
2782
|
+
"v-svg-icon/tag": {
|
|
2783
|
+
"type": "string",
|
|
2784
|
+
"description": "MISSING DESCRIPTION"
|
|
2785
|
+
},
|
|
2786
|
+
"v-ligature-icon/icon": {
|
|
2787
|
+
"type": "string | (new () => any) | FunctionalComponent",
|
|
2788
|
+
"description": "MISSING DESCRIPTION"
|
|
2789
|
+
},
|
|
2790
|
+
"v-ligature-icon/tag": {
|
|
2791
|
+
"type": "string",
|
|
2792
|
+
"description": "MISSING DESCRIPTION"
|
|
2793
|
+
},
|
|
2794
|
+
"v-class-icon/icon": {
|
|
2795
|
+
"type": "string | (new () => any) | FunctionalComponent",
|
|
2796
|
+
"description": "MISSING DESCRIPTION"
|
|
2797
|
+
},
|
|
2798
|
+
"v-class-icon/tag": {
|
|
2799
|
+
"type": "string",
|
|
2800
|
+
"description": "MISSING DESCRIPTION"
|
|
2801
|
+
},
|
|
2770
2802
|
"v-img/transition": {
|
|
2771
2803
|
"type": "string",
|
|
2772
2804
|
"description": "The transition to use when switching from `lazy-src` to `src`."
|
|
@@ -6702,5 +6734,421 @@
|
|
|
6702
6734
|
"v-expand-x-transition/mode": {
|
|
6703
6735
|
"type": "\"in-out\" | \"out-in\" | \"default\"",
|
|
6704
6736
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/expand-x-transition.json))"
|
|
6737
|
+
},
|
|
6738
|
+
"v-data-table/items": {
|
|
6739
|
+
"type": "any[]",
|
|
6740
|
+
"description": "The array of items to display"
|
|
6741
|
+
},
|
|
6742
|
+
"v-data-table/item-title": {
|
|
6743
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6744
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6745
|
+
},
|
|
6746
|
+
"v-data-table/item-value": {
|
|
6747
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6748
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6749
|
+
},
|
|
6750
|
+
"v-data-table/item-children": {
|
|
6751
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6752
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6753
|
+
},
|
|
6754
|
+
"v-data-table/item-props": {
|
|
6755
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6756
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6757
|
+
},
|
|
6758
|
+
"v-data-table/return-object": {
|
|
6759
|
+
"type": "boolean",
|
|
6760
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6761
|
+
},
|
|
6762
|
+
"v-data-table/headers": {
|
|
6763
|
+
"type": "{ key: string; value: <a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>; title: string; colspan: number; rowspan: number; fixed: boolean; align: \"start\" | \"end\"; width: number; minWidth: string; maxWidth: string; sortable: boolean; sort: (a: any, b: any) => number }[] | DataTableHeader[][]",
|
|
6764
|
+
"description": "An array of objects that each describe a header column. See the example below for a definition of all properties"
|
|
6765
|
+
},
|
|
6766
|
+
"v-data-table/hide-no-data": {
|
|
6767
|
+
"type": "boolean",
|
|
6768
|
+
"description": "MISSING DESCRIPTION"
|
|
6769
|
+
},
|
|
6770
|
+
"v-data-table/no-data-text": {
|
|
6771
|
+
"type": "string",
|
|
6772
|
+
"description": "MISSING DESCRIPTION"
|
|
6773
|
+
},
|
|
6774
|
+
"v-data-table/height": {
|
|
6775
|
+
"type": "string | number",
|
|
6776
|
+
"description": "Set an explicit height of table"
|
|
6777
|
+
},
|
|
6778
|
+
"v-data-table/width": {
|
|
6779
|
+
"type": "string | number",
|
|
6780
|
+
"description": "Sets the width for the component."
|
|
6781
|
+
},
|
|
6782
|
+
"v-data-table/fixed-header": {
|
|
6783
|
+
"type": "boolean",
|
|
6784
|
+
"description": "Fixed header to top of table"
|
|
6785
|
+
},
|
|
6786
|
+
"v-data-table/fixed-footer": {
|
|
6787
|
+
"type": "boolean",
|
|
6788
|
+
"description": "MISSING DESCRIPTION"
|
|
6789
|
+
},
|
|
6790
|
+
"v-data-table/expand-on-click": {
|
|
6791
|
+
"type": "boolean",
|
|
6792
|
+
"description": "MISSING DESCRIPTION"
|
|
6793
|
+
},
|
|
6794
|
+
"v-data-table/show-expand": {
|
|
6795
|
+
"type": "boolean",
|
|
6796
|
+
"description": "Shows the expand toggle in default rows"
|
|
6797
|
+
},
|
|
6798
|
+
"v-data-table/expanded": {
|
|
6799
|
+
"type": "string[]",
|
|
6800
|
+
"description": "MISSING DESCRIPTION"
|
|
6801
|
+
},
|
|
6802
|
+
"v-data-table/group-by": {
|
|
6803
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/labs/VDataTable/composables/sort.ts#L27-L27\" target=\"_blank\">SortItem</a>[]",
|
|
6804
|
+
"description": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier"
|
|
6805
|
+
},
|
|
6806
|
+
"v-data-table/show-select": {
|
|
6807
|
+
"type": "boolean",
|
|
6808
|
+
"description": "Shows the select checkboxes in both the header and rows (if using default rows)"
|
|
6809
|
+
},
|
|
6810
|
+
"v-data-table/model-value": {
|
|
6811
|
+
"type": "any[]",
|
|
6812
|
+
"description": "MISSING DESCRIPTION"
|
|
6813
|
+
},
|
|
6814
|
+
"v-data-table/sort-by": {
|
|
6815
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/labs/VDataTable/composables/sort.ts#L27-L27\" target=\"_blank\">SortItem</a>[]",
|
|
6816
|
+
"description": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier"
|
|
6817
|
+
},
|
|
6818
|
+
"v-data-table/multi-sort": {
|
|
6819
|
+
"type": "boolean",
|
|
6820
|
+
"description": "If `true` then one can sort on multiple properties"
|
|
6821
|
+
},
|
|
6822
|
+
"v-data-table/must-sort": {
|
|
6823
|
+
"type": "boolean",
|
|
6824
|
+
"description": "If `true` then one can not disable sorting, it will always switch between ascending and descending"
|
|
6825
|
+
},
|
|
6826
|
+
"v-data-table/page": {
|
|
6827
|
+
"type": "string | number",
|
|
6828
|
+
"description": "The current displayed page number (1-indexed)"
|
|
6829
|
+
},
|
|
6830
|
+
"v-data-table/items-per-page": {
|
|
6831
|
+
"type": "string | number",
|
|
6832
|
+
"description": "Changes how many items per page should be visible. Can be used with `.sync` modifier. Setting this prop to `-1` will display all items on the page"
|
|
6833
|
+
},
|
|
6834
|
+
"v-data-table/filter-mode": {
|
|
6835
|
+
"type": "\"every\" | \"some\" | \"union\" | \"intersection\"",
|
|
6836
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
6837
|
+
},
|
|
6838
|
+
"v-data-table/no-filter": {
|
|
6839
|
+
"type": "boolean",
|
|
6840
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
6841
|
+
},
|
|
6842
|
+
"v-data-table/custom-filter": {
|
|
6843
|
+
"type": "(value: string, query: string, item: any) => number | boolean | [number, number] | [number, number][]",
|
|
6844
|
+
"description": "Function to filter items"
|
|
6845
|
+
},
|
|
6846
|
+
"v-data-table/custom-key-filter": {
|
|
6847
|
+
"type": "{ }",
|
|
6848
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
6849
|
+
},
|
|
6850
|
+
"v-data-table/filter-keys": {
|
|
6851
|
+
"type": "string | string[]",
|
|
6852
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
6853
|
+
},
|
|
6854
|
+
"v-data-table/search": {
|
|
6855
|
+
"type": "string",
|
|
6856
|
+
"description": "Text input used to filter items"
|
|
6857
|
+
},
|
|
6858
|
+
"v-data-table-rows/loading": {
|
|
6859
|
+
"type": "string | boolean",
|
|
6860
|
+
"description": "MISSING DESCRIPTION"
|
|
6861
|
+
},
|
|
6862
|
+
"v-data-table-rows/loading-text": {
|
|
6863
|
+
"type": "string",
|
|
6864
|
+
"description": "MISSING DESCRIPTION"
|
|
6865
|
+
},
|
|
6866
|
+
"v-data-table-rows/hide-no-data": {
|
|
6867
|
+
"type": "boolean",
|
|
6868
|
+
"description": "MISSING DESCRIPTION"
|
|
6869
|
+
},
|
|
6870
|
+
"v-data-table-rows/items": {
|
|
6871
|
+
"type": "(DataTableItem | GroupHeaderItem)[]",
|
|
6872
|
+
"description": "MISSING DESCRIPTION"
|
|
6873
|
+
},
|
|
6874
|
+
"v-data-table-rows/no-data-text": {
|
|
6875
|
+
"type": "string",
|
|
6876
|
+
"description": "MISSING DESCRIPTION"
|
|
6877
|
+
},
|
|
6878
|
+
"v-data-table-rows/row-height": {
|
|
6879
|
+
"type": "number",
|
|
6880
|
+
"description": "MISSING DESCRIPTION"
|
|
6881
|
+
},
|
|
6882
|
+
"v-data-table-row/item": {
|
|
6883
|
+
"type": "{ title: string; value: any; props: { title: string; value: any }; children: InternalItem<any>[]; raw: any } & { type: \"item\"; columns: Record<string, unknown> }",
|
|
6884
|
+
"description": "MISSING DESCRIPTION"
|
|
6885
|
+
},
|
|
6886
|
+
"v-data-table-virtual/items": {
|
|
6887
|
+
"type": "any[]",
|
|
6888
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6889
|
+
},
|
|
6890
|
+
"v-data-table-virtual/item-title": {
|
|
6891
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6892
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6893
|
+
},
|
|
6894
|
+
"v-data-table-virtual/item-value": {
|
|
6895
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6896
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6897
|
+
},
|
|
6898
|
+
"v-data-table-virtual/item-children": {
|
|
6899
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6900
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6901
|
+
},
|
|
6902
|
+
"v-data-table-virtual/item-props": {
|
|
6903
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
6904
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6905
|
+
},
|
|
6906
|
+
"v-data-table-virtual/return-object": {
|
|
6907
|
+
"type": "boolean",
|
|
6908
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
6909
|
+
},
|
|
6910
|
+
"v-data-table-virtual/headers": {
|
|
6911
|
+
"type": "{ key: string; value: <a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>; title: string; colspan: number; rowspan: number; fixed: boolean; align: \"start\" | \"end\"; width: number; minWidth: string; maxWidth: string; sortable: boolean; sort: (a: any, b: any) => number }[] | DataTableHeader[][]",
|
|
6912
|
+
"description": "Array of header items to display"
|
|
6913
|
+
},
|
|
6914
|
+
"v-data-table-virtual/hide-no-data": {
|
|
6915
|
+
"type": "boolean",
|
|
6916
|
+
"description": "MISSING DESCRIPTION"
|
|
6917
|
+
},
|
|
6918
|
+
"v-data-table-virtual/no-data-text": {
|
|
6919
|
+
"type": "string",
|
|
6920
|
+
"description": "MISSING DESCRIPTION"
|
|
6921
|
+
},
|
|
6922
|
+
"v-data-table-virtual/height": {
|
|
6923
|
+
"type": "string | number",
|
|
6924
|
+
"description": "Set an explicit height of table"
|
|
6925
|
+
},
|
|
6926
|
+
"v-data-table-virtual/width": {
|
|
6927
|
+
"type": "string | number",
|
|
6928
|
+
"description": "Sets the width for the component."
|
|
6929
|
+
},
|
|
6930
|
+
"v-data-table-virtual/fixed-header": {
|
|
6931
|
+
"type": "boolean",
|
|
6932
|
+
"description": "Fixed header to top of table"
|
|
6933
|
+
},
|
|
6934
|
+
"v-data-table-virtual/fixed-footer": {
|
|
6935
|
+
"type": "boolean",
|
|
6936
|
+
"description": "MISSING DESCRIPTION"
|
|
6937
|
+
},
|
|
6938
|
+
"v-data-table-virtual/group-by": {
|
|
6939
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/labs/VDataTable/composables/sort.ts#L27-L27\" target=\"_blank\">SortItem</a>[]",
|
|
6940
|
+
"description": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier"
|
|
6941
|
+
},
|
|
6942
|
+
"v-data-table-virtual/expand-on-click": {
|
|
6943
|
+
"type": "boolean",
|
|
6944
|
+
"description": "MISSING DESCRIPTION"
|
|
6945
|
+
},
|
|
6946
|
+
"v-data-table-virtual/show-expand": {
|
|
6947
|
+
"type": "boolean",
|
|
6948
|
+
"description": "Shows the expand toggle in default rows"
|
|
6949
|
+
},
|
|
6950
|
+
"v-data-table-virtual/expanded": {
|
|
6951
|
+
"type": "string[]",
|
|
6952
|
+
"description": "MISSING DESCRIPTION"
|
|
6953
|
+
},
|
|
6954
|
+
"v-data-table-virtual/show-select": {
|
|
6955
|
+
"type": "boolean",
|
|
6956
|
+
"description": "Shows the select checkboxes in both the header and rows (if using default rows)"
|
|
6957
|
+
},
|
|
6958
|
+
"v-data-table-virtual/model-value": {
|
|
6959
|
+
"type": "any[]",
|
|
6960
|
+
"description": "MISSING DESCRIPTION"
|
|
6961
|
+
},
|
|
6962
|
+
"v-data-table-virtual/sort-by": {
|
|
6963
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/labs/VDataTable/composables/sort.ts#L27-L27\" target=\"_blank\">SortItem</a>[]",
|
|
6964
|
+
"description": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier"
|
|
6965
|
+
},
|
|
6966
|
+
"v-data-table-virtual/multi-sort": {
|
|
6967
|
+
"type": "boolean",
|
|
6968
|
+
"description": "If `true` then one can sort on multiple properties"
|
|
6969
|
+
},
|
|
6970
|
+
"v-data-table-virtual/must-sort": {
|
|
6971
|
+
"type": "boolean",
|
|
6972
|
+
"description": "If `true` then one can not disable sorting, it will always switch between ascending and descending"
|
|
6973
|
+
},
|
|
6974
|
+
"v-data-table-virtual/visible-items": {
|
|
6975
|
+
"type": "string | number",
|
|
6976
|
+
"description": "MISSING DESCRIPTION"
|
|
6977
|
+
},
|
|
6978
|
+
"v-data-table-virtual/item-height": {
|
|
6979
|
+
"type": "string | number",
|
|
6980
|
+
"description": "MISSING DESCRIPTION"
|
|
6981
|
+
},
|
|
6982
|
+
"v-data-table-virtual/filter-mode": {
|
|
6983
|
+
"type": "\"every\" | \"some\" | \"union\" | \"intersection\"",
|
|
6984
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
6985
|
+
},
|
|
6986
|
+
"v-data-table-virtual/no-filter": {
|
|
6987
|
+
"type": "boolean",
|
|
6988
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
6989
|
+
},
|
|
6990
|
+
"v-data-table-virtual/custom-filter": {
|
|
6991
|
+
"type": "(value: string, query: string, item: any) => number | boolean | [number, number] | [number, number][]",
|
|
6992
|
+
"description": "Function to filter items"
|
|
6993
|
+
},
|
|
6994
|
+
"v-data-table-virtual/custom-key-filter": {
|
|
6995
|
+
"type": "{ }",
|
|
6996
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
6997
|
+
},
|
|
6998
|
+
"v-data-table-virtual/filter-keys": {
|
|
6999
|
+
"type": "string | string[]",
|
|
7000
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/filter.json))"
|
|
7001
|
+
},
|
|
7002
|
+
"v-data-table-virtual/search": {
|
|
7003
|
+
"type": "string",
|
|
7004
|
+
"description": "Text input used to filter items"
|
|
7005
|
+
},
|
|
7006
|
+
"v-data-table-server/items": {
|
|
7007
|
+
"type": "any[]",
|
|
7008
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
7009
|
+
},
|
|
7010
|
+
"v-data-table-server/item-title": {
|
|
7011
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
7012
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
7013
|
+
},
|
|
7014
|
+
"v-data-table-server/item-value": {
|
|
7015
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
7016
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
7017
|
+
},
|
|
7018
|
+
"v-data-table-server/item-children": {
|
|
7019
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
7020
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
7021
|
+
},
|
|
7022
|
+
"v-data-table-server/item-props": {
|
|
7023
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>",
|
|
7024
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
7025
|
+
},
|
|
7026
|
+
"v-data-table-server/return-object": {
|
|
7027
|
+
"type": "boolean",
|
|
7028
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/item.json))"
|
|
7029
|
+
},
|
|
7030
|
+
"v-data-table-server/headers": {
|
|
7031
|
+
"type": "{ key: string; value: <a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/helpers.ts#L71-L75\" target=\"_blank\">SelectItemKey</a>; title: string; colspan: number; rowspan: number; fixed: boolean; align: \"start\" | \"end\"; width: number; minWidth: string; maxWidth: string; sortable: boolean; sort: (a: any, b: any) => number }[] | DataTableHeader[][]",
|
|
7032
|
+
"description": "Array of header items to display"
|
|
7033
|
+
},
|
|
7034
|
+
"v-data-table-server/hide-no-data": {
|
|
7035
|
+
"type": "boolean",
|
|
7036
|
+
"description": "MISSING DESCRIPTION"
|
|
7037
|
+
},
|
|
7038
|
+
"v-data-table-server/no-data-text": {
|
|
7039
|
+
"type": "string",
|
|
7040
|
+
"description": "MISSING DESCRIPTION"
|
|
7041
|
+
},
|
|
7042
|
+
"v-data-table-server/height": {
|
|
7043
|
+
"type": "string | number",
|
|
7044
|
+
"description": "Set an explicit height of table"
|
|
7045
|
+
},
|
|
7046
|
+
"v-data-table-server/width": {
|
|
7047
|
+
"type": "string | number",
|
|
7048
|
+
"description": "Sets the width for the component."
|
|
7049
|
+
},
|
|
7050
|
+
"v-data-table-server/fixed-header": {
|
|
7051
|
+
"type": "boolean",
|
|
7052
|
+
"description": "Fixed header to top of table"
|
|
7053
|
+
},
|
|
7054
|
+
"v-data-table-server/fixed-footer": {
|
|
7055
|
+
"type": "boolean",
|
|
7056
|
+
"description": "MISSING DESCRIPTION"
|
|
7057
|
+
},
|
|
7058
|
+
"v-data-table-server/expand-on-click": {
|
|
7059
|
+
"type": "boolean",
|
|
7060
|
+
"description": "MISSING DESCRIPTION"
|
|
7061
|
+
},
|
|
7062
|
+
"v-data-table-server/show-expand": {
|
|
7063
|
+
"type": "boolean",
|
|
7064
|
+
"description": "Shows the expand toggle in default rows"
|
|
7065
|
+
},
|
|
7066
|
+
"v-data-table-server/expanded": {
|
|
7067
|
+
"type": "string[]",
|
|
7068
|
+
"description": "MISSING DESCRIPTION"
|
|
7069
|
+
},
|
|
7070
|
+
"v-data-table-server/show-select": {
|
|
7071
|
+
"type": "boolean",
|
|
7072
|
+
"description": "Shows the select checkboxes in both the header and rows (if using default rows)"
|
|
7073
|
+
},
|
|
7074
|
+
"v-data-table-server/model-value": {
|
|
7075
|
+
"type": "any[]",
|
|
7076
|
+
"description": "MISSING DESCRIPTION"
|
|
7077
|
+
},
|
|
7078
|
+
"v-data-table-server/sort-by": {
|
|
7079
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/labs/VDataTable/composables/sort.ts#L27-L27\" target=\"_blank\">SortItem</a>[]",
|
|
7080
|
+
"description": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier"
|
|
7081
|
+
},
|
|
7082
|
+
"v-data-table-server/multi-sort": {
|
|
7083
|
+
"type": "boolean",
|
|
7084
|
+
"description": "If `true` then one can sort on multiple properties"
|
|
7085
|
+
},
|
|
7086
|
+
"v-data-table-server/must-sort": {
|
|
7087
|
+
"type": "boolean",
|
|
7088
|
+
"description": "If `true` then one can not disable sorting, it will always switch between ascending and descending"
|
|
7089
|
+
},
|
|
7090
|
+
"v-data-table-server/page": {
|
|
7091
|
+
"type": "string | number",
|
|
7092
|
+
"description": "The current displayed page number (1-indexed)"
|
|
7093
|
+
},
|
|
7094
|
+
"v-data-table-server/items-per-page": {
|
|
7095
|
+
"type": "string | number",
|
|
7096
|
+
"description": "Changes how many items per page should be visible. Can be used with `.sync` modifier. Setting this prop to `-1` will display all items on the page"
|
|
7097
|
+
},
|
|
7098
|
+
"v-data-table-server/color": {
|
|
7099
|
+
"type": "string",
|
|
7100
|
+
"description": "MISSING DESCRIPTION"
|
|
7101
|
+
},
|
|
7102
|
+
"v-data-table-server/loading": {
|
|
7103
|
+
"type": "string | boolean",
|
|
7104
|
+
"description": "MISSING DESCRIPTION"
|
|
7105
|
+
},
|
|
7106
|
+
"v-data-table-server/loading-text": {
|
|
7107
|
+
"type": "string",
|
|
7108
|
+
"description": "MISSING DESCRIPTION"
|
|
7109
|
+
},
|
|
7110
|
+
"v-data-table-server/items-length": {
|
|
7111
|
+
"type": "string | number",
|
|
7112
|
+
"description": "MISSING DESCRIPTION"
|
|
7113
|
+
},
|
|
7114
|
+
"v-virtual-scroll/items": {
|
|
7115
|
+
"type": "unknown[]",
|
|
7116
|
+
"description": "The array of items to display"
|
|
7117
|
+
},
|
|
7118
|
+
"v-virtual-scroll/item-key": {
|
|
7119
|
+
"type": "string",
|
|
7120
|
+
"description": "Required when using **dynamic-item-height** together with object items. Should point to a property with a unique value for each item."
|
|
7121
|
+
},
|
|
7122
|
+
"v-virtual-scroll/item-height": {
|
|
7123
|
+
"type": "string | number",
|
|
7124
|
+
"description": "Height in pixels of each item to display. When using **dynamic-item-height** this should be an average initial size."
|
|
7125
|
+
},
|
|
7126
|
+
"v-virtual-scroll/visible-items": {
|
|
7127
|
+
"type": "string | number",
|
|
7128
|
+
"description": "MISSING DESCRIPTION"
|
|
7129
|
+
},
|
|
7130
|
+
"v-virtual-scroll/height": {
|
|
7131
|
+
"type": "string | number",
|
|
7132
|
+
"description": "Height of the component as a css value"
|
|
7133
|
+
},
|
|
7134
|
+
"v-virtual-scroll/max-height": {
|
|
7135
|
+
"type": "string | number",
|
|
7136
|
+
"description": "Sets the maximum height for the component."
|
|
7137
|
+
},
|
|
7138
|
+
"v-virtual-scroll/max-width": {
|
|
7139
|
+
"type": "string | number",
|
|
7140
|
+
"description": "Sets the maximum width for the component."
|
|
7141
|
+
},
|
|
7142
|
+
"v-virtual-scroll/min-height": {
|
|
7143
|
+
"type": "string | number",
|
|
7144
|
+
"description": "Sets the minimum height for the component."
|
|
7145
|
+
},
|
|
7146
|
+
"v-virtual-scroll/min-width": {
|
|
7147
|
+
"type": "string | number",
|
|
7148
|
+
"description": "Sets the minimum width for the component."
|
|
7149
|
+
},
|
|
7150
|
+
"v-virtual-scroll/width": {
|
|
7151
|
+
"type": "string | number",
|
|
7152
|
+
"description": "Sets the width for the component."
|
|
6705
7153
|
}
|
|
6706
7154
|
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components": {
|
|
3
|
+
"VVirtualScroll": {
|
|
4
|
+
"from": "labs/VVirtualScroll/index.mjs",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
7
|
+
"VDataTable": {
|
|
8
|
+
"from": "labs/VDataTable/index.mjs",
|
|
9
|
+
"styles": []
|
|
10
|
+
},
|
|
11
|
+
"VDataTableRows": {
|
|
12
|
+
"from": "labs/VDataTable/index.mjs",
|
|
13
|
+
"styles": []
|
|
14
|
+
},
|
|
15
|
+
"VDataTableRow": {
|
|
16
|
+
"from": "labs/VDataTable/index.mjs",
|
|
17
|
+
"styles": []
|
|
18
|
+
},
|
|
19
|
+
"VDataTableVirtual": {
|
|
20
|
+
"from": "labs/VDataTable/index.mjs",
|
|
21
|
+
"styles": []
|
|
22
|
+
},
|
|
23
|
+
"VDataTableServer": {
|
|
24
|
+
"from": "labs/VDataTable/index.mjs",
|
|
25
|
+
"styles": []
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|