@acorex/components 20.2.21 → 20.2.23

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 (55) hide show
  1. package/autocomplete/index.d.ts +13 -9
  2. package/drawer/README.md +2 -2
  3. package/drawer/index.d.ts +32 -57
  4. package/drawer-legacy/README.md +3 -0
  5. package/drawer-legacy/index.d.ts +86 -0
  6. package/fesm2022/acorex-components-autocomplete.mjs +13 -6
  7. package/fesm2022/acorex-components-autocomplete.mjs.map +1 -1
  8. package/fesm2022/acorex-components-color-palette.mjs +1 -1
  9. package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
  10. package/fesm2022/acorex-components-data-pager.mjs +1 -1
  11. package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
  12. package/fesm2022/acorex-components-drawer-legacy.mjs +218 -0
  13. package/fesm2022/acorex-components-drawer-legacy.mjs.map +1 -0
  14. package/fesm2022/acorex-components-drawer.mjs +58 -143
  15. package/fesm2022/acorex-components-drawer.mjs.map +1 -1
  16. package/fesm2022/acorex-components-file-explorer.mjs +1 -1
  17. package/fesm2022/acorex-components-file-explorer.mjs.map +1 -1
  18. package/fesm2022/acorex-components-map.mjs +1 -0
  19. package/fesm2022/acorex-components-map.mjs.map +1 -1
  20. package/fesm2022/acorex-components-media-viewer.mjs +2 -2
  21. package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
  22. package/fesm2022/{acorex-components-modal-acorex-components-modal-ClSGRCam.mjs → acorex-components-modal-acorex-components-modal-BLjJGxLT.mjs} +2 -2
  23. package/fesm2022/{acorex-components-modal-acorex-components-modal-ClSGRCam.mjs.map → acorex-components-modal-acorex-components-modal-BLjJGxLT.mjs.map} +1 -1
  24. package/fesm2022/{acorex-components-modal-modal-content.component-BC-z7O0z.mjs → acorex-components-modal-modal-content.component-CC_L42pt.mjs} +4 -4
  25. package/fesm2022/acorex-components-modal-modal-content.component-CC_L42pt.mjs.map +1 -0
  26. package/fesm2022/acorex-components-modal.mjs +1 -1
  27. package/fesm2022/acorex-components-number-box-legacy.mjs +412 -0
  28. package/fesm2022/acorex-components-number-box-legacy.mjs.map +1 -0
  29. package/fesm2022/acorex-components-number-box.mjs +97 -310
  30. package/fesm2022/acorex-components-number-box.mjs.map +1 -1
  31. package/fesm2022/acorex-components-query-builder.mjs +1 -1
  32. package/fesm2022/acorex-components-query-builder.mjs.map +1 -1
  33. package/fesm2022/acorex-components-rrule.mjs +101 -6
  34. package/fesm2022/acorex-components-rrule.mjs.map +1 -1
  35. package/fesm2022/acorex-components-tag-box.mjs +44 -14
  36. package/fesm2022/acorex-components-tag-box.mjs.map +1 -1
  37. package/fesm2022/acorex-components-tag.mjs +39 -3
  38. package/fesm2022/acorex-components-tag.mjs.map +1 -1
  39. package/number-box/README.md +2 -2
  40. package/number-box/index.d.ts +31 -171
  41. package/number-box-legacy/README.md +3 -0
  42. package/number-box-legacy/index.d.ts +191 -0
  43. package/package.json +17 -17
  44. package/rrule/index.d.ts +96 -1
  45. package/tag/index.d.ts +8 -2
  46. package/tag-box/index.d.ts +12 -3
  47. package/drawer-2/README.md +0 -3
  48. package/drawer-2/index.d.ts +0 -62
  49. package/fesm2022/acorex-components-drawer-2.mjs +0 -134
  50. package/fesm2022/acorex-components-drawer-2.mjs.map +0 -1
  51. package/fesm2022/acorex-components-modal-modal-content.component-BC-z7O0z.mjs.map +0 -1
  52. package/fesm2022/acorex-components-number-box-2.mjs +0 -183
  53. package/fesm2022/acorex-components-number-box-2.mjs.map +0 -1
  54. package/number-box-2/README.md +0 -3
  55. package/number-box-2/index.d.ts +0 -41
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "20.2.21",
3
+ "version": "20.2.23",
4
4
  "peerDependencies": {
5
- "@acorex/core": "20.2.21",
6
- "@acorex/cdk": "20.2.21",
5
+ "@acorex/core": "20.2.23",
6
+ "@acorex/cdk": "20.2.23",
7
7
  "@angular/common": "^20.0.0",
8
8
  "@angular/core": "^20.0.0",
9
9
  "@angular/cdk": "^20.0.0",
@@ -84,14 +84,14 @@
84
84
  "types": "./audio-wave/index.d.ts",
85
85
  "default": "./fesm2022/acorex-components-audio-wave.mjs"
86
86
  },
87
- "./avatar": {
88
- "types": "./avatar/index.d.ts",
89
- "default": "./fesm2022/acorex-components-avatar.mjs"
90
- },
91
87
  "./autocomplete": {
92
88
  "types": "./autocomplete/index.d.ts",
93
89
  "default": "./fesm2022/acorex-components-autocomplete.mjs"
94
90
  },
91
+ "./avatar": {
92
+ "types": "./avatar/index.d.ts",
93
+ "default": "./fesm2022/acorex-components-avatar.mjs"
94
+ },
95
95
  "./badge": {
96
96
  "types": "./badge/index.d.ts",
97
97
  "default": "./fesm2022/acorex-components-badge.mjs"
@@ -140,14 +140,14 @@
140
140
  "types": "./color-box/index.d.ts",
141
141
  "default": "./fesm2022/acorex-components-color-box.mjs"
142
142
  },
143
- "./command": {
144
- "types": "./command/index.d.ts",
145
- "default": "./fesm2022/acorex-components-command.mjs"
146
- },
147
143
  "./color-palette": {
148
144
  "types": "./color-palette/index.d.ts",
149
145
  "default": "./fesm2022/acorex-components-color-palette.mjs"
150
146
  },
147
+ "./command": {
148
+ "types": "./command/index.d.ts",
149
+ "default": "./fesm2022/acorex-components-command.mjs"
150
+ },
151
151
  "./comment": {
152
152
  "types": "./comment/index.d.ts",
153
153
  "default": "./fesm2022/acorex-components-comment.mjs"
@@ -196,9 +196,9 @@
196
196
  "types": "./drawer/index.d.ts",
197
197
  "default": "./fesm2022/acorex-components-drawer.mjs"
198
198
  },
