vuetify 2.5.13 → 2.6.1
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 +188 -0
- package/dist/json/tags.json +86 -20
- package/dist/json/web-types.json +697 -139
- package/dist/vuetify.css +136 -5
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +927 -304
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAutocomplete/VAutocomplete.js +1 -0
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VBanner/VBanner.js +3 -2
- package/es5/components/VBanner/VBanner.js.map +1 -1
- package/es5/components/VBottomSheet/VBottomSheet.js +1 -4
- package/es5/components/VBottomSheet/VBottomSheet.js.map +1 -1
- package/es5/components/VCalendar/VCalendar.js +2 -2
- package/es5/components/VCalendar/VCalendar.js.map +1 -1
- package/es5/components/VCalendar/VCalendarDaily.js +16 -8
- package/es5/components/VCalendar/VCalendarDaily.js.map +1 -1
- package/es5/components/VCalendar/VCalendarWeekly.js +14 -10
- package/es5/components/VCalendar/VCalendarWeekly.js.map +1 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js +19 -20
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCalendar/mixins/mouse.js +13 -4
- package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
- package/es5/components/VDataTable/MobileRow.js +2 -2
- package/es5/components/VDataTable/MobileRow.js.map +1 -1
- package/es5/components/VDataTable/Row.js +25 -9
- package/es5/components/VDataTable/Row.js.map +1 -1
- package/es5/components/VDataTable/VDataTableHeaderDesktop.js +1 -1
- package/es5/components/VDataTable/VDataTableHeaderDesktop.js.map +1 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js +13 -3
- package/es5/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +4 -10
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VInput/VInput.js +3 -1
- package/es5/components/VInput/VInput.js.map +1 -1
- package/es5/components/VItemGroup/VItemGroup.js +8 -4
- package/es5/components/VItemGroup/VItemGroup.js.map +1 -1
- package/es5/components/VMenu/VMenu.js +1 -1
- package/es5/components/VMenu/VMenu.js.map +1 -1
- package/es5/components/VOtpInput/VOtpInput.js +375 -0
- package/es5/components/VOtpInput/VOtpInput.js.map +1 -0
- package/es5/components/VOtpInput/index.js +20 -0
- package/es5/components/VOtpInput/index.js.map +1 -0
- package/es5/components/VRadioGroup/VRadioGroup.js +1 -3
- package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/es5/components/VSlideGroup/VSlideGroup.js +8 -1
- package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/es5/components/VSnackbar/VSnackbar.js +4 -8
- package/es5/components/VSnackbar/VSnackbar.js.map +1 -1
- package/es5/components/VTabs/VTab.js +3 -2
- package/es5/components/VTabs/VTab.js.map +1 -1
- package/es5/components/VTextField/VTextField.js +6 -1
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +0 -1
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/components/VTreeview/VTreeview.js +2 -1
- package/es5/components/VTreeview/VTreeview.js.map +1 -1
- package/es5/components/VTreeview/VTreeviewNode.js +3 -1
- package/es5/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/es5/components/index.js +13 -0
- package/es5/components/index.js.map +1 -1
- package/es5/directives/click-outside/index.js +3 -1
- package/es5/directives/click-outside/index.js.map +1 -1
- package/es5/directives/intersect/index.js +8 -5
- package/es5/directives/intersect/index.js.map +1 -1
- package/es5/directives/mutate/index.js +3 -2
- package/es5/directives/mutate/index.js.map +1 -1
- package/es5/directives/resize/index.js +3 -1
- package/es5/directives/resize/index.js.map +1 -1
- package/es5/directives/ripple/index.js +0 -7
- package/es5/directives/ripple/index.js.map +1 -1
- package/es5/directives/scroll/index.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/locale/da.js +77 -0
- package/es5/locale/da.js.map +1 -0
- package/es5/locale/index.js +8 -0
- package/es5/locale/index.js.map +1 -1
- package/es5/locale/it.js +6 -6
- package/es5/locale/it.js.map +1 -1
- package/es5/mixins/intersectable/index.js +6 -0
- package/es5/mixins/intersectable/index.js.map +1 -1
- package/es5/mixins/routable/index.js +2 -5
- package/es5/mixins/routable/index.js.map +1 -1
- package/es5/util/helpers.js +13 -6
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBanner/VBanner.js +3 -2
- package/lib/components/VBanner/VBanner.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.js +1 -4
- package/lib/components/VBottomSheet/VBottomSheet.js.map +1 -1
- package/lib/components/VCalendar/VCalendar.js +2 -2
- package/lib/components/VCalendar/VCalendar.js.map +1 -1
- package/lib/components/VCalendar/VCalendarDaily.js +20 -8
- package/lib/components/VCalendar/VCalendarDaily.js.map +1 -1
- package/lib/components/VCalendar/VCalendarWeekly.js +10 -2
- package/lib/components/VCalendar/VCalendarWeekly.js.map +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +6 -3
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCalendar/mixins/mouse.js +9 -4
- package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
- package/lib/components/VDataTable/MobileRow.js +2 -2
- package/lib/components/VDataTable/MobileRow.js.map +1 -1
- package/lib/components/VDataTable/Row.js +15 -8
- package/lib/components/VDataTable/Row.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaderDesktop.js +1 -1
- package/lib/components/VDataTable/VDataTableHeaderDesktop.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/VDialog/VDialog.js +4 -10
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VInput/VInput.js +2 -0
- package/lib/components/VInput/VInput.js.map +1 -1
- package/lib/components/VItemGroup/VItemGroup.js +7 -5
- package/lib/components/VItemGroup/VItemGroup.js.map +1 -1
- package/lib/components/VMenu/VMenu.js +1 -1
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +342 -0
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -0
- package/lib/components/VOtpInput/index.js +4 -0
- package/lib/components/VOtpInput/index.js.map +1 -0
- package/lib/components/VRadioGroup/VRadioGroup.js +2 -4
- package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js +9 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.js +4 -8
- package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
- package/lib/components/VTabs/VTab.js +3 -2
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +8 -1
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +0 -1
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +2 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewNode.js +3 -1
- package/lib/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/lib/components/index.js +1 -0
- package/lib/components/index.js.map +1 -1
- package/lib/directives/click-outside/index.js +3 -1
- package/lib/directives/click-outside/index.js.map +1 -1
- package/lib/directives/intersect/index.js +7 -5
- package/lib/directives/intersect/index.js.map +1 -1
- package/lib/directives/mutate/index.js +3 -2
- package/lib/directives/mutate/index.js.map +1 -1
- package/lib/directives/resize/index.js +3 -1
- package/lib/directives/resize/index.js.map +1 -1
- package/lib/directives/ripple/index.js +0 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/directives/scroll/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/locale/da.js +70 -0
- package/lib/locale/da.js.map +1 -0
- package/lib/locale/index.js +1 -0
- package/lib/locale/index.js.map +1 -1
- package/lib/locale/it.js +6 -6
- package/lib/locale/it.js.map +1 -1
- package/lib/mixins/intersectable/index.js +4 -0
- package/lib/mixins/intersectable/index.js.map +1 -1
- package/lib/mixins/routable/index.js +3 -5
- package/lib/mixins/routable/index.js.map +1 -1
- package/lib/util/helpers.js +13 -6
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.ts +2 -0
- package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +16 -0
- package/src/components/VBanner/VBanner.ts +16 -10
- package/src/components/VBottomSheet/VBottomSheet.ts +1 -4
- package/src/components/VCalendar/VCalendar.ts +3 -2
- package/src/components/VCalendar/VCalendarCategory.sass +67 -0
- package/src/components/VCalendar/VCalendarDaily.ts +9 -8
- package/src/components/VCalendar/VCalendarWeekly.ts +4 -2
- package/src/components/VCalendar/_variables.scss +4 -0
- package/src/components/VCalendar/mixins/calendar-with-events.ts +4 -3
- package/src/components/VCalendar/mixins/mouse.ts +10 -4
- package/src/components/VDataTable/MobileRow.ts +2 -2
- package/src/components/VDataTable/Row.ts +23 -16
- package/src/components/VDataTable/VDataTableHeaderDesktop.ts +1 -1
- package/src/components/VDatePicker/__tests__/VDatePicker.date.spec.ts +16 -0
- package/src/components/VDatePicker/__tests__/VDatePicker.month.spec.ts +16 -0
- package/src/components/VDatePicker/mixins/date-picker-table.ts +24 -2
- package/src/components/VDialog/VDialog.ts +4 -10
- package/src/components/VInput/VInput.sass +8 -0
- package/src/components/VInput/VInput.ts +2 -0
- package/src/components/VItemGroup/VItemGroup.ts +5 -3
- package/src/components/VItemGroup/__tests__/VItemGroup.spec.ts +19 -2
- package/src/components/VMenu/VMenu.ts +1 -1
- package/src/components/VOtpInput/VOtpInput.sass +37 -0
- package/src/components/VOtpInput/VOtpInput.ts +322 -0
- package/src/components/VOtpInput/__tests__/VOtpInput.spec.ts +294 -0
- package/src/components/VOtpInput/_variables.scss +4 -0
- package/src/components/VOtpInput/index.ts +4 -0
- package/src/components/VRadioGroup/VRadioGroup.ts +0 -4
- package/src/components/VSlideGroup/VSlideGroup.ts +14 -1
- package/src/components/VSnackbar/VSnackbar.ts +3 -7
- package/src/components/VSnackbar/__tests__/VSnackbar.spec.ts +4 -1
- package/src/components/VStepper/VStepper.sass +4 -4
- package/src/components/VTabs/VTab.ts +10 -2
- package/src/components/VTextField/VTextField.ts +8 -3
- package/src/components/VTooltip/VTooltip.sass +4 -1
- package/src/components/VTooltip/VTooltip.ts +0 -1
- package/src/components/VTooltip/_variables.scss +1 -0
- package/src/components/VTreeview/VTreeview.ts +2 -1
- package/src/components/VTreeview/VTreeviewNode.ts +3 -1
- package/src/components/index.ts +1 -0
- package/src/directives/click-outside/index.ts +2 -2
- package/src/directives/intersect/index.ts +6 -5
- package/src/directives/mutate/index.ts +2 -3
- package/src/directives/resize/index.ts +2 -2
- package/src/directives/ripple/VRipple.sass +4 -1
- package/src/directives/ripple/index.ts +0 -7
- package/src/directives/scroll/index.ts +1 -1
- package/src/globals.d.ts +5 -5
- package/src/locale/da.ts +69 -0
- package/src/locale/index.ts +1 -0
- package/src/locale/it.ts +6 -6
- package/src/mixins/intersectable/index.ts +6 -0
- package/src/mixins/routable/index.ts +1 -4
- package/src/styles/settings/_variables.scss +4 -3
- package/src/util/__tests__/__snapshots__/helpers.spec.ts.snap +11 -0
- package/src/util/__tests__/helpers.spec.ts +17 -0
- package/src/util/helpers.ts +14 -7
- package/src/directives/ripple/_variables.scss +0 -6
package/dist/json/tags.json
CHANGED
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
"hide-details",
|
|
126
126
|
"hide-no-data",
|
|
127
127
|
"hide-selected",
|
|
128
|
+
"hide-spin-buttons",
|
|
128
129
|
"hint",
|
|
129
130
|
"id",
|
|
130
131
|
"item-color",
|
|
@@ -330,7 +331,9 @@
|
|
|
330
331
|
"description": ""
|
|
331
332
|
},
|
|
332
333
|
"v-breadcrumbs-divider": {
|
|
333
|
-
"attributes": [
|
|
334
|
+
"attributes": [
|
|
335
|
+
"tag"
|
|
336
|
+
],
|
|
334
337
|
"description": ""
|
|
335
338
|
},
|
|
336
339
|
"v-btn": {
|
|
@@ -404,7 +407,8 @@
|
|
|
404
407
|
"shaped",
|
|
405
408
|
"tag",
|
|
406
409
|
"tile",
|
|
407
|
-
"value"
|
|
410
|
+
"value",
|
|
411
|
+
"value-comparator"
|
|
408
412
|
],
|
|
409
413
|
"description": ""
|
|
410
414
|
},
|
|
@@ -579,19 +583,27 @@
|
|
|
579
583
|
"description": ""
|
|
580
584
|
},
|
|
581
585
|
"v-card-actions": {
|
|
582
|
-
"attributes": [
|
|
586
|
+
"attributes": [
|
|
587
|
+
"tag"
|
|
588
|
+
],
|
|
583
589
|
"description": ""
|
|
584
590
|
},
|
|
585
591
|
"v-card-subtitle": {
|
|
586
|
-
"attributes": [
|
|
592
|
+
"attributes": [
|
|
593
|
+
"tag"
|
|
594
|
+
],
|
|
587
595
|
"description": ""
|
|
588
596
|
},
|
|
589
597
|
"v-card-text": {
|
|
590
|
-
"attributes": [
|
|
598
|
+
"attributes": [
|
|
599
|
+
"tag"
|
|
600
|
+
],
|
|
591
601
|
"description": ""
|
|
592
602
|
},
|
|
593
603
|
"v-card-title": {
|
|
594
|
-
"attributes": [
|
|
604
|
+
"attributes": [
|
|
605
|
+
"tag"
|
|
606
|
+
],
|
|
595
607
|
"description": ""
|
|
596
608
|
},
|
|
597
609
|
"v-carousel": {
|
|
@@ -620,6 +632,7 @@
|
|
|
620
632
|
"touch",
|
|
621
633
|
"touchless",
|
|
622
634
|
"value",
|
|
635
|
+
"value-comparator",
|
|
623
636
|
"vertical",
|
|
624
637
|
"vertical-delimiters"
|
|
625
638
|
],
|
|
@@ -661,6 +674,7 @@
|
|
|
661
674
|
"error-messages",
|
|
662
675
|
"false-value",
|
|
663
676
|
"hide-details",
|
|
677
|
+
"hide-spin-buttons",
|
|
664
678
|
"hint",
|
|
665
679
|
"id",
|
|
666
680
|
"indeterminate",
|
|
@@ -756,7 +770,8 @@
|
|
|
756
770
|
"prev-icon",
|
|
757
771
|
"show-arrows",
|
|
758
772
|
"tag",
|
|
759
|
-
"value"
|
|
773
|
+
"value",
|
|
774
|
+
"value-comparator"
|
|
760
775
|
],
|
|
761
776
|
"description": ""
|
|
762
777
|
},
|
|
@@ -822,6 +837,7 @@
|
|
|
822
837
|
"hide-details",
|
|
823
838
|
"hide-no-data",
|
|
824
839
|
"hide-selected",
|
|
840
|
+
"hide-spin-buttons",
|
|
825
841
|
"hint",
|
|
826
842
|
"id",
|
|
827
843
|
"item-color",
|
|
@@ -1129,7 +1145,8 @@
|
|
|
1129
1145
|
"readonly",
|
|
1130
1146
|
"tag",
|
|
1131
1147
|
"tile",
|
|
1132
|
-
"value"
|
|
1148
|
+
"value",
|
|
1149
|
+
"value-comparator"
|
|
1133
1150
|
],
|
|
1134
1151
|
"description": ""
|
|
1135
1152
|
},
|
|
@@ -1184,6 +1201,7 @@
|
|
|
1184
1201
|
"height",
|
|
1185
1202
|
"hide-details",
|
|
1186
1203
|
"hide-input",
|
|
1204
|
+
"hide-spin-buttons",
|
|
1187
1205
|
"hint",
|
|
1188
1206
|
"id",
|
|
1189
1207
|
"label",
|
|
@@ -1306,7 +1324,9 @@
|
|
|
1306
1324
|
"description": ""
|
|
1307
1325
|
},
|
|
1308
1326
|
"v-spacer": {
|
|
1309
|
-
"attributes": [
|
|
1327
|
+
"attributes": [
|
|
1328
|
+
"tag"
|
|
1329
|
+
],
|
|
1310
1330
|
"description": ""
|
|
1311
1331
|
},
|
|
1312
1332
|
"v-layout": {
|
|
@@ -1418,6 +1438,7 @@
|
|
|
1418
1438
|
"error-messages",
|
|
1419
1439
|
"height",
|
|
1420
1440
|
"hide-details",
|
|
1441
|
+
"hide-spin-buttons",
|
|
1421
1442
|
"hint",
|
|
1422
1443
|
"id",
|
|
1423
1444
|
"label",
|
|
@@ -1452,7 +1473,8 @@
|
|
|
1452
1473
|
"max",
|
|
1453
1474
|
"multiple",
|
|
1454
1475
|
"tag",
|
|
1455
|
-
"value"
|
|
1476
|
+
"value",
|
|
1477
|
+
"value-comparator"
|
|
1456
1478
|
],
|
|
1457
1479
|
"description": ""
|
|
1458
1480
|
},
|
|
@@ -1472,19 +1494,27 @@
|
|
|
1472
1494
|
"description": ""
|
|
1473
1495
|
},
|
|
1474
1496
|
"v-list-item-action-text": {
|
|
1475
|
-
"attributes": [
|
|
1497
|
+
"attributes": [
|
|
1498
|
+
"tag"
|
|
1499
|
+
],
|
|
1476
1500
|
"description": ""
|
|
1477
1501
|
},
|
|
1478
1502
|
"v-list-item-content": {
|
|
1479
|
-
"attributes": [
|
|
1503
|
+
"attributes": [
|
|
1504
|
+
"tag"
|
|
1505
|
+
],
|
|
1480
1506
|
"description": ""
|
|
1481
1507
|
},
|
|
1482
1508
|
"v-list-item-title": {
|
|
1483
|
-
"attributes": [
|
|
1509
|
+
"attributes": [
|
|
1510
|
+
"tag"
|
|
1511
|
+
],
|
|
1484
1512
|
"description": ""
|
|
1485
1513
|
},
|
|
1486
1514
|
"v-list-item-subtitle": {
|
|
1487
|
-
"attributes": [
|
|
1515
|
+
"attributes": [
|
|
1516
|
+
"tag"
|
|
1517
|
+
],
|
|
1488
1518
|
"description": ""
|
|
1489
1519
|
},
|
|
1490
1520
|
"v-list": {
|
|
@@ -1596,7 +1626,8 @@
|
|
|
1596
1626
|
"max",
|
|
1597
1627
|
"multiple",
|
|
1598
1628
|
"tag",
|
|
1599
|
-
"value"
|
|
1629
|
+
"value",
|
|
1630
|
+
"value-comparator"
|
|
1600
1631
|
],
|
|
1601
1632
|
"description": ""
|
|
1602
1633
|
},
|
|
@@ -1687,6 +1718,20 @@
|
|
|
1687
1718
|
],
|
|
1688
1719
|
"description": ""
|
|
1689
1720
|
},
|
|
1721
|
+
"v-otp-input": {
|
|
1722
|
+
"attributes": [
|
|
1723
|
+
"dark",
|
|
1724
|
+
"disabled",
|
|
1725
|
+
"hide-spin-buttons",
|
|
1726
|
+
"id",
|
|
1727
|
+
"length",
|
|
1728
|
+
"plain",
|
|
1729
|
+
"readonly",
|
|
1730
|
+
"type",
|
|
1731
|
+
"value"
|
|
1732
|
+
],
|
|
1733
|
+
"description": ""
|
|
1734
|
+
},
|
|
1690
1735
|
"v-overflow-btn": {
|
|
1691
1736
|
"attributes": [
|
|
1692
1737
|
"allow-overflow",
|
|
@@ -1721,6 +1766,7 @@
|
|
|
1721
1766
|
"hide-details",
|
|
1722
1767
|
"hide-no-data",
|
|
1723
1768
|
"hide-selected",
|
|
1769
|
+
"hide-spin-buttons",
|
|
1724
1770
|
"hint",
|
|
1725
1771
|
"id",
|
|
1726
1772
|
"item-color",
|
|
@@ -1877,6 +1923,7 @@
|
|
|
1877
1923
|
"error-count",
|
|
1878
1924
|
"error-messages",
|
|
1879
1925
|
"hide-details",
|
|
1926
|
+
"hide-spin-buttons",
|
|
1880
1927
|
"hint",
|
|
1881
1928
|
"id",
|
|
1882
1929
|
"label",
|
|
@@ -1931,6 +1978,7 @@
|
|
|
1931
1978
|
"error-messages",
|
|
1932
1979
|
"height",
|
|
1933
1980
|
"hide-details",
|
|
1981
|
+
"hide-spin-buttons",
|
|
1934
1982
|
"hint",
|
|
1935
1983
|
"id",
|
|
1936
1984
|
"inverse-label",
|
|
@@ -2032,6 +2080,7 @@
|
|
|
2032
2080
|
"height",
|
|
2033
2081
|
"hide-details",
|
|
2034
2082
|
"hide-selected",
|
|
2083
|
+
"hide-spin-buttons",
|
|
2035
2084
|
"hint",
|
|
2036
2085
|
"id",
|
|
2037
2086
|
"item-color",
|
|
@@ -2108,6 +2157,7 @@
|
|
|
2108
2157
|
"error-messages",
|
|
2109
2158
|
"height",
|
|
2110
2159
|
"hide-details",
|
|
2160
|
+
"hide-spin-buttons",
|
|
2111
2161
|
"hint",
|
|
2112
2162
|
"id",
|
|
2113
2163
|
"inverse-label",
|
|
@@ -2153,7 +2203,8 @@
|
|
|
2153
2203
|
"prev-icon",
|
|
2154
2204
|
"show-arrows",
|
|
2155
2205
|
"tag",
|
|
2156
|
-
"value"
|
|
2206
|
+
"value",
|
|
2207
|
+
"value-comparator"
|
|
2157
2208
|
],
|
|
2158
2209
|
"description": ""
|
|
2159
2210
|
},
|
|
@@ -2284,11 +2335,15 @@
|
|
|
2284
2335
|
"description": ""
|
|
2285
2336
|
},
|
|
2286
2337
|
"v-stepper-header": {
|
|
2287
|
-
"attributes": [
|
|
2338
|
+
"attributes": [
|
|
2339
|
+
"tag"
|
|
2340
|
+
],
|
|
2288
2341
|
"description": ""
|
|
2289
2342
|
},
|
|
2290
2343
|
"v-stepper-items": {
|
|
2291
|
-
"attributes": [
|
|
2344
|
+
"attributes": [
|
|
2345
|
+
"tag"
|
|
2346
|
+
],
|
|
2292
2347
|
"description": ""
|
|
2293
2348
|
},
|
|
2294
2349
|
"v-subheader": {
|
|
@@ -2313,6 +2368,7 @@
|
|
|
2313
2368
|
"false-value",
|
|
2314
2369
|
"flat",
|
|
2315
2370
|
"hide-details",
|
|
2371
|
+
"hide-spin-buttons",
|
|
2316
2372
|
"hint",
|
|
2317
2373
|
"id",
|
|
2318
2374
|
"input-value",
|
|
@@ -2429,6 +2485,7 @@
|
|
|
2429
2485
|
"touch",
|
|
2430
2486
|
"touchless",
|
|
2431
2487
|
"value",
|
|
2488
|
+
"value-comparator",
|
|
2432
2489
|
"vertical"
|
|
2433
2490
|
],
|
|
2434
2491
|
"description": ""
|
|
@@ -2462,6 +2519,7 @@
|
|
|
2462
2519
|
"full-width",
|
|
2463
2520
|
"height",
|
|
2464
2521
|
"hide-details",
|
|
2522
|
+
"hide-spin-buttons",
|
|
2465
2523
|
"hint",
|
|
2466
2524
|
"id",
|
|
2467
2525
|
"label",
|
|
@@ -2518,6 +2576,7 @@
|
|
|
2518
2576
|
"full-width",
|
|
2519
2577
|
"height",
|
|
2520
2578
|
"hide-details",
|
|
2579
|
+
"hide-spin-buttons",
|
|
2521
2580
|
"hint",
|
|
2522
2581
|
"id",
|
|
2523
2582
|
"label",
|
|
@@ -2642,11 +2701,15 @@
|
|
|
2642
2701
|
"description": ""
|
|
2643
2702
|
},
|
|
2644
2703
|
"v-toolbar-items": {
|
|
2645
|
-
"attributes": [
|
|
2704
|
+
"attributes": [
|
|
2705
|
+
"tag"
|
|
2706
|
+
],
|
|
2646
2707
|
"description": ""
|
|
2647
2708
|
},
|
|
2648
2709
|
"v-toolbar-title": {
|
|
2649
|
-
"attributes": [
|
|
2710
|
+
"attributes": [
|
|
2711
|
+
"tag"
|
|
2712
|
+
],
|
|
2650
2713
|
"description": ""
|
|
2651
2714
|
},
|
|
2652
2715
|
"v-tooltip": {
|
|
@@ -2694,6 +2757,8 @@
|
|
|
2694
2757
|
"color",
|
|
2695
2758
|
"dark",
|
|
2696
2759
|
"dense",
|
|
2760
|
+
"disable-per-node",
|
|
2761
|
+
"disabled",
|
|
2697
2762
|
"expand-icon",
|
|
2698
2763
|
"filter",
|
|
2699
2764
|
"hoverable",
|
|
@@ -2753,6 +2818,7 @@
|
|
|
2753
2818
|
"touch",
|
|
2754
2819
|
"touchless",
|
|
2755
2820
|
"value",
|
|
2821
|
+
"value-comparator",
|
|
2756
2822
|
"vertical"
|
|
2757
2823
|
],
|
|
2758
2824
|
"description": ""
|