@kong-ui-public/app-layout 4.7.3 → 4.8.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 +1352 -1178
- package/dist/app-layout.umd.js +5 -5
- package/dist/style.css +1 -1
- package/dist/types/components/AppLayout.vue.d.ts +19 -8
- package/dist/types/components/AppLayout.vue.d.ts.map +1 -1
- package/dist/types/components/sidebar/AppSidebar.vue.d.ts +16 -5
- package/dist/types/components/sidebar/AppSidebar.vue.d.ts.map +1 -1
- package/dist/types/types/sidebar.d.ts +8 -0
- package/dist/types/types/sidebar.d.ts.map +1 -1
- package/package.json +2 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
|
-
import type { SidebarPrimaryItem, SidebarSecondaryItem } from '../types';
|
|
3
|
-
declare var __VLS_1: {}, __VLS_16: {}, __VLS_19: {}, __VLS_22: {}, __VLS_25: {}, __VLS_28: {},
|
|
2
|
+
import type { GroupConfig, GroupConfigMap, SidebarPrimaryItem, SidebarSecondaryItem } from '../types';
|
|
3
|
+
declare var __VLS_1: {}, __VLS_16: {}, __VLS_19: {}, __VLS_22: {}, __VLS_25: {}, __VLS_28: {}, __VLS_40: {}, __VLS_43: {}, __VLS_46: {}, __VLS_50: `sidebar-icon-${string}`, __VLS_51: {}, __VLS_53: {}, __VLS_55: {};
|
|
4
4
|
type __VLS_Slots = {} & {
|
|
5
|
-
[K in NonNullable<typeof
|
|
5
|
+
[K in NonNullable<typeof __VLS_50>]?: (props: typeof __VLS_51) => any;
|
|
6
6
|
} & {
|
|
7
7
|
notification?: (props: typeof __VLS_1) => any;
|
|
8
8
|
} & {
|
|
@@ -16,15 +16,15 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
} & {
|
|
17
17
|
'navbar-right'?: (props: typeof __VLS_28) => any;
|
|
18
18
|
} & {
|
|
19
|
-
'sidebar-header'?: (props: typeof
|
|
19
|
+
'sidebar-header'?: (props: typeof __VLS_40) => any;
|
|
20
20
|
} & {
|
|
21
|
-
'sidebar-top'?: (props: typeof
|
|
21
|
+
'sidebar-top'?: (props: typeof __VLS_43) => any;
|
|
22
22
|
} & {
|
|
23
|
-
'sidebar-footer'?: (props: typeof
|
|
23
|
+
'sidebar-footer'?: (props: typeof __VLS_46) => any;
|
|
24
24
|
} & {
|
|
25
|
-
'app-error'?: (props: typeof
|
|
25
|
+
'app-error'?: (props: typeof __VLS_53) => any;
|
|
26
26
|
} & {
|
|
27
|
-
default?: (props: typeof
|
|
27
|
+
default?: (props: typeof __VLS_55) => any;
|
|
28
28
|
};
|
|
29
29
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
30
30
|
hideDefaultSlot: {
|
|
@@ -51,12 +51,17 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
51
51
|
type: PropType<SidebarPrimaryItem[]>;
|
|
52
52
|
default: () => never[];
|
|
53
53
|
};
|
|
54
|
+
groupConfig: {
|
|
55
|
+
type: PropType<GroupConfigMap>;
|
|
56
|
+
default: () => {};
|
|
57
|
+
};
|
|
54
58
|
theme: {
|
|
55
59
|
type: PropType<"light" | "dark">;
|
|
56
60
|
default: string;
|
|
57
61
|
validator: (theme: "light" | "dark") => boolean;
|
|
58
62
|
};
|
|
59
63
|
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
64
|
+
"toggle-collapse": (groupName: string, groupConfig: GroupConfig) => any;
|
|
60
65
|
"sidebar-click": (item: SidebarSecondaryItem | SidebarPrimaryItem) => any;
|
|
61
66
|
"update:topOffset": (offset: number) => any;
|
|
62
67
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -84,15 +89,21 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
84
89
|
type: PropType<SidebarPrimaryItem[]>;
|
|
85
90
|
default: () => never[];
|
|
86
91
|
};
|
|
92
|
+
groupConfig: {
|
|
93
|
+
type: PropType<GroupConfigMap>;
|
|
94
|
+
default: () => {};
|
|
95
|
+
};
|
|
87
96
|
theme: {
|
|
88
97
|
type: PropType<"light" | "dark">;
|
|
89
98
|
default: string;
|
|
90
99
|
validator: (theme: "light" | "dark") => boolean;
|
|
91
100
|
};
|
|
92
101
|
}>> & Readonly<{
|
|
102
|
+
"onToggle-collapse"?: ((groupName: string, groupConfig: GroupConfig) => any) | undefined;
|
|
93
103
|
"onSidebar-click"?: ((item: SidebarSecondaryItem | SidebarPrimaryItem) => any) | undefined;
|
|
94
104
|
"onUpdate:topOffset"?: ((offset: number) => any) | undefined;
|
|
95
105
|
}>, {
|
|
106
|
+
groupConfig: GroupConfigMap;
|
|
96
107
|
hideDefaultSlot: boolean;
|
|
97
108
|
navbarHidden: boolean;
|
|
98
109
|
sidebarHidden: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppLayout.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AppLayout.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AppLayout.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AppLayout.vue"],"names":[],"mappings":"AAsaA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAKnC,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAA;AA+arG,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,0BAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACpR,KAAK,WAAW,GAAG,EAAE,GACnB;KAAG,CAAC,IAAI,WAAW,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG;CAAE,GACzE;IAAE,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACjD;IAAE,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC1D;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACnD;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACnD;IAAE,eAAe,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACrD;IAAE,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACpD;IAAE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACtD;IAAE,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACnD;IAAE,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACtD;IAAE,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACjD;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AA0EhD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;cAwBF,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI9B,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI7B,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,OAAO,GAAG,MAAM,CAAC;;2BAEvB,OAAO,GAAG,MAAM,KAAG,OAAO;;;;;;;;;;;;;;;;;;;;;;;;cAd9B,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI9B,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI7B,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,OAAO,GAAG,MAAM,CAAC;;2BAEvB,OAAO,GAAG,MAAM,KAAG,OAAO;;;;;;;;;;;;;;;4EAG/C,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAE1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
|
-
import type { SidebarPrimaryItem } from '../../types';
|
|
2
|
+
import type { SidebarPrimaryItem, GroupConfigMap } from '../../types';
|
|
3
3
|
/** Prevent adding the `group` property to bottom sidebar items. */
|
|
4
4
|
type BottomPrimaryItem = Omit<SidebarPrimaryItem, 'group'>;
|
|
5
|
-
declare var __VLS_8: {}, __VLS_10: {},
|
|
5
|
+
declare var __VLS_8: {}, __VLS_10: {}, __VLS_40: `sidebar-icon-${string}`, __VLS_41: {}, __VLS_52: `sidebar-icon-${string}`, __VLS_53: {}, __VLS_55: {};
|
|
6
6
|
type __VLS_Slots = {} & {
|
|
7
|
-
[K in NonNullable<typeof
|
|
7
|
+
[K in NonNullable<typeof __VLS_40>]?: (props: typeof __VLS_41) => any;
|
|
8
8
|
} & {
|
|
9
|
-
[K in NonNullable<typeof
|
|
9
|
+
[K in NonNullable<typeof __VLS_52>]?: (props: typeof __VLS_53) => any;
|
|
10
10
|
} & {
|
|
11
11
|
header?: (props: typeof __VLS_8) => any;
|
|
12
12
|
} & {
|
|
13
13
|
top?: (props: typeof __VLS_10) => any;
|
|
14
14
|
} & {
|
|
15
|
-
footer?: (props: typeof
|
|
15
|
+
footer?: (props: typeof __VLS_55) => any;
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
18
18
|
topItems: {
|
|
@@ -23,6 +23,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
23
23
|
type: PropType<BottomPrimaryItem[]>;
|
|
24
24
|
default: () => never[];
|
|
25
25
|
};
|
|
26
|
+
groupConfig: {
|
|
27
|
+
type: PropType<GroupConfigMap>;
|
|
28
|
+
default: () => {};
|
|
29
|
+
};
|
|
26
30
|
headerHeight: {
|
|
27
31
|
type: NumberConstructor;
|
|
28
32
|
default: number;
|
|
@@ -70,6 +74,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
70
74
|
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
71
75
|
click: (...args: any[]) => void;
|
|
72
76
|
toggle: (...args: any[]) => void;
|
|
77
|
+
"toggle-collapse": (...args: any[]) => void;
|
|
73
78
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
74
79
|
topItems: {
|
|
75
80
|
type: PropType<SidebarPrimaryItem[]>;
|
|
@@ -79,6 +84,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
79
84
|
type: PropType<BottomPrimaryItem[]>;
|
|
80
85
|
default: () => never[];
|
|
81
86
|
};
|
|
87
|
+
groupConfig: {
|
|
88
|
+
type: PropType<GroupConfigMap>;
|
|
89
|
+
default: () => {};
|
|
90
|
+
};
|
|
82
91
|
headerHeight: {
|
|
83
92
|
type: NumberConstructor;
|
|
84
93
|
default: number;
|
|
@@ -126,11 +135,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
126
135
|
}>> & Readonly<{
|
|
127
136
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
128
137
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
138
|
+
"onToggle-collapse"?: ((...args: any[]) => any) | undefined;
|
|
129
139
|
}>, {
|
|
130
140
|
topOffset: number;
|
|
131
141
|
zIndex: number;
|
|
132
142
|
topItems: SidebarPrimaryItem[];
|
|
133
143
|
bottomItems: BottomPrimaryItem[];
|
|
144
|
+
groupConfig: GroupConfigMap;
|
|
134
145
|
headerHeight: number;
|
|
135
146
|
open: boolean;
|
|
136
147
|
mobileEnabled: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/AppSidebar.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AppSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/AppSidebar.vue"],"names":[],"mappings":"AA2yBA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAKnC,OAAO,KAAK,EAAE,kBAAkB,EAAe,cAAc,EAAE,MAAM,aAAa,CAAA;AAUlF,mEAAmE;AACnE,KAAK,iBAAiB,GAAG,IAAI,CAAC,kBAAkB,EAAE,OAAO,CAAC,CAAA;AA2pB1D,QAAA,IAAuB,OAAO,IAAU,EAAE,QAAQ,IAAU,EAAE,QAAQ,0BAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,0BAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACxK,KAAK,WAAW,GAAG,EAAE,GACnB;KAAG,CAAC,IAAI,WAAW,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG;CAAE,GACzE;KAAG,CAAC,IAAI,WAAW,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG;CAAE,GACzE;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC3C;IAAE,GAAG,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GACzC;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAwG/C,QAAA,MAAM,eAAe;;cAMF,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI9B,QAAQ,CAAC,iBAAiB,EAAE,CAAC;;;;cAI5B,QAAQ,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cARzB,QAAQ,CAAC,kBAAkB,EAAE,CAAC;;;;cAI9B,QAAQ,CAAC,iBAAiB,EAAE,CAAC;;;;cAI5B,QAAQ,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAiD1C,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAE1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -28,4 +28,12 @@ export interface SidebarPrimaryItem extends Omit<SidebarSecondaryItem, 'parentKe
|
|
|
28
28
|
/** Nested sidebar items (children) without icons */
|
|
29
29
|
items?: SidebarSecondaryItem[];
|
|
30
30
|
}
|
|
31
|
+
export interface GroupConfig {
|
|
32
|
+
label: string;
|
|
33
|
+
collapsible?: boolean;
|
|
34
|
+
collapsed?: boolean;
|
|
35
|
+
}
|
|
36
|
+
export interface GroupConfigMap {
|
|
37
|
+
[key: string]: GroupConfig;
|
|
38
|
+
}
|
|
31
39
|
//# sourceMappingURL=sidebar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/types/sidebar.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,2CAA2C;IAC3C,IAAI,EAAE,MAAM,CAAA;IACZ,iKAAiK;IACjK,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAChC,uIAAuI;IACvI,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,qQAAqQ;IACrQ,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,iCAAiC;IACjC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,oEAAoE;IACpE,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,8FAA8F;IAC9F,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,0GAA0G;IAC1G,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,oBAAoB,EAAE,WAAW,GAAG,YAAY,CAAC;IAChG,+EAA+E;IAC/E,GAAG,EAAE,MAAM,CAAA;IACX,6DAA6D;IAC7D,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,6CAA6C;IAC7C,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,2LAA2L;IAC3L,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,oDAAoD;IACpD,KAAK,CAAC,EAAE,oBAAoB,EAAE,CAAA;CAC/B"}
|
|
1
|
+
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/types/sidebar.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,2CAA2C;IAC3C,IAAI,EAAE,MAAM,CAAA;IACZ,iKAAiK;IACjK,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAChC,uIAAuI;IACvI,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,qQAAqQ;IACrQ,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,iCAAiC;IACjC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,oEAAoE;IACpE,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,8FAA8F;IAC9F,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,0GAA0G;IAC1G,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAAC,oBAAoB,EAAE,WAAW,GAAG,YAAY,CAAC;IAChG,+EAA+E;IAC/E,GAAG,EAAE,MAAM,CAAA;IACX,6DAA6D;IAC7D,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,6CAA6C;IAC7C,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,2LAA2L;IAC3L,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,oDAAoD;IACpD,KAAK,CAAC,EAAE,oBAAoB,EAAE,CAAA;CAC/B;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,MAAM,WAAW,cAAc;IAC7B,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,CAAA;CAC3B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong-ui-public/app-layout",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/app-layout.umd.js",
|
|
6
6
|
"module": "./dist/app-layout.es.js",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@kong/icons": "^1.37.0",
|
|
30
|
+
"@vueuse/core": "^13.5.0",
|
|
30
31
|
"focus-trap": "^7.6.5",
|
|
31
32
|
"focus-trap-vue": "^4.0.3",
|
|
32
33
|
"lodash.clonedeep": "^4.5.0"
|