@siemens/ix-angular 0.0.0-pr-1522-20241022123832 → 0.0.0-pr-1724-20250228145306

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 (34) hide show
  1. package/components.d.ts +220 -25
  2. package/control-value-accessors/boolean-value-accessor.d.ts +10 -0
  3. package/control-value-accessors/date-value-accessor.d.ts +9 -0
  4. package/control-value-accessors/index.d.ts +5 -0
  5. package/control-value-accessors/radio-value-accessor.d.ts +10 -0
  6. package/control-value-accessors/select-value-accessor.d.ts +9 -0
  7. package/control-value-accessors/text-value-accessor.d.ts +9 -0
  8. package/control-value-accessors/value-accessor.d.ts +30 -0
  9. package/declare-components.d.ts +1 -1
  10. package/esm2020/app-initialize.mjs +2 -2
  11. package/esm2020/components.mjs +342 -77
  12. package/esm2020/control-value-accessors/boolean-value-accessor.mjs +49 -0
  13. package/esm2020/control-value-accessors/date-value-accessor.mjs +45 -0
  14. package/esm2020/control-value-accessors/index.mjs +14 -0
  15. package/esm2020/control-value-accessors/radio-value-accessor.mjs +51 -0
  16. package/esm2020/control-value-accessors/select-value-accessor.mjs +45 -0
  17. package/esm2020/control-value-accessors/text-value-accessor.mjs +48 -0
  18. package/esm2020/control-value-accessors/value-accessor.mjs +152 -0
  19. package/esm2020/declare-components.mjs +13 -3
  20. package/esm2020/index.mjs +2 -3
  21. package/esm2020/module.mjs +22 -10
  22. package/fesm2015/siemens-ix-angular.mjs +735 -194
  23. package/fesm2015/siemens-ix-angular.mjs.map +1 -1
  24. package/fesm2020/siemens-ix-angular.mjs +741 -194
  25. package/fesm2020/siemens-ix-angular.mjs.map +1 -1
  26. package/index.d.ts +1 -2
  27. package/module.d.ts +6 -3
  28. package/package.json +2 -2
  29. package/boolean-value-accessor.d.ts +0 -9
  30. package/esm2020/boolean-value-accessor.mjs +0 -38
  31. package/esm2020/select-value-accessor.mjs +0 -35
  32. package/esm2020/value-accessor.mjs +0 -40
  33. package/select-value-accessor.d.ts +0 -8
  34. package/value-accessor.d.ts +0 -18
package/components.d.ts CHANGED
@@ -3,6 +3,7 @@ import { Components } from '@siemens/ix';
3
3
  import type { InputState as IIxCategoryFilterInputState } from '@siemens/ix';
4
4
  import type { FilterState as IIxCategoryFilterFilterState } from '@siemens/ix';
5
5
  import type { DateRangeChangeEvent as IIxDateDropdownDateRangeChangeEvent } from '@siemens/ix';
6
+ import type { DateInputValidityState as IIxDateInputDateInputValidityState } from '@siemens/ix';
6
7
  import type { DateChangeEvent as IIxDatePickerDateChangeEvent } from '@siemens/ix';
7
8
  import type { DateTimeDateChangeEvent as IIxDatetimePickerDateTimeDateChangeEvent } from '@siemens/ix';
8
9
  import type { DateTimeSelectEvent as IIxDatetimePickerDateTimeSelectEvent } from '@siemens/ix';
@@ -45,6 +46,10 @@ export declare interface IxApplicationHeader extends Components.IxApplicationHea
45
46
  * Event emitted when the menu toggle button is clicked @since 2.5.0
46
47
  */
47
48
  menuToggle: EventEmitter<CustomEvent<boolean>>;
49
+ /**
50
+ * Event emitted when the app switch button is clicked @since 3.0.0
51
+ */
52
+ openAppSwitch: EventEmitter<CustomEvent<void>>;
48
53
  }
