lkt-menu 2.0.9 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build.css +1 -1
- package/dist/build.d.ts +4 -4
- package/dist/build.js +129 -123
- package/dist/components/MenuItem.vue.d.ts +690 -138
- package/dist/lib-components/LktMenu.vue.d.ts +462 -92
- package/package.json +1 -1
- package/theme/default.css +9 -1
|
@@ -52,7 +52,7 @@ declare const entry: import("vue").Ref<{
|
|
|
52
52
|
loading?: boolean | undefined;
|
|
53
53
|
class?: string | undefined;
|
|
54
54
|
containerClass?: string | undefined;
|
|
55
|
-
|
|
55
|
+
wrapButton?: boolean | undefined;
|
|
56
56
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
57
57
|
icon?: string | {
|
|
58
58
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -232,7 +232,7 @@ declare const entry: import("vue").Ref<{
|
|
|
232
232
|
loading?: boolean | undefined;
|
|
233
233
|
class?: string | undefined;
|
|
234
234
|
containerClass?: string | undefined;
|
|
235
|
-
|
|
235
|
+
wrapButton?: boolean | undefined;
|
|
236
236
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
237
237
|
icon?: string | {
|
|
238
238
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -406,6 +406,10 @@ declare const entry: import("vue").Ref<{
|
|
|
406
406
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
407
407
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
408
408
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
409
|
+
aria?: {
|
|
410
|
+
controls?: string | undefined;
|
|
411
|
+
selected?: boolean | undefined;
|
|
412
|
+
} | undefined;
|
|
409
413
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
410
414
|
events?: {
|
|
411
415
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -415,6 +419,10 @@ declare const entry: import("vue").Ref<{
|
|
|
415
419
|
}[] | undefined;
|
|
416
420
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
417
421
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
422
|
+
aria?: {
|
|
423
|
+
controls?: string | undefined;
|
|
424
|
+
selected?: boolean | undefined;
|
|
425
|
+
} | undefined;
|
|
418
426
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
419
427
|
events?: {
|
|
420
428
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -431,7 +439,7 @@ declare const entry: import("vue").Ref<{
|
|
|
431
439
|
loading?: boolean | undefined;
|
|
432
440
|
class?: string | undefined;
|
|
433
441
|
containerClass?: string | undefined;
|
|
434
|
-
|
|
442
|
+
wrapButton?: boolean | undefined;
|
|
435
443
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
436
444
|
icon?: string | {
|
|
437
445
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -611,7 +619,7 @@ declare const entry: import("vue").Ref<{
|
|
|
611
619
|
loading?: boolean | undefined;
|
|
612
620
|
class?: string | undefined;
|
|
613
621
|
containerClass?: string | undefined;
|
|
614
|
-
|
|
622
|
+
wrapButton?: boolean | undefined;
|
|
615
623
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
616
624
|
icon?: string | {
|
|
617
625
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -785,6 +793,10 @@ declare const entry: import("vue").Ref<{
|
|
|
785
793
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
786
794
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
787
795
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
796
|
+
aria?: {
|
|
797
|
+
controls?: string | undefined;
|
|
798
|
+
selected?: boolean | undefined;
|
|
799
|
+
} | undefined;
|
|
788
800
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
789
801
|
events?: {
|
|
790
802
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -794,6 +806,10 @@ declare const entry: import("vue").Ref<{
|
|
|
794
806
|
}[] | undefined;
|
|
795
807
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
796
808
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
809
|
+
aria?: {
|
|
810
|
+
controls?: string | undefined;
|
|
811
|
+
selected?: boolean | undefined;
|
|
812
|
+
} | undefined;
|
|
797
813
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
798
814
|
events?: {
|
|
799
815
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -810,7 +826,7 @@ declare const entry: import("vue").Ref<{
|
|
|
810
826
|
loading?: boolean | undefined;
|
|
811
827
|
class?: string | undefined;
|
|
812
828
|
containerClass?: string | undefined;
|
|
813
|
-
|
|
829
|
+
wrapButton?: boolean | undefined;
|
|
814
830
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
815
831
|
icon?: string | {
|
|
816
832
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -990,7 +1006,7 @@ declare const entry: import("vue").Ref<{
|
|
|
990
1006
|
loading?: boolean | undefined;
|
|
991
1007
|
class?: string | undefined;
|
|
992
1008
|
containerClass?: string | undefined;
|
|
993
|
-
|
|
1009
|
+
wrapButton?: boolean | undefined;
|
|
994
1010
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
995
1011
|
icon?: string | {
|
|
996
1012
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -1164,6 +1180,10 @@ declare const entry: import("vue").Ref<{
|
|
|
1164
1180
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
1165
1181
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
1166
1182
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1183
|
+
aria?: {
|
|
1184
|
+
controls?: string | undefined;
|
|
1185
|
+
selected?: boolean | undefined;
|
|
1186
|
+
} | undefined;
|
|
1167
1187
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
1168
1188
|
events?: {
|
|
1169
1189
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -1173,6 +1193,10 @@ declare const entry: import("vue").Ref<{
|
|
|
1173
1193
|
}[] | undefined;
|
|
1174
1194
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
1175
1195
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1196
|
+
aria?: {
|
|
1197
|
+
controls?: string | undefined;
|
|
1198
|
+
selected?: boolean | undefined;
|
|
1199
|
+
} | undefined;
|
|
1176
1200
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
1177
1201
|
events?: {
|
|
1178
1202
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -1211,7 +1235,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1211
1235
|
loading?: boolean | undefined;
|
|
1212
1236
|
class?: string | undefined;
|
|
1213
1237
|
containerClass?: string | undefined;
|
|
1214
|
-
|
|
1238
|
+
wrapButton?: boolean | undefined;
|
|
1215
1239
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1216
1240
|
icon?: string | {
|
|
1217
1241
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -1335,7 +1359,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1335
1359
|
loading?: boolean | undefined;
|
|
1336
1360
|
class?: string | undefined;
|
|
1337
1361
|
containerClass?: string | undefined;
|
|
1338
|
-
|
|
1362
|
+
wrapButton?: boolean | undefined;
|
|
1339
1363
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1340
1364
|
icon?: string | {
|
|
1341
1365
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -1509,6 +1533,10 @@ declare const entry: import("vue").Ref<{
|
|
|
1509
1533
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
1510
1534
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
1511
1535
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1536
|
+
aria?: {
|
|
1537
|
+
controls?: string | undefined;
|
|
1538
|
+
selected?: boolean | undefined;
|
|
1539
|
+
} | undefined;
|
|
1512
1540
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
1513
1541
|
events?: {
|
|
1514
1542
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -1525,7 +1553,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1525
1553
|
loading?: boolean | undefined;
|
|
1526
1554
|
class?: string | undefined;
|
|
1527
1555
|
containerClass?: string | undefined;
|
|
1528
|
-
|
|
1556
|
+
wrapButton?: boolean | undefined;
|
|
1529
1557
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1530
1558
|
icon?: string | {
|
|
1531
1559
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -1699,6 +1727,10 @@ declare const entry: import("vue").Ref<{
|
|
|
1699
1727
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
1700
1728
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
1701
1729
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1730
|
+
aria?: {
|
|
1731
|
+
controls?: string | undefined;
|
|
1732
|
+
selected?: boolean | undefined;
|
|
1733
|
+
} | undefined;
|
|
1702
1734
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
1703
1735
|
events?: {
|
|
1704
1736
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -1715,7 +1747,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1715
1747
|
loading?: boolean | undefined;
|
|
1716
1748
|
class?: string | undefined;
|
|
1717
1749
|
containerClass?: string | undefined;
|
|
1718
|
-
|
|
1750
|
+
wrapButton?: boolean | undefined;
|
|
1719
1751
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1720
1752
|
icon?: string | {
|
|
1721
1753
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -1889,6 +1921,10 @@ declare const entry: import("vue").Ref<{
|
|
|
1889
1921
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
1890
1922
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
1891
1923
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1924
|
+
aria?: {
|
|
1925
|
+
controls?: string | undefined;
|
|
1926
|
+
selected?: boolean | undefined;
|
|
1927
|
+
} | undefined;
|
|
1892
1928
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
1893
1929
|
events?: {
|
|
1894
1930
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -1951,7 +1987,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1951
1987
|
loading?: boolean | undefined;
|
|
1952
1988
|
class?: string | undefined;
|
|
1953
1989
|
containerClass?: string | undefined;
|
|
1954
|
-
|
|
1990
|
+
wrapButton?: boolean | undefined;
|
|
1955
1991
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1956
1992
|
icon?: string | {
|
|
1957
1993
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -2139,6 +2175,10 @@ declare const entry: import("vue").Ref<{
|
|
|
2139
2175
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
2140
2176
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
2141
2177
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
2178
|
+
aria?: {
|
|
2179
|
+
controls?: string | undefined;
|
|
2180
|
+
selected?: boolean | undefined;
|
|
2181
|
+
} | undefined;
|
|
2142
2182
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
2143
2183
|
events?: {
|
|
2144
2184
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -2155,7 +2195,7 @@ declare const entry: import("vue").Ref<{
|
|
|
2155
2195
|
loading?: boolean | undefined;
|
|
2156
2196
|
class?: string | undefined;
|
|
2157
2197
|
containerClass?: string | undefined;
|
|
2158
|
-
|
|
2198
|
+
wrapButton?: boolean | undefined;
|
|
2159
2199
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2160
2200
|
icon?: string | {
|
|
2161
2201
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -2343,6 +2383,10 @@ declare const entry: import("vue").Ref<{
|
|
|
2343
2383
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
2344
2384
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
2345
2385
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
2386
|
+
aria?: {
|
|
2387
|
+
controls?: string | undefined;
|
|
2388
|
+
selected?: boolean | undefined;
|
|
2389
|
+
} | undefined;
|
|
2346
2390
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
2347
2391
|
events?: {
|
|
2348
2392
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -2359,7 +2403,7 @@ declare const entry: import("vue").Ref<{
|
|
|
2359
2403
|
loading?: boolean | undefined;
|
|
2360
2404
|
class?: string | undefined;
|
|
2361
2405
|
containerClass?: string | undefined;
|
|
2362
|
-
|
|
2406
|
+
wrapButton?: boolean | undefined;
|
|
2363
2407
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2364
2408
|
icon?: string | {
|
|
2365
2409
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -2547,6 +2591,10 @@ declare const entry: import("vue").Ref<{
|
|
|
2547
2591
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
2548
2592
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
2549
2593
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
2594
|
+
aria?: {
|
|
2595
|
+
controls?: string | undefined;
|
|
2596
|
+
selected?: boolean | undefined;
|
|
2597
|
+
} | undefined;
|
|
2550
2598
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
2551
2599
|
events?: {
|
|
2552
2600
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -2586,7 +2634,7 @@ declare const entry: import("vue").Ref<{
|
|
|
2586
2634
|
loading?: boolean | undefined;
|
|
2587
2635
|
class?: string | undefined;
|
|
2588
2636
|
containerClass?: string | undefined;
|
|
2589
|
-
|
|
2637
|
+
wrapButton?: boolean | undefined;
|
|
2590
2638
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2591
2639
|
icon?: string | {
|
|
2592
2640
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -2774,6 +2822,10 @@ declare const entry: import("vue").Ref<{
|
|
|
2774
2822
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
2775
2823
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
2776
2824
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
2825
|
+
aria?: {
|
|
2826
|
+
controls?: string | undefined;
|
|
2827
|
+
selected?: boolean | undefined;
|
|
2828
|
+
} | undefined;
|
|
2777
2829
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
2778
2830
|
events?: {
|
|
2779
2831
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -2790,7 +2842,7 @@ declare const entry: import("vue").Ref<{
|
|
|
2790
2842
|
loading?: boolean | undefined;
|
|
2791
2843
|
class?: string | undefined;
|
|
2792
2844
|
containerClass?: string | undefined;
|
|
2793
|
-
|
|
2845
|
+
wrapButton?: boolean | undefined;
|
|
2794
2846
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2795
2847
|
icon?: string | {
|
|
2796
2848
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -2978,6 +3030,10 @@ declare const entry: import("vue").Ref<{
|
|
|
2978
3030
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
2979
3031
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
2980
3032
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3033
|
+
aria?: {
|
|
3034
|
+
controls?: string | undefined;
|
|
3035
|
+
selected?: boolean | undefined;
|
|
3036
|
+
} | undefined;
|
|
2981
3037
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
2982
3038
|
events?: {
|
|
2983
3039
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -2994,7 +3050,7 @@ declare const entry: import("vue").Ref<{
|
|
|
2994
3050
|
loading?: boolean | undefined;
|
|
2995
3051
|
class?: string | undefined;
|
|
2996
3052
|
containerClass?: string | undefined;
|
|
2997
|
-
|
|
3053
|
+
wrapButton?: boolean | undefined;
|
|
2998
3054
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2999
3055
|
icon?: string | {
|
|
3000
3056
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -3182,6 +3238,10 @@ declare const entry: import("vue").Ref<{
|
|
|
3182
3238
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
3183
3239
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
3184
3240
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3241
|
+
aria?: {
|
|
3242
|
+
controls?: string | undefined;
|
|
3243
|
+
selected?: boolean | undefined;
|
|
3244
|
+
} | undefined;
|
|
3185
3245
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
3186
3246
|
events?: {
|
|
3187
3247
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -3230,6 +3290,10 @@ declare const entry: import("vue").Ref<{
|
|
|
3230
3290
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
3231
3291
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
3232
3292
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3293
|
+
aria?: {
|
|
3294
|
+
controls?: string | undefined;
|
|
3295
|
+
selected?: boolean | undefined;
|
|
3296
|
+
} | undefined;
|
|
3233
3297
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
3234
3298
|
events?: {
|
|
3235
3299
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -3262,7 +3326,7 @@ declare const entry: import("vue").Ref<{
|
|
|
3262
3326
|
loading?: boolean | undefined;
|
|
3263
3327
|
class?: string | undefined;
|
|
3264
3328
|
containerClass?: string | undefined;
|
|
3265
|
-
|
|
3329
|
+
wrapButton?: boolean | undefined;
|
|
3266
3330
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3267
3331
|
icon?: string | {
|
|
3268
3332
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -3386,7 +3450,7 @@ declare const entry: import("vue").Ref<{
|
|
|
3386
3450
|
loading?: boolean | undefined;
|
|
3387
3451
|
class?: string | undefined;
|
|
3388
3452
|
containerClass?: string | undefined;
|
|
3389
|
-
|
|
3453
|
+
wrapButton?: boolean | undefined;
|
|
3390
3454
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3391
3455
|
icon?: string | {
|
|
3392
3456
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -3560,6 +3624,10 @@ declare const entry: import("vue").Ref<{
|
|
|
3560
3624
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
3561
3625
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
3562
3626
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3627
|
+
aria?: {
|
|
3628
|
+
controls?: string | undefined;
|
|
3629
|
+
selected?: boolean | undefined;
|
|
3630
|
+
} | undefined;
|
|
3563
3631
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
3564
3632
|
events?: {
|
|
3565
3633
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -3576,7 +3644,7 @@ declare const entry: import("vue").Ref<{
|
|
|
3576
3644
|
loading?: boolean | undefined;
|
|
3577
3645
|
class?: string | undefined;
|
|
3578
3646
|
containerClass?: string | undefined;
|
|
3579
|
-
|
|
3647
|
+
wrapButton?: boolean | undefined;
|
|
3580
3648
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3581
3649
|
icon?: string | {
|
|
3582
3650
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -3750,6 +3818,10 @@ declare const entry: import("vue").Ref<{
|
|
|
3750
3818
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
3751
3819
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
3752
3820
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3821
|
+
aria?: {
|
|
3822
|
+
controls?: string | undefined;
|
|
3823
|
+
selected?: boolean | undefined;
|
|
3824
|
+
} | undefined;
|
|
3753
3825
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
3754
3826
|
events?: {
|
|
3755
3827
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -3766,7 +3838,7 @@ declare const entry: import("vue").Ref<{
|
|
|
3766
3838
|
loading?: boolean | undefined;
|
|
3767
3839
|
class?: string | undefined;
|
|
3768
3840
|
containerClass?: string | undefined;
|
|
3769
|
-
|
|
3841
|
+
wrapButton?: boolean | undefined;
|
|
3770
3842
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3771
3843
|
icon?: string | {
|
|
3772
3844
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -3940,6 +4012,10 @@ declare const entry: import("vue").Ref<{
|
|
|
3940
4012
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
3941
4013
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
3942
4014
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
4015
|
+
aria?: {
|
|
4016
|
+
controls?: string | undefined;
|
|
4017
|
+
selected?: boolean | undefined;
|
|
4018
|
+
} | undefined;
|
|
3943
4019
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
3944
4020
|
events?: {
|
|
3945
4021
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -4002,7 +4078,7 @@ declare const entry: import("vue").Ref<{
|
|
|
4002
4078
|
loading?: boolean | undefined;
|
|
4003
4079
|
class?: string | undefined;
|
|
4004
4080
|
containerClass?: string | undefined;
|
|
4005
|
-
|
|
4081
|
+
wrapButton?: boolean | undefined;
|
|
4006
4082
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4007
4083
|
icon?: string | {
|
|
4008
4084
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -4190,6 +4266,10 @@ declare const entry: import("vue").Ref<{
|
|
|
4190
4266
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
4191
4267
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
4192
4268
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
4269
|
+
aria?: {
|
|
4270
|
+
controls?: string | undefined;
|
|
4271
|
+
selected?: boolean | undefined;
|
|
4272
|
+
} | undefined;
|
|
4193
4273
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
4194
4274
|
events?: {
|
|
4195
4275
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -4206,7 +4286,7 @@ declare const entry: import("vue").Ref<{
|
|
|
4206
4286
|
loading?: boolean | undefined;
|
|
4207
4287
|
class?: string | undefined;
|
|
4208
4288
|
containerClass?: string | undefined;
|
|
4209
|
-
|
|
4289
|
+
wrapButton?: boolean | undefined;
|
|
4210
4290
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4211
4291
|
icon?: string | {
|
|
4212
4292
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -4394,6 +4474,10 @@ declare const entry: import("vue").Ref<{
|
|
|
4394
4474
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
4395
4475
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
4396
4476
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
4477
|
+
aria?: {
|
|
4478
|
+
controls?: string | undefined;
|
|
4479
|
+
selected?: boolean | undefined;
|
|
4480
|
+
} | undefined;
|
|
4397
4481
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
4398
4482
|
events?: {
|
|
4399
4483
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -4410,7 +4494,7 @@ declare const entry: import("vue").Ref<{
|
|
|
4410
4494
|
loading?: boolean | undefined;
|
|
4411
4495
|
class?: string | undefined;
|
|
4412
4496
|
containerClass?: string | undefined;
|
|
4413
|
-
|
|
4497
|
+
wrapButton?: boolean | undefined;
|
|
4414
4498
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4415
4499
|
icon?: string | {
|
|
4416
4500
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -4598,6 +4682,10 @@ declare const entry: import("vue").Ref<{
|
|
|
4598
4682
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
4599
4683
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
4600
4684
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
4685
|
+
aria?: {
|
|
4686
|
+
controls?: string | undefined;
|
|
4687
|
+
selected?: boolean | undefined;
|
|
4688
|
+
} | undefined;
|
|
4601
4689
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
4602
4690
|
events?: {
|
|
4603
4691
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -4637,7 +4725,7 @@ declare const entry: import("vue").Ref<{
|
|
|
4637
4725
|
loading?: boolean | undefined;
|
|
4638
4726
|
class?: string | undefined;
|
|
4639
4727
|
containerClass?: string | undefined;
|
|
4640
|
-
|
|
4728
|
+
wrapButton?: boolean | undefined;
|
|
4641
4729
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4642
4730
|
icon?: string | {
|
|
4643
4731
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -4825,6 +4913,10 @@ declare const entry: import("vue").Ref<{
|
|
|
4825
4913
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
4826
4914
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
4827
4915
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
4916
|
+
aria?: {
|
|
4917
|
+
controls?: string | undefined;
|
|
4918
|
+
selected?: boolean | undefined;
|
|
4919
|
+
} | undefined;
|
|
4828
4920
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
4829
4921
|
events?: {
|
|
4830
4922
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -4841,7 +4933,7 @@ declare const entry: import("vue").Ref<{
|
|
|
4841
4933
|
loading?: boolean | undefined;
|
|
4842
4934
|
class?: string | undefined;
|
|
4843
4935
|
containerClass?: string | undefined;
|
|
4844
|
-
|
|
4936
|
+
wrapButton?: boolean | undefined;
|
|
4845
4937
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4846
4938
|
icon?: string | {
|
|
4847
4939
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -5029,6 +5121,10 @@ declare const entry: import("vue").Ref<{
|
|
|
5029
5121
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
5030
5122
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
5031
5123
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
5124
|
+
aria?: {
|
|
5125
|
+
controls?: string | undefined;
|
|
5126
|
+
selected?: boolean | undefined;
|
|
5127
|
+
} | undefined;
|
|
5032
5128
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
5033
5129
|
events?: {
|
|
5034
5130
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -5045,7 +5141,7 @@ declare const entry: import("vue").Ref<{
|
|
|
5045
5141
|
loading?: boolean | undefined;
|
|
5046
5142
|
class?: string | undefined;
|
|
5047
5143
|
containerClass?: string | undefined;
|
|
5048
|
-
|
|
5144
|
+
wrapButton?: boolean | undefined;
|
|
5049
5145
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
5050
5146
|
icon?: string | {
|
|
5051
5147
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -5233,6 +5329,10 @@ declare const entry: import("vue").Ref<{
|
|
|
5233
5329
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
5234
5330
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
5235
5331
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
5332
|
+
aria?: {
|
|
5333
|
+
controls?: string | undefined;
|
|
5334
|
+
selected?: boolean | undefined;
|
|
5335
|
+
} | undefined;
|
|
5236
5336
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
5237
5337
|
events?: {
|
|
5238
5338
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -5281,6 +5381,10 @@ declare const entry: import("vue").Ref<{
|
|
|
5281
5381
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
5282
5382
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
5283
5383
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
5384
|
+
aria?: {
|
|
5385
|
+
controls?: string | undefined;
|
|
5386
|
+
selected?: boolean | undefined;
|
|
5387
|
+
} | undefined;
|
|
5284
5388
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
5285
5389
|
events?: {
|
|
5286
5390
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -5297,7 +5401,7 @@ declare const entry: import("vue").Ref<{
|
|
|
5297
5401
|
loading?: boolean | undefined;
|
|
5298
5402
|
class?: string | undefined;
|
|
5299
5403
|
containerClass?: string | undefined;
|
|
5300
|
-
|
|
5404
|
+
wrapButton?: boolean | undefined;
|
|
5301
5405
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
5302
5406
|
icon?: string | {
|
|
5303
5407
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -5421,7 +5525,7 @@ declare const entry: import("vue").Ref<{
|
|
|
5421
5525
|
loading?: boolean | undefined;
|
|
5422
5526
|
class?: string | undefined;
|
|
5423
5527
|
containerClass?: string | undefined;
|
|
5424
|
-
|
|
5528
|
+
wrapButton?: boolean | undefined;
|
|
5425
5529
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
5426
5530
|
icon?: string | {
|
|
5427
5531
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -5595,6 +5699,10 @@ declare const entry: import("vue").Ref<{
|
|
|
5595
5699
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
5596
5700
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
5597
5701
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
5702
|
+
aria?: {
|
|
5703
|
+
controls?: string | undefined;
|
|
5704
|
+
selected?: boolean | undefined;
|
|
5705
|
+
} | undefined;
|
|
5598
5706
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
5599
5707
|
events?: {
|
|
5600
5708
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -5611,7 +5719,7 @@ declare const entry: import("vue").Ref<{
|
|
|
5611
5719
|
loading?: boolean | undefined;
|
|
5612
5720
|
class?: string | undefined;
|
|
5613
5721
|
containerClass?: string | undefined;
|
|
5614
|
-
|
|
5722
|
+
wrapButton?: boolean | undefined;
|
|
5615
5723
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
5616
5724
|
icon?: string | {
|
|
5617
5725
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -5785,6 +5893,10 @@ declare const entry: import("vue").Ref<{
|
|
|
5785
5893
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
5786
5894
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
5787
5895
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
5896
|
+
aria?: {
|
|
5897
|
+
controls?: string | undefined;
|
|
5898
|
+
selected?: boolean | undefined;
|
|
5899
|
+
} | undefined;
|
|
5788
5900
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
5789
5901
|
events?: {
|
|
5790
5902
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -5801,7 +5913,7 @@ declare const entry: import("vue").Ref<{
|
|
|
5801
5913
|
loading?: boolean | undefined;
|
|
5802
5914
|
class?: string | undefined;
|
|
5803
5915
|
containerClass?: string | undefined;
|
|
5804
|
-
|
|
5916
|
+
wrapButton?: boolean | undefined;
|
|
5805
5917
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
5806
5918
|
icon?: string | {
|
|
5807
5919
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -5975,6 +6087,10 @@ declare const entry: import("vue").Ref<{
|
|
|
5975
6087
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
5976
6088
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
5977
6089
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
6090
|
+
aria?: {
|
|
6091
|
+
controls?: string | undefined;
|
|
6092
|
+
selected?: boolean | undefined;
|
|
6093
|
+
} | undefined;
|
|
5978
6094
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
5979
6095
|
events?: {
|
|
5980
6096
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -6037,7 +6153,7 @@ declare const entry: import("vue").Ref<{
|
|
|
6037
6153
|
loading?: boolean | undefined;
|
|
6038
6154
|
class?: string | undefined;
|
|
6039
6155
|
containerClass?: string | undefined;
|
|
6040
|
-
|
|
6156
|
+
wrapButton?: boolean | undefined;
|
|
6041
6157
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
6042
6158
|
icon?: string | {
|
|
6043
6159
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -6225,6 +6341,10 @@ declare const entry: import("vue").Ref<{
|
|
|
6225
6341
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
6226
6342
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
6227
6343
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
6344
|
+
aria?: {
|
|
6345
|
+
controls?: string | undefined;
|
|
6346
|
+
selected?: boolean | undefined;
|
|
6347
|
+
} | undefined;
|
|
6228
6348
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
6229
6349
|
events?: {
|
|
6230
6350
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -6241,7 +6361,7 @@ declare const entry: import("vue").Ref<{
|
|
|
6241
6361
|
loading?: boolean | undefined;
|
|
6242
6362
|
class?: string | undefined;
|
|
6243
6363
|
containerClass?: string | undefined;
|
|
6244
|
-
|
|
6364
|
+
wrapButton?: boolean | undefined;
|
|
6245
6365
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
6246
6366
|
icon?: string | {
|
|
6247
6367
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -6429,6 +6549,10 @@ declare const entry: import("vue").Ref<{
|
|
|
6429
6549
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
6430
6550
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
6431
6551
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
6552
|
+
aria?: {
|
|
6553
|
+
controls?: string | undefined;
|
|
6554
|
+
selected?: boolean | undefined;
|
|
6555
|
+
} | undefined;
|
|
6432
6556
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
6433
6557
|
events?: {
|
|
6434
6558
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -6445,7 +6569,7 @@ declare const entry: import("vue").Ref<{
|
|
|
6445
6569
|
loading?: boolean | undefined;
|
|
6446
6570
|
class?: string | undefined;
|
|
6447
6571
|
containerClass?: string | undefined;
|
|
6448
|
-
|
|
6572
|
+
wrapButton?: boolean | undefined;
|
|
6449
6573
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
6450
6574
|
icon?: string | {
|
|
6451
6575
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -6633,6 +6757,10 @@ declare const entry: import("vue").Ref<{
|
|
|
6633
6757
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
6634
6758
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
6635
6759
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
6760
|
+
aria?: {
|
|
6761
|
+
controls?: string | undefined;
|
|
6762
|
+
selected?: boolean | undefined;
|
|
6763
|
+
} | undefined;
|
|
6636
6764
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
6637
6765
|
events?: {
|
|
6638
6766
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -6672,7 +6800,7 @@ declare const entry: import("vue").Ref<{
|
|
|
6672
6800
|
loading?: boolean | undefined;
|
|
6673
6801
|
class?: string | undefined;
|
|
6674
6802
|
containerClass?: string | undefined;
|
|
6675
|
-
|
|
6803
|
+
wrapButton?: boolean | undefined;
|
|
6676
6804
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
6677
6805
|
icon?: string | {
|
|
6678
6806
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -6860,6 +6988,10 @@ declare const entry: import("vue").Ref<{
|
|
|
6860
6988
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
6861
6989
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
6862
6990
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
6991
|
+
aria?: {
|
|
6992
|
+
controls?: string | undefined;
|
|
6993
|
+
selected?: boolean | undefined;
|
|
6994
|
+
} | undefined;
|
|
6863
6995
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
6864
6996
|
events?: {
|
|
6865
6997
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -6876,7 +7008,7 @@ declare const entry: import("vue").Ref<{
|
|
|
6876
7008
|
loading?: boolean | undefined;
|
|
6877
7009
|
class?: string | undefined;
|
|
6878
7010
|
containerClass?: string | undefined;
|
|
6879
|
-
|
|
7011
|
+
wrapButton?: boolean | undefined;
|
|
6880
7012
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
6881
7013
|
icon?: string | {
|
|
6882
7014
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -7064,6 +7196,10 @@ declare const entry: import("vue").Ref<{
|
|
|
7064
7196
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
7065
7197
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
7066
7198
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
7199
|
+
aria?: {
|
|
7200
|
+
controls?: string | undefined;
|
|
7201
|
+
selected?: boolean | undefined;
|
|
7202
|
+
} | undefined;
|
|
7067
7203
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
7068
7204
|
events?: {
|
|
7069
7205
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -7080,7 +7216,7 @@ declare const entry: import("vue").Ref<{
|
|
|
7080
7216
|
loading?: boolean | undefined;
|
|
7081
7217
|
class?: string | undefined;
|
|
7082
7218
|
containerClass?: string | undefined;
|
|
7083
|
-
|
|
7219
|
+
wrapButton?: boolean | undefined;
|
|
7084
7220
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
7085
7221
|
icon?: string | {
|
|
7086
7222
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -7268,6 +7404,10 @@ declare const entry: import("vue").Ref<{
|
|
|
7268
7404
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
7269
7405
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
7270
7406
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
7407
|
+
aria?: {
|
|
7408
|
+
controls?: string | undefined;
|
|
7409
|
+
selected?: boolean | undefined;
|
|
7410
|
+
} | undefined;
|
|
7271
7411
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
7272
7412
|
events?: {
|
|
7273
7413
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -7316,6 +7456,10 @@ declare const entry: import("vue").Ref<{
|
|
|
7316
7456
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
7317
7457
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
7318
7458
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
7459
|
+
aria?: {
|
|
7460
|
+
controls?: string | undefined;
|
|
7461
|
+
selected?: boolean | undefined;
|
|
7462
|
+
} | undefined;
|
|
7319
7463
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
7320
7464
|
events?: {
|
|
7321
7465
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -7332,7 +7476,7 @@ declare const entry: import("vue").Ref<{
|
|
|
7332
7476
|
loading?: boolean | undefined;
|
|
7333
7477
|
class?: string | undefined;
|
|
7334
7478
|
containerClass?: string | undefined;
|
|
7335
|
-
|
|
7479
|
+
wrapButton?: boolean | undefined;
|
|
7336
7480
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
7337
7481
|
icon?: string | {
|
|
7338
7482
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -7456,7 +7600,7 @@ declare const entry: import("vue").Ref<{
|
|
|
7456
7600
|
loading?: boolean | undefined;
|
|
7457
7601
|
class?: string | undefined;
|
|
7458
7602
|
containerClass?: string | undefined;
|
|
7459
|
-
|
|
7603
|
+
wrapButton?: boolean | undefined;
|
|
7460
7604
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
7461
7605
|
icon?: string | {
|
|
7462
7606
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -7630,6 +7774,10 @@ declare const entry: import("vue").Ref<{
|
|
|
7630
7774
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
7631
7775
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
7632
7776
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
7777
|
+
aria?: {
|
|
7778
|
+
controls?: string | undefined;
|
|
7779
|
+
selected?: boolean | undefined;
|
|
7780
|
+
} | undefined;
|
|
7633
7781
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
7634
7782
|
events?: {
|
|
7635
7783
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -7646,7 +7794,7 @@ declare const entry: import("vue").Ref<{
|
|
|
7646
7794
|
loading?: boolean | undefined;
|
|
7647
7795
|
class?: string | undefined;
|
|
7648
7796
|
containerClass?: string | undefined;
|
|
7649
|
-
|
|
7797
|
+
wrapButton?: boolean | undefined;
|
|
7650
7798
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
7651
7799
|
icon?: string | {
|
|
7652
7800
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -7820,6 +7968,10 @@ declare const entry: import("vue").Ref<{
|
|
|
7820
7968
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
7821
7969
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
7822
7970
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
7971
|
+
aria?: {
|
|
7972
|
+
controls?: string | undefined;
|
|
7973
|
+
selected?: boolean | undefined;
|
|
7974
|
+
} | undefined;
|
|
7823
7975
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
7824
7976
|
events?: {
|
|
7825
7977
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -7836,7 +7988,7 @@ declare const entry: import("vue").Ref<{
|
|
|
7836
7988
|
loading?: boolean | undefined;
|
|
7837
7989
|
class?: string | undefined;
|
|
7838
7990
|
containerClass?: string | undefined;
|
|
7839
|
-
|
|
7991
|
+
wrapButton?: boolean | undefined;
|
|
7840
7992
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
7841
7993
|
icon?: string | {
|
|
7842
7994
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -8010,6 +8162,10 @@ declare const entry: import("vue").Ref<{
|
|
|
8010
8162
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
8011
8163
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
8012
8164
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
8165
|
+
aria?: {
|
|
8166
|
+
controls?: string | undefined;
|
|
8167
|
+
selected?: boolean | undefined;
|
|
8168
|
+
} | undefined;
|
|
8013
8169
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
8014
8170
|
events?: {
|
|
8015
8171
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -8072,7 +8228,7 @@ declare const entry: import("vue").Ref<{
|
|
|
8072
8228
|
loading?: boolean | undefined;
|
|
8073
8229
|
class?: string | undefined;
|
|
8074
8230
|
containerClass?: string | undefined;
|
|
8075
|
-
|
|
8231
|
+
wrapButton?: boolean | undefined;
|
|
8076
8232
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
8077
8233
|
icon?: string | {
|
|
8078
8234
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -8260,6 +8416,10 @@ declare const entry: import("vue").Ref<{
|
|
|
8260
8416
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
8261
8417
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
8262
8418
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
8419
|
+
aria?: {
|
|
8420
|
+
controls?: string | undefined;
|
|
8421
|
+
selected?: boolean | undefined;
|
|
8422
|
+
} | undefined;
|
|
8263
8423
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
8264
8424
|
events?: {
|
|
8265
8425
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -8276,7 +8436,7 @@ declare const entry: import("vue").Ref<{
|
|
|
8276
8436
|
loading?: boolean | undefined;
|
|
8277
8437
|
class?: string | undefined;
|
|
8278
8438
|
containerClass?: string | undefined;
|
|
8279
|
-
|
|
8439
|
+
wrapButton?: boolean | undefined;
|
|
8280
8440
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
8281
8441
|
icon?: string | {
|
|
8282
8442
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -8464,6 +8624,10 @@ declare const entry: import("vue").Ref<{
|
|
|
8464
8624
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
8465
8625
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
8466
8626
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
8627
|
+
aria?: {
|
|
8628
|
+
controls?: string | undefined;
|
|
8629
|
+
selected?: boolean | undefined;
|
|
8630
|
+
} | undefined;
|
|
8467
8631
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
8468
8632
|
events?: {
|
|
8469
8633
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -8480,7 +8644,7 @@ declare const entry: import("vue").Ref<{
|
|
|
8480
8644
|
loading?: boolean | undefined;
|
|
8481
8645
|
class?: string | undefined;
|
|
8482
8646
|
containerClass?: string | undefined;
|
|
8483
|
-
|
|
8647
|
+
wrapButton?: boolean | undefined;
|
|
8484
8648
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
8485
8649
|
icon?: string | {
|
|
8486
8650
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -8668,6 +8832,10 @@ declare const entry: import("vue").Ref<{
|
|
|
8668
8832
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
8669
8833
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
8670
8834
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
8835
|
+
aria?: {
|
|
8836
|
+
controls?: string | undefined;
|
|
8837
|
+
selected?: boolean | undefined;
|
|
8838
|
+
} | undefined;
|
|
8671
8839
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
8672
8840
|
events?: {
|
|
8673
8841
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -8707,7 +8875,7 @@ declare const entry: import("vue").Ref<{
|
|
|
8707
8875
|
loading?: boolean | undefined;
|
|
8708
8876
|
class?: string | undefined;
|
|
8709
8877
|
containerClass?: string | undefined;
|
|
8710
|
-
|
|
8878
|
+
wrapButton?: boolean | undefined;
|
|
8711
8879
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
8712
8880
|
icon?: string | {
|
|
8713
8881
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -8895,6 +9063,10 @@ declare const entry: import("vue").Ref<{
|
|
|
8895
9063
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
8896
9064
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
8897
9065
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
9066
|
+
aria?: {
|
|
9067
|
+
controls?: string | undefined;
|
|
9068
|
+
selected?: boolean | undefined;
|
|
9069
|
+
} | undefined;
|
|
8898
9070
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
8899
9071
|
events?: {
|
|
8900
9072
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -8911,7 +9083,7 @@ declare const entry: import("vue").Ref<{
|
|
|
8911
9083
|
loading?: boolean | undefined;
|
|
8912
9084
|
class?: string | undefined;
|
|
8913
9085
|
containerClass?: string | undefined;
|
|
8914
|
-
|
|
9086
|
+
wrapButton?: boolean | undefined;
|
|
8915
9087
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
8916
9088
|
icon?: string | {
|
|
8917
9089
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -9099,6 +9271,10 @@ declare const entry: import("vue").Ref<{
|
|
|
9099
9271
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
9100
9272
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
9101
9273
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
9274
|
+
aria?: {
|
|
9275
|
+
controls?: string | undefined;
|
|
9276
|
+
selected?: boolean | undefined;
|
|
9277
|
+
} | undefined;
|
|
9102
9278
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
9103
9279
|
events?: {
|
|
9104
9280
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -9115,7 +9291,7 @@ declare const entry: import("vue").Ref<{
|
|
|
9115
9291
|
loading?: boolean | undefined;
|
|
9116
9292
|
class?: string | undefined;
|
|
9117
9293
|
containerClass?: string | undefined;
|
|
9118
|
-
|
|
9294
|
+
wrapButton?: boolean | undefined;
|
|
9119
9295
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
9120
9296
|
icon?: string | {
|
|
9121
9297
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -9303,6 +9479,10 @@ declare const entry: import("vue").Ref<{
|
|
|
9303
9479
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
9304
9480
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
9305
9481
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
9482
|
+
aria?: {
|
|
9483
|
+
controls?: string | undefined;
|
|
9484
|
+
selected?: boolean | undefined;
|
|
9485
|
+
} | undefined;
|
|
9306
9486
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
9307
9487
|
events?: {
|
|
9308
9488
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -9351,6 +9531,10 @@ declare const entry: import("vue").Ref<{
|
|
|
9351
9531
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
9352
9532
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
9353
9533
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
9534
|
+
aria?: {
|
|
9535
|
+
controls?: string | undefined;
|
|
9536
|
+
selected?: boolean | undefined;
|
|
9537
|
+
} | undefined;
|
|
9354
9538
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
9355
9539
|
events?: {
|
|
9356
9540
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -9418,7 +9602,7 @@ declare const entry: import("vue").Ref<{
|
|
|
9418
9602
|
loading?: boolean | undefined;
|
|
9419
9603
|
class?: string | undefined;
|
|
9420
9604
|
containerClass?: string | undefined;
|
|
9421
|
-
|
|
9605
|
+
wrapButton?: boolean | undefined;
|
|
9422
9606
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
9423
9607
|
icon?: string | {
|
|
9424
9608
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -9598,7 +9782,7 @@ declare const entry: import("vue").Ref<{
|
|
|
9598
9782
|
loading?: boolean | undefined;
|
|
9599
9783
|
class?: string | undefined;
|
|
9600
9784
|
containerClass?: string | undefined;
|
|
9601
|
-
|
|
9785
|
+
wrapButton?: boolean | undefined;
|
|
9602
9786
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
9603
9787
|
icon?: string | {
|
|
9604
9788
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -9772,6 +9956,10 @@ declare const entry: import("vue").Ref<{
|
|
|
9772
9956
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
9773
9957
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
9774
9958
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
9959
|
+
aria?: {
|
|
9960
|
+
controls?: string | undefined;
|
|
9961
|
+
selected?: boolean | undefined;
|
|
9962
|
+
} | undefined;
|
|
9775
9963
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
9776
9964
|
events?: {
|
|
9777
9965
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -9781,6 +9969,10 @@ declare const entry: import("vue").Ref<{
|
|
|
9781
9969
|
}[] | undefined;
|
|
9782
9970
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
9783
9971
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
9972
|
+
aria?: {
|
|
9973
|
+
controls?: string | undefined;
|
|
9974
|
+
selected?: boolean | undefined;
|
|
9975
|
+
} | undefined;
|
|
9784
9976
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
9785
9977
|
events?: {
|
|
9786
9978
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -9797,7 +9989,7 @@ declare const entry: import("vue").Ref<{
|
|
|
9797
9989
|
loading?: boolean | undefined;
|
|
9798
9990
|
class?: string | undefined;
|
|
9799
9991
|
containerClass?: string | undefined;
|
|
9800
|
-
|
|
9992
|
+
wrapButton?: boolean | undefined;
|
|
9801
9993
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
9802
9994
|
icon?: string | {
|
|
9803
9995
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -9977,7 +10169,7 @@ declare const entry: import("vue").Ref<{
|
|
|
9977
10169
|
loading?: boolean | undefined;
|
|
9978
10170
|
class?: string | undefined;
|
|
9979
10171
|
containerClass?: string | undefined;
|
|
9980
|
-
|
|
10172
|
+
wrapButton?: boolean | undefined;
|
|
9981
10173
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
9982
10174
|
icon?: string | {
|
|
9983
10175
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -10151,6 +10343,10 @@ declare const entry: import("vue").Ref<{
|
|
|
10151
10343
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
10152
10344
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
10153
10345
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
10346
|
+
aria?: {
|
|
10347
|
+
controls?: string | undefined;
|
|
10348
|
+
selected?: boolean | undefined;
|
|
10349
|
+
} | undefined;
|
|
10154
10350
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
10155
10351
|
events?: {
|
|
10156
10352
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -10160,6 +10356,10 @@ declare const entry: import("vue").Ref<{
|
|
|
10160
10356
|
}[] | undefined;
|
|
10161
10357
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
10162
10358
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
10359
|
+
aria?: {
|
|
10360
|
+
controls?: string | undefined;
|
|
10361
|
+
selected?: boolean | undefined;
|
|
10362
|
+
} | undefined;
|
|
10163
10363
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
10164
10364
|
events?: {
|
|
10165
10365
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -10176,7 +10376,7 @@ declare const entry: import("vue").Ref<{
|
|
|
10176
10376
|
loading?: boolean | undefined;
|
|
10177
10377
|
class?: string | undefined;
|
|
10178
10378
|
containerClass?: string | undefined;
|
|
10179
|
-
|
|
10379
|
+
wrapButton?: boolean | undefined;
|
|
10180
10380
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
10181
10381
|
icon?: string | {
|
|
10182
10382
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -10356,7 +10556,7 @@ declare const entry: import("vue").Ref<{
|
|
|
10356
10556
|
loading?: boolean | undefined;
|
|
10357
10557
|
class?: string | undefined;
|
|
10358
10558
|
containerClass?: string | undefined;
|
|
10359
|
-
|
|
10559
|
+
wrapButton?: boolean | undefined;
|
|
10360
10560
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
10361
10561
|
icon?: string | {
|
|
10362
10562
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -10530,6 +10730,10 @@ declare const entry: import("vue").Ref<{
|
|
|
10530
10730
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
10531
10731
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
10532
10732
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
10733
|
+
aria?: {
|
|
10734
|
+
controls?: string | undefined;
|
|
10735
|
+
selected?: boolean | undefined;
|
|
10736
|
+
} | undefined;
|
|
10533
10737
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
10534
10738
|
events?: {
|
|
10535
10739
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -10539,6 +10743,10 @@ declare const entry: import("vue").Ref<{
|
|
|
10539
10743
|
}[] | undefined;
|
|
10540
10744
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
10541
10745
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
10746
|
+
aria?: {
|
|
10747
|
+
controls?: string | undefined;
|
|
10748
|
+
selected?: boolean | undefined;
|
|
10749
|
+
} | undefined;
|
|
10542
10750
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
10543
10751
|
events?: {
|
|
10544
10752
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -10577,7 +10785,7 @@ declare const entry: import("vue").Ref<{
|
|
|
10577
10785
|
loading?: boolean | undefined;
|
|
10578
10786
|
class?: string | undefined;
|
|
10579
10787
|
containerClass?: string | undefined;
|
|
10580
|
-
|
|
10788
|
+
wrapButton?: boolean | undefined;
|
|
10581
10789
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
10582
10790
|
icon?: string | {
|
|
10583
10791
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -10701,7 +10909,7 @@ declare const entry: import("vue").Ref<{
|
|
|
10701
10909
|
loading?: boolean | undefined;
|
|
10702
10910
|
class?: string | undefined;
|
|
10703
10911
|
containerClass?: string | undefined;
|
|
10704
|
-
|
|
10912
|
+
wrapButton?: boolean | undefined;
|
|
10705
10913
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
10706
10914
|
icon?: string | {
|
|
10707
10915
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -10875,6 +11083,10 @@ declare const entry: import("vue").Ref<{
|
|
|
10875
11083
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
10876
11084
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
10877
11085
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
11086
|
+
aria?: {
|
|
11087
|
+
controls?: string | undefined;
|
|
11088
|
+
selected?: boolean | undefined;
|
|
11089
|
+
} | undefined;
|
|
10878
11090
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
10879
11091
|
events?: {
|
|
10880
11092
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -10891,7 +11103,7 @@ declare const entry: import("vue").Ref<{
|
|
|
10891
11103
|
loading?: boolean | undefined;
|
|
10892
11104
|
class?: string | undefined;
|
|
10893
11105
|
containerClass?: string | undefined;
|
|
10894
|
-
|
|
11106
|
+
wrapButton?: boolean | undefined;
|
|
10895
11107
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
10896
11108
|
icon?: string | {
|
|
10897
11109
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -11065,6 +11277,10 @@ declare const entry: import("vue").Ref<{
|
|
|
11065
11277
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
11066
11278
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
11067
11279
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
11280
|
+
aria?: {
|
|
11281
|
+
controls?: string | undefined;
|
|
11282
|
+
selected?: boolean | undefined;
|
|
11283
|
+
} | undefined;
|
|
11068
11284
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
11069
11285
|
events?: {
|
|
11070
11286
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -11081,7 +11297,7 @@ declare const entry: import("vue").Ref<{
|
|
|
11081
11297
|
loading?: boolean | undefined;
|
|
11082
11298
|
class?: string | undefined;
|
|
11083
11299
|
containerClass?: string | undefined;
|
|
11084
|
-
|
|
11300
|
+
wrapButton?: boolean | undefined;
|
|
11085
11301
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
11086
11302
|
icon?: string | {
|
|
11087
11303
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -11255,6 +11471,10 @@ declare const entry: import("vue").Ref<{
|
|
|
11255
11471
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
11256
11472
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
11257
11473
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
11474
|
+
aria?: {
|
|
11475
|
+
controls?: string | undefined;
|
|
11476
|
+
selected?: boolean | undefined;
|
|
11477
|
+
} | undefined;
|
|
11258
11478
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
11259
11479
|
events?: {
|
|
11260
11480
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -11317,7 +11537,7 @@ declare const entry: import("vue").Ref<{
|
|
|
11317
11537
|
loading?: boolean | undefined;
|
|
11318
11538
|
class?: string | undefined;
|
|
11319
11539
|
containerClass?: string | undefined;
|
|
11320
|
-
|
|
11540
|
+
wrapButton?: boolean | undefined;
|
|
11321
11541
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
11322
11542
|
icon?: string | {
|
|
11323
11543
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -11505,6 +11725,10 @@ declare const entry: import("vue").Ref<{
|
|
|
11505
11725
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
11506
11726
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
11507
11727
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
11728
|
+
aria?: {
|
|
11729
|
+
controls?: string | undefined;
|
|
11730
|
+
selected?: boolean | undefined;
|
|
11731
|
+
} | undefined;
|
|
11508
11732
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
11509
11733
|
events?: {
|
|
11510
11734
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -11521,7 +11745,7 @@ declare const entry: import("vue").Ref<{
|
|
|
11521
11745
|
loading?: boolean | undefined;
|
|
11522
11746
|
class?: string | undefined;
|
|
11523
11747
|
containerClass?: string | undefined;
|
|
11524
|
-
|
|
11748
|
+
wrapButton?: boolean | undefined;
|
|
11525
11749
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
11526
11750
|
icon?: string | {
|
|
11527
11751
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -11709,6 +11933,10 @@ declare const entry: import("vue").Ref<{
|
|
|
11709
11933
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
11710
11934
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
11711
11935
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
11936
|
+
aria?: {
|
|
11937
|
+
controls?: string | undefined;
|
|
11938
|
+
selected?: boolean | undefined;
|
|
11939
|
+
} | undefined;
|
|
11712
11940
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
11713
11941
|
events?: {
|
|
11714
11942
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -11725,7 +11953,7 @@ declare const entry: import("vue").Ref<{
|
|
|
11725
11953
|
loading?: boolean | undefined;
|
|
11726
11954
|
class?: string | undefined;
|
|
11727
11955
|
containerClass?: string | undefined;
|
|
11728
|
-
|
|
11956
|
+
wrapButton?: boolean | undefined;
|
|
11729
11957
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
11730
11958
|
icon?: string | {
|
|
11731
11959
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -11913,6 +12141,10 @@ declare const entry: import("vue").Ref<{
|
|
|
11913
12141
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
11914
12142
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
11915
12143
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
12144
|
+
aria?: {
|
|
12145
|
+
controls?: string | undefined;
|
|
12146
|
+
selected?: boolean | undefined;
|
|
12147
|
+
} | undefined;
|
|
11916
12148
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
11917
12149
|
events?: {
|
|
11918
12150
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -11952,7 +12184,7 @@ declare const entry: import("vue").Ref<{
|
|
|
11952
12184
|
loading?: boolean | undefined;
|
|
11953
12185
|
class?: string | undefined;
|
|
11954
12186
|
containerClass?: string | undefined;
|
|
11955
|
-
|
|
12187
|
+
wrapButton?: boolean | undefined;
|
|
11956
12188
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
11957
12189
|
icon?: string | {
|
|
11958
12190
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -12140,6 +12372,10 @@ declare const entry: import("vue").Ref<{
|
|
|
12140
12372
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
12141
12373
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
12142
12374
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
12375
|
+
aria?: {
|
|
12376
|
+
controls?: string | undefined;
|
|
12377
|
+
selected?: boolean | undefined;
|
|
12378
|
+
} | undefined;
|
|
12143
12379
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
12144
12380
|
events?: {
|
|
12145
12381
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -12156,7 +12392,7 @@ declare const entry: import("vue").Ref<{
|
|
|
12156
12392
|
loading?: boolean | undefined;
|
|
12157
12393
|
class?: string | undefined;
|
|
12158
12394
|
containerClass?: string | undefined;
|
|
12159
|
-
|
|
12395
|
+
wrapButton?: boolean | undefined;
|
|
12160
12396
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
12161
12397
|
icon?: string | {
|
|
12162
12398
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -12344,6 +12580,10 @@ declare const entry: import("vue").Ref<{
|
|
|
12344
12580
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
12345
12581
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
12346
12582
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
12583
|
+
aria?: {
|
|
12584
|
+
controls?: string | undefined;
|
|
12585
|
+
selected?: boolean | undefined;
|
|
12586
|
+
} | undefined;
|
|
12347
12587
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
12348
12588
|
events?: {
|
|
12349
12589
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -12360,7 +12600,7 @@ declare const entry: import("vue").Ref<{
|
|
|
12360
12600
|
loading?: boolean | undefined;
|
|
12361
12601
|
class?: string | undefined;
|
|
12362
12602
|
containerClass?: string | undefined;
|
|
12363
|
-
|
|
12603
|
+
wrapButton?: boolean | undefined;
|
|
12364
12604
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
12365
12605
|
icon?: string | {
|
|
12366
12606
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -12548,6 +12788,10 @@ declare const entry: import("vue").Ref<{
|
|
|
12548
12788
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
12549
12789
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
12550
12790
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
12791
|
+
aria?: {
|
|
12792
|
+
controls?: string | undefined;
|
|
12793
|
+
selected?: boolean | undefined;
|
|
12794
|
+
} | undefined;
|
|
12551
12795
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
12552
12796
|
events?: {
|
|
12553
12797
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -12596,6 +12840,10 @@ declare const entry: import("vue").Ref<{
|
|
|
12596
12840
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
12597
12841
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
12598
12842
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
12843
|
+
aria?: {
|
|
12844
|
+
controls?: string | undefined;
|
|
12845
|
+
selected?: boolean | undefined;
|
|
12846
|
+
} | undefined;
|
|
12599
12847
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
12600
12848
|
events?: {
|
|
12601
12849
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -12628,7 +12876,7 @@ declare const entry: import("vue").Ref<{
|
|
|
12628
12876
|
loading?: boolean | undefined;
|
|
12629
12877
|
class?: string | undefined;
|
|
12630
12878
|
containerClass?: string | undefined;
|
|
12631
|
-
|
|
12879
|
+
wrapButton?: boolean | undefined;
|
|
12632
12880
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
12633
12881
|
icon?: string | {
|
|
12634
12882
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -12752,7 +13000,7 @@ declare const entry: import("vue").Ref<{
|
|
|
12752
13000
|
loading?: boolean | undefined;
|
|
12753
13001
|
class?: string | undefined;
|
|
12754
13002
|
containerClass?: string | undefined;
|
|
12755
|
-
|
|
13003
|
+
wrapButton?: boolean | undefined;
|
|
12756
13004
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
12757
13005
|
icon?: string | {
|
|
12758
13006
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -12926,6 +13174,10 @@ declare const entry: import("vue").Ref<{
|
|
|
12926
13174
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
12927
13175
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
12928
13176
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
13177
|
+
aria?: {
|
|
13178
|
+
controls?: string | undefined;
|
|
13179
|
+
selected?: boolean | undefined;
|
|
13180
|
+
} | undefined;
|
|
12929
13181
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
12930
13182
|
events?: {
|
|
12931
13183
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -12942,7 +13194,7 @@ declare const entry: import("vue").Ref<{
|
|
|
12942
13194
|
loading?: boolean | undefined;
|
|
12943
13195
|
class?: string | undefined;
|
|
12944
13196
|
containerClass?: string | undefined;
|
|
12945
|
-
|
|
13197
|
+
wrapButton?: boolean | undefined;
|
|
12946
13198
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
12947
13199
|
icon?: string | {
|
|
12948
13200
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -13116,6 +13368,10 @@ declare const entry: import("vue").Ref<{
|
|
|
13116
13368
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
13117
13369
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
13118
13370
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
13371
|
+
aria?: {
|
|
13372
|
+
controls?: string | undefined;
|
|
13373
|
+
selected?: boolean | undefined;
|
|
13374
|
+
} | undefined;
|
|
13119
13375
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
13120
13376
|
events?: {
|
|
13121
13377
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -13132,7 +13388,7 @@ declare const entry: import("vue").Ref<{
|
|
|
13132
13388
|
loading?: boolean | undefined;
|
|
13133
13389
|
class?: string | undefined;
|
|
13134
13390
|
containerClass?: string | undefined;
|
|
13135
|
-
|
|
13391
|
+
wrapButton?: boolean | undefined;
|
|
13136
13392
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
13137
13393
|
icon?: string | {
|
|
13138
13394
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -13306,6 +13562,10 @@ declare const entry: import("vue").Ref<{
|
|
|
13306
13562
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
13307
13563
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
13308
13564
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
13565
|
+
aria?: {
|
|
13566
|
+
controls?: string | undefined;
|
|
13567
|
+
selected?: boolean | undefined;
|
|
13568
|
+
} | undefined;
|
|
13309
13569
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
13310
13570
|
events?: {
|
|
13311
13571
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -13368,7 +13628,7 @@ declare const entry: import("vue").Ref<{
|
|
|
13368
13628
|
loading?: boolean | undefined;
|
|
13369
13629
|
class?: string | undefined;
|
|
13370
13630
|
containerClass?: string | undefined;
|
|
13371
|
-
|
|
13631
|
+
wrapButton?: boolean | undefined;
|
|
13372
13632
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
13373
13633
|
icon?: string | {
|
|
13374
13634
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -13556,6 +13816,10 @@ declare const entry: import("vue").Ref<{
|
|
|
13556
13816
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
13557
13817
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
13558
13818
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
13819
|
+
aria?: {
|
|
13820
|
+
controls?: string | undefined;
|
|
13821
|
+
selected?: boolean | undefined;
|
|
13822
|
+
} | undefined;
|
|
13559
13823
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
13560
13824
|
events?: {
|
|
13561
13825
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -13572,7 +13836,7 @@ declare const entry: import("vue").Ref<{
|
|
|
13572
13836
|
loading?: boolean | undefined;
|
|
13573
13837
|
class?: string | undefined;
|
|
13574
13838
|
containerClass?: string | undefined;
|
|
13575
|
-
|
|
13839
|
+
wrapButton?: boolean | undefined;
|
|
13576
13840
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
13577
13841
|
icon?: string | {
|
|
13578
13842
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -13760,6 +14024,10 @@ declare const entry: import("vue").Ref<{
|
|
|
13760
14024
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
13761
14025
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
13762
14026
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
14027
|
+
aria?: {
|
|
14028
|
+
controls?: string | undefined;
|
|
14029
|
+
selected?: boolean | undefined;
|
|
14030
|
+
} | undefined;
|
|
13763
14031
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
13764
14032
|
events?: {
|
|
13765
14033
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -13776,7 +14044,7 @@ declare const entry: import("vue").Ref<{
|
|
|
13776
14044
|
loading?: boolean | undefined;
|
|
13777
14045
|
class?: string | undefined;
|
|
13778
14046
|
containerClass?: string | undefined;
|
|
13779
|
-
|
|
14047
|
+
wrapButton?: boolean | undefined;
|
|
13780
14048
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
13781
14049
|
icon?: string | {
|
|
13782
14050
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -13964,6 +14232,10 @@ declare const entry: import("vue").Ref<{
|
|
|
13964
14232
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
13965
14233
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
13966
14234
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
14235
|
+
aria?: {
|
|
14236
|
+
controls?: string | undefined;
|
|
14237
|
+
selected?: boolean | undefined;
|
|
14238
|
+
} | undefined;
|
|
13967
14239
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
13968
14240
|
events?: {
|
|
13969
14241
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -14003,7 +14275,7 @@ declare const entry: import("vue").Ref<{
|
|
|
14003
14275
|
loading?: boolean | undefined;
|
|
14004
14276
|
class?: string | undefined;
|
|
14005
14277
|
containerClass?: string | undefined;
|
|
14006
|
-
|
|
14278
|
+
wrapButton?: boolean | undefined;
|
|
14007
14279
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
14008
14280
|
icon?: string | {
|
|
14009
14281
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -14191,6 +14463,10 @@ declare const entry: import("vue").Ref<{
|
|
|
14191
14463
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
14192
14464
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
14193
14465
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
14466
|
+
aria?: {
|
|
14467
|
+
controls?: string | undefined;
|
|
14468
|
+
selected?: boolean | undefined;
|
|
14469
|
+
} | undefined;
|
|
14194
14470
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
14195
14471
|
events?: {
|
|
14196
14472
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -14207,7 +14483,7 @@ declare const entry: import("vue").Ref<{
|
|
|
14207
14483
|
loading?: boolean | undefined;
|
|
14208
14484
|
class?: string | undefined;
|
|
14209
14485
|
containerClass?: string | undefined;
|
|
14210
|
-
|
|
14486
|
+
wrapButton?: boolean | undefined;
|
|
14211
14487
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
14212
14488
|
icon?: string | {
|
|
14213
14489
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -14395,6 +14671,10 @@ declare const entry: import("vue").Ref<{
|
|
|
14395
14671
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
14396
14672
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
14397
14673
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
14674
|
+
aria?: {
|
|
14675
|
+
controls?: string | undefined;
|
|
14676
|
+
selected?: boolean | undefined;
|
|
14677
|
+
} | undefined;
|
|
14398
14678
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
14399
14679
|
events?: {
|
|
14400
14680
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -14411,7 +14691,7 @@ declare const entry: import("vue").Ref<{
|
|
|
14411
14691
|
loading?: boolean | undefined;
|
|
14412
14692
|
class?: string | undefined;
|
|
14413
14693
|
containerClass?: string | undefined;
|
|
14414
|
-
|
|
14694
|
+
wrapButton?: boolean | undefined;
|
|
14415
14695
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
14416
14696
|
icon?: string | {
|
|
14417
14697
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -14599,6 +14879,10 @@ declare const entry: import("vue").Ref<{
|
|
|
14599
14879
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
14600
14880
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
14601
14881
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
14882
|
+
aria?: {
|
|
14883
|
+
controls?: string | undefined;
|
|
14884
|
+
selected?: boolean | undefined;
|
|
14885
|
+
} | undefined;
|
|
14602
14886
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
14603
14887
|
events?: {
|
|
14604
14888
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -14647,6 +14931,10 @@ declare const entry: import("vue").Ref<{
|
|
|
14647
14931
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
14648
14932
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
14649
14933
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
14934
|
+
aria?: {
|
|
14935
|
+
controls?: string | undefined;
|
|
14936
|
+
selected?: boolean | undefined;
|
|
14937
|
+
} | undefined;
|
|
14650
14938
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
14651
14939
|
events?: {
|
|
14652
14940
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -14663,7 +14951,7 @@ declare const entry: import("vue").Ref<{
|
|
|
14663
14951
|
loading?: boolean | undefined;
|
|
14664
14952
|
class?: string | undefined;
|
|
14665
14953
|
containerClass?: string | undefined;
|
|
14666
|
-
|
|
14954
|
+
wrapButton?: boolean | undefined;
|
|
14667
14955
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
14668
14956
|
icon?: string | {
|
|
14669
14957
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -14787,7 +15075,7 @@ declare const entry: import("vue").Ref<{
|
|
|
14787
15075
|
loading?: boolean | undefined;
|
|
14788
15076
|
class?: string | undefined;
|
|
14789
15077
|
containerClass?: string | undefined;
|
|
14790
|
-
|
|
15078
|
+
wrapButton?: boolean | undefined;
|
|
14791
15079
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
14792
15080
|
icon?: string | {
|
|
14793
15081
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -14961,6 +15249,10 @@ declare const entry: import("vue").Ref<{
|
|
|
14961
15249
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
14962
15250
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
14963
15251
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
15252
|
+
aria?: {
|
|
15253
|
+
controls?: string | undefined;
|
|
15254
|
+
selected?: boolean | undefined;
|
|
15255
|
+
} | undefined;
|
|
14964
15256
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
14965
15257
|
events?: {
|
|
14966
15258
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -14977,7 +15269,7 @@ declare const entry: import("vue").Ref<{
|
|
|
14977
15269
|
loading?: boolean | undefined;
|
|
14978
15270
|
class?: string | undefined;
|
|
14979
15271
|
containerClass?: string | undefined;
|
|
14980
|
-
|
|
15272
|
+
wrapButton?: boolean | undefined;
|
|
14981
15273
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
14982
15274
|
icon?: string | {
|
|
14983
15275
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -15151,6 +15443,10 @@ declare const entry: import("vue").Ref<{
|
|
|
15151
15443
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
15152
15444
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
15153
15445
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
15446
|
+
aria?: {
|
|
15447
|
+
controls?: string | undefined;
|
|
15448
|
+
selected?: boolean | undefined;
|
|
15449
|
+
} | undefined;
|
|
15154
15450
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
15155
15451
|
events?: {
|
|
15156
15452
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -15167,7 +15463,7 @@ declare const entry: import("vue").Ref<{
|
|
|
15167
15463
|
loading?: boolean | undefined;
|
|
15168
15464
|
class?: string | undefined;
|
|
15169
15465
|
containerClass?: string | undefined;
|
|
15170
|
-
|
|
15466
|
+
wrapButton?: boolean | undefined;
|
|
15171
15467
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
15172
15468
|
icon?: string | {
|
|
15173
15469
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -15341,6 +15637,10 @@ declare const entry: import("vue").Ref<{
|
|
|
15341
15637
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
15342
15638
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
15343
15639
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
15640
|
+
aria?: {
|
|
15641
|
+
controls?: string | undefined;
|
|
15642
|
+
selected?: boolean | undefined;
|
|
15643
|
+
} | undefined;
|
|
15344
15644
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
15345
15645
|
events?: {
|
|
15346
15646
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -15403,7 +15703,7 @@ declare const entry: import("vue").Ref<{
|
|
|
15403
15703
|
loading?: boolean | undefined;
|
|
15404
15704
|
class?: string | undefined;
|
|
15405
15705
|
containerClass?: string | undefined;
|
|
15406
|
-
|
|
15706
|
+
wrapButton?: boolean | undefined;
|
|
15407
15707
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
15408
15708
|
icon?: string | {
|
|
15409
15709
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -15591,6 +15891,10 @@ declare const entry: import("vue").Ref<{
|
|
|
15591
15891
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
15592
15892
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
15593
15893
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
15894
|
+
aria?: {
|
|
15895
|
+
controls?: string | undefined;
|
|
15896
|
+
selected?: boolean | undefined;
|
|
15897
|
+
} | undefined;
|
|
15594
15898
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
15595
15899
|
events?: {
|
|
15596
15900
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -15607,7 +15911,7 @@ declare const entry: import("vue").Ref<{
|
|
|
15607
15911
|
loading?: boolean | undefined;
|
|
15608
15912
|
class?: string | undefined;
|
|
15609
15913
|
containerClass?: string | undefined;
|
|
15610
|
-
|
|
15914
|
+
wrapButton?: boolean | undefined;
|
|
15611
15915
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
15612
15916
|
icon?: string | {
|
|
15613
15917
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -15795,6 +16099,10 @@ declare const entry: import("vue").Ref<{
|
|
|
15795
16099
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
15796
16100
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
15797
16101
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
16102
|
+
aria?: {
|
|
16103
|
+
controls?: string | undefined;
|
|
16104
|
+
selected?: boolean | undefined;
|
|
16105
|
+
} | undefined;
|
|
15798
16106
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
15799
16107
|
events?: {
|
|
15800
16108
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -15811,7 +16119,7 @@ declare const entry: import("vue").Ref<{
|
|
|
15811
16119
|
loading?: boolean | undefined;
|
|
15812
16120
|
class?: string | undefined;
|
|
15813
16121
|
containerClass?: string | undefined;
|
|
15814
|
-
|
|
16122
|
+
wrapButton?: boolean | undefined;
|
|
15815
16123
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
15816
16124
|
icon?: string | {
|
|
15817
16125
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -15999,6 +16307,10 @@ declare const entry: import("vue").Ref<{
|
|
|
15999
16307
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
16000
16308
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
16001
16309
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
16310
|
+
aria?: {
|
|
16311
|
+
controls?: string | undefined;
|
|
16312
|
+
selected?: boolean | undefined;
|
|
16313
|
+
} | undefined;
|
|
16002
16314
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
16003
16315
|
events?: {
|
|
16004
16316
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -16038,7 +16350,7 @@ declare const entry: import("vue").Ref<{
|
|
|
16038
16350
|
loading?: boolean | undefined;
|
|
16039
16351
|
class?: string | undefined;
|
|
16040
16352
|
containerClass?: string | undefined;
|
|
16041
|
-
|
|
16353
|
+
wrapButton?: boolean | undefined;
|
|
16042
16354
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
16043
16355
|
icon?: string | {
|
|
16044
16356
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -16226,6 +16538,10 @@ declare const entry: import("vue").Ref<{
|
|
|
16226
16538
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
16227
16539
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
16228
16540
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
16541
|
+
aria?: {
|
|
16542
|
+
controls?: string | undefined;
|
|
16543
|
+
selected?: boolean | undefined;
|
|
16544
|
+
} | undefined;
|
|
16229
16545
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
16230
16546
|
events?: {
|
|
16231
16547
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -16242,7 +16558,7 @@ declare const entry: import("vue").Ref<{
|
|
|
16242
16558
|
loading?: boolean | undefined;
|
|
16243
16559
|
class?: string | undefined;
|
|
16244
16560
|
containerClass?: string | undefined;
|
|
16245
|
-
|
|
16561
|
+
wrapButton?: boolean | undefined;
|
|
16246
16562
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
16247
16563
|
icon?: string | {
|
|
16248
16564
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -16430,6 +16746,10 @@ declare const entry: import("vue").Ref<{
|
|
|
16430
16746
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
16431
16747
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
16432
16748
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
16749
|
+
aria?: {
|
|
16750
|
+
controls?: string | undefined;
|
|
16751
|
+
selected?: boolean | undefined;
|
|
16752
|
+
} | undefined;
|
|
16433
16753
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
16434
16754
|
events?: {
|
|
16435
16755
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -16446,7 +16766,7 @@ declare const entry: import("vue").Ref<{
|
|
|
16446
16766
|
loading?: boolean | undefined;
|
|
16447
16767
|
class?: string | undefined;
|
|
16448
16768
|
containerClass?: string | undefined;
|
|
16449
|
-
|
|
16769
|
+
wrapButton?: boolean | undefined;
|
|
16450
16770
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
16451
16771
|
icon?: string | {
|
|
16452
16772
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -16634,6 +16954,10 @@ declare const entry: import("vue").Ref<{
|
|
|
16634
16954
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
16635
16955
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
16636
16956
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
16957
|
+
aria?: {
|
|
16958
|
+
controls?: string | undefined;
|
|
16959
|
+
selected?: boolean | undefined;
|
|
16960
|
+
} | undefined;
|
|
16637
16961
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
16638
16962
|
events?: {
|
|
16639
16963
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -16682,6 +17006,10 @@ declare const entry: import("vue").Ref<{
|
|
|
16682
17006
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
16683
17007
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
16684
17008
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
17009
|
+
aria?: {
|
|
17010
|
+
controls?: string | undefined;
|
|
17011
|
+
selected?: boolean | undefined;
|
|
17012
|
+
} | undefined;
|
|
16685
17013
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
16686
17014
|
events?: {
|
|
16687
17015
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -16698,7 +17026,7 @@ declare const entry: import("vue").Ref<{
|
|
|
16698
17026
|
loading?: boolean | undefined;
|
|
16699
17027
|
class?: string | undefined;
|
|
16700
17028
|
containerClass?: string | undefined;
|
|
16701
|
-
|
|
17029
|
+
wrapButton?: boolean | undefined;
|
|
16702
17030
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
16703
17031
|
icon?: string | {
|
|
16704
17032
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -16822,7 +17150,7 @@ declare const entry: import("vue").Ref<{
|
|
|
16822
17150
|
loading?: boolean | undefined;
|
|
16823
17151
|
class?: string | undefined;
|
|
16824
17152
|
containerClass?: string | undefined;
|
|
16825
|
-
|
|
17153
|
+
wrapButton?: boolean | undefined;
|
|
16826
17154
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
16827
17155
|
icon?: string | {
|
|
16828
17156
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -16996,6 +17324,10 @@ declare const entry: import("vue").Ref<{
|
|
|
16996
17324
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
16997
17325
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
16998
17326
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
17327
|
+
aria?: {
|
|
17328
|
+
controls?: string | undefined;
|
|
17329
|
+
selected?: boolean | undefined;
|
|
17330
|
+
} | undefined;
|
|
16999
17331
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
17000
17332
|
events?: {
|
|
17001
17333
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -17012,7 +17344,7 @@ declare const entry: import("vue").Ref<{
|
|
|
17012
17344
|
loading?: boolean | undefined;
|
|
17013
17345
|
class?: string | undefined;
|
|
17014
17346
|
containerClass?: string | undefined;
|
|
17015
|
-
|
|
17347
|
+
wrapButton?: boolean | undefined;
|
|
17016
17348
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
17017
17349
|
icon?: string | {
|
|
17018
17350
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -17186,6 +17518,10 @@ declare const entry: import("vue").Ref<{
|
|
|
17186
17518
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
17187
17519
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
17188
17520
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
17521
|
+
aria?: {
|
|
17522
|
+
controls?: string | undefined;
|
|
17523
|
+
selected?: boolean | undefined;
|
|
17524
|
+
} | undefined;
|
|
17189
17525
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
17190
17526
|
events?: {
|
|
17191
17527
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -17202,7 +17538,7 @@ declare const entry: import("vue").Ref<{
|
|
|
17202
17538
|
loading?: boolean | undefined;
|
|
17203
17539
|
class?: string | undefined;
|
|
17204
17540
|
containerClass?: string | undefined;
|
|
17205
|
-
|
|
17541
|
+
wrapButton?: boolean | undefined;
|
|
17206
17542
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
17207
17543
|
icon?: string | {
|
|
17208
17544
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -17376,6 +17712,10 @@ declare const entry: import("vue").Ref<{
|
|
|
17376
17712
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
17377
17713
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
17378
17714
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
17715
|
+
aria?: {
|
|
17716
|
+
controls?: string | undefined;
|
|
17717
|
+
selected?: boolean | undefined;
|
|
17718
|
+
} | undefined;
|
|
17379
17719
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
17380
17720
|
events?: {
|
|
17381
17721
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -17438,7 +17778,7 @@ declare const entry: import("vue").Ref<{
|
|
|
17438
17778
|
loading?: boolean | undefined;
|
|
17439
17779
|
class?: string | undefined;
|
|
17440
17780
|
containerClass?: string | undefined;
|
|
17441
|
-
|
|
17781
|
+
wrapButton?: boolean | undefined;
|
|
17442
17782
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
17443
17783
|
icon?: string | {
|
|
17444
17784
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -17626,6 +17966,10 @@ declare const entry: import("vue").Ref<{
|
|
|
17626
17966
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
17627
17967
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
17628
17968
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
17969
|
+
aria?: {
|
|
17970
|
+
controls?: string | undefined;
|
|
17971
|
+
selected?: boolean | undefined;
|
|
17972
|
+
} | undefined;
|
|
17629
17973
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
17630
17974
|
events?: {
|
|
17631
17975
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -17642,7 +17986,7 @@ declare const entry: import("vue").Ref<{
|
|
|
17642
17986
|
loading?: boolean | undefined;
|
|
17643
17987
|
class?: string | undefined;
|
|
17644
17988
|
containerClass?: string | undefined;
|
|
17645
|
-
|
|
17989
|
+
wrapButton?: boolean | undefined;
|
|
17646
17990
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
17647
17991
|
icon?: string | {
|
|
17648
17992
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -17830,6 +18174,10 @@ declare const entry: import("vue").Ref<{
|
|
|
17830
18174
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
17831
18175
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
17832
18176
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
18177
|
+
aria?: {
|
|
18178
|
+
controls?: string | undefined;
|
|
18179
|
+
selected?: boolean | undefined;
|
|
18180
|
+
} | undefined;
|
|
17833
18181
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
17834
18182
|
events?: {
|
|
17835
18183
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -17846,7 +18194,7 @@ declare const entry: import("vue").Ref<{
|
|
|
17846
18194
|
loading?: boolean | undefined;
|
|
17847
18195
|
class?: string | undefined;
|
|
17848
18196
|
containerClass?: string | undefined;
|
|
17849
|
-
|
|
18197
|
+
wrapButton?: boolean | undefined;
|
|
17850
18198
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
17851
18199
|
icon?: string | {
|
|
17852
18200
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -18034,6 +18382,10 @@ declare const entry: import("vue").Ref<{
|
|
|
18034
18382
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
18035
18383
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
18036
18384
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
18385
|
+
aria?: {
|
|
18386
|
+
controls?: string | undefined;
|
|
18387
|
+
selected?: boolean | undefined;
|
|
18388
|
+
} | undefined;
|
|
18037
18389
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
18038
18390
|
events?: {
|
|
18039
18391
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -18073,7 +18425,7 @@ declare const entry: import("vue").Ref<{
|
|
|
18073
18425
|
loading?: boolean | undefined;
|
|
18074
18426
|
class?: string | undefined;
|
|
18075
18427
|
containerClass?: string | undefined;
|
|
18076
|
-
|
|
18428
|
+
wrapButton?: boolean | undefined;
|
|
18077
18429
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
18078
18430
|
icon?: string | {
|
|
18079
18431
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -18261,6 +18613,10 @@ declare const entry: import("vue").Ref<{
|
|
|
18261
18613
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
18262
18614
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
18263
18615
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
18616
|
+
aria?: {
|
|
18617
|
+
controls?: string | undefined;
|
|
18618
|
+
selected?: boolean | undefined;
|
|
18619
|
+
} | undefined;
|
|
18264
18620
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
18265
18621
|
events?: {
|
|
18266
18622
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -18277,7 +18633,7 @@ declare const entry: import("vue").Ref<{
|
|
|
18277
18633
|
loading?: boolean | undefined;
|
|
18278
18634
|
class?: string | undefined;
|
|
18279
18635
|
containerClass?: string | undefined;
|
|
18280
|
-
|
|
18636
|
+
wrapButton?: boolean | undefined;
|
|
18281
18637
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
18282
18638
|
icon?: string | {
|
|
18283
18639
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -18465,6 +18821,10 @@ declare const entry: import("vue").Ref<{
|
|
|
18465
18821
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
18466
18822
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
18467
18823
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
18824
|
+
aria?: {
|
|
18825
|
+
controls?: string | undefined;
|
|
18826
|
+
selected?: boolean | undefined;
|
|
18827
|
+
} | undefined;
|
|
18468
18828
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
18469
18829
|
events?: {
|
|
18470
18830
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -18481,7 +18841,7 @@ declare const entry: import("vue").Ref<{
|
|
|
18481
18841
|
loading?: boolean | undefined;
|
|
18482
18842
|
class?: string | undefined;
|
|
18483
18843
|
containerClass?: string | undefined;
|
|
18484
|
-
|
|
18844
|
+
wrapButton?: boolean | undefined;
|
|
18485
18845
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
18486
18846
|
icon?: string | {
|
|
18487
18847
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -18669,6 +19029,10 @@ declare const entry: import("vue").Ref<{
|
|
|
18669
19029
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
18670
19030
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
18671
19031
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
19032
|
+
aria?: {
|
|
19033
|
+
controls?: string | undefined;
|
|
19034
|
+
selected?: boolean | undefined;
|
|
19035
|
+
} | undefined;
|
|
18672
19036
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
18673
19037
|
events?: {
|
|
18674
19038
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -18717,6 +19081,10 @@ declare const entry: import("vue").Ref<{
|
|
|
18717
19081
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
18718
19082
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
18719
19083
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
19084
|
+
aria?: {
|
|
19085
|
+
controls?: string | undefined;
|
|
19086
|
+
selected?: boolean | undefined;
|
|
19087
|
+
} | undefined;
|
|
18720
19088
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
18721
19089
|
events?: {
|
|
18722
19090
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -18793,7 +19161,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
18793
19161
|
loading?: boolean | undefined;
|
|
18794
19162
|
class?: string | undefined;
|
|
18795
19163
|
containerClass?: string | undefined;
|
|
18796
|
-
|
|
19164
|
+
wrapButton?: boolean | undefined;
|
|
18797
19165
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
18798
19166
|
icon?: string | {
|
|
18799
19167
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -18973,7 +19341,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
18973
19341
|
loading?: boolean | undefined;
|
|
18974
19342
|
class?: string | undefined;
|
|
18975
19343
|
containerClass?: string | undefined;
|
|
18976
|
-
|
|
19344
|
+
wrapButton?: boolean | undefined;
|
|
18977
19345
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
18978
19346
|
icon?: string | {
|
|
18979
19347
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -19147,6 +19515,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19147
19515
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
19148
19516
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
19149
19517
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
19518
|
+
aria?: {
|
|
19519
|
+
controls?: string | undefined;
|
|
19520
|
+
selected?: boolean | undefined;
|
|
19521
|
+
} | undefined;
|
|
19150
19522
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
19151
19523
|
events?: {
|
|
19152
19524
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -19156,6 +19528,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19156
19528
|
}[] | undefined;
|
|
19157
19529
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
19158
19530
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
19531
|
+
aria?: {
|
|
19532
|
+
controls?: string | undefined;
|
|
19533
|
+
selected?: boolean | undefined;
|
|
19534
|
+
} | undefined;
|
|
19159
19535
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
19160
19536
|
events?: {
|
|
19161
19537
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -19172,7 +19548,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19172
19548
|
loading?: boolean | undefined;
|
|
19173
19549
|
class?: string | undefined;
|
|
19174
19550
|
containerClass?: string | undefined;
|
|
19175
|
-
|
|
19551
|
+
wrapButton?: boolean | undefined;
|
|
19176
19552
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
19177
19553
|
icon?: string | {
|
|
19178
19554
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -19352,7 +19728,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19352
19728
|
loading?: boolean | undefined;
|
|
19353
19729
|
class?: string | undefined;
|
|
19354
19730
|
containerClass?: string | undefined;
|
|
19355
|
-
|
|
19731
|
+
wrapButton?: boolean | undefined;
|
|
19356
19732
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
19357
19733
|
icon?: string | {
|
|
19358
19734
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -19526,6 +19902,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19526
19902
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
19527
19903
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
19528
19904
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
19905
|
+
aria?: {
|
|
19906
|
+
controls?: string | undefined;
|
|
19907
|
+
selected?: boolean | undefined;
|
|
19908
|
+
} | undefined;
|
|
19529
19909
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
19530
19910
|
events?: {
|
|
19531
19911
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -19535,6 +19915,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19535
19915
|
}[] | undefined;
|
|
19536
19916
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
19537
19917
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
19918
|
+
aria?: {
|
|
19919
|
+
controls?: string | undefined;
|
|
19920
|
+
selected?: boolean | undefined;
|
|
19921
|
+
} | undefined;
|
|
19538
19922
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
19539
19923
|
events?: {
|
|
19540
19924
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -19551,7 +19935,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19551
19935
|
loading?: boolean | undefined;
|
|
19552
19936
|
class?: string | undefined;
|
|
19553
19937
|
containerClass?: string | undefined;
|
|
19554
|
-
|
|
19938
|
+
wrapButton?: boolean | undefined;
|
|
19555
19939
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
19556
19940
|
icon?: string | {
|
|
19557
19941
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -19731,7 +20115,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19731
20115
|
loading?: boolean | undefined;
|
|
19732
20116
|
class?: string | undefined;
|
|
19733
20117
|
containerClass?: string | undefined;
|
|
19734
|
-
|
|
20118
|
+
wrapButton?: boolean | undefined;
|
|
19735
20119
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
19736
20120
|
icon?: string | {
|
|
19737
20121
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -19905,6 +20289,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19905
20289
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
19906
20290
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
19907
20291
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
20292
|
+
aria?: {
|
|
20293
|
+
controls?: string | undefined;
|
|
20294
|
+
selected?: boolean | undefined;
|
|
20295
|
+
} | undefined;
|
|
19908
20296
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
19909
20297
|
events?: {
|
|
19910
20298
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -19914,6 +20302,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19914
20302
|
}[] | undefined;
|
|
19915
20303
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
19916
20304
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
20305
|
+
aria?: {
|
|
20306
|
+
controls?: string | undefined;
|
|
20307
|
+
selected?: boolean | undefined;
|
|
20308
|
+
} | undefined;
|
|
19917
20309
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
19918
20310
|
events?: {
|
|
19919
20311
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -19952,7 +20344,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
19952
20344
|
loading?: boolean | undefined;
|
|
19953
20345
|
class?: string | undefined;
|
|
19954
20346
|
containerClass?: string | undefined;
|
|
19955
|
-
|
|
20347
|
+
wrapButton?: boolean | undefined;
|
|
19956
20348
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
19957
20349
|
icon?: string | {
|
|
19958
20350
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -20076,7 +20468,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20076
20468
|
loading?: boolean | undefined;
|
|
20077
20469
|
class?: string | undefined;
|
|
20078
20470
|
containerClass?: string | undefined;
|
|
20079
|
-
|
|
20471
|
+
wrapButton?: boolean | undefined;
|
|
20080
20472
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
20081
20473
|
icon?: string | {
|
|
20082
20474
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -20250,6 +20642,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20250
20642
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
20251
20643
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
20252
20644
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
20645
|
+
aria?: {
|
|
20646
|
+
controls?: string | undefined;
|
|
20647
|
+
selected?: boolean | undefined;
|
|
20648
|
+
} | undefined;
|
|
20253
20649
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
20254
20650
|
events?: {
|
|
20255
20651
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -20266,7 +20662,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20266
20662
|
loading?: boolean | undefined;
|
|
20267
20663
|
class?: string | undefined;
|
|
20268
20664
|
containerClass?: string | undefined;
|
|
20269
|
-
|
|
20665
|
+
wrapButton?: boolean | undefined;
|
|
20270
20666
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
20271
20667
|
icon?: string | {
|
|
20272
20668
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -20440,6 +20836,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20440
20836
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
20441
20837
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
20442
20838
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
20839
|
+
aria?: {
|
|
20840
|
+
controls?: string | undefined;
|
|
20841
|
+
selected?: boolean | undefined;
|
|
20842
|
+
} | undefined;
|
|
20443
20843
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
20444
20844
|
events?: {
|
|
20445
20845
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -20456,7 +20856,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20456
20856
|
loading?: boolean | undefined;
|
|
20457
20857
|
class?: string | undefined;
|
|
20458
20858
|
containerClass?: string | undefined;
|
|
20459
|
-
|
|
20859
|
+
wrapButton?: boolean | undefined;
|
|
20460
20860
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
20461
20861
|
icon?: string | {
|
|
20462
20862
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -20630,6 +21030,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20630
21030
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
20631
21031
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
20632
21032
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
21033
|
+
aria?: {
|
|
21034
|
+
controls?: string | undefined;
|
|
21035
|
+
selected?: boolean | undefined;
|
|
21036
|
+
} | undefined;
|
|
20633
21037
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
20634
21038
|
events?: {
|
|
20635
21039
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -20692,7 +21096,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20692
21096
|
loading?: boolean | undefined;
|
|
20693
21097
|
class?: string | undefined;
|
|
20694
21098
|
containerClass?: string | undefined;
|
|
20695
|
-
|
|
21099
|
+
wrapButton?: boolean | undefined;
|
|
20696
21100
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
20697
21101
|
icon?: string | {
|
|
20698
21102
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -20880,6 +21284,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20880
21284
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
20881
21285
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
20882
21286
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
21287
|
+
aria?: {
|
|
21288
|
+
controls?: string | undefined;
|
|
21289
|
+
selected?: boolean | undefined;
|
|
21290
|
+
} | undefined;
|
|
20883
21291
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
20884
21292
|
events?: {
|
|
20885
21293
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -20896,7 +21304,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
20896
21304
|
loading?: boolean | undefined;
|
|
20897
21305
|
class?: string | undefined;
|
|
20898
21306
|
containerClass?: string | undefined;
|
|
20899
|
-
|
|
21307
|
+
wrapButton?: boolean | undefined;
|
|
20900
21308
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
20901
21309
|
icon?: string | {
|
|
20902
21310
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -21084,6 +21492,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21084
21492
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
21085
21493
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
21086
21494
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
21495
|
+
aria?: {
|
|
21496
|
+
controls?: string | undefined;
|
|
21497
|
+
selected?: boolean | undefined;
|
|
21498
|
+
} | undefined;
|
|
21087
21499
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
21088
21500
|
events?: {
|
|
21089
21501
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -21100,7 +21512,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21100
21512
|
loading?: boolean | undefined;
|
|
21101
21513
|
class?: string | undefined;
|
|
21102
21514
|
containerClass?: string | undefined;
|
|
21103
|
-
|
|
21515
|
+
wrapButton?: boolean | undefined;
|
|
21104
21516
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
21105
21517
|
icon?: string | {
|
|
21106
21518
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -21288,6 +21700,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21288
21700
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
21289
21701
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
21290
21702
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
21703
|
+
aria?: {
|
|
21704
|
+
controls?: string | undefined;
|
|
21705
|
+
selected?: boolean | undefined;
|
|
21706
|
+
} | undefined;
|
|
21291
21707
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
21292
21708
|
events?: {
|
|
21293
21709
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -21327,7 +21743,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21327
21743
|
loading?: boolean | undefined;
|
|
21328
21744
|
class?: string | undefined;
|
|
21329
21745
|
containerClass?: string | undefined;
|
|
21330
|
-
|
|
21746
|
+
wrapButton?: boolean | undefined;
|
|
21331
21747
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
21332
21748
|
icon?: string | {
|
|
21333
21749
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -21515,6 +21931,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21515
21931
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
21516
21932
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
21517
21933
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
21934
|
+
aria?: {
|
|
21935
|
+
controls?: string | undefined;
|
|
21936
|
+
selected?: boolean | undefined;
|
|
21937
|
+
} | undefined;
|
|
21518
21938
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
21519
21939
|
events?: {
|
|
21520
21940
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -21531,7 +21951,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21531
21951
|
loading?: boolean | undefined;
|
|
21532
21952
|
class?: string | undefined;
|
|
21533
21953
|
containerClass?: string | undefined;
|
|
21534
|
-
|
|
21954
|
+
wrapButton?: boolean | undefined;
|
|
21535
21955
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
21536
21956
|
icon?: string | {
|
|
21537
21957
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -21719,6 +22139,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21719
22139
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
21720
22140
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
21721
22141
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
22142
|
+
aria?: {
|
|
22143
|
+
controls?: string | undefined;
|
|
22144
|
+
selected?: boolean | undefined;
|
|
22145
|
+
} | undefined;
|
|
21722
22146
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
21723
22147
|
events?: {
|
|
21724
22148
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -21735,7 +22159,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21735
22159
|
loading?: boolean | undefined;
|
|
21736
22160
|
class?: string | undefined;
|
|
21737
22161
|
containerClass?: string | undefined;
|
|
21738
|
-
|
|
22162
|
+
wrapButton?: boolean | undefined;
|
|
21739
22163
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
21740
22164
|
icon?: string | {
|
|
21741
22165
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -21923,6 +22347,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21923
22347
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
21924
22348
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
21925
22349
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
22350
|
+
aria?: {
|
|
22351
|
+
controls?: string | undefined;
|
|
22352
|
+
selected?: boolean | undefined;
|
|
22353
|
+
} | undefined;
|
|
21926
22354
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
21927
22355
|
events?: {
|
|
21928
22356
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -21971,6 +22399,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
21971
22399
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
21972
22400
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
21973
22401
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
22402
|
+
aria?: {
|
|
22403
|
+
controls?: string | undefined;
|
|
22404
|
+
selected?: boolean | undefined;
|
|
22405
|
+
} | undefined;
|
|
21974
22406
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
21975
22407
|
events?: {
|
|
21976
22408
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -22003,7 +22435,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22003
22435
|
loading?: boolean | undefined;
|
|
22004
22436
|
class?: string | undefined;
|
|
22005
22437
|
containerClass?: string | undefined;
|
|
22006
|
-
|
|
22438
|
+
wrapButton?: boolean | undefined;
|
|
22007
22439
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
22008
22440
|
icon?: string | {
|
|
22009
22441
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -22127,7 +22559,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22127
22559
|
loading?: boolean | undefined;
|
|
22128
22560
|
class?: string | undefined;
|
|
22129
22561
|
containerClass?: string | undefined;
|
|
22130
|
-
|
|
22562
|
+
wrapButton?: boolean | undefined;
|
|
22131
22563
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
22132
22564
|
icon?: string | {
|
|
22133
22565
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -22301,6 +22733,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22301
22733
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
22302
22734
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
22303
22735
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
22736
|
+
aria?: {
|
|
22737
|
+
controls?: string | undefined;
|
|
22738
|
+
selected?: boolean | undefined;
|
|
22739
|
+
} | undefined;
|
|
22304
22740
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
22305
22741
|
events?: {
|
|
22306
22742
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -22317,7 +22753,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22317
22753
|
loading?: boolean | undefined;
|
|
22318
22754
|
class?: string | undefined;
|
|
22319
22755
|
containerClass?: string | undefined;
|
|
22320
|
-
|
|
22756
|
+
wrapButton?: boolean | undefined;
|
|
22321
22757
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
22322
22758
|
icon?: string | {
|
|
22323
22759
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -22491,6 +22927,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22491
22927
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
22492
22928
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
22493
22929
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
22930
|
+
aria?: {
|
|
22931
|
+
controls?: string | undefined;
|
|
22932
|
+
selected?: boolean | undefined;
|
|
22933
|
+
} | undefined;
|
|
22494
22934
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
22495
22935
|
events?: {
|
|
22496
22936
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -22507,7 +22947,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22507
22947
|
loading?: boolean | undefined;
|
|
22508
22948
|
class?: string | undefined;
|
|
22509
22949
|
containerClass?: string | undefined;
|
|
22510
|
-
|
|
22950
|
+
wrapButton?: boolean | undefined;
|
|
22511
22951
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
22512
22952
|
icon?: string | {
|
|
22513
22953
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -22681,6 +23121,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22681
23121
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
22682
23122
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
22683
23123
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
23124
|
+
aria?: {
|
|
23125
|
+
controls?: string | undefined;
|
|
23126
|
+
selected?: boolean | undefined;
|
|
23127
|
+
} | undefined;
|
|
22684
23128
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
22685
23129
|
events?: {
|
|
22686
23130
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -22743,7 +23187,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22743
23187
|
loading?: boolean | undefined;
|
|
22744
23188
|
class?: string | undefined;
|
|
22745
23189
|
containerClass?: string | undefined;
|
|
22746
|
-
|
|
23190
|
+
wrapButton?: boolean | undefined;
|
|
22747
23191
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
22748
23192
|
icon?: string | {
|
|
22749
23193
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -22931,6 +23375,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22931
23375
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
22932
23376
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
22933
23377
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
23378
|
+
aria?: {
|
|
23379
|
+
controls?: string | undefined;
|
|
23380
|
+
selected?: boolean | undefined;
|
|
23381
|
+
} | undefined;
|
|
22934
23382
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
22935
23383
|
events?: {
|
|
22936
23384
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -22947,7 +23395,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
22947
23395
|
loading?: boolean | undefined;
|
|
22948
23396
|
class?: string | undefined;
|
|
22949
23397
|
containerClass?: string | undefined;
|
|
22950
|
-
|
|
23398
|
+
wrapButton?: boolean | undefined;
|
|
22951
23399
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
22952
23400
|
icon?: string | {
|
|
22953
23401
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -23135,6 +23583,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23135
23583
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
23136
23584
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
23137
23585
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
23586
|
+
aria?: {
|
|
23587
|
+
controls?: string | undefined;
|
|
23588
|
+
selected?: boolean | undefined;
|
|
23589
|
+
} | undefined;
|
|
23138
23590
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
23139
23591
|
events?: {
|
|
23140
23592
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -23151,7 +23603,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23151
23603
|
loading?: boolean | undefined;
|
|
23152
23604
|
class?: string | undefined;
|
|
23153
23605
|
containerClass?: string | undefined;
|
|
23154
|
-
|
|
23606
|
+
wrapButton?: boolean | undefined;
|
|
23155
23607
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
23156
23608
|
icon?: string | {
|
|
23157
23609
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -23339,6 +23791,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23339
23791
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
23340
23792
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
23341
23793
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
23794
|
+
aria?: {
|
|
23795
|
+
controls?: string | undefined;
|
|
23796
|
+
selected?: boolean | undefined;
|
|
23797
|
+
} | undefined;
|
|
23342
23798
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
23343
23799
|
events?: {
|
|
23344
23800
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -23378,7 +23834,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23378
23834
|
loading?: boolean | undefined;
|
|
23379
23835
|
class?: string | undefined;
|
|
23380
23836
|
containerClass?: string | undefined;
|
|
23381
|
-
|
|
23837
|
+
wrapButton?: boolean | undefined;
|
|
23382
23838
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
23383
23839
|
icon?: string | {
|
|
23384
23840
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -23566,6 +24022,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23566
24022
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
23567
24023
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
23568
24024
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
24025
|
+
aria?: {
|
|
24026
|
+
controls?: string | undefined;
|
|
24027
|
+
selected?: boolean | undefined;
|
|
24028
|
+
} | undefined;
|
|
23569
24029
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
23570
24030
|
events?: {
|
|
23571
24031
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -23582,7 +24042,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23582
24042
|
loading?: boolean | undefined;
|
|
23583
24043
|
class?: string | undefined;
|
|
23584
24044
|
containerClass?: string | undefined;
|
|
23585
|
-
|
|
24045
|
+
wrapButton?: boolean | undefined;
|
|
23586
24046
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
23587
24047
|
icon?: string | {
|
|
23588
24048
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -23770,6 +24230,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23770
24230
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
23771
24231
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
23772
24232
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
24233
|
+
aria?: {
|
|
24234
|
+
controls?: string | undefined;
|
|
24235
|
+
selected?: boolean | undefined;
|
|
24236
|
+
} | undefined;
|
|
23773
24237
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
23774
24238
|
events?: {
|
|
23775
24239
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -23786,7 +24250,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23786
24250
|
loading?: boolean | undefined;
|
|
23787
24251
|
class?: string | undefined;
|
|
23788
24252
|
containerClass?: string | undefined;
|
|
23789
|
-
|
|
24253
|
+
wrapButton?: boolean | undefined;
|
|
23790
24254
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
23791
24255
|
icon?: string | {
|
|
23792
24256
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -23974,6 +24438,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
23974
24438
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
23975
24439
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
23976
24440
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
24441
|
+
aria?: {
|
|
24442
|
+
controls?: string | undefined;
|
|
24443
|
+
selected?: boolean | undefined;
|
|
24444
|
+
} | undefined;
|
|
23977
24445
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
23978
24446
|
events?: {
|
|
23979
24447
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -24022,6 +24490,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24022
24490
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
24023
24491
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
24024
24492
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
24493
|
+
aria?: {
|
|
24494
|
+
controls?: string | undefined;
|
|
24495
|
+
selected?: boolean | undefined;
|
|
24496
|
+
} | undefined;
|
|
24025
24497
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
24026
24498
|
events?: {
|
|
24027
24499
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -24038,7 +24510,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24038
24510
|
loading?: boolean | undefined;
|
|
24039
24511
|
class?: string | undefined;
|
|
24040
24512
|
containerClass?: string | undefined;
|
|
24041
|
-
|
|
24513
|
+
wrapButton?: boolean | undefined;
|
|
24042
24514
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
24043
24515
|
icon?: string | {
|
|
24044
24516
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -24162,7 +24634,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24162
24634
|
loading?: boolean | undefined;
|
|
24163
24635
|
class?: string | undefined;
|
|
24164
24636
|
containerClass?: string | undefined;
|
|
24165
|
-
|
|
24637
|
+
wrapButton?: boolean | undefined;
|
|
24166
24638
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
24167
24639
|
icon?: string | {
|
|
24168
24640
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -24336,6 +24808,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24336
24808
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
24337
24809
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
24338
24810
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
24811
|
+
aria?: {
|
|
24812
|
+
controls?: string | undefined;
|
|
24813
|
+
selected?: boolean | undefined;
|
|
24814
|
+
} | undefined;
|
|
24339
24815
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
24340
24816
|
events?: {
|
|
24341
24817
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -24352,7 +24828,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24352
24828
|
loading?: boolean | undefined;
|
|
24353
24829
|
class?: string | undefined;
|
|
24354
24830
|
containerClass?: string | undefined;
|
|
24355
|
-
|
|
24831
|
+
wrapButton?: boolean | undefined;
|
|
24356
24832
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
24357
24833
|
icon?: string | {
|
|
24358
24834
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -24526,6 +25002,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24526
25002
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
24527
25003
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
24528
25004
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
25005
|
+
aria?: {
|
|
25006
|
+
controls?: string | undefined;
|
|
25007
|
+
selected?: boolean | undefined;
|
|
25008
|
+
} | undefined;
|
|
24529
25009
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
24530
25010
|
events?: {
|
|
24531
25011
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -24542,7 +25022,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24542
25022
|
loading?: boolean | undefined;
|
|
24543
25023
|
class?: string | undefined;
|
|
24544
25024
|
containerClass?: string | undefined;
|
|
24545
|
-
|
|
25025
|
+
wrapButton?: boolean | undefined;
|
|
24546
25026
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
24547
25027
|
icon?: string | {
|
|
24548
25028
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -24716,6 +25196,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24716
25196
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
24717
25197
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
24718
25198
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
25199
|
+
aria?: {
|
|
25200
|
+
controls?: string | undefined;
|
|
25201
|
+
selected?: boolean | undefined;
|
|
25202
|
+
} | undefined;
|
|
24719
25203
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
24720
25204
|
events?: {
|
|
24721
25205
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -24778,7 +25262,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24778
25262
|
loading?: boolean | undefined;
|
|
24779
25263
|
class?: string | undefined;
|
|
24780
25264
|
containerClass?: string | undefined;
|
|
24781
|
-
|
|
25265
|
+
wrapButton?: boolean | undefined;
|
|
24782
25266
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
24783
25267
|
icon?: string | {
|
|
24784
25268
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -24966,6 +25450,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24966
25450
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
24967
25451
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
24968
25452
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
25453
|
+
aria?: {
|
|
25454
|
+
controls?: string | undefined;
|
|
25455
|
+
selected?: boolean | undefined;
|
|
25456
|
+
} | undefined;
|
|
24969
25457
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
24970
25458
|
events?: {
|
|
24971
25459
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -24982,7 +25470,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
24982
25470
|
loading?: boolean | undefined;
|
|
24983
25471
|
class?: string | undefined;
|
|
24984
25472
|
containerClass?: string | undefined;
|
|
24985
|
-
|
|
25473
|
+
wrapButton?: boolean | undefined;
|
|
24986
25474
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
24987
25475
|
icon?: string | {
|
|
24988
25476
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -25170,6 +25658,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25170
25658
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
25171
25659
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
25172
25660
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
25661
|
+
aria?: {
|
|
25662
|
+
controls?: string | undefined;
|
|
25663
|
+
selected?: boolean | undefined;
|
|
25664
|
+
} | undefined;
|
|
25173
25665
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
25174
25666
|
events?: {
|
|
25175
25667
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -25186,7 +25678,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25186
25678
|
loading?: boolean | undefined;
|
|
25187
25679
|
class?: string | undefined;
|
|
25188
25680
|
containerClass?: string | undefined;
|
|
25189
|
-
|
|
25681
|
+
wrapButton?: boolean | undefined;
|
|
25190
25682
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
25191
25683
|
icon?: string | {
|
|
25192
25684
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -25374,6 +25866,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25374
25866
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
25375
25867
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
25376
25868
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
25869
|
+
aria?: {
|
|
25870
|
+
controls?: string | undefined;
|
|
25871
|
+
selected?: boolean | undefined;
|
|
25872
|
+
} | undefined;
|
|
25377
25873
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
25378
25874
|
events?: {
|
|
25379
25875
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -25413,7 +25909,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25413
25909
|
loading?: boolean | undefined;
|
|
25414
25910
|
class?: string | undefined;
|
|
25415
25911
|
containerClass?: string | undefined;
|
|
25416
|
-
|
|
25912
|
+
wrapButton?: boolean | undefined;
|
|
25417
25913
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
25418
25914
|
icon?: string | {
|
|
25419
25915
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -25601,6 +26097,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25601
26097
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
25602
26098
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
25603
26099
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
26100
|
+
aria?: {
|
|
26101
|
+
controls?: string | undefined;
|
|
26102
|
+
selected?: boolean | undefined;
|
|
26103
|
+
} | undefined;
|
|
25604
26104
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
25605
26105
|
events?: {
|
|
25606
26106
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -25617,7 +26117,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25617
26117
|
loading?: boolean | undefined;
|
|
25618
26118
|
class?: string | undefined;
|
|
25619
26119
|
containerClass?: string | undefined;
|
|
25620
|
-
|
|
26120
|
+
wrapButton?: boolean | undefined;
|
|
25621
26121
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
25622
26122
|
icon?: string | {
|
|
25623
26123
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -25805,6 +26305,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25805
26305
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
25806
26306
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
25807
26307
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
26308
|
+
aria?: {
|
|
26309
|
+
controls?: string | undefined;
|
|
26310
|
+
selected?: boolean | undefined;
|
|
26311
|
+
} | undefined;
|
|
25808
26312
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
25809
26313
|
events?: {
|
|
25810
26314
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -25821,7 +26325,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
25821
26325
|
loading?: boolean | undefined;
|
|
25822
26326
|
class?: string | undefined;
|
|
25823
26327
|
containerClass?: string | undefined;
|
|
25824
|
-
|
|
26328
|
+
wrapButton?: boolean | undefined;
|
|
25825
26329
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
25826
26330
|
icon?: string | {
|
|
25827
26331
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -26009,6 +26513,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26009
26513
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
26010
26514
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
26011
26515
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
26516
|
+
aria?: {
|
|
26517
|
+
controls?: string | undefined;
|
|
26518
|
+
selected?: boolean | undefined;
|
|
26519
|
+
} | undefined;
|
|
26012
26520
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
26013
26521
|
events?: {
|
|
26014
26522
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -26057,6 +26565,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26057
26565
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
26058
26566
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
26059
26567
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
26568
|
+
aria?: {
|
|
26569
|
+
controls?: string | undefined;
|
|
26570
|
+
selected?: boolean | undefined;
|
|
26571
|
+
} | undefined;
|
|
26060
26572
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
26061
26573
|
events?: {
|
|
26062
26574
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -26073,7 +26585,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26073
26585
|
loading?: boolean | undefined;
|
|
26074
26586
|
class?: string | undefined;
|
|
26075
26587
|
containerClass?: string | undefined;
|
|
26076
|
-
|
|
26588
|
+
wrapButton?: boolean | undefined;
|
|
26077
26589
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
26078
26590
|
icon?: string | {
|
|
26079
26591
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -26197,7 +26709,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26197
26709
|
loading?: boolean | undefined;
|
|
26198
26710
|
class?: string | undefined;
|
|
26199
26711
|
containerClass?: string | undefined;
|
|
26200
|
-
|
|
26712
|
+
wrapButton?: boolean | undefined;
|
|
26201
26713
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
26202
26714
|
icon?: string | {
|
|
26203
26715
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -26371,6 +26883,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26371
26883
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
26372
26884
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
26373
26885
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
26886
|
+
aria?: {
|
|
26887
|
+
controls?: string | undefined;
|
|
26888
|
+
selected?: boolean | undefined;
|
|
26889
|
+
} | undefined;
|
|
26374
26890
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
26375
26891
|
events?: {
|
|
26376
26892
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -26387,7 +26903,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26387
26903
|
loading?: boolean | undefined;
|
|
26388
26904
|
class?: string | undefined;
|
|
26389
26905
|
containerClass?: string | undefined;
|
|
26390
|
-
|
|
26906
|
+
wrapButton?: boolean | undefined;
|
|
26391
26907
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
26392
26908
|
icon?: string | {
|
|
26393
26909
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -26561,6 +27077,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26561
27077
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
26562
27078
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
26563
27079
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
27080
|
+
aria?: {
|
|
27081
|
+
controls?: string | undefined;
|
|
27082
|
+
selected?: boolean | undefined;
|
|
27083
|
+
} | undefined;
|
|
26564
27084
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
26565
27085
|
events?: {
|
|
26566
27086
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -26577,7 +27097,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26577
27097
|
loading?: boolean | undefined;
|
|
26578
27098
|
class?: string | undefined;
|
|
26579
27099
|
containerClass?: string | undefined;
|
|
26580
|
-
|
|
27100
|
+
wrapButton?: boolean | undefined;
|
|
26581
27101
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
26582
27102
|
icon?: string | {
|
|
26583
27103
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -26751,6 +27271,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26751
27271
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
26752
27272
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
26753
27273
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
27274
|
+
aria?: {
|
|
27275
|
+
controls?: string | undefined;
|
|
27276
|
+
selected?: boolean | undefined;
|
|
27277
|
+
} | undefined;
|
|
26754
27278
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
26755
27279
|
events?: {
|
|
26756
27280
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -26813,7 +27337,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
26813
27337
|
loading?: boolean | undefined;
|
|
26814
27338
|
class?: string | undefined;
|
|
26815
27339
|
containerClass?: string | undefined;
|
|
26816
|
-
|
|
27340
|
+
wrapButton?: boolean | undefined;
|
|
26817
27341
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
26818
27342
|
icon?: string | {
|
|
26819
27343
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -27001,6 +27525,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27001
27525
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
27002
27526
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
27003
27527
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
27528
|
+
aria?: {
|
|
27529
|
+
controls?: string | undefined;
|
|
27530
|
+
selected?: boolean | undefined;
|
|
27531
|
+
} | undefined;
|
|
27004
27532
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
27005
27533
|
events?: {
|
|
27006
27534
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -27017,7 +27545,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27017
27545
|
loading?: boolean | undefined;
|
|
27018
27546
|
class?: string | undefined;
|
|
27019
27547
|
containerClass?: string | undefined;
|
|
27020
|
-
|
|
27548
|
+
wrapButton?: boolean | undefined;
|
|
27021
27549
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
27022
27550
|
icon?: string | {
|
|
27023
27551
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -27205,6 +27733,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27205
27733
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
27206
27734
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
27207
27735
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
27736
|
+
aria?: {
|
|
27737
|
+
controls?: string | undefined;
|
|
27738
|
+
selected?: boolean | undefined;
|
|
27739
|
+
} | undefined;
|
|
27208
27740
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
27209
27741
|
events?: {
|
|
27210
27742
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -27221,7 +27753,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27221
27753
|
loading?: boolean | undefined;
|
|
27222
27754
|
class?: string | undefined;
|
|
27223
27755
|
containerClass?: string | undefined;
|
|
27224
|
-
|
|
27756
|
+
wrapButton?: boolean | undefined;
|
|
27225
27757
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
27226
27758
|
icon?: string | {
|
|
27227
27759
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -27409,6 +27941,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27409
27941
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
27410
27942
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
27411
27943
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
27944
|
+
aria?: {
|
|
27945
|
+
controls?: string | undefined;
|
|
27946
|
+
selected?: boolean | undefined;
|
|
27947
|
+
} | undefined;
|
|
27412
27948
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
27413
27949
|
events?: {
|
|
27414
27950
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -27448,7 +27984,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27448
27984
|
loading?: boolean | undefined;
|
|
27449
27985
|
class?: string | undefined;
|
|
27450
27986
|
containerClass?: string | undefined;
|
|
27451
|
-
|
|
27987
|
+
wrapButton?: boolean | undefined;
|
|
27452
27988
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
27453
27989
|
icon?: string | {
|
|
27454
27990
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -27636,6 +28172,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27636
28172
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
27637
28173
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
27638
28174
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
28175
|
+
aria?: {
|
|
28176
|
+
controls?: string | undefined;
|
|
28177
|
+
selected?: boolean | undefined;
|
|
28178
|
+
} | undefined;
|
|
27639
28179
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
27640
28180
|
events?: {
|
|
27641
28181
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -27652,7 +28192,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27652
28192
|
loading?: boolean | undefined;
|
|
27653
28193
|
class?: string | undefined;
|
|
27654
28194
|
containerClass?: string | undefined;
|
|
27655
|
-
|
|
28195
|
+
wrapButton?: boolean | undefined;
|
|
27656
28196
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
27657
28197
|
icon?: string | {
|
|
27658
28198
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -27840,6 +28380,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27840
28380
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
27841
28381
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
27842
28382
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
28383
|
+
aria?: {
|
|
28384
|
+
controls?: string | undefined;
|
|
28385
|
+
selected?: boolean | undefined;
|
|
28386
|
+
} | undefined;
|
|
27843
28387
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
27844
28388
|
events?: {
|
|
27845
28389
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -27856,7 +28400,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
27856
28400
|
loading?: boolean | undefined;
|
|
27857
28401
|
class?: string | undefined;
|
|
27858
28402
|
containerClass?: string | undefined;
|
|
27859
|
-
|
|
28403
|
+
wrapButton?: boolean | undefined;
|
|
27860
28404
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
27861
28405
|
icon?: string | {
|
|
27862
28406
|
icon?: import("lkt-vue-kernel").ValidTextValue | (() => string);
|
|
@@ -28044,6 +28588,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
28044
28588
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
28045
28589
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
28046
28590
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
28591
|
+
aria?: {
|
|
28592
|
+
controls?: string | undefined;
|
|
28593
|
+
selected?: boolean | undefined;
|
|
28594
|
+
} | undefined;
|
|
28047
28595
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
28048
28596
|
events?: {
|
|
28049
28597
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|
|
@@ -28092,6 +28640,10 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_26: string, __VLS_27: {
|
|
|
28092
28640
|
splitButtons?: /*elided*/ any[] | undefined;
|
|
28093
28641
|
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
28094
28642
|
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
28643
|
+
aria?: {
|
|
28644
|
+
controls?: string | undefined;
|
|
28645
|
+
selected?: boolean | undefined;
|
|
28646
|
+
} | undefined;
|
|
28095
28647
|
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
28096
28648
|
events?: {
|
|
28097
28649
|
click?: ((data: import("lkt-vue-kernel").ClickEventArgs) => void | undefined) | undefined;
|