@kong-ui-public/app-layout 4.2.36-pr.1599.25a3ac61.0 → 4.2.36-pr.1654.9d1bc329.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.
Files changed (25) hide show
  1. package/dist/app-layout.es.js +796 -794
  2. package/dist/app-layout.umd.js +5 -5
  3. package/dist/types/components/AppLayout.vue.d.ts +14 -21
  4. package/dist/types/components/AppLayout.vue.d.ts.map +1 -1
  5. package/dist/types/components/aboutSection/AppAboutSection.vue.d.ts +6 -13
  6. package/dist/types/components/aboutSection/AppAboutSection.vue.d.ts.map +1 -1
  7. package/dist/types/components/errors/AppError.vue.d.ts +3 -10
  8. package/dist/types/components/errors/AppError.vue.d.ts.map +1 -1
  9. package/dist/types/components/icons/BananaSplit.vue.d.ts.map +1 -1
  10. package/dist/types/components/navbar/AccountDropdown.vue.d.ts +6 -14
  11. package/dist/types/components/navbar/AccountDropdown.vue.d.ts.map +1 -1
  12. package/dist/types/components/navbar/AppNavbar.vue.d.ts +9 -16
  13. package/dist/types/components/navbar/AppNavbar.vue.d.ts.map +1 -1
  14. package/dist/types/components/pageHeader/AppPageHeader.vue.d.ts +7 -14
  15. package/dist/types/components/pageHeader/AppPageHeader.vue.d.ts.map +1 -1
  16. package/dist/types/components/sidebar/AppSidebar.vue.d.ts +6 -163
  17. package/dist/types/components/sidebar/AppSidebar.vue.d.ts.map +1 -1
  18. package/dist/types/components/sidebar/ItemBadge.vue.d.ts.map +1 -1
  19. package/dist/types/components/sidebar/SidebarItem.vue.d.ts +4 -11
  20. package/dist/types/components/sidebar/SidebarItem.vue.d.ts.map +1 -1
  21. package/dist/types/components/sidebar/SidebarToggle.vue.d.ts.map +1 -1
  22. package/dist/types/composables/useDebounce.d.ts.map +1 -1
  23. package/dist/types/index.d.ts +1 -1
  24. package/dist/types/index.d.ts.map +1 -1
  25. package/package.json +5 -5