49
54
  export declare class IxAvatar {
50
55
  protected z: NgZone;
@@ -196,13 +201,43 @@ export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
196
201
  * Event dispatched whenever the filter state changes.
197
202
  */
198
203
  filterChanged: EventEmitter<CustomEvent<IIxCategoryFilterFilterState>>;
204
+ /**
205
+ * Event dispatched whenever the filter gets cleared.
206
+ */
207
+ filterCleared: EventEmitter<CustomEvent<void>>;
208
+ }
209
+ export declare class IxCheckbox {
210
+ protected z: NgZone;
211
+ protected el: HTMLElement;
212
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
213
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckbox, never>;
214
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckbox, "ix-checkbox", never, { "checked": "checked"; "disabled": "disabled"; "indeterminate": "indeterminate"; "label": "label"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"]>;
215
+ }
216
+ export declare interface IxCheckbox extends Components.IxCheckbox {
217
+ /**
218
+ * Event emitted when the checked state of the checkbox changes
219
+ */
220
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
221
+ /**
222
+ * Event emitted when the value of the checkbox changes
223
+ */
224
+ valueChange: EventEmitter<CustomEvent<string>>;
225
+ }
226
+ export declare class IxCheckboxGroup {
227
+ protected z: NgZone;
228
+ protected el: HTMLElement;
229
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
230
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckboxGroup, never>;
231
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckboxGroup, "ix-checkbox-group", never, { "direction": "direction"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
232
+ }
233
+ export declare interface IxCheckboxGroup extends Components.IxCheckboxGroup {
199
234
  }
200
235
  export declare class IxChip {
201
236
  protected z: NgZone;
202
237
  protected el: HTMLElement;
203
238
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
204
239
  static ɵfac: i0.ɵɵFactoryDeclaration<IxChip, never>;
205
- static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": "active"; "background": "background"; "chipColor": "chipColor"; "closable": "closable"; "color": "color"; "icon": "icon"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"]>;
240
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": "active"; "background": "background"; "chipColor": "chipColor"; "closable": "closable"; "color": "color"; "icon": "icon"; "outline": "outline"; "tooltipText": "tooltipText"; "variant": "variant"; }, {}, never, ["*"]>;
206
241
  }
207
242
  export declare interface IxChip extends Components.IxChip {
208
243
  /**
@@ -241,12 +276,21 @@ export declare interface IxContentHeader extends Components.IxContentHeader {
241
276
  */
242
277
  backButtonClick: EventEmitter<CustomEvent<void>>;
243
278
  }
279
+ export declare class IxCustomField {
280
+ protected z: NgZone;
281
+ protected el: HTMLElement;
282
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
283
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxCustomField, never>;
284
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCustomField, "ix-custom-field", never, { "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
285
+ }
286
+ export declare interface IxCustomField extends Components.IxCustomField {
287
+ }
244
288
  export declare class IxDateDropdown {
245
289
  protected z: NgZone;
246
290
  protected el: HTMLElement;
247
291
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
248
292
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDateDropdown, never>;
249
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": "customRangeAllowed"; "dateRangeId": "dateRangeId"; "dateRangeOptions": "dateRangeOptions"; "disabled": "disabled"; "format": "format"; "from": "from"; "i18nCustomItem": "i18nCustomItem"; "i18nDone": "i18nDone"; "i18nNoRange": "i18nNoRange"; "maxDate": "maxDate"; "minDate": "minDate"; "range": "range"; "to": "to"; }, {}, never, ["*"]>;
293
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": "customRangeAllowed"; "dateRangeId": "dateRangeId"; "dateRangeOptions": "dateRangeOptions"; "disabled": "disabled"; "format": "format"; "from": "from"; "ghost": "ghost"; "i18nCustomItem": "i18nCustomItem"; "i18nDone": "i18nDone"; "i18nNoRange": "i18nNoRange"; "loading": "loading"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "outline": "outline"; "range": "range"; "to": "to"; "variant": "variant"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
250
294
  }
251
295
  export declare interface IxDateDropdown extends Components.IxDateDropdown {
252
296
  /**
@@ -257,6 +301,23 @@ export declare interface IxDateDropdown extends Components.IxDateDropdown {
257
301
  */
258
302
  dateRangeChange: EventEmitter<CustomEvent<IIxDateDropdownDateRangeChangeEvent>>;
259
303
  }
304
+ export declare class IxDateInput {
305
+ protected z: NgZone;
306
+ protected el: HTMLElement;
307
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
308
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxDateInput, never>;
309
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDateInput, "ix-date-input", never, { "disabled": "disabled"; "format": "format"; "helperText": "helperText"; "i18nErrorDateUnparsable": "i18nErrorDateUnparsable"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "locale": "locale"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
310
+ }
311
+ export declare interface IxDateInput extends Components.IxDateInput {
312
+ /**
313
+ * Input change event.
314
+ */
315
+ valueChange: EventEmitter<CustomEvent<string>>;
316
+ /**
317
+ * Validation state change event.
318
+ */
319
+ validityStateChange: EventEmitter<CustomEvent<IIxDateInputDateInputValidityState>>;
320
+ }
260
321
  export declare class IxDatePicker {
261
322
  protected z: NgZone;
262
323
  protected el: HTMLElement;
@@ -426,7 +487,7 @@ export declare class IxExpandingSearch {
426
487
  protected el: HTMLElement;
427
488
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
428
489
  static ɵfac: i0.ɵɵFactoryDeclaration<IxExpandingSearch, never>;
429
- static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "icon": "icon"; "placeholder": "placeholder"; "value": "value"; }, {}, never, ["*"]>;
490
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "ghost": "ghost"; "icon": "icon"; "outline": "outline"; "placeholder": "placeholder"; "value": "value"; "variant": "variant"; }, {}, never, ["*"]>;
430
491
  }
431
492
  export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
432
493
  /**
@@ -434,6 +495,15 @@ export declare interface IxExpandingSearch extends Components.IxExpandingSearch
434
495
  */
435
496
  valueChange: EventEmitter<CustomEvent<string>>;
436
497
  }
498
+ export declare class IxFieldLabel {
499
+ protected z: NgZone;
500
+ protected el: HTMLElement;
501
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
502
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxFieldLabel, never>;
503
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFieldLabel, "ix-field-label", never, { "htmlFor": "htmlFor"; "required": "required"; }, {}, never, ["*"]>;
504
+ }
505
+ export declare interface IxFieldLabel extends Components.IxFieldLabel {
506
+ }
437
507
  export declare class IxFilterChip {
438
508
  protected z: NgZone;
439
509
  protected el: HTMLElement;
@@ -452,9 +522,13 @@ export declare class IxFlipTile {
452
522
  protected el: HTMLElement;
453
523
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
454
524
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
455
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": "height"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
525
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": "height"; "index": "index"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
456
526
  }
457
527
  export declare interface IxFlipTile extends Components.IxFlipTile {
528
+ /**
529
+ * Event emitted when the index changes @since 3.0.0
530
+ */
531
+ toggle: EventEmitter<CustomEvent<number>>;
458
532
  }
459
533
  export declare class IxFlipTileContent {
460
534
  protected z: NgZone;
@@ -465,15 +539,6 @@ export declare class IxFlipTileContent {
465
539
  }
466
540
  export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
467
541
  }
468
- export declare class IxFormField {
469
- protected z: NgZone;
470
- protected el: HTMLElement;
471
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
472
- static ɵfac: i0.ɵɵFactoryDeclaration<IxFormField, never>;
473
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFormField, "ix-form-field", never, { "label": "label"; }, {}, never, ["*"]>;
474
- }
475
- export declare interface IxFormField extends Components.IxFormField {
476
- }
477
542
  export declare class IxGroup {
478
543
  protected z: NgZone;
479
544
  protected el: HTMLElement;
@@ -517,6 +582,15 @@ export declare interface IxGroupItem extends Components.IxGroupItem {
517
582
  */
518
583
  selectedChanged: EventEmitter<CustomEvent<HTMLIxGroupItemElement>>;
519
584
  }
585
+ export declare class IxHelperText {
586
+ protected z: NgZone;
587
+ protected el: HTMLElement;
588
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
589
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxHelperText, never>;
590
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxHelperText, "ix-helper-text", never, { "helperText": "helperText"; "htmlFor": "htmlFor"; "infoText": "infoText"; "invalidText": "invalidText"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
591
+ }
592
+ export declare interface IxHelperText extends Components.IxHelperText {
593
+ }
520
594
  export declare class IxIconButton {
521
595
  protected z: NgZone;
522
596
  protected el: HTMLElement;
@@ -539,6 +613,27 @@ export declare interface IxIconToggleButton extends Components.IxIconToggleButto
539
613
  */
540
614
  pressedChange: EventEmitter<CustomEvent<boolean>>;
541
615
  }
616
+ export declare class IxInput {
617
+ protected z: NgZone;
618
+ protected el: HTMLElement;
619
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
620
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxInput, never>;
621
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxInput, "ix-input", never, { "allowedCharactersPattern": "allowedCharactersPattern"; "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "type": "type"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
622
+ }
623
+ export declare interface IxInput extends Components.IxInput {
624
+ /**
625
+ * Event emitted when the value of the text field changes.
626
+ */
627
+ valueChange: EventEmitter<CustomEvent<string>>;
628
+ /**
629
+ * Event emitted when the validity state of the text field changes.
630
+ */
631
+ validityStateChange: EventEmitter<CustomEvent<ValidityState>>;
632
+ /**
633
+ * Event emitted when the text field loses focus.
634
+ */
635
+ ixBlur: EventEmitter<CustomEvent<void>>;
636
+ }
542
637
  export declare class IxInputGroup {
543
638
  protected z: NgZone;
544
639
  protected el: HTMLElement;
@@ -575,6 +670,15 @@ export declare class IxKpi {
575
670
  }
576
671
  export declare interface IxKpi extends Components.IxKpi {
577
672
  }
673
+ export declare class IxLayoutAuto {
674
+ protected z: NgZone;
675
+ protected el: HTMLElement;
676
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
677
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutAuto, never>;
678
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutAuto, "ix-layout-auto", never, { "layout": "layout"; }, {}, never, ["*"]>;
679
+ }
680
+ export declare interface IxLayoutAuto extends Components.IxLayoutAuto {
681
+ }
578
682
  export declare class IxLayoutGrid {
579
683
  protected z: NgZone;
580
684
  protected el: HTMLElement;
@@ -639,6 +743,18 @@ export declare interface IxMenu extends Components.IxMenu {
639
743
  * Map Sidebar expanded
640
744
  */
641
745
  mapExpandChange: EventEmitter<CustomEvent<boolean>>;
746
+ /**
747
+ * Event emitted when the app switch button is clicked @since 3.0.0
748
+ */
749
+ openAppSwitch: EventEmitter<CustomEvent<void>>;
750
+ /**
751
+ * Event emitted when the settings button is clicked @since 3.0.0
752
+ */
753
+ openSettings: EventEmitter<CustomEvent<void>>;
754
+ /**
755
+ * Event emitted when the about button is clicked @since 3.0.0
756
+ */
757
+ openAbout: EventEmitter<CustomEvent<void>>;
642
758
  }
643
759
  export declare class IxMenuAbout {
644
760
  protected z: NgZone;
@@ -648,6 +764,10 @@ export declare class IxMenuAbout {
648
764
  static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"]>;
649
765
  }
650
766
  export declare interface IxMenuAbout extends Components.IxMenuAbout {
767
+ /**
768
+ * Active tab changed @since 3.0.0
769
+ */
770
+ tabChange: EventEmitter<CustomEvent<string>>;
651
771
  /**
652
772
  * About and Legal closed
653
773
  */
@@ -735,6 +855,10 @@ export declare class IxMenuSettings {
735
855
  static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"]>;
736
856
  }
737
857
  export declare interface IxMenuSettings extends Components.IxMenuSettings {
858
+ /**
859
+ * Active tab changed @since 3.0.0
860
+ */
861
+ tabChange: EventEmitter<CustomEvent<string>>;
738
862
  /**
739
863
  * Popover closed
740
864
  */
@@ -765,6 +889,10 @@ export declare interface IxMessageBar extends Components.IxMessageBar {
765
889
  * An event emitted when the close button is clicked
766
890
  */
767
891
  closedChange: EventEmitter<CustomEvent<any>>;
892
+ /**
893
+ * An event emitted when the close animation is completed
894
+ */
895
+ closeAnimationCompleted: EventEmitter<CustomEvent<any>>;
768
896
  }
769
897
  export declare class IxModal {
770
898
  protected z: NgZone;
@@ -792,15 +920,6 @@ export declare class IxModalContent {
792
920
  }
793
921
  export declare interface IxModalContent extends Components.IxModalContent {
794
922
  }
795
- export declare class IxModalExample {
796
- protected z: NgZone;
797
- protected el: HTMLElement;
798
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
799
- static ɵfac: i0.ɵɵFactoryDeclaration<IxModalExample, never>;
800
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalExample, "ix-modal-example", never, {}, {}, never, ["*"]>;
801
- }
802
- export declare interface IxModalExample extends Components.IxModalExample {
803
- }
804
923
  export declare class IxModalFooter {
805
924
  protected z: NgZone;
806
925
  protected el: HTMLElement;
@@ -824,6 +943,27 @@ export declare interface IxModalHeader extends Components.IxModalHeader {
824
943
  */
825
944
  closeClick: EventEmitter<CustomEvent<MouseEvent>>;
826
945
  }
946
+ export declare class IxNumberInput {
947
+ protected z: NgZone;
948
+ protected el: HTMLElement;
949
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
950
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxNumberInput, never>;
951
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxNumberInput, "ix-number-input", never, { "allowedCharactersPattern": "allowedCharactersPattern"; "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "max": "max"; "min": "min"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showStepperButtons": "showStepperButtons"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
952
+ }
953
+ export declare interface IxNumberInput extends Components.IxNumberInput {
954
+ /**
955
+ * Event emitted when the value of the input field changes
956
+ */
957
+ valueChange: EventEmitter<CustomEvent<number>>;
958
+ /**
959
+ * Event emitted when the validity state of the input field changes
960
+ */
961
+ validityStateChange: EventEmitter<CustomEvent<ValidityState>>;
962
+ /**
963
+ * Event emitted when the input field loses focus
964
+ */
965
+ ixBlur: EventEmitter<CustomEvent<void>>;
966
+ }
827
967
  export declare class IxPagination {
828
968
  protected z: NgZone;
829
969
  protected el: HTMLElement;
@@ -876,7 +1016,7 @@ export declare class IxPill {
876
1016
  protected el: HTMLElement;
877
1017
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
878
1018
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPill, never>;
879
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": "alignLeft"; "background": "background"; "color": "color"; "icon": "icon"; "outline": "outline"; "pillColor": "pillColor"; "variant": "variant"; }, {}, never, ["*"]>;
1019
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": "alignLeft"; "background": "background"; "color": "color"; "icon": "icon"; "outline": "outline"; "pillColor": "pillColor"; "tooltipText": "tooltipText"; "variant": "variant"; }, {}, never, ["*"]>;
880
1020
  }
881
1021
  export declare interface IxPill extends Components.IxPill {
882
1022
  }
@@ -889,6 +1029,36 @@ export declare class IxPushCard {
889
1029
  }
890
1030
  export declare interface IxPushCard extends Components.IxPushCard {
891
1031
  }
1032
+ export declare class IxRadio {
1033
+ protected z: NgZone;
1034
+ protected el: HTMLElement;
1035
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1036
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxRadio, never>;
1037
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxRadio, "ix-radio", never, { "checked": "checked"; "disabled": "disabled"; "label": "label"; "name": "name"; "value": "value"; }, {}, never, ["*"]>;
1038
+ }
1039
+ export declare interface IxRadio extends Components.IxRadio {
1040
+ /**
1041
+ * Event emitted when the checked state of the radio changes
1042
+ */
1043
+ checkedChange: EventEmitter<CustomEvent<boolean>>;
1044
+ /**
1045
+ * Event emitted when the value of the radio changes
1046
+ */
1047
+ valueChange: EventEmitter<CustomEvent<string>>;
1048
+ }
1049
+ export declare class IxRadioGroup {
1050
+ protected z: NgZone;
1051
+ protected el: HTMLElement;
1052
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1053
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxRadioGroup, never>;
1054
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxRadioGroup, "ix-radio-group", never, { "direction": "direction"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1055
+ }
1056
+ export declare interface IxRadioGroup extends Components.IxRadioGroup {
1057
+ /**
1058
+ * Event emitted when the value of the radiobutton group changes
1059
+ */
1060
+ valueChange: EventEmitter<CustomEvent<string>>;
1061
+ }
892
1062
  export declare class IxRow {
893
1063
  protected z: NgZone;
894
1064
  protected el: HTMLElement;
@@ -903,7 +1073,7 @@ export declare class IxSelect {
903
1073
  protected el: HTMLElement;
904
1074
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
905
1075
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
906
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "mode": "mode"; "readonly": "readonly"; "selectedIndices": "selectedIndices"; "value": "value"; }, {}, never, ["*"]>;
1076
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "dropdownMaxWidth": "dropdownMaxWidth"; "dropdownWidth": "dropdownWidth"; "editable": "editable"; "helperText": "helperText"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "mode": "mode"; "name": "name"; "readonly": "readonly"; "required": "required"; "selectedIndices": "selectedIndices"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
907
1077
  }
908
1078
  export declare interface IxSelect extends Components.IxSelect {
909
1079
  /**
@@ -922,6 +1092,10 @@ export declare interface IxSelect extends Components.IxSelect {
922
1092
  * Item added to selection
923
1093
  */
924
1094
  addItem: EventEmitter<CustomEvent<string>>;
1095
+ /**
1096
+ * Blur input
1097
+ */
1098
+ ixBlur: EventEmitter<CustomEvent<void>>;
925
1099
  }
926
1100
  export declare class IxSelectItem {
927
1101
  protected z: NgZone;
@@ -1007,6 +1181,27 @@ export declare interface IxTabs extends Components.IxTabs {
1007
1181
  */
1008
1182
  selectedChange: EventEmitter<CustomEvent<number>>;
1009
1183
  }
1184
+ export declare class IxTextarea {
1185
+ protected z: NgZone;
1186
+ protected el: HTMLElement;
1187
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1188
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxTextarea, never>;
1189
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTextarea, "ix-textarea", never, { "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "resizeBehavior": "resizeBehavior"; "showTextAsTooltip": "showTextAsTooltip"; "textareaCols": "textareaCols"; "textareaHeight": "textareaHeight"; "textareaRows": "textareaRows"; "textareaWidth": "textareaWidth"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1190
+ }
1191
+ export declare interface IxTextarea extends Components.IxTextarea {
1192
+ /**
1193
+ * Event emitted when the value of the textarea field changes.
1194
+ */
1195
+ valueChange: EventEmitter<CustomEvent<string>>;
1196
+ /**
1197
+ * Event emitted when the validity state of the textarea field changes.
1198
+ */
1199
+ validityStateChange: EventEmitter<CustomEvent<ValidityState>>;
1200
+ /**
1201
+ * Event emitted when the textarea field loses focus.
1202
+ */
1203
+ ixBlur: EventEmitter<CustomEvent<void>>;
1204
+ }
1010
1205
  export declare class IxTile {
1011
1206
  protected z: NgZone;
1012
1207
  protected el: HTMLElement;
@@ -1064,7 +1259,7 @@ export declare class IxToggle {
1064
1259
  protected el: HTMLElement;
1065
1260
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1066
1261
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToggle, never>;
1067
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": "checked"; "disabled": "disabled"; "hideText": "hideText"; "indeterminate": "indeterminate"; "textIndeterminate": "textIndeterminate"; "textOff": "textOff"; "textOn": "textOn"; }, {}, never, ["*"]>;
1262
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": "checked"; "disabled": "disabled"; "hideText": "hideText"; "indeterminate": "indeterminate"; "name": "name"; "required": "required"; "textIndeterminate": "textIndeterminate"; "textOff": "textOff"; "textOn": "textOn"; "value": "value"; }, {}, never, ["*"]>;
1068
1263
  }
1069
1264
  export declare interface IxToggle extends Components.IxToggle {
1070
1265
  /**
@@ -0,0 +1,10 @@
1
+ import { ElementRef, Injector } from '@angular/core';
2
+ import { ValueAccessor } from './value-accessor';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BooleanValueAccessorDirective extends ValueAccessor {
5
+ constructor(injector: Injector, el: ElementRef);
6
+ writeValue(value: boolean): void;
7
+ handleChangeEvent(el: any): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessorDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessorDirective, "ix-checkbox,ix-toggle", never, {}, {}, never>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { ElementRef, Injector } from '@angular/core';
2
+ import { ValueAccessor } from './value-accessor';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DateValueAccessorDirective extends ValueAccessor {
5
+ constructor(injector: Injector, el: ElementRef);
6
+ handleInputEvent(el: any): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateValueAccessorDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DateValueAccessorDirective, "ix-date-input", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,5 @@
1
+ export * from './boolean-value-accessor';
2
+ export * from './radio-value-accessor';
3
+ export * from './select-value-accessor';
4
+ export * from './text-value-accessor';
5
+ export * from './date-value-accessor';
@@ -0,0 +1,10 @@
1
+ import { ElementRef, Injector } from '@angular/core';
2
+ import { ValueAccessor } from './value-accessor';
3
+ import * as i0 from "@angular/core";
4
+ export declare class RadioValueAccessorDirective extends ValueAccessor {
5
+ constructor(injector: Injector, el: ElementRef);
6
+ writeValue(value: string): void;
7
+ handleChangeEvent(el: any): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioValueAccessorDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RadioValueAccessorDirective, "ix-radio", never, {}, {}, never>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { ElementRef, Injector } from '@angular/core';
2
+ import { ValueAccessor } from './value-accessor';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SelectValueAccessorDirective extends ValueAccessor {
5
+ constructor(injector: Injector, el: ElementRef);
6
+ handleChangeEvent(el: any): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectValueAccessorDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectValueAccessorDirective, "ix-select", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { ElementRef, Injector } from '@angular/core';
2
+ import { ValueAccessor } from './value-accessor';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TextValueAccessorDirective extends ValueAccessor {
5
+ constructor(injector: Injector, el: ElementRef);
6
+ handleInputEvent(el: any): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextValueAccessorDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TextValueAccessorDirective, "ix-input,ix-number-input,ix-textarea", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,30 @@
1
+ import { AfterViewInit, ElementRef, Injector, OnDestroy } from '@angular/core';
2
+ import { ControlValueAccessor, NgControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ValueAccessor implements ControlValueAccessor, AfterViewInit, OnDestroy {
5
+ protected injector: Injector;
6
+ protected elementRef: ElementRef;
7
+ private readonly checkRequiredValidator;
8
+ static readonly ANGULAR_CLASS_PREFIX = "ng-";
9
+ private onChange;
10
+ private onTouched;
11
+ protected lastValue: any;
12
+ private statusChanges?;
13
+ suppressClassMapping: boolean;
14
+ constructor(injector: Injector, elementRef: ElementRef, checkRequiredValidator?: boolean);
15
+ writeValue(value: any): void;
16
+ handleValueChange(el: HTMLElement, value: any): void;
17
+ _handleBlurEvent(el: any): void;
18
+ registerOnChange(fn: (value: any) => void): void;
19
+ registerOnTouched(fn: () => void): void;
20
+ setDisabledState(isDisabled: boolean): void;
21
+ ngOnDestroy(): void;
22
+ ngAfterViewInit(): void;
23
+ getAssignedNgControl(): NgControl | null;
24
+ setClasses(): void;
25
+ detourFormControlMethods(ngControl: NgControl, elementRef: ElementRef): void;
26
+ mapNgToIxClassNames(element: ElementRef): Promise<void>;
27
+ getClasses(element: HTMLElement): string[];
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValueAccessor, never>;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessor, never, never, { "suppressClassMapping": "suppressClassMapping"; }, {}, never>;
30
+ }
@@ -1,2 +1,2 @@
1
1
  import * as d from './components';
2
- export declare const DIRECTIVES: (typeof d.IxActionCard | typeof d.IxApplication | typeof d.IxApplicationHeader | typeof d.IxAvatar | typeof d.IxBasicNavigation | typeof d.IxBlind | typeof d.IxBreadcrumb | typeof d.IxBreadcrumbItem | typeof d.IxButton | typeof d.IxCard | typeof d.IxCardAccordion | typeof d.IxCardContent | typeof d.IxCardList | typeof d.IxCardTitle | typeof d.IxCategoryFilter | typeof d.IxChip | typeof d.IxCol | typeof d.IxContent | typeof d.IxContentHeader | typeof d.IxDateDropdown | typeof d.IxDatePicker | typeof d.IxDatetimePicker | typeof d.IxDivider | typeof d.IxDrawer | typeof d.IxDropdown | typeof d.IxDropdownButton | typeof d.IxDropdownHeader | typeof d.IxDropdownItem | typeof d.IxDropdownQuickActions | typeof d.IxEmptyState | typeof d.IxEventList | typeof d.IxEventListItem | typeof d.IxExpandingSearch | typeof d.IxFilterChip | typeof d.IxFlipTile | typeof d.IxFlipTileContent | typeof d.IxFormField | typeof d.IxGroup | typeof d.IxGroupContextMenu | typeof d.IxGroupItem | typeof d.IxIconButton | typeof d.IxIconToggleButton | typeof d.IxInputGroup | typeof d.IxKeyValue | typeof d.IxKeyValueList | typeof d.IxKpi | typeof d.IxLayoutGrid | typeof d.IxLinkButton | typeof d.IxMapNavigation | typeof d.IxMapNavigationOverlay | typeof d.IxMenu | typeof d.IxMenuAbout | typeof d.IxMenuAboutItem | typeof d.IxMenuAboutNews | typeof d.IxMenuAvatar | typeof d.IxMenuAvatarItem | typeof d.IxMenuCategory | typeof d.IxMenuItem | typeof d.IxMenuSettings | typeof d.IxMenuSettingsItem | typeof d.IxMessageBar | typeof d.IxModal | typeof d.IxModalContent | typeof d.IxModalExample | typeof d.IxModalFooter | typeof d.IxModalHeader | typeof d.IxPagination | typeof d.IxPane | typeof d.IxPaneLayout | typeof d.IxPill | typeof d.IxPushCard | typeof d.IxRow | typeof d.IxSelect | typeof d.IxSelectItem | typeof d.IxSlider | typeof d.IxSpinner | typeof d.IxSplitButton | typeof d.IxSplitButtonItem | typeof d.IxTabItem | typeof d.IxTabs | typeof d.IxTile | typeof d.IxTimePicker | typeof d.IxToast | typeof d.IxToastContainer | typeof d.IxToggle | typeof d.IxToggleButton | typeof d.IxTooltip | typeof d.IxTreeItem | typeof d.IxTypography | typeof d.IxUpload | typeof d.IxValidationTooltip | typeof d.IxWorkflowStep | typeof d.IxWorkflowSteps)[];
2
+ export declare const DIRECTIVES: (typeof d.IxActionCard | typeof d.IxApplication | typeof d.IxApplicationHeader | typeof d.IxAvatar | typeof d.IxBasicNavigation | typeof d.IxBlind | typeof d.IxBreadcrumb | typeof d.IxBreadcrumbItem | typeof d.IxButton | typeof d.IxCard | typeof d.IxCardAccordion | typeof d.IxCardContent | typeof d.IxCardList | typeof d.IxCardTitle | typeof d.IxCategoryFilter | typeof d.IxCheckbox | typeof d.IxCheckboxGroup | typeof d.IxChip | typeof d.IxCol | typeof d.IxContent | typeof d.IxContentHeader | typeof d.IxCustomField | typeof d.IxDateDropdown | typeof d.IxDateInput | typeof d.IxDatePicker | typeof d.IxDatetimePicker | typeof d.IxDivider | typeof d.IxDrawer | typeof d.IxDropdown | typeof d.IxDropdownButton | typeof d.IxDropdownHeader | typeof d.IxDropdownItem | typeof d.IxDropdownQuickActions | typeof d.IxEmptyState | typeof d.IxEventList | typeof d.IxEventListItem | typeof d.IxExpandingSearch | typeof d.IxFieldLabel | typeof d.IxFilterChip | typeof d.IxFlipTile | typeof d.IxFlipTileContent | typeof d.IxGroup | typeof d.IxGroupContextMenu | typeof d.IxGroupItem | typeof d.IxHelperText | typeof d.IxIconButton | typeof d.IxIconToggleButton | typeof d.IxInput | typeof d.IxInputGroup | typeof d.IxKeyValue | typeof d.IxKeyValueList | typeof d.IxKpi | typeof d.IxLayoutAuto | typeof d.IxLayoutGrid | typeof d.IxLinkButton | typeof d.IxMapNavigation | typeof d.IxMapNavigationOverlay | typeof d.IxMenu | typeof d.IxMenuAbout | typeof d.IxMenuAboutItem | typeof d.IxMenuAboutNews | typeof d.IxMenuAvatar | typeof d.IxMenuAvatarItem | typeof d.IxMenuCategory | typeof d.IxMenuItem | typeof d.IxMenuSettings | typeof d.IxMenuSettingsItem | typeof d.IxMessageBar | typeof d.IxModal | typeof d.IxModalContent | typeof d.IxModalFooter | typeof d.IxModalHeader | typeof d.IxNumberInput | typeof d.IxPagination | typeof d.IxPane | typeof d.IxPaneLayout | typeof d.IxPill | typeof d.IxPushCard | typeof d.IxRadio | typeof d.IxRadioGroup | typeof d.IxRow | typeof d.IxSelect | typeof d.IxSelectItem | typeof d.IxSlider | typeof d.IxSpinner | typeof d.IxSplitButton | typeof d.IxSplitButtonItem | typeof d.IxTabItem | typeof d.IxTabs | typeof d.IxTextarea | typeof d.IxTile | typeof d.IxTimePicker | typeof d.IxToast | typeof d.IxToastContainer | typeof d.IxToggle | typeof d.IxToggleButton | typeof d.IxTooltip | typeof d.IxTreeItem | typeof d.IxTypography | typeof d.IxUpload | typeof d.IxValidationTooltip | typeof d.IxWorkflowStep | typeof d.IxWorkflowSteps)[];
@@ -17,9 +17,9 @@ export const appInitialize = (doc) => {
17
17
  return;
18
18
  }
19
19
  didInitialize = true;
20
- defineCustomElements();
21
20
  await iconsDefineCustomElements();
21
+ defineCustomElements();
22
22
  }
23
23
  };
24
24
  };
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWluaXRpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYXBwLWluaXRpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7R0FPRztBQUVILE9BQU8sRUFBRSxvQkFBb0IsSUFBSSx5QkFBeUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzdGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRTFELElBQUksYUFBYSxHQUFHLEtBQUssQ0FBQztBQUUxQixNQUFNLENBQUMsTUFBTSxhQUFhLEdBQUcsQ0FBQyxHQUFhLEVBQUUsRUFBRTtJQUM3QyxPQUFPLEtBQUssSUFBSSxFQUFFO1FBQ2hCLE1BQU0sR0FBRyxHQUF1QixHQUFHLENBQUMsV0FBa0IsQ0FBQztRQUN2RCxJQUFJLEdBQUcsSUFBSSxPQUFRLE1BQWMsS0FBSyxXQUFXLEVBQUU7WUFDakQsSUFBSSxhQUFhLEVBQUU7Z0JBQ2pCLE9BQU87YUFDUjtZQUVELGFBQWEsR0FBRyxJQUFJLENBQUM7WUFFckIsb0JBQW9CLEVBQUUsQ0FBQztZQUN2QixNQUFNLHlCQUF5QixFQUFFLENBQUM7U0FDbkM7SUFDSCxDQUFDLENBQUM7QUFDSixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICogU1BEWC1GaWxlQ29weXJpZ2h0VGV4dDogMjAyNCBTaWVtZW5zIEFHXG4gKlxuICogU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IE1JVFxuICpcbiAqIFRoaXMgc291cmNlIGNvZGUgaXMgbGljZW5zZWQgdW5kZXIgdGhlIE1JVCBsaWNlbnNlIGZvdW5kIGluIHRoZVxuICogTElDRU5TRSBmaWxlIGluIHRoZSByb290IGRpcmVjdG9yeSBvZiB0aGlzIHNvdXJjZSB0cmVlLlxuICovXG5cbmltcG9ydCB7IGRlZmluZUN1c3RvbUVsZW1lbnRzIGFzIGljb25zRGVmaW5lQ3VzdG9tRWxlbWVudHMgfSBmcm9tICdAc2llbWVucy9peC1pY29ucy9sb2FkZXInO1xuaW1wb3J0IHsgZGVmaW5lQ3VzdG9tRWxlbWVudHMgfSBmcm9tICdAc2llbWVucy9peC9sb2FkZXInO1xuXG5sZXQgZGlkSW5pdGlhbGl6ZSA9IGZhbHNlO1xuXG5leHBvcnQgY29uc3QgYXBwSW5pdGlhbGl6ZSA9IChkb2M6IERvY3VtZW50KSA9PiB7XG4gIHJldHVybiBhc3luYyAoKSA9PiB7XG4gICAgY29uc3Qgd2luOiBXaW5kb3cgfCB1bmRlZmluZWQgPSBkb2MuZGVmYXVsdFZpZXcgYXMgYW55O1xuICAgIGlmICh3aW4gJiYgdHlwZW9mICh3aW5kb3cgYXMgYW55KSAhPT0gJ3VuZGVmaW5lZCcpIHtcbiAgICAgIGlmIChkaWRJbml0aWFsaXplKSB7XG4gICAgICAgIHJldHVybjtcbiAgICAgIH1cblxuICAgICAgZGlkSW5pdGlhbGl6ZSA9IHRydWU7XG5cbiAgICAgIGRlZmluZUN1c3RvbUVsZW1lbnRzKCk7XG4gICAgICBhd2FpdCBpY29uc0RlZmluZUN1c3RvbUVsZW1lbnRzKCk7XG4gICAgfVxuICB9O1xufTtcbiJdfQ==
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWluaXRpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvYXBwLWluaXRpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7R0FPRztBQUVILE9BQU8sRUFBRSxvQkFBb0IsSUFBSSx5QkFBeUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzdGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRTFELElBQUksYUFBYSxHQUFHLEtBQUssQ0FBQztBQUUxQixNQUFNLENBQUMsTUFBTSxhQUFhLEdBQUcsQ0FBQyxHQUFhLEVBQUUsRUFBRTtJQUM3QyxPQUFPLEtBQUssSUFBSSxFQUFFO1FBQ2hCLE1BQU0sR0FBRyxHQUF1QixHQUFHLENBQUMsV0FBa0IsQ0FBQztRQUN2RCxJQUFJLEdBQUcsSUFBSSxPQUFRLE1BQWMsS0FBSyxXQUFXLEVBQUU7WUFDakQsSUFBSSxhQUFhLEVBQUU7Z0JBQ2pCLE9BQU87YUFDUjtZQUVELGFBQWEsR0FBRyxJQUFJLENBQUM7WUFFckIsTUFBTSx5QkFBeUIsRUFBRSxDQUFDO1lBQ2xDLG9CQUFvQixFQUFFLENBQUM7U0FDeEI7SUFDSCxDQUFDLENBQUM7QUFDSixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICogU1BEWC1GaWxlQ29weXJpZ2h0VGV4dDogMjAyNCBTaWVtZW5zIEFHXG4gKlxuICogU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IE1JVFxuICpcbiAqIFRoaXMgc291cmNlIGNvZGUgaXMgbGljZW5zZWQgdW5kZXIgdGhlIE1JVCBsaWNlbnNlIGZvdW5kIGluIHRoZVxuICogTElDRU5TRSBmaWxlIGluIHRoZSByb290IGRpcmVjdG9yeSBvZiB0aGlzIHNvdXJjZSB0cmVlLlxuICovXG5cbmltcG9ydCB7IGRlZmluZUN1c3RvbUVsZW1lbnRzIGFzIGljb25zRGVmaW5lQ3VzdG9tRWxlbWVudHMgfSBmcm9tICdAc2llbWVucy9peC1pY29ucy9sb2FkZXInO1xuaW1wb3J0IHsgZGVmaW5lQ3VzdG9tRWxlbWVudHMgfSBmcm9tICdAc2llbWVucy9peC9sb2FkZXInO1xuXG5sZXQgZGlkSW5pdGlhbGl6ZSA9IGZhbHNlO1xuXG5leHBvcnQgY29uc3QgYXBwSW5pdGlhbGl6ZSA9IChkb2M6IERvY3VtZW50KSA9PiB7XG4gIHJldHVybiBhc3luYyAoKSA9PiB7XG4gICAgY29uc3Qgd2luOiBXaW5kb3cgfCB1bmRlZmluZWQgPSBkb2MuZGVmYXVsdFZpZXcgYXMgYW55O1xuICAgIGlmICh3aW4gJiYgdHlwZW9mICh3aW5kb3cgYXMgYW55KSAhPT0gJ3VuZGVmaW5lZCcpIHtcbiAgICAgIGlmIChkaWRJbml0aWFsaXplKSB7XG4gICAgICAgIHJldHVybjtcbiAgICAgIH1cblxuICAgICAgZGlkSW5pdGlhbGl6ZSA9IHRydWU7XG5cbiAgICAgIGF3YWl0IGljb25zRGVmaW5lQ3VzdG9tRWxlbWVudHMoKTtcbiAgICAgIGRlZmluZUN1c3RvbUVsZW1lbnRzKCk7XG4gICAgfVxuICB9O1xufTtcbiJdfQ==