@appartmint/mint 2.4.4 → 2.5.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/js/imports/abstract/attaches-events.d.ts +26 -0
- package/dist/js/imports/abstract/attaches-events.d.ts.map +1 -0
- package/dist/js/imports/abstract/index.d.ts +5 -0
- package/dist/js/imports/abstract/index.d.ts.map +1 -0
- package/dist/js/imports/components/index.d.ts +2 -0
- package/dist/js/imports/components/index.d.ts.map +1 -1
- package/dist/js/imports/components/menu.d.ts +92 -0
- package/dist/js/imports/components/menu.d.ts.map +1 -0
- package/dist/js/imports/components/tray.d.ts +62 -0
- package/dist/js/imports/components/tray.d.ts.map +1 -0
- package/dist/js/imports/index.d.ts +2 -1
- package/dist/js/imports/index.d.ts.map +1 -1
- package/dist/js/imports/models/event.d.ts +9 -0
- package/dist/js/imports/models/event.d.ts.map +1 -0
- package/dist/js/imports/models/index.d.ts +1 -0
- package/dist/js/imports/models/index.d.ts.map +1 -1
- package/dist/js/imports/util/selectors.d.ts +1 -1
- package/dist/js/imports/util/selectors.d.ts.map +1 -1
- package/dist/js/index.js +606 -30
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Imports
|
|
3
|
+
*/
|
|
4
|
+
import { MintModelEvent } from '../models';
|
|
5
|
+
/**
|
|
6
|
+
* Attaches Events
|
|
7
|
+
* @description Extended by classes that attach and detach events
|
|
8
|
+
*/
|
|
9
|
+
export declare abstract class MintAttachesEvents {
|
|
10
|
+
/**
|
|
11
|
+
* Event handlers
|
|
12
|
+
*/
|
|
13
|
+
events: MintModelEvent[];
|
|
14
|
+
/**
|
|
15
|
+
* Attach event to the given element
|
|
16
|
+
* @param element - Element to attach event to
|
|
17
|
+
* @param event - Event to attach
|
|
18
|
+
* @param handler - Handler to attach
|
|
19
|
+
*/
|
|
20
|
+
attachEvent(element: HTMLElement | Window | null | undefined, event: string, handler: EventListener): void;
|
|
21
|
+
/**
|
|
22
|
+
* Detach events
|
|
23
|
+
*/
|
|
24
|
+
detachEvents(): void;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=attaches-events.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attaches-events.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/abstract/attaches-events.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAG3C;;;GAGG;AACH,8BAAsB,kBAAkB;IAEvC;;OAEG;IACH,MAAM,EAAE,cAAc,EAAE,CAAM;IAG9B;;;;;OAKG;IACH,WAAW,CAAC,OAAO,EAAE,WAAW,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa,GAAI,IAAI;IAiB3G;;OAEG;IACH,YAAY;CAQZ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/abstract/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/components/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/components/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC"}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Imports
|
|
3
|
+
*/
|
|
4
|
+
import { MintAttachesEvents } from '../abstract';
|
|
5
|
+
/**
|
|
6
|
+
* Menu (dropdown) functionality
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class MintMenu extends MintAttachesEvents {
|
|
10
|
+
/**
|
|
11
|
+
* Tray settings
|
|
12
|
+
*/
|
|
13
|
+
settings: Record<string, any>;
|
|
14
|
+
/**
|
|
15
|
+
* Frequently-referenced elements
|
|
16
|
+
*/
|
|
17
|
+
el: Record<string, HTMLElement | null>;
|
|
18
|
+
/**
|
|
19
|
+
* Initializes and closes the tray
|
|
20
|
+
*/
|
|
21
|
+
constructor(settings?: Record<string, any>);
|
|
22
|
+
/**
|
|
23
|
+
* Adds elements to {@link el | `this.el`}
|
|
24
|
+
*/
|
|
25
|
+
attachElements(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Adds events to the dom
|
|
28
|
+
*/
|
|
29
|
+
attachEvents(): void;
|
|
30
|
+
/**
|
|
31
|
+
* Sets the state of the provided button's menu
|
|
32
|
+
* @param button - Button element to set
|
|
33
|
+
* @param open - `true` to open the menu or `false` to close it
|
|
34
|
+
*/
|
|
35
|
+
setMenu(button?: HTMLElement | null, open?: boolean): void;
|
|
36
|
+
/**
|
|
37
|
+
* Toggles the state of the provided button's menu
|
|
38
|
+
* @param button - Button element to toggle
|
|
39
|
+
*/
|
|
40
|
+
toggleMenu(button?: HTMLElement | null): void;
|
|
41
|
+
/**
|
|
42
|
+
* Closes all submenus of the provided button's menu
|
|
43
|
+
* @param button - Button element of the parent menu
|
|
44
|
+
*/
|
|
45
|
+
closeSubMenus(button?: HTMLElement | null): void;
|
|
46
|
+
/**
|
|
47
|
+
* Closes all sibling menus of the provided button's menu
|
|
48
|
+
* @param button - Button element of the sibling menus
|
|
49
|
+
*/
|
|
50
|
+
closeSiblingMenus(button?: HTMLElement | null): void;
|
|
51
|
+
/**
|
|
52
|
+
* Closes all submenus of the menu
|
|
53
|
+
*/
|
|
54
|
+
closeAllMenus(): void;
|
|
55
|
+
/**
|
|
56
|
+
* Opens the menu closest to the document's focus
|
|
57
|
+
*/
|
|
58
|
+
openClosestMenu(): void;
|
|
59
|
+
/**
|
|
60
|
+
* Closes the menu closest to the document's focus
|
|
61
|
+
*/
|
|
62
|
+
closeClosestMenu(): void;
|
|
63
|
+
/**
|
|
64
|
+
* Toggles the menu closest to the document's focus
|
|
65
|
+
*/
|
|
66
|
+
toggleClosestMenu(): void;
|
|
67
|
+
/**
|
|
68
|
+
* Closes all submenus when the page is scrolled
|
|
69
|
+
*/
|
|
70
|
+
eHandleScroll(): void;
|
|
71
|
+
/**
|
|
72
|
+
* Handles keypresses on menu buttons
|
|
73
|
+
* @param e - Keyboard event
|
|
74
|
+
*/
|
|
75
|
+
eHandleButtonKeypress(e: KeyboardEvent): void;
|
|
76
|
+
/**
|
|
77
|
+
* Handles keypresses on menu links
|
|
78
|
+
* @param e - Keyboard event
|
|
79
|
+
*/
|
|
80
|
+
eHandleLinkKeypress(e: KeyboardEvent): void;
|
|
81
|
+
/**
|
|
82
|
+
* Handles keypresses on the menu
|
|
83
|
+
* @param e - Keyboard event
|
|
84
|
+
*/
|
|
85
|
+
eHandleKeypress(e: KeyboardEvent): void;
|
|
86
|
+
/**
|
|
87
|
+
* Toggles the clicked submenu
|
|
88
|
+
* @param e - Mouse event
|
|
89
|
+
*/
|
|
90
|
+
eToggleMenu(e: MouseEvent): void;
|
|
91
|
+
}
|
|
92
|
+
//# sourceMappingURL=menu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/components/menu.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AASjD;;;GAGG;AACH,qBAAa,QAAS,SAAQ,kBAAkB;IAE/C;;OAEM;IACF,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAM;IAEpC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI,CAAC,CAAM;IAG5C;;OAEG;gBACU,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;IAgB3C;;OAEG;IACH,cAAc,IAAM,IAAI;IAIxB;;OAEG;IACH,YAAY,IAAM,IAAI;IActB;;;;OAIG;IACH,OAAO,CAAE,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,EAC3B,IAAI,GAAE,OAAe,GAAI,IAAI;IActC;;;OAGG;IACH,UAAU,CAAE,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,GAAI,IAAI;IAI/C;;;OAGG;IACH,aAAa,CAAE,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,GAAI,IAAI;IAWlD;;;OAGG;IACH,iBAAiB,CAAE,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,GAAI,IAAI;IAUtD;;OAEG;IACH,aAAa,IAAM,IAAI;IAOvB;;OAEG;IACH,eAAe,IAAM,IAAI;IAezB;;OAEG;IACH,gBAAgB,IAAM,IAAI;IAc1B;;OAEG;IACH,iBAAiB,IAAM,IAAI;IAQ3B;;OAEG;IACH,aAAa,IAAM,IAAI;IAIvB;;;OAGG;IACH,qBAAqB,CAAE,CAAC,EAAE,aAAa,GAAI,IAAI;IAsB/C;;;OAGG;IACH,mBAAmB,CAAE,CAAC,EAAE,aAAa,GAAI,IAAI;IAiB7C;;;OAGG;IACH,eAAe,CAAE,CAAC,EAAE,aAAa,GAAI,IAAI;IAezC;;;OAGG;IACH,WAAW,CAAE,CAAC,EAAE,UAAU,GAAI,IAAI;CAKrC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { MintAttachesEvents } from '../abstract';
|
|
2
|
+
/**
|
|
3
|
+
* Tray (sidebar) functionality
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export declare class MintTray extends MintAttachesEvents {
|
|
7
|
+
/**
|
|
8
|
+
* Tray settings
|
|
9
|
+
*/
|
|
10
|
+
settings: Record<string, any>;
|
|
11
|
+
/**
|
|
12
|
+
* Frequently-referenced elements
|
|
13
|
+
*/
|
|
14
|
+
el: Record<string, HTMLElement | null>;
|
|
15
|
+
/**
|
|
16
|
+
* Initializes and closes the tray
|
|
17
|
+
*/
|
|
18
|
+
constructor(settings?: Record<string, any>);
|
|
19
|
+
/**
|
|
20
|
+
* Adds elements to {@link el | `this.el`}
|
|
21
|
+
*/
|
|
22
|
+
attachElements(): void;
|
|
23
|
+
/**
|
|
24
|
+
* Adds events to the dom
|
|
25
|
+
*/
|
|
26
|
+
attachEvents(): void;
|
|
27
|
+
/**
|
|
28
|
+
* Adds classes that inform the styles based on settings
|
|
29
|
+
*/
|
|
30
|
+
addClasses(): void;
|
|
31
|
+
/**
|
|
32
|
+
* Sets the state of the tray
|
|
33
|
+
* @param open - `true` to open the tray or `false` to close it
|
|
34
|
+
*/
|
|
35
|
+
setTray(open?: boolean): void;
|
|
36
|
+
/**
|
|
37
|
+
* Toggles the state of the tray
|
|
38
|
+
*/
|
|
39
|
+
toggleTray(): void;
|
|
40
|
+
/**
|
|
41
|
+
* Closes the tray when the window resizes
|
|
42
|
+
*/
|
|
43
|
+
eHandleResize(): void;
|
|
44
|
+
/**
|
|
45
|
+
* Sends the focus to the toggle button after tabbing past the last focusable element
|
|
46
|
+
* @param e - Keyboard event
|
|
47
|
+
*/
|
|
48
|
+
eWrapTab(e: KeyboardEvent): void;
|
|
49
|
+
/**
|
|
50
|
+
* Toggles the tray
|
|
51
|
+
*/
|
|
52
|
+
eToggle(): void;
|
|
53
|
+
/**
|
|
54
|
+
* Closes the tray
|
|
55
|
+
*/
|
|
56
|
+
eClose(): void;
|
|
57
|
+
/**
|
|
58
|
+
* Runs after the tray transitions
|
|
59
|
+
*/
|
|
60
|
+
eTransitionEnd(): void;
|
|
61
|
+
}
|
|
62
|
+
//# sourceMappingURL=tray.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tray.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/components/tray.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AASjD;;;GAGG;AACH,qBAAa,QAAS,SAAQ,kBAAkB;IAE/C;;OAEM;IACF,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAI5B;IAEF;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI,CAAC,CAAM;IAG5C;;OAEG;gBACU,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;IAiB3C;;OAEG;IACH,cAAc,IAAM,IAAI;IAQxB;;OAEG;IACH,YAAY,IAAM,IAAI;IAatB;;OAEG;IACH,UAAU,IAAM,IAAI;IAkBpB;;;OAGG;IACH,OAAO,CAAE,IAAI,GAAE,OAAe,GAAI,IAAI;IAsDtC;;OAEG;IACH,UAAU,IAAM,IAAI;IAIpB;;OAEG;IACH,aAAa,IAAM,IAAI;IAgCvB;;;OAGG;IACH,QAAQ,CAAE,CAAC,EAAE,aAAa,GAAI,IAAI;IAelC;;OAEG;IACH,OAAO,IAAM,IAAI;IAIpB;;OAEG;IACH,MAAM,IAAM,IAAI;IAIb;;OAEG;IACH,cAAc,IAAM,IAAI;CAK3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ts/imports/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ts/imports/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/models/event.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,cAAc;IAC9B,EAAE,EAAE,WAAW,GAAG,MAAM,GAAG,IAAI,CAAC;IAChC,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,MAAM,EAAE,MAAM,EAAE,CAAA;CAChB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/models/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/models/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC"}
|
|
@@ -108,7 +108,7 @@ export declare abstract class MintSelectors {
|
|
|
108
108
|
* @param el - the element whose focusable children will be returned
|
|
109
109
|
* @returns - the elements within the given element that are focusable
|
|
110
110
|
*/
|
|
111
|
-
static getFocusables(el?: HTMLElement): HTMLElement[];
|
|
111
|
+
static getFocusables(el?: HTMLElement | null): HTMLElement[];
|
|
112
112
|
/**
|
|
113
113
|
* Returns true if an element is focusable and false if not,
|
|
114
114
|
* based on styles (i.e. a parent has display: none;)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/util/selectors.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,8BAAsB,aAAa;IAC/B;;OAEG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,CAAU;IAE5B;;OAEG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,CAAkB;IAEpC;;OAEG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAgB;IAEvC;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,CAAqB;IAE/C;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,CAAqB;IAE/C;;OAEG;IACH,MAAM,CAAC,OAAO,EAAE,MAAM,CAAY;IAElC;;OAEG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,CAAkB;IAE9C;;OAEG;IACH,MAAM,CAAC,KAAK,EAAE,MAAM,CAAU;IAE9B;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,CAAqB;IAE/C;;OAEG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,CAA6C;IAEpE;;OAEG;IACH,MAAM,CAAC,SAAS,EAAE,MAAM,CAOyC;IAEjE;;OAEG;IACH,MAAM,CAAC,cAAc,EAAE,MAAM,CAA+B;IAE5D;;OAEG;IACH,MAAM,CAAC,OAAO,EAAE,MAAM,CAA8C;IAEpE;;;;OAIG;IACH,MAAM,CAAC,MAAM,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAKrC;;;;OAIG;IACH,MAAM,CAAC,SAAS,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIxC;;;;OAIG;IACH,MAAM,CAAC,MAAM,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIrC;;;;OAIG;IACH,MAAM,CAAC,GAAG,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIlC;;;;OAIG;IACH,MAAM,CAAC,KAAK,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIpC;;;;OAIG;IACH,MAAM,CAAC,EAAE,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIjC;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAE,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,GAAI,MAAM;IAI7C;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAE,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,GAAI,MAAM;IAIhD;;;;OAIG;IACH,MAAM,CAAC,aAAa,CAAE,EAAE,CAAC,EAAE,WAAW,GAAI,WAAW,EAAE;
|
|
1
|
+
{"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../src/ts/imports/util/selectors.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,8BAAsB,aAAa;IAC/B;;OAEG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,CAAU;IAE5B;;OAEG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,CAAkB;IAEpC;;OAEG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAgB;IAEvC;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,CAAqB;IAE/C;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,CAAqB;IAE/C;;OAEG;IACH,MAAM,CAAC,OAAO,EAAE,MAAM,CAAY;IAElC;;OAEG;IACH,MAAM,CAAC,aAAa,EAAE,MAAM,CAAkB;IAE9C;;OAEG;IACH,MAAM,CAAC,KAAK,EAAE,MAAM,CAAU;IAE9B;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,CAAqB;IAE/C;;OAEG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,CAA6C;IAEpE;;OAEG;IACH,MAAM,CAAC,SAAS,EAAE,MAAM,CAOyC;IAEjE;;OAEG;IACH,MAAM,CAAC,cAAc,EAAE,MAAM,CAA+B;IAE5D;;OAEG;IACH,MAAM,CAAC,OAAO,EAAE,MAAM,CAA8C;IAEpE;;;;OAIG;IACH,MAAM,CAAC,MAAM,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAKrC;;;;OAIG;IACH,MAAM,CAAC,SAAS,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIxC;;;;OAIG;IACH,MAAM,CAAC,MAAM,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIrC;;;;OAIG;IACH,MAAM,CAAC,GAAG,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIlC;;;;OAIG;IACH,MAAM,CAAC,KAAK,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIpC;;;;OAIG;IACH,MAAM,CAAC,EAAE,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIjC;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAE,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,GAAI,MAAM;IAI7C;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAE,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,GAAI,MAAM;IAIhD;;;;OAIG;IACH,MAAM,CAAC,aAAa,CAAE,EAAE,CAAC,EAAE,WAAW,GAAG,IAAI,GAAI,WAAW,EAAE;IAU9D;;;;;;OAMG;IACH,MAAM,CAAC,WAAW,CAAE,EAAE,EAAE,WAAW,GAAI,OAAO;CAWjD;AACD,eAAe,aAAa,CAAC"}
|