@kong-ui-public/app-layout 4.2.49 → 4.2.50-pr.1599.4d565e0aa.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app-layout.es.js +675 -675
- package/dist/app-layout.umd.js +4 -4
- package/dist/types/components/AppLayout.vue.d.ts +5 -5
- package/dist/types/components/AppLayout.vue.d.ts.map +1 -1
- package/dist/types/components/aboutSection/AppAboutSection.vue.d.ts +4 -4
- package/dist/types/components/aboutSection/AppAboutSection.vue.d.ts.map +1 -1
- package/dist/types/components/errors/AppError.vue.d.ts +1 -1
- package/dist/types/components/errors/AppError.vue.d.ts.map +1 -1
- package/dist/types/components/icons/BananaSplit.vue.d.ts +1 -1
- package/dist/types/components/navbar/AccountDropdown.vue.d.ts +4 -4
- package/dist/types/components/navbar/AccountDropdown.vue.d.ts.map +1 -1
- package/dist/types/components/navbar/AppNavbar.vue.d.ts +4 -4
- package/dist/types/components/navbar/AppNavbar.vue.d.ts.map +1 -1
- package/dist/types/components/pageHeader/AppPageHeader.vue.d.ts +4 -4
- package/dist/types/components/pageHeader/AppPageHeader.vue.d.ts.map +1 -1
- package/dist/types/components/sidebar/AppSidebar.vue.d.ts +8 -45
- package/dist/types/components/sidebar/AppSidebar.vue.d.ts.map +1 -1
- package/dist/types/components/sidebar/ItemBadge.vue.d.ts +4 -4
- package/dist/types/components/sidebar/SidebarItem.vue.d.ts +5 -5
- package/dist/types/components/sidebar/SidebarItem.vue.d.ts.map +1 -1
- package/dist/types/components/sidebar/SidebarToggle.vue.d.ts +5 -5
- package/package.json +3 -3
|
@@ -7,7 +7,7 @@ declare function __VLS_template(): {
|
|
|
7
7
|
footer?(_: {}): any;
|
|
8
8
|
};
|
|
9
9
|
refs: {
|
|
10
|
-
focusTrap: import("vue").
|
|
10
|
+
focusTrap: import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
11
11
|
active: {
|
|
12
12
|
type: BooleanConstructor;
|
|
13
13
|
default: boolean;
|
|
@@ -52,51 +52,14 @@ declare function __VLS_template(): {
|
|
|
52
52
|
}> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
53
53
|
[key: string]: any;
|
|
54
54
|
}>[] | null;
|
|
55
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:active" | "activate" | "postActivate" | "deactivate" | "postDeactivate")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
56
|
-
active: {
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
} & {
|
|
61
|
-
escapeDeactivates: {
|
|
62
|
-
type: BooleanConstructor;
|
|
63
|
-
default: true;
|
|
64
|
-
};
|
|
65
|
-
returnFocusOnDeactivate: {
|
|
66
|
-
type: BooleanConstructor;
|
|
67
|
-
default: true;
|
|
68
|
-
};
|
|
69
|
-
allowOutsideClick: {
|
|
70
|
-
type: PropType<boolean | import("focus-trap").MouseEventToBoolean | undefined>;
|
|
71
|
-
default: true;
|
|
72
|
-
};
|
|
73
|
-
clickOutsideDeactivates: PropType<boolean | import("focus-trap").MouseEventToBoolean | undefined>;
|
|
74
|
-
initialFocus: PropType<import("focus-trap").FocusTargetOrFalse | (() => void) | undefined>;
|
|
75
|
-
fallbackFocus: PropType<import("focus-trap").FocusTarget | undefined>;
|
|
76
|
-
checkCanFocusTrap: PropType<((containers: (HTMLElement | SVGElement)[]) => Promise<void>) | undefined>;
|
|
77
|
-
checkCanReturnFocus: PropType<((trigger: HTMLElement | SVGElement) => Promise<void>) | undefined>;
|
|
78
|
-
delayInitialFocus: {
|
|
79
|
-
type: BooleanConstructor;
|
|
80
|
-
default: true;
|
|
81
|
-
};
|
|
82
|
-
document: PropType<Document | undefined>;
|
|
83
|
-
preventScroll: BooleanConstructor;
|
|
84
|
-
setReturnFocus: PropType<import("focus-trap").FocusTargetValueOrFalse | ((nodeFocusedBeforeActivation: HTMLElement | SVGElement) => import("focus-trap").FocusTargetValueOrFalse) | undefined>;
|
|
85
|
-
tabbableOptions: PropType<import("focus-trap").FocusTrapTabbableOptions | undefined>;
|
|
86
|
-
}>> & {
|
|
87
|
-
onActivate?: ((...args: any[]) => any) | undefined;
|
|
88
|
-
onPostActivate?: ((...args: any[]) => any) | undefined;
|
|
89
|
-
onDeactivate?: ((...args: any[]) => any) | undefined;
|
|
90
|
-
onPostDeactivate?: ((...args: any[]) => any) | undefined;
|
|
91
|
-
"onUpdate:active"?: ((...args: any[]) => any) | undefined;
|
|
92
|
-
}, {
|
|
55
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:active" | "activate" | "postActivate" | "deactivate" | "postDeactivate")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
|
93
56
|
returnFocusOnDeactivate: boolean;
|
|
94
57
|
escapeDeactivates: boolean;
|
|
95
58
|
allowOutsideClick: boolean | import("focus-trap").MouseEventToBoolean | undefined;
|
|
96
59
|
preventScroll: boolean;
|
|
97
60
|
delayInitialFocus: boolean;
|
|
98
61
|
active: boolean;
|
|
99
|
-
}, true, {}, {}, {
|
|
62
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
100
63
|
P: {};
|
|
101
64
|
B: {};
|
|
102
65
|
D: {};
|
|
@@ -160,7 +123,7 @@ declare function __VLS_template(): {
|
|
|
160
123
|
attrs: Partial<{}>;
|
|
161
124
|
};
|
|
162
125
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
163
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
126
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
164
127
|
topItems: {
|
|
165
128
|
type: PropType<SidebarPrimaryItem[]>;
|
|
166
129
|
default: () => never[];
|
|
@@ -213,7 +176,7 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
213
176
|
type: BooleanConstructor;
|
|
214
177
|
default: boolean;
|
|
215
178
|
};
|
|
216
|
-
}
|
|
179
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
217
180
|
click: (...args: any[]) => void;
|
|
218
181
|
toggle: (...args: any[]) => void;
|
|
219
182
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -269,10 +232,10 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
269
232
|
type: BooleanConstructor;
|
|
270
233
|
default: boolean;
|
|
271
234
|
};
|
|
272
|
-
}>> & {
|
|
235
|
+
}>> & Readonly<{
|
|
273
236
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
274
237
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
275
|
-
}
|
|
238
|
+
}>, {
|
|
276
239
|
topOffset: number;
|
|
277
240
|
zIndex: number;
|
|
278
241
|
topItems: SidebarPrimaryItem[];
|
|
@@ -286,7 +249,7 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
286
249
|
mobileOverlay: boolean;
|
|
287
250
|
mobileOverlayZIndex: number;
|
|
288
251
|
mobileOverlayCloseOnClick: boolean;
|
|
289
|
-
}, {}>;
|
|
252
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
290
253
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
291
254
|
export default _default;
|
|
292
255
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/AppSidebar.vue"],"names":[],"mappings":"AAumBA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAkVrD,iBAAS,cAAc;+DA2K+D,GAAG,yDACpB,GAAG;wBAE5C,GAAG;qBACN,GAAG;wBACC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BApgBhC,GA/dM;+BA+dN,GA3dE;6BA2dF,GAxdQ;iCAwdR,GArdyB;kCAqdzB,GA/cO
|
|
1
|
+
{"version":3,"file":"AppSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/AppSidebar.vue"],"names":[],"mappings":"AAumBA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAkVrD,iBAAS,cAAc;+DA2K+D,GAAG,yDACpB,GAAG;wBAE5C,GAAG;qBACN,GAAG;wBACC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BApgBhC,GA/dM;+BA+dN,GA3dE;6BA2dF,GAxdQ;iCAwdR,GArdyB;kCAqdzB,GA/cO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BA+cP,GA/dM;+BA+dN,GA3dE;6BA2dF,GAxdQ;iCAwdR,GArdyB;kCAqdzB,GA/cO;;;;;;;;;;;;;;;;;;WA69BO,OAAO,IAA6B;EAEjD;AA+ED,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQF,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI9B,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAJ9B,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI9B,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAiD/C,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
count: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
default: undefined;
|
|
6
6
|
};
|
|
7
|
-
}
|
|
7
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
8
|
count: {
|
|
9
9
|
type: NumberConstructor;
|
|
10
10
|
required: true;
|
|
11
11
|
default: undefined;
|
|
12
12
|
};
|
|
13
|
-
}
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
14
|
count: number;
|
|
15
|
-
}, {}>;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
export default _default;
|
|
17
17
|
//# sourceMappingURL=ItemBadge.vue.d.ts.map
|
|
@@ -6,7 +6,7 @@ declare function __VLS_template(): {
|
|
|
6
6
|
attrs: Partial<{}>;
|
|
7
7
|
};
|
|
8
8
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
10
10
|
item: {
|
|
11
11
|
type: PropType<SidebarPrimaryItem | SidebarSecondaryItem>;
|
|
12
12
|
required: true;
|
|
@@ -16,7 +16,7 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
16
16
|
type: BooleanConstructor;
|
|
17
17
|
default: boolean;
|
|
18
18
|
};
|
|
19
|
-
}
|
|
19
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
20
|
click: (...args: any[]) => void;
|
|
21
21
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
22
|
item: {
|
|
@@ -28,11 +28,11 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
28
28
|
type: BooleanConstructor;
|
|
29
29
|
default: boolean;
|
|
30
30
|
};
|
|
31
|
-
}>> & {
|
|
31
|
+
}>> & Readonly<{
|
|
32
32
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
33
|
-
}
|
|
33
|
+
}>, {
|
|
34
34
|
subnavItem: boolean;
|
|
35
|
-
}, {}>;
|
|
35
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
36
36
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
37
|
export default _default;
|
|
38
38
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SidebarItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/SidebarItem.vue"],"names":[],"mappings":"AAuXA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAmE3E,iBAAS,cAAc;+DAmJ6D,GAAG;;WAUzE,OAAO,IAA6B;EAEjD;AAyBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQD,QAAQ,CAAC,kBAAkB,GAAG,oBAAoB,CAAC;;;IAGrE,yDAAyD;;;;;;;;;cAHvC,QAAQ,CAAC,kBAAkB,GAAG,oBAAoB,CAAC;;;IAGrE,yDAAyD;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"SidebarItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/SidebarItem.vue"],"names":[],"mappings":"AAuXA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAmE3E,iBAAS,cAAc;+DAmJ6D,GAAG;;WAUzE,OAAO,IAA6B;EAEjD;AAyBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQD,QAAQ,CAAC,kBAAkB,GAAG,oBAAoB,CAAC;;;IAGrE,yDAAyD;;;;;;;;;cAHvC,QAAQ,CAAC,kBAAkB,GAAG,oBAAoB,CAAC;;;IAGrE,yDAAyD;;;;;;;;;4EAMzD,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
active: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
toggle: (...args: any[]) => void;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
9
|
active: {
|
|
10
10
|
type: BooleanConstructor;
|
|
11
11
|
default: boolean;
|
|
12
12
|
};
|
|
13
|
-
}>> & {
|
|
13
|
+
}>> & Readonly<{
|
|
14
14
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
15
|
-
}
|
|
15
|
+
}>, {
|
|
16
16
|
active: boolean;
|
|
17
|
-
}, {}>;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
18
|
export default _default;
|
|
19
19
|
//# sourceMappingURL=SidebarToggle.vue.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/app-layout",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.50-pr.1599.4d565e0aa.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/app-layout.umd.js",
|
|
6
6
|
"module": "./dist/app-layout.es.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@kong/kongponents": "^9.11.2",
|
|
25
25
|
"vue": ">= 3.3.13 < 4",
|
|
26
|
-
"vue-router": "^4.
|
|
26
|
+
"vue-router": "^4.4.5"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@kong/icons": "^1.18.1",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@kong/design-tokens": "1.17.2",
|
|
36
36
|
"@kong/kongponents": "9.12.1",
|
|
37
37
|
"@types/lodash.clonedeep": "^4.5.9",
|
|
38
|
-
"vue": "^3.
|
|
38
|
+
"vue": "^3.5.11",
|
|
39
39
|
"vue-router": "^4.4.5"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|