@testgorilla/tgo-ui 1.1.1 → 1.2.1

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 (155) hide show
  1. package/components/alert-banner/alert-banner.component.d.ts +1 -1
  2. package/components/avatar/avatar.component.d.ts +1 -1
  3. package/components/banner-action/banner-action.component.d.ts +1 -1
  4. package/components/button/button.component.d.ts +1 -1
  5. package/components/card/card.component.d.ts +1 -1
  6. package/components/checkbox/checkbox.component.d.ts +1 -1
  7. package/components/create-account/create-account.component.d.ts +1 -1
  8. package/components/create-password/create-password.component.d.ts +1 -1
  9. package/components/datepicker/datepicker.component.d.ts +1 -1
  10. package/components/dialog/dialog.component.d.ts +1 -1
  11. package/components/dropdown/dropdown.component.d.ts +1 -1
  12. package/components/elevation-shadow/elevation-shadow.component.d.ts +1 -1
  13. package/components/field/field.component.d.ts +1 -1
  14. package/components/file-upload/file-upload.component.d.ts +1 -1
  15. package/components/forgot-password/forgot-password.component.d.ts +1 -1
  16. package/components/icon/icon.component.d.ts +1 -1
  17. package/components/icon-label/icon-label.component.d.ts +1 -1
  18. package/components/label/label.component.d.ts +1 -1
  19. package/components/login/login.component.d.ts +1 -1
  20. package/components/logo/logo.component.d.ts +1 -1
  21. package/components/navbar/navbar.component.d.ts +1 -1
  22. package/components/navigation/navigation.component.d.ts +1 -1
  23. package/components/paginator/paginator.component.d.ts +1 -1
  24. package/components/progress-bar/progress-bar.component.d.ts +1 -1
  25. package/components/radio-button/radio-button.component.d.ts +1 -1
  26. package/components/rating/rating.component.d.ts +1 -1
  27. package/components/snackbar/snackbar.component.d.ts +1 -1
  28. package/components/table/directives/dynamic-component.directive.d.ts +1 -1
  29. package/components/table/table.component.d.ts +1 -1
  30. package/components/tag/tag.component.d.ts +1 -1
  31. package/components/toggle/toggle.component.d.ts +1 -1
  32. package/components/tooltip/tooltip.component.d.ts +1 -1
  33. package/directives/digits-only.directive.d.ts +1 -1
  34. package/esm2022/components/alert-banner/alert-banner.component.mjs +98 -0
  35. package/{esm2020 → esm2022}/components/alert-banner/alert-banner.component.module.mjs +5 -5
  36. package/{esm2020 → esm2022}/components/avatar/avatar.component.mjs +4 -4
  37. package/{esm2020 → esm2022}/components/avatar/avatar.component.module.mjs +5 -5
  38. package/{esm2020 → esm2022}/components/banner-action/banner-action.component.mjs +4 -4
  39. package/{esm2020 → esm2022}/components/banner-action/banner-action.component.module.mjs +5 -5
  40. package/{esm2020 → esm2022}/components/button/button.component.mjs +4 -4
  41. package/{esm2020 → esm2022}/components/button/button.component.module.mjs +5 -5
  42. package/{esm2020 → esm2022}/components/card/card.component.mjs +4 -4
  43. package/{esm2020 → esm2022}/components/card/card.component.module.mjs +5 -5
  44. package/esm2022/components/checkbox/checkbox.component.mjs +151 -0
  45. package/{esm2020 → esm2022}/components/checkbox/checkbox.component.module.mjs +5 -5
  46. package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.component.mjs +4 -4
  47. package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.component.module.mjs +8 -8
  48. package/{esm2020 → esm2022}/components/create-account/create-account.component.mjs +4 -4
  49. package/{esm2020 → esm2022}/components/create-account/create-account.component.module.mjs +19 -19
  50. package/{esm2020 → esm2022}/components/create-password/create-password.component.mjs +4 -4
  51. package/{esm2020 → esm2022}/components/create-password/create-password.component.module.mjs +17 -17
  52. package/esm2022/components/datepicker/datepicker.component.mjs +179 -0
  53. package/{esm2020 → esm2022}/components/datepicker/datepicker.component.module.mjs +19 -19
  54. package/{esm2020 → esm2022}/components/dialog/dialog.component.mjs +4 -4
  55. package/{esm2020 → esm2022}/components/dialog/dialog.component.module.mjs +5 -5
  56. package/{esm2020 → esm2022}/components/dialog/dialog.service.mjs +4 -4
  57. package/esm2022/components/dropdown/dropdown.component.mjs +158 -0
  58. package/{esm2020 → esm2022}/components/dropdown/dropdown.component.module.mjs +19 -19
  59. package/{esm2020 → esm2022}/components/elevation-shadow/elevation-shadow.component.mjs +4 -4
  60. package/{esm2020 → esm2022}/components/elevation-shadow/elevation-shadow.component.module.mjs +5 -5
  61. package/esm2022/components/field/field.component.mjs +212 -0
  62. package/{esm2020 → esm2022}/components/field/field.component.module.mjs +17 -17
  63. package/esm2022/components/file-upload/file-upload.component.mjs +191 -0
  64. package/{esm2020 → esm2022}/components/file-upload/file-upload.component.module.mjs +5 -5
  65. package/{esm2020 → esm2022}/components/forgot-password/forgot-password.component.mjs +4 -4
  66. package/{esm2020 → esm2022}/components/forgot-password/forgot-password.component.module.mjs +17 -17
  67. package/{esm2020 → esm2022}/components/icon/icon.component.mjs +4 -4
  68. package/{esm2020 → esm2022}/components/icon/icon.component.module.mjs +5 -5
  69. package/{esm2020 → esm2022}/components/icon-label/icon-label.component.mjs +4 -4
  70. package/{esm2020 → esm2022}/components/icon-label/icon-label.component.module.mjs +5 -5
  71. package/{esm2020 → esm2022}/components/label/label.component.mjs +4 -4
  72. package/{esm2020 → esm2022}/components/label/label.component.module.mjs +5 -5
  73. package/{esm2020 → esm2022}/components/login/login.component.mjs +4 -4
  74. package/{esm2020 → esm2022}/components/login/login.component.module.mjs +17 -17
  75. package/{esm2020 → esm2022}/components/logo/logo.component.mjs +4 -4
  76. package/{esm2020 → esm2022}/components/logo/logo.component.module.mjs +5 -5
  77. package/{esm2020 → esm2022}/components/navbar/navbar.component.mjs +4 -4
  78. package/{esm2020 → esm2022}/components/navbar/navbar.component.module.mjs +19 -19
  79. package/{esm2020 → esm2022}/components/navigation/navigation.component.mjs +4 -4
  80. package/{esm2020 → esm2022}/components/navigation/navigation.component.module.mjs +5 -5
  81. package/{esm2020 → esm2022}/components/paginator/paginator.component.mjs +4 -4
  82. package/{esm2020 → esm2022}/components/paginator/paginator.component.module.mjs +5 -5
  83. package/{esm2020 → esm2022}/components/progress-bar/progress-bar.component.mjs +4 -4
  84. package/{esm2020 → esm2022}/components/progress-bar/progress-bar.component.module.mjs +5 -5
  85. package/{esm2020 → esm2022}/components/radio-button/radio-button.component.mjs +4 -4
  86. package/{esm2020 → esm2022}/components/radio-button/radio-button.component.module.mjs +5 -5
  87. package/{esm2020 → esm2022}/components/rating/rating.component.mjs +4 -4
  88. package/{esm2020 → esm2022}/components/rating/rating.component.module.mjs +5 -5
  89. package/esm2022/components/snackbar/snackbar.component.mjs +148 -0
  90. package/esm2022/components/snackbar/snackbar.component.module.mjs +44 -0
  91. package/{esm2020 → esm2022}/components/snackbar/snackbar.service.mjs +4 -4
  92. package/{esm2020 → esm2022}/components/spinner/spinner.component.mjs +4 -4
  93. package/{esm2020 → esm2022}/components/spinner/spinner.module.mjs +5 -5
  94. package/{esm2020 → esm2022}/components/table/directives/dynamic-component.directive.mjs +4 -4
  95. package/{esm2020 → esm2022}/components/table/pipes/data-property-getter.mjs +4 -4
  96. package/esm2022/components/table/table.component.mjs +158 -0
  97. package/{esm2020 → esm2022}/components/table/table.component.module.mjs +5 -5
  98. package/{esm2020 → esm2022}/components/tag/tag.component.mjs +4 -4
  99. package/{esm2020 → esm2022}/components/tag/tag.component.module.mjs +5 -5
  100. package/esm2022/components/toggle/toggle.component.mjs +78 -0
  101. package/{esm2020 → esm2022}/components/toggle/toggle.component.module.mjs +5 -5
  102. package/{esm2020 → esm2022}/components/tooltip/tooltip.component.mjs +4 -4
  103. package/{esm2020 → esm2022}/components/tooltip/tooltip.component.module.mjs +5 -5
  104. package/{esm2020 → esm2022}/directives/digits-only.directive.mjs +4 -4
  105. package/{esm2020 → esm2022}/directives/drag-drop.directive.mjs +4 -4
  106. package/{esm2020 → esm2022}/pipes/name-initials.pipe.mjs +4 -4
  107. package/esm2022/utils/localization/language.service.mjs +78 -0
  108. package/{fesm2020 → fesm2022}/testgorilla-tgo-ui.mjs +459 -459
  109. package/{fesm2015 → fesm2022}/testgorilla-tgo-ui.mjs.map +1 -1
  110. package/package.json +16 -22
  111. package/esm2020/components/alert-banner/alert-banner.component.mjs +0 -98
  112. package/esm2020/components/checkbox/checkbox.component.mjs +0 -151
  113. package/esm2020/components/datepicker/datepicker.component.mjs +0 -179
  114. package/esm2020/components/dropdown/dropdown.component.mjs +0 -158
  115. package/esm2020/components/field/field.component.mjs +0 -212
  116. package/esm2020/components/file-upload/file-upload.component.mjs +0 -191
  117. package/esm2020/components/snackbar/snackbar.component.mjs +0 -148
  118. package/esm2020/components/snackbar/snackbar.component.module.mjs +0 -44
  119. package/esm2020/components/table/table.component.mjs +0 -158
  120. package/esm2020/components/toggle/toggle.component.mjs +0 -78
  121. package/esm2020/utils/localization/language.service.mjs +0 -78
  122. package/fesm2015/testgorilla-tgo-ui.mjs +0 -4290
  123. package/fesm2020/testgorilla-tgo-ui.mjs.map +0 -1
  124. /package/{esm2020 → esm2022}/components/alert-banner/alert-banner.model.mjs +0 -0
  125. /package/{esm2020 → esm2022}/components/avatar/avatar.model.mjs +0 -0
  126. /package/{esm2020 → esm2022}/components/button/button.model.mjs +0 -0
  127. /package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.constants.mjs +0 -0
  128. /package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.model.mjs +0 -0
  129. /package/{esm2020 → esm2022}/components/create-account/create-account.constant.mjs +0 -0
  130. /package/{esm2020 → esm2022}/components/create-account/create-account.model.mjs +0 -0
  131. /package/{esm2020 → esm2022}/components/create-password/create-password.constant.mjs +0 -0
  132. /package/{esm2020 → esm2022}/components/create-password/create-password.model.mjs +0 -0
  133. /package/{esm2020 → esm2022}/components/dropdown/dropdown.model.mjs +0 -0
  134. /package/{esm2020 → esm2022}/components/elevation-shadow/elevation-shadow.constant.mjs +0 -0
  135. /package/{esm2020 → esm2022}/components/field/field.model.mjs +0 -0
  136. /package/{esm2020 → esm2022}/components/forgot-password/forgot-password.constant.mjs +0 -0
  137. /package/{esm2020 → esm2022}/components/forgot-password/forgot-password.model.mjs +0 -0
  138. /package/{esm2020 → esm2022}/components/icon/icon.config.mjs +0 -0
  139. /package/{esm2020 → esm2022}/components/icon/icon.model.mjs +0 -0
  140. /package/{esm2020 → esm2022}/components/label/label.model.mjs +0 -0
  141. /package/{esm2020 → esm2022}/components/login/login.constant.mjs +0 -0
  142. /package/{esm2020 → esm2022}/components/login/login.model.mjs +0 -0
  143. /package/{esm2020 → esm2022}/components/logo/logo.model.mjs +0 -0
  144. /package/{esm2020 → esm2022}/components/navbar/navbar.model.mjs +0 -0
  145. /package/{esm2020 → esm2022}/components/radio-button/radio-button.model.mjs +0 -0
  146. /package/{esm2020 → esm2022}/components/snackbar/snackbar.model.mjs +0 -0
  147. /package/{esm2020 → esm2022}/components/table/table.model.mjs +0 -0
  148. /package/{esm2020 → esm2022}/components/tag/tag.model.mjs +0 -0
  149. /package/{esm2020 → esm2022}/components/toggle/toggle.model.mjs +0 -0
  150. /package/{esm2020 → esm2022}/components/tooltip/tooltip.model.mjs +0 -0
  151. /package/{esm2020 → esm2022}/public-api.mjs +0 -0
  152. /package/{esm2020 → esm2022}/testgorilla-tgo-ui.mjs +0 -0
  153. /package/{esm2020 → esm2022}/utils/alert-bar.model.mjs +0 -0
  154. /package/{esm2020 → esm2022}/utils/alert-bars.utils.mjs +0 -0
  155. /package/{esm2020 → esm2022}/utils/validators.utils.mjs +0 -0
