@acorex/components 7.4.4 → 7.4.7

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 (179) hide show
  1. package/alert/lib/alert.component.d.ts +1 -3
  2. package/avatar/lib/avatar-group.component.d.ts +1 -4
  3. package/avatar/lib/avatar.component.d.ts +6 -7
  4. package/badge/lib/badge.component.d.ts +1 -3
  5. package/calendar/lib/calendar.class.d.ts +1 -3
  6. package/chips/lib/chips.component.d.ts +2 -4
  7. package/common/index.d.ts +2 -0
  8. package/common/lib/classes/styles.class.d.ts +1 -0
  9. package/common/lib/components/appearance-component.class.d.ts +12 -0
  10. package/common/lib/components/base-component.class.d.ts +1 -4
  11. package/common/lib/components/color-component.class.d.ts +0 -1
  12. package/common/lib/components/colorlook-component.class.d.ts +0 -1
  13. package/common/lib/components/interactive-component.class.d.ts +0 -1
  14. package/common/lib/components/look-component.class.d.ts +0 -1
  15. package/common/lib/components/selection-base.component.class.d.ts +45 -0
  16. package/common/lib/components/value-component.class.d.ts +0 -1
  17. package/data-pager/lib/data-pager-base.component.d.ts +3 -3
  18. package/data-pager/lib/data-pager.component.d.ts +2 -2
  19. package/datetime-box/lib/datetime-box.component.d.ts +9 -9
  20. package/datetime-input/lib/datetime-input.component.d.ts +1 -1
  21. package/datetime-picker/index.d.ts +1 -0
  22. package/datetime-picker/lib/datetime-picker.component.d.ts +5 -4
  23. package/datetime-picker/lib/datetime-picker.config.d.ts +8 -0
  24. package/dropdown/lib/dropdown-box.component.d.ts +6 -4
  25. package/esm2022/action-sheet/lib/action-sheet.component.mjs +4 -3
  26. package/esm2022/alert/lib/alert.component.mjs +3 -3
  27. package/esm2022/avatar/lib/avatar-group.component.mjs +2 -4
  28. package/esm2022/avatar/lib/avatar.component.mjs +21 -15
  29. package/esm2022/avatar/lib/avatar.module.mjs +3 -3
  30. package/esm2022/badge/lib/badge.component.mjs +2 -3
  31. package/esm2022/button/lib/button.component.mjs +2 -2
  32. package/esm2022/calendar/lib/calendar.class.mjs +2 -3
  33. package/esm2022/calendar/lib/calendar.component.mjs +2 -1
  34. package/esm2022/chips/lib/chips.component.mjs +3 -4
  35. package/esm2022/color-box/lib/color-box.component.mjs +1 -1
  36. package/esm2022/color-palette/lib/color-palette-input.component.mjs +1 -1
  37. package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +2 -1
  38. package/esm2022/common/index.mjs +3 -1
  39. package/esm2022/common/lib/classes/styles.class.mjs +1 -1
  40. package/esm2022/common/lib/components/appearance-component.class.mjs +25 -0
  41. package/esm2022/common/lib/components/base-component.class.mjs +15 -16
  42. package/esm2022/common/lib/components/color-component.class.mjs +2 -2
  43. package/esm2022/common/lib/components/colorlook-component.class.mjs +1 -4
  44. package/esm2022/common/lib/components/interactive-component.class.mjs +24 -24
  45. package/esm2022/common/lib/components/look-component.class.mjs +2 -2
  46. package/esm2022/common/lib/components/selection-base.component.class.mjs +176 -0
  47. package/esm2022/common/lib/components/value-component.class.mjs +8 -7
  48. package/esm2022/data-pager/lib/data-pager-base.component.mjs +4 -10
  49. package/esm2022/data-pager/lib/data-pager-input-selector.component.mjs +4 -4
  50. package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +59 -16
  51. package/esm2022/data-pager/lib/data-pager.component.mjs +8 -8
  52. package/esm2022/datetime-box/lib/datetime-box.component.mjs +15 -12
  53. package/esm2022/datetime-input/lib/datetime-input.component.mjs +4 -4
  54. package/esm2022/datetime-picker/index.mjs +2 -1
  55. package/esm2022/datetime-picker/lib/datetime-picker.component.mjs +23 -11
  56. package/esm2022/datetime-picker/lib/datetime-picker.config.mjs +22 -0
  57. package/esm2022/decorators/lib/components/generic-content.component.mjs +26 -3
  58. package/esm2022/dialog/lib/dialog.component.mjs +2 -1
  59. package/esm2022/dropdown/lib/dropdown-box.component.mjs +11 -9
  60. package/esm2022/dropdown/lib/dropdown-panel.component.mjs +3 -2
  61. package/esm2022/form/lib/form-field.component.mjs +2 -2
  62. package/esm2022/form/lib/form.component.mjs +7 -6
  63. package/esm2022/form/lib/validation-rule.widget.mjs +2 -1
  64. package/esm2022/image/lib/image.component.mjs +2 -1
  65. package/esm2022/loading/lib/loading.component.mjs +2 -1
  66. package/esm2022/notification/lib/notification.component.mjs +2 -1
  67. package/esm2022/number-box/lib/number-box.component.mjs +15 -8
  68. package/esm2022/otp/lib/otp.component.mjs +8 -7
  69. package/esm2022/password-box/lib/password-box.component.mjs +25 -19
  70. package/esm2022/picker/lib/picker.component.mjs +16 -20
  71. package/esm2022/popover/lib/popover.component.mjs +11 -4
  72. package/esm2022/popup/lib/popup.component.mjs +8 -6
  73. package/esm2022/popup/lib/popup.service.mjs +5 -3
  74. package/esm2022/scheduler/lib/scheduler-month-view.component.mjs +2 -1
  75. package/esm2022/scheduler/lib/scheduler.component.mjs +2 -2
  76. package/esm2022/select-box/lib/select-box.component.mjs +15 -12
  77. package/esm2022/selection-list/lib/selection-list.component.mjs +52 -26
  78. package/esm2022/switch/lib/switch-content.component.mjs +9 -7
  79. package/esm2022/tabs/lib/tabs.component.mjs +2 -2
  80. package/esm2022/text-box/lib/text-box.component.mjs +28 -12
  81. package/esm2022/toast/lib/toast.component.mjs +2 -1
  82. package/esm2022/tooltip/lib/tooltip.directive.mjs +30 -2
  83. package/fesm2022/acorex-components-action-sheet.mjs +3 -2
  84. package/fesm2022/acorex-components-action-sheet.mjs.map +1 -1
  85. package/fesm2022/acorex-components-alert.mjs +2 -2
  86. package/fesm2022/acorex-components-alert.mjs.map +1 -1
  87. package/fesm2022/acorex-components-avatar.mjs +22 -18
  88. package/fesm2022/acorex-components-avatar.mjs.map +1 -1
  89. package/fesm2022/acorex-components-badge.mjs +1 -2
  90. package/fesm2022/acorex-components-badge.mjs.map +1 -1
  91. package/fesm2022/acorex-components-button.mjs +2 -2
  92. package/fesm2022/acorex-components-button.mjs.map +1 -1
  93. package/fesm2022/acorex-components-calendar.mjs +2 -1
  94. package/fesm2022/acorex-components-calendar.mjs.map +1 -1
  95. package/fesm2022/acorex-components-chips.mjs +2 -3
  96. package/fesm2022/acorex-components-chips.mjs.map +1 -1
  97. package/fesm2022/acorex-components-color-box.mjs +1 -1
  98. package/fesm2022/acorex-components-color-box.mjs.map +1 -1
  99. package/fesm2022/acorex-components-color-palette.mjs +2 -1
  100. package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
  101. package/fesm2022/acorex-components-common.mjs +241 -49
  102. package/fesm2022/acorex-components-common.mjs.map +1 -1
  103. package/fesm2022/acorex-components-data-pager.mjs +70 -33
  104. package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
  105. package/fesm2022/acorex-components-datetime-box.mjs +16 -13
  106. package/fesm2022/acorex-components-datetime-box.mjs.map +1 -1
  107. package/fesm2022/acorex-components-datetime-input.mjs +3 -3
  108. package/fesm2022/acorex-components-datetime-input.mjs.map +1 -1
  109. package/fesm2022/acorex-components-datetime-picker.mjs +45 -13
  110. package/fesm2022/acorex-components-datetime-picker.mjs.map +1 -1
  111. package/fesm2022/acorex-components-decorators.mjs +24 -1
  112. package/fesm2022/acorex-components-decorators.mjs.map +1 -1
  113. package/fesm2022/acorex-components-dialog.mjs +1 -0
  114. package/fesm2022/acorex-components-dialog.mjs.map +1 -1
  115. package/fesm2022/acorex-components-dropdown.mjs +11 -8
  116. package/fesm2022/acorex-components-dropdown.mjs.map +1 -1
  117. package/fesm2022/acorex-components-form.mjs +8 -6
  118. package/fesm2022/acorex-components-form.mjs.map +1 -1
  119. package/fesm2022/acorex-components-image.mjs +1 -0
  120. package/fesm2022/acorex-components-image.mjs.map +1 -1
  121. package/fesm2022/acorex-components-loading.mjs +1 -0
  122. package/fesm2022/acorex-components-loading.mjs.map +1 -1
  123. package/fesm2022/acorex-components-notification.mjs +1 -0
  124. package/fesm2022/acorex-components-notification.mjs.map +1 -1
  125. package/fesm2022/acorex-components-number-box.mjs +14 -7
  126. package/fesm2022/acorex-components-number-box.mjs.map +1 -1
  127. package/fesm2022/acorex-components-otp.mjs +7 -6
  128. package/fesm2022/acorex-components-otp.mjs.map +1 -1
  129. package/fesm2022/acorex-components-password-box.mjs +24 -18
  130. package/fesm2022/acorex-components-password-box.mjs.map +1 -1
  131. package/fesm2022/acorex-components-picker.mjs +13 -17
  132. package/fesm2022/acorex-components-picker.mjs.map +1 -1
  133. package/fesm2022/acorex-components-popover.mjs +10 -3
  134. package/fesm2022/acorex-components-popover.mjs.map +1 -1
  135. package/fesm2022/acorex-components-popup.mjs +9 -5
  136. package/fesm2022/acorex-components-popup.mjs.map +1 -1
  137. package/fesm2022/acorex-components-scheduler.mjs +2 -1
  138. package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
  139. package/fesm2022/acorex-components-select-box.mjs +14 -11
  140. package/fesm2022/acorex-components-select-box.mjs.map +1 -1
  141. package/fesm2022/acorex-components-selection-list.mjs +51 -26
  142. package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
  143. package/fesm2022/acorex-components-switch.mjs +8 -7
  144. package/fesm2022/acorex-components-switch.mjs.map +1 -1
  145. package/fesm2022/acorex-components-tabs.mjs +2 -2
  146. package/fesm2022/acorex-components-tabs.mjs.map +1 -1
  147. package/fesm2022/acorex-components-text-box.mjs +26 -10
  148. package/fesm2022/acorex-components-text-box.mjs.map +1 -1
  149. package/fesm2022/acorex-components-toast.mjs +1 -0
  150. package/fesm2022/acorex-components-toast.mjs.map +1 -1
  151. package/fesm2022/acorex-components-tooltip.mjs +29 -1
  152. package/fesm2022/acorex-components-tooltip.mjs.map +1 -1
  153. package/form/lib/form.component.d.ts +2 -2
  154. package/mixin/lib/base-components.class.d.ts +2 -2
  155. package/mixin/lib/base-menu-mixin.class.d.ts +5 -5
  156. package/mixin/lib/button-mixin.class.d.ts +2 -2
  157. package/mixin/lib/clickable-mixin.class.d.ts +2 -2
  158. package/mixin/lib/color-look-mixing.class.d.ts +2 -2
  159. package/mixin/lib/datalist-component.class.d.ts +10 -10
  160. package/mixin/lib/dropdown-mixin.class.d.ts +2 -2
  161. package/mixin/lib/interactive-mixin.class.d.ts +4 -4
  162. package/mixin/lib/mixin.class.d.ts +61 -61
  163. package/mixin/lib/page-component.class.d.ts +2 -2
  164. package/mixin/lib/selection-component.class.d.ts +2 -2
  165. package/mixin/lib/sizable-mixin.class.d.ts +2 -2
  166. package/mixin/lib/textbox-mixin.class.d.ts +2 -2
  167. package/mixin/lib/value-mixin.class.d.ts +8 -8
  168. package/number-box/lib/number-box.component.d.ts +12 -5
  169. package/otp/lib/otp.component.d.ts +9 -3
  170. package/package.json +1 -1
  171. package/password-box/lib/password-box.component.d.ts +10 -3
  172. package/picker/lib/picker.component.d.ts +2 -2
  173. package/popover/lib/popover.component.d.ts +3 -1
  174. package/popup/lib/popup.service.d.ts +1 -1
  175. package/select-box/lib/select-box.component.d.ts +2 -1
  176. package/selection-list/lib/selection-list.component.d.ts +10 -15
  177. package/switch/lib/switch-content.component.d.ts +2 -2
  178. package/text-box/lib/text-box.component.d.ts +11 -3
  179. package/tooltip/lib/tooltip.directive.d.ts +7 -1
