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
|
@@ -5,6 +5,7 @@ type __VLS_Props = {
|
|
|
5
5
|
declare const entry: import("vue").Ref<{
|
|
6
6
|
key?: string | undefined;
|
|
7
7
|
type?: MenuEntryType | undefined;
|
|
8
|
+
class?: string | undefined;
|
|
8
9
|
icon?: string | undefined;
|
|
9
10
|
anchor?: {
|
|
10
11
|
type?: import("lkt-vue-kernel").AnchorType | undefined;
|
|
@@ -73,43 +74,7 @@ declare const entry: import("vue").Ref<{
|
|
|
73
74
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
74
75
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
75
76
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
76
|
-
anchor?: /*elided*/ any |
|
|
77
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
78
|
-
to?: string | {
|
|
79
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
80
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
81
|
-
path?: undefined | undefined;
|
|
82
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
83
|
-
hash?: string | undefined;
|
|
84
|
-
replace?: boolean | undefined;
|
|
85
|
-
force?: boolean | undefined;
|
|
86
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
87
|
-
} | {
|
|
88
|
-
path: string;
|
|
89
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
90
|
-
hash?: string | undefined;
|
|
91
|
-
replace?: boolean | undefined;
|
|
92
|
-
force?: boolean | undefined;
|
|
93
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
94
|
-
} | undefined;
|
|
95
|
-
class: string;
|
|
96
|
-
isActive: boolean;
|
|
97
|
-
downloadFileName: string;
|
|
98
|
-
disabled: boolean;
|
|
99
|
-
onClick: Function | undefined;
|
|
100
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
101
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
102
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
103
|
-
imposter: boolean;
|
|
104
|
-
external: boolean;
|
|
105
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
106
|
-
events?: {
|
|
107
|
-
click?: Function | undefined;
|
|
108
|
-
} | undefined;
|
|
109
|
-
getHref: () => string;
|
|
110
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
111
|
-
assignProp: (key: string, value: any) => void;
|
|
112
|
-
} | undefined;
|
|
77
|
+
anchor?: /*elided*/ any | undefined;
|
|
113
78
|
resource?: string | undefined;
|
|
114
79
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
115
80
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -222,43 +187,7 @@ declare const entry: import("vue").Ref<{
|
|
|
222
187
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
223
188
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
224
189
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
225
|
-
anchor?: /*elided*/ any |
|
|
226
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
227
|
-
to?: string | {
|
|
228
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
229
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
230
|
-
path?: undefined | undefined;
|
|
231
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
232
|
-
hash?: string | undefined;
|
|
233
|
-
replace?: boolean | undefined;
|
|
234
|
-
force?: boolean | undefined;
|
|
235
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
236
|
-
} | {
|
|
237
|
-
path: string;
|
|
238
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
239
|
-
hash?: string | undefined;
|
|
240
|
-
replace?: boolean | undefined;
|
|
241
|
-
force?: boolean | undefined;
|
|
242
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
243
|
-
} | undefined;
|
|
244
|
-
class: string;
|
|
245
|
-
isActive: boolean;
|
|
246
|
-
downloadFileName: string;
|
|
247
|
-
disabled: boolean;
|
|
248
|
-
onClick: Function | undefined;
|
|
249
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
250
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
251
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
252
|
-
imposter: boolean;
|
|
253
|
-
external: boolean;
|
|
254
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
255
|
-
events?: {
|
|
256
|
-
click?: Function | undefined;
|
|
257
|
-
} | undefined;
|
|
258
|
-
getHref: () => string;
|
|
259
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
260
|
-
assignProp: (key: string, value: any) => void;
|
|
261
|
-
} | undefined;
|
|
190
|
+
anchor?: /*elided*/ any | undefined;
|
|
262
191
|
resource?: string | undefined;
|
|
263
192
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
264
193
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -447,43 +376,7 @@ declare const entry: import("vue").Ref<{
|
|
|
447
376
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
448
377
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
449
378
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
450
|
-
anchor?: /*elided*/ any |
|
|
451
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
452
|
-
to?: string | {
|
|
453
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
454
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
455
|
-
path?: undefined | undefined;
|
|
456
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
457
|
-
hash?: string | undefined;
|
|
458
|
-
replace?: boolean | undefined;
|
|
459
|
-
force?: boolean | undefined;
|
|
460
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
461
|
-
} | {
|
|
462
|
-
path: string;
|
|
463
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
464
|
-
hash?: string | undefined;
|
|
465
|
-
replace?: boolean | undefined;
|
|
466
|
-
force?: boolean | undefined;
|
|
467
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
468
|
-
} | undefined;
|
|
469
|
-
class: string;
|
|
470
|
-
isActive: boolean;
|
|
471
|
-
downloadFileName: string;
|
|
472
|
-
disabled: boolean;
|
|
473
|
-
onClick: Function | undefined;
|
|
474
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
475
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
476
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
477
|
-
imposter: boolean;
|
|
478
|
-
external: boolean;
|
|
479
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
480
|
-
events?: {
|
|
481
|
-
click?: Function | undefined;
|
|
482
|
-
} | undefined;
|
|
483
|
-
getHref: () => string;
|
|
484
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
485
|
-
assignProp: (key: string, value: any) => void;
|
|
486
|
-
} | undefined;
|
|
379
|
+
anchor?: /*elided*/ any | undefined;
|
|
487
380
|
resource?: string | undefined;
|
|
488
381
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
489
382
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -596,43 +489,7 @@ declare const entry: import("vue").Ref<{
|
|
|
596
489
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
597
490
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
598
491
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
599
|
-
anchor?: /*elided*/ any |
|
|
600
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
601
|
-
to?: string | {
|
|
602
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
603
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
604
|
-
path?: undefined | undefined;
|
|
605
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
606
|
-
hash?: string | undefined;
|
|
607
|
-
replace?: boolean | undefined;
|
|
608
|
-
force?: boolean | undefined;
|
|
609
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
610
|
-
} | {
|
|
611
|
-
path: string;
|
|
612
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
613
|
-
hash?: string | undefined;
|
|
614
|
-
replace?: boolean | undefined;
|
|
615
|
-
force?: boolean | undefined;
|
|
616
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
617
|
-
} | undefined;
|
|
618
|
-
class: string;
|
|
619
|
-
isActive: boolean;
|
|
620
|
-
downloadFileName: string;
|
|
621
|
-
disabled: boolean;
|
|
622
|
-
onClick: Function | undefined;
|
|
623
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
624
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
625
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
626
|
-
imposter: boolean;
|
|
627
|
-
external: boolean;
|
|
628
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
629
|
-
events?: {
|
|
630
|
-
click?: Function | undefined;
|
|
631
|
-
} | undefined;
|
|
632
|
-
getHref: () => string;
|
|
633
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
634
|
-
assignProp: (key: string, value: any) => void;
|
|
635
|
-
} | undefined;
|
|
492
|
+
anchor?: /*elided*/ any | undefined;
|
|
636
493
|
resource?: string | undefined;
|
|
637
494
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
638
495
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -731,42 +588,6 @@ declare const entry: import("vue").Ref<{
|
|
|
731
588
|
click?: Function | undefined;
|
|
732
589
|
} | undefined;
|
|
733
590
|
onClick?: Function | undefined;
|
|
734
|
-
} | {
|
|
735
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
736
|
-
to?: string | {
|
|
737
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
738
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
739
|
-
path?: undefined | undefined;
|
|
740
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
741
|
-
hash?: string | undefined;
|
|
742
|
-
replace?: boolean | undefined;
|
|
743
|
-
force?: boolean | undefined;
|
|
744
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
745
|
-
} | {
|
|
746
|
-
path: string;
|
|
747
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
748
|
-
hash?: string | undefined;
|
|
749
|
-
replace?: boolean | undefined;
|
|
750
|
-
force?: boolean | undefined;
|
|
751
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
752
|
-
} | undefined;
|
|
753
|
-
class: string;
|
|
754
|
-
isActive: boolean;
|
|
755
|
-
downloadFileName: string;
|
|
756
|
-
disabled: boolean;
|
|
757
|
-
onClick: Function | undefined;
|
|
758
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
759
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
760
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
761
|
-
imposter: boolean;
|
|
762
|
-
external: boolean;
|
|
763
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
764
|
-
events?: {
|
|
765
|
-
click?: Function | undefined;
|
|
766
|
-
} | undefined;
|
|
767
|
-
getHref: () => string;
|
|
768
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
769
|
-
assignProp: (key: string, value: any) => void;
|
|
770
591
|
} | undefined;
|
|
771
592
|
resource?: string | undefined;
|
|
772
593
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -869,42 +690,6 @@ declare const entry: import("vue").Ref<{
|
|
|
869
690
|
click?: Function | undefined;
|
|
870
691
|
} | undefined;
|
|
871
692
|
onClick?: Function | undefined;
|
|
872
|
-
} | {
|
|
873
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
874
|
-
to?: string | {
|
|
875
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
876
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
877
|
-
path?: undefined | undefined;
|
|
878
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
879
|
-
hash?: string | undefined;
|
|
880
|
-
replace?: boolean | undefined;
|
|
881
|
-
force?: boolean | undefined;
|
|
882
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
883
|
-
} | {
|
|
884
|
-
path: string;
|
|
885
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
886
|
-
hash?: string | undefined;
|
|
887
|
-
replace?: boolean | undefined;
|
|
888
|
-
force?: boolean | undefined;
|
|
889
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
890
|
-
} | undefined;
|
|
891
|
-
class: string;
|
|
892
|
-
isActive: boolean;
|
|
893
|
-
downloadFileName: string;
|
|
894
|
-
disabled: boolean;
|
|
895
|
-
onClick: Function | undefined;
|
|
896
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
897
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
898
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
899
|
-
imposter: boolean;
|
|
900
|
-
external: boolean;
|
|
901
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
902
|
-
events?: {
|
|
903
|
-
click?: Function | undefined;
|
|
904
|
-
} | undefined;
|
|
905
|
-
getHref: () => string;
|
|
906
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
907
|
-
assignProp: (key: string, value: any) => void;
|
|
908
693
|
} | undefined;
|
|
909
694
|
resource?: string | undefined;
|
|
910
695
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -1029,42 +814,6 @@ declare const entry: import("vue").Ref<{
|
|
|
1029
814
|
click?: Function | undefined;
|
|
1030
815
|
} | undefined;
|
|
1031
816
|
onClick?: Function | undefined;
|
|
1032
|
-
} | {
|
|
1033
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1034
|
-
to?: string | {
|
|
1035
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1036
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1037
|
-
path?: undefined | undefined;
|
|
1038
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1039
|
-
hash?: string | undefined;
|
|
1040
|
-
replace?: boolean | undefined;
|
|
1041
|
-
force?: boolean | undefined;
|
|
1042
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1043
|
-
} | {
|
|
1044
|
-
path: string;
|
|
1045
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1046
|
-
hash?: string | undefined;
|
|
1047
|
-
replace?: boolean | undefined;
|
|
1048
|
-
force?: boolean | undefined;
|
|
1049
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1050
|
-
} | undefined;
|
|
1051
|
-
class: string;
|
|
1052
|
-
isActive: boolean;
|
|
1053
|
-
downloadFileName: string;
|
|
1054
|
-
disabled: boolean;
|
|
1055
|
-
onClick: Function | undefined;
|
|
1056
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1057
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1058
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
1059
|
-
imposter: boolean;
|
|
1060
|
-
external: boolean;
|
|
1061
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1062
|
-
events?: {
|
|
1063
|
-
click?: Function | undefined;
|
|
1064
|
-
} | undefined;
|
|
1065
|
-
getHref: () => string;
|
|
1066
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1067
|
-
assignProp: (key: string, value: any) => void;
|
|
1068
817
|
} | undefined;
|
|
1069
818
|
resource?: string | undefined;
|
|
1070
819
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -1212,42 +961,6 @@ declare const entry: import("vue").Ref<{
|
|
|
1212
961
|
click?: Function | undefined;
|
|
1213
962
|
} | undefined;
|
|
1214
963
|
onClick?: Function | undefined;
|
|
1215
|
-
} | {
|
|
1216
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1217
|
-
to?: string | {
|
|
1218
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1219
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1220
|
-
path?: undefined | undefined;
|
|
1221
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1222
|
-
hash?: string | undefined;
|
|
1223
|
-
replace?: boolean | undefined;
|
|
1224
|
-
force?: boolean | undefined;
|
|
1225
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1226
|
-
} | {
|
|
1227
|
-
path: string;
|
|
1228
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1229
|
-
hash?: string | undefined;
|
|
1230
|
-
replace?: boolean | undefined;
|
|
1231
|
-
force?: boolean | undefined;
|
|
1232
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1233
|
-
} | undefined;
|
|
1234
|
-
class: string;
|
|
1235
|
-
isActive: boolean;
|
|
1236
|
-
downloadFileName: string;
|
|
1237
|
-
disabled: boolean;
|
|
1238
|
-
onClick: Function | undefined;
|
|
1239
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1240
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1241
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
1242
|
-
imposter: boolean;
|
|
1243
|
-
external: boolean;
|
|
1244
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1245
|
-
events?: {
|
|
1246
|
-
click?: Function | undefined;
|
|
1247
|
-
} | undefined;
|
|
1248
|
-
getHref: () => string;
|
|
1249
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1250
|
-
assignProp: (key: string, value: any) => void;
|
|
1251
964
|
} | undefined;
|
|
1252
965
|
resource?: string | undefined;
|
|
1253
966
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -1372,42 +1085,6 @@ declare const entry: import("vue").Ref<{
|
|
|
1372
1085
|
click?: Function | undefined;
|
|
1373
1086
|
} | undefined;
|
|
1374
1087
|
onClick?: Function | undefined;
|
|
1375
|
-
} | {
|
|
1376
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1377
|
-
to?: string | {
|
|
1378
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1379
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1380
|
-
path?: undefined | undefined;
|
|
1381
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1382
|
-
hash?: string | undefined;
|
|
1383
|
-
replace?: boolean | undefined;
|
|
1384
|
-
force?: boolean | undefined;
|
|
1385
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1386
|
-
} | {
|
|
1387
|
-
path: string;
|
|
1388
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1389
|
-
hash?: string | undefined;
|
|
1390
|
-
replace?: boolean | undefined;
|
|
1391
|
-
force?: boolean | undefined;
|
|
1392
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1393
|
-
} | undefined;
|
|
1394
|
-
class: string;
|
|
1395
|
-
isActive: boolean;
|
|
1396
|
-
downloadFileName: string;
|
|
1397
|
-
disabled: boolean;
|
|
1398
|
-
onClick: Function | undefined;
|
|
1399
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1400
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1401
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
1402
|
-
imposter: boolean;
|
|
1403
|
-
external: boolean;
|
|
1404
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1405
|
-
events?: {
|
|
1406
|
-
click?: Function | undefined;
|
|
1407
|
-
} | undefined;
|
|
1408
|
-
getHref: () => string;
|
|
1409
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1410
|
-
assignProp: (key: string, value: any) => void;
|
|
1411
1088
|
} | undefined;
|
|
1412
1089
|
resource?: string | undefined;
|
|
1413
1090
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -1497,15 +1174,16 @@ declare const entry: import("vue").Ref<{
|
|
|
1497
1174
|
isActiveChecker?: Function | undefined;
|
|
1498
1175
|
isOpened?: boolean | undefined;
|
|
1499
1176
|
isActive?: boolean | undefined;
|
|
1177
|
+
keepOpenOnChildClick?: boolean | undefined;
|
|
1500
1178
|
parent?: /*elided*/ any | undefined;
|
|
1501
1179
|
children?: /*elided*/ any[] | undefined;
|
|
1502
1180
|
events?: {
|
|
1503
1181
|
click?: Function | undefined;
|
|
1504
1182
|
} | undefined;
|
|
1505
|
-
onClick?: Function | undefined;
|
|
1506
1183
|
}, MenuEntryConfig | {
|
|
1507
1184
|
key?: string | undefined;
|
|
1508
1185
|
type?: MenuEntryType | undefined;
|
|
1186
|
+
class?: string | undefined;
|
|
1509
1187
|
icon?: string | undefined;
|
|
1510
1188
|
anchor?: {
|
|
1511
1189
|
type?: import("lkt-vue-kernel").AnchorType | undefined;
|
|
@@ -1574,43 +1252,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1574
1252
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
1575
1253
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
1576
1254
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
1577
|
-
anchor?: /*elided*/ any |
|
|
1578
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1579
|
-
to?: string | {
|
|
1580
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1581
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1582
|
-
path?: undefined | undefined;
|
|
1583
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1584
|
-
hash?: string | undefined;
|
|
1585
|
-
replace?: boolean | undefined;
|
|
1586
|
-
force?: boolean | undefined;
|
|
1587
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1588
|
-
} | {
|
|
1589
|
-
path: string;
|
|
1590
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1591
|
-
hash?: string | undefined;
|
|
1592
|
-
replace?: boolean | undefined;
|
|
1593
|
-
force?: boolean | undefined;
|
|
1594
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1595
|
-
} | undefined;
|
|
1596
|
-
class: string;
|
|
1597
|
-
isActive: boolean;
|
|
1598
|
-
downloadFileName: string;
|
|
1599
|
-
disabled: boolean;
|
|
1600
|
-
onClick: Function | undefined;
|
|
1601
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1602
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1603
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
1604
|
-
imposter: boolean;
|
|
1605
|
-
external: boolean;
|
|
1606
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1607
|
-
events?: {
|
|
1608
|
-
click?: Function | undefined;
|
|
1609
|
-
} | undefined;
|
|
1610
|
-
getHref: () => string;
|
|
1611
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1612
|
-
assignProp: (key: string, value: any) => void;
|
|
1613
|
-
} | undefined;
|
|
1255
|
+
anchor?: /*elided*/ any | undefined;
|
|
1614
1256
|
resource?: string | undefined;
|
|
1615
1257
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1616
1258
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -1723,43 +1365,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1723
1365
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
1724
1366
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
1725
1367
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
1726
|
-
anchor?: /*elided*/ any |
|
|
1727
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1728
|
-
to?: string | {
|
|
1729
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1730
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1731
|
-
path?: undefined | undefined;
|
|
1732
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1733
|
-
hash?: string | undefined;
|
|
1734
|
-
replace?: boolean | undefined;
|
|
1735
|
-
force?: boolean | undefined;
|
|
1736
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1737
|
-
} | {
|
|
1738
|
-
path: string;
|
|
1739
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1740
|
-
hash?: string | undefined;
|
|
1741
|
-
replace?: boolean | undefined;
|
|
1742
|
-
force?: boolean | undefined;
|
|
1743
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1744
|
-
} | undefined;
|
|
1745
|
-
class: string;
|
|
1746
|
-
isActive: boolean;
|
|
1747
|
-
downloadFileName: string;
|
|
1748
|
-
disabled: boolean;
|
|
1749
|
-
onClick: Function | undefined;
|
|
1750
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1751
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1752
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
1753
|
-
imposter: boolean;
|
|
1754
|
-
external: boolean;
|
|
1755
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1756
|
-
events?: {
|
|
1757
|
-
click?: Function | undefined;
|
|
1758
|
-
} | undefined;
|
|
1759
|
-
getHref: () => string;
|
|
1760
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1761
|
-
assignProp: (key: string, value: any) => void;
|
|
1762
|
-
} | undefined;
|
|
1368
|
+
anchor?: /*elided*/ any | undefined;
|
|
1763
1369
|
resource?: string | undefined;
|
|
1764
1370
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1765
1371
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -1948,43 +1554,7 @@ declare const entry: import("vue").Ref<{
|
|
|
1948
1554
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
1949
1555
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
1950
1556
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
1951
|
-
anchor?: /*elided*/ any |
|
|
1952
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
1953
|
-
to?: string | {
|
|
1954
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
1955
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
1956
|
-
path?: undefined | undefined;
|
|
1957
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1958
|
-
hash?: string | undefined;
|
|
1959
|
-
replace?: boolean | undefined;
|
|
1960
|
-
force?: boolean | undefined;
|
|
1961
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1962
|
-
} | {
|
|
1963
|
-
path: string;
|
|
1964
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
1965
|
-
hash?: string | undefined;
|
|
1966
|
-
replace?: boolean | undefined;
|
|
1967
|
-
force?: boolean | undefined;
|
|
1968
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1969
|
-
} | undefined;
|
|
1970
|
-
class: string;
|
|
1971
|
-
isActive: boolean;
|
|
1972
|
-
downloadFileName: string;
|
|
1973
|
-
disabled: boolean;
|
|
1974
|
-
onClick: Function | undefined;
|
|
1975
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
1976
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
1977
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
1978
|
-
imposter: boolean;
|
|
1979
|
-
external: boolean;
|
|
1980
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
1981
|
-
events?: {
|
|
1982
|
-
click?: Function | undefined;
|
|
1983
|
-
} | undefined;
|
|
1984
|
-
getHref: () => string;
|
|
1985
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
1986
|
-
assignProp: (key: string, value: any) => void;
|
|
1987
|
-
} | undefined;
|
|
1557
|
+
anchor?: /*elided*/ any | undefined;
|
|
1988
1558
|
resource?: string | undefined;
|
|
1989
1559
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1990
1560
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -2097,43 +1667,7 @@ declare const entry: import("vue").Ref<{
|
|
|
2097
1667
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
2098
1668
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
2099
1669
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
2100
|
-
anchor?: /*elided*/ any |
|
|
2101
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2102
|
-
to?: string | {
|
|
2103
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2104
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2105
|
-
path?: undefined | undefined;
|
|
2106
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2107
|
-
hash?: string | undefined;
|
|
2108
|
-
replace?: boolean | undefined;
|
|
2109
|
-
force?: boolean | undefined;
|
|
2110
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2111
|
-
} | {
|
|
2112
|
-
path: string;
|
|
2113
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2114
|
-
hash?: string | undefined;
|
|
2115
|
-
replace?: boolean | undefined;
|
|
2116
|
-
force?: boolean | undefined;
|
|
2117
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2118
|
-
} | undefined;
|
|
2119
|
-
class: string;
|
|
2120
|
-
isActive: boolean;
|
|
2121
|
-
downloadFileName: string;
|
|
2122
|
-
disabled: boolean;
|
|
2123
|
-
onClick: Function | undefined;
|
|
2124
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2125
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2126
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
2127
|
-
imposter: boolean;
|
|
2128
|
-
external: boolean;
|
|
2129
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2130
|
-
events?: {
|
|
2131
|
-
click?: Function | undefined;
|
|
2132
|
-
} | undefined;
|
|
2133
|
-
getHref: () => string;
|
|
2134
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2135
|
-
assignProp: (key: string, value: any) => void;
|
|
2136
|
-
} | undefined;
|
|
1670
|
+
anchor?: /*elided*/ any | undefined;
|
|
2137
1671
|
resource?: string | undefined;
|
|
2138
1672
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
2139
1673
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -2217,57 +1751,21 @@ declare const entry: import("vue").Ref<{
|
|
|
2217
1751
|
showTooltipOnHoverDelay?: number | undefined;
|
|
2218
1752
|
hideTooltipOnLeave?: boolean | undefined;
|
|
2219
1753
|
splitClass?: string | undefined;
|
|
2220
|
-
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
2221
|
-
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
2222
|
-
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
2223
|
-
events?: {
|
|
2224
|
-
click?: Function | undefined;
|
|
2225
|
-
} | undefined;
|
|
2226
|
-
} | undefined;
|
|
2227
|
-
} | undefined;
|
|
2228
|
-
imposter?: boolean | undefined;
|
|
2229
|
-
external?: boolean | undefined;
|
|
2230
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2231
|
-
events?: {
|
|
2232
|
-
click?: Function | undefined;
|
|
2233
|
-
} | undefined;
|
|
2234
|
-
onClick?: Function | undefined;
|
|
2235
|
-
} | {
|
|
2236
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2237
|
-
to?: string | {
|
|
2238
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2239
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2240
|
-
path?: undefined | undefined;
|
|
2241
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2242
|
-
hash?: string | undefined;
|
|
2243
|
-
replace?: boolean | undefined;
|
|
2244
|
-
force?: boolean | undefined;
|
|
2245
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2246
|
-
} | {
|
|
2247
|
-
path: string;
|
|
2248
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2249
|
-
hash?: string | undefined;
|
|
2250
|
-
replace?: boolean | undefined;
|
|
2251
|
-
force?: boolean | undefined;
|
|
2252
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
1754
|
+
tabindex?: import("lkt-vue-kernel").ValidTabIndex;
|
|
1755
|
+
prop?: import("lkt-vue-kernel").LktObject | undefined;
|
|
1756
|
+
clickRef?: (Element | import("vue").VueElement) | undefined;
|
|
1757
|
+
events?: {
|
|
1758
|
+
click?: Function | undefined;
|
|
1759
|
+
} | undefined;
|
|
1760
|
+
} | undefined;
|
|
2253
1761
|
} | undefined;
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
downloadFileName: string;
|
|
2257
|
-
disabled: boolean;
|
|
2258
|
-
onClick: Function | undefined;
|
|
2259
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2260
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2261
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
2262
|
-
imposter: boolean;
|
|
2263
|
-
external: boolean;
|
|
1762
|
+
imposter?: boolean | undefined;
|
|
1763
|
+
external?: boolean | undefined;
|
|
2264
1764
|
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2265
1765
|
events?: {
|
|
2266
1766
|
click?: Function | undefined;
|
|
2267
1767
|
} | undefined;
|
|
2268
|
-
|
|
2269
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2270
|
-
assignProp: (key: string, value: any) => void;
|
|
1768
|
+
onClick?: Function | undefined;
|
|
2271
1769
|
} | undefined;
|
|
2272
1770
|
resource?: string | undefined;
|
|
2273
1771
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -2370,42 +1868,6 @@ declare const entry: import("vue").Ref<{
|
|
|
2370
1868
|
click?: Function | undefined;
|
|
2371
1869
|
} | undefined;
|
|
2372
1870
|
onClick?: Function | undefined;
|
|
2373
|
-
} | {
|
|
2374
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2375
|
-
to?: string | {
|
|
2376
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2377
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2378
|
-
path?: undefined | undefined;
|
|
2379
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2380
|
-
hash?: string | undefined;
|
|
2381
|
-
replace?: boolean | undefined;
|
|
2382
|
-
force?: boolean | undefined;
|
|
2383
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2384
|
-
} | {
|
|
2385
|
-
path: string;
|
|
2386
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2387
|
-
hash?: string | undefined;
|
|
2388
|
-
replace?: boolean | undefined;
|
|
2389
|
-
force?: boolean | undefined;
|
|
2390
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2391
|
-
} | undefined;
|
|
2392
|
-
class: string;
|
|
2393
|
-
isActive: boolean;
|
|
2394
|
-
downloadFileName: string;
|
|
2395
|
-
disabled: boolean;
|
|
2396
|
-
onClick: Function | undefined;
|
|
2397
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2398
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2399
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
2400
|
-
imposter: boolean;
|
|
2401
|
-
external: boolean;
|
|
2402
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2403
|
-
events?: {
|
|
2404
|
-
click?: Function | undefined;
|
|
2405
|
-
} | undefined;
|
|
2406
|
-
getHref: () => string;
|
|
2407
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2408
|
-
assignProp: (key: string, value: any) => void;
|
|
2409
1871
|
} | undefined;
|
|
2410
1872
|
resource?: string | undefined;
|
|
2411
1873
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -2530,42 +1992,6 @@ declare const entry: import("vue").Ref<{
|
|
|
2530
1992
|
click?: Function | undefined;
|
|
2531
1993
|
} | undefined;
|
|
2532
1994
|
onClick?: Function | undefined;
|
|
2533
|
-
} | {
|
|
2534
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2535
|
-
to?: string | {
|
|
2536
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2537
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2538
|
-
path?: undefined | undefined;
|
|
2539
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2540
|
-
hash?: string | undefined;
|
|
2541
|
-
replace?: boolean | undefined;
|
|
2542
|
-
force?: boolean | undefined;
|
|
2543
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2544
|
-
} | {
|
|
2545
|
-
path: string;
|
|
2546
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2547
|
-
hash?: string | undefined;
|
|
2548
|
-
replace?: boolean | undefined;
|
|
2549
|
-
force?: boolean | undefined;
|
|
2550
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2551
|
-
} | undefined;
|
|
2552
|
-
class: string;
|
|
2553
|
-
isActive: boolean;
|
|
2554
|
-
downloadFileName: string;
|
|
2555
|
-
disabled: boolean;
|
|
2556
|
-
onClick: Function | undefined;
|
|
2557
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2558
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2559
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
2560
|
-
imposter: boolean;
|
|
2561
|
-
external: boolean;
|
|
2562
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2563
|
-
events?: {
|
|
2564
|
-
click?: Function | undefined;
|
|
2565
|
-
} | undefined;
|
|
2566
|
-
getHref: () => string;
|
|
2567
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2568
|
-
assignProp: (key: string, value: any) => void;
|
|
2569
1995
|
} | undefined;
|
|
2570
1996
|
resource?: string | undefined;
|
|
2571
1997
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -2713,42 +2139,6 @@ declare const entry: import("vue").Ref<{
|
|
|
2713
2139
|
click?: Function | undefined;
|
|
2714
2140
|
} | undefined;
|
|
2715
2141
|
onClick?: Function | undefined;
|
|
2716
|
-
} | {
|
|
2717
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2718
|
-
to?: string | {
|
|
2719
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2720
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2721
|
-
path?: undefined | undefined;
|
|
2722
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2723
|
-
hash?: string | undefined;
|
|
2724
|
-
replace?: boolean | undefined;
|
|
2725
|
-
force?: boolean | undefined;
|
|
2726
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2727
|
-
} | {
|
|
2728
|
-
path: string;
|
|
2729
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2730
|
-
hash?: string | undefined;
|
|
2731
|
-
replace?: boolean | undefined;
|
|
2732
|
-
force?: boolean | undefined;
|
|
2733
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2734
|
-
} | undefined;
|
|
2735
|
-
class: string;
|
|
2736
|
-
isActive: boolean;
|
|
2737
|
-
downloadFileName: string;
|
|
2738
|
-
disabled: boolean;
|
|
2739
|
-
onClick: Function | undefined;
|
|
2740
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2741
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2742
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
2743
|
-
imposter: boolean;
|
|
2744
|
-
external: boolean;
|
|
2745
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2746
|
-
events?: {
|
|
2747
|
-
click?: Function | undefined;
|
|
2748
|
-
} | undefined;
|
|
2749
|
-
getHref: () => string;
|
|
2750
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2751
|
-
assignProp: (key: string, value: any) => void;
|
|
2752
2142
|
} | undefined;
|
|
2753
2143
|
resource?: string | undefined;
|
|
2754
2144
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -2873,42 +2263,6 @@ declare const entry: import("vue").Ref<{
|
|
|
2873
2263
|
click?: Function | undefined;
|
|
2874
2264
|
} | undefined;
|
|
2875
2265
|
onClick?: Function | undefined;
|
|
2876
|
-
} | {
|
|
2877
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
2878
|
-
to?: string | {
|
|
2879
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
2880
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
2881
|
-
path?: undefined | undefined;
|
|
2882
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2883
|
-
hash?: string | undefined;
|
|
2884
|
-
replace?: boolean | undefined;
|
|
2885
|
-
force?: boolean | undefined;
|
|
2886
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2887
|
-
} | {
|
|
2888
|
-
path: string;
|
|
2889
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
2890
|
-
hash?: string | undefined;
|
|
2891
|
-
replace?: boolean | undefined;
|
|
2892
|
-
force?: boolean | undefined;
|
|
2893
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
2894
|
-
} | undefined;
|
|
2895
|
-
class: string;
|
|
2896
|
-
isActive: boolean;
|
|
2897
|
-
downloadFileName: string;
|
|
2898
|
-
disabled: boolean;
|
|
2899
|
-
onClick: Function | undefined;
|
|
2900
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
2901
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
2902
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
2903
|
-
imposter: boolean;
|
|
2904
|
-
external: boolean;
|
|
2905
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
2906
|
-
events?: {
|
|
2907
|
-
click?: Function | undefined;
|
|
2908
|
-
} | undefined;
|
|
2909
|
-
getHref: () => string;
|
|
2910
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
2911
|
-
assignProp: (key: string, value: any) => void;
|
|
2912
2266
|
} | undefined;
|
|
2913
2267
|
resource?: string | undefined;
|
|
2914
2268
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -2998,12 +2352,12 @@ declare const entry: import("vue").Ref<{
|
|
|
2998
2352
|
isActiveChecker?: Function | undefined;
|
|
2999
2353
|
isOpened?: boolean | undefined;
|
|
3000
2354
|
isActive?: boolean | undefined;
|
|
2355
|
+
keepOpenOnChildClick?: boolean | undefined;
|
|
3001
2356
|
parent?: /*elided*/ any | undefined;
|
|
3002
2357
|
children?: /*elided*/ any[] | undefined;
|
|
3003
2358
|
events?: {
|
|
3004
2359
|
click?: Function | undefined;
|
|
3005
2360
|
} | undefined;
|
|
3006
|
-
onClick?: Function | undefined;
|
|
3007
2361
|
}>, slots: Readonly<{
|
|
3008
2362
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
3009
2363
|
}>, isActive: import("vue").Ref<boolean, boolean>;
|
|
@@ -3016,6 +2370,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
3016
2370
|
entry: {
|
|
3017
2371
|
key?: string | undefined;
|
|
3018
2372
|
type?: MenuEntryType | undefined;
|
|
2373
|
+
class?: string | undefined;
|
|
3019
2374
|
icon?: string | undefined;
|
|
3020
2375
|
anchor?: {
|
|
3021
2376
|
type?: import("lkt-vue-kernel").AnchorType | undefined;
|
|
@@ -3084,43 +2439,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
3084
2439
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
3085
2440
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
3086
2441
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
3087
|
-
anchor?: /*elided*/ any |
|
|
3088
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
3089
|
-
to?: string | {
|
|
3090
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
3091
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
3092
|
-
path?: undefined | undefined;
|
|
3093
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3094
|
-
hash?: string | undefined;
|
|
3095
|
-
replace?: boolean | undefined;
|
|
3096
|
-
force?: boolean | undefined;
|
|
3097
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3098
|
-
} | {
|
|
3099
|
-
path: string;
|
|
3100
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3101
|
-
hash?: string | undefined;
|
|
3102
|
-
replace?: boolean | undefined;
|
|
3103
|
-
force?: boolean | undefined;
|
|
3104
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3105
|
-
} | undefined;
|
|
3106
|
-
class: string;
|
|
3107
|
-
isActive: boolean;
|
|
3108
|
-
downloadFileName: string;
|
|
3109
|
-
disabled: boolean;
|
|
3110
|
-
onClick: Function | undefined;
|
|
3111
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
3112
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
3113
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
3114
|
-
imposter: boolean;
|
|
3115
|
-
external: boolean;
|
|
3116
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3117
|
-
events?: {
|
|
3118
|
-
click?: Function | undefined;
|
|
3119
|
-
} | undefined;
|
|
3120
|
-
getHref: () => string;
|
|
3121
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
3122
|
-
assignProp: (key: string, value: any) => void;
|
|
3123
|
-
} | undefined;
|
|
2442
|
+
anchor?: /*elided*/ any | undefined;
|
|
3124
2443
|
resource?: string | undefined;
|
|
3125
2444
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3126
2445
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -3233,43 +2552,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
3233
2552
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
3234
2553
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
3235
2554
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
3236
|
-
anchor?: /*elided*/ any |
|
|
3237
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
3238
|
-
to?: string | {
|
|
3239
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
3240
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
3241
|
-
path?: undefined | undefined;
|
|
3242
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3243
|
-
hash?: string | undefined;
|
|
3244
|
-
replace?: boolean | undefined;
|
|
3245
|
-
force?: boolean | undefined;
|
|
3246
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3247
|
-
} | {
|
|
3248
|
-
path: string;
|
|
3249
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3250
|
-
hash?: string | undefined;
|
|
3251
|
-
replace?: boolean | undefined;
|
|
3252
|
-
force?: boolean | undefined;
|
|
3253
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3254
|
-
} | undefined;
|
|
3255
|
-
class: string;
|
|
3256
|
-
isActive: boolean;
|
|
3257
|
-
downloadFileName: string;
|
|
3258
|
-
disabled: boolean;
|
|
3259
|
-
onClick: Function | undefined;
|
|
3260
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
3261
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
3262
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
3263
|
-
imposter: boolean;
|
|
3264
|
-
external: boolean;
|
|
3265
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3266
|
-
events?: {
|
|
3267
|
-
click?: Function | undefined;
|
|
3268
|
-
} | undefined;
|
|
3269
|
-
getHref: () => string;
|
|
3270
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
3271
|
-
assignProp: (key: string, value: any) => void;
|
|
3272
|
-
} | undefined;
|
|
2555
|
+
anchor?: /*elided*/ any | undefined;
|
|
3273
2556
|
resource?: string | undefined;
|
|
3274
2557
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3275
2558
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -3458,43 +2741,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
3458
2741
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
3459
2742
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
3460
2743
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
3461
|
-
anchor?: /*elided*/ any |
|
|
3462
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
3463
|
-
to?: string | {
|
|
3464
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
3465
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
3466
|
-
path?: undefined | undefined;
|
|
3467
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3468
|
-
hash?: string | undefined;
|
|
3469
|
-
replace?: boolean | undefined;
|
|
3470
|
-
force?: boolean | undefined;
|
|
3471
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3472
|
-
} | {
|
|
3473
|
-
path: string;
|
|
3474
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3475
|
-
hash?: string | undefined;
|
|
3476
|
-
replace?: boolean | undefined;
|
|
3477
|
-
force?: boolean | undefined;
|
|
3478
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3479
|
-
} | undefined;
|
|
3480
|
-
class: string;
|
|
3481
|
-
isActive: boolean;
|
|
3482
|
-
downloadFileName: string;
|
|
3483
|
-
disabled: boolean;
|
|
3484
|
-
onClick: Function | undefined;
|
|
3485
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
3486
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
3487
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
3488
|
-
imposter: boolean;
|
|
3489
|
-
external: boolean;
|
|
3490
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3491
|
-
events?: {
|
|
3492
|
-
click?: Function | undefined;
|
|
3493
|
-
} | undefined;
|
|
3494
|
-
getHref: () => string;
|
|
3495
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
3496
|
-
assignProp: (key: string, value: any) => void;
|
|
3497
|
-
} | undefined;
|
|
2744
|
+
anchor?: /*elided*/ any | undefined;
|
|
3498
2745
|
resource?: string | undefined;
|
|
3499
2746
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3500
2747
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -3607,43 +2854,7 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
3607
2854
|
iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
|
|
3608
2855
|
iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
|
|
3609
2856
|
dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
|
|
3610
|
-
anchor?: /*elided*/ any |
|
|
3611
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
3612
|
-
to?: string | {
|
|
3613
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
3614
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
3615
|
-
path?: undefined | undefined;
|
|
3616
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3617
|
-
hash?: string | undefined;
|
|
3618
|
-
replace?: boolean | undefined;
|
|
3619
|
-
force?: boolean | undefined;
|
|
3620
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3621
|
-
} | {
|
|
3622
|
-
path: string;
|
|
3623
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3624
|
-
hash?: string | undefined;
|
|
3625
|
-
replace?: boolean | undefined;
|
|
3626
|
-
force?: boolean | undefined;
|
|
3627
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3628
|
-
} | undefined;
|
|
3629
|
-
class: string;
|
|
3630
|
-
isActive: boolean;
|
|
3631
|
-
downloadFileName: string;
|
|
3632
|
-
disabled: boolean;
|
|
3633
|
-
onClick: Function | undefined;
|
|
3634
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
3635
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
3636
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
3637
|
-
imposter: boolean;
|
|
3638
|
-
external: boolean;
|
|
3639
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3640
|
-
events?: {
|
|
3641
|
-
click?: Function | undefined;
|
|
3642
|
-
} | undefined;
|
|
3643
|
-
getHref: () => string;
|
|
3644
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
3645
|
-
assignProp: (key: string, value: any) => void;
|
|
3646
|
-
} | undefined;
|
|
2857
|
+
anchor?: /*elided*/ any | undefined;
|
|
3647
2858
|
resource?: string | undefined;
|
|
3648
2859
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
3649
2860
|
modal?: import("lkt-vue-kernel").ValidModalName;
|
|
@@ -3742,42 +2953,6 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
3742
2953
|
click?: Function | undefined;
|
|
3743
2954
|
} | undefined;
|
|
3744
2955
|
onClick?: Function | undefined;
|
|
3745
|
-
} | {
|
|
3746
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
3747
|
-
to?: string | {
|
|
3748
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
3749
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
3750
|
-
path?: undefined | undefined;
|
|
3751
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3752
|
-
hash?: string | undefined;
|
|
3753
|
-
replace?: boolean | undefined;
|
|
3754
|
-
force?: boolean | undefined;
|
|
3755
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3756
|
-
} | {
|
|
3757
|
-
path: string;
|
|
3758
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3759
|
-
hash?: string | undefined;
|
|
3760
|
-
replace?: boolean | undefined;
|
|
3761
|
-
force?: boolean | undefined;
|
|
3762
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3763
|
-
} | undefined;
|
|
3764
|
-
class: string;
|
|
3765
|
-
isActive: boolean;
|
|
3766
|
-
downloadFileName: string;
|
|
3767
|
-
disabled: boolean;
|
|
3768
|
-
onClick: Function | undefined;
|
|
3769
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
3770
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
3771
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
3772
|
-
imposter: boolean;
|
|
3773
|
-
external: boolean;
|
|
3774
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3775
|
-
events?: {
|
|
3776
|
-
click?: Function | undefined;
|
|
3777
|
-
} | undefined;
|
|
3778
|
-
getHref: () => string;
|
|
3779
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
3780
|
-
assignProp: (key: string, value: any) => void;
|
|
3781
2956
|
} | undefined;
|
|
3782
2957
|
resource?: string | undefined;
|
|
3783
2958
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -3880,42 +3055,6 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
3880
3055
|
click?: Function | undefined;
|
|
3881
3056
|
} | undefined;
|
|
3882
3057
|
onClick?: Function | undefined;
|
|
3883
|
-
} | {
|
|
3884
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
3885
|
-
to?: string | {
|
|
3886
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
3887
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
3888
|
-
path?: undefined | undefined;
|
|
3889
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3890
|
-
hash?: string | undefined;
|
|
3891
|
-
replace?: boolean | undefined;
|
|
3892
|
-
force?: boolean | undefined;
|
|
3893
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3894
|
-
} | {
|
|
3895
|
-
path: string;
|
|
3896
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
3897
|
-
hash?: string | undefined;
|
|
3898
|
-
replace?: boolean | undefined;
|
|
3899
|
-
force?: boolean | undefined;
|
|
3900
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
3901
|
-
} | undefined;
|
|
3902
|
-
class: string;
|
|
3903
|
-
isActive: boolean;
|
|
3904
|
-
downloadFileName: string;
|
|
3905
|
-
disabled: boolean;
|
|
3906
|
-
onClick: Function | undefined;
|
|
3907
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
3908
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
3909
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
3910
|
-
imposter: boolean;
|
|
3911
|
-
external: boolean;
|
|
3912
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
3913
|
-
events?: {
|
|
3914
|
-
click?: Function | undefined;
|
|
3915
|
-
} | undefined;
|
|
3916
|
-
getHref: () => string;
|
|
3917
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
3918
|
-
assignProp: (key: string, value: any) => void;
|
|
3919
3058
|
} | undefined;
|
|
3920
3059
|
resource?: string | undefined;
|
|
3921
3060
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -4040,42 +3179,6 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
4040
3179
|
click?: Function | undefined;
|
|
4041
3180
|
} | undefined;
|
|
4042
3181
|
onClick?: Function | undefined;
|
|
4043
|
-
} | {
|
|
4044
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
4045
|
-
to?: string | {
|
|
4046
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
4047
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
4048
|
-
path?: undefined | undefined;
|
|
4049
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
4050
|
-
hash?: string | undefined;
|
|
4051
|
-
replace?: boolean | undefined;
|
|
4052
|
-
force?: boolean | undefined;
|
|
4053
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
4054
|
-
} | {
|
|
4055
|
-
path: string;
|
|
4056
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
4057
|
-
hash?: string | undefined;
|
|
4058
|
-
replace?: boolean | undefined;
|
|
4059
|
-
force?: boolean | undefined;
|
|
4060
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
4061
|
-
} | undefined;
|
|
4062
|
-
class: string;
|
|
4063
|
-
isActive: boolean;
|
|
4064
|
-
downloadFileName: string;
|
|
4065
|
-
disabled: boolean;
|
|
4066
|
-
onClick: Function | undefined;
|
|
4067
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
4068
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
4069
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
4070
|
-
imposter: boolean;
|
|
4071
|
-
external: boolean;
|
|
4072
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4073
|
-
events?: {
|
|
4074
|
-
click?: Function | undefined;
|
|
4075
|
-
} | undefined;
|
|
4076
|
-
getHref: () => string;
|
|
4077
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
4078
|
-
assignProp: (key: string, value: any) => void;
|
|
4079
3182
|
} | undefined;
|
|
4080
3183
|
resource?: string | undefined;
|
|
4081
3184
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -4223,42 +3326,6 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
4223
3326
|
click?: Function | undefined;
|
|
4224
3327
|
} | undefined;
|
|
4225
3328
|
onClick?: Function | undefined;
|
|
4226
|
-
} | {
|
|
4227
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
4228
|
-
to?: string | {
|
|
4229
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
4230
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
4231
|
-
path?: undefined | undefined;
|
|
4232
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
4233
|
-
hash?: string | undefined;
|
|
4234
|
-
replace?: boolean | undefined;
|
|
4235
|
-
force?: boolean | undefined;
|
|
4236
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
4237
|
-
} | {
|
|
4238
|
-
path: string;
|
|
4239
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
4240
|
-
hash?: string | undefined;
|
|
4241
|
-
replace?: boolean | undefined;
|
|
4242
|
-
force?: boolean | undefined;
|
|
4243
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
4244
|
-
} | undefined;
|
|
4245
|
-
class: string;
|
|
4246
|
-
isActive: boolean;
|
|
4247
|
-
downloadFileName: string;
|
|
4248
|
-
disabled: boolean;
|
|
4249
|
-
onClick: Function | undefined;
|
|
4250
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
4251
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
4252
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
4253
|
-
imposter: boolean;
|
|
4254
|
-
external: boolean;
|
|
4255
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4256
|
-
events?: {
|
|
4257
|
-
click?: Function | undefined;
|
|
4258
|
-
} | undefined;
|
|
4259
|
-
getHref: () => string;
|
|
4260
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
4261
|
-
assignProp: (key: string, value: any) => void;
|
|
4262
3329
|
} | undefined;
|
|
4263
3330
|
resource?: string | undefined;
|
|
4264
3331
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -4383,42 +3450,6 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
4383
3450
|
click?: Function | undefined;
|
|
4384
3451
|
} | undefined;
|
|
4385
3452
|
onClick?: Function | undefined;
|
|
4386
|
-
} | {
|
|
4387
|
-
type: import("lkt-vue-kernel").AnchorType;
|
|
4388
|
-
to?: string | {
|
|
4389
|
-
name?: import("vue-router").RouteRecordNameGeneric;
|
|
4390
|
-
params?: import("vue-router").RouteParamsRawGeneric | undefined;
|
|
4391
|
-
path?: undefined | undefined;
|
|
4392
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
4393
|
-
hash?: string | undefined;
|
|
4394
|
-
replace?: boolean | undefined;
|
|
4395
|
-
force?: boolean | undefined;
|
|
4396
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
4397
|
-
} | {
|
|
4398
|
-
path: string;
|
|
4399
|
-
query?: import("vue-router").LocationQueryRaw | undefined;
|
|
4400
|
-
hash?: string | undefined;
|
|
4401
|
-
replace?: boolean | undefined;
|
|
4402
|
-
force?: boolean | undefined;
|
|
4403
|
-
state?: import("vue-router").HistoryState | undefined;
|
|
4404
|
-
} | undefined;
|
|
4405
|
-
class: string;
|
|
4406
|
-
isActive: boolean;
|
|
4407
|
-
downloadFileName: string;
|
|
4408
|
-
disabled: boolean;
|
|
4409
|
-
onClick: Function | undefined;
|
|
4410
|
-
confirmModal: import("lkt-vue-kernel").ValidModalName;
|
|
4411
|
-
confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
|
|
4412
|
-
confirmData: import("lkt-vue-kernel").LktObject;
|
|
4413
|
-
imposter: boolean;
|
|
4414
|
-
external: boolean;
|
|
4415
|
-
text?: import("lkt-vue-kernel").ValidTextValue;
|
|
4416
|
-
events?: {
|
|
4417
|
-
click?: Function | undefined;
|
|
4418
|
-
} | undefined;
|
|
4419
|
-
getHref: () => string;
|
|
4420
|
-
feed: (data?: import("lkt-vue-kernel").LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
|
|
4421
|
-
assignProp: (key: string, value: any) => void;
|
|
4422
3453
|
} | undefined;
|
|
4423
3454
|
resource?: string | undefined;
|
|
4424
3455
|
resourceData?: import("lkt-vue-kernel").LktObject | undefined;
|
|
@@ -4508,12 +3539,12 @@ declare var __VLS_5: {}, __VLS_7: {}, __VLS_22: string, __VLS_23: {
|
|
|
4508
3539
|
isActiveChecker?: Function | undefined;
|
|
4509
3540
|
isOpened?: boolean | undefined;
|
|
4510
3541
|
isActive?: boolean | undefined;
|
|
3542
|
+
keepOpenOnChildClick?: boolean | undefined;
|
|
4511
3543
|
parent?: /*elided*/ any | undefined;
|
|
4512
3544
|
children?: /*elided*/ any[] | undefined;
|
|
4513
3545
|
events?: {
|
|
4514
3546
|
click?: Function | undefined;
|
|
4515
3547
|
} | undefined;
|
|
4516
|
-
onClick?: Function | undefined;
|
|
4517
3548
|
};
|
|
4518
3549
|
}, __VLS_34: string, __VLS_35: {};
|
|
4519
3550
|
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|