@@ -1,166 +1,6 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { SidebarPrimaryItem } from '../../types';
3
- declare function __VLS_template(): {
4
- slots: Partial<Record<`sidebar-icon-${string}`, (_: {}) => any>> & Partial<Record<`sidebar-icon-${string}`, (_: {}) => any>> & {
5
- header?(_: {}): any;
6
- top?(_: {}): any;
7
- footer?(_: {}): any;
8
- };
9
- refs: {
10
- focusTrap: import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
11
- active: {
12
- type: BooleanConstructor;
13
- default: boolean;
14
- };
15
- } & {
16
- escapeDeactivates: {
17
- type: BooleanConstructor;
18
- default: true;
19
- };
20
- returnFocusOnDeactivate: {
21
- type: BooleanConstructor;
22
- default: true;
23
- };
24
- allowOutsideClick: {
25
- type: PropType<boolean | import("focus-trap").MouseEventToBoolean | undefined>;
26
- default: true;
27
- };
28
- clickOutsideDeactivates: PropType<boolean | import("focus-trap").MouseEventToBoolean | undefined>;
29
- initialFocus: PropType<import("focus-trap").FocusTargetOrFalse | (() => void) | undefined>;
30
- fallbackFocus: PropType<import("focus-trap").FocusTarget | undefined>;
31
- checkCanFocusTrap: PropType<((containers: (HTMLElement | SVGElement)[]) => Promise<void>) | undefined>;
32
- checkCanReturnFocus: PropType<((trigger: HTMLElement | SVGElement) => Promise<void>) | undefined>;
33
- delayInitialFocus: {
34
- type: BooleanConstructor;
35
- default: true;
36
- };
37
- document: PropType<Document | undefined>;
38
- preventScroll: BooleanConstructor;
39
- setReturnFocus: PropType<import("focus-trap").FocusTargetValueOrFalse | ((nodeFocusedBeforeActivation: HTMLElement | SVGElement) => import("focus-trap").FocusTargetValueOrFalse) | undefined>;
40
- tabbableOptions: PropType<import("focus-trap").FocusTrapTabbableOptions | undefined>;
41
- }>> & {
42
- onActivate?: ((...args: any[]) => any) | undefined;
43
- onPostActivate?: ((...args: any[]) => any) | undefined;
44
- onDeactivate?: ((...args: any[]) => any) | undefined;
45
- onPostDeactivate?: ((...args: any[]) => any) | undefined;
46
- "onUpdate:active"?: ((...args: any[]) => any) | undefined;
47
- }, {
48
- activate(): void;
49
- deactivate(): void;
50
- renderImpl(): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
51
- [key: string]: any;
52
- }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
53
- [key: string]: any;
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 & Readonly<import("vue").ExtractPropTypes<{
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
- }, {
93
- returnFocusOnDeactivate: boolean;
94
- escapeDeactivates: boolean;
95
- allowOutsideClick: boolean | import("focus-trap").MouseEventToBoolean | undefined;
96
- preventScroll: boolean;
97
- delayInitialFocus: boolean;
98
- active: boolean;
99
- }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
100
- P: {};
101
- B: {};
102
- D: {};
103
- C: {};
104
- M: {};
105
- Defaults: {};
106
- }, Readonly<import("vue").ExtractPropTypes<{
107
- active: {
108
- type: BooleanConstructor;
109
- default: boolean;
110
- };
111
- } & {
112
- escapeDeactivates: {
113
- type: BooleanConstructor;
114
- default: true;
115
- };
116
- returnFocusOnDeactivate: {
117
- type: BooleanConstructor;
118
- default: true;
119
- };
120
- allowOutsideClick: {
121
- type: PropType<boolean | import("focus-trap").MouseEventToBoolean | undefined>;
122
- default: true;
123
- };
124
- clickOutsideDeactivates: PropType<boolean | import("focus-trap").MouseEventToBoolean | undefined>;
125
- initialFocus: PropType<import("focus-trap").FocusTargetOrFalse | (() => void) | undefined>;
126
- fallbackFocus: PropType<import("focus-trap").FocusTarget | undefined>;
127
- checkCanFocusTrap: PropType<((containers: (HTMLElement | SVGElement)[]) => Promise<void>) | undefined>;
128
- checkCanReturnFocus: PropType<((trigger: HTMLElement | SVGElement) => Promise<void>) | undefined>;
129
- delayInitialFocus: {
130
- type: BooleanConstructor;
131
- default: true;
132
- };
133
- document: PropType<Document | undefined>;
134
- preventScroll: BooleanConstructor;
135
- setReturnFocus: PropType<import("focus-trap").FocusTargetValueOrFalse | ((nodeFocusedBeforeActivation: HTMLElement | SVGElement) => import("focus-trap").FocusTargetValueOrFalse) | undefined>;
136
- tabbableOptions: PropType<import("focus-trap").FocusTrapTabbableOptions | undefined>;
137
- }>> & {
138
- onActivate?: ((...args: any[]) => any) | undefined;
139
- onPostActivate?: ((...args: any[]) => any) | undefined;
140
- onDeactivate?: ((...args: any[]) => any) | undefined;
141
- onPostDeactivate?: ((...args: any[]) => any) | undefined;
142
- "onUpdate:active"?: ((...args: any[]) => any) | undefined;
143
- }, {
144
- activate(): void;
145
- deactivate(): void;
146
- renderImpl(): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
147
- [key: string]: any;
148
- }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
149
- [key: string]: any;
150
- }>[] | null;
151
- }, {}, {}, {}, {
152
- returnFocusOnDeactivate: boolean;
153
- escapeDeactivates: boolean;
154
- allowOutsideClick: boolean | import("focus-trap").MouseEventToBoolean | undefined;
155
- preventScroll: boolean;
156
- delayInitialFocus: boolean;
157
- active: boolean;
158
- }> | null;
159
- };
160
- attrs: Partial<{}>;
161
- };
162
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
163
- declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
164
4
  topItems: {
165
5
  type: PropType<SidebarPrimaryItem[]>;
166
6
  default: () => never[];
@@ -286,8 +126,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
286
126
  mobileOverlay: boolean;
287
127
  mobileOverlayZIndex: number;
288
128
  mobileOverlayCloseOnClick: boolean;
289
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
290
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
129
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Partial<Record<`sidebar-icon-${string}`, (_: {}) => any>> & Partial<Record<`sidebar-icon-${string}`, (_: {}) => any>> & {
130
+ header?(_: {}): any;
131
+ top?(_: {}): any;
132
+ footer?(_: {}): any;
133
+ }>;
291
134
  export default _default;
292
135
  type __VLS_WithTemplateSlots<T, S> = T & {
293
136
  new (): {
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BA+cP,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
+ {"version":3,"file":"AppSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/AppSidebar.vue.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAutBrD,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ItemBadge.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/ItemBadge.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;AAgJA,wBAYG"}
1
+ {"version":3,"file":"ItemBadge.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/ItemBadge.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAgFA,wBAYG"}
@@ -1,14 +1,8 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { SidebarPrimaryItem, SidebarSecondaryItem } from '../../types';
3
- declare function __VLS_template(): {
4
- slots: Partial<Record<`sidebar-icon-${string}`, (_: {}) => any>>;
5
- refs: {};
6
- attrs: Partial<{}>;
7
- };
8
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
- declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
10
4
  item: {
11
- type: PropType<SidebarPrimaryItem | SidebarSecondaryItem>;
5
+ type: PropType<SidebarSecondaryItem | SidebarPrimaryItem>;
12
6
  required: true;
13
7
  };
14
8
  /** True if the item is not an L1 primary sidebar item */
@@ -20,7 +14,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
20
14
  click: (...args: any[]) => void;
21
15
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
22
16
  item: {
23
- type: PropType<SidebarPrimaryItem | SidebarSecondaryItem>;
17
+ type: PropType<SidebarSecondaryItem | SidebarPrimaryItem>;
24
18
  required: true;
25
19
  };
26
20
  /** True if the item is not an L1 primary sidebar item */
@@ -32,8 +26,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
32
26
  onClick?: ((...args: any[]) => any) | undefined;
33
27
  }>, {
34
28
  subnavItem: boolean;
35
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
36
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Partial<Record<`sidebar-icon-${string}`, (_: {}) => any>>>;
37
30
  export default _default;
38
31
  type __VLS_WithTemplateSlots<T, S> = T & {
39
32
  new (): {
@@ -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;;;;;;;;;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
+ {"version":3,"file":"SidebarItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/SidebarItem.vue.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAA;;;;;;IAuWzE,yDAAyD;;;;;;;;;;;;IAAzD,yDAAyD;;;;;;;;;;AAQ3D,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"SidebarToggle.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/SidebarToggle.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAwLA,wBAYG"}
1
+ {"version":3,"file":"SidebarToggle.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/sidebar/SidebarToggle.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiHA,wBAYG"}
@@ -1 +1 @@
1
- {"version":3,"file":"useDebounce.d.ts","sourceRoot":"","sources":["../../../src/composables/useDebounce.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,WAAW;gCAQE,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,SAAS,MAAM,KAAG,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,IAAI;EAkBjG"}
1
+ {"version":3,"file":"useDebounce.d.ts","sourceRoot":"","sources":["../../../src/composables/useDebounce.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,WAAW;0CAQY,GAAG,KAAK,GAAG,SAAS,MAAM,eAAa,GAAG,KAAK,IAAI;EAkBjG"}
@@ -9,8 +9,8 @@ import AppSidebar from './components/sidebar/AppSidebar.vue';
9
9
  import SidebarToggle from './components/sidebar/SidebarToggle.vue';
10
10
  declare const _default: {
11
11
  install: (app: App, options?: {
12
- name?: string;
13
12
  [key: string]: any;
13
+ name?: string | undefined;
14
14
  }) => void;
15
15
  };
16
16
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAE9B,OAAO,eAAe,MAAM,yCAAyC,CAAA;AACrE,OAAO,eAAe,MAAM,+CAA+C,CAAA;AAC3E,OAAO,QAAQ,MAAM,kCAAkC,CAAA;AACvD,OAAO,SAAS,MAAM,4BAA4B,CAAA;AAClD,OAAO,SAAS,MAAM,mCAAmC,CAAA;AACzD,OAAO,aAAa,MAAM,2CAA2C,CAAA;AACrE,OAAO,UAAU,MAAM,qCAAqC,CAAA;AAC5D,OAAO,aAAa,MAAM,wCAAwC,CAAA;;mBAMjD,GAAG,YAAW;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,KAAQ,IAAI;;AAHhF,wBAMC;AAGD,OAAO,EACL,eAAe,EACf,eAAe,EACf,QAAQ,EACR,SAAS,EACT,SAAS,EACT,aAAa,EACb,UAAU,EACV,aAAa,GACd,CAAA;AAED,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAE9B,OAAO,eAAe,MAAM,yCAAyC,CAAA;AACrE,OAAO,eAAe,MAAM,+CAA+C,CAAA;AAC3E,OAAO,QAAQ,MAAM,kCAAkC,CAAA;AACvD,OAAO,SAAS,MAAM,4BAA4B,CAAA;AAClD,OAAO,SAAS,MAAM,mCAAmC,CAAA;AACzD,OAAO,aAAa,MAAM,2CAA2C,CAAA;AACrE,OAAO,UAAU,MAAM,qCAAqC,CAAA;AAC5D,OAAO,aAAa,MAAM,wCAAwC,CAAA;;mBAMjD,GAAG;;;UAAwD,IAAI;;AAHhF,wBAMC;AAGD,OAAO,EACL,eAAe,EACf,eAAe,EACf,QAAQ,EACR,SAAS,EACT,SAAS,EACT,aAAa,EACb,UAAU,EACV,aAAa,GACd,CAAA;AAED,cAAc,SAAS,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong-ui-public/app-layout",
3
- "version": "4.2.36-pr.1599.25a3ac61.0",
3
+ "version": "4.2.36-pr.1654.9d1bc329.0",
4
4
  "type": "module",
5
5
  "main": "./dist/app-layout.umd.js",
6
6
  "module": "./dist/app-layout.es.js",
@@ -23,19 +23,19 @@
23
23
  "peerDependencies": {
24
24
  "@kong/kongponents": "^9.8.1",
25
25
  "vue": ">= 3.3.13 < 4",
26
- "vue-router": "^4.4.4"
26
+ "vue-router": "^4.3.3"
27
27
  },
28
28
  "dependencies": {
29
29
  "@kong/icons": "^1.15.2",
30
- "focus-trap": "^7.6.0",
30
+ "focus-trap": "^7.5.4",
31
31
  "focus-trap-vue": "^4.0.3",
32
32
  "lodash.clonedeep": "^4.5.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@kong/design-tokens": "1.17.2",
36
- "@kong/kongponents": "9.8.1",
36
+ "@kong/kongponents": "9.8.2-pr.2405.a36c46e09.0",
37
37
  "@types/lodash.clonedeep": "^4.5.9",
38
- "vue": "^3.5.4",
38
+ "vue": "^3.5.8",
39
39
  "vue-router": "^4.4.5"
40
40
  },
41
41
  "repository": {