@@ -62,5 +62,5 @@ export declare class AlertBannerComponent implements OnInit {
62
62
  ngOnInit(): void;
63
63
  dismissClick(): void;
64
64
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertBannerComponent, never>;
65
- static ɵcmp: i0.ɵɵComponentDeclaration<AlertBannerComponent, "ui-alert-banner", never, { "alertType": "alertType"; "message": "message"; "includeDismissButton": "includeDismissButton"; "fixed": "fixed"; "fullWidth": "fullWidth"; "linkText": "linkText"; "linkUrl": "linkUrl"; "linkTarget": "linkTarget"; }, {}, never, never, false, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<AlertBannerComponent, "ui-alert-banner", never, { "alertType": { "alias": "alertType"; "required": false; }; "message": { "alias": "message"; "required": false; }; "includeDismissButton": { "alias": "includeDismissButton"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "linkUrl": { "alias": "linkUrl"; "required": false; }; "linkTarget": { "alias": "linkTarget"; "required": false; }; }, {}, never, never, false, never>;
66
66
  }
@@ -44,5 +44,5 @@ export declare class AvatarComponent {
44
44
  protected onAvatarClick(): void;
45
45
  get clickAllowance(): string;
46
46
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "size": "size"; "imageUrl": "imageUrl"; "name": "name"; "tooltipText": "tooltipText"; "allowClick": "allowClick"; }, { "avatarClick": "avatarClick"; }, never, never, false, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "size": { "alias": "size"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "name": { "alias": "name"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "allowClick": { "alias": "allowClick"; "required": false; }; }, { "avatarClick": "avatarClick"; }, never, never, false, never>;
48
48
  }
@@ -48,5 +48,5 @@ export declare class BannerActionComponent implements OnInit {
48
48
  buttonClick(event: Event): void;
49
49
  ngOnInit(): void;
50
50
  static ɵfac: i0.ɵɵFactoryDeclaration<BannerActionComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<BannerActionComponent, "ui-banner-action", never, { "message": "message"; "bannerActionType": "bannerActionType"; "buttonText": "buttonText"; "fixed": "fixed"; "fullWidth": "fullWidth"; "buttonIcon": "buttonIcon"; }, { "buttonClickEvent": "buttonClickEvent"; }, never, never, false, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<BannerActionComponent, "ui-banner-action", never, { "message": { "alias": "message"; "required": false; }; "bannerActionType": { "alias": "bannerActionType"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; }; }, { "buttonClickEvent": "buttonClickEvent"; }, never, never, false, never>;
52
52
  }
@@ -95,5 +95,5 @@ export declare class ButtonComponent implements OnInit {
95
95
  showSpinner(): boolean;
96
96
  showButtonLink(): boolean;
97
97
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
98
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ui-button", never, { "size": "size"; "type": "type"; "label": "label"; "iconPosition": "iconPosition"; "justIcon": "justIcon"; "iconName": "iconName"; "disabled": "disabled"; "loading": "loading"; "fullWidth": "fullWidth"; "url": "url"; "urlTarget": "urlTarget"; "value": "value"; }, { "buttonClickEvent": "buttonClickEvent"; "buttonHoverEvent": "buttonHoverEvent"; }, never, never, false, never>;
98
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ui-button", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "justIcon": { "alias": "justIcon"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "url": { "alias": "url"; "required": false; }; "urlTarget": { "alias": "urlTarget"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "buttonClickEvent": "buttonClickEvent"; "buttonHoverEvent": "buttonHoverEvent"; }, never, never, false, never>;
99
99
  }
@@ -3,5 +3,5 @@ export declare class CardComponent {
3
3
  title: string;
4
4
  subTitle: string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "ui-card", never, { "title": "title"; "subTitle": "subTitle"; }, {}, never, never, false, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "ui-card", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; }, {}, never, never, false, never>;
7
7
  }