@@ -2,13 +2,12 @@ import { AXEvent, MXColorComponent } from '@acorex/components/common';
2
2
  import { AXDecoratorGenericComponent } from '@acorex/components/decorators';
3
3
  import { AfterViewInit, EventEmitter, OnDestroy, OnInit } from '@angular/core';
4
4
  import * as i0 from "@angular/core";
5
- declare const AXAlertComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXColorComponent]>;
6
5
  /**
7
6
  * Regular description
8
7
  *
9
8
  * @category Components
10
9
  */
11
- export declare class AXAlertComponent extends AXAlertComponent_base implements OnInit, AfterViewInit, OnDestroy {
10
+ export declare class AXAlertComponent extends MXColorComponent implements OnInit, AfterViewInit, OnDestroy {
12
11
  private _iconComp;
13
12
  private _buttonComps;
14
13
  protected _titleComp: AXDecoratorGenericComponent;
@@ -54,4 +53,3 @@ export declare class AXAlertComponent extends AXAlertComponent_base implements O
54
53
  static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertComponent, never>;
55
54
  static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertComponent, "ax-alert", never, { "color": { "alias": "color"; "required": false; }; "timeOut": { "alias": "timeOut"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "colorChange": "colorChange"; "onClosed": "onClosed"; }, ["_iconComp", "_titleComp", "_contentComp", "_footerComp", "_buttonComps"], ["ax-button", "ax-close-button", "ax-title", "ax-icon", "ax-content", "ax-footer"], false, never>;
56
55
  }
57
- export {};
@@ -1,8 +1,5 @@
1
- import { OnInit } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
- export declare class AXAvatarGroup implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
2
+ export declare class AXAvatarGroup {
6
3
  static ɵfac: i0.ɵɵFactoryDeclaration<AXAvatarGroup, never>;
7
4
  static ɵcmp: i0.ɵɵComponentDeclaration<AXAvatarGroup, "ax-avatar-group", never, {}, {}, never, ["ax-avatar"], false, never>;
8
5
  }
@@ -1,18 +1,17 @@
1
1
  import { MXColorComponent } from '@acorex/components/common';
2
2
  import { QueryList } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
- declare const AXAvatarComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXColorComponent]>;
5
4
  /**
6
5
  * The Button is a component which detects user interaction and triggers a corresponding event
7
6
  *
8
7
  * @category Components
9
8
  */
10
- export declare class AXAvatarComponent extends AXAvatarComponent_base {
11
- cssClass: string;
12
- protected readonly _children: QueryList<any>;
13
- ngAfterViewInit(): void;
9
+ export declare class AXAvatarComponent extends MXColorComponent {
10
+ protected children: QueryList<unknown>;
11
+ size: number;
12
+ shape: 'squre' | 'circle';
14
13
  private get __hostClass();
14
+ private get __hostStyle();
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AXAvatarComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<AXAvatarComponent, "ax-avatar", never, { "color": { "alias": "color"; "required": false; }; "cssClass": { "alias": "class"; "required": false; }; }, {}, ["_children"], ["*"], false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAvatarComponent, "ax-avatar", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; }, {}, ["children"], ["ax-text, ax-image, ax-icon", "ax-badge"], false, never>;
17
17
  }
18
- export {};
@@ -1,10 +1,8 @@
1
1
  import { MXColorComponent } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
- declare const AXBadgeComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXColorComponent]>;
4
- export declare class AXBadgeComponent extends AXBadgeComponent_base {
3
+ export declare class AXBadgeComponent extends MXColorComponent {
5
4
  text: string;
6
5
  private get __hostClass();
7
6
  static ɵfac: i0.ɵɵFactoryDeclaration<AXBadgeComponent, never>;
8
7
  static ɵcmp: i0.ɵɵComponentDeclaration<AXBadgeComponent, "ax-badge", never, { "color": { "alias": "color"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["ax-prefix", "ax-suffix"], false, never>;
9
8
  }
10
- export {};
@@ -36,8 +36,7 @@ export interface AXCalendarView {
36
36
  range: AXDateTimeRange;
37
37
  slots: AXCalendarViewSlot[];
38
38
  }
39
- declare const MXCalendarBaseComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXBaseComponent]>;
40
- export declare class MXCalendarBaseComponent extends MXCalendarBaseComponent_base {
39
+ export declare class MXCalendarBaseComponent extends MXBaseComponent {
41
40
  protected calendarService: AXCalendarService;
42
41
  interface: 'calendar' | 'picker';
43
42
  cellTemplate?: TemplateRef<unknown>;
@@ -79,4 +78,3 @@ export declare class MXCalendarBaseComponent extends MXCalendarBaseComponent_bas
79
78
  }
80
79
  export declare const CALENDAR_INPUTS: string[];
81
80
  export declare const CALENDAR_OUTPUTS: string[];
82
- export {};
@@ -1,7 +1,6 @@
1
- import { MXBaseComponent, MXColorComponent } from '@acorex/components/common';
1
+ import { MXColorComponent } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
- declare const AXChipsComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXBaseComponent, typeof MXColorComponent]>;
4
- export declare class AXChipsComponent extends AXChipsComponent_base {
3
+ export declare class AXChipsComponent extends MXColorComponent {
5
4
  look: 'default' | 'outline';
6
5
  text: string;
7
6
  constructor();
@@ -9,4 +8,3 @@ export declare class AXChipsComponent extends AXChipsComponent_base {
9
8
  static ɵfac: i0.ɵɵFactoryDeclaration<AXChipsComponent, never>;
10
9
  static ɵcmp: i0.ɵɵComponentDeclaration<AXChipsComponent, "ax-chips", never, { "tabIndex": { "alias": "tabIndex"; "required": false; }; "color": { "alias": "color"; "required": false; }; "look": { "alias": "look"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, { "colorChange": "colorChange"; }, never, ["ax-prefix", "ax-suffix"], false, never>;
11
10
  }
12
- export {};
package/common/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export * from './lib/classes/datalist.class';
8
8
  export * from './lib/classes/events.class';
9
9
  export * from './lib/classes/styles.class';
10
10
  export * from './lib/common.module';
11
+ export * from './lib/components/appearance-component.class';
11
12
  export * from './lib/components/base-component.class';
12
13
  export * from './lib/components/button-base-component.class';
13
14
  export * from './lib/components/color-component.class';
@@ -15,6 +16,7 @@ export * from './lib/components/colorlook-component.class';
15
16
  export * from './lib/components/input-base-value-component.class';
16
17
  export * from './lib/components/interactive-component.class';
17
18
  export * from './lib/components/look-component.class';
19
+ export * from './lib/components/selection-base.component.class';
18
20
  export * from './lib/components/value-component.class';
19
21
  export * from './lib/directives/auto-focus.directive';
20
22
  export * from './lib/directives/delayed-value-changed.directive';
@@ -4,5 +4,6 @@ export declare const AX_STYLE_COLOR_TYPES: string[];
4
4
  */
5
5
  export type AXStyleColorType = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'default' | 'ghost';
6
6
  export type AXStyleLookType = 'default' | 'blank' | 'outline';
7
+ export type AXAppearanceType = 'solid' | 'flat' | 'outline' | 'fill' | 'none';
7
8
  export declare const AX_LOCATIONS: string[];
8
9
  export type AXLocation = 'bottom-start' | 'bottom-center' | 'bottom-end' | 'top-start' | 'top-center' | 'top-end' | 'center-end' | 'center-start';
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { AXAppearanceType } from '../classes/styles.class';
3
+ import { MXBaseComponent } from './base-component.class';
4
+ export declare class MXAppearanceComponent extends MXBaseComponent {
5
+ appearanceChange: EventEmitter<AXAppearanceType>;
6
+ private _appearance;
7
+ /**
8
+ * Predefined color schemes
9
+ */
10
+ get appearance(): AXAppearanceType;
11
+ set appearance(value: AXAppearanceType);
12
+ }
@@ -26,10 +26,7 @@ export declare abstract class MXBaseComponent {
26
26
  protected getViewContainer(): ViewContainerRef;
27
27
  protected internalOptionChanging(option: MXComponentOptionChanging): any;
28
28
  protected internalOptionChanged(option: MXComponentOptionChanged): void;
29
- /**
30
- * @ignore
31
- */
32
- constructor();
29
+ protected ngOnInit(): void;
33
30
  onOptionChanged: EventEmitter<AXOptionChangedEvent>;
34
31
  setOption<T = any>(option: MXComponentSetOption<T>): void;
35
32
  private _detectLayout;
@@ -2,7 +2,6 @@ import { EventEmitter } from '@angular/core';
2
2
  import { AXStyleColorType } from '../classes/styles.class';
3
3
  import { MXBaseComponent } from './base-component.class';
4
4
  export declare class MXColorComponent extends MXBaseComponent {
5
- constructor();
6
5
  colorChange: EventEmitter<AXStyleColorType>;
7
6
  private _color;
8
7
  /**
@@ -2,6 +2,5 @@ import { MXColorComponent } from "./color-component.class";
2
2
  import { MXLookComponent } from "./look-component.class";
3
3
  declare const MXColorLookComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXColorComponent, typeof MXLookComponent]>;
4
4
  export declare class MXColorLookComponent extends MXColorLookComponent_base {
5
- constructor();
6
5
  }
7
6
  export {};
@@ -39,7 +39,6 @@ export declare class MXInteractiveComponent extends MXBaseComponent {
39
39
  */
40
40
  onClick: EventEmitter<AXClickEvent>;
41
41
  protected emitOnClickEvent(e: MouseEvent): void;
42
- constructor();
43
42
  focus(): void;
44
43
  blur(): void;
45
44
  /**
@@ -2,7 +2,6 @@ import { EventEmitter } from '@angular/core';
2
2
  import { AXStyleLookType } from '../classes/styles.class';
3
3
  import { MXBaseComponent } from './base-component.class';
4
4
  export declare class MXLookComponent extends MXBaseComponent {
5
- constructor();
6
5
  lookChange: EventEmitter<AXStyleLookType>;
7
6
  private _look?;
8
7
  /**
@@ -0,0 +1,45 @@
1
+ import { MXValueComponent } from './value-component.class';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MXSelectionValueComponent<T = unknown> extends MXValueComponent<unknown> {
4
+ selectionMode: 'value' | 'item';
5
+ disabledCallback: (e: {
6
+ item: T;
7
+ index: number;
8
+ }) => boolean;
9
+ private _valueField;
10
+ get valueField(): string;
11
+ set valueField(v: string);
12
+ private _textField;
13
+ get textField(): string;
14
+ set textField(v: string);
15
+ private _hintField;
16
+ get hintField(): string;
17
+ set hintField(v: string);
18
+ private _disabledField;
19
+ get disabledField(): string;
20
+ set disabledField(v: string);
21
+ private _readonlyField;
22
+ get readonlyField(): string;
23
+ set readonlyField(v: string);
24
+ private _multiple;
25
+ get multiple(): boolean;
26
+ set multiple(v: boolean);
27
+ private _items;
28
+ get items(): unknown[];
29
+ set items(v: unknown[]);
30
+ protected displayItems: unknown[];
31
+ _selectedItems: unknown[];
32
+ get selectedItems(): unknown[];
33
+ internalSetValue(value: unknown): unknown;
34
+ emitOnValueChangedEvent(oldValue?: unknown, newValue?: unknown): void;
35
+ private normalizeItemsList;
36
+ private normalizeItem;
37
+ private _normalizeSelectedItems;
38
+ unselectItems(...items: T[]): void;
39
+ selectItems(...items: T[]): void;
40
+ toggleSelect(...items: T[]): void;
41
+ isItemSelected(item: T): boolean;
42
+ isItemDisabled(item: T): boolean;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<MXSelectionValueComponent<any>, never>;
44
+ static ɵprov: i0.ɵɵInjectableDeclaration<MXSelectionValueComponent<any>>;
45
+ }
@@ -44,7 +44,6 @@ export declare class MXValueComponent<T = any> extends MXInteractiveComponent im
44
44
  protected internalSetValue(value: any): T;
45
45
  protected internalGetValue(value: any): T;
46
46
  protected internalValueChanged(value: any): void;
47
- protected ngOnInit(): void;
48
47
  protected ngAfterViewInit(): void;
49
48
  protected ngOnDestroy(): void;
50
49
  private _checkRequired;
@@ -1,6 +1,6 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { AXEvent, MXInteractiveComponent, AXOptionChangedEvent } from '@acorex/components/common';
1
+ import { AXEvent, AXOptionChangedEvent, MXInteractiveComponent } from '@acorex/components/common';
3
2
  import { AXUnsubscriber } from '@acorex/core/utils';
3
+ import { EventEmitter } from '@angular/core';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * A token that specifies the display mode of datapager component.
@@ -34,7 +34,7 @@ export declare abstract class AXDataPagerParentComponent {
34
34
  abstract onChanged: EventEmitter<AXDataPagerChangedEvent>;
35
35
  abstract onOptionChanged: EventEmitter<AXOptionChangedEvent>;
36
36
  abstract get displayInfo(): AXDataPagerData;
37
- abstract size: number;
37
+ abstract size: any;
38
38
  abstract goNextPage(): void;
39
39
  abstract goLastPage(): void;
40
40
  abstract goFirstPage(): void;
@@ -1,6 +1,6 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import { AXPagedComponent, MXValueComponent } from '@acorex/components/common';
3
- import { AXDataPagerData, AXDataPagerChangedEvent } from './data-pager-base.component';
2
+ import { EventEmitter } from '@angular/core';
3
+ import { AXDataPagerChangedEvent, AXDataPagerData } from './data-pager-base.component';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class AXDataPagerComponent extends MXValueComponent<number> {
6
6
  private _parent;
@@ -1,15 +1,15 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { MXInputBaseValueComponent, AXEvent } from '@acorex/components/common';
3
- import { MXDropdownBoxBaseComponent, AXDropdownBoxComponent } from '@acorex/components/dropdown';
4
1
  import { AXCalendarNavigateEvent, MXCalendarBaseComponent } from '@acorex/components/calendar';
2
+ import { MXAppearanceComponent, MXInputBaseValueComponent } from '@acorex/components/common';
5
3
  import { AXDateTimeInputComponent } from '@acorex/components/datetime-input';
6
4
  import { AXDateTimePickerComponent } from '@acorex/components/datetime-picker';
5
+ import { AXDropdownBoxComponent, MXDropdownBoxBaseComponent } from '@acorex/components/dropdown';
6
+ import { EventEmitter } from '@angular/core';
7
7
  import * as i0 from "@angular/core";
8
- declare const AXDateTimeBoxComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXDropdownBoxBaseComponent, typeof MXCalendarBaseComponent, {
8
+ declare const AXDateTimeBoxComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
9
9
  new (): MXInputBaseValueComponent<Date>;
10
10
  ɵfac: unknown;
11
11
  ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXInputBaseValueComponent<any>>;
12
- }]>;
12
+ }, typeof MXCalendarBaseComponent, typeof MXDropdownBoxBaseComponent, typeof MXAppearanceComponent]>;
13
13
  /**
14
14
  * The Button is a component which detects user interaction and triggers a corresponding event
15
15
  *
@@ -24,11 +24,11 @@ export declare class AXDateTimeBoxComponent extends AXDateTimeBoxComponent_base
24
24
  get format(): string;
25
25
  set format(v: string);
26
26
  protected _handleModelChange(value: Date | null): void;
27
- protected _handleOnOpenedEvent(e: AXEvent): void;
28
- protected _handleOnClosedEvent(e: AXEvent): void;
27
+ protected _handleOnOpenedEvent(): void;
28
+ protected _handleOnClosedEvent(): void;
29
29
  protected _handleCalendarOnNavigate(e: AXCalendarNavigateEvent): void;
30
- internalValueChanged(value?: Date): void;
30
+ internalValueChanged(): void;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDateTimeBoxComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<AXDateTimeBoxComponent, "ax-datetime-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "formatChange": "formatChange"; }, never, ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-validation-rule"], false, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDateTimeBoxComponent, "ax-datetime-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "formatChange": "formatChange"; }, never, ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-validation-rule"], false, never>;
33
33
  }
34
34
  export {};
@@ -40,5 +40,5 @@ export declare class AXDateTimeInputComponent extends MXInputBaseValueComponent<
40
40
  private _highlightActivePart;
41
41
  private _detectValueChanges;
42
42
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDateTimeInputComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<AXDateTimeInputComponent, "ax-datetime-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "formatChange": "formatChange"; }, never, never, false, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDateTimeInputComponent, "ax-datetime-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "formatChange": "formatChange"; }, never, ["ax-validation-rule"], false, never>;
44
44
  }
@@ -1,2 +1,3 @@
1
+ export * from './lib/datetime-picker.config';
1
2
  export * from './lib/datetime-picker.component';
2
3
  export * from './lib/datetime-picker.module';
@@ -12,9 +12,10 @@ declare const AXDateTimePickerComponent_base: import("polytype").Polytype.Cluste
12
12
  ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
13
13
  }]>;
14
14
  export declare class AXDateTimePickerComponent extends AXDateTimePickerComponent_base implements OnInit {
15
- private _updateOn;
16
- get updateOn(): 'change' | 'set';
17
- set updateOn(v: 'change' | 'set');
15
+ private defaultConfig;
16
+ private _currentTimeButton;
17
+ get currentTimeButton(): boolean;
18
+ set currentTimeButton(v: boolean);
18
19
  private _calendarService;
19
20
  protected picker: AXPickerComponent;
20
21
  protected tabs: AXTabsComponent;
@@ -41,6 +42,6 @@ export declare class AXDateTimePickerComponent extends AXDateTimePickerComponent
41
42
  protected _handleSetClick(e: AXClickEvent): void;
42
43
  protected _handleNowClick(e: AXClickEvent): void;
43
44
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDateTimePickerComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<AXDateTimePickerComponent, "ax-datetime-picker", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "holidayDates": { "alias": "holidayDates"; "required": false; }; "type": { "alias": "type"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "cellClass": { "alias": "cellClass"; "required": false; }; "showNavigation": { "alias": "showNavigation"; "required": false; }; "updateOn": { "alias": "updateOn"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "depthChange": "depthChange"; "typeChange": "typeChange"; "activeViewChange": "activeViewChange"; "disabledDatesChange": "disabledDatesChange"; "holidayDatesChange": "holidayDatesChange"; "onNavigate": "onNavigate"; "onSlotClick": "onSlotClick"; "formatChange": "formatChange"; }, never, never, false, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDateTimePickerComponent, "ax-datetime-picker", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "holidayDates": { "alias": "holidayDates"; "required": false; }; "type": { "alias": "type"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "cellClass": { "alias": "cellClass"; "required": false; }; "showNavigation": { "alias": "showNavigation"; "required": false; }; "currentTimeButton": { "alias": "currentTimeButton"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "depthChange": "depthChange"; "typeChange": "typeChange"; "activeViewChange": "activeViewChange"; "disabledDatesChange": "disabledDatesChange"; "holidayDatesChange": "holidayDatesChange"; "onNavigate": "onNavigate"; "onSlotClick": "onSlotClick"; "formatChange": "formatChange"; }, never, never, false, never>;
45
46
  }
46
47
  export {};
@@ -0,0 +1,8 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export interface AXDateTimePickerConfig {
3
+ currentTimeButton: boolean;
4
+ }
5
+ export declare const AX_DATETIME_PICKER_CONFIG: InjectionToken<AXDateTimePickerConfig>;
6
+ export declare const AXDateTimePickerDefaultConfig: AXDateTimePickerConfig;
7
+ export type PartialDateTimePickerConfig = Partial<AXDateTimePickerConfig>;
8
+ export declare function dateTimePickerConfig(config?: PartialDateTimePickerConfig): AXDateTimePickerConfig;
@@ -1,8 +1,9 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { AXEvent, MXInteractiveComponent } from '@acorex/components/common';
1
+ import { AXEvent, MXAppearanceComponent, MXInteractiveComponent } from '@acorex/components/common';
3
2
  import { AXPopoverComponent } from '@acorex/components/popover';
3
+ import { EventEmitter, OnInit } from '@angular/core';
4
4
  import * as i0 from "@angular/core";
5
- export declare class AXDropdownBoxComponent extends MXInteractiveComponent implements OnInit {
5
+ declare const AXDropdownBoxComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXInteractiveComponent, typeof MXAppearanceComponent]>;
6
+ export declare class AXDropdownBoxComponent extends AXDropdownBoxComponent_base implements OnInit {
6
7
  private _platform;
7
8
  protected _isMobile: boolean;
8
9
  protected _target: HTMLDivElement;
@@ -21,5 +22,6 @@ export declare class AXDropdownBoxComponent extends MXInteractiveComponent imple
21
22
  get isOpen(): boolean;
22
23
  private get __hostClass();
23
24
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownBoxComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownBoxComponent, "ax-dropdown-box", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "disabledChange": "disabledChange"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "onOpened": "onOpened"; "onClosed": "onClosed"; }, never, ["[input]", "[panel]"], false, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownBoxComponent, "ax-dropdown-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; }, { "disabledChange": "disabledChange"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "onOpened": "onOpened"; "onClosed": "onClosed"; }, never, ["[input]", "[panel]"], false, never>;
25
26
  }
27
+ export {};
@@ -17,6 +17,7 @@ export class AXActionSheetComponent extends MXBaseComponent {
17
17
  this.dialogRef = dialogRef;
18
18
  }
19
19
  ngOnInit() {
20
+ super.ngOnInit();
20
21
  if (this.data.content) {
21
22
  if (this.data.content instanceof TemplateRef) {
22
23
  this._selectedPortal = new TemplatePortal(this.data.content, this.getViewContainer(), {
@@ -66,7 +67,7 @@ export class AXActionSheetComponent extends MXBaseComponent {
66
67
  },
67
68
  {
68
69
  provide: AXFocusableComponent, useExisting: AXActionSheetComponent,
69
- }], usesInheritance: true, ngImport: i0, template: "<ax-header *ngIf=\"data.header\">\n <ax-prefix>\n <ax-title>{{ data.title }}</ax-title>\n <ax-sub-title *ngIf=\"data.subTitle\">{{ data.subTitle }}</ax-sub-title>\n </ax-prefix>\n <ax-suffix>\n <ax-close-button *ngIf=\"data.closeButton\"></ax-close-button>\n </ax-suffix>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of data.items\">\n <div class=\"ax-action-sheet-item ax-{{ item.color }}\" [class.ax-state-disabled]=\"item.disabled\" tabindex=\"0\"\n (click)=\"onItemClick(item)\">\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>", styles: ["ax-action-sheet{display:block}@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-action-sheet ax-header ax-prefix,ax-action-sheet ax-header ax-suffix{display:flex;flex-direction:column;justify-content:flex-start}ax-action-sheet ax-header ax-prefix{align-items:flex-start}ax-action-sheet ax-header ax-suffix{align-items:flex-end}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i4.AXDecoratorCloseButtonComponent, selector: "ax-close-button", inputs: ["icon"] }, { kind: "component", type: i4.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title , ax-sub-title" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
70
+ }], usesInheritance: true, ngImport: i0, template: "<ax-header *ngIf=\"data.header\">\n <ax-prefix>\n <ax-title>{{ data.title }}</ax-title>\n <ax-sub-title *ngIf=\"data.subTitle\">{{ data.subTitle }}</ax-sub-title>\n </ax-prefix>\n <ax-suffix>\n <ax-close-button *ngIf=\"data.closeButton\"></ax-close-button>\n </ax-suffix>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of data.items\">\n <div\n class=\"ax-action-sheet-item ax-{{ item.color }}\"\n [class.ax-state-disabled]=\"item.disabled\"\n tabindex=\"0\"\n (click)=\"onItemClick(item)\"\n >\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>\n", styles: ["ax-action-sheet{display:block}@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-action-sheet ax-header ax-prefix,ax-action-sheet ax-header ax-suffix{display:flex;flex-direction:column;justify-content:flex-start}ax-action-sheet ax-header ax-prefix{align-items:flex-start}ax-action-sheet ax-header ax-suffix{align-items:flex-end}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i4.AXDecoratorCloseButtonComponent, selector: "ax-close-button", inputs: ["icon"] }, { kind: "component", type: i4.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title , ax-sub-title" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
70
71
  }
71
72
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.9", ngImport: i0, type: AXActionSheetComponent, decorators: [{
72
73
  type: Component,
@@ -75,7 +76,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.9", ngImpor
75
76
  },
76
77
  {
77
78
  provide: AXFocusableComponent, useExisting: AXActionSheetComponent,
78
- }], template: "<ax-header *ngIf=\"data.header\">\n <ax-prefix>\n <ax-title>{{ data.title }}</ax-title>\n <ax-sub-title *ngIf=\"data.subTitle\">{{ data.subTitle }}</ax-sub-title>\n </ax-prefix>\n <ax-suffix>\n <ax-close-button *ngIf=\"data.closeButton\"></ax-close-button>\n </ax-suffix>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of data.items\">\n <div class=\"ax-action-sheet-item ax-{{ item.color }}\" [class.ax-state-disabled]=\"item.disabled\" tabindex=\"0\"\n (click)=\"onItemClick(item)\">\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>", styles: ["ax-action-sheet{display:block}@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-action-sheet ax-header ax-prefix,ax-action-sheet ax-header ax-suffix{display:flex;flex-direction:column;justify-content:flex-start}ax-action-sheet ax-header ax-prefix{align-items:flex-start}ax-action-sheet ax-header ax-suffix{align-items:flex-end}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"] }]
79
+ }], template: "<ax-header *ngIf=\"data.header\">\n <ax-prefix>\n <ax-title>{{ data.title }}</ax-title>\n <ax-sub-title *ngIf=\"data.subTitle\">{{ data.subTitle }}</ax-sub-title>\n </ax-prefix>\n <ax-suffix>\n <ax-close-button *ngIf=\"data.closeButton\"></ax-close-button>\n </ax-suffix>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of data.items\">\n <div\n class=\"ax-action-sheet-item ax-{{ item.color }}\"\n [class.ax-state-disabled]=\"item.disabled\"\n tabindex=\"0\"\n (click)=\"onItemClick(item)\"\n >\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>\n", styles: ["ax-action-sheet{display:block}@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-action-sheet ax-header ax-prefix,ax-action-sheet ax-header ax-suffix{display:flex;flex-direction:column;justify-content:flex-start}ax-action-sheet ax-header ax-prefix{align-items:flex-start}ax-action-sheet ax-header ax-suffix{align-items:flex-end}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"] }]
79
80
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
80
81
  type: Inject,
81
82
  args: [DIALOG_DATA]
@@ -83,4 +84,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.9", ngImpor
83
84
  type: HostListener,
84
85
  args: ['keydown.escape']
85
86
  }] } });
86
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLXNoZWV0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9hY3Rpb24tc2hlZXQvc3JjL2xpYi9hY3Rpb24tc2hlZXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL2FjdGlvbi1zaGVldC9zcmMvbGliL2FjdGlvbi1zaGVldC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQXlCLGVBQWUsRUFBRSxtQkFBbUIsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzlILE9BQU8sRUFFTCxlQUFlLEVBRWYsY0FBYyxHQUNmLE1BQU0scUJBQXFCLENBQUM7QUFDN0IsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBRVQsWUFBWSxFQUNaLE1BQU0sRUFFTixXQUFXLEVBQ1gsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxXQUFXLEVBQUUsU0FBUyxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7OztBQWU3RCxNQUFNLE9BQU8sc0JBQXVCLFNBQVEsZUFBZTtJQU16RDs7U0FFSztJQUNMLFlBRVksSUFBdUIsRUFDekIsU0FBMkM7UUFFbkQsS0FBSyxFQUFFLENBQUM7UUFIRSxTQUFJLEdBQUosSUFBSSxDQUFtQjtRQUN6QixjQUFTLEdBQVQsU0FBUyxDQUFrQztJQUdyRCxDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUU7WUFDckIsSUFBSSxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sWUFBWSxXQUFXLEVBQUU7Z0JBQzVDLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxjQUFjLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixFQUFFLEVBQUU7b0JBQ3BGLFNBQVMsRUFBRSxJQUFJLENBQUMsSUFBSTtvQkFDcEIsR0FBRyxFQUFFLElBQUk7aUJBQ1YsQ0FBQyxDQUFDO2dCQUNILElBQUksQ0FBQyxHQUFHLENBQUMsWUFBWSxFQUFFLENBQUM7YUFDekI7aUJBQU0sSUFBSSxPQUFPLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxLQUFLLFVBQVUsRUFBRTtnQkFDbEQsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO2dCQUM5RCxJQUFJLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRSxDQUFDO2FBQ3pCO1NBQ0Y7SUFDSCxDQUFDO0lBR1MsZ0JBQWdCO1FBQ3hCLE1BQU0sbUJBQW1CLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDLE9BQU8sQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUMzRSxJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBVyxJQUFJLG1CQUFtQixFQUFFO1lBQ2hELElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztTQUNkO0lBQ0gsQ0FBQztJQUVELGNBQWMsQ0FBQyxHQUErQjtRQUM1QyxHQUFHLEdBQUcsR0FBd0IsQ0FBQztRQUMvQixJQUFJLEdBQUcsQ0FBQyxRQUFRLEVBQUU7WUFDaEIsSUFBSSxDQUFDLGFBQWEsR0FBRyxHQUFHLENBQUMsUUFBUSxDQUFDO1lBQ2xDLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLGFBQWEsRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDN0MsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDLENBQUM7WUFDdEQsSUFBSSxHQUFHLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRTtnQkFDekIsR0FBRyxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBd0IsRUFBRSxFQUFFO29CQUMzRCxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7Z0JBQ2YsQ0FBQyxDQUFDLENBQUM7YUFDSjtTQUNGO0lBQ0gsQ0FBQztJQUVELFdBQVcsQ0FBQyxJQUF1QjtRQUNqQyxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7UUFDYixJQUFJLEVBQUUsT0FBTyxFQUFFLENBQUM7SUFDbEIsQ0FBQztJQUVELEtBQUs7UUFDSCxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQztZQUNuQixTQUFTLEVBQUUsSUFBSSxDQUFDLGFBQWE7WUFDN0IsV0FBVyxFQUFFLElBQUksQ0FBQyxjQUFjLEVBQUU7U0FDbkMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzs4R0FoRVUsc0JBQXNCLGtCQVV2QixXQUFXO2tHQVZWLHNCQUFzQiwyR0FQdEIsQ0FBQztnQkFDVixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsV0FBVyxFQUFFLHNCQUFzQjthQUNsRTtZQUNEO2dCQUNFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLEVBQUUsc0JBQXNCO2FBQ25FLENBQUMsaURDL0JKLGcwQkFrQk07OzJGRGVPLHNCQUFzQjtrQkFibEMsU0FBUzsrQkFDRSxpQkFBaUIsbUJBR1YsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxhQUMxQixDQUFDOzRCQUNWLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxXQUFXLHdCQUF3Qjt5QkFDbEU7d0JBQ0Q7NEJBQ0UsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsd0JBQXdCO3lCQUNuRSxDQUFDOzswQkFZQyxNQUFNOzJCQUFDLFdBQVc7b0VBdUJYLGdCQUFnQjtzQkFEekIsWUFBWTt1QkFBQyxnQkFBZ0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWENvbXBvbmVudENsb3NlRXZlbnQsIE1YQmFzZUNvbXBvbmVudCwgQVhDbG9zYmFsZUNvbXBvbmVudCwgQVhGb2N1c2FibGVDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvY29tbW9uJztcbmltcG9ydCB7XG4gIENka1BvcnRhbE91dGxldEF0dGFjaGVkUmVmLFxuICBDb21wb25lbnRQb3J0YWwsXG4gIFBvcnRhbCxcbiAgVGVtcGxhdGVQb3J0YWwsXG59IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgQ29tcG9uZW50UmVmLFxuICBIb3N0TGlzdGVuZXIsXG4gIEluamVjdCxcbiAgT25Jbml0LFxuICBUZW1wbGF0ZVJlZixcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQVhBY3Rpb25TaGVldERhdGEsIEFYQWN0aW9uU2hlZXRJdGVtIH0gZnJvbSAnLi9hY3Rpb24tc2hlZXQuY2xhc3MnO1xuaW1wb3J0IHsgRElBTE9HX0RBVEEsIERpYWxvZ1JlZiB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9kaWFsb2cnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdheC1hY3Rpb24tc2hlZXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vYWN0aW9uLXNoZWV0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYWN0aW9uLXNoZWV0LmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBwcm92aWRlcnM6IFt7XG4gICAgcHJvdmlkZTogQVhDbG9zYmFsZUNvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IEFYQWN0aW9uU2hlZXRDb21wb25lbnQsXG4gIH0sXG4gIHtcbiAgICBwcm92aWRlOiBBWEZvY3VzYWJsZUNvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IEFYQWN0aW9uU2hlZXRDb21wb25lbnQsXG4gIH1dXG59KVxuZXhwb3J0IGNsYXNzIEFYQWN0aW9uU2hlZXRDb21wb25lbnQgZXh0ZW5kcyBNWEJhc2VDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQHR5cGVzY3JpcHQtZXNsaW50L25vLWV4cGxpY2l0LWFueVxuICBwcm90ZWN0ZWQgX3NlbGVjdGVkUG9ydGFsOiBQb3J0YWw8YW55PjtcblxuICBwcml2YXRlIF9jb21wb25lbnRSZWY6IHVua25vd25cblxuICAvKipcbiAgICAgKiAgQGlnbm9yZVxuICAgICAqL1xuICBjb25zdHJ1Y3RvcihcbiAgICBASW5qZWN0KERJQUxPR19EQVRBKVxuICAgIHByb3RlY3RlZCBkYXRhOiBBWEFjdGlvblNoZWV0RGF0YSxcbiAgICBwcml2YXRlIGRpYWxvZ1JlZjogRGlhbG9nUmVmPEFYQ29tcG9uZW50Q2xvc2VFdmVudD4sXG4gICkge1xuICAgIHN1cGVyKCk7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5kYXRhLmNvbnRlbnQpIHtcbiAgICAgIGlmICh0aGlzLmRhdGEuY29udGVudCBpbnN0YW5jZW9mIFRlbXBsYXRlUmVmKSB7XG4gICAgICAgIHRoaXMuX3NlbGVjdGVkUG9ydGFsID0gbmV3IFRlbXBsYXRlUG9ydGFsKHRoaXMuZGF0YS5jb250ZW50LCB0aGlzLmdldFZpZXdDb250YWluZXIoKSwge1xuICAgICAgICAgICRpbXBsaWNpdDogdGhpcy5kYXRhLFxuICAgICAgICAgIHJlZjogdGhpcyxcbiAgICAgICAgfSk7XG4gICAgICAgIHRoaXMuY2RyLm1hcmtGb3JDaGVjaygpO1xuICAgICAgfSBlbHNlIGlmICh0eXBlb2YgdGhpcy5kYXRhLmNvbnRlbnQgPT09ICdmdW5jdGlvbicpIHtcbiAgICAgICAgdGhpcy5fc2VsZWN0ZWRQb3J0YWwgPSBuZXcgQ29tcG9uZW50UG9ydGFsKHRoaXMuZGF0YS5jb250ZW50KTtcbiAgICAgICAgdGhpcy5jZHIubWFya0ZvckNoZWNrKCk7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgQEhvc3RMaXN0ZW5lcigna2V5ZG93bi5lc2NhcGUnKVxuICBwcm90ZWN0ZWQgb25LZXlkb3duSGFuZGxlcigpIHtcbiAgICBjb25zdCBmb2N1c2VkT3JIYXNGb2N1c2VkID0gdGhpcy5nZXRIb3N0RWxlbWVudCgpLm1hdGNoZXMoJzpmb2N1cy13aXRoaW4nKTtcbiAgICBpZiAodGhpcy5kYXRhLmNsb3NlQnV0dG9uICYmIGZvY3VzZWRPckhhc0ZvY3VzZWQpIHtcbiAgICAgIHRoaXMuY2xvc2UoKTtcbiAgICB9XG4gIH1cblxuICBfaGFuZGxlQXR0Y2hlZChyZWY6IENka1BvcnRhbE91dGxldEF0dGFjaGVkUmVmKSB7XG4gICAgcmVmID0gcmVmIGFzIENvbXBvbmVudFJlZjxhbnk+O1xuICAgIGlmIChyZWYuaW5zdGFuY2UpIHtcbiAgICAgIHRoaXMuX2NvbXBvbmVudFJlZiA9IHJlZi5pbnN0YW5jZTtcbiAgICAgIE9iamVjdC5hc3NpZ24odGhpcy5fY29tcG9uZW50UmVmLCB0aGlzLmRhdGEpO1xuICAgICAgT2JqZWN0LmFzc2lnbih0aGlzLl9jb21wb25lbnRSZWYsIHsgX2lzUG9wdXA6IHRydWUgfSk7XG4gICAgICBpZiAocmVmLmluc3RhbmNlLm9uQ2xvc2VkKSB7XG4gICAgICAgIHJlZi5pbnN0YW5jZS5vbkNsb3NlZC5zdWJzY3JpYmUoKGU6IEFYQ29tcG9uZW50Q2xvc2VFdmVudCkgPT4ge1xuICAgICAgICAgIHRoaXMuY2xvc2UoKTtcbiAgICAgICAgfSk7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgb25JdGVtQ2xpY2soaXRlbTogQVhBY3Rpb25TaGVldEl0ZW0pIHtcbiAgICB0aGlzLmNsb3NlKCk7XG4gICAgaXRlbT8ub25DbGljaygpO1xuICB9XG5cbiAgY2xvc2UoKSB7XG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2Uoe1xuICAgICAgY29tcG9uZW50OiB0aGlzLl9jb21wb25lbnRSZWYsXG4gICAgICBodG1sRWxlbWVudDogdGhpcy5nZXRIb3N0RWxlbWVudCgpLFxuICAgIH0pO1xuICB9XG59XG4iLCI8YXgtaGVhZGVyICpuZ0lmPVwiZGF0YS5oZWFkZXJcIj5cbiAgPGF4LXByZWZpeD5cbiAgICA8YXgtdGl0bGU+e3sgZGF0YS50aXRsZSB9fTwvYXgtdGl0bGU+XG4gICAgPGF4LXN1Yi10aXRsZSAqbmdJZj1cImRhdGEuc3ViVGl0bGVcIj57eyBkYXRhLnN1YlRpdGxlIH19PC9heC1zdWItdGl0bGU+XG4gIDwvYXgtcHJlZml4PlxuICA8YXgtc3VmZml4PlxuICAgIDxheC1jbG9zZS1idXR0b24gKm5nSWY9XCJkYXRhLmNsb3NlQnV0dG9uXCI+PC9heC1jbG9zZS1idXR0b24+XG4gIDwvYXgtc3VmZml4PlxuPC9heC1oZWFkZXI+XG48bmctdGVtcGxhdGUgW2Nka1BvcnRhbE91dGxldF09XCJfc2VsZWN0ZWRQb3J0YWxcIiAoYXR0YWNoZWQpPVwiX2hhbmRsZUF0dGNoZWQoJGV2ZW50KVwiPjwvbmctdGVtcGxhdGU+XG48ZGl2IGNsYXNzPVwiYXgtYWN0aW9uLXNoZWV0LWl0ZW1zXCI+XG4gIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGl0ZW0gb2YgZGF0YS5pdGVtc1wiPlxuICAgIDxkaXYgY2xhc3M9XCJheC1hY3Rpb24tc2hlZXQtaXRlbSBheC17eyBpdGVtLmNvbG9yIH19XCIgW2NsYXNzLmF4LXN0YXRlLWRpc2FibGVkXT1cIml0ZW0uZGlzYWJsZWRcIiB0YWJpbmRleD1cIjBcIlxuICAgICAgKGNsaWNrKT1cIm9uSXRlbUNsaWNrKGl0ZW0pXCI+XG4gICAgICA8c3BhbiBjbGFzcz1cIml0ZW0taWNvblwiICpuZ0lmPVwiaXRlbS5pY29uXCIgW2NsYXNzXT1cIml0ZW0uaWNvblwiPjwvc3Bhbj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiaXRlbS10ZXh0XCI+e3sgaXRlbS50ZXh0IH19PC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PiJdfQ==
87
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLXNoZWV0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9hY3Rpb24tc2hlZXQvc3JjL2xpYi9hY3Rpb24tc2hlZXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL2FjdGlvbi1zaGVldC9zcmMvbGliL2FjdGlvbi1zaGVldC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQXlCLGVBQWUsRUFBRSxtQkFBbUIsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzlILE9BQU8sRUFFTCxlQUFlLEVBRWYsY0FBYyxHQUNmLE1BQU0scUJBQXFCLENBQUM7QUFDN0IsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBRVQsWUFBWSxFQUNaLE1BQU0sRUFFTixXQUFXLEVBQ1gsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxXQUFXLEVBQUUsU0FBUyxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7OztBQWU3RCxNQUFNLE9BQU8sc0JBQXVCLFNBQVEsZUFBZTtJQU16RDs7U0FFSztJQUNMLFlBRVksSUFBdUIsRUFDekIsU0FBMkM7UUFFbkQsS0FBSyxFQUFFLENBQUM7UUFIRSxTQUFJLEdBQUosSUFBSSxDQUFtQjtRQUN6QixjQUFTLEdBQVQsU0FBUyxDQUFrQztJQUdyRCxDQUFDO0lBRUQsUUFBUTtRQUNOLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUNqQixJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFO1lBQ3JCLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLFlBQVksV0FBVyxFQUFFO2dCQUM1QyxJQUFJLENBQUMsZUFBZSxHQUFHLElBQUksY0FBYyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsRUFBRSxFQUFFO29CQUNwRixTQUFTLEVBQUUsSUFBSSxDQUFDLElBQUk7b0JBQ3BCLEdBQUcsRUFBRSxJQUFJO2lCQUNWLENBQUMsQ0FBQztnQkFDSCxJQUFJLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRSxDQUFDO2FBQ3pCO2lCQUFNLElBQUksT0FBTyxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sS0FBSyxVQUFVLEVBQUU7Z0JBQ2xELElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxlQUFlLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztnQkFDOUQsSUFBSSxDQUFDLEdBQUcsQ0FBQyxZQUFZLEVBQUUsQ0FBQzthQUN6QjtTQUNGO0lBQ0gsQ0FBQztJQUdTLGdCQUFnQjtRQUN4QixNQUFNLG1CQUFtQixHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQyxPQUFPLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDM0UsSUFBSSxJQUFJLENBQUMsSUFBSSxDQUFDLFdBQVcsSUFBSSxtQkFBbUIsRUFBRTtZQUNoRCxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7U0FDZDtJQUNILENBQUM7SUFFRCxjQUFjLENBQUMsR0FBK0I7UUFDNUMsR0FBRyxHQUFHLEdBQXdCLENBQUM7UUFDL0IsSUFBSSxHQUFHLENBQUMsUUFBUSxFQUFFO1lBQ2hCLElBQUksQ0FBQyxhQUFhLEdBQUcsR0FBRyxDQUFDLFFBQVEsQ0FBQztZQUNsQyxNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxhQUFhLEVBQUUsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQzdDLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLGFBQWEsRUFBRSxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1lBQ3RELElBQUksR0FBRyxDQUFDLFFBQVEsQ0FBQyxRQUFRLEVBQUU7Z0JBQ3pCLEdBQUcsQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQXdCLEVBQUUsRUFBRTtvQkFDM0QsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO2dCQUNmLENBQUMsQ0FBQyxDQUFDO2FBQ0o7U0FDRjtJQUNILENBQUM7SUFFRCxXQUFXLENBQUMsSUFBdUI7UUFDakMsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ2IsSUFBSSxFQUFFLE9BQU8sRUFBRSxDQUFDO0lBQ2xCLENBQUM7SUFFRCxLQUFLO1FBQ0gsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUM7WUFDbkIsU0FBUyxFQUFFLElBQUksQ0FBQyxhQUFhO1lBQzdCLFdBQVcsRUFBRSxJQUFJLENBQUMsY0FBYyxFQUFFO1NBQ25DLENBQUMsQ0FBQztJQUNMLENBQUM7OEdBakVVLHNCQUFzQixrQkFVdkIsV0FBVztrR0FWVixzQkFBc0IsMkdBUHRCLENBQUM7Z0JBQ1YsT0FBTyxFQUFFLG1CQUFtQixFQUFFLFdBQVcsRUFBRSxzQkFBc0I7YUFDbEU7WUFDRDtnQkFDRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsV0FBVyxFQUFFLHNCQUFzQjthQUNuRSxDQUFDLGlEQy9CSiw2MUJBdUJBOzsyRkRVYSxzQkFBc0I7a0JBYmxDLFNBQVM7K0JBQ0UsaUJBQWlCLG1CQUdWLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksYUFDMUIsQ0FBQzs0QkFDVixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsV0FBVyx3QkFBd0I7eUJBQ2xFO3dCQUNEOzRCQUNFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLHdCQUF3Qjt5QkFDbkUsQ0FBQzs7MEJBWUMsTUFBTTsyQkFBQyxXQUFXO29FQXdCWCxnQkFBZ0I7c0JBRHpCLFlBQVk7dUJBQUMsZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhDb21wb25lbnRDbG9zZUV2ZW50LCBNWEJhc2VDb21wb25lbnQsIEFYQ2xvc2JhbGVDb21wb25lbnQsIEFYRm9jdXNhYmxlQ29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2NvbW1vbic7XG5pbXBvcnQge1xuICBDZGtQb3J0YWxPdXRsZXRBdHRhY2hlZFJlZixcbiAgQ29tcG9uZW50UG9ydGFsLFxuICBQb3J0YWwsXG4gIFRlbXBsYXRlUG9ydGFsLFxufSBmcm9tICdAYW5ndWxhci9jZGsvcG9ydGFsJztcbmltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIENvbXBvbmVudFJlZixcbiAgSG9zdExpc3RlbmVyLFxuICBJbmplY3QsXG4gIE9uSW5pdCxcbiAgVGVtcGxhdGVSZWYsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFYQWN0aW9uU2hlZXREYXRhLCBBWEFjdGlvblNoZWV0SXRlbSB9IGZyb20gJy4vYWN0aW9uLXNoZWV0LmNsYXNzJztcbmltcG9ydCB7IERJQUxPR19EQVRBLCBEaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9jZGsvZGlhbG9nJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXgtYWN0aW9uLXNoZWV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2FjdGlvbi1zaGVldC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2FjdGlvbi1zaGVldC5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJvdmlkZXJzOiBbe1xuICAgIHByb3ZpZGU6IEFYQ2xvc2JhbGVDb21wb25lbnQsIHVzZUV4aXN0aW5nOiBBWEFjdGlvblNoZWV0Q29tcG9uZW50LFxuICB9LFxuICB7XG4gICAgcHJvdmlkZTogQVhGb2N1c2FibGVDb21wb25lbnQsIHVzZUV4aXN0aW5nOiBBWEFjdGlvblNoZWV0Q29tcG9uZW50LFxuICB9XVxufSlcbmV4cG9ydCBjbGFzcyBBWEFjdGlvblNoZWV0Q29tcG9uZW50IGV4dGVuZHMgTVhCYXNlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uby1leHBsaWNpdC1hbnlcbiAgcHJvdGVjdGVkIF9zZWxlY3RlZFBvcnRhbDogUG9ydGFsPGFueT47XG5cbiAgcHJpdmF0ZSBfY29tcG9uZW50UmVmOiB1bmtub3duXG5cbiAgLyoqXG4gICAgICogIEBpZ25vcmVcbiAgICAgKi9cbiAgY29uc3RydWN0b3IoXG4gICAgQEluamVjdChESUFMT0dfREFUQSlcbiAgICBwcm90ZWN0ZWQgZGF0YTogQVhBY3Rpb25TaGVldERhdGEsXG4gICAgcHJpdmF0ZSBkaWFsb2dSZWY6IERpYWxvZ1JlZjxBWENvbXBvbmVudENsb3NlRXZlbnQ+LFxuICApIHtcbiAgICBzdXBlcigpO1xuICB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgc3VwZXIubmdPbkluaXQoKTtcbiAgICBpZiAodGhpcy5kYXRhLmNvbnRlbnQpIHtcbiAgICAgIGlmICh0aGlzLmRhdGEuY29udGVudCBpbnN0YW5jZW9mIFRlbXBsYXRlUmVmKSB7XG4gICAgICAgIHRoaXMuX3NlbGVjdGVkUG9ydGFsID0gbmV3IFRlbXBsYXRlUG9ydGFsKHRoaXMuZGF0YS5jb250ZW50LCB0aGlzLmdldFZpZXdDb250YWluZXIoKSwge1xuICAgICAgICAgICRpbXBsaWNpdDogdGhpcy5kYXRhLFxuICAgICAgICAgIHJlZjogdGhpcyxcbiAgICAgICAgfSk7XG4gICAgICAgIHRoaXMuY2RyLm1hcmtGb3JDaGVjaygpO1xuICAgICAgfSBlbHNlIGlmICh0eXBlb2YgdGhpcy5kYXRhLmNvbnRlbnQgPT09ICdmdW5jdGlvbicpIHtcbiAgICAgICAgdGhpcy5fc2VsZWN0ZWRQb3J0YWwgPSBuZXcgQ29tcG9uZW50UG9ydGFsKHRoaXMuZGF0YS5jb250ZW50KTtcbiAgICAgICAgdGhpcy5jZHIubWFya0ZvckNoZWNrKCk7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgQEhvc3RMaXN0ZW5lcigna2V5ZG93bi5lc2NhcGUnKVxuICBwcm90ZWN0ZWQgb25LZXlkb3duSGFuZGxlcigpIHtcbiAgICBjb25zdCBmb2N1c2VkT3JIYXNGb2N1c2VkID0gdGhpcy5nZXRIb3N0RWxlbWVudCgpLm1hdGNoZXMoJzpmb2N1cy13aXRoaW4nKTtcbiAgICBpZiAodGhpcy5kYXRhLmNsb3NlQnV0dG9uICYmIGZvY3VzZWRPckhhc0ZvY3VzZWQpIHtcbiAgICAgIHRoaXMuY2xvc2UoKTtcbiAgICB9XG4gIH1cblxuICBfaGFuZGxlQXR0Y2hlZChyZWY6IENka1BvcnRhbE91dGxldEF0dGFjaGVkUmVmKSB7XG4gICAgcmVmID0gcmVmIGFzIENvbXBvbmVudFJlZjxhbnk+O1xuICAgIGlmIChyZWYuaW5zdGFuY2UpIHtcbiAgICAgIHRoaXMuX2NvbXBvbmVudFJlZiA9IHJlZi5pbnN0YW5jZTtcbiAgICAgIE9iamVjdC5hc3NpZ24odGhpcy5fY29tcG9uZW50UmVmLCB0aGlzLmRhdGEpO1xuICAgICAgT2JqZWN0LmFzc2lnbih0aGlzLl9jb21wb25lbnRSZWYsIHsgX2lzUG9wdXA6IHRydWUgfSk7XG4gICAgICBpZiAocmVmLmluc3RhbmNlLm9uQ2xvc2VkKSB7XG4gICAgICAgIHJlZi5pbnN0YW5jZS5vbkNsb3NlZC5zdWJzY3JpYmUoKGU6IEFYQ29tcG9uZW50Q2xvc2VFdmVudCkgPT4ge1xuICAgICAgICAgIHRoaXMuY2xvc2UoKTtcbiAgICAgICAgfSk7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgb25JdGVtQ2xpY2soaXRlbTogQVhBY3Rpb25TaGVldEl0ZW0pIHtcbiAgICB0aGlzLmNsb3NlKCk7XG4gICAgaXRlbT8ub25DbGljaygpO1xuICB9XG5cbiAgY2xvc2UoKSB7XG4gICAgdGhpcy5kaWFsb2dSZWYuY2xvc2Uoe1xuICAgICAgY29tcG9uZW50OiB0aGlzLl9jb21wb25lbnRSZWYsXG4gICAgICBodG1sRWxlbWVudDogdGhpcy5nZXRIb3N0RWxlbWVudCgpLFxuICAgIH0pO1xuICB9XG59XG4iLCI8YXgtaGVhZGVyICpuZ0lmPVwiZGF0YS5oZWFkZXJcIj5cbiAgPGF4LXByZWZpeD5cbiAgICA8YXgtdGl0bGU+e3sgZGF0YS50aXRsZSB9fTwvYXgtdGl0bGU+XG4gICAgPGF4LXN1Yi10aXRsZSAqbmdJZj1cImRhdGEuc3ViVGl0bGVcIj57eyBkYXRhLnN1YlRpdGxlIH19PC9heC1zdWItdGl0bGU+XG4gIDwvYXgtcHJlZml4PlxuICA8YXgtc3VmZml4PlxuICAgIDxheC1jbG9zZS1idXR0b24gKm5nSWY9XCJkYXRhLmNsb3NlQnV0dG9uXCI+PC9heC1jbG9zZS1idXR0b24+XG4gIDwvYXgtc3VmZml4PlxuPC9heC1oZWFkZXI+XG48bmctdGVtcGxhdGUgW2Nka1BvcnRhbE91dGxldF09XCJfc2VsZWN0ZWRQb3J0YWxcIiAoYXR0YWNoZWQpPVwiX2hhbmRsZUF0dGNoZWQoJGV2ZW50KVwiPjwvbmctdGVtcGxhdGU+XG48ZGl2IGNsYXNzPVwiYXgtYWN0aW9uLXNoZWV0LWl0ZW1zXCI+XG4gIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGl0ZW0gb2YgZGF0YS5pdGVtc1wiPlxuICAgIDxkaXZcbiAgICAgIGNsYXNzPVwiYXgtYWN0aW9uLXNoZWV0LWl0ZW0gYXgte3sgaXRlbS5jb2xvciB9fVwiXG4gICAgICBbY2xhc3MuYXgtc3RhdGUtZGlzYWJsZWRdPVwiaXRlbS5kaXNhYmxlZFwiXG4gICAgICB0YWJpbmRleD1cIjBcIlxuICAgICAgKGNsaWNrKT1cIm9uSXRlbUNsaWNrKGl0ZW0pXCJcbiAgICA+XG4gICAgICA8c3BhbiBjbGFzcz1cIml0ZW0taWNvblwiICpuZ0lmPVwiaXRlbS5pY29uXCIgW2NsYXNzXT1cIml0ZW0uaWNvblwiPjwvc3Bhbj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiaXRlbS10ZXh0XCI+e3sgaXRlbS50ZXh0IH19PC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuIl19