lkt-menu 2.0.3 → 2.0.5
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/README.md +0 -250
- package/dist/build.js +63 -64
- package/dist/components/MenuItem.vue.d.ts +28 -997
- package/dist/lib-components/LktMenu.vue.d.ts +12 -658
- package/package.json +2 -2
- package/src/components/MenuItem.vue +106 -107
- package/src/lib-components/LktMenu.vue +1 -1
- package/theme/default.css +0 -6
|
@@ -6,6 +6,7 @@ declare const slots: Readonly<{
|
|
|
6
6
|
declare const entries: import("vue").Ref<{
|
|
7
7
|
key?: string | undefined;
|
|
8
8
|
type?: import("lkt-vue-kernel").MenuEntryType | undefined;
|
|
9
|
+
class?: string | undefined;
|
|
9
10
|
icon?: string | undefined;
|
|
10
11
|
anchor?: {
|
|
11
12
|
type?: import("lkt-vue-kernel").AnchorType | undefined;
|
|
@@ -74,43 +75,7 @@ declare const entries: import("vue").Ref<{
|
|
|
74
75
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
75
76
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
76
77
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
77
|
-
anchor?: /*elided*/ any |
|
|
78
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
79
|
-
to?: string | {
|
|
80
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
81
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
82
|
-
path?: undefined | undefined;
|
|
83
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
84
|
-
hash?: string | undefined;
|
|
85
|
-
replace?: boolean | undefined;
|
|
86
|
-
force?: boolean | undefined;
|
|
87
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
88
|
-
} | {
|
|
89
|
-
path: string;
|
|
90
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
91
|
-
hash?: string | undefined;
|
|
92
|
-
replace?: boolean | undefined;
|
|
93
|
-
force?: boolean | undefined;
|
|
94
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
95
|
-
} | undefined;
|
|
96
|
-
class: string;
|
|
97
|
-
isActive: boolean;
|
|
98
|
-
downloadFileName: string;
|
|
99
|
-
disabled: boolean;
|
|
100
|
-
onClick: Function | undefined;
|
|
101
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
102
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
103
|
-
confirmData: LktObject;
|
|
104
|
-
imposter: boolean;
|
|
105
|
-
external: boolean;
|
|
106
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
107
|
-
events?: {
|
|
108
|
-
click?: Function | undefined;
|
|
109
|
-
} | undefined;
|
|
110
|
-
getHref: () => string;
|
|
111
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
112
|
-
assignProp: (key: string, value: any) => void;
|
|
113
|
-
} | undefined;
|
|
78
|
+
anchor?: /*elided*/ any | undefined;
|
|
114
79
|
resource?: string | undefined;
|
|
115
80
|
resourceData?: LktObject | undefined;
|
|
116
81
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -223,43 +188,7 @@ declare const entries: import("vue").Ref<{
|
|
|
223
188
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
224
189
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
225
190
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
226
|
-
anchor?: /*elided*/ any |
|
|
227
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
228
|
-
to?: string | {
|
|
229
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
230
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
231
|
-
path?: undefined | undefined;
|
|
232
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
233
|
-
hash?: string | undefined;
|
|
234
|
-
replace?: boolean | undefined;
|
|
235
|
-
force?: boolean | undefined;
|
|
236
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
237
|
-
} | {
|
|
238
|
-
path: string;
|
|
239
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
240
|
-
hash?: string | undefined;
|
|
241
|
-
replace?: boolean | undefined;
|
|
242
|
-
force?: boolean | undefined;
|
|
243
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
244
|
-
} | undefined;
|
|
245
|
-
class: string;
|
|
246
|
-
isActive: boolean;
|
|
247
|
-
downloadFileName: string;
|
|
248
|
-
disabled: boolean;
|
|
249
|
-
onClick: Function | undefined;
|
|
250
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
251
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
252
|
-
confirmData: LktObject;
|
|
253
|
-
imposter: boolean;
|
|
254
|
-
external: boolean;
|
|
255
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
256
|
-
events?: {
|
|
257
|
-
click?: Function | undefined;
|
|
258
|
-
} | undefined;
|
|
259
|
-
getHref: () => string;
|
|
260
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
261
|
-
assignProp: (key: string, value: any) => void;
|
|
262
|
-
} | undefined;
|
|
191
|
+
anchor?: /*elided*/ any | undefined;
|
|
263
192
|
resource?: string | undefined;
|
|
264
193
|
resourceData?: LktObject | undefined;
|
|
265
194
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -448,43 +377,7 @@ declare const entries: import("vue").Ref<{
|
|
|
448
377
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
449
378
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
450
379
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
451
|
-
anchor?: /*elided*/ any |
|
|
452
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
453
|
-
to?: string | {
|
|
454
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
455
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
456
|
-
path?: undefined | undefined;
|
|
457
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
458
|
-
hash?: string | undefined;
|
|
459
|
-
replace?: boolean | undefined;
|
|
460
|
-
force?: boolean | undefined;
|
|
461
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
462
|
-
} | {
|
|
463
|
-
path: string;
|
|
464
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
465
|
-
hash?: string | undefined;
|
|
466
|
-
replace?: boolean | undefined;
|
|
467
|
-
force?: boolean | undefined;
|
|
468
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
469
|
-
} | undefined;
|
|
470
|
-
class: string;
|
|
471
|
-
isActive: boolean;
|
|
472
|
-
downloadFileName: string;
|
|
473
|
-
disabled: boolean;
|
|
474
|
-
onClick: Function | undefined;
|
|
475
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
476
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
477
|
-
confirmData: LktObject;
|
|
478
|
-
imposter: boolean;
|
|
479
|
-
external: boolean;
|
|
480
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
481
|
-
events?: {
|
|
482
|
-
click?: Function | undefined;
|
|
483
|
-
} | undefined;
|
|
484
|
-
getHref: () => string;
|
|
485
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
486
|
-
assignProp: (key: string, value: any) => void;
|
|
487
|
-
} | undefined;
|
|
380
|
+
anchor?: /*elided*/ any | undefined;
|
|
488
381
|
resource?: string | undefined;
|
|
489
382
|
resourceData?: LktObject | undefined;
|
|
490
383
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -597,43 +490,7 @@ declare const entries: import("vue").Ref<{
|
|
|
597
490
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
598
491
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
599
492
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
600
|
-
anchor?: /*elided*/ any |
|
|
601
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
602
|
-
to?: string | {
|
|
603
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
604
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
605
|
-
path?: undefined | undefined;
|
|
606
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
607
|
-
hash?: string | undefined;
|
|
608
|
-
replace?: boolean | undefined;
|
|
609
|
-
force?: boolean | undefined;
|
|
610
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
611
|
-
} | {
|
|
612
|
-
path: string;
|
|
613
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
614
|
-
hash?: string | undefined;
|
|
615
|
-
replace?: boolean | undefined;
|
|
616
|
-
force?: boolean | undefined;
|
|
617
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
618
|
-
} | undefined;
|
|
619
|
-
class: string;
|
|
620
|
-
isActive: boolean;
|
|
621
|
-
downloadFileName: string;
|
|
622
|
-
disabled: boolean;
|
|
623
|
-
onClick: Function | undefined;
|
|
624
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
625
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
626
|
-
confirmData: LktObject;
|
|
627
|
-
imposter: boolean;
|
|
628
|
-
external: boolean;
|
|
629
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
630
|
-
events?: {
|
|
631
|
-
click?: Function | undefined;
|
|
632
|
-
} | undefined;
|
|
633
|
-
getHref: () => string;
|
|
634
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
635
|
-
assignProp: (key: string, value: any) => void;
|
|
636
|
-
} | undefined;
|
|
493
|
+
anchor?: /*elided*/ any | undefined;
|
|
637
494
|
resource?: string | undefined;
|
|
638
495
|
resourceData?: LktObject | undefined;
|
|
639
496
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -732,42 +589,6 @@ declare const entries: import("vue").Ref<{
|
|
|
732
589
|
click?: Function | undefined;
|
|
733
590
|
} | undefined;
|
|
734
591
|
onClick?: Function | undefined;
|
|
735
|
-
} | {
|
|
736
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
737
|
-
to?: string | {
|
|
738
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
739
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
740
|
-
path?: undefined | undefined;
|
|
741
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
742
|
-
hash?: string | undefined;
|
|
743
|
-
replace?: boolean | undefined;
|
|
744
|
-
force?: boolean | undefined;
|
|
745
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
746
|
-
} | {
|
|
747
|
-
path: string;
|
|
748
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
749
|
-
hash?: string | undefined;
|
|
750
|
-
replace?: boolean | undefined;
|
|
751
|
-
force?: boolean | undefined;
|
|
752
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
753
|
-
} | undefined;
|
|
754
|
-
class: string;
|
|
755
|
-
isActive: boolean;
|
|
756
|
-
downloadFileName: string;
|
|
757
|
-
disabled: boolean;
|
|
758
|
-
onClick: Function | undefined;
|
|
759
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
760
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
761
|
-
confirmData: LktObject;
|
|
762
|
-
imposter: boolean;
|
|
763
|
-
external: boolean;
|
|
764
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
765
|
-
events?: {
|
|
766
|
-
click?: Function | undefined;
|
|
767
|
-
} | undefined;
|
|
768
|
-
getHref: () => string;
|
|
769
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
770
|
-
assignProp: (key: string, value: any) => void;
|
|
771
592
|
} | undefined;
|
|
772
593
|
resource?: string | undefined;
|
|
773
594
|
resourceData?: LktObject | undefined;
|
|
@@ -870,42 +691,6 @@ declare const entries: import("vue").Ref<{
|
|
|
870
691
|
click?: Function | undefined;
|
|
871
692
|
} | undefined;
|
|
872
693
|
onClick?: Function | undefined;
|
|
873
|
-
} | {
|
|
874
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
875
|
-
to?: string | {
|
|
876
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
877
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
878
|
-
path?: undefined | undefined;
|
|
879
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
880
|
-
hash?: string | undefined;
|
|
881
|
-
replace?: boolean | undefined;
|
|
882
|
-
force?: boolean | undefined;
|
|
883
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
884
|
-
} | {
|
|
885
|
-
path: string;
|
|
886
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
887
|
-
hash?: string | undefined;
|
|
888
|
-
replace?: boolean | undefined;
|
|
889
|
-
force?: boolean | undefined;
|
|
890
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
891
|
-
} | undefined;
|
|
892
|
-
class: string;
|
|
893
|
-
isActive: boolean;
|
|
894
|
-
downloadFileName: string;
|
|
895
|
-
disabled: boolean;
|
|
896
|
-
onClick: Function | undefined;
|
|
897
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
898
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
899
|
-
confirmData: LktObject;
|
|
900
|
-
imposter: boolean;
|
|
901
|
-
external: boolean;
|
|
902
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
903
|
-
events?: {
|
|
904
|
-
click?: Function | undefined;
|
|
905
|
-
} | undefined;
|
|
906
|
-
getHref: () => string;
|
|
907
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
908
|
-
assignProp: (key: string, value: any) => void;
|
|
909
694
|
} | undefined;
|
|
910
695
|
resource?: string | undefined;
|
|
911
696
|
resourceData?: LktObject | undefined;
|
|
@@ -1030,42 +815,6 @@ declare const entries: import("vue").Ref<{
|
|
|
1030
815
|
click?: Function | undefined;
|
|
1031
816
|
} | undefined;
|
|
1032
817
|
onClick?: Function | undefined;
|
|
1033
|
-
} | {
|
|
1034
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1035
|
-
to?: string | {
|
|
1036
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1037
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1038
|
-
path?: undefined | undefined;
|
|
1039
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1040
|
-
hash?: string | undefined;
|
|
1041
|
-
replace?: boolean | undefined;
|
|
1042
|
-
force?: boolean | undefined;
|
|
1043
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1044
|
-
} | {
|
|
1045
|
-
path: string;
|
|
1046
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1047
|
-
hash?: string | undefined;
|
|
1048
|
-
replace?: boolean | undefined;
|
|
1049
|
-
force?: boolean | undefined;
|
|
1050
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1051
|
-
} | undefined;
|
|
1052
|
-
class: string;
|
|
1053
|
-
isActive: boolean;
|
|
1054
|
-
downloadFileName: string;
|
|
1055
|
-
disabled: boolean;
|
|
1056
|
-
onClick: Function | undefined;
|
|
1057
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1058
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1059
|
-
confirmData: LktObject;
|
|
1060
|
-
imposter: boolean;
|
|
1061
|
-
external: boolean;
|
|
1062
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1063
|
-
events?: {
|
|
1064
|
-
click?: Function | undefined;
|
|
1065
|
-
} | undefined;
|
|
1066
|
-
getHref: () => string;
|
|
1067
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1068
|
-
assignProp: (key: string, value: any) => void;
|
|
1069
818
|
} | undefined;
|
|
1070
819
|
resource?: string | undefined;
|
|
1071
820
|
resourceData?: LktObject | undefined;
|
|
@@ -1213,42 +962,6 @@ declare const entries: import("vue").Ref<{
|
|
|
1213
962
|
click?: Function | undefined;
|
|
1214
963
|
} | undefined;
|
|
1215
964
|
onClick?: Function | undefined;
|
|
1216
|
-
} | {
|
|
1217
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1218
|
-
to?: string | {
|
|
1219
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1220
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1221
|
-
path?: undefined | undefined;
|
|
1222
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1223
|
-
hash?: string | undefined;
|
|
1224
|
-
replace?: boolean | undefined;
|
|
1225
|
-
force?: boolean | undefined;
|
|
1226
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1227
|
-
} | {
|
|
1228
|
-
path: string;
|
|
1229
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1230
|
-
hash?: string | undefined;
|
|
1231
|
-
replace?: boolean | undefined;
|
|
1232
|
-
force?: boolean | undefined;
|
|
1233
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1234
|
-
} | undefined;
|
|
1235
|
-
class: string;
|
|
1236
|
-
isActive: boolean;
|
|
1237
|
-
downloadFileName: string;
|
|
1238
|
-
disabled: boolean;
|
|
1239
|
-
onClick: Function | undefined;
|
|
1240
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1241
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1242
|
-
confirmData: LktObject;
|
|
1243
|
-
imposter: boolean;
|
|
1244
|
-
external: boolean;
|
|
1245
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1246
|
-
events?: {
|
|
1247
|
-
click?: Function | undefined;
|
|
1248
|
-
} | undefined;
|
|
1249
|
-
getHref: () => string;
|
|
1250
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1251
|
-
assignProp: (key: string, value: any) => void;
|
|
1252
965
|
} | undefined;
|
|
1253
966
|
resource?: string | undefined;
|
|
1254
967
|
resourceData?: LktObject | undefined;
|
|
@@ -1373,42 +1086,6 @@ declare const entries: import("vue").Ref<{
|
|
|
1373
1086
|
click?: Function | undefined;
|
|
1374
1087
|
} | undefined;
|
|
1375
1088
|
onClick?: Function | undefined;
|
|
1376
|
-
} | {
|
|
1377
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1378
|
-
to?: string | {
|
|
1379
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1380
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1381
|
-
path?: undefined | undefined;
|
|
1382
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1383
|
-
hash?: string | undefined;
|
|
1384
|
-
replace?: boolean | undefined;
|
|
1385
|
-
force?: boolean | undefined;
|
|
1386
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1387
|
-
} | {
|
|
1388
|
-
path: string;
|
|
1389
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1390
|
-
hash?: string | undefined;
|
|
1391
|
-
replace?: boolean | undefined;
|
|
1392
|
-
force?: boolean | undefined;
|
|
1393
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1394
|
-
} | undefined;
|
|
1395
|
-
class: string;
|
|
1396
|
-
isActive: boolean;
|
|
1397
|
-
downloadFileName: string;
|
|
1398
|
-
disabled: boolean;
|
|
1399
|
-
onClick: Function | undefined;
|
|
1400
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1401
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1402
|
-
confirmData: LktObject;
|
|
1403
|
-
imposter: boolean;
|
|
1404
|
-
external: boolean;
|
|
1405
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1406
|
-
events?: {
|
|
1407
|
-
click?: Function | undefined;
|
|
1408
|
-
} | undefined;
|
|
1409
|
-
getHref: () => string;
|
|
1410
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1411
|
-
assignProp: (key: string, value: any) => void;
|
|
1412
1089
|
} | undefined;
|
|
1413
1090
|
resource?: string | undefined;
|
|
1414
1091
|
resourceData?: LktObject | undefined;
|
|
@@ -1498,15 +1175,16 @@ declare const entries: import("vue").Ref<{
|
|
|
1498
1175
|
isActiveChecker?: Function | undefined;
|
|
1499
1176
|
isOpened?: boolean | undefined;
|
|
1500
1177
|
isActive?: boolean | undefined;
|
|
1178
|
+
keepOpenOnChildClick?: boolean | undefined;
|
|
1501
1179
|
parent?: /*elided*/ any | undefined;
|
|
1502
1180
|
children?: /*elided*/ any[] | undefined;
|
|
1503
1181
|
events?: {
|
|
1504
1182
|
click?: Function | undefined;
|
|
1505
1183
|
} | undefined;
|
|
1506
|
-
onClick?: Function | undefined;
|
|
1507
1184
|
}[], import("lkt-vue-kernel").MenuEntryConfig[] | {
|
|
1508
1185
|
key?: string | undefined;
|
|
1509
1186
|
type?: import("lkt-vue-kernel").MenuEntryType | undefined;
|
|
1187
|
+
class?: string | undefined;
|
|
1510
1188
|
icon?: string | undefined;
|
|
1511
1189
|
anchor?: {
|
|
1512
1190
|
type?: import("lkt-vue-kernel").AnchorType | undefined;
|
|
@@ -1575,43 +1253,7 @@ declare const entries: import("vue").Ref<{
|
|
|
1575
1253
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
1576
1254
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
1577
1255
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
1578
|
-
anchor?: /*elided*/ any |
|
|
1579
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1580
|
-
to?: string | {
|
|
1581
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1582
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1583
|
-
path?: undefined | undefined;
|
|
1584
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1585
|
-
hash?: string | undefined;
|
|
1586
|
-
replace?: boolean | undefined;
|
|
1587
|
-
force?: boolean | undefined;
|
|
1588
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1589
|
-
} | {
|
|
1590
|
-
path: string;
|
|
1591
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1592
|
-
hash?: string | undefined;
|
|
1593
|
-
replace?: boolean | undefined;
|
|
1594
|
-
force?: boolean | undefined;
|
|
1595
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1596
|
-
} | undefined;
|
|
1597
|
-
class: string;
|
|
1598
|
-
isActive: boolean;
|
|
1599
|
-
downloadFileName: string;
|
|
1600
|
-
disabled: boolean;
|
|
1601
|
-
onClick: Function | undefined;
|
|
1602
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1603
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1604
|
-
confirmData: LktObject;
|
|
1605
|
-
imposter: boolean;
|
|
1606
|
-
external: boolean;
|
|
1607
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1608
|
-
events?: {
|
|
1609
|
-
click?: Function | undefined;
|
|
1610
|
-
} | undefined;
|
|
1611
|
-
getHref: () => string;
|
|
1612
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1613
|
-
assignProp: (key: string, value: any) => void;
|
|
1614
|
-
} | undefined;
|
|
1256
|
+
anchor?: /*elided*/ any | undefined;
|
|
1615
1257
|
resource?: string | undefined;
|
|
1616
1258
|
resourceData?: LktObject | undefined;
|
|
1617
1259
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -1724,43 +1366,7 @@ declare const entries: import("vue").Ref<{
|
|
|
1724
1366
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
1725
1367
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
1726
1368
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
1727
|
-
anchor?: /*elided*/ any |
|
|
1728
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1729
|
-
to?: string | {
|
|
1730
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1731
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1732
|
-
path?: undefined | undefined;
|
|
1733
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1734
|
-
hash?: string | undefined;
|
|
1735
|
-
replace?: boolean | undefined;
|
|
1736
|
-
force?: boolean | undefined;
|
|
1737
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1738
|
-
} | {
|
|
1739
|
-
path: string;
|
|
1740
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1741
|
-
hash?: string | undefined;
|
|
1742
|
-
replace?: boolean | undefined;
|
|
1743
|
-
force?: boolean | undefined;
|
|
1744
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1745
|
-
} | undefined;
|
|
1746
|
-
class: string;
|
|
1747
|
-
isActive: boolean;
|
|
1748
|
-
downloadFileName: string;
|
|
1749
|
-
disabled: boolean;
|
|
1750
|
-
onClick: Function | undefined;
|
|
1751
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1752
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1753
|
-
confirmData: LktObject;
|
|
1754
|
-
imposter: boolean;
|
|
1755
|
-
external: boolean;
|
|
1756
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1757
|
-
events?: {
|
|
1758
|
-
click?: Function | undefined;
|
|
1759
|
-
} | undefined;
|
|
1760
|
-
getHref: () => string;
|
|
1761
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1762
|
-
assignProp: (key: string, value: any) => void;
|
|
1763
|
-
} | undefined;
|
|
1369
|
+
anchor?: /*elided*/ any | undefined;
|
|
1764
1370
|
resource?: string | undefined;
|
|
1765
1371
|
resourceData?: LktObject | undefined;
|
|
1766
1372
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -1949,43 +1555,7 @@ declare const entries: import("vue").Ref<{
|
|
|
1949
1555
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
1950
1556
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
1951
1557
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
1952
|
-
anchor?: /*elided*/ any |
|
|
1953
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1954
|
-
to?: string | {
|
|
1955
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1956
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1957
|
-
path?: undefined | undefined;
|
|
1958
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1959
|
-
hash?: string | undefined;
|
|
1960
|
-
replace?: boolean | undefined;
|
|
1961
|
-
force?: boolean | undefined;
|
|
1962
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1963
|
-
} | {
|
|
1964
|
-
path: string;
|
|
1965
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1966
|
-
hash?: string | undefined;
|
|
1967
|
-
replace?: boolean | undefined;
|
|
1968
|
-
force?: boolean | undefined;
|
|
1969
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1970
|
-
} | undefined;
|
|
1971
|
-
class: string;
|
|
1972
|
-
isActive: boolean;
|
|
1973
|
-
downloadFileName: string;
|
|
1974
|
-
disabled: boolean;
|
|
1975
|
-
onClick: Function | undefined;
|
|
1976
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1977
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1978
|
-
confirmData: LktObject;
|
|
1979
|
-
imposter: boolean;
|
|
1980
|
-
external: boolean;
|
|
1981
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1982
|
-
events?: {
|
|
1983
|
-
click?: Function | undefined;
|
|
1984
|
-
} | undefined;
|
|
1985
|
-
getHref: () => string;
|
|
1986
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1987
|
-
assignProp: (key: string, value: any) => void;
|
|
1988
|
-
} | undefined;
|
|
1558
|
+
anchor?: /*elided*/ any | undefined;
|
|
1989
1559
|
resource?: string | undefined;
|
|
1990
1560
|
resourceData?: LktObject | undefined;
|
|
1991
1561
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -2098,43 +1668,7 @@ declare const entries: import("vue").Ref<{
|
|
|
2098
1668
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
2099
1669
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
2100
1670
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
2101
|
-
anchor?: /*elided*/ any |
|
|
2102
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2103
|
-
to?: string | {
|
|
2104
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2105
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2106
|
-
path?: undefined | undefined;
|
|
2107
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2108
|
-
hash?: string | undefined;
|
|
2109
|
-
replace?: boolean | undefined;
|
|
2110
|
-
force?: boolean | undefined;
|
|
2111
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2112
|
-
} | {
|
|
2113
|
-
path: string;
|
|
2114
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2115
|
-
hash?: string | undefined;
|
|
2116
|
-
replace?: boolean | undefined;
|
|
2117
|
-
force?: boolean | undefined;
|
|
2118
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2119
|
-
} | undefined;
|
|
2120
|
-
class: string;
|
|
2121
|
-
isActive: boolean;
|
|
2122
|
-
downloadFileName: string;
|
|
2123
|
-
disabled: boolean;
|
|
2124
|
-
onClick: Function | undefined;
|
|
2125
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2126
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2127
|
-
confirmData: LktObject;
|
|
2128
|
-
imposter: boolean;
|
|
2129
|
-
external: boolean;
|
|
2130
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2131
|
-
events?: {
|
|
2132
|
-
click?: Function | undefined;
|
|
2133
|
-
} | undefined;
|
|
2134
|
-
getHref: () => string;
|
|
2135
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2136
|
-
assignProp: (key: string, value: any) => void;
|
|
2137
|
-
} | undefined;
|
|
1671
|
+
anchor?: /*elided*/ any | undefined;
|
|
2138
1672
|
resource?: string | undefined;
|
|
2139
1673
|
resourceData?: LktObject | undefined;
|
|
2140
1674
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -2233,42 +1767,6 @@ declare const entries: import("vue").Ref<{
|
|
|
2233
1767
|
click?: Function | undefined;
|
|
2234
1768
|
} | undefined;
|
|
2235
1769
|
onClick?: Function | undefined;
|
|
2236
|
-
} | {
|
|
2237
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2238
|
-
to?: string | {
|
|
2239
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2240
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2241
|
-
path?: undefined | undefined;
|
|
2242
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2243
|
-
hash?: string | undefined;
|
|
2244
|
-
replace?: boolean | undefined;
|
|
2245
|
-
force?: boolean | undefined;
|
|
2246
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2247
|
-
} | {
|
|
2248
|
-
path: string;
|
|
2249
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2250
|
-
hash?: string | undefined;
|
|
2251
|
-
replace?: boolean | undefined;
|
|
2252
|
-
force?: boolean | undefined;
|
|
2253
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2254
|
-
} | undefined;
|
|
2255
|
-
class: string;
|
|
2256
|
-
isActive: boolean;
|
|
2257
|
-
downloadFileName: string;
|
|
2258
|
-
disabled: boolean;
|
|
2259
|
-
onClick: Function | undefined;
|
|
2260
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2261
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2262
|
-
confirmData: LktObject;
|
|
2263
|
-
imposter: boolean;
|
|
2264
|
-
external: boolean;
|
|
2265
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2266
|
-
events?: {
|
|
2267
|
-
click?: Function | undefined;
|
|
2268
|
-
} | undefined;
|
|
2269
|
-
getHref: () => string;
|
|
2270
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2271
|
-
assignProp: (key: string, value: any) => void;
|
|
2272
1770
|
} | undefined;
|
|
2273
1771
|
resource?: string | undefined;
|
|
2274
1772
|
resourceData?: LktObject | undefined;
|
|
@@ -2371,42 +1869,6 @@ declare const entries: import("vue").Ref<{
|
|
|
2371
1869
|
click?: Function | undefined;
|
|
2372
1870
|
} | undefined;
|
|
2373
1871
|
onClick?: Function | undefined;
|
|
2374
|
-
} | {
|
|
2375
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2376
|
-
to?: string | {
|
|
2377
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2378
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2379
|
-
path?: undefined | undefined;
|
|
2380
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2381
|
-
hash?: string | undefined;
|
|
2382
|
-
replace?: boolean | undefined;
|
|
2383
|
-
force?: boolean | undefined;
|
|
2384
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2385
|
-
} | {
|
|
2386
|
-
path: string;
|
|
2387
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2388
|
-
hash?: string | undefined;
|
|
2389
|
-
replace?: boolean | undefined;
|
|
2390
|
-
force?: boolean | undefined;
|
|
2391
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2392
|
-
} | undefined;
|
|
2393
|
-
class: string;
|
|
2394
|
-
isActive: boolean;
|
|
2395
|
-
downloadFileName: string;
|
|
2396
|
-
disabled: boolean;
|
|
2397
|
-
onClick: Function | undefined;
|
|
2398
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2399
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2400
|
-
confirmData: LktObject;
|
|
2401
|
-
imposter: boolean;
|
|
2402
|
-
external: boolean;
|
|
2403
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2404
|
-
events?: {
|
|
2405
|
-
click?: Function | undefined;
|
|
2406
|
-
} | undefined;
|
|
2407
|
-
getHref: () => string;
|
|
2408
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2409
|
-
assignProp: (key: string, value: any) => void;
|
|
2410
1872
|
} | undefined;
|
|
2411
1873
|
resource?: string | undefined;
|
|
2412
1874
|
resourceData?: LktObject | undefined;
|
|
@@ -2531,42 +1993,6 @@ declare const entries: import("vue").Ref<{
|
|
|
2531
1993
|
click?: Function | undefined;
|
|
2532
1994
|
} | undefined;
|
|
2533
1995
|
onClick?: Function | undefined;
|
|
2534
|
-
} | {
|
|
2535
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2536
|
-
to?: string | {
|
|
2537
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2538
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2539
|
-
path?: undefined | undefined;
|
|
2540
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2541
|
-
hash?: string | undefined;
|
|
2542
|
-
replace?: boolean | undefined;
|
|
2543
|
-
force?: boolean | undefined;
|
|
2544
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2545
|
-
} | {
|
|
2546
|
-
path: string;
|
|
2547
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2548
|
-
hash?: string | undefined;
|
|
2549
|
-
replace?: boolean | undefined;
|
|
2550
|
-
force?: boolean | undefined;
|
|
2551
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2552
|
-
} | undefined;
|
|
2553
|
-
class: string;
|
|
2554
|
-
isActive: boolean;
|
|
2555
|
-
downloadFileName: string;
|
|
2556
|
-
disabled: boolean;
|
|
2557
|
-
onClick: Function | undefined;
|
|
2558
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2559
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2560
|
-
confirmData: LktObject;
|
|
2561
|
-
imposter: boolean;
|
|
2562
|
-
external: boolean;
|
|
2563
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2564
|
-
events?: {
|
|
2565
|
-
click?: Function | undefined;
|
|
2566
|
-
} | undefined;
|
|
2567
|
-
getHref: () => string;
|
|
2568
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2569
|
-
assignProp: (key: string, value: any) => void;
|
|
2570
1996
|
} | undefined;
|
|
2571
1997
|
resource?: string | undefined;
|
|
2572
1998
|
resourceData?: LktObject | undefined;
|
|
@@ -2714,42 +2140,6 @@ declare const entries: import("vue").Ref<{
|
|
|
2714
2140
|
click?: Function | undefined;
|
|
2715
2141
|
} | undefined;
|
|
2716
2142
|
onClick?: Function | undefined;
|
|
2717
|
-
} | {
|
|
2718
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2719
|
-
to?: string | {
|
|
2720
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2721
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2722
|
-
path?: undefined | undefined;
|
|
2723
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2724
|
-
hash?: string | undefined;
|
|
2725
|
-
replace?: boolean | undefined;
|
|
2726
|
-
force?: boolean | undefined;
|
|
2727
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2728
|
-
} | {
|
|
2729
|
-
path: string;
|
|
2730
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2731
|
-
hash?: string | undefined;
|
|
2732
|
-
replace?: boolean | undefined;
|
|
2733
|
-
force?: boolean | undefined;
|
|
2734
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2735
|
-
} | undefined;
|
|
2736
|
-
class: string;
|
|
2737
|
-
isActive: boolean;
|
|
2738
|
-
downloadFileName: string;
|
|
2739
|
-
disabled: boolean;
|
|
2740
|
-
onClick: Function | undefined;
|
|
2741
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2742
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2743
|
-
confirmData: LktObject;
|
|
2744
|
-
imposter: boolean;
|
|
2745
|
-
external: boolean;
|
|
2746
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2747
|
-
events?: {
|
|
2748
|
-
click?: Function | undefined;
|
|
2749
|
-
} | undefined;
|
|
2750
|
-
getHref: () => string;
|
|
2751
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2752
|
-
assignProp: (key: string, value: any) => void;
|
|
2753
2143
|
} | undefined;
|
|
2754
2144
|
resource?: string | undefined;
|
|
2755
2145
|
resourceData?: LktObject | undefined;
|
|
@@ -2874,42 +2264,6 @@ declare const entries: import("vue").Ref<{
|
|
|
2874
2264
|
click?: Function | undefined;
|
|
2875
2265
|
} | undefined;
|
|
2876
2266
|
onClick?: Function | undefined;
|
|
2877
|
-
} | {
|
|
2878
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2879
|
-
to?: string | {
|
|
2880
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2881
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2882
|
-
path?: undefined | undefined;
|
|
2883
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2884
|
-
hash?: string | undefined;
|
|
2885
|
-
replace?: boolean | undefined;
|
|
2886
|
-
force?: boolean | undefined;
|
|
2887
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2888
|
-
} | {
|
|
2889
|
-
path: string;
|
|
2890
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2891
|
-
hash?: string | undefined;
|
|
2892
|
-
replace?: boolean | undefined;
|
|
2893
|
-
force?: boolean | undefined;
|
|
2894
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2895
|
-
} | undefined;
|
|
2896
|
-
class: string;
|
|
2897
|
-
isActive: boolean;
|
|
2898
|
-
downloadFileName: string;
|
|
2899
|
-
disabled: boolean;
|
|
2900
|
-
onClick: Function | undefined;
|
|
2901
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2902
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2903
|
-
confirmData: LktObject;
|
|
2904
|
-
imposter: boolean;
|
|
2905
|
-
external: boolean;
|
|
2906
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2907
|
-
events?: {
|
|
2908
|
-
click?: Function | undefined;
|
|
2909
|
-
} | undefined;
|
|
2910
|
-
getHref: () => string;
|
|
2911
|
-
feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2912
|
-
assignProp: (key: string, value: any) => void;
|
|
2913
2267
|
} | undefined;
|
|
2914
2268
|
resource?: string | undefined;
|
|
2915
2269
|
resourceData?: LktObject | undefined;
|
|
@@ -2999,12 +2353,12 @@ declare const entries: import("vue").Ref<{
|
|
|
2999
2353
|
isActiveChecker?: Function | undefined;
|
|
3000
2354
|
isOpened?: boolean | undefined;
|
|
3001
2355
|
isActive?: boolean | undefined;
|
|
2356
|
+
keepOpenOnChildClick?: boolean | undefined;
|
|
3002
2357
|
parent?: /*elided*/ any | undefined;
|
|
3003
2358
|
children?: /*elided*/ any[] | undefined;
|
|
3004
2359
|
events?: {
|
|
3005
2360
|
click?: Function | undefined;
|
|
3006
2361
|
} | undefined;
|
|
3007
|
-
onClick?: Function | undefined;
|
|
3008
2362
|
}[]>;
|
|
3009
2363
|
declare const entryIconSlots: import("vue").ComputedRef<LktObject>;
|
|
3010
2364
|
declare const onClickOutside: () => void;
|