@@ -83,5 +83,5 @@ export declare class CheckboxComponent implements OnInit, ControlValueAccessor {
83
83
  registerOnTouched(fn: any): void;
84
84
  setDisabledState(isDisabled: boolean): void;
85
85
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ui-checkbox", never, { "disabled": "disabled"; "checked": "checked"; "indeterminate": "indeterminate"; "color": "color"; "name": "name"; "label": "label"; "multiple": "multiple"; }, { "changed": "changed"; }, never, never, false, never>;
86
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ui-checkbox", never, { "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "color": { "alias": "color"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
87
87
  }
@@ -71,5 +71,5 @@ export declare class CreateAccountComponent implements OnInit {
71
71
  passwordErrorMessages: Record<string, string>;
72
72
  checkErrors(field: string): void;
73
73
  static ɵfac: i0.ɵɵFactoryDeclaration<CreateAccountComponent, never>;
74
- static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "ui-create-account", never, { "email": "email"; "emailEditable": "emailEditable"; "termsOfusePath": "termsOfusePath"; "privacyPolicyPath": "privacyPolicyPath"; "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "loginEvent": "loginEvent"; }, never, never, false, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "ui-create-account", never, { "email": { "alias": "email"; "required": false; }; "emailEditable": { "alias": "emailEditable"; "required": false; }; "termsOfusePath": { "alias": "termsOfusePath"; "required": false; }; "privacyPolicyPath": { "alias": "privacyPolicyPath"; "required": false; }; "formErrors": { "alias": "formErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; "loginEvent": "loginEvent"; }, never, never, false, never>;
75
75
  }
@@ -39,5 +39,5 @@ export declare class CreatePasswordComponent implements OnInit {
39
39
  submit(): void;
40
40
  checkErrors(field: string): void;
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<CreatePasswordComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<CreatePasswordComponent, "ui-create-password", never, { "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; }, never, never, false, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreatePasswordComponent, "ui-create-password", never, { "formErrors": { "alias": "formErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; }, never, never, false, never>;
43
43
  }
@@ -113,5 +113,5 @@ export declare class DatepickerComponent implements OnChanges, ControlValueAcces
113
113
  private setRange;
114
114
  private getRange;
115
115
  static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
116
- static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "ui-datepicker", never, { "label": "label"; "fieldName": "fieldName"; "placeholder": "placeholder"; "id": "id"; "value": "value"; "errors": "errors"; "isRange": "isRange"; "disabled": "disabled"; "required": "required"; "hintMessage": "hintMessage"; "updateOnBlur": "updateOnBlur"; }, { "changed": "changed"; }, never, never, false, never>;
116
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "ui-datepicker", never, { "label": { "alias": "label"; "required": false; }; "fieldName": { "alias": "fieldName"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "id": { "alias": "id"; "required": false; }; "value": { "alias": "value"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "isRange": { "alias": "isRange"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "hintMessage": { "alias": "hintMessage"; "required": false; }; "updateOnBlur": { "alias": "updateOnBlur"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
117
117
  }
@@ -59,5 +59,5 @@ export declare class DialogComponent implements OnInit, OnChanges {
59
59
  onSecondaryButtonClick(event: Event): void;
60
60
  onPrimaryButtonClick(event: Event): void;
61
61
  static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui-dialog", never, { "title": "title"; "showCloseButton": "showCloseButton"; "canCloseFn": "canCloseFn"; "secondaryButtonLabel": "secondaryButtonLabel"; "primaryButtonLabel": "primaryButtonLabel"; "secondaryButtonType": "secondaryButtonType"; "primaryButtonType": "primaryButtonType"; }, { "closeEvent": "closeEvent"; "secondaryButtonClickEvent": "secondaryButtonClickEvent"; "primaryButtonClickEvent": "primaryButtonClickEvent"; }, never, ["*"], false, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui-dialog", never, { "title": { "alias": "title"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "canCloseFn": { "alias": "canCloseFn"; "required": false; }; "secondaryButtonLabel": { "alias": "secondaryButtonLabel"; "required": false; }; "primaryButtonLabel": { "alias": "primaryButtonLabel"; "required": false; }; "secondaryButtonType": { "alias": "secondaryButtonType"; "required": false; }; "primaryButtonType": { "alias": "primaryButtonType"; "required": false; }; }, { "closeEvent": "closeEvent"; "secondaryButtonClickEvent": "secondaryButtonClickEvent"; "primaryButtonClickEvent": "primaryButtonClickEvent"; }, never, ["*"], false, never>;
63
63
  }
@@ -108,5 +108,5 @@ export declare class DropdownComponent implements OnInit, ControlValueAccessor {
108
108
  registerOnTouched(fn: any): void;
109
109
  setDisabledState(isDisabled: boolean): void;
110
110
  static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
111
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ui-dropdown", never, { "label": "label"; "name": "name"; "placeholder": "placeholder"; "id": "id"; "value": "value"; "errors": "errors"; "disabled": "disabled"; "valueList": "valueList"; "allowClear": "allowClear"; "allowMultipleSelection": "allowMultipleSelection"; "required": "required"; }, {}, never, never, false, never>;
111
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ui-dropdown", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "id": { "alias": "id"; "required": false; }; "value": { "alias": "value"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "valueList": { "alias": "valueList"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "allowMultipleSelection": { "alias": "allowMultipleSelection"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, never, false, never>;
112
112
  }
@@ -10,5 +10,5 @@ export declare class ElevationShadowComponent {
10
10
  */
11
11
  elevationType: ElevationType;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<ElevationShadowComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<ElevationShadowComponent, "ui-elevation-shadow", never, { "elevationType": "elevationType"; }, {}, never, ["*"], false, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElevationShadowComponent, "ui-elevation-shadow", never, { "elevationType": { "alias": "elevationType"; "required": false; }; }, {}, never, ["*"], false, never>;
14
14
  }
@@ -116,5 +116,5 @@ export declare class FieldComponent implements OnInit, ControlValueAccessor {
116
116
  registerOnTouched(fn: any): void;
117
117
  setDisabledState(isDisabled: boolean): void;
118
118
  static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponent, never>;
119
- static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "ui-field", never, { "label": "label"; "fieldName": "fieldName"; "placeholder": "placeholder"; "id": "id"; "value": "value"; "errors": "errors"; "disabled": "disabled"; "required": "required"; "hintMessage": "hintMessage"; "type": "type"; "updateOnBlur": "updateOnBlur"; "allowOnlyDigits": "allowOnlyDigits"; }, {}, never, never, false, never>;
119
+ static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "ui-field", never, { "label": { "alias": "label"; "required": false; }; "fieldName": { "alias": "fieldName"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "id": { "alias": "id"; "required": false; }; "value": { "alias": "value"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "hintMessage": { "alias": "hintMessage"; "required": false; }; "type": { "alias": "type"; "required": false; }; "updateOnBlur": { "alias": "updateOnBlur"; "required": false; }; "allowOnlyDigits": { "alias": "allowOnlyDigits"; "required": false; }; }, {}, never, never, false, never>;
120
120
  }
@@ -70,5 +70,5 @@ export declare class FileUploadComponent implements OnInit, OnChanges, ControlVa
70
70
  registerOnTouched(fn: any): void;
71
71
  setDisabledState(isDisabled: boolean): void;
72
72
  static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
73
- static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ui-file-upload", never, { "maxFileSizeMB": "maxFileSizeMB"; "supportedFileTypes": "supportedFileTypes"; "uploadProgress": "uploadProgress"; "errors": "errors"; "disabled": "disabled"; "file": "file"; }, { "OnDrop": "OnDrop"; }, never, never, false, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ui-file-upload", never, { "maxFileSizeMB": { "alias": "maxFileSizeMB"; "required": false; }; "supportedFileTypes": { "alias": "supportedFileTypes"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "file": { "alias": "file"; "required": false; }; }, { "OnDrop": "OnDrop"; }, never, never, false, never>;
74
74
  }
@@ -44,5 +44,5 @@ export declare class ForgotPasswordComponent implements OnInit {
44
44
  backToLogin(): void;
45
45
  checkErrors(field: string): void;
46
46
  static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "ui-forgot-password", never, { "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "backToLoginEvent": "backToLoginEvent"; }, never, never, false, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "ui-forgot-password", never, { "formErrors": { "alias": "formErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; "backToLoginEvent": "backToLoginEvent"; }, never, never, false, never>;
48
48
  }
@@ -40,5 +40,5 @@ export declare class IconComponent implements OnInit {
40
40
  setCssClass(): string;
41
41
  addIcon(): void;
42
42
  static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ui-icon", never, { "size": "size"; "cssClass": "cssClass"; "name": "name"; "color": "color"; }, {}, never, never, false, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ui-icon", never, { "size": { "alias": "size"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
44
44
  }
@@ -25,5 +25,5 @@ export declare class IconLabelComponent implements OnInit {
25
25
  constructor();
26
26
  ngOnInit(): void;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<IconLabelComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<IconLabelComponent, "ui-icon-label", never, { "iconSize": "iconSize"; "iconName": "iconName"; "text": "text"; }, {}, never, never, false, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconLabelComponent, "ui-icon-label", never, { "iconSize": { "alias": "iconSize"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
29
29
  }
@@ -42,5 +42,5 @@ export declare class LabelComponent {
42
42
  size: LabelSizeEnum;
43
43
  constructor();
44
44
  static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ui-label", never, { "backgroundColor": "backgroundColor"; "textColor": "textColor"; "title": "title"; "description": "description"; "size": "size"; }, {}, never, never, false, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ui-label", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
46
46
  }
@@ -53,5 +53,5 @@ export declare class LoginComponent implements OnInit {
53
53
  createAccount(): void;
54
54
  checkErrors(field: string): void;
55
55
  static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
56
- static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "ui-login", never, { "email": "email"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "forgotPasswordEvent": "forgotPasswordEvent"; "createAccountEvent": "createAccountEvent"; }, never, never, false, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "ui-login", never, { "email": { "alias": "email"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; "forgotPasswordEvent": "forgotPasswordEvent"; "createAccountEvent": "createAccountEvent"; }, never, never, false, never>;
57
57
  }
@@ -25,5 +25,5 @@ export declare class LogoComponent {
25
25
  */
26
26
  ngOnChanges(): void;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<LogoComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "ui-logo", never, { "type": "type"; }, {}, never, never, false, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "ui-logo", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
29
29
  }
@@ -48,5 +48,5 @@ export declare class NavbarComponent {
48
48
  logout(): void;
49
49
  clickMenuItem(id: string): void;
50
50
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "ui-navbar", never, { "routes": "routes"; "activedRoute": "activedRoute"; "userName": "userName"; "menuItems": "menuItems"; }, { "navigateEvent": "navigateEvent"; "menuItemClicked": "menuItemClicked"; "logoutEvent": "logoutEvent"; }, never, never, false, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "ui-navbar", never, { "routes": { "alias": "routes"; "required": false; }; "activedRoute": { "alias": "activedRoute"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "navigateEvent": "navigateEvent"; "menuItemClicked": "menuItemClicked"; "logoutEvent": "logoutEvent"; }, never, never, false, never>;
52
52
  }
@@ -37,5 +37,5 @@ export declare class NavigationComponent {
37
37
  constructor();
38
38
  goBackClicked(): void;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ui-navigation", never, { "title": "title"; "subtitle": "subtitle"; "labelItem": "labelItem"; "logoURL": "logoURL"; }, { "goBackClickedEvent": "goBackClickedEvent"; }, never, never, false, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ui-navigation", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "labelItem": { "alias": "labelItem"; "required": false; }; "logoURL": { "alias": "logoURL"; "required": false; }; }, { "goBackClickedEvent": "goBackClickedEvent"; }, never, never, false, never>;
41
41
  }
@@ -34,5 +34,5 @@ export declare class PaginatorComponent implements OnInit {
34
34
  constructor();
35
35
  paginatorChanged(paginator: PageEvent): void;
36
36
  static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "ui-paginator", never, { "length": "length"; "defaultPageSize": "defaultPageSize"; }, { "paginatorChangedEvent": "paginatorChangedEvent"; }, never, never, false, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "ui-paginator", never, { "length": { "alias": "length"; "required": false; }; "defaultPageSize": { "alias": "defaultPageSize"; "required": false; }; }, { "paginatorChangedEvent": "paginatorChangedEvent"; }, never, never, false, never>;
38
38
  }
@@ -36,5 +36,5 @@ export declare class ProgressBarComponent {
36
36
  buffer: number;
37
37
  constructor();
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "ui-progress-bar", never, { "color": "color"; "progress": "progress"; "mode": "mode"; "buffer": "buffer"; }, {}, never, never, false, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "ui-progress-bar", never, { "color": { "alias": "color"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "buffer": { "alias": "buffer"; "required": false; }; }, {}, never, never, false, never>;
40
40
  }
@@ -80,5 +80,5 @@ export declare class RadioButtonComponent implements OnInit, OnChanges {
80
80
  clickRadio(element: MatRadioButton, event: MouseEvent): void;
81
81
  setClass(): string;
82
82
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
83
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ui-radio-button", never, { "disabled": "disabled"; "selected": "selected"; "allowUnselect": "allowUnselect"; "color": "color"; "name": "name"; "label": "label"; "multiple": "multiple"; "value": "value"; }, { "changeRadio": "changeRadio"; }, never, never, false, never>;
83
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ui-radio-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "allowUnselect": { "alias": "allowUnselect"; "required": false; }; "color": { "alias": "color"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "changeRadio": "changeRadio"; }, never, never, false, never>;
84
84
  }
@@ -15,5 +15,5 @@ export declare class RatingComponent {
15
15
  select(index: number): void;
16
16
  onHover(index: number): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<RatingComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "ui-rating", never, { "value": "value"; "theme": "theme"; "barWidth": "barWidth"; "length": "length"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "ui-rating", never, { "value": { "alias": "value"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "barWidth": { "alias": "barWidth"; "required": false; }; "length": { "alias": "length"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
19
19
  }
@@ -64,5 +64,5 @@ export declare class SnackbarComponent implements OnInit {
64
64
  onMouseLeave(): void;
65
65
  dismissClick(): void;
66
66
  static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarComponent, never>;
67
- static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "ui-snackbar", never, { "snackbarType": "snackbarType"; "message": "message"; "seconds": "seconds"; "includeDismissButton": "includeDismissButton"; "fixed": "fixed"; "language": "language"; }, {}, never, never, false, never>;
67
+ static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "ui-snackbar", never, { "snackbarType": { "alias": "snackbarType"; "required": false; }; "message": { "alias": "message"; "required": false; }; "seconds": { "alias": "seconds"; "required": false; }; "includeDismissButton": { "alias": "includeDismissButton"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "language": { "alias": "language"; "required": false; }; }, {}, never, never, false, never>;
68
68
  }
@@ -9,5 +9,5 @@ export declare class DynamicComponentDirective implements OnDestroy {
9
9
  constructor(vcr: ViewContainerRef);
10
10
  ngOnDestroy(): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamicComponent]", never, { "dynamicComponent": "dynamicComponent"; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamicComponent]", never, { "dynamicComponent": { "alias": "dynamicComponent"; "required": false; }; }, {}, never, never, false, never>;
13
13
  }
@@ -87,5 +87,5 @@ export declare class TableComponent<T extends IDataSource, TDetail extends IData
87
87
  */
88
88
  private setTableDetailDataSource;
89
89
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any, any>, never>;
90
- static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "tableDetails": "tableDetails"; "tableData": "tableData"; "tableColumns": "tableColumns"; "tableDetailColumns": "tableDetailColumns"; }, { "onSortEvent": "onSortEvent"; "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; }, never, never, false, never>;
90
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "tableDetails": { "alias": "tableDetails"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "tableDetailColumns": { "alias": "tableDetailColumns"; "required": false; }; }, { "onSortEvent": "onSortEvent"; "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; }, never, never, false, never>;
91
91
  }
@@ -93,5 +93,5 @@ export declare class TagComponent implements AfterViewInit {
93
93
  get tabIndex(): number;
94
94
  get filled(): boolean;
95
95
  static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
96
- static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ui-tag", never, { "label": "label"; "icon": "icon"; "allowClose": "allowClose"; "readOnly": "readOnly"; "isSelected": "isSelected"; "showIconWhenSelected": "showIconWhenSelected"; "isDisabled": "isDisabled"; }, { "close": "close"; "press": "press"; }, never, never, false, never>;
96
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ui-tag", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "allowClose": { "alias": "allowClose"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; "showIconWhenSelected": { "alias": "showIconWhenSelected"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "close": "close"; "press": "press"; }, never, never, false, never>;
97
97
  }
@@ -34,5 +34,5 @@ export declare class ToggleComponent implements ControlValueAccessor {
34
34
  private onChange;
35
35
  private onTouched;
36
36
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ui-toggle", never, { "selected": "selected"; "disabled": "disabled"; }, { "toggle": "toggle"; }, never, never, false, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ui-toggle", never, { "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "toggle": "toggle"; }, never, never, false, never>;
38
38
  }
@@ -21,5 +21,5 @@ export declare class TooltipComponent implements OnInit {
21
21
  ngOnInit(): void;
22
22
  setPosition(): void;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ui-tooltip", never, { "position": "position"; "message": "message"; }, {}, never, ["*"], false, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ui-tooltip", never, { "position": { "alias": "position"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, ["*"], false, never>;
25
25
  }
@@ -11,5 +11,5 @@ export declare class DigitsOnlyDirective {
11
11
  onPaste(event: Event): void;
12
12
  validate(event: Event, text: string): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<DigitsOnlyDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<DigitsOnlyDirective, "[digitsOnly]", never, { "allowNegative": "allowNegative"; "allowDecimal": "allowDecimal"; "allowOnlyDigits": "allowOnlyDigits"; }, {}, never, never, false, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DigitsOnlyDirective, "[digitsOnly]", never, { "allowNegative": { "alias": "allowNegative"; "required": false; }; "allowDecimal": { "alias": "allowDecimal"; "required": false; }; "allowOnlyDigits": { "alias": "allowOnlyDigits"; "required": false; }; }, {}, never, never, false, never>;
15
15
  }
@@ -0,0 +1,98 @@
1
+ import { animate, style, transition, trigger } from '@angular/animations';
2
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
3
+ import { alertBarsUtil } from '../../utils/alert-bars.utils';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "../button/button.component";
7
+ import * as i3 from "../icon/icon.component";
8
+ export class AlertBannerComponent {
9
+ constructor() {
10
+ /**
11
+ * Alert Banner type
12
+ *
13
+ * @type {AlertBarType}
14
+ * @memberof AlertBannerComponent
15
+ */
16
+ this.alertType = 'success';
17
+ /**
18
+ * Alert banner message
19
+ *
20
+ * @memberof AlertBannerComponent
21
+ */
22
+ this.message = '';
23
+ /**
24
+ * Include dismmiss button
25
+ *
26
+ * @memberof AlertBannerComponent
27
+ */
28
+ this.includeDismissButton = true;
29
+ /**
30
+ * Static or fixed position
31
+ *
32
+ * @memberof AlertBannerComponent
33
+ */
34
+ this.fixed = false;
35
+ /**
36
+ * Full width for alert banner
37
+ *
38
+ * @memberof AlertBannerComponent
39
+ */
40
+ this.fullWidth = true;
41
+ /**
42
+ * Link text that will appended at the end of message
43
+ *
44
+ * @memberof AlertBannerComponent
45
+ */
46
+ this.linkText = '';
47
+ /**
48
+ * Link target
49
+ *
50
+ * @type {@type {LinkTargetType}}
51
+ * @memberof AlertBannerComponent
52
+ */
53
+ this.linkTarget = '_blank';
54
+ this.visible = true;
55
+ }
56
+ ngOnInit() {
57
+ this.iconName = alertBarsUtil.setIcon(this.alertType);
58
+ this.position = alertBarsUtil.setPosition(this.fixed);
59
+ this.cssClass = alertBarsUtil.setCssClass(this.fullWidth, this.alertType, this.position);
60
+ }
61
+ //Hide snackbar when dismiss button is clicked
62
+ dismissClick() {
63
+ this.visible = false;
64
+ }
65
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertBannerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
66
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AlertBannerComponent, selector: "ui-alert-banner", inputs: { alertType: "alertType", message: "message", includeDismissButton: "includeDismissButton", fixed: "fixed", fullWidth: "fullWidth", linkText: "linkText", linkUrl: "linkUrl", linkTarget: "linkTarget" }, ngImport: i0, template: "<div [ngClass]=\"cssClass\" [@openClose] *ngIf=\"visible\" class=\"alert-container\">\n <div class=\"alert-text\">\n <ui-icon [name]=\"iconName\" size=\"24\"></ui-icon>\n {{ message }}\n <a *ngIf=\"!!linkText\" [target]=\"linkTarget\" [href]=\"linkUrl\">{{ linkText }}</a>\n </div>\n <ui-button\n *ngIf=\"includeDismissButton\"\n type=\"text\"\n [justIcon]=\"true\"\n class=\"close\"\n iconName=\"Close\"\n (buttonClickEvent)=\"dismissClick()\"\n ></ui-button>\n</div>\n", styles: [":host{display:flex;width:100%;justify-content:center}:host .snackbar-container{max-width:600px}:host .alert-container,:host .snackbar-container{margin:0 auto;display:flex;padding:0 14px;border-radius:4px;align-items:center;justify-content:space-between;opacity:1;min-height:48px}:host .alert-container.fixed,:host .snackbar-container.fixed{position:fixed}:host .alert-container.static,:host .snackbar-container.static{position:relative}:host .alert-container ui-icon,:host .snackbar-container ui-icon{margin-right:14px}:host .alert-container ui-button,:host .snackbar-container ui-button{margin-left:14px}:host .alert-container ::ng-deep button.mat-mdc-unelevated-button.big,:host .snackbar-container ::ng-deep button.mat-mdc-unelevated-button.big{padding:0;min-width:auto}:host .alert-container .alert-text,:host .alert-container .snackbar-text,:host .snackbar-container .alert-text,:host .snackbar-container .snackbar-text{display:flex;align-items:center;color:#000}:host .alert-container .alert-text a,:host .alert-container .snackbar-text a,:host .snackbar-container .alert-text a,:host .snackbar-container .snackbar-text a{color:#000;text-decoration:underline;font-weight:700}:host .alert-container .alert-text a:hover,:host .alert-container .alert-text a:visited,:host .alert-container .alert-text a:focus,:host .alert-container .snackbar-text a:hover,:host .alert-container .snackbar-text a:visited,:host .alert-container .snackbar-text a:focus,:host .snackbar-container .alert-text a:hover,:host .snackbar-container .alert-text a:visited,:host .snackbar-container .alert-text a:focus,:host .snackbar-container .snackbar-text a:hover,:host .snackbar-container .snackbar-text a:visited,:host .snackbar-container .snackbar-text a:focus{text-decoration:none}:host .alert-container.success,:host .snackbar-container.success{background-color:#cbd6cb}:host .alert-container.info,:host .snackbar-container.info{background-color:#c8d7de}:host .alert-container.warning,:host .snackbar-container.warning{background-color:#f0d6bb}:host .alert-container.error,:host .snackbar-container.error{background-color:#e3c3c6}@media (max-width: 600px){:host .alert-container,:host .snackbar-container{padding:8px 14px}}:host .alert-container.fixed{top:0;z-index:98}:host .alert-container.full-width{width:100%;min-width:100%}:host .alert-container a{margin-left:7px}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.ButtonComponent, selector: "ui-button", inputs: ["size", "type", "label", "iconPosition", "justIcon", "iconName", "disabled", "loading", "fullWidth", "url", "urlTarget", "value"], outputs: ["buttonClickEvent", "buttonHoverEvent"] }, { kind: "component", type: i3.IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color"] }], animations: [
67
+ trigger('openClose', [
68
+ transition(':enter', [animate('0.2s ease-out', style({ opacity: 1 }))]),
69
+ transition(':leave', [animate('0.2s ease-in', style({ opacity: 0 }))]),
70
+ ]),
71
+ ], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
72
+ }
73
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertBannerComponent, decorators: [{
74
+ type: Component,
75
+ args: [{ selector: 'ui-alert-banner', animations: [
76
+ trigger('openClose', [
77
+ transition(':enter', [animate('0.2s ease-out', style({ opacity: 1 }))]),
78
+ transition(':leave', [animate('0.2s ease-in', style({ opacity: 0 }))]),
79
+ ]),
80
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div [ngClass]=\"cssClass\" [@openClose] *ngIf=\"visible\" class=\"alert-container\">\n <div class=\"alert-text\">\n <ui-icon [name]=\"iconName\" size=\"24\"></ui-icon>\n {{ message }}\n <a *ngIf=\"!!linkText\" [target]=\"linkTarget\" [href]=\"linkUrl\">{{ linkText }}</a>\n </div>\n <ui-button\n *ngIf=\"includeDismissButton\"\n type=\"text\"\n [justIcon]=\"true\"\n class=\"close\"\n iconName=\"Close\"\n (buttonClickEvent)=\"dismissClick()\"\n ></ui-button>\n</div>\n", styles: [":host{display:flex;width:100%;justify-content:center}:host .snackbar-container{max-width:600px}:host .alert-container,:host .snackbar-container{margin:0 auto;display:flex;padding:0 14px;border-radius:4px;align-items:center;justify-content:space-between;opacity:1;min-height:48px}:host .alert-container.fixed,:host .snackbar-container.fixed{position:fixed}:host .alert-container.static,:host .snackbar-container.static{position:relative}:host .alert-container ui-icon,:host .snackbar-container ui-icon{margin-right:14px}:host .alert-container ui-button,:host .snackbar-container ui-button{margin-left:14px}:host .alert-container ::ng-deep button.mat-mdc-unelevated-button.big,:host .snackbar-container ::ng-deep button.mat-mdc-unelevated-button.big{padding:0;min-width:auto}:host .alert-container .alert-text,:host .alert-container .snackbar-text,:host .snackbar-container .alert-text,:host .snackbar-container .snackbar-text{display:flex;align-items:center;color:#000}:host .alert-container .alert-text a,:host .alert-container .snackbar-text a,:host .snackbar-container .alert-text a,:host .snackbar-container .snackbar-text a{color:#000;text-decoration:underline;font-weight:700}:host .alert-container .alert-text a:hover,:host .alert-container .alert-text a:visited,:host .alert-container .alert-text a:focus,:host .alert-container .snackbar-text a:hover,:host .alert-container .snackbar-text a:visited,:host .alert-container .snackbar-text a:focus,:host .snackbar-container .alert-text a:hover,:host .snackbar-container .alert-text a:visited,:host .snackbar-container .alert-text a:focus,:host .snackbar-container .snackbar-text a:hover,:host .snackbar-container .snackbar-text a:visited,:host .snackbar-container .snackbar-text a:focus{text-decoration:none}:host .alert-container.success,:host .snackbar-container.success{background-color:#cbd6cb}:host .alert-container.info,:host .snackbar-container.info{background-color:#c8d7de}:host .alert-container.warning,:host .snackbar-container.warning{background-color:#f0d6bb}:host .alert-container.error,:host .snackbar-container.error{background-color:#e3c3c6}@media (max-width: 600px){:host .alert-container,:host .snackbar-container{padding:8px 14px}}:host .alert-container.fixed{top:0;z-index:98}:host .alert-container.full-width{width:100%;min-width:100%}:host .alert-container a{margin-left:7px}\n"] }]
81
+ }], ctorParameters: function () { return []; }, propDecorators: { alertType: [{
82
+ type: Input
83
+ }], message: [{
84
+ type: Input
85
+ }], includeDismissButton: [{
86
+ type: Input
87
+ }], fixed: [{
88
+ type: Input
89
+ }], fullWidth: [{
90
+ type: Input
91
+ }], linkText: [{
92
+ type: Input
93
+ }], linkUrl: [{
94
+ type: Input
95
+ }], linkTarget: [{
96
+ type: Input
97
+ }] } });
98
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQtYmFubmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2FsZXJ0LWJhbm5lci9hbGVydC1iYW5uZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYWxlcnQtYmFubmVyL2FsZXJ0LWJhbm5lci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsT0FBTyxFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUUsT0FBTyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDMUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFHbEYsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDhCQUE4QixDQUFDOzs7OztBQWU3RCxNQUFNLE9BQU8sb0JBQW9CO0lBQy9CO1FBRUE7Ozs7O1dBS0c7UUFDTSxjQUFTLEdBQWlCLFNBQVMsQ0FBQztRQUU3Qzs7OztXQUlHO1FBQ00sWUFBTyxHQUFHLEVBQUUsQ0FBQztRQUV0Qjs7OztXQUlHO1FBQ00seUJBQW9CLEdBQUcsSUFBSSxDQUFDO1FBRXJDOzs7O1dBSUc7UUFDTSxVQUFLLEdBQUcsS0FBSyxDQUFDO1FBRXZCOzs7O1dBSUc7UUFDTSxjQUFTLEdBQUcsSUFBSSxDQUFDO1FBRTFCOzs7O1dBSUc7UUFDTSxhQUFRLEdBQUksRUFBRSxDQUFDO1FBU3hCOzs7OztXQUtHO1FBQ00sZUFBVSxHQUFvQixRQUFRLENBQUM7UUFHaEQsWUFBTyxHQUFHLElBQUksQ0FBQztJQTdEQSxDQUFDO0lBaUVoQixRQUFRO1FBQ04sSUFBSSxDQUFDLFFBQVEsR0FBRyxhQUFhLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQztRQUN0RCxJQUFJLENBQUMsUUFBUSxHQUFHLGFBQWEsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3RELElBQUksQ0FBQyxRQUFRLEdBQUcsYUFBYSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxTQUFTLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQzNGLENBQUM7SUFFRCw4Q0FBOEM7SUFDOUMsWUFBWTtRQUNWLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxDQUFDO0lBQ3ZCLENBQUM7K0dBM0VVLG9CQUFvQjttR0FBcEIsb0JBQW9CLHlRQ25CakMsdWZBZUEsMDVGREpjO1lBQ1YsT0FBTyxDQUFDLFdBQVcsRUFBRTtnQkFDbkIsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDLE9BQU8sQ0FBQyxlQUFlLEVBQUUsS0FBSyxDQUFDLEVBQUUsT0FBTyxFQUFFLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO2dCQUN2RSxVQUFVLENBQUMsUUFBUSxFQUFFLENBQUMsT0FBTyxDQUFDLGNBQWMsRUFBRSxLQUFLLENBQUMsRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUM7YUFDdkUsQ0FBQztTQUNIOzs0RkFHVSxvQkFBb0I7a0JBWmhDLFNBQVM7K0JBQ0UsaUJBQWlCLGNBR2Y7d0JBQ1YsT0FBTyxDQUFDLFdBQVcsRUFBRTs0QkFDbkIsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDLE9BQU8sQ0FBQyxlQUFlLEVBQUUsS0FBSyxDQUFDLEVBQUUsT0FBTyxFQUFFLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDOzRCQUN2RSxVQUFVLENBQUMsUUFBUSxFQUFFLENBQUMsT0FBTyxDQUFDLGNBQWMsRUFBRSxLQUFLLENBQUMsRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUM7eUJBQ3ZFLENBQUM7cUJBQ0gsbUJBQ2dCLHVCQUF1QixDQUFDLE1BQU07MEVBV3RDLFNBQVM7c0JBQWpCLEtBQUs7Z0JBT0csT0FBTztzQkFBZixLQUFLO2dCQU9HLG9CQUFvQjtzQkFBNUIsS0FBSztnQkFPRyxLQUFLO3NCQUFiLEtBQUs7Z0JBT0csU0FBUztzQkFBakIsS0FBSztnQkFPRyxRQUFRO3NCQUFoQixLQUFLO2dCQU9HLE9BQU87c0JBQWYsS0FBSztnQkFRRyxVQUFVO3NCQUFsQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYW5pbWF0ZSwgc3R5bGUsIHRyYW5zaXRpb24sIHRyaWdnZXIgfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEljb25OYW1lIH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cy9pY29uL2ljb24ubW9kZWwnO1xuaW1wb3J0IHsgQWxlcnRCYXJUeXBlIH0gZnJvbSAnLi4vLi4vdXRpbHMvYWxlcnQtYmFyLm1vZGVsJztcbmltcG9ydCB7IGFsZXJ0QmFyc1V0aWwgfSBmcm9tICcuLi8uLi91dGlscy9hbGVydC1iYXJzLnV0aWxzJztcbmltcG9ydCB7IExpbmtUYXJnZXRUeXBlIH0gZnJvbSAnLi9hbGVydC1iYW5uZXIubW9kZWwnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICd1aS1hbGVydC1iYW5uZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vYWxlcnQtYmFubmVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYWxlcnQtYmFubmVyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGFuaW1hdGlvbnM6IFtcbiAgICB0cmlnZ2VyKCdvcGVuQ2xvc2UnLCBbXG4gICAgICB0cmFuc2l0aW9uKCc6ZW50ZXInLCBbYW5pbWF0ZSgnMC4ycyBlYXNlLW91dCcsIHN0eWxlKHsgb3BhY2l0eTogMSB9KSldKSxcbiAgICAgIHRyYW5zaXRpb24oJzpsZWF2ZScsIFthbmltYXRlKCcwLjJzIGVhc2UtaW4nLCBzdHlsZSh7IG9wYWNpdHk6IDAgfSkpXSksXG4gICAgXSksXG4gIF0sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBBbGVydEJhbm5lckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIGNvbnN0cnVjdG9yKCkge31cblxuICAvKipcbiAgICogQWxlcnQgQmFubmVyIHR5cGVcbiAgICpcbiAgICogQHR5cGUge0FsZXJ0QmFyVHlwZX1cbiAgICogQG1lbWJlcm9mIEFsZXJ0QmFubmVyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBhbGVydFR5cGU6IEFsZXJ0QmFyVHlwZSA9ICdzdWNjZXNzJztcblxuICAvKipcbiAgICogQWxlcnQgYmFubmVyIG1lc3NhZ2VcbiAgICpcbiAgICogQG1lbWJlcm9mIEFsZXJ0QmFubmVyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBtZXNzYWdlID0gJyc7XG5cbiAgLyoqXG4gICAqIEluY2x1ZGUgZGlzbW1pc3MgYnV0dG9uXG4gICAqXG4gICAqIEBtZW1iZXJvZiBBbGVydEJhbm5lckNvbXBvbmVudFxuICAgKi9cbiAgQElucHV0KCkgaW5jbHVkZURpc21pc3NCdXR0b24gPSB0cnVlO1xuXG4gIC8qKlxuICAgKiBTdGF0aWMgb3IgZml4ZWQgcG9zaXRpb25cbiAgICpcbiAgICogQG1lbWJlcm9mIEFsZXJ0QmFubmVyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBmaXhlZCA9IGZhbHNlO1xuXG4gIC8qKlxuICAgKiBGdWxsIHdpZHRoIGZvciBhbGVydCBiYW5uZXJcbiAgICpcbiAgICogQG1lbWJlcm9mIEFsZXJ0QmFubmVyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBmdWxsV2lkdGggPSB0cnVlO1xuXG4gIC8qKlxuICAgKiBMaW5rIHRleHQgdGhhdCB3aWxsIGFwcGVuZGVkIGF0IHRoZSBlbmQgb2YgbWVzc2FnZVxuICAgKlxuICAgKiBAbWVtYmVyb2YgQWxlcnRCYW5uZXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIGxpbmtUZXh0PyA9ICcnO1xuXG4gIC8qKlxuICAgKiBMaW5rIHVybFxuICAgKlxuICAgKiBAbWVtYmVyb2YgQWxlcnRCYW5uZXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIGxpbmtVcmw/OiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIExpbmsgdGFyZ2V0XG4gICAqXG4gICAqIEB0eXBlIHtAdHlwZSB7TGlua1RhcmdldFR5cGV9fVxuICAgKiBAbWVtYmVyb2YgQWxlcnRCYW5uZXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIGxpbmtUYXJnZXQ/OiBMaW5rVGFyZ2V0VHlwZSA9ICdfYmxhbmsnO1xuXG4gIGljb25OYW1lOiBJY29uTmFtZTtcbiAgdmlzaWJsZSA9IHRydWU7XG4gIHBvc2l0aW9uOiBzdHJpbmc7XG4gIGNzc0NsYXNzOiBzdHJpbmc7XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5pY29uTmFtZSA9IGFsZXJ0QmFyc1V0aWwuc2V0SWNvbih0aGlzLmFsZXJ0VHlwZSk7XG4gICAgdGhpcy5wb3NpdGlvbiA9IGFsZXJ0QmFyc1V0aWwuc2V0UG9zaXRpb24odGhpcy5maXhlZCk7XG4gICAgdGhpcy5jc3NDbGFzcyA9IGFsZXJ0QmFyc1V0aWwuc2V0Q3NzQ2xhc3ModGhpcy5mdWxsV2lkdGgsIHRoaXMuYWxlcnRUeXBlLCB0aGlzLnBvc2l0aW9uKTtcbiAgfVxuXG4gIC8vSGlkZSBzbmFja2JhciB3aGVuIGRpc21pc3MgYnV0dG9uIGlzIGNsaWNrZWRcbiAgZGlzbWlzc0NsaWNrKCkge1xuICAgIHRoaXMudmlzaWJsZSA9IGZhbHNlO1xuICB9XG59XG4iLCI8ZGl2IFtuZ0NsYXNzXT1cImNzc0NsYXNzXCIgW0BvcGVuQ2xvc2VdICpuZ0lmPVwidmlzaWJsZVwiIGNsYXNzPVwiYWxlcnQtY29udGFpbmVyXCI+XG4gIDxkaXYgY2xhc3M9XCJhbGVydC10ZXh0XCI+XG4gICAgPHVpLWljb24gW25hbWVdPVwiaWNvbk5hbWVcIiBzaXplPVwiMjRcIj48L3VpLWljb24+XG4gICAge3sgbWVzc2FnZSB9fVxuICAgIDxhICpuZ0lmPVwiISFsaW5rVGV4dFwiIFt0YXJnZXRdPVwibGlua1RhcmdldFwiIFtocmVmXT1cImxpbmtVcmxcIj57eyBsaW5rVGV4dCB9fTwvYT5cbiAgPC9kaXY+XG4gIDx1aS1idXR0b25cbiAgICAqbmdJZj1cImluY2x1ZGVEaXNtaXNzQnV0dG9uXCJcbiAgICB0eXBlPVwidGV4dFwiXG4gICAgW2p1c3RJY29uXT1cInRydWVcIlxuICAgIGNsYXNzPVwiY2xvc2VcIlxuICAgIGljb25OYW1lPVwiQ2xvc2VcIlxuICAgIChidXR0b25DbGlja0V2ZW50KT1cImRpc21pc3NDbGljaygpXCJcbiAgPjwvdWktYnV0dG9uPlxuPC9kaXY+XG4iXX0=
@@ -5,11 +5,11 @@ import { IconComponentModule } from '../icon/icon.component.module';
5
5
  import { AlertBannerComponent } from './alert-banner.component';
6
6
  import * as i0 from "@angular/core";
7
7
  export class AlertBannerComponentModule {
8
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertBannerComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
9
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: AlertBannerComponentModule, declarations: [AlertBannerComponent], imports: [CommonModule, ButtonComponentModule, IconComponentModule], exports: [AlertBannerComponent] }); }
10
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertBannerComponentModule, imports: [CommonModule, ButtonComponentModule, IconComponentModule] }); }
8
11
  }
9
- AlertBannerComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AlertBannerComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10
- AlertBannerComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: AlertBannerComponentModule, declarations: [AlertBannerComponent], imports: [CommonModule, ButtonComponentModule, IconComponentModule], exports: [AlertBannerComponent] });
11
- AlertBannerComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AlertBannerComponentModule, imports: [CommonModule, ButtonComponentModule, IconComponentModule] });
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AlertBannerComponentModule, decorators: [{
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertBannerComponentModule, decorators: [{
13
13
  type: NgModule,
14
14
  args: [{
15
15
  declarations: [AlertBannerComponent],
@@ -17,4 +17,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
17
17
  exports: [AlertBannerComponent],
18
18
  }]
19
19
  }] });
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQtYmFubmVyLmNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9hbGVydC1iYW5uZXIvYWxlcnQtYmFubmVyLmNvbXBvbmVudC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDMUUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDcEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBT2hFLE1BQU0sT0FBTywwQkFBMEI7O3VIQUExQiwwQkFBMEI7d0hBQTFCLDBCQUEwQixpQkFKdEIsb0JBQW9CLGFBQ3pCLFlBQVksRUFBRSxxQkFBcUIsRUFBRSxtQkFBbUIsYUFDeEQsb0JBQW9CO3dIQUVuQiwwQkFBMEIsWUFIM0IsWUFBWSxFQUFFLHFCQUFxQixFQUFFLG1CQUFtQjsyRkFHdkQsMEJBQTBCO2tCQUx0QyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLG9CQUFvQixDQUFDO29CQUNwQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUscUJBQXFCLEVBQUUsbUJBQW1CLENBQUM7b0JBQ25FLE9BQU8sRUFBRSxDQUFDLG9CQUFvQixDQUFDO2lCQUNoQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi4vYnV0dG9uL2J1dHRvbi5jb21wb25lbnQubW9kdWxlJztcbmltcG9ydCB7IEljb25Db21wb25lbnRNb2R1bGUgfSBmcm9tICcuLi9pY29uL2ljb24uY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBBbGVydEJhbm5lckNvbXBvbmVudCB9IGZyb20gJy4vYWxlcnQtYmFubmVyLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0FsZXJ0QmFubmVyQ29tcG9uZW50XSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQnV0dG9uQ29tcG9uZW50TW9kdWxlLCBJY29uQ29tcG9uZW50TW9kdWxlXSxcbiAgZXhwb3J0czogW0FsZXJ0QmFubmVyQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgQWxlcnRCYW5uZXJDb21wb25lbnRNb2R1bGUge31cbiJdfQ==
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQtYmFubmVyLmNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9hbGVydC1iYW5uZXIvYWxlcnQtYmFubmVyLmNvbXBvbmVudC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDMUUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDcEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBT2hFLE1BQU0sT0FBTywwQkFBMEI7K0dBQTFCLDBCQUEwQjtnSEFBMUIsMEJBQTBCLGlCQUp0QixvQkFBb0IsYUFDekIsWUFBWSxFQUFFLHFCQUFxQixFQUFFLG1CQUFtQixhQUN4RCxvQkFBb0I7Z0hBRW5CLDBCQUEwQixZQUgzQixZQUFZLEVBQUUscUJBQXFCLEVBQUUsbUJBQW1COzs0RkFHdkQsMEJBQTBCO2tCQUx0QyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLG9CQUFvQixDQUFDO29CQUNwQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUscUJBQXFCLEVBQUUsbUJBQW1CLENBQUM7b0JBQ25FLE9BQU8sRUFBRSxDQUFDLG9CQUFvQixDQUFDO2lCQUNoQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi4vYnV0dG9uL2J1dHRvbi5jb21wb25lbnQubW9kdWxlJztcbmltcG9ydCB7IEljb25Db21wb25lbnRNb2R1bGUgfSBmcm9tICcuLi9pY29uL2ljb24uY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBBbGVydEJhbm5lckNvbXBvbmVudCB9IGZyb20gJy4vYWxlcnQtYmFubmVyLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0FsZXJ0QmFubmVyQ29tcG9uZW50XSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQnV0dG9uQ29tcG9uZW50TW9kdWxlLCBJY29uQ29tcG9uZW50TW9kdWxlXSxcbiAgZXhwb3J0czogW0FsZXJ0QmFubmVyQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgQWxlcnRCYW5uZXJDb21wb25lbnRNb2R1bGUge31cbiJdfQ==
@@ -52,10 +52,10 @@ export class AvatarComponent {
52
52
  get clickAllowance() {
53
53
  return this.allowClick ? 'clickable' : 'non-clickable';
54
54
  }
55
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
56
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AvatarComponent, selector: "ui-avatar", inputs: { size: "size", imageUrl: "imageUrl", name: "name", tooltipText: "tooltipText", allowClick: "allowClick" }, outputs: { avatarClick: "avatarClick" }, ngImport: i0, template: "<div\n class=\"avatar-container\"\n [attr.type]=\"!imageUrl && !name ? 'icon' : 'initials'\"\n [ngClass]=\"[size, clickAllowance]\"\n (click)=\"onAvatarClick()\"\n>\n <span *ngIf=\"name && !imageUrl\">\n {{ name | nameInitials }}\n </span>\n <img *ngIf=\"imageUrl\" [attr.src]=\"imageUrl\" [alt]=\"'profile-image'\">\n <ui-icon color=\"dark\" [size]=\"iconSize[size]\" *ngIf=\"!imageUrl && !name\" [name]=\"'User-profile'\"></ui-icon>\n</div>\n\n", styles: [":host .clickable{cursor:pointer}:host .non-clickable{pointer-events:none}:host .avatar-container{font-family:Open Sans,sans-serif;font-weight:400;display:flex;justify-content:center;align-items:center;border-radius:100%;background:#CBD6CB;position:relative;-webkit-user-select:none;user-select:none}:host .avatar-container[type=icon]{background:#E0E0E0}:host .avatar-container img{width:100%;height:100%;object-fit:cover;border-radius:100%}:host .avatar-container.small{width:24px;height:24px;font-size:10px}:host .avatar-container.medium{width:48px;height:48px;font-size:20px}:host .avatar-container.large{width:120px;height:120px;font-size:50px;letter-spacing:-2}:host .avatar-container .edit-avatar{display:flex;justify-content:center;align-items:center;position:absolute;right:0;bottom:0;background:#F6F6F6;width:32px;height:32px;border-radius:100%;cursor:pointer;-webkit-backdrop-filter:drop-shadow(0px 8px 24px 4px #000000,8%);backdrop-filter:drop-shadow(0px 8px 24px 4px #000000,8%)}:host .avatar-container .edit-avatar:hover{background:#EDEDED}:host .avatar-container .edit-avatar:active{background:#E0E0E0}:host .avatar-container .edit-avatar:focus{outline:1px dashed #888888;outline-offset:4px}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color"] }, { kind: "pipe", type: i3.NameInitialsPipe, name: "nameInitials" }] }); }
55
57
  }
56
- AvatarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57
- AvatarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AvatarComponent, selector: "ui-avatar", inputs: { size: "size", imageUrl: "imageUrl", name: "name", tooltipText: "tooltipText", allowClick: "allowClick" }, outputs: { avatarClick: "avatarClick" }, ngImport: i0, template: "<div\n class=\"avatar-container\"\n [attr.type]=\"!imageUrl && !name ? 'icon' : 'initials'\"\n [ngClass]=\"[size, clickAllowance]\"\n (click)=\"onAvatarClick()\"\n>\n <span *ngIf=\"name && !imageUrl\">\n {{ name | nameInitials }}\n </span>\n <img *ngIf=\"imageUrl\" [attr.src]=\"imageUrl\" [alt]=\"'profile-image'\">\n <ui-icon color=\"dark\" [size]=\"iconSize[size]\" *ngIf=\"!imageUrl && !name\" [name]=\"'User-profile'\"></ui-icon>\n</div>\n\n", styles: [":host .clickable{cursor:pointer}:host .non-clickable{pointer-events:none}:host .avatar-container{font-family:Open Sans,sans-serif;font-weight:400;display:flex;justify-content:center;align-items:center;border-radius:100%;background:#CBD6CB;position:relative;-webkit-user-select:none;user-select:none}:host .avatar-container[type=icon]{background:#E0E0E0}:host .avatar-container img{width:100%;height:100%;object-fit:cover;border-radius:100%}:host .avatar-container.small{width:24px;height:24px;font-size:10px}:host .avatar-container.medium{width:48px;height:48px;font-size:20px}:host .avatar-container.large{width:120px;height:120px;font-size:50px;letter-spacing:-2}:host .avatar-container .edit-avatar{display:flex;justify-content:center;align-items:center;position:absolute;right:0;bottom:0;background:#F6F6F6;width:32px;height:32px;border-radius:100%;cursor:pointer;-webkit-backdrop-filter:drop-shadow(0px 8px 24px 4px #000000,8%);backdrop-filter:drop-shadow(0px 8px 24px 4px #000000,8%)}:host .avatar-container .edit-avatar:hover{background:#EDEDED}:host .avatar-container .edit-avatar:active{background:#E0E0E0}:host .avatar-container .edit-avatar:focus{outline:1px dashed #888888;outline-offset:4px}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color"] }, { kind: "pipe", type: i3.NameInitialsPipe, name: "nameInitials" }] });
58
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AvatarComponent, decorators: [{
58
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AvatarComponent, decorators: [{
59
59
  type: Component,
60
60
  args: [{ selector: 'ui-avatar', template: "<div\n class=\"avatar-container\"\n [attr.type]=\"!imageUrl && !name ? 'icon' : 'initials'\"\n [ngClass]=\"[size, clickAllowance]\"\n (click)=\"onAvatarClick()\"\n>\n <span *ngIf=\"name && !imageUrl\">\n {{ name | nameInitials }}\n </span>\n <img *ngIf=\"imageUrl\" [attr.src]=\"imageUrl\" [alt]=\"'profile-image'\">\n <ui-icon color=\"dark\" [size]=\"iconSize[size]\" *ngIf=\"!imageUrl && !name\" [name]=\"'User-profile'\"></ui-icon>\n</div>\n\n", styles: [":host .clickable{cursor:pointer}:host .non-clickable{pointer-events:none}:host .avatar-container{font-family:Open Sans,sans-serif;font-weight:400;display:flex;justify-content:center;align-items:center;border-radius:100%;background:#CBD6CB;position:relative;-webkit-user-select:none;user-select:none}:host .avatar-container[type=icon]{background:#E0E0E0}:host .avatar-container img{width:100%;height:100%;object-fit:cover;border-radius:100%}:host .avatar-container.small{width:24px;height:24px;font-size:10px}:host .avatar-container.medium{width:48px;height:48px;font-size:20px}:host .avatar-container.large{width:120px;height:120px;font-size:50px;letter-spacing:-2}:host .avatar-container .edit-avatar{display:flex;justify-content:center;align-items:center;position:absolute;right:0;bottom:0;background:#F6F6F6;width:32px;height:32px;border-radius:100%;cursor:pointer;-webkit-backdrop-filter:drop-shadow(0px 8px 24px 4px #000000,8%);backdrop-filter:drop-shadow(0px 8px 24px 4px #000000,8%)}:host .avatar-container .edit-avatar:hover{background:#EDEDED}:host .avatar-container .edit-avatar:active{background:#E0E0E0}:host .avatar-container .edit-avatar:focus{outline:1px dashed #888888;outline-offset:4px}\n"] }]
61
61
  }], propDecorators: { size: [{
@@ -71,4 +71,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
71
71
  }], avatarClick: [{
72
72
  type: Output
73
73
  }] } });
