ember-primitives 0.60.0 → 0.61.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/README.md CHANGED
@@ -38,6 +38,13 @@ See the [Contributing](CONTRIBUTING.md) guide for details.
38
38
  <sub><b>Liam Potter</b></sub>
39
39
  </a>
40
40
  </td>
41
+ <td align="center">
42
+ <a href="https://github.com/NullVoxPopuli-ai-agent">
43
+ <img src="https://avatars.githubusercontent.com/u/268630448?v=4" width="100;" alt="NullVoxPopuli-ai-agent"/>
44
+ <br />
45
+ <sub><b>@NullVoxPopuli's reduced-access machine account for AI usage</b></sub>
46
+ </a>
47
+ </td>
41
48
  <td align="center">
42
49
  <a href="https://github.com/barryofguilder">
43
50
  <img src="https://avatars.githubusercontent.com/u/5649106?v=4" width="100;" alt="barryofguilder"/>
@@ -52,6 +59,8 @@ See the [Contributing](CONTRIBUTING.md) guide for details.
52
59
  <sub><b>pulien</b></sub>
53
60
  </a>
54
61
  </td>
62
+ </tr>
63
+ <tr>
55
64
  <td align="center">
56
65
  <a href="https://github.com/kaermorchen">
57
66
  <img src="https://avatars.githubusercontent.com/u/11972062?v=4" width="100;" alt="kaermorchen"/>
@@ -59,8 +68,6 @@ See the [Contributing](CONTRIBUTING.md) guide for details.
59
68
  <sub><b>Stanislav Romanov</b></sub>
60
69
  </a>
61
70
  </td>
62
- </tr>
63
- <tr>
64
71
  <td align="center">
65
72
  <a href="https://github.com/rtablada">
66
73
  <img src="https://avatars.githubusercontent.com/u/2532004?v=4" width="100;" alt="rtablada"/>
@@ -75,13 +82,6 @@ See the [Contributing](CONTRIBUTING.md) guide for details.
75
82
  <sub><b>Lukas Nys</b></sub>
76
83
  </a>
77
84
  </td>
78
- <td align="center">
79
- <a href="https://github.com/NullVoxPopuli-ai-agent">
80
- <img src="https://avatars.githubusercontent.com/u/268630448?v=4" width="100;" alt="NullVoxPopuli-ai-agent"/>
81
- <br />
82
- <sub><b>@NullVoxPopuli's reduced-access machine account for AI usage</b></sub>
83
- </a>
84
- </td>
85
85
  <td align="center">
86
86
  <a href="https://github.com/bendemboski">
87
87
  <img src="https://avatars.githubusercontent.com/u/559001?v=4" width="100;" alt="bendemboski"/>
