-
Notifications
You must be signed in to change notification settings - Fork 27
/
vetur-attributes.json
1715 lines (1714 loc) · 64.4 KB
/
vetur-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
{
"nly-link/href": {
"description": "Denotes the target URL of the link for standard a links",
"type": "string"
},
"nly-link/rel": {
"description": "Sets the 'rel' attribute on the rendered link",
"type": "string"
},
"nly-link/target": {
"description": "Sets the 'target' attribute on the rendered link",
"type": "string"
},
"nly-link/active": {
"description": "When set to 'true', places the component in the active state with active styling",
"type": "boolean"
},
"nly-link/disabled": {
"description": "When set to 'true', disables the component's functionality and places it in a disabled state",
"type": "boolean"
},
"nly-link/to": {
"description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object",
"type": "string|object"
},
"nly-link/append": {
"description": "router-link prop: Setting append prop always appends the relative path to the current path",
"type": "boolean"
},
"nly-link/replace": {
"description": "router-link prop: Setting the replace prop will call 'router.replace()' instead of 'router.push()' when clicked, so the navigation will not leave a history record",
"type": "boolean"
},
"nly-link/event": {
"description": "router-link prop: Specify the event that triggers the link. In most cases you should leave this as the default",
"type": "string|any[]"
},
"nly-link/active-class": {
"description": "router-link prop: Configure the active CSS class applied when the link is active. Typically you will want to set this to class name 'active'",
"type": "string"
},
"nly-link/exact": {
"description": "router-link prop: The default active class matching behavior is inclusive match. Setting this prop forces the mode to exactly match the route",
"type": "boolean"
},
"nly-link/exact-active-class": {
"description": "router-link prop: Configure the active CSS class applied when the link is active with exact match. Typically you will want to set this to class name 'active'",
"type": "string"
},
"nly-link/router-tag": {
"description": "router-link prop: Specify which tag to render, and it will still listen to click events for navigation. 'router-tag' translates to the tag prop on the final rendered router-link. Typically you should use the default value",
"type": "string"
},
"nly-link/no-prefetch": {
"description": "nuxt-link prop: To improve the responsiveness of your Nuxt.js applications, when the link will be displayed within the viewport, Nuxt.js will automatically prefetch the code splitted page. Setting 'no-prefetch' will disabled this feature for the specific link",
"type": "boolean"
},
"nly-table/id": {
"description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed",
"type": "string"
},
"nly-table/items": {
"description": "Array of items to display, or an items provider function reference. Refer to the docs for details",
"type": "any[]|function"
},
"nly-table/fields": {
"description": "Array of field names or array of field definition objects",
"type": "any[]"
},
"nly-table/primary-key": {
"description": "Name of a table field that contains a guaranteed unique value per row. Needed for tbody transition support, and also speeds up table rendering",
"type": "string"
},
"nly-table/value": {
"description": "Currently displayed row data. Read-only. Do not set a value on this prop",
"type": "any[]"
},
"nly-table/striped": {
"description": "Applies striping to the tbody rows",
"type": "boolean"
},
"nly-table/bordered": {
"description": "Adds borders to all the cells and headers",
"type": "boolean"
},
"nly-table/borderless": {
"description": "Removes all borders from cells",
"type": "boolean"
},
"nly-table/outlined": {
"description": "Adds an outline border to the table element",
"type": "boolean"
},
"nly-table/dark": {
"description": "Places the table in dark mode",
"type": "boolean"
},
"nly-table/hover": {
"description": "Enables hover styling on rows",
"type": "boolean"
},
"nly-table/small": {
"description": "Renders the table with smaller cell padding",
"type": "boolean"
},
"nly-table/fixed": {
"description": "Makes all columns equal width (fixed layout table). Will speed up rendering for large tables. Column widths can be set via CSS or colgroup",
"type": "boolean"
},
"nly-table/responsive": {
"description": "Makes the table responsive in width, adding a horizontal scrollbar. Set to true for always responsive or set to one of the breakpoints to switch from responsive to normal: 'sm', 'md', 'lg', 'xl'",
"type": "boolean|string"
},
"nly-table/sticky-header": {
"description": "Makes the table header sticky. Set to true for a maximum height 300px tall table, or set to any valid CSS hight (including units)",
"type": "boolean|string"
},
"nly-table/no-border-collapse": {
"description": "Disable's the collapsing of table borders. Useful when table has sticky headers or columns",
"type": "boolean"
},
"nly-table/caption-top": {
"description": "Visually place the table caption above the table. Default is below.",
"type": "boolean"
},
"nly-table/table-variant": {
"description": "Apply a Bootstrap theme color variant to the entire table",
"type": "string"
},
"nly-table/table-class": {
"description": "CSS class (or classes) to apply to the table element",
"type": "string|any[]|object"
},
"nly-table/stacked": {
"description": "Place the table in stacked mode. Set to true for always stacked, or set to one of the breakpoints to switch from stacked to normal: 'sm', 'md', 'lg', 'xl'",
"type": "boolean|string"
},
"nly-table/head-variant": {
"description": "Header variant: 'light' or 'dark', or unset. May take precedence over head-row-variant",
"type": "string"
},
"nly-table/head-row-variant": {
"description": "Apply a Bootstrap theme color variant to the tr element in the thead",
"type": "string"
},
"nly-table/thead-class": {
"description": "CSS class (or classes) to apply to the thead element",
"type": "string|any[]|object"
},
"nly-table/thead-tr-class": {
"description": "CSS class (or classes) to apply to the tr element in the thead",
"type": "string|any[]|object"
},
"nly-table/foot-clone": {
"description": "Enable to the footer of the table, and clone the header content by default",
"type": "boolean"
},
"nly-table/foot-variant": {
"description": "Footer variant: 'light' or 'dark', or unset. May take precedence over foot-row-variant",
"type": "string"
},
"nly-table/foot-row-variant": {
"description": "Apply a Bootstrap theme color variant to the tr element in the tfoot. Falls back to head-row-variant",
"type": "string"
},
"nly-table/tfoot-class": {
"description": "CSS class (or classes) to apply to the tfoot element",
"type": "string|any[]|object"
},
"nly-table/tfoot-tr-class": {
"description": "CSS class (or classes) to apply to the tr element in the tfoot",
"type": "string|any[]|object"
},
"nly-table/tbody-tr-class": {
"description": "CSS class (or classes) to apply to the tr element in the tbody. Can be a function that returns a class (see docs for details)",
"type": "string|any[]|object|function"
},
"nly-table/tbody-tr-attr": {
"description": "Attributes to be added to each tr in the tbody, or a function returning such attributes (see docs for details)",
"type": "object|function"
},
"nly-table/details-td-class": {
"description": "CSS class (or classes) to apply to the td element in the details row",
"type": "string|any[]|object"
},
"nly-table/tbody-transition-props": {
"description": "Vue 'transition-group' properties. When provided will make the tbody a Vue 'transition-group' component",
"type": "object"
},
"nly-table/tbody-transition-handlers": {
"description": "Vue 'transition-group' event handlers. When provided will make the tbody a Vue 'transition-group' component",
"type": "object"
},
"nly-table/tbody-class": {
"description": "CSS class (or classes) to apply to the tbody element",
"type": "string|any[]|object"
},
"nly-table/filter": {
"description": "Criteria for filtering. Internal filtering supports only string or RegExpr criteria.",
"type": "string|RegExp|object|any[]"
},
"nly-table/filter-function": {
"description": "Reference to a function to use instead of the internal filtering function. Refer to the docs for details",
"type": "function"
},
"nly-table/filter-ignored-fields": {
"description": "Array of top level fields to ignore when filtering the item data",
"type": "any[]"
},
"nly-table/filter-included-fields": {
"description": "Array of fields to include when filtering. Overrides filter-ignore-fields",
"type": "any[]"
},
"nly-table/filter-debounce": {
"description": "Time in milliseconds to debounce changes to the filter criteria before filtering the records",
"type": "number|string"
},
"nly-table/sort-by": {
"description": "Field name that is currently being sorted. Set to null to clear sorting. Syncable with the .sync prop modifier",
"type": "string"
},
"nly-table/sort-desc": {
"description": "Set to true to sort the column in descending order. Syncable with the .sync prop modifier",
"type": "boolean"
},
"nly-table/sort-direction": {
"description": "The initial sorting direction to sort an unsorted column by: 'asc', 'desc', or 'last' (to use the previous sort direction)",
"type": "string"
},
"nly-table/sort-compare": {
"description": "A reference to a function for sort-comparing two rows of data. Defaults to the internal sort compare routine. See docs for details",
"type": "function"
},
"nly-table/sort-compare-options": {
"description": "An object containing sort configuration for the 'String.prototype.sortLocale' method. See docs for details",
"type": "object"
},
"nly-table/sort-compare-locale": {
"description": "The locale string (or array of locale string) that specified the language when sorting. See docs for details",
"type": "string|any[]"
},
"nly-table/sort-null-last": {
"description": "When sorting, null and undefined values will be sorted first (or last, depending on 'sort-desc'). Set this prop to sort null values last. Only applicable to internal sorting",
"type": "boolean"
},
"nly-table/no-sort-reset": {
"description": "When a table is sortable, clicking on any non-sortable column heading will clear the current sort values. Set this prop to disable this feature",
"type": "boolean"
},
"nly-table/label-sort-asc": {
"description": "Hidden string to place in the header cell when clicking the cell will change the sort direction to ascending",
"type": "string"
},
"nly-table/label-sort-desc": {
"description": "Hidden string to place in the header cell when clicking the cell will change the sort direction to descending",
"type": "string"
},
"nly-table/label-sort-clear": {
"description": "Hidden string to place in the header cell when clicking the cell will clear the current sorting direction",
"type": "string"
},
"nly-table/no-local-sorting": {
"description": "Disabled the internal sorting routine, and expects the user to provde the items sorted. Sorting controls will still be available",
"type": "boolean"
},
"nly-table/no-footer-sorting": {
"description": "When the build in formatter is used, setting this prop will disable the sorting ability in the footer",
"type": "boolean"
},
"nly-table/sort-icon-left": {
"description": "Positions the sort control to the left of the header text. Default is on the right of the header text",
"type": "boolean"
},
"nly-table/per-page": {
"description": "Number of rows to show per page. Set to 0 to disable pagination",
"type": "number|string"
},
"nly-table/current-page": {
"description": "The current page number to display when the table is paginated. Starting from 1 and up",
"type": "number|string"
},
"nly-table/caption": {
"description": "Text string to place in the caption element",
"type": "string"
},
"nly-table/caption-html": {
"description": "HTML string to place in the caption element. Use with caution",
"type": "string"
},
"nly-table/selectable": {
"description": "When set, places the table body rows in selectable mode",
"type": "boolean"
},
"nly-table/select-mode": {
"description": "The selectable mode for the table when 'selectable' is set. Possible values: 'single', 'multi' or 'range'",
"type": "string"
},
"nly-table/selected-variant": {
"description": "Bootstrap color theme variant to set selected rows to. Use any of the standard Bootstrap theme color variants, or the special table row variant 'active' (default). Set to an empty string to not use a variant",
"type": "string"
},
"nly-table/no-select-on-click": {
"description": "Disables row selection via click events. Row selection will be only available programmatically",
"type": "boolean"
},
"nly-table/show-empty": {
"description": "When enabled, and there are no item records to show, shows a message that there are no rows to show",
"type": "boolean"
},
"nly-table/empty-text": {
"description": "Text string to show when the table has no items to show",
"type": "string"
},
"nly-table/empty-html": {
"description": "HTML string to show when the table has no items to show. Use with caution",
"type": "string"
},
"nly-table/empty-filtered-text": {
"description": "Text string to show when the table has no items to show due to filtering",
"type": "string"
},
"nly-table/empty-filtered-html": {
"description": "HTML string to show when the table has no items to show due to filtering. Use with caution",
"type": "string"
},
"nly-table/busy": {
"description": "When set, forces the table into the busy state.Automatically set when an items provider function is being called",
"type": "boolean"
},
"nly-table/no-provider-paging": {
"description": "When set, uses internal paging to pagination the data. Otherwise the items provider is expected to perform the paging",
"type": "boolean"
},
"nly-table/no-provider-sorting": {
"description": "When set, uses internal sorting to sort the data. Otherwise the items provider is expected to perform the sorting",
"type": "boolean"
},
"nly-table/no-provider-filtering": {
"description": "When set, uses internal filtering to pagination the data. Otherwise the provider is expected to perform the filtering",
"type": "boolean"
},
"nly-table/api-url": {
"description": "Pass through prop. Passed as part of the context object sent to the items provider function",
"type": "string"
},
"nly-table-lite/id": {
"description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed",
"type": "string"
},
"nly-table-lite/items": {
"description": "Array of items to display",
"type": "any[]"
},
"nly-table-lite/fields": {
"description": "Array of field names or array of field definition objects",
"type": "any[]"
},
"nly-table-lite/primary-key": {
"description": "Name of a table field that contains a guaranteed unique value per row. Needed for tbody transition support, and also speeds up table rendering",
"type": "string"
},
"nly-table-lite/value": {
"description": "Currently displayed row data. Read-only. Do not set a value on this prop",
"type": "any[]"
},
"nly-table-lite/striped": {
"description": "Applies striping to the tbody rows",
"type": "boolean"
},
"nly-table-lite/bordered": {
"description": "Adds borders to all the cells and headers",
"type": "boolean"
},
"nly-table-lite/borderless": {
"description": "Removes all borders from cells",
"type": "boolean"
},
"nly-table-lite/outlined": {
"description": "Adds an outline border to the table element",
"type": "boolean"
},
"nly-table-lite/dark": {
"description": "Places the table in dark mode",
"type": "boolean"
},
"nly-table-lite/hover": {
"description": "Enables hover styling on rows",
"type": "boolean"
},
"nly-table-lite/small": {
"description": "Renders the table with smaller cell padding",
"type": "boolean"
},
"nly-table-lite/fixed": {
"description": "Makes all columns equal width (fixed layout table). Will speed up rendering for large tables. Column widths can be set via CSS or colgroup",
"type": "boolean"
},
"nly-table-lite/responsive": {
"description": "Makes the table responsive in width, adding a horizontal scrollbar. Set to true for always responsive or set to one of the breakpoints to switch from responsive to normal: 'sm', 'md', 'lg', 'xl'",
"type": "boolean|string"
},
"nly-table-lite/sticky-header": {
"description": "Makes the table header sticky. Set to true for a maximum height 300px tall table, or set to any valid CSS hight (including units)",
"type": "boolean|string"
},
"nly-table-lite/no-border-collapse": {
"description": "Disable's the collapsing of table borders. Useful when table has sticky headers or columns",
"type": "boolean"
},
"nly-table-lite/caption-top": {
"description": "Visually place the table caption above the table. Default is below.",
"type": "boolean"
},
"nly-table-lite/table-variant": {
"description": "Apply a Bootstrap theme color variant to the entire table",
"type": "string"
},
"nly-table-lite/table-class": {
"description": "CSS class (or classes) to apply to the table element",
"type": "string|any[]|object"
},
"nly-table-lite/stacked": {
"description": "Place the table in stacked mode. Set to true for always stacked, or set to one of the breakpoints to switch from stacked to normal: 'sm', 'md', 'lg', 'xl'",
"type": "boolean|string"
},
"nly-table-lite/head-variant": {
"description": "Header variant: 'light' or 'dark', or unset. May take precedence over head-row-variant",
"type": "string"
},
"nly-table-lite/head-row-variant": {
"description": "Apply a Bootstrap theme color variant to the tr element in the thead",
"type": "string"
},
"nly-table-lite/thead-class": {
"description": "CSS class (or classes) to apply to the thead element",
"type": "string|any[]|object"
},
"nly-table-lite/thead-tr-class": {
"description": "CSS class (or classes) to apply to the tr element in the thead",
"type": "string|any[]|object"
},
"nly-table-lite/foot-clone": {
"description": "Enable to the footer of the table, and clone the header content by default",
"type": "boolean"
},
"nly-table-lite/foot-variant": {
"description": "Footer variant: 'light' or 'dark', or unset. May take precedence over foot-row-variant",
"type": "string"
},
"nly-table-lite/foot-row-variant": {
"description": "Apply a Bootstrap theme color variant to the tr element in the tfoot. Falls back to head-row-variant",
"type": "string"
},
"nly-table-lite/tfoot-class": {
"description": "CSS class (or classes) to apply to the tfoot element",
"type": "string|any[]|object"
},
"nly-table-lite/tfoot-tr-class": {
"description": "CSS class (or classes) to apply to the tr element in the tfoot",
"type": "string|any[]|object"
},
"nly-table-lite/tbody-tr-class": {
"description": "CSS class (or classes) to apply to the tr element in the tbody. Can be a function that returns a class (see docs for details)",
"type": "string|any[]|object|function"
},
"nly-table-lite/tbody-tr-attr": {
"description": "Attributes to be added to each tr in the tbody, or a function returning such attributes (see docs for details)",
"type": "object|function"
},
"nly-table-lite/details-td-class": {
"description": "CSS class (or classes) to apply to the td element in the details row",
"type": "string|any[]|object"
},
"nly-table-lite/tbody-transition-props": {
"description": "Vue 'transition-group' properties. When provided will make the tbody a Vue 'transition-group' component",
"type": "object"
},
"nly-table-lite/tbody-transition-handlers": {
"description": "Vue 'transition-group' event handlers. When provided will make the tbody a Vue 'transition-group' component",
"type": "object"
},
"nly-table-lite/tbody-class": {
"description": "CSS class (or classes) to apply to the tbody element",
"type": "string|any[]|object"
},
"nly-table-lite/caption": {
"description": "Text string to place in the caption element",
"type": "string"
},
"nly-table-lite/caption-html": {
"description": "HTML string to place in the caption element. Use with caution",
"type": "string"
},
"nly-table-simple/id": {
"description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed",
"type": "string"
},
"nly-table-simple/striped": {
"description": "Applies striping to the tbody rows",
"type": "boolean"
},
"nly-table-simple/bordered": {
"description": "Adds borders to all the cells and headers",
"type": "boolean"
},
"nly-table-simple/borderless": {
"description": "Removes all borders from cells",
"type": "boolean"
},
"nly-table-simple/outlined": {
"description": "Adds an outline border to the table element",
"type": "boolean"
},
"nly-table-simple/dark": {
"description": "Places the table in dark mode",
"type": "boolean"
},
"nly-table-simple/hover": {
"description": "Enables hover styling on rows",
"type": "boolean"
},
"nly-table-simple/small": {
"description": "Renders the table with smaller cell padding",
"type": "boolean"
},
"nly-table-simple/fixed": {
"description": "Makes all columns equal width (fixed layout table). Will speed up rendering for large tables. Column widths can be set via CSS or colgroup",
"type": "boolean"
},
"nly-table-simple/responsive": {
"description": "Makes the table responsive in width, adding a horizontal scrollbar. Set to true for always responsive or set to one of the breakpoints to switch from responsive to normal: 'sm', 'md', 'lg', 'xl'",
"type": "boolean|string"
},
"nly-table-simple/sticky-header": {
"description": "Makes the table header sticky. Set to true for a maximum height 300px tall table, or set to any valid CSS hight (including units)",
"type": "boolean|string"
},
"nly-table-simple/no-border-collapse": {
"description": "Disable's the collapsing of table borders. Useful when table has sticky headers or columns",
"type": "boolean"
},
"nly-table-simple/caption-top": {
"description": "Visually place the table caption above the table. Default is below.",
"type": "boolean"
},
"nly-table-simple/table-variant": {
"description": "Apply a Bootstrap theme color variant to the entire table",
"type": "string"
},
"nly-table-simple/table-class": {
"description": "CSS class (or classes) to apply to the table element",
"type": "string|any[]|object"
},
"nly-table-simple/stacked": {
"description": "Place the table in stacked mode. Set to true for always stacked, or set to one of the breakpoints to switch from stacked to normal: 'sm', 'md', 'lg', 'xl'",
"type": "boolean|string"
},
"nly-tbody/tbody-transition-props": {
"description": "Vue 'transition-group' properties. When provided will make the tbody a Vue 'transition-group' component",
"type": "object"
},
"nly-tbody/tbody-transition-handlers": {
"description": "Vue 'transition-group' event handlers. When provided will make the tbody a Vue 'transition-group' component",
"type": "object"
},
"nly-thead/head-variant": {
"description": "Header variant: 'light' or 'dark', or unset",
"type": "string"
},
"nly-tfoot/foot-variant": {
"description": "Footer variant: 'light' or 'dark', or unset",
"type": "string"
},
"nly-tr/variant": {
"description": "Applies one of the Bootstrap theme color variants to the component",
"type": "string"
},
"nly-td/variant": {
"description": "Applies one of the Bootstrap theme color variants to the component",
"type": "string"
},
"nly-td/colspan": {
"description": "Number of columns this cell spans",
"type": "number|string"
},
"nly-td/rowspan": {
"description": "Number of rows this cell spans",
"type": "number|string"
},
"nly-td/stacked-heading": {
"description": "Heading for the cell when in stacked mode. Only applicable to cells in the 'tbody' element",
"type": "string"
},
"nly-td/sticky-column": {
"description": "If this will be a sticky colum. Must be set on all cells in this column. table must be in sticky-header or responsive mode to work",
"type": "boolean"
},
"nly-th/variant": {
"description": "Applies one of the Bootstrap theme color variants to the component",
"type": "string"
},
"nly-th/colspan": {
"description": "Number of columns this cell spans",
"type": "number|string"
},
"nly-th/rowspan": {
"description": "Number of rows this cell spans",
"type": "number|string"
},
"nly-th/stacked-heading": {
"description": "Heading for the cell when in stacked mode. Only applicable to cells in the 'tbody' element",
"type": "string"
},
"nly-th/sticky-column": {
"description": "If this will be a sticky colum. Must be set on all cells in this column. table must be in sticky-header or responsive mode to work",
"type": "boolean"
},
"nly-toast/id": {
"description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed",
"type": "string"
},
"nly-toast/title": {
"description": "The toast's title text",
"type": "string"
},
"nly-toast/toaster": {
"description": "The name of the toaster target to render the toast in",
"type": "string"
},
"nly-toast/visible": {
"description": "When true, shows the toast",
"type": "boolean"
},
"nly-toast/variant": {
"description": "Applies one of the Bootstrap theme color variants to the component",
"type": "string"
},
"nly-toast/is-status": {
"description": "When set to 'true', makes the toast have attributes aria-live=polite and role=status. When 'false' aria-live will be 'assertive' and role will be 'alert'",
"type": "boolean"
},
"nly-toast/append-toast": {
"description": "When true, the toast will be appended to the bottom on the visible toasts, otherwise it will be prepended",
"type": "boolean"
},
"nly-toast/no-auto-hide": {
"description": "When set, disabled the toast from automatically dismissing itself",
"type": "boolean"
},
"nly-toast/auto-hide-delay": {
"description": "The number of milliseconds before the toast auto dismisses itself",
"type": "number|string"
},
"nly-toast/no-close-button": {
"description": "When set, hides the close button in the toast header",
"type": "boolean"
},
"nly-toast/no-fade": {
"description": "When set to 'true', disables the fade animation/transition on the component",
"type": "boolean"
},
"nly-toast/no-hover-pause": {
"description": "When set, disables the pausing of the auto hide delay when the mouse hovers the toast",
"type": "boolean"
},
"nly-toast/solid": {
"description": "When set, renderes the toast with a solid background rather than translucent",
"type": "boolean"
},
"nly-toast/toast-class": {
"description": "CSS class (or classes) to add to the toast wrapper element",
"type": "string|object|any[]"
},
"nly-toast/header-class": {
"description": "CSS class (or classes) to add to the toast header element",
"type": "string|object|any[]"
},
"nly-toast/body-class": {
"description": "CSS class (or classes) to add to the toast body element",
"type": "string|object|any[]"
},
"nly-toast/href": {
"description": "Denotes the target URL of the link for standard a links",
"type": "string"
},
"nly-toast/to": {
"description": "router-link prop: Denotes the target route of the link. When clicked, the value of the to prop will be passed to router.push() internally, so the value can be either a string or a Location descriptor object",
"type": "string|object"
},
"nly-toast/static": {
"description": "Renders the content of the component in-place in the DOM, rather than portalling it to be appended to the body element",
"type": "boolean"
},
"nly-toaster/name": {
"description": "The toaster's target name",
"type": "string"
},
"nly-toaster/aria-live": {
"description": "When the rendered element is an aria-live region (for screen reader users), set to either 'polite' or 'assertive'",
"type": "string"
},
"nly-toaster/aria-atomic": {
"description": "When screen reader's should read out the entire contents (set to string 'true') or just the changes (set to string 'false'). Leave blank for most cases",
"type": "string"
},
"nly-toaster/role": {
"description": "Sets the ARIA attribute 'role' to a specific value",
"type": "string"
},
"nly-tooltip/title": {
"description": "Text to place in the tooltip",
"type": "string"
},
"nly-tooltip/target": {
"description": "Element string ID, or a reference to an element or component, that you want to trigger the tooltip.",
"type": "string|HTMLElement|SVGElement|function|object"
},
"nly-tooltip/triggers": {
"description": "Specify which triggers will show the tooltip. Supported values are 'click', 'hover', 'focus'. Refer to the docs for special triggers 'blur' and 'manual'",
"type": "string|any[]"
},
"nly-tooltip/placement": {
"description": "Placement of the tooltip: One of 'top', 'bottom', 'right', 'left', 'top-left', 'top-right', 'bottom-left', 'bottom-right', 'left-top', 'left-bottom', 'right-top', 'right-bottom'",
"type": "string"
},
"nly-tooltip/fallback-placement": {
"description": "placement to use when the tooltip would be out of boundaries. Refer to the docs for more details",
"type": "string|any[]"
},
"nly-tooltip/variant": {
"description": "Applies one of the Bootstrap theme color variants to the component",
"type": "string"
},
"nly-tooltip/custom-class": {
"description": "CSS class (or classes) to apply to the tooltip's root element",
"type": "string"
},
"nly-tooltip/delay": {
"description": "Value for the show and hide delay. Applies to both show and hide when specified as a number or string. Use object form to set show and hide delays individually",
"type": "number|object|string"
},
"nly-tooltip/boundary": {
"description": "The boundary constraint of the tooltip: 'scrollParent', 'window', 'viewport', or a reference to an HTMLElement or component",
"type": "string|HTMLElement|object"
},
"nly-tooltip/boundary-padding": {
"description": "The tooltip will try and stay away from the edge of the boundary element by the number of pixels specificed",
"type": "number|string"
},
"nly-tooltip/offset": {
"description": "Offset (in pixels) for the arrow center compared to the trigger target element",
"type": "number|string"
},
"nly-tooltip/no-fade": {
"description": "When set to 'true', disables the fade animation/transition on the component",
"type": "boolean"
},
"nly-tooltip/container": {
"description": "The container element to append the rendered tooltip when visible. Default's to the body element",
"type": "string|HTMLElement|object"
},
"nly-tooltip/show": {
"description": "When set will show the tooltip",
"type": "boolean"
},
"nly-tooltip/noninteractive": {
"description": "Wether the tooltip should not be user-interactive",
"type": "boolean"
},
"nly-tooltip/disabled": {
"description": "When set to 'true', disables the component's functionality and places it in a disabled state",
"type": "boolean"
},
"nly-tooltip/id": {
"description": "Used to set the 'id' attribute on the rendered content, and used as the base to generate any additional element IDs as needed",
"type": "string"
},
"nly-badge/size": {
"description": "大小",
"type": "string"
},
"nly-badge/variant": {
"description": "badge-*类颜色",
"type": "string"
},
"nly-badge/bg-variant": {
"description": "bg-*类颜色",
"type": "string"
},
"nly-badge/bg-gradient-variant": {
"description": "bg-gradient-*类颜色,渐变色",
"type": "string"
},
"nly-badge/badge-class": {
"description": "自定义css",
"type": "string"
},
"nly-badge/tag": {
"description": "自定义tag",
"type": "string"
},
"nly-badge/pill": {
"description": "形状,圆角型",
"type": "Boolean"
},
"nly-breadcrumb/item": {
"description": "item元素数组",
"type": "Array"
},
"nly-breadcrumb/breadcrumb-class": {
"description": "自定义css",
"type": "string"
},
"nly-breadcrumb-item/icon": {
"description": "图标icon",
"type": "string"
},
"nly-breadcrumb-item/text": {
"description": "面包屑导航文本",
"type": "string"
},
"nly-breadcrumb-item/href": {
"description": "面包屑导航路由",
"type": "string"
},
"nly-breadcrumb-item/to": {
"description": "面包屑导航路由",
"type": "String, Object"
},
"nly-breadcrumb-item/append": {
"description": "面包屑导航路由模式",
"type": "Boolean"
},
"nly-breadcrumb-item/replace": {
"description": "面包屑导航路由模式",
"type": "Boolean"
},
"nly-breadcrumb-item/active": {
"description": "激活面包屑导航路由",
"type": "Boolean"
},
"nly-breadcrumb-item/target": {
"description": "target属性",
"type": "String"
},
"nly-breadcrumb-item/item-class": {
"description": "面包屑导航item自定义css",
"type": "String"
},
"nly-breadcrumb-item/link-class": {
"description": "面包屑导航link自定义css",
"type": "String"
},
"nly-button/block": {
"description": "按钮block属性,填充整个父div",
"type": "Boolean"
},
"nly-button/variant": {
"description": "按钮颜色 可选 default,primary,secondary,success,info,danger,warning,outlineDefaul,outlinePrimary,outlineSecondary,outlineSuccess,outlineInfo,outlineDanger,outlineWarning。要设置透明,传入null",
"type": "String"
},
"nly-button/gradient": {
"description": "按钮渐变色颜色,和variant只能选择一个。可选primary,secondary,success,info,danger,warning",
"type": "String"
},
"nly-button/bg-variant": {
"description": "背景色,primary,secondary,success,info:,warning,danger,light,dark,lightblue,navy,olive,lime,fuchsia,maroon,blue,indigo,purple,pink,red,orange,yellow,green,teal,cyan,white,gray,graydark",
"type": "String"
},
"nly-button/size": {
"description": "按钮大小,可选lg,sm,sx",
"type": "String"
},
"nly-button/type": {
"description": "按钮类型,可选button,submit",
"type": "String"
},
"nly-button/shape": {
"description": "按钮形状,可选roundedFlat,roundedPill,roundedCircle,roundedLg,roundedSm",
"type": "String"
},
"nly-button/disabled": {
"description": "禁用按钮",
"type": "Boolean"
},
"nly-button/pressed": {
"description": "按钮激活按下效果",
"type": "Boolean"
},
"nly-button/tool": {
"description": "工具类按钮,默认非工具类。此时variant参数在不点击的情况下,只会改变边框颜色。可以使用bg-variant和gradient props改变背景色",
"type": "Boolean"
},
"nly-button/app": {
"description": "app类按钮.一般情况下是对图标使用的按钮。可以将图标变小,居中",
"type": "Boolean"
},
"nly-button/button-class": {
"description": "自定义式样",
"type": "String"
},
"nly-button-group/vertical": {
"description": "是否垂直",
"type": "Boolean"
},
"nly-button-group/group-size": {
"description": "大小,可选'lg','sm'",
"type": "String"
},
"nly-button-group/group-tag": {
"description": "标签",
"type": "String"
},
"nly-button-group/button-group-class": {
"description": "自定义css式样",
"type": "String"
},
"nly-button-close/content":{
"description": "文本内容",
"type": "String"
},
"nly-button-close/disabled":{
"description": "禁用",
"type": "Boolean"
},
"nly-button-close/aria-label":{
"description": "aria-label",
"type": "String"
},
"nly-button-close/text-variant":{
"description": "文字颜色",
"type": "String"
},
"nly-card-group/group-type":{
"description": "卡片组类型 默认card-group,可选,default,deck,columns,accordion。deck水平,colunms当水平排列放不下,就垂直,先垂直一列,载垂直第二列",
"type": "String"
},
"nly-card-group/group-class":{
"description": "自定义css式样",
"type": "String"
},
"nly-card-group/tag":{
"description": "标签",
"type": "String"
},
"nly-card/header-variant":{
"description": "header背景色,card-*。可选primary,secondary,success,info,warning,danger,light,dark,lightblue,navy,olive,lime,fuchsia,maroon,blue,indigo,purple,pink,red,orange,yellow,green,teal,cyan,white,gray,graydark",
"type": "String"
},
"nly-card/header-outline":{
"description": "header边框",
"type": "Boolean"
},
"nly-card/card-outline-tabs":{
"description": "作为tab时,header的式样",
"type": "Boolean"
},
"nly-card/card-tabs":{
"description": "是否作为一个tab",
"type": "Boolean"
},
"nly-card/text-variant":{
"description": "字体颜色,可选primary,secondary,success,info,warning,danger,light,dark,lightblue,navy,olive,lime,fuchsia,maroon,blue,indigo,purple,pink,red,orange,yellow,green,teal,cyan,white,gray,graydark",
"type": "String"
},
"nly-card/bg-variant":{
"description": "整个卡片背景色,可选primary,secondary,success,info,warning,danger,light,dark,lightblue,navy,olive,lime,fuchsia,maroon,blue,indigo,purple,pink,red,orange,yellow,green,teal,cyan,white,gray,graydark",
"type": "String"
},
"nly-card/bg-gradient-variant":{
"description": "整个卡片背景色,渐变色可选primary,secondary,success,info,warning,danger,light,dark,lightblue,navy,olive,lime,fuchsia,maroon,blue,indigo,purple,pink,red,orange,yellow,green,teal,cyan,white,gray,graydark",
"type": "String"
},
"nly-card/height-control":{
"description": "控制卡片高度,最高300px",
"type": "Boolean"
},
"nly-card/loading":{
"description": "开启图标,图片和文字loading",
"type": "Boolean"
},
"nly-card/dark":{
"description": "loading式样,默认light,设置dark=true为黑色",
"type": "Boolean"
},
"nly-card/loading-content":{
"description": "自定义loading文字内容,设置loading为true的时候,生效,传入内容会覆盖icon-loading",
"type": "String"
},
"nly-card/loading-content-tag":{
"description": "自定义loading文字内容标签,设置loading为true的时候,生效",
"type": "String"
},
"nly-card/loading-content-class":{
"description": "自定义loading文字内容css式样,设置loading为true的时候,生效,",
"type": "String"
},
"nly-card/loading-icon":{
"description": "开启loading情况下默认loading内容。如果传入loading-content,会覆盖loading-icon",
"type": "String"