74
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2F2YXRhci9hdmF0YXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXZhdGFyL2F2YXRhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7O0FBT3RELE1BQU0sT0FBTyxlQUFlO0lBTDVCO1FBTUU7Ozs7O1dBS0c7UUFDTSxTQUFJLEdBQUcsVUFBVSxDQUFDLEtBQUssQ0FBQztRQUNqQzs7OztXQUlHO1FBQ00sYUFBUSxHQUFHLEVBQUUsQ0FBQztRQUV2Qjs7OztXQUlHO1FBQ00sU0FBSSxHQUFHLEVBQUUsQ0FBQztRQUVuQjs7OztXQUlHO1FBQ00sZ0JBQVcsR0FBRyxFQUFFLENBQUM7UUFFMUI7Ozs7V0FJRztRQUNNLGVBQVUsR0FBRyxLQUFLLENBQUM7UUFFNUI7Ozs7V0FJRztRQUNPLGdCQUFXLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUV2QyxhQUFRLEdBQUcsUUFBUSxDQUFDO1FBQ3BCLGVBQVUsR0FBRyxVQUFVLENBQUM7S0FTbkM7SUFQVyxhQUFhO1FBQ3JCLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDMUIsQ0FBQztJQUVELElBQUksY0FBYztRQUNoQixPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsZUFBZSxDQUFDO0lBQ3pELENBQUM7OzRHQXBEVSxlQUFlO2dHQUFmLGVBQWUsOE1DUjVCLDJjQWFBOzJGRExhLGVBQWU7a0JBTDNCLFNBQVM7K0JBQ0UsV0FBVzs4QkFXWixJQUFJO3NCQUFaLEtBQUs7Z0JBTUcsUUFBUTtzQkFBaEIsS0FBSztnQkFPRyxJQUFJO3NCQUFaLEtBQUs7Z0JBT0csV0FBVztzQkFBbkIsS0FBSztnQkFPRyxVQUFVO3NCQUFsQixLQUFLO2dCQU9JLFdBQVc7c0JBQXBCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQXZhdGFyU2l6ZSwgaWNvblNpemUgfSBmcm9tICcuL2F2YXRhci5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3VpLWF2YXRhcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9hdmF0YXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hdmF0YXIuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgQXZhdGFyQ29tcG9uZW50IHtcbiAgLyoqXG4gICAqIElucHV0IHByb3BlcnR5IGZvciBzcGVjaWZ5aW5nIHRoZSBzaXplIG9mIHRoZSBhdmF0YXIuXG4gICAqIEB0eXBlIHtBdmF0YXJTaXplfVxuICAgKiBAZGVmYXVsdCBBdmF0YXJTaXplLlNNQUxMXG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIHNpemUgPSBBdmF0YXJTaXplLlNNQUxMO1xuICAvKipcbiAgICogSW5wdXQgcHJvcGVydHkgZm9yIHNwZWNpZnlpbmcgdGhlIFVSTCBvZiB0aGUgaW1hZ2UgdG8gZGlzcGxheSBpbiB0aGUgYXZhdGFyLlxuICAgKiBAdHlwZSB7c3RyaW5nfVxuICAgKiBAbWVtYmVyb2YgQXZhdGFyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBpbWFnZVVybCA9ICcnO1xuXG4gIC8qKlxuICAgKiBJbnB1dCBwcm9wZXJ0eSBmb3Igc3BlY2lmeWluZyB0aGUgaW5pdGlhbHMgdG8gZGlzcGxheSBpbiB0aGUgYXZhdGFyLlxuICAgKiBAdHlwZSB7c3RyaW5nfVxuICAgKiBAbWVtYmVyb2YgQXZhdGFyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBuYW1lID0gJyc7XG5cbiAgLyoqXG4gICAqIElucHV0IHByb3BlcnR5IGZvciBzcGVjaWZ5aW5nIHRoZSB0b29sdGlwIHRleHQgZm9yIGVkaXQuXG4gICAqIEB0eXBlIHtzdHJpbmd9XG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIHRvb2x0aXBUZXh0ID0gJyc7XG5cbiAgLyoqXG4gICAqIElucHV0IHByb3BlcnR5IHRoYXQgbWFrZXMgYXZhdGFyIGNsaWNrYWJsZS5cbiAgICogQHR5cGUge2Jvb2xlYW59XG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIGFsbG93Q2xpY2sgPSBmYWxzZTtcblxuICAvKipcbiAgICogRXZlbnQgZW1pdHRlZCB3aGVuIHRoZSBhdmF0YXIgaXMgY2xpY2tlZC5cbiAgICogQHR5cGUge3ZvaWR9XG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBPdXRwdXQoKSBhdmF0YXJDbGljayA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcblxuICBwcm90ZWN0ZWQgaWNvblNpemUgPSBpY29uU2l6ZTtcbiAgcHJvdGVjdGVkIGF2YXRhclNpemUgPSBBdmF0YXJTaXplO1xuXG4gIHByb3RlY3RlZCBvbkF2YXRhckNsaWNrKCk6IHZvaWQge1xuICAgIHRoaXMuYXZhdGFyQ2xpY2suZW1pdCgpO1xuICB9XG5cbiAgZ2V0IGNsaWNrQWxsb3dhbmNlKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuYWxsb3dDbGljayA/ICdjbGlja2FibGUnIDogJ25vbi1jbGlja2FibGUnO1xuICB9XG59XG4iLCI8ZGl2XG4gIGNsYXNzPVwiYXZhdGFyLWNvbnRhaW5lclwiXG4gIFthdHRyLnR5cGVdPVwiIWltYWdlVXJsICYmICFuYW1lID8gJ2ljb24nIDogJ2luaXRpYWxzJ1wiXG4gIFtuZ0NsYXNzXT1cIltzaXplLCBjbGlja0FsbG93YW5jZV1cIlxuICAoY2xpY2spPVwib25BdmF0YXJDbGljaygpXCJcbj5cbiAgPHNwYW4gKm5nSWY9XCJuYW1lICYmICFpbWFnZVVybFwiPlxuICAgIHt7IG5hbWUgfCBuYW1lSW5pdGlhbHMgfX1cbiAgPC9zcGFuPlxuICA8aW1nICpuZ0lmPVwiaW1hZ2VVcmxcIiBbYXR0ci5zcmNdPVwiaW1hZ2VVcmxcIiBbYWx0XT1cIidwcm9maWxlLWltYWdlJ1wiPlxuICA8dWktaWNvbiBjb2xvcj1cImRhcmtcIiBbc2l6ZV09XCJpY29uU2l6ZVtzaXplXVwiICpuZ0lmPVwiIWltYWdlVXJsICYmICFuYW1lXCIgW25hbWVdPVwiJ1VzZXItcHJvZmlsZSdcIj48L3VpLWljb24+XG48L2Rpdj5cblxuIl19
74
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2F2YXRhci9hdmF0YXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXZhdGFyL2F2YXRhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7O0FBT3RELE1BQU0sT0FBTyxlQUFlO0lBTDVCO1FBTUU7Ozs7O1dBS0c7UUFDTSxTQUFJLEdBQUcsVUFBVSxDQUFDLEtBQUssQ0FBQztRQUNqQzs7OztXQUlHO1FBQ00sYUFBUSxHQUFHLEVBQUUsQ0FBQztRQUV2Qjs7OztXQUlHO1FBQ00sU0FBSSxHQUFHLEVBQUUsQ0FBQztRQUVuQjs7OztXQUlHO1FBQ00sZ0JBQVcsR0FBRyxFQUFFLENBQUM7UUFFMUI7Ozs7V0FJRztRQUNNLGVBQVUsR0FBRyxLQUFLLENBQUM7UUFFNUI7Ozs7V0FJRztRQUNPLGdCQUFXLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUV2QyxhQUFRLEdBQUcsUUFBUSxDQUFDO1FBQ3BCLGVBQVUsR0FBRyxVQUFVLENBQUM7S0FTbkM7SUFQVyxhQUFhO1FBQ3JCLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDMUIsQ0FBQztJQUVELElBQUksY0FBYztRQUNoQixPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsZUFBZSxDQUFDO0lBQ3pELENBQUM7K0dBcERVLGVBQWU7bUdBQWYsZUFBZSw4TUNSNUIsMmNBYUE7OzRGRExhLGVBQWU7a0JBTDNCLFNBQVM7K0JBQ0UsV0FBVzs4QkFXWixJQUFJO3NCQUFaLEtBQUs7Z0JBTUcsUUFBUTtzQkFBaEIsS0FBSztnQkFPRyxJQUFJO3NCQUFaLEtBQUs7Z0JBT0csV0FBVztzQkFBbkIsS0FBSztnQkFPRyxVQUFVO3NCQUFsQixLQUFLO2dCQU9JLFdBQVc7c0JBQXBCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQXZhdGFyU2l6ZSwgaWNvblNpemUgfSBmcm9tICcuL2F2YXRhci5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3VpLWF2YXRhcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9hdmF0YXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hdmF0YXIuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgQXZhdGFyQ29tcG9uZW50IHtcbiAgLyoqXG4gICAqIElucHV0IHByb3BlcnR5IGZvciBzcGVjaWZ5aW5nIHRoZSBzaXplIG9mIHRoZSBhdmF0YXIuXG4gICAqIEB0eXBlIHtBdmF0YXJTaXplfVxuICAgKiBAZGVmYXVsdCBBdmF0YXJTaXplLlNNQUxMXG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIHNpemUgPSBBdmF0YXJTaXplLlNNQUxMO1xuICAvKipcbiAgICogSW5wdXQgcHJvcGVydHkgZm9yIHNwZWNpZnlpbmcgdGhlIFVSTCBvZiB0aGUgaW1hZ2UgdG8gZGlzcGxheSBpbiB0aGUgYXZhdGFyLlxuICAgKiBAdHlwZSB7c3RyaW5nfVxuICAgKiBAbWVtYmVyb2YgQXZhdGFyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBpbWFnZVVybCA9ICcnO1xuXG4gIC8qKlxuICAgKiBJbnB1dCBwcm9wZXJ0eSBmb3Igc3BlY2lmeWluZyB0aGUgaW5pdGlhbHMgdG8gZGlzcGxheSBpbiB0aGUgYXZhdGFyLlxuICAgKiBAdHlwZSB7c3RyaW5nfVxuICAgKiBAbWVtYmVyb2YgQXZhdGFyQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBuYW1lID0gJyc7XG5cbiAgLyoqXG4gICAqIElucHV0IHByb3BlcnR5IGZvciBzcGVjaWZ5aW5nIHRoZSB0b29sdGlwIHRleHQgZm9yIGVkaXQuXG4gICAqIEB0eXBlIHtzdHJpbmd9XG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIHRvb2x0aXBUZXh0ID0gJyc7XG5cbiAgLyoqXG4gICAqIElucHV0IHByb3BlcnR5IHRoYXQgbWFrZXMgYXZhdGFyIGNsaWNrYWJsZS5cbiAgICogQHR5cGUge2Jvb2xlYW59XG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIGFsbG93Q2xpY2sgPSBmYWxzZTtcblxuICAvKipcbiAgICogRXZlbnQgZW1pdHRlZCB3aGVuIHRoZSBhdmF0YXIgaXMgY2xpY2tlZC5cbiAgICogQHR5cGUge3ZvaWR9XG4gICAqIEBtZW1iZXJvZiBBdmF0YXJDb21wb25lbnRcbiAgICovXG4gIEBPdXRwdXQoKSBhdmF0YXJDbGljayA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcblxuICBwcm90ZWN0ZWQgaWNvblNpemUgPSBpY29uU2l6ZTtcbiAgcHJvdGVjdGVkIGF2YXRhclNpemUgPSBBdmF0YXJTaXplO1xuXG4gIHByb3RlY3RlZCBvbkF2YXRhckNsaWNrKCk6IHZvaWQge1xuICAgIHRoaXMuYXZhdGFyQ2xpY2suZW1pdCgpO1xuICB9XG5cbiAgZ2V0IGNsaWNrQWxsb3dhbmNlKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuYWxsb3dDbGljayA/ICdjbGlja2FibGUnIDogJ25vbi1jbGlja2FibGUnO1xuICB9XG59XG4iLCI8ZGl2XG4gIGNsYXNzPVwiYXZhdGFyLWNvbnRhaW5lclwiXG4gIFthdHRyLnR5cGVdPVwiIWltYWdlVXJsICYmICFuYW1lID8gJ2ljb24nIDogJ2luaXRpYWxzJ1wiXG4gIFtuZ0NsYXNzXT1cIltzaXplLCBjbGlja0FsbG93YW5jZV1cIlxuICAoY2xpY2spPVwib25BdmF0YXJDbGljaygpXCJcbj5cbiAgPHNwYW4gKm5nSWY9XCJuYW1lICYmICFpbWFnZVVybFwiPlxuICAgIHt7IG5hbWUgfCBuYW1lSW5pdGlhbHMgfX1cbiAgPC9zcGFuPlxuICA8aW1nICpuZ0lmPVwiaW1hZ2VVcmxcIiBbYXR0ci5zcmNdPVwiaW1hZ2VVcmxcIiBbYWx0XT1cIidwcm9maWxlLWltYWdlJ1wiPlxuICA8dWktaWNvbiBjb2xvcj1cImRhcmtcIiBbc2l6ZV09XCJpY29uU2l6ZVtzaXplXVwiICpuZ0lmPVwiIWltYWdlVXJsICYmICFuYW1lXCIgW25hbWVdPVwiJ1VzZXItcHJvZmlsZSdcIj48L3VpLWljb24+XG48L2Rpdj5cblxuIl19
@@ -6,11 +6,11 @@ import { IconComponentModule } from '../icon/icon.component.module';
6
6
  import { MatTooltipModule } from '@angular/material/tooltip';
