vuetify 2.4.1 → 2.4.5
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/dist/json/attributes.json +52 -48
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +134 -91
- package/dist/vuetify.css +12 -12
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +193 -114
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VBtn/VBtn.js +3 -6
- package/es5/components/VBtn/VBtn.js.map +1 -1
- package/es5/components/VCalendar/VCalendarCategory.js +8 -6
- package/es5/components/VCalendar/VCalendarCategory.js.map +1 -1
- package/es5/components/VCombobox/VCombobox.js +7 -1
- package/es5/components/VCombobox/VCombobox.js.map +1 -1
- package/es5/components/VData/VData.js +1 -1
- package/es5/components/VData/VData.js.map +1 -1
- package/es5/components/VDatePicker/VDatePicker.js +12 -38
- package/es5/components/VDatePicker/VDatePicker.js.map +1 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js +9 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/es5/components/VDatePicker/util/index.js +8 -0
- package/es5/components/VDatePicker/util/index.js.map +1 -1
- package/es5/components/VDatePicker/util/sanitizeDateString.js +37 -0
- package/es5/components/VDatePicker/util/sanitizeDateString.js.map +1 -0
- package/es5/components/VFileInput/VFileInput.js +1 -1
- package/es5/components/VFileInput/VFileInput.js.map +1 -1
- package/es5/components/VLazy/VLazy.js +3 -8
- package/es5/components/VLazy/VLazy.js.map +1 -1
- package/es5/components/VList/VListItem.js +1 -1
- package/es5/components/VList/VListItem.js.map +1 -1
- package/es5/components/VPagination/VPagination.js +1 -0
- package/es5/components/VPagination/VPagination.js.map +1 -1
- package/es5/components/VRating/VRating.js +0 -1
- package/es5/components/VRating/VRating.js.map +1 -1
- package/es5/components/VSelect/VSelect.js +19 -10
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/VTextField/VTextField.js +8 -2
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/locale/sk.js +1 -1
- package/es5/locale/sk.js.map +1 -1
- package/es5/services/theme/utils.js +13 -11
- package/es5/services/theme/utils.js.map +1 -1
- package/es5/util/dom.js +33 -0
- package/es5/util/dom.js.map +1 -0
- package/lib/components/VBtn/VBtn.js +3 -6
- package/lib/components/VBtn/VBtn.js.map +1 -1
- package/lib/components/VCalendar/VCalendarCategory.js +7 -5
- package/lib/components/VCalendar/VCalendarCategory.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +6 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VData/VData.js +1 -1
- package/lib/components/VData/VData.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.js +1 -12
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VDatePicker/mixins/date-picker-table.js +12 -2
- package/lib/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/lib/components/VDatePicker/util/index.js +2 -1
- package/lib/components/VDatePicker/util/index.js.map +1 -1
- package/lib/components/VDatePicker/util/sanitizeDateString.js +12 -0
- package/lib/components/VDatePicker/util/sanitizeDateString.js.map +1 -0
- package/lib/components/VFileInput/VFileInput.js +1 -1
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VLazy/VLazy.js +3 -8
- package/lib/components/VLazy/VLazy.js.map +1 -1
- package/lib/components/VList/VListItem.js +1 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VPagination/VPagination.js +1 -0
- package/lib/components/VPagination/VPagination.js.map +1 -1
- package/lib/components/VRating/VRating.js +0 -1
- package/lib/components/VRating/VRating.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +9 -2
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +7 -2
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/locale/sk.js +1 -1
- package/lib/locale/sk.js.map +1 -1
- package/lib/services/theme/utils.js +2 -1
- package/lib/services/theme/utils.js.map +1 -1
- package/lib/util/dom.js +24 -0
- package/lib/util/dom.js.map +1 -0
- package/package.json +2 -2
- package/src/components/VAlert/__tests__/__snapshots__/VAlert.spec.ts.snap +2 -2
- package/src/components/VAppBar/__tests__/__snapshots__/VAppBarNavIcon.spec.ts.snap +1 -1
- package/src/components/VAutocomplete/__tests__/VAutocomplete.spec.ts +3 -1
- package/src/components/VAutocomplete/__tests__/VAutocomplete2.spec.ts +3 -0
- package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +1 -0
- package/src/components/VBottomNavigation/__tests__/__snapshots__/VBottomNavigation.spec.ts.snap +4 -4
- package/src/components/VBtn/VBtn.sass +1 -8
- package/src/components/VBtn/VBtn.ts +3 -6
- package/src/components/VBtn/__tests__/VBtn.spec.ts +1 -33
- package/src/components/VBtn/__tests__/__snapshots__/VBtn.spec.ts.snap +10 -10
- package/src/components/VCalendar/VCalendarCategory.ts +7 -5
- package/src/components/VCalendar/__tests__/__snapshots__/VCalendar.spec.ts.snap +50 -50
- package/src/components/VCalendar/__tests__/__snapshots__/VCalendarDaily.spec.ts.snap +61 -61
- package/src/components/VColorPicker/__tests__/__snapshots__/VColorPicker.spec.ts.snap +9 -9
- package/src/components/VColorPicker/__tests__/__snapshots__/VColorPickerEdit.spec.ts.snap +5 -5
- package/src/components/VCombobox/VCombobox.ts +10 -0
- package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +1 -1
- package/src/components/VCombobox/__tests__/VCombobox.spec.ts +1 -0
- package/src/components/VData/VData.ts +1 -1
- package/src/components/VDataIterator/__tests__/__snapshots__/VDataFooter.spec.ts.snap +16 -16
- package/src/components/VDataIterator/__tests__/__snapshots__/VDataIterator.spec.ts.snap +10 -10
- package/src/components/VDataTable/VDataTableHeader.sass +2 -0
- package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +102 -102
- package/src/components/VDataTable/__tests__/__snapshots__/VEditDialog.spec.ts.snap +3 -3
- package/src/components/VDatePicker/VDatePicker.ts +1 -7
- package/src/components/VDatePicker/__tests__/VDatePickerDateTable.spec.ts +32 -0
- package/src/components/VDatePicker/__tests__/VDatePickerMonthTable.spec.ts +32 -0
- package/src/components/VDatePicker/__tests__/__snapshots__/VDatePicker.date.spec.ts.snap +16 -16
- package/src/components/VDatePicker/__tests__/__snapshots__/VDatePicker.month.spec.ts.snap +10 -10
- package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerHeader.spec.ts.snap +10 -10
- package/src/components/VDatePicker/mixins/date-picker-table.ts +10 -2
- package/src/components/VDatePicker/util/__tests__/sanitizeDateString.spec.ts +10 -0
- package/src/components/VDatePicker/util/index.ts +2 -0
- package/src/components/VDatePicker/util/sanitizeDateString.ts +8 -0
- package/src/components/VFileInput/VFileInput.ts +1 -1
- package/src/components/VGrid/VGrid.sass +6 -0
- package/src/components/VLazy/VLazy.ts +6 -11
- package/src/components/VList/VListItem.ts +1 -1
- package/src/components/VList/__tests__/VListItem.spec.ts +1 -1
- package/src/components/VPagination/VPagination.ts +1 -0
- package/src/components/VPagination/__tests__/__snapshots__/VPagination.spec.ts.snap +6 -3
- package/src/components/VRating/VRating.ts +0 -1
- package/src/components/VSelect/VSelect.ts +13 -4
- package/src/components/VSelect/__tests__/VSelect.spec.ts +67 -0
- package/src/components/VSelect/__tests__/VSelect2.spec.ts +26 -0
- package/src/components/VSelect/__tests__/__snapshots__/VSelect2.spec.ts.snap +4 -4
- package/src/components/VTextField/VTextField.sass +2 -2
- package/src/components/VTextField/VTextField.ts +9 -4
- package/src/components/VTextField/__tests__/VTextField.spec.ts +15 -4
- package/src/locale/sk.ts +1 -1
- package/src/services/theme/utils.ts +2 -1
- package/src/util/__tests__/dom.spec.ts +42 -0
- package/src/util/dom.ts +24 -0
- package/types/services/icons.d.ts +2 -2
- package/types/services/theme.d.ts +0 -2
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"v-app-bar/app": {
|
|
11
11
|
"type": "boolean",
|
|
12
|
-
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
12
|
+
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
13
13
|
},
|
|
14
14
|
"v-app-bar/bottom": {
|
|
15
15
|
"type": "boolean",
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
},
|
|
378
378
|
"v-autocomplete/filter": {
|
|
379
379
|
"type": "function",
|
|
380
|
-
"description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#
|
|
380
|
+
"description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)"
|
|
381
381
|
},
|
|
382
382
|
"v-autocomplete/flat": {
|
|
383
383
|
"type": "boolean",
|
|
@@ -793,7 +793,7 @@
|
|
|
793
793
|
},
|
|
794
794
|
"v-bottom-navigation/app": {
|
|
795
795
|
"type": "boolean",
|
|
796
|
-
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
796
|
+
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
797
797
|
},
|
|
798
798
|
"v-bottom-navigation/background-color": {
|
|
799
799
|
"type": "string",
|
|
@@ -1105,7 +1105,7 @@
|
|
|
1105
1105
|
},
|
|
1106
1106
|
"v-btn/fab": {
|
|
1107
1107
|
"type": "boolean",
|
|
1108
|
-
"description": "Designates the button as a floating-action-button
|
|
1108
|
+
"description": "Designates the button as a floating-action-button. Button will become _round_."
|
|
1109
1109
|
},
|
|
1110
1110
|
"v-btn/fixed": {
|
|
1111
1111
|
"type": "boolean",
|
|
@@ -1121,7 +1121,7 @@
|
|
|
1121
1121
|
},
|
|
1122
1122
|
"v-btn/icon": {
|
|
1123
1123
|
"type": "boolean",
|
|
1124
|
-
"description": "Designates the button as icon
|
|
1124
|
+
"description": "Designates the button as icon. Button will become _round_ and applies the **text** prop."
|
|
1125
1125
|
},
|
|
1126
1126
|
"v-btn/input-value": {
|
|
1127
1127
|
"type": "any",
|
|
@@ -1145,7 +1145,7 @@
|
|
|
1145
1145
|
},
|
|
1146
1146
|
"v-btn/loading": {
|
|
1147
1147
|
"type": "boolean",
|
|
1148
|
-
"description": "Adds a loading icon animation"
|
|
1148
|
+
"description": "Adds a loading icon animation."
|
|
1149
1149
|
},
|
|
1150
1150
|
"v-btn/max-height": {
|
|
1151
1151
|
"type": "number|string",
|
|
@@ -1213,7 +1213,7 @@
|
|
|
1213
1213
|
},
|
|
1214
1214
|
"v-btn/text": {
|
|
1215
1215
|
"type": "boolean",
|
|
1216
|
-
"description": "Makes the background transparent."
|
|
1216
|
+
"description": "Makes the background transparent. When using the **color** prop, the color will be applied to the button text instead of the background."
|
|
1217
1217
|
},
|
|
1218
1218
|
"v-btn/tile": {
|
|
1219
1219
|
"type": "boolean",
|
|
@@ -1229,7 +1229,7 @@
|
|
|
1229
1229
|
},
|
|
1230
1230
|
"v-btn/type": {
|
|
1231
1231
|
"type": "string",
|
|
1232
|
-
"description": "Set the button's **type** attribute"
|
|
1232
|
+
"description": "Set the button's **type** attribute."
|
|
1233
1233
|
},
|
|
1234
1234
|
"v-btn/value": {
|
|
1235
1235
|
"type": "any",
|
|
@@ -2597,7 +2597,7 @@
|
|
|
2597
2597
|
},
|
|
2598
2598
|
"v-combobox/filter": {
|
|
2599
2599
|
"type": "function",
|
|
2600
|
-
"description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#
|
|
2600
|
+
"description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)"
|
|
2601
2601
|
},
|
|
2602
2602
|
"v-combobox/flat": {
|
|
2603
2603
|
"type": "boolean",
|
|
@@ -2861,7 +2861,7 @@
|
|
|
2861
2861
|
},
|
|
2862
2862
|
"v-data-iterator/locale": {
|
|
2863
2863
|
"type": "string",
|
|
2864
|
-
"description": "Sets the locale
|
|
2864
|
+
"description": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function"
|
|
2865
2865
|
},
|
|
2866
2866
|
"v-data-iterator/mobile-breakpoint": {
|
|
2867
2867
|
"type": "number|string",
|
|
@@ -3101,7 +3101,7 @@
|
|
|
3101
3101
|
},
|
|
3102
3102
|
"v-data-table/locale": {
|
|
3103
3103
|
"type": "string",
|
|
3104
|
-
"description": "Sets the locale
|
|
3104
|
+
"description": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function"
|
|
3105
3105
|
},
|
|
3106
3106
|
"v-data-table/mobile-breakpoint": {
|
|
3107
3107
|
"type": "number|string",
|
|
@@ -3243,6 +3243,10 @@
|
|
|
3243
3243
|
"type": "boolean",
|
|
3244
3244
|
"description": "Indicates if one or more items in table are selected"
|
|
3245
3245
|
},
|
|
3246
|
+
"v-data-table-header/sort-by-text": {
|
|
3247
|
+
"type": "string",
|
|
3248
|
+
"description": "Sets the label text used by the default sort-by selector when `v-data-table` is rendering the mobile view"
|
|
3249
|
+
},
|
|
3246
3250
|
"v-data-table-header/sort-icon": {
|
|
3247
3251
|
"type": "string",
|
|
3248
3252
|
"description": "Icon used for sort button"
|
|
@@ -3795,6 +3799,10 @@
|
|
|
3795
3799
|
"type": "string|array",
|
|
3796
3800
|
"description": "Displays a list of messages or message if using a string"
|
|
3797
3801
|
},
|
|
3802
|
+
"v-file-input/multiple": {
|
|
3803
|
+
"type": "boolean",
|
|
3804
|
+
"description": "Adds the **multiple** attribute to the input, allowing multiple file selections."
|
|
3805
|
+
},
|
|
3798
3806
|
"v-file-input/outlined": {
|
|
3799
3807
|
"type": "boolean",
|
|
3800
3808
|
"description": "Applies the outlined style to the input"
|
|
@@ -3883,17 +3891,13 @@
|
|
|
3883
3891
|
"type": "any",
|
|
3884
3892
|
"description": "A single or array of [File objects](https://developer.mozilla.org/en-US/docs/Web/API/File)."
|
|
3885
3893
|
},
|
|
3886
|
-
"v-file-input/multiple": {
|
|
3887
|
-
"type": "boolean",
|
|
3888
|
-
"description": "Adds the **multiple** attribute to the input, allowing multiple file selections."
|
|
3889
|
-
},
|
|
3890
3894
|
"v-footer/absolute": {
|
|
3891
3895
|
"type": "boolean",
|
|
3892
3896
|
"description": "Applies **position: absolute** to the component."
|
|
3893
3897
|
},
|
|
3894
3898
|
"v-footer/app": {
|
|
3895
3899
|
"type": "boolean",
|
|
3896
|
-
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
3900
|
+
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
3897
3901
|
},
|
|
3898
3902
|
"v-footer/color": {
|
|
3899
3903
|
"type": "string",
|
|
@@ -4135,14 +4139,6 @@
|
|
|
4135
4139
|
"type": "string",
|
|
4136
4140
|
"description": "Specify a custom tag used on the root element."
|
|
4137
4141
|
},
|
|
4138
|
-
"v-layout/id": {
|
|
4139
|
-
"type": "string",
|
|
4140
|
-
"description": "Sets the DOM id on the component"
|
|
4141
|
-
},
|
|
4142
|
-
"v-layout/tag": {
|
|
4143
|
-
"type": "string",
|
|
4144
|
-
"description": "Specify a custom tag used on the root element."
|
|
4145
|
-
},
|
|
4146
4142
|
"v-layout/align-baseline": {
|
|
4147
4143
|
"type": "boolean",
|
|
4148
4144
|
"description": ""
|
|
@@ -4179,6 +4175,10 @@
|
|
|
4179
4175
|
"type": "boolean",
|
|
4180
4176
|
"description": ""
|
|
4181
4177
|
},
|
|
4178
|
+
"v-layout/column": {
|
|
4179
|
+
"type": "boolean",
|
|
4180
|
+
"description": ""
|
|
4181
|
+
},
|
|
4182
4182
|
"v-layout/d-{type}": {
|
|
4183
4183
|
"type": "boolean",
|
|
4184
4184
|
"description": ""
|
|
@@ -4187,6 +4187,10 @@
|
|
|
4187
4187
|
"type": "boolean",
|
|
4188
4188
|
"description": ""
|
|
4189
4189
|
},
|
|
4190
|
+
"v-layout/id": {
|
|
4191
|
+
"type": "string",
|
|
4192
|
+
"description": "Sets the DOM id on the component"
|
|
4193
|
+
},
|
|
4190
4194
|
"v-layout/justify-center": {
|
|
4191
4195
|
"type": "boolean",
|
|
4192
4196
|
"description": ""
|
|
@@ -4207,43 +4211,31 @@
|
|
|
4207
4211
|
"type": "boolean",
|
|
4208
4212
|
"description": ""
|
|
4209
4213
|
},
|
|
4210
|
-
"v-layout/column": {
|
|
4211
|
-
"type": "boolean",
|
|
4212
|
-
"description": ""
|
|
4213
|
-
},
|
|
4214
4214
|
"v-layout/reverse": {
|
|
4215
4215
|
"type": "boolean",
|
|
4216
4216
|
"description": ""
|
|
4217
4217
|
},
|
|
4218
|
-
"v-layout/wrap": {
|
|
4219
|
-
"type": "boolean",
|
|
4220
|
-
"description": ""
|
|
4221
|
-
},
|
|
4222
4218
|
"v-layout/row": {
|
|
4223
4219
|
"type": "boolean",
|
|
4224
4220
|
"description": ""
|
|
4225
4221
|
},
|
|
4226
|
-
"v-
|
|
4227
|
-
"type": "string",
|
|
4228
|
-
"description": "Sets the DOM id on the component"
|
|
4229
|
-
},
|
|
4230
|
-
"v-flex/tag": {
|
|
4222
|
+
"v-layout/tag": {
|
|
4231
4223
|
"type": "string",
|
|
4232
4224
|
"description": "Specify a custom tag used on the root element."
|
|
4233
4225
|
},
|
|
4234
|
-
"v-
|
|
4226
|
+
"v-layout/wrap": {
|
|
4235
4227
|
"type": "boolean",
|
|
4236
4228
|
"description": ""
|
|
4237
4229
|
},
|
|
4238
|
-
"v-flex/
|
|
4230
|
+
"v-flex/(size)(1-12)": {
|
|
4239
4231
|
"type": "boolean",
|
|
4240
4232
|
"description": ""
|
|
4241
4233
|
},
|
|
4242
|
-
"v-flex/
|
|
4234
|
+
"v-flex/align-self-baseline": {
|
|
4243
4235
|
"type": "boolean",
|
|
4244
4236
|
"description": ""
|
|
4245
4237
|
},
|
|
4246
|
-
"v-flex/align-self-
|
|
4238
|
+
"v-flex/align-self-center": {
|
|
4247
4239
|
"type": "boolean",
|
|
4248
4240
|
"description": ""
|
|
4249
4241
|
},
|
|
@@ -4251,15 +4243,23 @@
|
|
|
4251
4243
|
"type": "boolean",
|
|
4252
4244
|
"description": ""
|
|
4253
4245
|
},
|
|
4254
|
-
"v-flex/align-self-
|
|
4246
|
+
"v-flex/align-self-start": {
|
|
4255
4247
|
"type": "boolean",
|
|
4256
4248
|
"description": ""
|
|
4257
4249
|
},
|
|
4258
|
-
"v-flex/
|
|
4250
|
+
"v-flex/grow": {
|
|
4259
4251
|
"type": "boolean",
|
|
4260
4252
|
"description": ""
|
|
4261
4253
|
},
|
|
4262
|
-
"v-flex/
|
|
4254
|
+
"v-flex/id": {
|
|
4255
|
+
"type": "string",
|
|
4256
|
+
"description": "Sets the DOM id on the component"
|
|
4257
|
+
},
|
|
4258
|
+
"v-flex/offset-(size)(0-12)": {
|
|
4259
|
+
"type": "boolean",
|
|
4260
|
+
"description": ""
|
|
4261
|
+
},
|
|
4262
|
+
"v-flex/order-(size)(1-12)": {
|
|
4263
4263
|
"type": "boolean",
|
|
4264
4264
|
"description": ""
|
|
4265
4265
|
},
|
|
@@ -4267,6 +4267,10 @@
|
|
|
4267
4267
|
"type": "boolean",
|
|
4268
4268
|
"description": ""
|
|
4269
4269
|
},
|
|
4270
|
+
"v-flex/tag": {
|
|
4271
|
+
"type": "string",
|
|
4272
|
+
"description": "Specify a custom tag used on the root element."
|
|
4273
|
+
},
|
|
4270
4274
|
"v-hover/close-delay": {
|
|
4271
4275
|
"type": "number|string",
|
|
4272
4276
|
"description": "Milliseconds to wait before closing component."
|
|
@@ -5105,7 +5109,7 @@
|
|
|
5105
5109
|
},
|
|
5106
5110
|
"v-navigation-drawer/app": {
|
|
5107
5111
|
"type": "boolean",
|
|
5108
|
-
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
5112
|
+
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
5109
5113
|
},
|
|
5110
5114
|
"v-navigation-drawer/bottom": {
|
|
5111
5115
|
"type": "boolean",
|
|
@@ -5113,7 +5117,7 @@
|
|
|
5113
5117
|
},
|
|
5114
5118
|
"v-navigation-drawer/clipped": {
|
|
5115
5119
|
"type": "boolean",
|
|
5116
|
-
"description": "A clipped drawer rests under the application toolbar"
|
|
5120
|
+
"description": "A clipped drawer rests under the application toolbar. **Note:** requires the **clipped-left** or **clipped-right** prop on `v-app-bar` to work as intended"
|
|
5117
5121
|
},
|
|
5118
5122
|
"v-navigation-drawer/color": {
|
|
5119
5123
|
"type": "string",
|
|
@@ -5313,7 +5317,7 @@
|
|
|
5313
5317
|
},
|
|
5314
5318
|
"v-overflow-btn/filter": {
|
|
5315
5319
|
"type": "function",
|
|
5316
|
-
"description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#
|
|
5320
|
+
"description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)"
|
|
5317
5321
|
},
|
|
5318
5322
|
"v-overflow-btn/flat": {
|
|
5319
5323
|
"type": "boolean",
|
|
@@ -7217,7 +7221,7 @@
|
|
|
7217
7221
|
},
|
|
7218
7222
|
"v-system-bar/app": {
|
|
7219
7223
|
"type": "boolean",
|
|
7220
|
-
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
7224
|
+
"description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
|
|
7221
7225
|
},
|
|
7222
7226
|
"v-system-bar/color": {
|
|
7223
7227
|
"type": "string",
|