buefy 0.9.26 → 0.9.27

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 (243) hide show
  1. package/dist/buefy.css +15901 -0
  2. package/dist/buefy.esm.js +17790 -0
  3. package/dist/buefy.esm.min.js +2 -0
  4. package/dist/buefy.js +17874 -0
  5. package/dist/buefy.min.css +1 -0
  6. package/dist/buefy.min.js +2 -0
  7. package/dist/cjs/Autocomplete-7dd9916f.js +667 -0
  8. package/dist/cjs/Button-01827709.js +114 -0
  9. package/dist/cjs/CheckRadioMixin-c910f2ed.js +45 -0
  10. package/dist/cjs/Checkbox-43f54cc7.js +70 -0
  11. package/dist/cjs/Datepicker-1a1a1e3f.js +1679 -0
  12. package/dist/cjs/DropdownItem-697c9f73.js +513 -0
  13. package/dist/cjs/Field-4557b10c.js +315 -0
  14. package/dist/cjs/FormElementMixin-193a88b8.js +163 -0
  15. package/dist/cjs/Icon-78961800.js +189 -0
  16. package/dist/cjs/Image-b861cedc.js +299 -0
  17. package/dist/cjs/InjectedChildMixin-d6bf7f91.js +135 -0
  18. package/dist/cjs/Input-b2ccdc17.js +248 -0
  19. package/dist/cjs/Loading-08f0610f.js +150 -0
  20. package/dist/cjs/MessageMixin-8d959514.js +146 -0
  21. package/dist/cjs/Modal-4cf07210.js +278 -0
  22. package/dist/cjs/NoticeMixin-01121bd2.js +154 -0
  23. package/dist/cjs/Pagination-24ef0ec2.js +413 -0
  24. package/dist/cjs/Select-2b3879bc.js +100 -0
  25. package/dist/cjs/SlotComponent-4fb48389.js +53 -0
  26. package/dist/cjs/TabbedChildMixin-907cad32.js +222 -0
  27. package/dist/cjs/Tag-3596c6ec.js +154 -0
  28. package/dist/cjs/Timepicker-97ff2e5c.js +67 -0
  29. package/dist/cjs/TimepickerMixin-6c1a4ab4.js +661 -0
  30. package/dist/cjs/Tooltip-33a6f529.js +363 -0
  31. package/dist/cjs/_rollupPluginBabelHelpers-8b2e54ad.js +365 -0
  32. package/dist/cjs/autocomplete.js +22 -0
  33. package/dist/cjs/breadcrumb.js +139 -0
  34. package/dist/cjs/button.js +20 -0
  35. package/dist/cjs/carousel.js +662 -0
  36. package/dist/cjs/checkbox.js +86 -0
  37. package/dist/cjs/clockpicker.js +461 -0
  38. package/dist/cjs/collapse.js +128 -0
  39. package/dist/cjs/colorpicker.js +23 -0
  40. package/dist/cjs/config-8cfb5a4a.js +81 -0
  41. package/dist/cjs/config.js +18 -0
  42. package/dist/cjs/datepicker.js +27 -0
  43. package/dist/cjs/datetimepicker.js +377 -0
  44. package/dist/cjs/dialog.js +308 -0
  45. package/dist/cjs/dropdown.js +23 -0
  46. package/dist/cjs/field.js +18 -0
  47. package/dist/cjs/helpers.js +375 -0
  48. package/dist/cjs/icon.js +19 -0
  49. package/dist/cjs/image.js +19 -0
  50. package/dist/cjs/index-94e5f8a7.js +1631 -0
  51. package/dist/cjs/index.js +216 -0
  52. package/dist/cjs/input.js +21 -0
  53. package/dist/cjs/loading.js +38 -0
  54. package/dist/cjs/menu.js +304 -0
  55. package/dist/cjs/message.js +67 -0
  56. package/dist/cjs/modal.js +59 -0
  57. package/dist/cjs/navbar.js +679 -0
  58. package/dist/cjs/notification.js +181 -0
  59. package/dist/cjs/numberinput.js +275 -0
  60. package/dist/cjs/pagination.js +22 -0
  61. package/dist/cjs/plugins-7f41b028.js +94 -0
  62. package/dist/cjs/progress.js +239 -0
  63. package/dist/cjs/radio.js +130 -0
  64. package/dist/cjs/rate.js +156 -0
  65. package/dist/cjs/select.js +21 -0
  66. package/dist/cjs/sidebar.js +302 -0
  67. package/dist/cjs/skeleton.js +111 -0
  68. package/dist/cjs/slider.js +591 -0
  69. package/dist/cjs/snackbar.js +132 -0
  70. package/dist/cjs/ssr-20dba236.js +10 -0
  71. package/dist/cjs/steps.js +278 -0
  72. package/dist/cjs/switch.js +139 -0
  73. package/dist/cjs/table.js +1683 -0
  74. package/dist/cjs/tabs.js +214 -0
  75. package/dist/cjs/tag.js +70 -0
  76. package/dist/cjs/taginput.js +327 -0
  77. package/dist/cjs/timepicker.js +28 -0
  78. package/dist/cjs/toast.js +106 -0
  79. package/dist/cjs/tooltip.js +19 -0
  80. package/dist/cjs/trapFocus-261420b0.js +49 -0
  81. package/dist/cjs/upload.js +205 -0
  82. package/dist/components/autocomplete/index.js +1614 -0
  83. package/dist/components/autocomplete/index.min.js +2 -0
  84. package/dist/components/breadcrumb/index.js +297 -0
  85. package/dist/components/breadcrumb/index.min.js +2 -0
  86. package/dist/components/button/index.js +569 -0
  87. package/dist/components/button/index.min.js +2 -0
  88. package/dist/components/carousel/index.js +1629 -0
  89. package/dist/components/carousel/index.min.js +2 -0
  90. package/dist/components/checkbox/index.js +279 -0
  91. package/dist/components/checkbox/index.min.js +2 -0
  92. package/dist/components/clockpicker/index.js +3085 -0
  93. package/dist/components/clockpicker/index.min.js +2 -0
  94. package/dist/components/collapse/index.js +217 -0
  95. package/dist/components/collapse/index.min.js +2 -0
  96. package/dist/components/colorpicker/index.js +4194 -0
  97. package/dist/components/colorpicker/index.min.js +2 -0
  98. package/dist/components/datepicker/index.js +3799 -0
  99. package/dist/components/datepicker/index.min.js +2 -0
  100. package/dist/components/datetimepicker/index.js +4856 -0
  101. package/dist/components/datetimepicker/index.min.js +2 -0
  102. package/dist/components/dialog/index.js +1168 -0
  103. package/dist/components/dialog/index.min.js +2 -0
  104. package/dist/components/dropdown/index.js +997 -0
  105. package/dist/components/dropdown/index.min.js +2 -0
  106. package/dist/components/field/index.js +511 -0
  107. package/dist/components/field/index.min.js +2 -0
  108. package/dist/components/icon/index.js +463 -0
  109. package/dist/components/icon/index.min.js +2 -0
  110. package/dist/components/image/index.js +513 -0
  111. package/dist/components/image/index.min.js +2 -0
  112. package/dist/components/input/index.js +862 -0
  113. package/dist/components/input/index.min.js +2 -0
  114. package/dist/components/loading/index.js +366 -0
  115. package/dist/components/loading/index.min.js +2 -0
  116. package/dist/components/menu/index.js +748 -0
  117. package/dist/components/menu/index.min.js +2 -0
  118. package/dist/components/message/index.js +650 -0
  119. package/dist/components/message/index.min.js +2 -0
  120. package/dist/components/modal/index.js +624 -0
  121. package/dist/components/modal/index.min.js +2 -0
  122. package/dist/components/navbar/index.js +805 -0
  123. package/dist/components/navbar/index.min.js +2 -0
  124. package/dist/components/notification/index.js +923 -0
  125. package/dist/components/notification/index.min.js +2 -0
  126. package/dist/components/numberinput/index.js +1116 -0
  127. package/dist/components/numberinput/index.min.js +2 -0
  128. package/dist/components/pagination/index.js +868 -0
  129. package/dist/components/pagination/index.min.js +2 -0
  130. package/dist/components/progress/index.js +621 -0
  131. package/dist/components/progress/index.min.js +2 -0
  132. package/dist/components/radio/index.js +260 -0
  133. package/dist/components/radio/index.min.js +2 -0
  134. package/dist/components/rate/index.js +600 -0
  135. package/dist/components/rate/index.min.js +2 -0
  136. package/dist/components/select/index.js +715 -0
  137. package/dist/components/select/index.min.js +2 -0
  138. package/dist/components/sidebar/index.js +466 -0
  139. package/dist/components/sidebar/index.min.js +2 -0
  140. package/dist/components/skeleton/index.js +200 -0
  141. package/dist/components/skeleton/index.min.js +2 -0
  142. package/dist/components/slider/index.js +1245 -0
  143. package/dist/components/slider/index.min.js +2 -0
  144. package/dist/components/snackbar/index.js +527 -0
  145. package/dist/components/snackbar/index.min.js +2 -0
  146. package/dist/components/steps/index.js +1180 -0
  147. package/dist/components/steps/index.min.js +2 -0
  148. package/dist/components/switch/index.js +297 -0
  149. package/dist/components/switch/index.min.js +2 -0
  150. package/dist/components/table/index.js +3468 -0
  151. package/dist/components/table/index.min.js +2 -0
  152. package/dist/components/tabs/index.js +1116 -0
  153. package/dist/components/tabs/index.min.js +2 -0
  154. package/dist/components/tag/index.js +307 -0
  155. package/dist/components/tag/index.min.js +2 -0
  156. package/dist/components/taginput/index.js +2094 -0
  157. package/dist/components/taginput/index.min.js +2 -0
  158. package/dist/components/timepicker/index.js +2797 -0
  159. package/dist/components/timepicker/index.min.js +2 -0
  160. package/dist/components/toast/index.js +501 -0
  161. package/dist/components/toast/index.min.js +2 -0
  162. package/dist/components/tooltip/index.js +623 -0
  163. package/dist/components/tooltip/index.min.js +2 -0
  164. package/dist/components/upload/index.js +525 -0
  165. package/dist/components/upload/index.min.js +2 -0
  166. package/dist/esm/Autocomplete-8ac1a090.js +665 -0
  167. package/dist/esm/Button-521f6efc.js +112 -0
  168. package/dist/esm/CheckRadioMixin-e726a83c.js +43 -0
  169. package/dist/esm/Checkbox-1d02686e.js +68 -0
  170. package/dist/esm/Datepicker-f6d7e487.js +1677 -0
  171. package/dist/esm/DropdownItem-05c52fa0.js +510 -0
  172. package/dist/esm/Field-3ceba31e.js +313 -0
  173. package/dist/esm/FormElementMixin-b223d3c7.js +161 -0
  174. package/dist/esm/Icon-60d47b31.js +187 -0
  175. package/dist/esm/Image-ca342559.js +297 -0
  176. package/dist/esm/InjectedChildMixin-b4220787.js +130 -0
  177. package/dist/esm/Input-7eac11ee.js +246 -0
  178. package/dist/esm/Loading-fbd44986.js +148 -0
  179. package/dist/esm/MessageMixin-d577a9f5.js +144 -0
  180. package/dist/esm/Modal-7da7641f.js +276 -0
  181. package/dist/esm/NoticeMixin-bd6f61d9.js +152 -0
  182. package/dist/esm/Pagination-004abfb8.js +409 -0
  183. package/dist/esm/Select-97781d4e.js +98 -0
  184. package/dist/esm/SlotComponent-8871a20f.js +51 -0
  185. package/dist/esm/TabbedChildMixin-bcb13767.js +219 -0
  186. package/dist/esm/Tag-bdeaedf1.js +152 -0
  187. package/dist/esm/Timepicker-84b02a83.js +65 -0
  188. package/dist/esm/TimepickerMixin-d736b0a9.js +659 -0
  189. package/dist/esm/Tooltip-32da8a18.js +361 -0
  190. package/dist/esm/_rollupPluginBabelHelpers-df313029.js +350 -0
  191. package/dist/esm/autocomplete.js +18 -0
  192. package/dist/esm/breadcrumb.js +133 -0
  193. package/dist/esm/button.js +16 -0
  194. package/dist/esm/carousel.js +655 -0
  195. package/dist/esm/checkbox.js +81 -0
  196. package/dist/esm/clockpicker.js +456 -0
  197. package/dist/esm/collapse.js +123 -0
  198. package/dist/esm/colorpicker.js +14 -0
  199. package/dist/esm/config-e7d4b9c2.js +78 -0
  200. package/dist/esm/config.js +14 -0
  201. package/dist/esm/datepicker.js +23 -0
  202. package/dist/esm/datetimepicker.js +372 -0
  203. package/dist/esm/dialog.js +302 -0
  204. package/dist/esm/dropdown.js +18 -0
  205. package/dist/esm/field.js +14 -0
  206. package/dist/esm/helpers.js +348 -0
  207. package/dist/esm/icon.js +15 -0
  208. package/dist/esm/image.js +15 -0
  209. package/dist/esm/index-6ba138ae.js +1627 -0
  210. package/dist/esm/index.js +182 -0
  211. package/dist/esm/input.js +17 -0
  212. package/dist/esm/loading.js +33 -0
  213. package/dist/esm/menu.js +297 -0
  214. package/dist/esm/message.js +62 -0
  215. package/dist/esm/modal.js +54 -0
  216. package/dist/esm/navbar.js +672 -0
  217. package/dist/esm/notification.js +175 -0
  218. package/dist/esm/numberinput.js +270 -0
  219. package/dist/esm/pagination.js +17 -0
  220. package/dist/esm/plugins-218aea86.js +89 -0
  221. package/dist/esm/progress.js +233 -0
  222. package/dist/esm/radio.js +124 -0
  223. package/dist/esm/rate.js +151 -0
  224. package/dist/esm/select.js +17 -0
  225. package/dist/esm/sidebar.js +297 -0
  226. package/dist/esm/skeleton.js +106 -0
  227. package/dist/esm/slider.js +585 -0
  228. package/dist/esm/snackbar.js +126 -0
  229. package/dist/esm/ssr-b847d137.js +7 -0
  230. package/dist/esm/steps.js +272 -0
  231. package/dist/esm/switch.js +134 -0
  232. package/dist/esm/table.js +1677 -0
  233. package/dist/esm/tabs.js +208 -0
  234. package/dist/esm/tag.js +65 -0
  235. package/dist/esm/taginput.js +322 -0
  236. package/dist/esm/timepicker.js +24 -0
  237. package/dist/esm/toast.js +100 -0
  238. package/dist/esm/tooltip.js +15 -0
  239. package/dist/esm/trapFocus-f0736873.js +47 -0
  240. package/dist/esm/upload.js +200 -0
  241. package/dist/vetur/attributes.json +3238 -0
  242. package/dist/vetur/tags.json +1183 -0
  243. package/package.json +1 -1