7
7
  import * as i0 from "@angular/core";
8
8
  export class AvatarComponentModule {
9
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AvatarComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
10
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: AvatarComponentModule, declarations: [AvatarComponent, NameInitialsPipe], imports: [CommonModule, IconComponentModule, MatTooltipModule], exports: [AvatarComponent] }); }
11
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AvatarComponentModule, imports: [CommonModule, IconComponentModule, MatTooltipModule] }); }
9
12
  }
10
- AvatarComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AvatarComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
- AvatarComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: AvatarComponentModule, declarations: [AvatarComponent, NameInitialsPipe], imports: [CommonModule, IconComponentModule, MatTooltipModule], exports: [AvatarComponent] });
12
- AvatarComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AvatarComponentModule, imports: [CommonModule, IconComponentModule, MatTooltipModule] });
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AvatarComponentModule, decorators: [{
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AvatarComponentModule, decorators: [{
14
14
  type: NgModule,
15
15
  args: [{
16
16
  declarations: [AvatarComponent, NameInitialsPipe],
@@ -18,4 +18,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
18
18
  exports: [AvatarComponent],
19
19
  }]
20
20
  }] });
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLmNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9hdmF0YXIvYXZhdGFyLmNvbXBvbmVudC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3JELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ3BFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDOztBQU83RCxNQUFNLE9BQU8scUJBQXFCOztrSEFBckIscUJBQXFCO21IQUFyQixxQkFBcUIsaUJBSmpCLGVBQWUsRUFBRSxnQkFBZ0IsYUFDdEMsWUFBWSxFQUFFLG1CQUFtQixFQUFFLGdCQUFnQixhQUNuRCxlQUFlO21IQUVkLHFCQUFxQixZQUh0QixZQUFZLEVBQUUsbUJBQW1CLEVBQUUsZ0JBQWdCOzJGQUdsRCxxQkFBcUI7a0JBTGpDLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMsZUFBZSxFQUFFLGdCQUFnQixDQUFDO29CQUNqRCxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsbUJBQW1CLEVBQUUsZ0JBQWdCLENBQUM7b0JBQzlELE9BQU8sRUFBRSxDQUFDLGVBQWUsQ0FBQztpQkFDM0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEF2YXRhckNvbXBvbmVudCB9IGZyb20gJy4vYXZhdGFyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBOYW1lSW5pdGlhbHNQaXBlIH0gZnJvbSAnLi4vLi4vcGlwZXMvbmFtZS1pbml0aWFscy5waXBlJztcbmltcG9ydCB7IEljb25Db21wb25lbnRNb2R1bGUgfSBmcm9tICcuLi9pY29uL2ljb24uY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBNYXRUb29sdGlwTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdG9vbHRpcCc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0F2YXRhckNvbXBvbmVudCwgTmFtZUluaXRpYWxzUGlwZV0sXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEljb25Db21wb25lbnRNb2R1bGUsIE1hdFRvb2x0aXBNb2R1bGVdLFxuICBleHBvcnRzOiBbQXZhdGFyQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgQXZhdGFyQ29tcG9uZW50TW9kdWxlIHt9XG4iXX0=
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLmNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9hdmF0YXIvYXZhdGFyLmNvbXBvbmVudC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3JELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ3BFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDOztBQU83RCxNQUFNLE9BQU8scUJBQXFCOytHQUFyQixxQkFBcUI7Z0hBQXJCLHFCQUFxQixpQkFKakIsZUFBZSxFQUFFLGdCQUFnQixhQUN0QyxZQUFZLEVBQUUsbUJBQW1CLEVBQUUsZ0JBQWdCLGFBQ25ELGVBQWU7Z0hBRWQscUJBQXFCLFlBSHRCLFlBQVksRUFBRSxtQkFBbUIsRUFBRSxnQkFBZ0I7OzRGQUdsRCxxQkFBcUI7a0JBTGpDLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMsZUFBZSxFQUFFLGdCQUFnQixDQUFDO29CQUNqRCxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsbUJBQW1CLEVBQUUsZ0JBQWdCLENBQUM7b0JBQzlELE9BQU8sRUFBRSxDQUFDLGVBQWUsQ0FBQztpQkFDM0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEF2YXRhckNvbXBvbmVudCB9IGZyb20gJy4vYXZhdGFyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBOYW1lSW5pdGlhbHNQaXBlIH0gZnJvbSAnLi4vLi4vcGlwZXMvbmFtZS1pbml0aWFscy5waXBlJztcbmltcG9ydCB7IEljb25Db21wb25lbnRNb2R1bGUgfSBmcm9tICcuLi9pY29uL2ljb24uY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBNYXRUb29sdGlwTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdG9vbHRpcCc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0F2YXRhckNvbXBvbmVudCwgTmFtZUluaXRpYWxzUGlwZV0sXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEljb25Db21wb25lbnRNb2R1bGUsIE1hdFRvb2x0aXBNb2R1bGVdLFxuICBleHBvcnRzOiBbQXZhdGFyQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgQXZhdGFyQ29tcG9uZW50TW9kdWxlIHt9XG4iXX0=