This repository has been archived by the owner on Apr 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
attributes.json
2410 lines (2410 loc) · 80.7 KB
/
attributes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"b-autocomplete/value": {
"description": "Binding value",
"type": "string|number"
},
"b-autocomplete/data": {
"description": "Options / suggestions",
"type": "array<string>|array<number>|array<object>"
},
"b-autocomplete/field": {
"description": "Property of the object (if data is array of objects) to use as display text, and to keep track of selected option",
"type": "string"
},
"b-autocomplete/custom-formatter": {
"description": "Function to format an option to a string for display in the input as alternative to field prop)",
"type": "function"
},
"b-autocomplete/clear-on-select": {
"description": "Clear input text on select",
"type": "boolean"
},
"b-autocomplete/open-on-focus": {
"description": "Open dropdown list on focus",
"type": "boolean"
},
"b-autocomplete/keep-first": {
"description": "The first option will always be pre-selected (easier to just hit enter or tab)",
"type": "boolean"
},
"b-autocomplete/size": {
"description": "Vertical size of input, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-autocomplete/expanded": {
"description": "Makes input full width when inside a grouped or addon field",
"type": "boolean"
},
"b-autocomplete/loading": {
"description": "Add the loading state to the input",
"type": "boolean"
},
"b-autocomplete/icon": {
"description": "Icon name to be added",
"type": "string"
},
"b-autocomplete/icon-pack": {
"description": "Icon pack to use",
"type": "string"
},
"b-autocomplete/clearable": {
"description": "Add a button to clear the inputed text",
"type": "boolean"
},
"b-autocomplete/maxlength": {
"description": "Same as native maxlength, plus character counter",
"type": "string|number"
},
"b-autocomplete/check-infinite-scroll": {
"description": "Makes the component check if list reached scroll end and emit infinite-scroll event.",
"type": "boolean"
},
"b-autocomplete/max-height": {
"description": "Max height of dropdown content",
"type": "string|number"
},
"b-autocomplete/dropdown-position": {
"description": "Position of dropdown",
"options": ["top", "bottom", "auto"]
},
"b-autocomplete/append-to-body": {
"description": "Append autocomplete content to body",
"type": "boolean"
},
"b-button/type": {
"description": "Type (color) of the control, optional",
"type": "string"
},
"b-button/size": {
"description": "Vertical size of button, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-button/loading": {
"description": "Add the loading state to the button",
"type": "boolean"
},
"b-button/rounded": {
"description": "Rounded style",
"type": "boolean"
},
"b-button/outlined": {
"description": "Outlined style",
"type": "boolean"
},
"b-button/expanded": {
"description": "Button will be expanded (full-width)",
"type": "boolean"
},
"b-button/icon-left": {
"description": "Icon name to show on the left",
"type": "string"
},
"b-button/icon-right": {
"description": "Icon name to show on the right",
"type": "string"
},
"b-button/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-button/native-type": {
"description": "Button type, like native",
"type": "string"
},
"b-button/tag": {
"description": "Button tag name",
"type": "string"
},
"b-carousel/value": {
"description": "Binding value",
"type": "number"
},
"b-carousel/animated": {
"description": "Transition effect",
"options": ["fade", "slide"]
},
"b-carousel/interval": {
"description": "Interval of the autoplay, in milliseconds",
"type": "number"
},
"b-carousel/has-drag": {
"description": "Toggle touch dragging, when touch not detected. auto switch mouse dragging",
"type": "boolean"
},
"b-carousel/autoplay": {
"description": "Whether automatically loop the slides",
"type": "boolean"
},
"b-carousel/pause-hover": {
"description": "Pause carousel when autoplay and mouse enter",
"type": "boolean"
},
"b-carousel/pause-info": {
"description": "Show infomation pause when autoplay and pause-hover",
"type": "boolean"
},
"b-carousel/pause-info-type": {
"description": "Type (color) of the pause-info, optional",
"type": "string"
},
"b-carousel/pause-text": {
"description": "Text when pause",
"type": "string"
},
"b-carousel/arrow": {
"description": "Display the \"next\" and \"prev\" action",
"type": "boolean"
},
"b-carousel/arrow-both": {
"description": "Display the \"next\" and \"prev\" action when first or last item",
"type": "boolean"
},
"b-carousel/arrow-hover": {
"description": "Display the \"next\" and \"prev\" action when hover, but hidden on mobile",
"type": "boolean"
},
"b-carousel/repeat": {
"description": "Controls whether the carousel loops around at the start and end.",
"type": "boolean"
},
"b-carousel/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fab", "fad", "fal"]
},
"b-carousel/icon-size": {
"description": "Arrow icon size, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-carousel/icon-prev": {
"description": "Icon to use for previous arrow",
"type": "string"
},
"b-carousel/icon-next": {
"description": "Icon to use for next arrow",
"type": "string"
},
"b-carousel/indicator": {
"description": "Display the indicator for jumping to specific item",
"type": "boolean"
},
"b-carousel/indicator-background": {
"description": "Added background for indicator",
"type": "boolean"
},
"b-carousel/indicator-custom": {
"description": "use when the image is more than 6 so that the indicator is not too small",
"type": "boolean"
},
"b-carousel/indicator-custom-size": {
"description": "image size on the indicator when the indicator-custom is used",
"options": ["is-small", "is-medium"]
},
"b-carousel/indicator-inside": {
"description": "Display the indicator inside on carousel",
"type": "boolean"
},
"b-carousel/indicator-mode": {
"description": "Trigger for action indicator",
"options": ["click", "hover"]
},
"b-carousel/indicator-position": {
"description": "Position indicator only when indicator-inside",
"options": ["is-bottom", "is-top"]
},
"b-carousel/indicator-style": {
"description": "Style for indicator of carousel",
"options": ["is-boxes", "is-dots", "is-lines"]
},
"b-carousel/overlay": {
"description": "Switch like a gallery",
"type": "boolean"
},
"b-carousel/progress": {
"description": "Display the progress item of carousel",
"type": "boolean"
},
"b-carousel/progress-type": {
"description": "Type (color) of the progress, optional",
"type": "string"
},
"b-carousel/with-carousel-list": {
"description": "use this when indicator custom with b-carousel-list",
"type": "boolean"
},
"b-carousel-list/value": {
"description": "Binding value",
"type": "number"
},
"b-carousel-list/data": {
"description": "Carousel-list data",
"type": "array"
},
"b-carousel-list/config": {
"description": "An object to pass all configs",
"type": "object"
},
"b-carousel-list/has-drag": {
"description": "Toggle touch dragging, when touch not detected. auto switch mouse dragging",
"type": "boolean"
},
"b-carousel-list/has-grayscale": {
"description": "Give a effect grayscale on img",
"type": "boolean"
},
"b-carousel-list/has-opacity": {
"description": "Give a effect opacity on img",
"type": "boolean"
},
"b-carousel-list/repeat": {
"description": "Back to value 0 when item active same with total data",
"type": "boolean"
},
"b-carousel-list/items-to-show": {
"description": "count of items to showed per view (support a decimal).",
"type": "number"
},
"b-carousel-list/items-to-list": {
"description": "count of items to list when use navigation buttons",
"type": "number"
},
"b-carousel-list/as-indicator": {
"description": "Switch mode to indicator for carousel",
"type": "boolean"
},
"b-carousel-list/refresh": {
"description": "Refresh for overlay carousel",
"type": "boolean"
},
"b-carousel-list/arrow": {
"description": "Display the \"next\" or \"prev\" action when first or last item",
"type": "boolean"
},
"b-carousel-list/arrow-hover": {
"description": "Display Arrow action when hover, but hidden on mobile",
"type": "boolean"
},
"b-carousel-list/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fab", "fad", "fal"]
},
"b-carousel-list/icon-size": {
"description": "Arrow icon size, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-carousel-list/icon-prev": {
"description": "Icon to use for previous arrow",
"type": "string"
},
"b-carousel-list/icon-next": {
"description": "Icon to use for next arrow",
"type": "string"
},
"b-checkbox/value": {
"description": "Binding value",
"type": "any"
},
"b-checkbox/native-value": {
"description": "Same as native value",
"type": "any"
},
"b-checkbox/indeterminate": {
"description": "Same as native indeterminate",
"type": "boolean"
},
"b-checkbox/true-value": {
"description": "Overrides the returned value when it's checked",
"type": "any"
},
"b-checkbox/false-value": {
"description": "Overrides the returned value when it's not checked",
"type": "any"
},
"b-checkbox/disabled": {
"description": "Same as native disabled",
"type": "boolean"
},
"b-checkbox/required": {
"description": "Same as native required",
"type": "boolean"
},
"b-checkbox/name": {
"description": "Same as native name",
"type": "string"
},
"b-checkbox/size": {
"description": "Size of the control, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-checkbox/type": {
"description": "Type (color) of the control, optional",
"type": "string"
},
"b-checkbox-button/value": {
"description": "Binding value",
"type": "any"
},
"b-checkbox-button/native-value": {
"description": "Same as native value",
"type": "any"
},
"b-checkbox-button/type": {
"description": "Type (color) of the button <strong>when checked</strong>",
"type": "string"
},
"b-checkbox-button/disabled": {
"description": "Same as native disabled",
"type": "boolean"
},
"b-checkbox-button/name": {
"description": "Same as native name",
"type": "string"
},
"b-checkbox-button/size": {
"description": "Size of the button, optional",
"type": "string"
},
"b-checkbox-button/expanded": {
"description": "Checkbox button will be expanded (full-width)",
"type": "boolean"
},
"b-clockpicker/value": {
"description": "Binding value",
"type": "date"
},
"b-clockpicker/type": {
"description": "Type (color) of the button when checked",
"type": "string"
},
"b-clockpicker/hour-format": {
"description": "Hour format for input and display",
"options": ["12", "24"]
},
"b-clockpicker/time-formatter": {
"description": "Function to format time (Date type) to a string for display in the input",
"type": "function"
},
"b-clockpicker/time-parser": {
"description": "Function to parse string to a time (Date type) for set a time from the input to the component",
"type": "function"
},
"b-clockpicker/min-time": {
"description": "Earliest time available for selection",
"type": "date"
},
"b-clockpicker/max-time": {
"description": "Latest time available for selection",
"type": "date"
},
"b-clockpicker/size": {
"description": "Vertical size of input, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-clockpicker/inline": {
"description": "Clockpicker is shown inline, input is removed",
"type": "boolean"
},
"b-clockpicker/editable": {
"description": "Enable input/typing. Note that you might have to set a custom time parser",
"type": "boolean"
},
"b-clockpicker/disabled": {
"description": "Disables the input field and/or picker",
"type": "boolean"
},
"b-clockpicker/loading": {
"description": "Add the loading state to the input",
"type": "boolean"
},
"b-clockpicker/icon": {
"description": "Icon name to be added",
"type": "boolean"
},
"b-clockpicker/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-clockpicker/unselectable-times": {
"description": "Array of unselectable times (Date object)",
"type": "array"
},
"b-clockpicker/mobile-native": {
"description": "Enable native timepicker on mobile",
"type": "boolean"
},
"b-clockpicker/position": {
"description": "Optional, position of the timepicker relative to the input",
"options": ["is-top-right", "is-top-left", "is-bottom-left"]
},
"b-clockpicker/auto-switch": {
"description": "Automatically switches between hour and minutes selection after click",
"type": "boolean"
},
"b-clockpicker/open-on-focus": {
"description": "Open clockpicker on input focus",
"type": "boolean"
},
"b-clockpicker/hours-label": {
"description": "Label to show on hour button",
"type": "string"
},
"b-clockpicker/minutes-label": {
"description": "Label to show on minutes button",
"type": "string"
},
"b-clockpicker/append-to-body": {
"description": "Append clockpicker calendar to body",
"type": "boolean"
},
"b-collapse/open": {
"description": "Whether collapse is open or not, use the .sync modifier to make it two-way binding",
"type": "boolean"
},
"b-collapse/animation": {
"description": "Custom animation (transition name)",
"type": "string"
},
"b-collapse/aria-id": {
"description": "Id for the container div. Should be used with aria-controls on trigger for better accessibility.",
"type": "string"
},
"b-collapse/position": {
"description": "Trigger position",
"options": ["is-top", "is-bottom"]
},
"b-datepicker/value": {
"description": "Binding value",
"type": "date"
},
"b-datepicker/date-formatter": {
"description": "Function to format date to a string for display in the input",
"type": "function"
},
"b-datepicker/date-parser": {
"description": "Function to parse string to a date for set a date from the input to the component",
"type": "function"
},
"b-datepicker/date-creator": {
"description": "Function used internally to create a new Date instance",
"type": "function"
},
"b-datepicker/min-date": {
"description": "Earliest date available for selection",
"type": "date"
},
"b-datepicker/max-date": {
"description": "Latest date available for selection",
"type": "date"
},
"b-datepicker/events": {
"description": "Dates to display indicators",
"type": "array"
},
"b-datepicker/indicators": {
"description": "Shape to use when showing event indicators",
"options": ["dots", "bars"]
},
"b-datepicker/focused-date": {
"description": "Date that should be initially focused upon",
"type": "date"
},
"b-datepicker/size": {
"description": "Vertical size of input and picker, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-datepicker/inline": {
"description": "Datepicker is shown inline, input is removed",
"type": "boolean"
},
"b-datepicker/editable": {
"description": "Enable input/typing. Note that you might have to set a custom date parser",
"type": "boolean"
},
"b-datepicker/loading": {
"description": "Add the loading state to the input",
"type": "boolean"
},
"b-datepicker/icon": {
"description": "Icon name to be added",
"type": "string"
},
"b-datepicker/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-datepicker/icon-prev": {
"description": "Icon to use for previous month",
"type": "string"
},
"b-datepicker/icon-next": {
"description": "Icon to use for next month",
"type": "string"
},
"b-datepicker/unselectable-dates": {
"description": "Array of unselectable dates",
"type": "array"
},
"b-datepicker/unselectable-days-of-week": {
"description": "Array of unselectable days of week",
"type": "array"
},
"b-datepicker/selectable-dates": {
"description": "Array of selectable dates",
"type": "array"
},
"b-datepicker/month-names": {
"description": "Names of months to display in table header",
"type": "array"
},
"b-datepicker/day-names": {
"description": "Names of days to display in table header",
"type": "array"
},
"b-datepicker/first-day-of-week": {
"description": "First day of week to display in table header",
"type": "number"
},
"b-datepicker/mobile-native": {
"description": "Enable native datepicker on mobile",
"type": "boolean"
},
"b-datepicker/position": {
"description": "Optional, position of the datepicker relative to the input",
"options": ["is-top-right", "is-top-left", "is-bottom-left"]
},
"b-datepicker/open-on-focus": {
"description": "Open datepicker on input focus",
"type": "boolean"
},
"b-datepicker/type": {
"description": "Type of picker",
"options": ["month"]
},
"b-datepicker/years-range": {
"description": "Years range relative to selected year",
"type": "array"
},
"b-datepicker/nearby-month-days": {
"description": "Show/Hide nearby month days (prev and next month)",
"type": "boolean"
},
"b-datepicker/nearby-selectable-month-days": {
"description": "When nearby-month-days, it allows to select/unselect nearby month days",
"type": "boolean"
},
"b-datepicker/show-week-number": {
"description": "Display week number",
"type": "boolean"
},
"b-datepicker/rules-for-first-week": {
"description": "Choose the rule to determinate the first week of Year, 4 for ISO or 1 for other",
"type": "number"
},
"b-datepicker/range": {
"description": "Flag to allow choosing a range of date",
"type": "boolean"
},
"b-datepicker/multiple": {
"description": "Flag to allow choosing multiple dates",
"type": "boolean"
},
"b-datepicker/focusable": {
"description": "Datepicker container can be focused",
"type": "boolean"
},
"b-datepicker/trap-focus": {
"description": "Trap focus inside the datepicker.",
"type": "boolean"
},
"b-datepicker/append-to-body": {
"description": "Append datepicker calendar to body",
"type": "boolean"
},
"b-datepicker/aria-next-label": {
"description": "Accessibility label for the next month button.",
"type": "string"
},
"b-datepicker/aria-previous-label": {
"description": "Accessibility label for the previous month button.",
"type": "string"
},
"b-datetimepicker/value": {
"description": "Binding value",
"type": "date"
},
"b-datetimepicker/datetime-formatter": {
"description": "Function to format datetime (Date type) to a string for display in the input",
"type": "function"
},
"b-datetimepicker/datetime-parser": {
"description": "Function to parse string to a datetime (Date type) for set a datetime from the input to the component",
"type": "function"
},
"b-datetimepicker/min-datetime": {
"description": "Earliest datetime available for selection",
"type": "date"
},
"b-datetimepicker/max-datetime": {
"description": "Latest datetime available for selection",
"type": "date"
},
"b-datetimepicker/size": {
"description": "Vertical size of input and picker, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-datetimepicker/inline": {
"description": "Datimepicker is shown inline, input is removed",
"type": "boolean"
},
"b-datetimepicker/editable": {
"description": "Enable input/typing. Note that you might have to set a custom time parser",
"type": "boolean"
},
"b-datetimepicker/loading": {
"description": "Add the loading state to the input",
"type": "boolean"
},
"b-datetimepicker/icon": {
"description": "Icon name to be added",
"type": "string"
},
"b-datetimepicker/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-datetimepicker/mobile-native": {
"description": "Enable native datetimepicker on mobile",
"type": "boolean"
},
"b-datetimepicker/position": {
"description": "Optional, position of the timepicker relative to the input",
"options": ["is-top-right", "is-top-left", "is-bottom-left"]
},
"b-datetimepicker/open-on-focus": {
"description": "Open timepicker on input focus",
"type": "boolean"
},
"b-datetimepicker/datepicker": {
"description": "Any datepicker props",
"type": "object"
},
"b-datetimepicker/timepicker": {
"description": "Any timepicker props",
"type": "object"
},
"b-datetimepicker/focusable": {
"description": "Datetimepicker container can be focused",
"type": "boolean"
},
"b-datetimepicker/horizontal-time-picker": {
"description": "Changes the time picker layout to a horizontal position",
"type": "boolean"
},
"b-datetimepicker/append-to-body": {
"description": "Append datetimepicker calendar to body",
"type": "boolean"
},
"b-dropdown/value": {
"description": "Binding value",
"type": "any"
},
"b-dropdown/hoverable": {
"description": "Dropdown will be triggered by hover instead of click",
"type": "boolean"
},
"b-dropdown/position": {
"description": "Optional, position of the dropdown relative to the trigger",
"options": ["is-top-right", "is-top-left", "is-bottom-left"]
},
"b-dropdown/disabled": {
"description": "Disables dropdown",
"type": "boolean"
},
"b-dropdown/animation": {
"description": "Custom animation (transition name)",
"type": "string"
},
"b-dropdown/inline": {
"description": "Dropdown content (items) are shown inline, trigger is removed",
"type": "boolean"
},
"b-dropdown/mobile-modal": {
"description": "Dropdown content (items) are shown into a modal on mobile",
"type": "boolean"
},
"b-dropdown/expanded": {
"description": "Dropdown will be expanded (full-width)",
"type": "boolean"
},
"b-dropdown/aria-role": {
"description": "Role attribute to be passed to list container for better accessibility. Use menu only in situations where your dropdown is related to navigation menus.",
"options": ["list", "menu", "dialog"]
},
"b-dropdown/multiple": {
"description": "Allows multiple selections",
"type": "boolean"
},
"b-dropdown/trap-focus": {
"description": "Trap focus inside the dropdown.",
"type": "boolean"
},
"b-dropdown/can-close": {
"description": "Can close dropdown by pressing escape or by clicking outside",
"type": "boolean|array"
},
"b-dropdown/close-on-click": {
"description": "Close dropdown when content is clicked",
"type": "boolean"
},
"b-dropdown/append-to-body": {
"description": "Append dropdown content to body",
"type": "boolean"
},
"b-dropdown-item/value": {
"description": "The value that will be returned on events and v-model",
"type": "any"
},
"b-dropdown-item/separator": {
"description": "Set the item to be a separator",
"type": "boolean"
},
"b-dropdown-item/disabled": {
"description": "Item is disabled",
"type": "boolean"
},
"b-dropdown-item/custom": {
"description": "Item is not a clickable item",
"type": "boolean"
},
"b-dropdown-item/has-link": {
"description": "Use it if your item is an anchor tag or router-link",
"type": "boolean"
},
"b-dropdown-item/paddingless": {
"description": "Remove padding",
"type": "boolean"
},
"b-dropdown-item/aria-role": {
"description": "Role attribute to be passed to list item for better accessibility. Use menuitem only in situations where your dropdown is related to navigation menus.",
"options": ["listitem", "menuitem"]
},
"b-field/type": {
"description": "Type (color) of the field and help message, also adds a matching icon, optional. Used by Input, Select and Autocomplete",
"type": "string"
},
"b-field/label": {
"description": "Field label",
"type": "string"
},
"b-field/label-for": {
"description": "Same as native for set on the label",
"type": "string"
},
"b-field/custom-class": {
"description": "CSS classes to be applied on field label",
"type": "string"
},
"b-field/message": {
"description": "Help message text (can contain HTML).",
"type": "string|object|array<string>|array<object>"
},
"b-field/grouped": {
"description": "Direct child components/elements of Field will be grouped horizontally (see which ones at the top of the page)",
"type": "boolean"
},
"b-field/group-multiline": {
"description": "Allow controls to fill up multiple lines, making it responsive",
"type": "boolean"
},
"b-field/position": {
"description": "Which position should the addons appear, optional",
"type": "string"
},
"b-field/addons": {
"description": "Field automatically attach controls together",
"type": "boolean"
},
"b-field/horizontal": {
"description": "Group label and control on the same line for horizontal forms",
"type": "boolean"
},
"b-field/label-position": {
"description": "Position of label",
"options": ["inside", "on-border"]
},
"b-icon/type": {
"description": "Type (color) of the icon, optional",
"type": "string"
},
"b-icon/pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-icon/icon": {
"description": "Icon name",
"type": "string"
},
"b-icon/size": {
"description": "Icon size, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-icon/custom-size": {
"description": "Overrides icon font size, optional",
"type": "string"
},
"b-icon/custom-class": {
"description": "Add class to icon font, optional",
"type": "string"
},
"b-input/value": {
"description": "Binding value",
"type": "string|number"
},
"b-input/type": {
"description": "Input type, like native",
"type": "string"
},
"b-input/size": {
"description": "Vertical size of input, optional",
"options": ["is-small", "is-medium", "is-large"]
},
"b-input/expanded": {
"description": "Makes input full width when inside a grouped or addon field",
"type": "boolean"
},
"b-input/password-reveal": {
"description": "Add the reveal password functionality",
"type": "boolean"
},
"b-input/loading": {
"description": "Add the loading state to the input",
"type": "boolean"
},
"b-input/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-input/icon": {
"description": "Icon name to be added",
"type": "string"
},
"b-input/icon-right": {
"description": "Icon name to be added on the right side",
"type": "string"
},
"b-input/icon-clickable": {
"description": "Make the icon clickable",
"type": "boolean"
},
"b-input/icon-right-clickable": {
"description": "Make the icon right clickable",
"type": "boolean"
},
"b-input/maxlength": {
"description": "Same as native maxlength, plus character counter",
"type": "string|number"
},
"b-input/has-counter": {
"description": "Show character counter when maxlength prop is passed",
"type": "boolean"
},
"b-input/custom-class": {
"description": "CSS classes to be applied on input",
"type": "string"
},
"b-input/validation-message": {
"description": "The message which is shown when a validation error occurs",
"type": "string"
},
"b-loading/active": {
"description": "Whether modal is active or not, use the .sync modifier to make it two-way binding",
"type": "boolean"
},
"b-loading/animation": {
"description": "Custom animation (transition name)",
"type": "string"
},
"b-loading/is-full-page": {
"description": "Loader will overlay the full page",
"type": "boolean"
},
"b-loading/can-cancel": {
"description": "Can close Loading by pressing escape or clicking outside",
"type": "boolean"
},
"b-loading/on-cancel": {
"description": "Callback function to call after user canceled (pressed escape / clicked outside)",
"type": "function"
},
"b-menu/accordion": {
"description": "Close automatically the previous selected menu list",
"type": "boolean"
},
"b-menu/activable": {
"description": "Active automatically the clicked menu item",
"type": "boolean"
},
"b-menu-list/label": {
"description": "Menu list label",
"type": "string"
},
"b-menu-list/icon": {
"description": "Icon name",
"type": "string"
},
"b-menu-list/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-menu-list/aria-role": {
"description": "Role attribute to be passed to list container for better accessibility. Use menu only in situations where your dropdown is really related to navigation.",
"options": ["menu"]
},
"b-menu-item/label": {
"description": "Menu item label",
"type": "string"
},
"b-menu-item/icon": {
"description": "Icon name",
"type": "string"
},
"b-menu-item/icon-pack": {
"description": "Icon pack to use",
"options": ["mdi", "fa", "fas", "far", "fad", "fal"]
},
"b-menu-item/disabled": {
"description": "Item is disabled",
"type": "boolean"
},
"b-menu-item/active": {
"description": "Item is active, use the .sync modifier to make it two-way binding",
"type": "boolean"
},
"b-menu-item/expanded": {
"description": "Item is expanded when default contains menu items, use the .sync modifier to make it two-way binding",
"type": "boolean"
},
"b-menu-item/animation": {
"description": "Custom animation (transition name)",
"type": "string"
},
"b-menu-item/tag": {
"description": "Button tag name",
"type": "string"
},
"b-menu-item/aria-role": {
"description": "Role attribute to be passed to list item for better accessibility. Use menuitem only in situations where your menu item is really related to navigation.",
"options": ["menuitem"]
},
"b-message/type": {
"description": "Type (color) of the message, optional",
"type": "string"