@@ -0,0 +1,1183 @@
1
+ {
2
+ "b-autocomplete": {
3
+ "attributes": [
4
+ "value",
5
+ "data",
6
+ "field",
7
+ "custom-formatter",
8
+ "group-field",
9
+ "group-options",
10
+ "clear-on-select",
11
+ "open-on-focus",
12
+ "keep-first",
13
+ "size",
14
+ "expanded",
15
+ "loading",
16
+ "icon",
17
+ "icon-pack",
18
+ "confirm-keys",
19
+ "clearable",
20
+ "icon-right",
21
+ "maxlength",
22
+ "check-infinite-scroll",
23
+ "max-height",
24
+ "dropdown-position",
25
+ "append-to-body",
26
+ "select-on-click-outside",
27
+ "selectable-header",
28
+ "selectable-footer"
29
+ ],
30
+ "description": "Buefy component <b-autocomplete>",
31
+ "subtags": []
32
+ },
33
+ "b-breadcrumb": {
34
+ "attributes": [
35
+ "align",
36
+ "separator",
37
+ "size"
38
+ ],
39
+ "description": "Buefy component <b-breadcrumb>",
40
+ "subtags": [
41
+ "b-breadcrumb-breadcrumb item"
42
+ ]
43
+ },
44
+ "b-breadcrumb-breadcrumb item": {
45
+ "attributes": [
46
+ "tag",
47
+ "active"
48
+ ],
49
+ "description": "Buefy component <b-breadcrumb-breadcrumb item>",
50
+ "subtags": []
51
+ },
52
+ "b-button": {
53
+ "attributes": [
54
+ "type",
55
+ "size",
56
+ "label",
57
+ "loading",
58
+ "rounded",
59
+ "outlined",
60
+ "focused",
61
+ "inverted",
62
+ "hovered",
63
+ "active",
64
+ "selected",
65
+ "expanded",
66
+ "icon-left",
67
+ "icon-right",
68
+ "icon-pack",
69
+ "native-type",
70
+ "tag"
71
+ ],
72
+ "description": "Buefy component <b-button>",
73
+ "subtags": []
74
+ },
75
+ "b-carousel": {
76
+ "attributes": [
77
+ "value",
78
+ "animated",
79
+ "interval",
80
+ "has-drag",
81
+ "autoplay",
82
+ "pause-hover",
83
+ "pause-info",
84
+ "pause-info-type",
85
+ "pause-text",
86
+ "arrow",
87
+ "arrow-hover",
88
+ "repeat",
89
+ "icon-pack",
90
+ "icon-size",
91
+ "icon-prev",
92
+ "icon-next",
93
+ "indicator",
94
+ "indicator-background",
95
+ "indicator-custom",
96
+ "indicator-custom-size",
97
+ "indicator-inside",
98
+ "indicator-mode",
99
+ "indicator-position",
100
+ "indicator-style",
101
+ "overlay",
102
+ "progress",
103
+ "progress-type",
104
+ "with-carousel-list"
105
+ ],
106
+ "description": "Buefy component <b-carousel>",
107
+ "subtags": [
108
+ "b-carousel-item",
109
+ "b-carousel-list"
110
+ ]
111
+ },
112
+ "b-carousel-item": {
113
+ "attributes": [],
114
+ "description": "Buefy component <b-carousel-item>",
115
+ "subtags": []
116
+ },
117
+ "b-carousel-list": {
118
+ "attributes": [
119
+ "value",
120
+ "data",
121
+ "has-drag",
122
+ "has-grayscale",
123
+ "has-opacity",
124
+ "repeat",
125
+ "items-to-show",
126
+ "items-to-list",
127
+ "as-indicator",
128
+ "refresh",
129
+ "arrow",
130
+ "arrow-hover",
131
+ "icon-pack",
132
+ "icon-size",
133
+ "icon-prev",
134
+ "icon-next"
135
+ ],
136
+ "description": "Buefy component <b-carousel-list>",
137
+ "subtags": []
138
+ },
139
+ "b-checkbox": {
140
+ "attributes": [
141
+ "value",
142
+ "native-value",
143
+ "indeterminate",
144
+ "true-value",
145
+ "false-value",
146
+ "disabled",
147
+ "required",
148
+ "name",
149
+ "size",
150
+ "type",
151
+ "aria-labelledby",
152
+ "input-id"
153
+ ],
154
+ "description": "Buefy component <b-checkbox>",
155
+ "subtags": [
156
+ "b-checkbox-button"
157
+ ]
158
+ },
159
+ "b-checkbox-button": {
160
+ "attributes": [
161
+ "value",
162
+ "native-value",
163
+ "type",
164
+ "disabled",
165
+ "name",
166
+ "size",
167
+ "expanded"
168
+ ],
169
+ "description": "Buefy component <b-checkbox-button>",
170
+ "subtags": []
171
+ },
172
+ "b-clockpicker": {
173
+ "attributes": [
174
+ "value",
175
+ "type",
176
+ "hour-format",
177
+ "increment-minutes",
178
+ "time-formatter",
179
+ "time-parser",
180
+ "min-time",
181
+ "max-time",
182
+ "size",
183
+ "inline",
184
+ "editable",
185
+ "disabled",
186
+ "loading",
187
+ "icon",
188
+ "icon-pack",
189
+ "unselectable-times",
190
+ "mobile-native",
191
+ "mobile-modal",
192
+ "position",
193
+ "auto-switch",
194
+ "open-on-focus",
195
+ "hours-label",
196
+ "minutes-label",
197
+ "append-to-body",
198
+ "locale"
199
+ ],
200
+ "description": "Buefy component <b-clockpicker>",
201
+ "subtags": []
202
+ },
203
+ "b-collapse": {
204
+ "attributes": [
205
+ "open",
206
+ "animation",
207
+ "aria-id",
208
+ "position"
209
+ ],
210
+ "description": "Buefy component <b-collapse>",
211
+ "subtags": []
212
+ },
213
+ "b-colorpicker": {
214
+ "attributes": [
215
+ "value",
216
+ "representation",
217
+ "alpha",
218
+ "color-formatter",
219
+ "color-parser",
220
+ "size",
221
+ "inline",
222
+ "position",
223
+ "open-on-focus",
224
+ "focusable",
225
+ "trap-focus",
226
+ "close-on-click",
227
+ "append-to-body"
228
+ ],
229
+ "description": "Buefy component <b-colorpicker>",
230
+ "subtags": []
231
+ },
232
+ "b-datepicker": {
233
+ "attributes": [
234
+ "value",
235
+ "date-formatter",
236
+ "date-parser",
237
+ "date-creator",
238
+ "min-date",
239
+ "max-date",
240
+ "events",
241
+ "indicators",
242
+ "focused-date",
243
+ "size",
244
+ "inline",
245
+ "editable",
246
+ "loading",
247
+ "icon",
248
+ "icon-right",
249
+ "icon-right-clickable",
250
+ "icon-pack",
251
+ "icon-prev",
252
+ "icon-next",
253
+ "unselectable-dates",
254
+ "unselectable-days-of-week",
255
+ "selectable-dates",
256
+ "locale",
257
+ "month-names",
258
+ "day-names",
259
+ "first-day-of-week",
260
+ "mobile-native",
261
+ "mobile-modal",
262
+ "position",
263
+ "open-on-focus",
264
+ "type",
265
+ "years-range",
266
+ "nearby-month-days",
267
+ "nearby-selectable-month-days",
268
+ "show-week-number",
269
+ "week-number-clickable",
270
+ "rules-for-first-week",
271
+ "range",
272
+ "multiple",
273
+ "focusable",
274
+ "trap-focus",
275
+ "close-on-click",
276
+ "append-to-body",
277
+ "aria-next-label",
278
+ "aria-previous-label"
279
+ ],
280
+ "description": "Buefy component <b-datepicker>",
281
+ "subtags": []
282
+ },
283
+ "b-datetimepicker": {
284
+ "attributes": [
285
+ "value",
286
+ "datetime-formatter",
287
+ "datetime-parser",
288
+ "min-datetime",
289
+ "max-datetime",
290
+ "first-day-of-week",
291
+ "nearby-month-days",
292
+ "size",
293
+ "inline",
294
+ "editable",
295
+ "loading",
296
+ "icon",
297
+ "icon-right",
298
+ "icon-right-clickable",
299
+ "icon-pack",
300
+ "mobile-native",
301
+ "position",
302
+ "open-on-focus",
303
+ "datepicker",
304
+ "timepicker",
305
+ "focusable",
306
+ "horizontal-time-picker",
307
+ "append-to-body",
308
+ "locale"
309
+ ],
310
+ "description": "Buefy component <b-datetimepicker>",
311
+ "subtags": []
312
+ },
313
+ "b-dialog": {
314
+ "attributes": [
315
+ "type",
316
+ "title",
317
+ "message",
318
+ "hasIcon",
319
+ "icon",
320
+ "iconPack",
321
+ "size",
322
+ "animation",
323
+ "confirmText",
324
+ "cancelText",
325
+ "canCancel",
326
+ "inputAttrs",
327
+ "onConfirm",
328
+ "closeOnConfirm",
329
+ "onCancel",
330
+ "scroll",
331
+ "container",
332
+ "focusOn",
333
+ "trap-focus",
334
+ "aria-role",
335
+ "aria-modal"
336
+ ],
337
+ "description": "Buefy component <b-dialog>",
338
+ "subtags": []
339
+ },
340
+ "b-dropdown": {
341
+ "attributes": [
342
+ "value",
343
+ "triggers",
344
+ "position",
345
+ "disabled",
346
+ "animation",
347
+ "inline",
348
+ "mobile-modal",
349
+ "expanded",
350
+ "aria-role",
351
+ "multiple",
352
+ "trap-focus",
353
+ "can-close",
354
+ "close-on-click",
355
+ "append-to-body",
356
+ "scrollable",
357
+ "max-height",
358
+ "trigger-tabindex"
359
+ ],
360
+ "description": "Buefy component <b-dropdown>",
361
+ "subtags": [
362
+ "b-dropdown-item"
363
+ ]
364
+ },
365
+ "b-dropdown-item": {
366
+ "attributes": [
367
+ "value",
368
+ "separator",
369
+ "disabled",
370
+ "focusable",
371
+ "custom",
372
+ "has-link",
373
+ "paddingless",
374
+ "aria-role"
375
+ ],
376
+ "description": "Buefy component <b-dropdown-item>",
377
+ "subtags": []
378
+ },
379
+ "b-field": {
380
+ "attributes": [
381
+ "type",
382
+ "label",
383
+ "label-for",
384
+ "custom-class",
385
+ "message",
386
+ "grouped",
387
+ "group-multiline",
388
+ "position",
389
+ "addons",
390
+ "horizontal",
391
+ "label-position"
392
+ ],
393
+ "description": "Buefy component <b-field>",
394
+ "subtags": []
395
+ },
396
+ "b-icon": {
397
+ "attributes": [
398
+ "type",
399
+ "pack",
400
+ "icon",
401
+ "size",
402
+ "custom-size",
403
+ "custom-class"
404
+ ],
405
+ "description": "Buefy component <b-icon>",
406
+ "subtags": []
407
+ },
408
+ "b-image": {
409
+ "attributes": [
410
+ "src",
411
+ "alt",
412
+ "src-fallback",
413
+ "webp-fallback",
414
+ "lazy",
415
+ "responsive",
416
+ "ratio",
417
+ "placeholder",
418
+ "srcset",
419
+ "srcset-sizes",
420
+ "srcset-formatter",
421
+ "rounded",
422
+ "custom-class"
423
+ ],
424
+ "description": "Buefy component <b-image>",
425
+ "subtags": []
426
+ },
427
+ "b-input": {
428
+ "attributes": [
429
+ "value",
430
+ "lazy",
431
+ "type",
432
+ "size",
433
+ "expanded",
434
+ "password-reveal",
435
+ "loading",
436
+ "icon-pack",
437
+ "icon",
438
+ "icon-right",
439
+ "icon-clickable",
440
+ "icon-right-clickable",
441
+ "maxlength",
442
+ "has-counter",
443
+ "custom-class",
444
+ "validation-message"
445
+ ],
446
+ "description": "Buefy component <b-input>",
447
+ "subtags": []
448
+ },
449
+ "b-loading": {
450
+ "attributes": [
451
+ "active",
452
+ "animation",
453
+ "is-full-page",
454
+ "can-cancel",
455
+ "on-cancel"
456
+ ],
457
+ "description": "Buefy component <b-loading>",
458
+ "subtags": []
459
+ },
460
+ "b-menu": {
461
+ "attributes": [
462
+ "accordion",
463
+ "activable"
464
+ ],
465
+ "description": "Buefy component <b-menu>",
466
+ "subtags": [
467
+ "b-menu-list",
468
+ "b-menu-item"
469
+ ]
470
+ },
471
+ "b-menu-list": {
472
+ "attributes": [
473
+ "label",
474
+ "icon",
475
+ "icon-pack",
476
+ "aria-role"
477
+ ],
478
+ "description": "Buefy component <b-menu-list>",
479
+ "subtags": []
480
+ },
481
+ "b-menu-item": {
482
+ "attributes": [
483
+ "label",
484
+ "icon",
485
+ "icon-pack",
486
+ "disabled",
487
+ "active",
488
+ "expanded",
489
+ "animation",
490
+ "tag",
491
+ "aria-role"
492
+ ],
493
+ "description": "Buefy component <b-menu-item>",
494
+ "subtags": []
495
+ },
496
+ "b-message": {
497
+ "attributes": [
498
+ "type",
499
+ "active",
500
+ "closable",
501
+ "auto-close",
502
+ "duration",
503
+ "progress-bar",
504
+ "icon-pack",
505
+ "has-icon",
506
+ "icon",
507
+ "size",
508
+ "icon-size",
509
+ "title",
510
+ "aria-close-label"
511
+ ],
512
+ "description": "Buefy component <b-message>",
513
+ "subtags": []
514
+ },
515
+ "b-modal": {
516
+ "attributes": [
517
+ "active",
518
+ "component",
519
+ "parent",
520
+ "props",
521
+ "events",
522
+ "content",
523
+ "width",
524
+ "full-screen",
525
+ "has-modal-card",
526
+ "animation",
527
+ "can-cancel",
528
+ "on-cancel",
529
+ "scroll",
530
+ "trap-focus",
531
+ "auto-focus",
532
+ "custom-class",
533
+ "destroy-on-hide",
534
+ "aria-role",
535
+ "aria-label",
536
+ "aria-modal",
537
+ "close-button-aria-label",
538
+ "render-on-mounted"
539
+ ],
540
+ "description": "Buefy component <b-modal>",
541
+ "subtags": []
542
+ },
543
+ "b-navbar": {
544
+ "attributes": [
545
+ "transparent",
546
+ "fixed-top",
547
+ "fixed-bottom",
548
+ "active",
549
+ "centered",
550
+ "type",
551
+ "wrapper-class",
552
+ "close-on-click",
553
+ "mobile-burger",
554
+ "spaced",
555
+ "shadow"
556
+ ],
557
+ "description": "Buefy component <b-navbar>",
558
+ "subtags": [
559
+ "b-navbar-item",
560
+ "b-navbar-dropdown"
561
+ ]
562
+ },
563
+ "b-navbar-item": {
564
+ "attributes": [
565
+ "tag",
566
+ "active"
567
+ ],
568
+ "description": "Buefy component <b-navbar-item>",
569
+ "subtags": []
570
+ },
571
+ "b-navbar-dropdown": {
572
+ "attributes": [
573
+ "tag",
574
+ "hoverable",
575
+ "active",
576
+ "right",
577
+ "arrowless",
578
+ "boxed",
579
+ "collapsible"
580
+ ],
581
+ "description": "Buefy component <b-navbar-dropdown>",
582
+ "subtags": []
583
+ },
584
+ "b-notification": {
585
+ "attributes": [
586
+ "value",
587
+ "type",
588
+ "active",
589
+ "closable",
590
+ "auto-close",
591
+ "duration",
592
+ "progress-bar",
593
+ "animation",
594
+ "icon-pack",
595
+ "has-icon",
596
+ "icon",
597
+ "icon-size",
598
+ "aria-close-label",
599
+ "message",
600
+ "position",
601
+ "queue",
602
+ "indefinite",
603
+ "pause-on-hover",
604
+ "container"
605
+ ],
606
+ "description": "Buefy component <b-notification>",
607
+ "subtags": []
608
+ },
609
+ "b-numberinput": {
610
+ "attributes": [
611
+ "value",
612
+ "type",
613
+ "size",
614
+ "expanded",
615
+ "loading",
616
+ "editable",
617
+ "icon-pack",
618
+ "min",
619
+ "max",
620
+ "step",
621
+ "min-step",
622
+ "exponential",
623
+ "controls",
624
+ "controls-rounded",
625
+ "controls-position",
626
+ "controls-alignment",
627
+ "aria-minus-label",
628
+ "aria-plus-label",
629
+ "long-press"
630
+ ],
631
+ "description": "Buefy component <b-numberinput>",
632
+ "subtags": []
633
+ },
634
+ "b-pagination": {
635
+ "attributes": [
636
+ "total",
637
+ "per-page",
638
+ "range-before",
639
+ "range-after",
640
+ "current",
641
+ "order",
642
+ "size",
643
+ "simple",
644
+ "rounded",
645
+ "icon-pack",
646
+ "icon-prev",
647
+ "icon-next",
648
+ "aria-next-label",
649
+ "aria-previous-label",
650
+ "aria-page-label",
651
+ "aria-current-label",
652
+ "page-input",
653
+ "page-input-position",
654
+ "debounce-page-input"
655
+ ],
656
+ "description": "Buefy component <b-pagination>",
657
+ "subtags": [
658
+ "b-pagination-button"
659
+ ]
660
+ },
661
+ "b-pagination-button": {
662
+ "attributes": [
663
+ "page",
664
+ "tag"
665
+ ],
666
+ "description": "Buefy component <b-pagination-button>",
667
+ "subtags": []
668
+ },
669
+ "b-progress": {
670
+ "attributes": [
671
+ "type",
672
+ "size",
673
+ "rounded",
674
+ "value",
675
+ "max",
676
+ "show-value",
677
+ "format",
678
+ "precision",
679
+ "keep-trailing-zeroes",
680
+ "locale"
681
+ ],
682
+ "description": "Buefy component <b-progress>",
683
+ "subtags": [
684
+ "b-progress-bar"
685
+ ]
686
+ },
687
+ "b-progress-bar": {
688
+ "attributes": [
689
+ "type",
690
+ "value",
691
+ "show-value"
692
+ ],
693
+ "description": "Buefy component <b-progress-bar>",
694
+ "subtags": []
695
+ },
696
+ "b-radio": {
697
+ "attributes": [
698
+ "value",
699
+ "native-value",
700
+ "disabled",
701
+ "required",
702
+ "name",
703
+ "size",
704
+ "type"
705
+ ],
706
+ "description": "Buefy component <b-radio>",
707
+ "subtags": [
708
+ "b-radio-button"
709
+ ]
710
+ },
711
+ "b-radio-button": {
712
+ "attributes": [
713
+ "value",
714
+ "native-value",
715
+ "type",
716
+ "disabled",
717
+ "name",
718
+ "size",
719
+ "expanded"
720
+ ],
721
+ "description": "Buefy component <b-radio-button>",
722
+ "subtags": []
723
+ },
724
+ "b-rate": {
725
+ "attributes": [
726
+ "value",
727
+ "max",
728
+ "icon",
729
+ "icon-pack",
730
+ "size",
731
+ "rtl",
732
+ "spaced",
733
+ "disabled",
734
+ "show-score",
735
+ "show-text",
736
+ "custom-text",
737
+ "texts",
738
+ "locale"
739
+ ],
740
+ "description": "Buefy component <b-rate>",
741
+ "subtags": []
742
+ },
743
+ "b-select": {
744
+ "attributes": [
745
+ "value",
746
+ "size",
747
+ "placeholder",
748
+ "loading",
749
+ "expanded",
750
+ "icon",
751
+ "icon-pack",
752
+ "native-size"
753
+ ],
754
+ "description": "Buefy component <b-select>",
755
+ "subtags": []
756
+ },
757
+ "b-sidebar": {
758
+ "attributes": [
759
+ "open",
760
+ "position",
761
+ "type",
762
+ "can-cancel",
763
+ "on-cancel",
764
+ "fullwidth",
765
+ "fullheight",
766
+ "mobile",
767
+ "right",
768
+ "overlay",
769
+ "expand-on-hover",
770
+ "expand-on-hover-fixed",
771
+ "reduce",
772
+ "scroll",
773
+ "delay"
774
+ ],
775
+ "description": "Buefy component <b-sidebar>",
776
+ "subtags": []
777
+ },
778
+ "b-skeleton": {
779
+ "attributes": [
780
+ "active",
781
+ "animated",
782
+ "rounded",
783
+ "size",
784
+ "width",
785
+ "height",
786
+ "circle",
787
+ "count",
788
+ "position"
789
+ ],
790
+ "description": "Buefy component <b-skeleton>",
791
+ "subtags": []
792
+ },
793
+ "b-slider": {
794
+ "attributes": [
795
+ "value",
796
+ "min",
797
+ "max",
798
+ "step",
799
+ "type",
800
+ "size",
801
+ "ticks",
802
+ "tooltip",
803
+ "indicator",
804
+ "tooltip-type",
805
+ "rounded",
806
+ "disabled",
807
+ "custom-formatter",
808
+ "format",
809
+ "locale",
810
+ "aria-label",
811
+ "bigger-slider-focus",
812
+ "tooltip-always"
813
+ ],
814
+ "description": "Buefy component <b-slider>",
815
+ "subtags": [
816
+ "b-slider-slidertick"
817
+ ]
818
+ },
819
+ "b-slider-slidertick": {
820
+ "attributes": [
821
+ "value"
822
+ ],
823
+ "description": "Buefy component <b-slider-slidertick>",
824
+ "subtags": []
825
+ },
826
+ "b-snackbar": {
827
+ "attributes": [
828
+ "type",
829
+ "message",
830
+ "position",
831
+ "duration",
832
+ "queue",
833
+ "indefinite",
834
+ "pause-on-hover",
835
+ "container",
836
+ "actionText",
837
+ "onAction",
838
+ "cancelText"
839
+ ],
840
+ "description": "Buefy component <b-snackbar>",
841
+ "subtags": []
842
+ },
843
+ "b-steps": {
844
+ "attributes": [
845
+ "value",
846
+ "animated",
847
+ "animateInitially",
848
+ "animation",
849
+ "type",
850
+ "size",
851
+ "destroy-on-hide",
852
+ "icon-pack",
853
+ "icon-prev",
854
+ "icon-next",
855
+ "has-navigation",
856
+ "vertical",
857
+ "position",
858
+ "label-position",
859
+ "rounded",
860
+ "mobile-mode",
861
+ "aria-page-label",
862
+ "aria-current-label"
863
+ ],
864
+ "description": "Buefy component <b-steps>",
865
+ "subtags": [
866
+ "b-steps-item"
867
+ ]
868
+ },
869
+ "b-steps-item": {
870
+ "attributes": [
871
+ "step",
872
+ "label",
873
+ "value",
874
+ "type",
875
+ "icon",
876
+ "icon-pack",
877
+ "clickable",
878
+ "visible",
879
+ "headerClass"
880
+ ],
881
+ "description": "Buefy component <b-steps-item>",
882
+ "subtags": []
883
+ },
884
+ "b-switch": {
885
+ "attributes": [
886
+ "type",
887
+ "passive-type",
888
+ "value",
889
+ "native-value",
890
+ "true-value",
891
+ "false-value",
892
+ "disabled",
893
+ "name",
894
+ "size",
895
+ "rounded",
896
+ "outlined",
897
+ "aria-labelledby"
898
+ ],
899
+ "description": "Buefy component <b-switch>",
900
+ "subtags": []
901
+ },
902
+ "b-table": {
903
+ "attributes": [
904
+ "data",
905
+ "columns",
906
+ "default-sort",
907
+ "default-sort-direction",
908
+ "sort-icon",
909
+ "sort-icon-size",
910
+ "bordered",
911
+ "striped",
912
+ "narrowed",
913
+ "selected",
914
+ "focusable",
915
+ "hoverable",
916
+ "checkable",
917
+ "checkbox-position",
918
+ "sticky-checkbox",
919
+ "checked-rows",
920
+ "header-checkable",
921
+ "checkbox-type",
922
+ "mobile-cards",
923
+ "backend-sorting",
924
+ "backend-pagination",
925
+ "total",
926
+ "current-page",
927
+ "loading",
928
+ "paginated",
929
+ "pagination-simple",
930
+ "pagination-rounded",
931
+ "pagination-order",
932
+ "pagination-size",
933
+ "pagination-position",
934
+ "per-page",
935
+ "page-input",
936
+ "page-input-position",
937
+ "debounce-page-input",
938
+ "sort-multiple",
939
+ "sort-multiple-data",
940
+ "sort-multiple-key",
941
+ "row-class",
942
+ "detailed",
943
+ "custom-detail-row",
944
+ "show-detail-icon",
945
+ "detail-icon",
946
+ "opened-detailed",
947
+ "has-detailed-visible",
948
+ "detail-key",
949
+ "detail-transition",
950
+ "custom-is-checked",
951
+ "is-row-checkable",
952
+ "is-row-selectable",
953
+ "icon-pack",
954
+ "mobile-sort-placeholder",
955
+ "custom-row-key",
956
+ "draggable",
957
+ "draggable-column",
958
+ "backend-filtering",
959
+ "sticky-header",
960
+ "scrollable",
961
+ "height",
962
+ "filters-event",
963
+ "card-layout",
964
+ "show-header",
965
+ "aria-next-label",
966
+ "aria-previous-label",
967
+ "aria-page-label",
968
+ "aria-current-label",
969
+ "debounce-search"
970
+ ],
971
+ "description": "Buefy component <b-table>",
972
+ "subtags": [
973
+ "b-table-column"
974
+ ]
975
+ },
976
+ "b-table-column": {
977
+ "attributes": [
978
+ "label",
979
+ "custom-key",
980
+ "field",
981
+ "meta",
982
+ "width",
983
+ "numeric",
984
+ "centered",
985
+ "sortable",
986
+ "visible",
987
+ "custom-sort",
988
+ "searchable",
989
+ "custom-search",
990
+ "subheading",
991
+ "sticky",
992
+ "header-selectable",
993
+ "header-class",
994
+ "cell-class",
995
+ "th-attrs",
996
+ "td-attrs"
997
+ ],
998
+ "description": "Buefy component <b-table-column>",
999
+ "subtags": []
1000
+ },
1001
+ "b-tabs": {
1002
+ "attributes": [
1003
+ "value",
1004
+ "expanded",
1005
+ "animated",
1006
+ "animateInitially",
1007
+ "animation",
1008
+ "type",
1009
+ "size",
1010
+ "position",
1011
+ "vertical",
1012
+ "destroy-on-hide",
1013
+ "multiline"
1014
+ ],
1015
+ "description": "Buefy component <b-tabs>",
1016
+ "subtags": [
1017
+ "b-tabs-item"
1018
+ ]
1019
+ },
1020
+ "b-tabs-item": {
1021
+ "attributes": [
1022
+ "label",
1023
+ "value",
1024
+ "icon",
1025
+ "icon-pack",
1026
+ "disabled",
1027
+ "visible",
1028
+ "headerClass"
1029
+ ],
1030
+ "description": "Buefy component <b-tabs-item>",
1031
+ "subtags": []
1032
+ },
1033
+ "b-tag": {
1034
+ "attributes": [
1035
+ "type",
1036
+ "close-type",
1037
+ "size",
1038
+ "rounded",
1039
+ "closable",
1040
+ "attached",
1041
+ "ellipsis",
1042
+ "tabstop",
1043
+ "disabled",
1044
+ "aria-close-label",
1045
+ "icon",
1046
+ "icon-pack",
1047
+ "icon-type",
1048
+ "close-icon",
1049
+ "close-icon-pack",
1050
+ "close-icon-type"
1051
+ ],
1052
+ "description": "Buefy component <b-tag>",
1053
+ "subtags": [
1054
+ "b-tag-taglist"
1055
+ ]
1056
+ },
1057
+ "b-tag-taglist": {
1058
+ "attributes": [
1059
+ "attached"
1060
+ ],
1061
+ "description": "Buefy component <b-tag-taglist>",
1062
+ "subtags": []
1063
+ },
1064
+ "b-taginput": {
1065
+ "attributes": [
1066
+ "value",
1067
+ "maxlength",
1068
+ "maxtags",
1069
+ "has-counter",
1070
+ "type",
1071
+ "closeType",
1072
+ "size",
1073
+ "rounded",
1074
+ "attached",
1075
+ "ellipsis",
1076
+ "closable",
1077
+ "aria-close-label",
1078
+ "field",
1079
+ "autocomplete",
1080
+ "group-field",
1081
+ "group-options",
1082
+ "allow-new",
1083
+ "open-on-focus",
1084
+ "remove-on-keys",
1085
+ "confirm-keys",
1086
+ "on-paste-separators",
1087
+ "before-adding",
1088
+ "allow-duplicates",
1089
+ "create-tag",
1090
+ "readonly",
1091
+ "check-infinite-scroll",
1092
+ "append-to-body"
1093
+ ],
1094
+ "description": "Buefy component <b-taginput>",
1095
+ "subtags": []
1096
+ },
1097
+ "b-timepicker": {
1098
+ "attributes": [
1099
+ "value",
1100
+ "hour-format",
1101
+ "increment-hours",
1102
+ "increment-minutes",
1103
+ "time-formatter",
1104
+ "time-parser",
1105
+ "min-time",
1106
+ "max-time",
1107
+ "size",
1108
+ "inline",
1109
+ "editable",
1110
+ "loading",
1111
+ "icon",
1112
+ "icon-pack",
1113
+ "unselectable-times",
1114
+ "mobile-native",
1115
+ "mobile-modal",
1116
+ "position",
1117
+ "open-on-focus",
1118
+ "enable-seconds",
1119
+ "default-minutes",
1120
+ "default-seconds",
1121
+ "time-creator",
1122
+ "focusable",
1123
+ "append-to-body",
1124
+ "locale",
1125
+ "reset-on-meridian-change"
1126
+ ],
1127
+ "description": "Buefy component <b-timepicker>",
1128
+ "subtags": []
1129
+ },
1130
+ "b-toast": {
1131
+ "attributes": [
1132
+ "type",
1133
+ "message",
1134
+ "position",
1135
+ "duration",
1136
+ "queue",
1137
+ "indefinite",
1138
+ "pause-on-hover",
1139
+ "container"
1140
+ ],
1141
+ "description": "Buefy component <b-toast>",
1142
+ "subtags": []
1143
+ },
1144
+ "b-tooltip": {
1145
+ "attributes": [
1146
+ "type",
1147
+ "active",
1148
+ "auto-close",
1149
+ "label",
1150
+ "triggers",
1151
+ "position",
1152
+ "always",
1153
+ "animated",
1154
+ "square",
1155
+ "dashed",
1156
+ "multilined",
1157
+ "size",
1158
+ "delay",
1159
+ "close-delay",
1160
+ "append-to-body"
1161
+ ],
1162
+ "description": "Buefy component <b-tooltip>",
1163
+ "subtags": []
1164
+ },
1165
+ "b-upload": {
1166
+ "attributes": [
1167
+ "value",
1168
+ "drag-drop",
1169
+ "type",
1170
+ "disabled",
1171
+ "name",
1172
+ "required",
1173
+ "accept",
1174
+ "loading",
1175
+ "multiple",
1176
+ "native",
1177
+ "expanded",
1178
+ "rounded"
1179
+ ],
1180
+ "description": "Buefy component <b-upload>",
1181
+ "subtags": []
1182
+ }
1183
+ }