199
- "./drawer-2": {
200
- "types": "./drawer-2/index.d.ts",
201
- "default": "./fesm2022/acorex-components-drawer-2.mjs"
199
+ "./drawer-legacy": {
200
+ "types": "./drawer-legacy/index.d.ts",
201
+ "default": "./fesm2022/acorex-components-drawer-legacy.mjs"
202
202
  },
203
203
  "./dropdown": {
204
204
  "types": "./dropdown/index.d.ts",
@@ -292,9 +292,9 @@
292
292
  "types": "./number-box/index.d.ts",
293
293
  "default": "./fesm2022/acorex-components-number-box.mjs"
294
294
  },
295
- "./number-box-2": {
296
- "types": "./number-box-2/index.d.ts",
297
- "default": "./fesm2022/acorex-components-number-box-2.mjs"
295
+ "./number-box-legacy": {
296
+ "types": "./number-box-legacy/index.d.ts",
297
+ "default": "./fesm2022/acorex-components-number-box-legacy.mjs"
298
298
  },
299
299
  "./otp": {
300
300
  "types": "./otp/index.d.ts",
package/rrule/index.d.ts CHANGED
@@ -21,16 +21,79 @@ type AXRRuleType = rrule.RRule;
21
21
  declare const defaultOptions: AXROptionsType;
22
22
  declare const defaultRrule = "RRULE:FREQ=WEEKLY;INTERVAL=1;WKST=MO;COUNT=5";
23
23
 
24
+ /**
25
+ * Service for working with RRule recurrence patterns.
26
+ * Provides methods to create RRule instances from options or strings,
27
+ * convert between formats, and query occurrences.
28
+ */
24
29
  declare class AXRruleService {
30
+ /**
31
+ * Creates an RRule instance from options object.
32
+ * @param options Partial RRule options to create the rule from
33
+ * @returns Promise resolving to the RRule instance
34
+ */
25
35
  rruleFromOptions(options: Partial<AXROptionsType>): Promise<AXRRuleType>;
36
+ /**
37
+ * Creates an RRule instance from a RRULE string.
38
+ * @param ruleString Valid RRULE string (e.g., "RRULE:FREQ=WEEKLY;COUNT=5")
39
+ * @returns Promise resolving to the RRule instance
40
+ */
26
41
  rruleFromString(ruleString: string): Promise<AXRRuleType>;
42
+ /**
43
+ * Creates an RRule instance from human-readable text.
44
+ * @param ruleText Human-readable text describing the recurrence (e.g., "every Monday for 5 weeks")
45
+ * @returns Promise resolving to the RRule instance
46
+ */
27
47
  rruleFromText(ruleText: string): Promise<AXRRuleType>;
48
+ /**
49
+ * Extracts options from an RRule instance.
50
+ * @param rule RRule instance to extract options from
51
+ * @returns Parsed options with all required fields
52
+ */
28
53
  rruleToOptions(rule: AXRRuleType): AXParsedOptionsType;
54
+ /**
55
+ * Converts an RRule instance to RRULE string format.
56
+ * @param rule RRule instance to convert
57
+ * @returns RRULE string representation
58
+ */
29
59
  rruleToString(rule: AXRRuleType): string;
60
+ /**
61
+ * Converts an RRule instance to human-readable text.
62
+ * @param rule RRule instance to convert
63
+ * @returns Human-readable text description
64
+ */
30
65
  rruleToText(rule: AXRRuleType): string;
66
+ /**
67
+ * Gets all occurrences of the rule up to a limit.
68
+ * @param rule RRule instance to query
69
+ * @param limit Maximum number of occurrences to return (default: 500)
70
+ * @returns Array of occurrence dates
71
+ */
31
72
  rruleGetAll(rule: AXRRuleType, limit?: number): Date[];
73
+ /**
74
+ * Gets occurrences between two dates.
75
+ * @param rule RRule instance to query
76
+ * @param after Start date (exclusive by default)
77
+ * @param before End date (exclusive by default)
78
+ * @param inclusive Whether to include the boundary dates
79
+ * @returns Array of occurrence dates between the specified dates
80
+ */
32
81
  rruleGetBetween(rule: AXRRuleType, after: Date, before: Date, inclusive?: boolean): Date[];
82
+ /**
83
+ * Gets the last occurrence before the specified date.
84
+ * @param rule RRule instance to query
85
+ * @param date Date to search before
86
+ * @param inclusive Whether to include the specified date
87
+ * @returns Last occurrence before the date, or null if none found
88
+ */
33
89
  rruleGetBefore(rule: AXRRuleType, date: Date, inclusive?: boolean): Date | null;
90
+ /**
91
+ * Gets the first occurrence after the specified date.
92
+ * @param rule RRule instance to query
93
+ * @param date Date to search after
94
+ * @param inclusive Whether to include the specified date
95
+ * @returns First occurrence after the date, or null if none found
96
+ */
34
97
  rruleGetAfter(rule: AXRRuleType, date: Date, inclusive?: boolean): Date | null;
35
98
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXRruleService, never>;
36
99
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXRruleService>;
@@ -53,12 +116,36 @@ declare class AXRrulePreviewComponent implements OnInit {
53
116
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXRrulePreviewComponent, "ax-rrule-preview", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "repeat": { "alias": "repeat"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
54
117
  }
55
118
 
119
+ /**
120
+ * RRule component provides a user-friendly interface for creating and managing recurrence rules.
121
+ * Supports various frequencies, intervals, and date constraints with real-time preview and validation.
122
+ */
56
123
  declare class AXRruleComponent {
57
124
  #private;
125
+ /**
126
+ * Current recurrence rule model value (options object or RRULE string).
127
+ * @default null
128
+ */
58
129
  value: _angular_core.ModelSignal<string | rrule.Options>;
130
+ /**
131
+ * Emitted when the model value changes.
132
+ */
133
+ valueChange: _angular_core.OutputEmitterRef<string | rrule.Options>;
134
+ /**
135
+ * Emitted with the computed RRule instance when updated.
136
+ */
59
137
  rruleChange: _angular_core.OutputEmitterRef<rrule.RRule>;
138
+ /**
139
+ * Emitted with the normalized options whenever they change.
140
+ */
60
141
  optionsChange: _angular_core.OutputEmitterRef<rrule.Options>;
142
+ /**
143
+ * Emitted with the RRULE string representation.
144
+ */
61
145
  stringChange: _angular_core.OutputEmitterRef<string>;
146
+ /**
147
+ * Emitted with the human-readable text of the rule.
148
+ */
62
149
  textChange: _angular_core.OutputEmitterRef<string>;
63
150
  protected freqs: {
64
151
  text: string;
@@ -93,10 +180,18 @@ declare class AXRruleComponent {
93
180
  private _emitAll;
94
181
  private _areOptionValuesEqual;
95
182
  private _clearOptions;
183
+ /**
184
+ * Updates a single option and recomputes the rule.
185
+ * @param key The option key to update
186
+ * @param value The new value for the option
187
+ */
96
188
  updateOption<K extends keyof AXROptionsType>(key: K, value: AXROptionsType[K]): Promise<void>;
189
+ /**
190
+ * Resets options to defaults and recomputes the rule.
191
+ */
97
192
  resetOptions(): Promise<void>;
98
193
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXRruleComponent, never>;
99
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXRruleComponent, "ax-rrule", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "rruleChange": "rruleChange"; "optionsChange": "optionsChange"; "stringChange": "stringChange"; "textChange": "textChange"; }, never, never, true, never>;
194
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXRruleComponent, "ax-rrule", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "valueChange": "valueChange"; "rruleChange": "rruleChange"; "optionsChange": "optionsChange"; "stringChange": "stringChange"; "textChange": "textChange"; }, never, never, true, never>;
100
195
  }
101
196
 
102
197
  export { AXRruleComponent, AXRrulePreviewComponent, AXRruleService, defaultOptions, defaultRrule };
package/tag/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { MXColorLookComponent } from '@acorex/cdk/common';
2
1
  import * as i0 from '@angular/core';
2
+ import { MXColorLookComponent, AXClickEvent } from '@acorex/cdk/common';
3
3
  import * as i1 from '@angular/common';
4
4
 
5
5
  /**
@@ -11,10 +11,16 @@ declare class AXTagComponent extends MXColorLookComponent {
11
11
  * Represents the text content to be displayed or used within the component.
12
12
  */
13
13
  text: string;
14
+ onClick: i0.OutputEmitterRef<AXClickEvent>;
15
+ onDblClick: i0.OutputEmitterRef<AXClickEvent>;
16
+ onContextMenu: i0.OutputEmitterRef<AXClickEvent>;
14
17
  /** @ignore */
15
18
  private get __hostClass();
19
+ private hostClickListener;
20
+ private hostDblClickListener;
21
+ private hostContextMenuListener;
16
22
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTagComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<AXTagComponent, "ax-tag", never, { "color": { "alias": "color"; "required": false; }; "look": { "alias": "look"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["ax-prefix", "ax-suffix"], true, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXTagComponent, "ax-tag", never, { "color": { "alias": "color"; "required": false; }; "look": { "alias": "look"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, { "onClick": "onClick"; "onDblClick": "onDblClick"; "onContextMenu": "onContextMenu"; }, never, ["ax-prefix", "ax-suffix"], true, never>;
18
24
  }
19
25
 
20
26
  declare class AXTagModule {
@@ -1,7 +1,7 @@
1
1
  import * as polytype from 'polytype';
2
2
  import * as _angular_core from '@angular/core';
3
- import { OnInit } from '@angular/core';
4
- import { MXInputBaseValueComponent, MXLookComponent, AXAutocompleteParentComponent } from '@acorex/cdk/common';
3
+ import { OnInit, TemplateRef } from '@angular/core';
4
+ import { MXInputBaseValueComponent, MXLookComponent, AXAutocompleteParentComponent, AXClickEvent } from '@acorex/cdk/common';
5
5
  import { AXUnsubscriber } from '@acorex/core/utils';
6
6
 
7
7
  declare const AXTagBoxComponent_base: polytype.Polytype.ClusteredConstructor<[{
@@ -21,7 +21,12 @@ declare class AXTagBoxComponent extends AXTagBoxComponent_base implements OnInit
21
21
  textField: _angular_core.InputSignal<string>;
22
22
  readonlyField: _angular_core.InputSignal<string>;
23
23
  allowDuplicateValues: _angular_core.InputSignal<boolean>;
24
+ tagTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
25
+ onTagClick: _angular_core.OutputEmitterRef<AXClickEvent>;
26
+ onTagDblClick: _angular_core.OutputEmitterRef<AXClickEvent>;
27
+ onTagContextMenu: _angular_core.OutputEmitterRef<AXClickEvent>;
24
28
  inputValue: _angular_core.WritableSignal<string>;
29
+ private autocompleteComponent;
25
30
  ngOnInit(): void;
26
31
  /**
27
32
  * Adds items to the tag box.
@@ -43,10 +48,14 @@ declare class AXTagBoxComponent extends AXTagBoxComponent_base implements OnInit
43
48
  */
44
49
  convertString(v: unknown): object[];
45
50
  getFieldValue(item: unknown, path: string): unknown;
51
+ /**
52
+ * Keep autocomplete selected values in sync with current tags
53
+ */
54
+ private syncAutocompleteSelection;
46
55
  protected internalSetValue(value: unknown): unknown[];
47
56
  private get __hostName();
48
57
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXTagBoxComponent, never>;
49
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXTagBoxComponent, "ax-tag-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "type": { "alias": "type"; "required": false; }; "look": { "alias": "look"; "required": false; }; "addOnComma": { "alias": "addOnComma"; "required": false; "isSignal": true; }; "addOnEnter": { "alias": "addOnEnter"; "required": false; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "readonlyField": { "alias": "readonlyField"; "required": false; "isSignal": true; }; "allowDuplicateValues": { "alias": "allowDuplicateValues"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, never, ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-autocomplete", "ax-validation-rule"], true, never>;
58
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXTagBoxComponent, "ax-tag-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "type": { "alias": "type"; "required": false; }; "look": { "alias": "look"; "required": false; }; "addOnComma": { "alias": "addOnComma"; "required": false; "isSignal": true; }; "addOnEnter": { "alias": "addOnEnter"; "required": false; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "readonlyField": { "alias": "readonlyField"; "required": false; "isSignal": true; }; "allowDuplicateValues": { "alias": "allowDuplicateValues"; "required": false; "isSignal": true; }; "tagTemplate": { "alias": "tagTemplate"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; "onTagClick": "onTagClick"; "onTagDblClick": "onTagDblClick"; "onTagContextMenu": "onTagContextMenu"; }, ["autocompleteComponent"], ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-autocomplete", "ax-validation-rule"], true, never>;
50
59
  }
51
60
 
52
61
  declare class AXTagBoxModule {
@@ -1,3 +0,0 @@
1
- # @acorex/components/drawer-2
2
-
3
- Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/drawer-2`.
@@ -1,62 +0,0 @@
1
- import { MXBaseComponent, AXClickEvent } from '@acorex/cdk/common';
2
- import * as _angular_core from '@angular/core';
3
- import * as i1 from '@acorex/cdk/drawer';
4
- import { AXDrawerLocation, AXDrawerMode } from '@acorex/cdk/drawer';
5
- import * as i1$1 from '@angular/common';
6
-
7
- /**
8
- * A container component that organizes and positions drawer components.
9
- * @category component
10
- */
11
- declare class AXDrawer2ContainerComponent extends MXBaseComponent {
12
- #private;
13
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDrawer2ContainerComponent, never>;
14
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXDrawer2ContainerComponent, "ax-drawer2-container", never, {}, {}, never, ["ax-drawer2", "ax-content"], true, [{ directive: typeof i1.AXDrawerContainerDirective; inputs: {}; outputs: {}; }]>;
15
- }
16
-
17
- /**
18
- * A component that represents a drawer with header and content sections.
19
- *
20
- * @category Components
21
- */
22
- declare class AXDrawer2Component extends MXBaseComponent {
23
- #private;
24
- readonly location: _angular_core.InputSignal<AXDrawerLocation>;
25
- readonly showBackdrop: _angular_core.InputSignal<boolean>;
26
- readonly mode: _angular_core.InputSignal<AXDrawerMode>;
27
- readonly transition: _angular_core.InputSignal<number>;
28
- readonly closeOnBackdropClick: _angular_core.InputSignal<boolean>;
29
- readonly backdropClass: _angular_core.InputSignal<string>;
30
- readonly collapsed: _angular_core.InputSignal<boolean>;
31
- onBackdropClick: _angular_core.OutputEmitterRef<AXClickEvent>;
32
- collapsedStateChanged: _angular_core.OutputEmitterRef<boolean>;
33
- private drawerItem;
34
- /**
35
- * Toggles the drawer state between open and closed.
36
- *
37
- * @returns void - No return value. The drawer state is toggled.
38
- */
39
- toggle(): void;
40
- /**
41
- * Closes the drawer.
42
- *
43
- * @returns void - No return value. The drawer is collapsed.
44
- */
45
- close(): void;
46
- /**
47
- * Opens the drawer.
48
- *
49
- * @returns void - No return value. The drawer is expanded.
50
- */
51
- open(): void;
52
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDrawer2Component, never>;
53
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXDrawer2Component, "ax-drawer2", never, { "location": { "alias": "location"; "required": false; "isSignal": true; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; "isSignal": true; }; "backdropClass": { "alias": "backdropClass"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, { "onBackdropClick": "onBackdropClick"; "collapsedStateChanged": "collapsedStateChanged"; }, never, ["ax-header", "ax-content"], true, [{ directive: typeof i1.AXDrawerItemDirective; inputs: {}; outputs: {}; }]>;
54
- }
55
-
56
- declare class AXDrawer2Module {
57
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDrawer2Module, never>;
58
- static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXDrawer2Module, never, [typeof i1$1.CommonModule, typeof AXDrawer2Component, typeof AXDrawer2ContainerComponent], [typeof AXDrawer2Component, typeof AXDrawer2ContainerComponent]>;
59
- static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXDrawer2Module>;
60
- }
61
-
62
- export { AXDrawer2Component, AXDrawer2ContainerComponent, AXDrawer2Module };
@@ -1,134 +0,0 @@
1
- import { MXBaseComponent, AXComponent, AXClosableComponent } from '@acorex/cdk/common';
2
- import * as i1 from '@acorex/cdk/drawer';
3
- import { AXDrawerContainerDirective, AXDrawerItemDirective } from '@acorex/cdk/drawer';
4
- import * as i0 from '@angular/core';
5
- import { afterNextRender, ViewEncapsulation, ChangeDetectionStrategy, Component, input, output, inject, effect, NgModule } from '@angular/core';
6
- import { CommonModule } from '@angular/common';
7
-
8
- /**
9
- * A container component that organizes and positions drawer components.
10
- * @category component
11
- */
12
- class AXDrawer2ContainerComponent extends MXBaseComponent {
13
- #init = afterNextRender(() => {
14
- const host = this.getHostElement();
15
- Array.from(host.querySelectorAll(`ax-drawer2`)).map((c) => c['__axContext__']);
16
- });
17
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2ContainerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
18
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.6", type: AXDrawer2ContainerComponent, isStandalone: true, selector: "ax-drawer2-container", providers: [{ provide: AXComponent, useExisting: AXDrawer2ContainerComponent }], usesInheritance: true, hostDirectives: [{ directive: i1.AXDrawerContainerDirective }], ngImport: i0, template: `
19
- <ng-content select="ax-drawer2"> </ng-content>
20
- <ng-content select="ax-content"> </ng-content>
21
- `, isInline: true, styles: ["ax-drawer2-container{width:100%;height:100%;z-index:10}ax-drawer2-container>ax-content{height:100%;flex:1 1 0%}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
22
- }
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2ContainerComponent, decorators: [{
24
- type: Component,
25
- args: [{ selector: 'ax-drawer2-container', template: `
26
- <ng-content select="ax-drawer2"> </ng-content>
27
- <ng-content select="ax-content"> </ng-content>
28
- `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, providers: [{ provide: AXComponent, useExisting: AXDrawer2ContainerComponent }], hostDirectives: [AXDrawerContainerDirective], styles: ["ax-drawer2-container{width:100%;height:100%;z-index:10}ax-drawer2-container>ax-content{height:100%;flex:1 1 0%}\n"] }]
29
- }] });
30
-
31
- /**
32
- * A component that represents a drawer with header and content sections.
33
- *
34
- * @category Components
35
- */
36
- class AXDrawer2Component extends MXBaseComponent {
37
- constructor() {
38
- super(...arguments);
39
- this.location = input('start', ...(ngDevMode ? [{ debugName: "location" }] : []));
40
- this.showBackdrop = input(true, ...(ngDevMode ? [{ debugName: "showBackdrop" }] : []));
41
- this.mode = input('overlay', ...(ngDevMode ? [{ debugName: "mode" }] : []));
42
- this.transition = input(100, ...(ngDevMode ? [{ debugName: "transition" }] : []));
43
- this.closeOnBackdropClick = input(true, ...(ngDevMode ? [{ debugName: "closeOnBackdropClick" }] : []));
44
- this.backdropClass = input('ax-bg-black/45', ...(ngDevMode ? [{ debugName: "backdropClass" }] : []));
45
- this.collapsed = input(true, ...(ngDevMode ? [{ debugName: "collapsed" }] : []));
46
- this.onBackdropClick = output();
47
- this.collapsedStateChanged = output();
48
- this.drawerItem = inject(AXDrawerItemDirective);
49
- this.#eff = effect(() => {
50
- this.drawerItem.mode.set(this.mode());
51
- this.drawerItem.transition.set(this.transition());
52
- this.drawerItem.backdropClass.set(this.backdropClass());
53
- this.drawerItem.closeOnBackdropClick.set(this.closeOnBackdropClick());
54
- this.drawerItem.location.set(this.location());
55
- this.drawerItem.backDrop.set(this.showBackdrop());
56
- this.drawerItem.collapsed.set(this.collapsed());
57
- }, ...(ngDevMode ? [{ debugName: "#eff" }] : []));
58
- this.#init = afterNextRender(() => {
59
- this.drawerItem.onBackdropClick.subscribe((event) => {
60
- this.onBackdropClick.emit({ nativeEvent: event, component: this });
61
- });
62
- this.drawerItem.collapseStateChanged.subscribe((event) => {
63
- this.collapsedStateChanged.emit(event);
64
- });
65
- });
66
- }
67
- #eff;
68
- #init;
69
- /**
70
- * Toggles the drawer state between open and closed.
71
- *
72
- * @returns void - No return value. The drawer state is toggled.
73
- */
74
- toggle() {
75
- this.drawerItem.toggle();
76
- }
77
- /**
78
- * Closes the drawer.
79
- *
80
- * @returns void - No return value. The drawer is collapsed.
81
- */
82
- close() {
83
- this.drawerItem.hide();
84
- }
85
- /**
86
- * Opens the drawer.
87
- *
88
- * @returns void - No return value. The drawer is expanded.
89
- */
90
- open() {
91
- this.drawerItem.show();
92
- }
93
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2Component, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
94
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.3.6", type: AXDrawer2Component, isStandalone: true, selector: "ax-drawer2", inputs: { location: { classPropertyName: "location", publicName: "location", isSignal: true, isRequired: false, transformFunction: null }, showBackdrop: { classPropertyName: "showBackdrop", publicName: "showBackdrop", isSignal: true, isRequired: false, transformFunction: null }, mode: { classPropertyName: "mode", publicName: "mode", isSignal: true, isRequired: false, transformFunction: null }, transition: { classPropertyName: "transition", publicName: "transition", isSignal: true, isRequired: false, transformFunction: null }, closeOnBackdropClick: { classPropertyName: "closeOnBackdropClick", publicName: "closeOnBackdropClick", isSignal: true, isRequired: false, transformFunction: null }, backdropClass: { classPropertyName: "backdropClass", publicName: "backdropClass", isSignal: true, isRequired: false, transformFunction: null }, collapsed: { classPropertyName: "collapsed", publicName: "collapsed", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onBackdropClick: "onBackdropClick", collapsedStateChanged: "collapsedStateChanged" }, providers: [
95
- { provide: AXComponent, useExisting: AXDrawer2Component },
96
- { provide: AXClosableComponent, useExisting: AXDrawer2Component },
97
- ], usesInheritance: true, hostDirectives: [{ directive: i1.AXDrawerItemDirective }], ngImport: i0, template: `
98
- <ng-content select="ax-header"></ng-content>
99
- <ng-content select="ax-content"></ng-content>
100
- `, isInline: true, styles: ["ax-drawer2>ax-content{flex:1 1 0%;width:100%;height:100%}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
101
- }
102
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2Component, decorators: [{
103
- type: Component,
104
- args: [{ selector: 'ax-drawer2', template: `
105
- <ng-content select="ax-header"></ng-content>
106
- <ng-content select="ax-content"></ng-content>
107
- `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, providers: [
108
- { provide: AXComponent, useExisting: AXDrawer2Component },
109
- { provide: AXClosableComponent, useExisting: AXDrawer2Component },
110
- ], hostDirectives: [AXDrawerItemDirective], styles: ["ax-drawer2>ax-content{flex:1 1 0%;width:100%;height:100%}\n"] }]
111
- }], propDecorators: { location: [{ type: i0.Input, args: [{ isSignal: true, alias: "location", required: false }] }], showBackdrop: [{ type: i0.Input, args: [{ isSignal: true, alias: "showBackdrop", required: false }] }], mode: [{ type: i0.Input, args: [{ isSignal: true, alias: "mode", required: false }] }], transition: [{ type: i0.Input, args: [{ isSignal: true, alias: "transition", required: false }] }], closeOnBackdropClick: [{ type: i0.Input, args: [{ isSignal: true, alias: "closeOnBackdropClick", required: false }] }], backdropClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "backdropClass", required: false }] }], collapsed: [{ type: i0.Input, args: [{ isSignal: true, alias: "collapsed", required: false }] }], onBackdropClick: [{ type: i0.Output, args: ["onBackdropClick"] }], collapsedStateChanged: [{ type: i0.Output, args: ["collapsedStateChanged"] }] } });
112
-
113
- const COMPONENT = [AXDrawer2Component, AXDrawer2ContainerComponent];
114
- const MODULES = [CommonModule];
115
- class AXDrawer2Module {
116
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
117
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2Module, imports: [CommonModule, AXDrawer2Component, AXDrawer2ContainerComponent], exports: [AXDrawer2Component, AXDrawer2ContainerComponent] }); }
118
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2Module, imports: [MODULES] }); }
119
- }
120
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.6", ngImport: i0, type: AXDrawer2Module, decorators: [{
121
- type: NgModule,
122
- args: [{
123
- imports: [...MODULES, ...COMPONENT],
124
- exports: [...COMPONENT],
125
- providers: [],
126
- }]
127
- }] });
128
-
129
- /**
130
- * Generated bundle index. Do not edit.
131
- */
132
-
133
- export { AXDrawer2Component, AXDrawer2ContainerComponent, AXDrawer2Module };
134
- //# sourceMappingURL=acorex-components-drawer-2.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"acorex-components-drawer-2.mjs","sources":["../tmp-esm2022/drawer-2/lib/drawer2-container/drawer2-container.component.js","../tmp-esm2022/drawer-2/lib/drawer2-item/drawer2.component.js","../tmp-esm2022/drawer-2/lib/drawer2.module.js","../tmp-esm2022/drawer-2/acorex-components-drawer-2.js"],"sourcesContent":["import { AXComponent, MXBaseComponent } from '@acorex/cdk/common';\nimport { AXDrawerContainerDirective } from '@acorex/cdk/drawer';\nimport { afterNextRender, ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\nimport * as i0 from \"@angular/core\";\nimport * as i1 from \"@acorex/cdk/drawer\";\n/**\n * A container component that organizes and positions drawer components.\n * @category component\n */\nexport class AXDrawer2ContainerComponent extends MXBaseComponent {\n #init = afterNextRender(() => {\n const host = this.getHostElement();\n Array.from(host.querySelectorAll(`ax-drawer2`)).map((c) => c['__axContext__']);\n });\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2ContainerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }\n static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"14.0.0\", version: \"20.3.6\", type: AXDrawer2ContainerComponent, isStandalone: true, selector: \"ax-drawer2-container\", providers: [{ provide: AXComponent, useExisting: AXDrawer2ContainerComponent }], usesInheritance: true, hostDirectives: [{ directive: i1.AXDrawerContainerDirective }], ngImport: i0, template: `\n <ng-content select=\"ax-drawer2\"> </ng-content>\n <ng-content select=\"ax-content\"> </ng-content>\n `, isInline: true, styles: [\"ax-drawer2-container{width:100%;height:100%;z-index:10}ax-drawer2-container>ax-content{height:100%;flex:1 1 0%}\\n\"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2ContainerComponent, decorators: [{\n type: Component,\n args: [{ selector: 'ax-drawer2-container', template: `\n <ng-content select=\"ax-drawer2\"> </ng-content>\n <ng-content select=\"ax-content\"> </ng-content>\n `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, providers: [{ provide: AXComponent, useExisting: AXDrawer2ContainerComponent }], hostDirectives: [AXDrawerContainerDirective], styles: [\"ax-drawer2-container{width:100%;height:100%;z-index:10}ax-drawer2-container>ax-content{height:100%;flex:1 1 0%}\\n\"] }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyMi1jb250YWluZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29tcG9uZW50cy9kcmF3ZXItMi9zcmMvbGliL2RyYXdlcjItY29udGFpbmVyL2RyYXdlcjItY29udGFpbmVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxlQUFlLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFHdkc7OztHQUdHO0FBYUgsTUFBTSxPQUFPLDJCQUE0QixTQUFRLGVBQWU7SUFDOUQsS0FBSyxHQUFHLGVBQWUsQ0FBQyxHQUFHLEVBQUU7UUFDM0IsTUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ25DLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFlBQVksQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsZUFBZSxDQUF1QixDQUFDLENBQUM7SUFDdkcsQ0FBQyxDQUFDLENBQUM7OEdBSlEsMkJBQTJCO2tHQUEzQiwyQkFBMkIsbUVBSDNCLENBQUMsRUFBRSxPQUFPLEVBQUUsV0FBVyxFQUFFLFdBQVcsRUFBRSwyQkFBMkIsRUFBRSxDQUFDLGlIQVByRTs7O0dBR1Q7OzJGQU9VLDJCQUEyQjtrQkFadkMsU0FBUzsrQkFDRSxzQkFBc0IsWUFDdEI7OztHQUdULG1CQUVnQix1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLGFBQzFCLENBQUMsRUFBRSxPQUFPLEVBQUUsV0FBVyxFQUFFLFdBQVcsNkJBQTZCLEVBQUUsQ0FBQyxrQkFDL0QsQ0FBQywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYQ29tcG9uZW50LCBNWEJhc2VDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L2Nkay9jb21tb24nO1xuaW1wb3J0IHsgQVhEcmF3ZXJDb250YWluZXJEaXJlY3RpdmUgfSBmcm9tICdAYWNvcmV4L2Nkay9kcmF3ZXInO1xuaW1wb3J0IHsgYWZ0ZXJOZXh0UmVuZGVyLCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQVhEcmF3ZXIyQ29tcG9uZW50IH0gZnJvbSAnLi4vZHJhd2VyMi1pdGVtL2RyYXdlcjIuY29tcG9uZW50JztcblxuLyoqXG4gKiBBIGNvbnRhaW5lciBjb21wb25lbnQgdGhhdCBvcmdhbml6ZXMgYW5kIHBvc2l0aW9ucyBkcmF3ZXIgY29tcG9uZW50cy5cbiAqIEBjYXRlZ29yeSBjb21wb25lbnRcbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXgtZHJhd2VyMi1jb250YWluZXInLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImF4LWRyYXdlcjJcIj4gPC9uZy1jb250ZW50PlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImF4LWNvbnRlbnRcIj4gPC9uZy1jb250ZW50PlxuICBgLFxuICBzdHlsZVVybDogJy4vZHJhd2VyMi1jb250YWluZXIuY29tcG9uZW50LnNjc3MnLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBBWENvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IEFYRHJhd2VyMkNvbnRhaW5lckNvbXBvbmVudCB9XSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtBWERyYXdlckNvbnRhaW5lckRpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIEFYRHJhd2VyMkNvbnRhaW5lckNvbXBvbmVudCBleHRlbmRzIE1YQmFzZUNvbXBvbmVudCB7XG4gICNpbml0ID0gYWZ0ZXJOZXh0UmVuZGVyKCgpID0+IHtcbiAgICBjb25zdCBob3N0ID0gdGhpcy5nZXRIb3N0RWxlbWVudCgpO1xuICAgIEFycmF5LmZyb20oaG9zdC5xdWVyeVNlbGVjdG9yQWxsKGBheC1kcmF3ZXIyYCkpLm1hcCgoYykgPT4gY1snX19heENvbnRleHRfXyddIGFzIEFYRHJhd2VyMkNvbXBvbmVudCk7XG4gIH0pO1xufVxuIl19","import { AXClosableComponent, AXComponent, MXBaseComponent } from '@acorex/cdk/common';\nimport { AXDrawerItemDirective } from '@acorex/cdk/drawer';\nimport { afterNextRender, ChangeDetectionStrategy, Component, effect, inject, input, output, ViewEncapsulation, } from '@angular/core';\nimport * as i0 from \"@angular/core\";\nimport * as i1 from \"@acorex/cdk/drawer\";\n/**\n * A component that represents a drawer with header and content sections.\n *\n * @category Components\n */\nexport class AXDrawer2Component extends MXBaseComponent {\n constructor() {\n super(...arguments);\n this.location = input('start', ...(ngDevMode ? [{ debugName: \"location\" }] : []));\n this.showBackdrop = input(true, ...(ngDevMode ? [{ debugName: \"showBackdrop\" }] : []));\n this.mode = input('overlay', ...(ngDevMode ? [{ debugName: \"mode\" }] : []));\n this.transition = input(100, ...(ngDevMode ? [{ debugName: \"transition\" }] : []));\n this.closeOnBackdropClick = input(true, ...(ngDevMode ? [{ debugName: \"closeOnBackdropClick\" }] : []));\n this.backdropClass = input('ax-bg-black/45', ...(ngDevMode ? [{ debugName: \"backdropClass\" }] : []));\n this.collapsed = input(true, ...(ngDevMode ? [{ debugName: \"collapsed\" }] : []));\n this.onBackdropClick = output();\n this.collapsedStateChanged = output();\n this.drawerItem = inject(AXDrawerItemDirective);\n this.#eff = effect(() => {\n this.drawerItem.mode.set(this.mode());\n this.drawerItem.transition.set(this.transition());\n this.drawerItem.backdropClass.set(this.backdropClass());\n this.drawerItem.closeOnBackdropClick.set(this.closeOnBackdropClick());\n this.drawerItem.location.set(this.location());\n this.drawerItem.backDrop.set(this.showBackdrop());\n this.drawerItem.collapsed.set(this.collapsed());\n }, ...(ngDevMode ? [{ debugName: \"#eff\" }] : []));\n this.#init = afterNextRender(() => {\n this.drawerItem.onBackdropClick.subscribe((event) => {\n this.onBackdropClick.emit({ nativeEvent: event, component: this });\n });\n this.drawerItem.collapseStateChanged.subscribe((event) => {\n this.collapsedStateChanged.emit(event);\n });\n });\n }\n #eff;\n #init;\n /**\n * Toggles the drawer state between open and closed.\n *\n * @returns void - No return value. The drawer state is toggled.\n */\n toggle() {\n this.drawerItem.toggle();\n }\n /**\n * Closes the drawer.\n *\n * @returns void - No return value. The drawer is collapsed.\n */\n close() {\n this.drawerItem.hide();\n }\n /**\n * Opens the drawer.\n *\n * @returns void - No return value. The drawer is expanded.\n */\n open() {\n this.drawerItem.show();\n }\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2Component, deps: null, target: i0.ɵɵFactoryTarget.Component }); }\n static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: \"17.1.0\", version: \"20.3.6\", type: AXDrawer2Component, isStandalone: true, selector: \"ax-drawer2\", inputs: { location: { classPropertyName: \"location\", publicName: \"location\", isSignal: true, isRequired: false, transformFunction: null }, showBackdrop: { classPropertyName: \"showBackdrop\", publicName: \"showBackdrop\", isSignal: true, isRequired: false, transformFunction: null }, mode: { classPropertyName: \"mode\", publicName: \"mode\", isSignal: true, isRequired: false, transformFunction: null }, transition: { classPropertyName: \"transition\", publicName: \"transition\", isSignal: true, isRequired: false, transformFunction: null }, closeOnBackdropClick: { classPropertyName: \"closeOnBackdropClick\", publicName: \"closeOnBackdropClick\", isSignal: true, isRequired: false, transformFunction: null }, backdropClass: { classPropertyName: \"backdropClass\", publicName: \"backdropClass\", isSignal: true, isRequired: false, transformFunction: null }, collapsed: { classPropertyName: \"collapsed\", publicName: \"collapsed\", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onBackdropClick: \"onBackdropClick\", collapsedStateChanged: \"collapsedStateChanged\" }, providers: [\n { provide: AXComponent, useExisting: AXDrawer2Component },\n { provide: AXClosableComponent, useExisting: AXDrawer2Component },\n ], usesInheritance: true, hostDirectives: [{ directive: i1.AXDrawerItemDirective }], ngImport: i0, template: `\n <ng-content select=\"ax-header\"></ng-content>\n <ng-content select=\"ax-content\"></ng-content>\n `, isInline: true, styles: [\"ax-drawer2>ax-content{flex:1 1 0%;width:100%;height:100%}\\n\"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2Component, decorators: [{\n type: Component,\n args: [{ selector: 'ax-drawer2', template: `\n <ng-content select=\"ax-header\"></ng-content>\n <ng-content select=\"ax-content\"></ng-content>\n `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, providers: [\n { provide: AXComponent, useExisting: AXDrawer2Component },\n { provide: AXClosableComponent, useExisting: AXDrawer2Component },\n ], hostDirectives: [AXDrawerItemDirective], styles: [\"ax-drawer2>ax-content{flex:1 1 0%;width:100%;height:100%}\\n\"] }]\n }], propDecorators: { location: [{ type: i0.Input, args: [{ isSignal: true, alias: \"location\", required: false }] }], showBackdrop: [{ type: i0.Input, args: [{ isSignal: true, alias: \"showBackdrop\", required: false }] }], mode: [{ type: i0.Input, args: [{ isSignal: true, alias: \"mode\", required: false }] }], transition: [{ type: i0.Input, args: [{ isSignal: true, alias: \"transition\", required: false }] }], closeOnBackdropClick: [{ type: i0.Input, args: [{ isSignal: true, alias: \"closeOnBackdropClick\", required: false }] }], backdropClass: [{ type: i0.Input, args: [{ isSignal: true, alias: \"backdropClass\", required: false }] }], collapsed: [{ type: i0.Input, args: [{ isSignal: true, alias: \"collapsed\", required: false }] }], onBackdropClick: [{ type: i0.Output, args: [\"onBackdropClick\"] }], collapsedStateChanged: [{ type: i0.Output, args: [\"collapsedStateChanged\"] }] } });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyMi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21wb25lbnRzL2RyYXdlci0yL3NyYy9saWIvZHJhd2VyMi1pdGVtL2RyYXdlcjIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBZ0IsbUJBQW1CLEVBQUUsV0FBVyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3JHLE9BQU8sRUFBRSxxQkFBcUIsRUFBa0MsTUFBTSxvQkFBb0IsQ0FBQztBQUMzRixPQUFPLEVBQ0wsZUFBZSxFQUNmLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsTUFBTSxFQUNOLE1BQU0sRUFDTixLQUFLLEVBQ0wsTUFBTSxFQUNOLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7O0FBRXZCOzs7O0dBSUc7QUFnQkgsTUFBTSxPQUFPLGtCQUFtQixTQUFRLGVBQWU7SUFmdkQ7O1FBZ0JXLGFBQVEsR0FBRyxLQUFLLENBQW1CLE9BQU8sb0RBQUMsQ0FBQztRQUM1QyxpQkFBWSxHQUFHLEtBQUssQ0FBQyxJQUFJLHdEQUFDLENBQUM7UUFDM0IsU0FBSSxHQUFHLEtBQUssQ0FBZSxTQUFTLGdEQUFDLENBQUM7UUFDdEMsZUFBVSxHQUFHLEtBQUssQ0FBUyxHQUFHLHNEQUFDLENBQUM7UUFDaEMseUJBQW9CLEdBQUcsS0FBSyxDQUFDLElBQUksZ0VBQUMsQ0FBQztRQUNuQyxrQkFBYSxHQUFHLEtBQUssQ0FBQyxnQkFBZ0IseURBQUMsQ0FBQztRQUN4QyxjQUFTLEdBQUcsS0FBSyxDQUFDLElBQUkscURBQUMsQ0FBQztRQUNqQyxvQkFBZSxHQUFHLE1BQU0sRUFBZ0IsQ0FBQztRQUN6QywwQkFBcUIsR0FBRyxNQUFNLEVBQVcsQ0FBQztRQUNsQyxlQUFVLEdBQUcsTUFBTSxDQUFDLHFCQUFxQixDQUFDLENBQUM7UUFFbkQsU0FBSSxHQUFHLE1BQU0sQ0FBQyxHQUFHLEVBQUU7WUFDakIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDO1lBQ3RDLElBQUksQ0FBQyxVQUFVLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztZQUNsRCxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDLENBQUM7WUFDeEQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxvQkFBb0IsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLG9CQUFvQixFQUFFLENBQUMsQ0FBQztZQUN0RSxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7WUFDOUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxDQUFDO1lBQ2xELElBQUksQ0FBQyxVQUFVLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsQ0FBQztRQUNsRCxDQUFDLGdEQUFDLENBQUM7UUFFSCxVQUFLLEdBQUcsZUFBZSxDQUFDLEdBQUcsRUFBRTtZQUMzQixJQUFJLENBQUMsVUFBVSxDQUFDLGVBQWUsQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtnQkFDbEQsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLFNBQVMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1lBQ3JFLENBQUMsQ0FBQyxDQUFDO1lBQ0gsSUFBSSxDQUFDLFVBQVUsQ0FBQyxvQkFBb0IsQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtnQkFDdkQsSUFBSSxDQUFDLHFCQUFxQixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUN6QyxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFDO0tBNEJKO0lBN0NDLElBQUksQ0FRRDtJQUVILEtBQUssQ0FPRjtJQUVIOzs7O09BSUc7SUFDSCxNQUFNO1FBQ0osSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBRUQ7Ozs7T0FJRztJQUNILEtBQUs7UUFDSCxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRDs7OztPQUlHO0lBQ0gsSUFBSTtRQUNGLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDekIsQ0FBQzs4R0F4RFUsa0JBQWtCO2tHQUFsQixrQkFBa0IseW1DQU5sQjtZQUNULEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUU7WUFDekQsRUFBRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsV0FBVyxFQUFFLGtCQUFrQixFQUFFO1NBQ2xFLDRHQVZTOzs7R0FHVDs7MkZBVVUsa0JBQWtCO2tCQWY5QixTQUFTOytCQUNFLFlBQVksWUFDWjs7O0dBR1QsbUJBRWdCLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksYUFDMUI7d0JBQ1QsRUFBRSxPQUFPLEVBQUUsV0FBVyxFQUFFLFdBQVcsb0JBQW9CLEVBQUU7d0JBQ3pELEVBQUUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLFdBQVcsb0JBQW9CLEVBQUU7cUJBQ2xFLGtCQUNlLENBQUMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWENsaWNrRXZlbnQsIEFYQ2xvc2FibGVDb21wb25lbnQsIEFYQ29tcG9uZW50LCBNWEJhc2VDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L2Nkay9jb21tb24nO1xuaW1wb3J0IHsgQVhEcmF3ZXJJdGVtRGlyZWN0aXZlLCBBWERyYXdlckxvY2F0aW9uLCBBWERyYXdlck1vZGUgfSBmcm9tICdAYWNvcmV4L2Nkay9kcmF3ZXInO1xuaW1wb3J0IHtcbiAgYWZ0ZXJOZXh0UmVuZGVyLFxuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBlZmZlY3QsXG4gIGluamVjdCxcbiAgaW5wdXQsXG4gIG91dHB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vKipcbiAqIEEgY29tcG9uZW50IHRoYXQgcmVwcmVzZW50cyBhIGRyYXdlciB3aXRoIGhlYWRlciBhbmQgY29udGVudCBzZWN0aW9ucy5cbiAqXG4gKiBAY2F0ZWdvcnkgQ29tcG9uZW50c1xuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdheC1kcmF3ZXIyJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJheC1oZWFkZXJcIj48L25nLWNvbnRlbnQ+XG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiYXgtY29udGVudFwiPjwvbmctY29udGVudD5cbiAgYCxcbiAgc3R5bGVVcmw6ICcuL2RyYXdlcjIuY29tcG9uZW50LnNjc3MnLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJvdmlkZXJzOiBbXG4gICAgeyBwcm92aWRlOiBBWENvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IEFYRHJhd2VyMkNvbXBvbmVudCB9LFxuICAgIHsgcHJvdmlkZTogQVhDbG9zYWJsZUNvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IEFYRHJhd2VyMkNvbXBvbmVudCB9LFxuICBdLFxuICBob3N0RGlyZWN0aXZlczogW0FYRHJhd2VySXRlbURpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIEFYRHJhd2VyMkNvbXBvbmVudCBleHRlbmRzIE1YQmFzZUNvbXBvbmVudCB7XG4gIHJlYWRvbmx5IGxvY2F0aW9uID0gaW5wdXQ8QVhEcmF3ZXJMb2NhdGlvbj4oJ3N0YXJ0Jyk7XG4gIHJlYWRvbmx5IHNob3dCYWNrZHJvcCA9IGlucHV0KHRydWUpO1xuICByZWFkb25seSBtb2RlID0gaW5wdXQ8QVhEcmF3ZXJNb2RlPignb3ZlcmxheScpO1xuICByZWFkb25seSB0cmFuc2l0aW9uID0gaW5wdXQ8bnVtYmVyPigxMDApO1xuICByZWFkb25seSBjbG9zZU9uQmFja2Ryb3BDbGljayA9IGlucHV0KHRydWUpO1xuICByZWFkb25seSBiYWNrZHJvcENsYXNzID0gaW5wdXQoJ2F4LWJnLWJsYWNrLzQ1Jyk7XG4gIHJlYWRvbmx5IGNvbGxhcHNlZCA9IGlucHV0KHRydWUpO1xuICBvbkJhY2tkcm9wQ2xpY2sgPSBvdXRwdXQ8QVhDbGlja0V2ZW50PigpO1xuICBjb2xsYXBzZWRTdGF0ZUNoYW5nZWQgPSBvdXRwdXQ8Ym9vbGVhbj4oKTtcbiAgcHJpdmF0ZSBkcmF3ZXJJdGVtID0gaW5qZWN0KEFYRHJhd2VySXRlbURpcmVjdGl2ZSk7XG5cbiAgI2VmZiA9IGVmZmVjdCgoKSA9PiB7XG4gICAgdGhpcy5kcmF3ZXJJdGVtLm1vZGUuc2V0KHRoaXMubW9kZSgpKTtcbiAgICB0aGlzLmRyYXdlckl0ZW0udHJhbnNpdGlvbi5zZXQodGhpcy50cmFuc2l0aW9uKCkpO1xuICAgIHRoaXMuZHJhd2VySXRlbS5iYWNrZHJvcENsYXNzLnNldCh0aGlzLmJhY2tkcm9wQ2xhc3MoKSk7XG4gICAgdGhpcy5kcmF3ZXJJdGVtLmNsb3NlT25CYWNrZHJvcENsaWNrLnNldCh0aGlzLmNsb3NlT25CYWNrZHJvcENsaWNrKCkpO1xuICAgIHRoaXMuZHJhd2VySXRlbS5sb2NhdGlvbi5zZXQodGhpcy5sb2NhdGlvbigpKTtcbiAgICB0aGlzLmRyYXdlckl0ZW0uYmFja0Ryb3Auc2V0KHRoaXMuc2hvd0JhY2tkcm9wKCkpO1xuICAgIHRoaXMuZHJhd2VySXRlbS5jb2xsYXBzZWQuc2V0KHRoaXMuY29sbGFwc2VkKCkpO1xuICB9KTtcblxuICAjaW5pdCA9IGFmdGVyTmV4dFJlbmRlcigoKSA9PiB7XG4gICAgdGhpcy5kcmF3ZXJJdGVtLm9uQmFja2Ryb3BDbGljay5zdWJzY3JpYmUoKGV2ZW50KSA9PiB7XG4gICAgICB0aGlzLm9uQmFja2Ryb3BDbGljay5lbWl0KHsgbmF0aXZlRXZlbnQ6IGV2ZW50LCBjb21wb25lbnQ6IHRoaXMgfSk7XG4gICAgfSk7XG4gICAgdGhpcy5kcmF3ZXJJdGVtLmNvbGxhcHNlU3RhdGVDaGFuZ2VkLnN1YnNjcmliZSgoZXZlbnQpID0+IHtcbiAgICAgIHRoaXMuY29sbGFwc2VkU3RhdGVDaGFuZ2VkLmVtaXQoZXZlbnQpO1xuICAgIH0pO1xuICB9KTtcblxuICAvKipcbiAgICogVG9nZ2xlcyB0aGUgZHJhd2VyIHN0YXRlIGJldHdlZW4gb3BlbiBhbmQgY2xvc2VkLlxuICAgKlxuICAgKiBAcmV0dXJucyB2b2lkIC0gTm8gcmV0dXJuIHZhbHVlLiBUaGUgZHJhd2VyIHN0YXRlIGlzIHRvZ2dsZWQuXG4gICAqL1xuICB0b2dnbGUoKSB7XG4gICAgdGhpcy5kcmF3ZXJJdGVtLnRvZ2dsZSgpO1xuICB9XG5cbiAgLyoqXG4gICAqIENsb3NlcyB0aGUgZHJhd2VyLlxuICAgKlxuICAgKiBAcmV0dXJucyB2b2lkIC0gTm8gcmV0dXJuIHZhbHVlLiBUaGUgZHJhd2VyIGlzIGNvbGxhcHNlZC5cbiAgICovXG4gIGNsb3NlKCkge1xuICAgIHRoaXMuZHJhd2VySXRlbS5oaWRlKCk7XG4gIH1cblxuICAvKipcbiAgICogT3BlbnMgdGhlIGRyYXdlci5cbiAgICpcbiAgICogQHJldHVybnMgdm9pZCAtIE5vIHJldHVybiB2YWx1ZS4gVGhlIGRyYXdlciBpcyBleHBhbmRlZC5cbiAgICovXG4gIG9wZW4oKSB7XG4gICAgdGhpcy5kcmF3ZXJJdGVtLnNob3coKTtcbiAgfVxufVxuIl19","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AXDrawer2ContainerComponent } from './drawer2-container/drawer2-container.component';\nimport { AXDrawer2Component } from './drawer2-item/drawer2.component';\nimport * as i0 from \"@angular/core\";\nconst COMPONENT = [AXDrawer2Component, AXDrawer2ContainerComponent];\nconst MODULES = [CommonModule];\nexport class AXDrawer2Module {\n static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: \"12.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }\n static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: \"14.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2Module, imports: [CommonModule, AXDrawer2Component, AXDrawer2ContainerComponent], exports: [AXDrawer2Component, AXDrawer2ContainerComponent] }); }\n static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: \"12.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2Module, imports: [MODULES] }); }\n}\ni0.ɵɵngDeclareClassMetadata({ minVersion: \"12.0.0\", version: \"20.3.6\", ngImport: i0, type: AXDrawer2Module, decorators: [{\n type: NgModule,\n args: [{\n imports: [...MODULES, ...COMPONENT],\n exports: [...COMPONENT],\n providers: [],\n }]\n }] });\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyMi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21wb25lbnRzL2RyYXdlci0yL3NyYy9saWIvZHJhd2VyMi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDOUYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7O0FBRXRFLE1BQU0sU0FBUyxHQUFHLENBQUMsa0JBQWtCLEVBQUUsMkJBQTJCLENBQUMsQ0FBQztBQUNwRSxNQUFNLE9BQU8sR0FBRyxDQUFDLFlBQVksQ0FBQyxDQUFDO0FBTy9CLE1BQU0sT0FBTyxlQUFlOzhHQUFmLGVBQWU7K0dBQWYsZUFBZSxZQVBYLFlBQVksRUFEVixrQkFBa0IsRUFBRSwyQkFBMkIsYUFBL0Msa0JBQWtCLEVBQUUsMkJBQTJCOytHQVFyRCxlQUFlLFlBSmIsT0FBTzs7MkZBSVQsZUFBZTtrQkFMM0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxHQUFHLE9BQU8sRUFBRSxHQUFHLFNBQVMsQ0FBQztvQkFDbkMsT0FBTyxFQUFFLENBQUMsR0FBRyxTQUFTLENBQUM7b0JBQ3ZCLFNBQVMsRUFBRSxFQUFFO2lCQUNkIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBWERyYXdlcjJDb250YWluZXJDb21wb25lbnQgfSBmcm9tICcuL2RyYXdlcjItY29udGFpbmVyL2RyYXdlcjItY29udGFpbmVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBWERyYXdlcjJDb21wb25lbnQgfSBmcm9tICcuL2RyYXdlcjItaXRlbS9kcmF3ZXIyLmNvbXBvbmVudCc7XG5cbmNvbnN0IENPTVBPTkVOVCA9IFtBWERyYXdlcjJDb21wb25lbnQsIEFYRHJhd2VyMkNvbnRhaW5lckNvbXBvbmVudF07XG5jb25zdCBNT0RVTEVTID0gW0NvbW1vbk1vZHVsZV07XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFsuLi5NT0RVTEVTLCAuLi5DT01QT05FTlRdLFxuICBleHBvcnRzOiBbLi4uQ09NUE9ORU5UXSxcbiAgcHJvdmlkZXJzOiBbXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhEcmF3ZXIyTW9kdWxlIHt9XG4iXX0=","/**\n * Generated bundle index. Do not edit.\n */\nexport * from './index';\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LWNvbXBvbmVudHMtZHJhd2VyLTIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21wb25lbnRzL2RyYXdlci0yL3NyYy9hY29yZXgtY29tcG9uZW50cy1kcmF3ZXItMi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ=="],"names":[],"mappings":"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"}