@@ -0,0 +1,31 @@
1
+ export type Orientation = 'horizontal' | 'vertical';
2
+ interface GroupOptions {
3
+ orientation: () => Orientation | undefined;
4
+ onLayoutChange: () => ((sizes: number[]) => void) | undefined;
5
+ }
6
+ export declare class GroupState {
7
+ #private;
8
+ element: HTMLElement | null;
9
+ constructor(options: GroupOptions);
10
+ get orientation(): Orientation;
11
+ /**
12
+ * This group's panels, in document order.
13
+ * Panels of nested groups belong to their own group, not this one.
14
+ */
15
+ get panels(): HTMLElement[];
16
+ get handles(): HTMLElement[];
17
+ get sizes(): number[];
18
+ /**
19
+ * Called (via modifier) when the group element is inserted.
20
+ * Watches for panels being added/removed (and the orientation
21
+ * changing) and performs the initial layout.
22
+ */
23
+ attach: (element: HTMLElement) => (() => void);
24
+ startDrag(handleElement: HTMLElement, event: PointerEvent): void;
25
+ /**
26
+ * Keyboard support for the WAI-ARIA window-splitter pattern.
27
+ */
28
+ handleKeyDown(handleElement: HTMLElement, event: KeyboardEvent): void;
29
+ }
30
+ export {};
31
+ //# sourceMappingURL=state.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../../src/components/resizable/state.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,YAAY,GAAG,UAAU,CAAC;AAiGpD,UAAU,YAAY;IACpB,WAAW,EAAE,MAAM,WAAW,GAAG,SAAS,CAAC;IAC3C,cAAc,EAAE,MAAM,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;CAC/D;AAED,qBAAa,UAAU;;IACrB,OAAO,EAAE,WAAW,GAAG,IAAI,CAAQ;gBAsCvB,OAAO,EAAE,YAAY;IAIjC,IAAI,WAAW,IAAI,WAAW,CAE7B;IAMD;;;OAGG;IACH,IAAI,MAAM,IAAI,WAAW,EAAE,CAE1B;IAED,IAAI,OAAO,IAAI,WAAW,EAAE,CAE3B;IAYD,IAAI,KAAK,IAAI,MAAM,EAAE,CAEpB;IA0FD;;;;OAIG;IACH,MAAM,GAAI,SAAS,WAAW,KAAG,CAAC,MAAM,IAAI,CAAC,CAW3C;IAqTF,SAAS,CAAC,aAAa,EAAE,WAAW,EAAE,KAAK,EAAE,YAAY,GAAG,IAAI;IA6EhE;;OAEG;IACH,aAAa,CAAC,aAAa,EAAE,WAAW,EAAE,KAAK,EAAE,aAAa,GAAG,IAAI;CAwFtE"}
@@ -0,0 +1,98 @@
1
+ import "./resizable.css";
2
+ import Component from "@glimmer/component";
3
+ import { GroupState } from "./resizable/state.ts";
4
+ import type { Orientation } from "./resizable/state.ts";
5
+ import type { TOC } from "@ember/component/template-only";
6
+ export type { Orientation };
7
+ export interface PanelSignature {
8
+ Element: HTMLDivElement;
9
+ Args: {
10
+ /**
11
+ * The smallest size (in % of the group) this panel may be resized to.
12
+ * Defaults to 0.
13
+ */
14
+ minSize?: number;
15
+ /**
16
+ * The largest size (in % of the group) this panel may be resized to.
17
+ * Defaults to 100.
18
+ */
19
+ maxSize?: number;
20
+ /**
21
+ * The initial size (in % of the group).
22
+ * Panels without a size share the remaining space equally.
23
+ */
24
+ size?: number;
25
+ /**
26
+ * When true, pressing Enter on the handle after this panel
27
+ * collapses the panel to 0 (and restores it on the next press),
28
+ * and dragging well past `@minSize` snaps it closed.
29
+ *
30
+ * While collapsed, the panel has a `data-collapsed` attribute.
31
+ */
32
+ collapsible?: boolean;
33
+ };
34
+ Blocks: {
35
+ default: [];
36
+ };
37
+ }
38
+ export declare const Panel: TOC<PanelSignature>;
39
+ export interface HandleSignature {
40
+ Element: HTMLDivElement;
41
+ Blocks: {
42
+ default: [];
43
+ };
44
+ }
45
+ /**
46
+ * The draggable (and keyboard-operable) divider between two Panels.
47
+ *
48
+ * Follows the WAI-ARIA window-splitter pattern, and controls the Panel
49
+ * immediately before it. Finds its group via DOM context, so it must be
50
+ * rendered inside a `<Resizable>`.
51
+ *
52
+ * Give each handle an accessible name (e.g. `aria-label="Resize sidebar"`).
53
+ */
54
+ export declare const Handle: TOC<HandleSignature>;
55
+ export interface Signature {
56
+ Element: HTMLDivElement;
57
+ Args: {
58
+ /**
59
+ * Which direction the panels are laid out in.
60
+ *
61
+ * `horizontal` (the default) places panels side-by-side (resizing along the x-axis),
62
+ * `vertical` stacks them (resizing along the y-axis).
63
+ *
64
+ * May be changed while rendered; panels keep their sizes.
65
+ */
66
+ orientation?: Orientation;
67
+ /**
68
+ * Called with the panels' sizes (percentages, in document order)
69
+ * whenever the layout changes.
70
+ *
71
+ * Useful for persisting the layout.
72
+ */
73
+ onLayoutChange?: (sizes: number[]) => void;
74
+ };
75
+ Blocks: {
76
+ default: [];
77
+ };
78
+ }
79
+ /**
80
+ * A group of resizable panels, separated by draggable handles.
81
+ *
82
+ * Render `<Panel>` and `<Handle>` components inside -- they are their
83
+ * own imports, and find the group via DOM context / DOM queries.
84
+ *
85
+ * Groups can be nested (a `<Resizable>` inside a Panel) to build
86
+ * tree-shaped tiling layouts, i3 / tmux style.
87
+ */
88
+ export declare class Resizable extends Component<Signature> {
89
+ state: GroupState;
90
+ attach: import("ember-modifier").FunctionBasedModifier<{
91
+ Args: {
92
+ Positional: unknown[];
93
+ Named: import("ember-modifier/-private/signature").EmptyObject;
94
+ };
95
+ Element: HTMLElement;
96
+ }>;
97
+ }
98
+ //# sourceMappingURL=resizable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resizable.d.ts","sourceRoot":"","sources":["../../src/components/resizable.gts"],"names":[],"mappings":"AA2KA,OAAO,iBAAiB,CAAC;AAEzB,OAAO,SAAS,MAAM,oBAAoB,CAAC;AAM3C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,gCAAgC,CAAC;AAE1D,YAAY,EAAE,WAAW,EAAE,CAAC;AAE5B,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,cAAc,CAAC;IACxB,IAAI,EAAE;QACJ;;;WAGG;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB;;;WAGG;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB;;;WAGG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QACd;;;;;;WAMG;QACH,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,CAAC;IACF,MAAM,EAAE;QACN,OAAO,EAAE,EAAE,CAAC;KACb,CAAC;CACH;AAeD,eAAO,MAAM,KAAK,EAAE,GAAG,CAAC,cAAc,CAsBpC,CAAC;AAEH,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,cAAc,CAAC;IACxB,MAAM,EAAE;QACN,OAAO,EAAE,EAAE,CAAC;KACb,CAAC;CACH;AAUD;;;;;;;;GAQG;AACH,eAAO,MAAM,MAAM,EAAE,GAAG,CAAC,eAAe,CA2BtC,CAAC;AAEH,MAAM,WAAW,SAAS;IACxB,OAAO,EAAE,cAAc,CAAC;IACxB,IAAI,EAAE;QACJ;;;;;;;WAOG;QACH,WAAW,CAAC,EAAE,WAAW,CAAC;QAC1B;;;;;WAKG;QACH,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;KAC5C,CAAC;IACF,MAAM,EAAE;QACN,OAAO,EAAE,EAAE,CAAC;KACb,CAAC;CACH;AAED;;;;;;;;GAQG;AACH,qBAAa,SAAU,SAAQ,SAAS,CAAC,SAAS,CAAC;IACjD,KAAK,aAGF;IAEH,MAAM;;;;;;OAAkE;CA0BzE"}
@@ -16,13 +16,16 @@ export declare class Provide<Data extends object> extends Component<{
16
16
  */
17
17
  data: Data | (() => Data) | Newable<Data>;
18
18
  /**
19
- * Optionally, you may use string-based keys to reference the data in the Provide.
19
+ * Optionally, you may use keys to reference the data in the Provide,
20
+ * e.g. when `@data` is an already-created instance and consumers
21
+ * reference it by its class.
20
22
  *
21
- * This is not recommended though, because when using a class or other object-like structure,
23
+ * Keys are compared by identity. String keys are not recommended,
24
+ * because when using a class or other object-like structure,
22
25
  * the type in the `<Consume>` component can be derived from that class or object-like structure.
23
26
  * With string keys, the `<Consume>` type will be unknown.
24
27
  */
25
- key?: string;
28
+ key?: string | object;
26
29
  /**
27
30
  * Can be used to either customize the element tag ( defaults to div )
28
31
  * If set to `false`, we won't use an element for the Provider boundary.
@@ -1 +1 @@
1
- {"version":3,"file":"dom-context.d.ts","sourceRoot":"","sources":["../src/dom-context.gts"],"names":[],"mappings":"AAqPA,OAAO,SAAS,MAAM,oBAAoB,CAAC;AAO3C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,KAAK,KAAK,MAAM,cAAc,CAAC;AAmBtC,qBAAa,OAAO,CAAC,IAAI,SAAS,MAAM,CAAE,SAAQ,SAAS,CAAC;IAC1D;;;OAGG;IACH,OAAO,EAAE,IAAI,CAAC;IACd,IAAI,EAAE;QACJ;;;;;WAKG;QACH,IAAI,EAAE,IAAI,GAAG,CAAC,MAAM,IAAI,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;QAE1C;;;;;;WAMG;QACH,GAAG,CAAC,EAAE,MAAM,CAAC;QAEb;;;;;;;;;;;;WAYG;QACH,OAAO,CAAC,EAAE,MAAM,qBAAqB,GAAG,KAAK,GAAG,SAAS,CAAC;KAC3D,CAAC;IACF,MAAM,EAAE;QACN;;WAEG;QACH,OAAO,EAAE,EAAE,CAAC;KACb,CAAC;CACH,CAAC;IACA,IAAI,IAAI,SAcP;IAED,OAAO,EAAE,IAAI,GAAG,WAAW,CAAC;gBAG1B,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE;QACJ,IAAI,EAAE,IAAI,GAAG,CAAC,MAAM,IAAI,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;QAC1C,GAAG,CAAC,EAAE,MAAM,CAAC;KACd;IAyBH,IAAI,kBAAkB,YAErB;CAmBF;AAuCD,KAAK,UAAU,CAAC,GAAG,IAAI,GAAG,SAAS,MAAM,GACrC,OAAO,GACP,GAAG,SAAS,OAAO,CAAC,MAAM,CAAC,CAAC,GAC1B,CAAC,GACD,GAAG,SAAS,MAAM,MAAM,CAAC,GACvB,CAAC,GACD,GAAG,CAAC;AAEZ,qBAAa,OAAO,CAAC,GAAG,SAAS,MAAM,GAAG,MAAM,CAAE,SAAQ,SAAS,CAAC;IAClE,IAAI,EAAE;QACJ,GAAG,EAAE,GAAG,CAAC;KACV,CAAC;IACF,MAAM,EAAE;QACN,OAAO,EAAE;YACP,OAAO,EAAE;gBACP,IAAI,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;aACvB;SACF,CAAC;KACH,CAAC;CACH,CAAC;IAES,OAAO,EAAG,MAAM,UAAU,CAAC,GAAG,CAAC,CAAC;IAEzC,OAAO,EAAE,IAAI,CAAC;gBAEF,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;QAAE,GAAG,EAAE,GAAG,CAAA;KAAE;IAM5C,IACI,OAAO;uBAKK,UAAU,CAAC,GAAG,CAAC;MAa9B;CAOF"}
1
+ {"version":3,"file":"dom-context.d.ts","sourceRoot":"","sources":["../src/dom-context.gts"],"names":[],"mappings":"AAwPA,OAAO,SAAS,MAAM,oBAAoB,CAAC;AAO3C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,KAAK,KAAK,MAAM,cAAc,CAAC;AAmBtC,qBAAa,OAAO,CAAC,IAAI,SAAS,MAAM,CAAE,SAAQ,SAAS,CAAC;IAC1D;;;OAGG;IACH,OAAO,EAAE,IAAI,CAAC;IACd,IAAI,EAAE;QACJ;;;;;WAKG;QACH,IAAI,EAAE,IAAI,GAAG,CAAC,MAAM,IAAI,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;QAE1C;;;;;;;;;WASG;QACH,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;QAEtB;;;;;;;;;;;;WAYG;QACH,OAAO,CAAC,EAAE,MAAM,qBAAqB,GAAG,KAAK,GAAG,SAAS,CAAC;KAC3D,CAAC;IACF,MAAM,EAAE;QACN;;WAEG;QACH,OAAO,EAAE,EAAE,CAAC;KACb,CAAC;CACH,CAAC;IACA,IAAI,IAAI,SAcP;IAED,OAAO,EAAE,IAAI,GAAG,WAAW,CAAC;gBAG1B,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE;QACJ,IAAI,EAAE,IAAI,GAAG,CAAC,MAAM,IAAI,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;QAC1C,GAAG,CAAC,EAAE,MAAM,CAAC;KACd;IAyBH,IAAI,kBAAkB,YAErB;CAmBF;AAuCD,KAAK,UAAU,CAAC,GAAG,IAAI,GAAG,SAAS,MAAM,GACrC,OAAO,GACP,GAAG,SAAS,OAAO,CAAC,MAAM,CAAC,CAAC,GAC1B,CAAC,GACD,GAAG,SAAS,MAAM,MAAM,CAAC,GACvB,CAAC,GACD,GAAG,CAAC;AAEZ,qBAAa,OAAO,CAAC,GAAG,SAAS,MAAM,GAAG,MAAM,CAAE,SAAQ,SAAS,CAAC;IAClE,IAAI,EAAE;QACJ,GAAG,EAAE,GAAG,CAAC;KACV,CAAC;IACF,MAAM,EAAE;QACN,OAAO,EAAE;YACP,OAAO,EAAE;gBACP,IAAI,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;aACvB;SACF,CAAC;KACH,CAAC;CACH,CAAC;IAES,OAAO,EAAG,MAAM,UAAU,CAAC,GAAG,CAAC,CAAC;IAEzC,OAAO,EAAE,IAAI,CAAC;gBAEF,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE;QAAE,GAAG,EAAE,GAAG,CAAA;KAAE;IAM5C,IACI,OAAO;uBAKK,UAAU,CAAC,GAAG,CAAC;MAa9B;CAOF"}
@@ -18,6 +18,7 @@ export { PortalTargets } from './components/portal-targets';
18
18
  export { TARGETS as PORTALS } from './components/portal-targets';
19
19
  export { Progress } from './components/progress';
20
20
  export { Rating } from './components/rating';
21
+ export { Resizable, Handle as ResizableHandle, Panel as ResizablePanel, } from './components/resizable';
21
22
  export { Scroller } from './components/scroller';
22
23
  export { Separator } from './components/separator';
23
24
  export { Shadowed } from './components/shadowed';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,YAAY,EACV,iCAAiC,EACjC,gCAAgC,EAChC,8BAA8B,EAC9B,iCAAiC,GAClC,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACpD,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,YAAY,EACV,iCAAiC,EACjC,gCAAgC,EAChC,8BAA8B,EAC9B,iCAAiC,GAClC,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EACL,SAAS,EACT,MAAM,IAAI,eAAe,EACzB,KAAK,IAAI,cAAc,GACxB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACpD,cAAc,cAAc,CAAC"}