@tilde-nlp/ngx-common 3.0.1 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. package/{esm2020 → esm2022}/lib/close-button/close-button.component.mjs +4 -4
  2. package/{esm2020 → esm2022}/lib/close-button/close-button.module.mjs +11 -11
  3. package/{esm2020 → esm2022}/lib/company-product/company-product.component.mjs +4 -4
  4. package/{esm2020 → esm2022}/lib/company-product/company-product.module.mjs +5 -5
  5. package/esm2022/lib/confirmation-modal/confirmation-modal.component.mjs +25 -0
  6. package/esm2022/lib/confirmation-modal/confirmation-modal.module.mjs +21 -0
  7. package/esm2022/lib/confirmation-modal/index.mjs +6 -0
  8. package/esm2022/lib/confirmation-modal/models/confirmation-body.model.mjs +2 -0
  9. package/esm2022/lib/confirmation-modal/models/confirmation.enum.mjs +6 -0
  10. package/esm2022/lib/confirmation-modal/services/confirmation.service.mjs +25 -0
  11. package/esm2022/lib/confirmation-modal/services/index.mjs +2 -0
  12. package/{esm2020 → esm2022}/lib/directives/click-outside/click-outside.directive.mjs +4 -4
  13. package/{esm2020 → esm2022}/lib/directives/click-outside/click-outside.module.mjs +5 -5
  14. package/esm2022/lib/directives/drag-and-drop/drag-and-drop.directive.mjs +62 -0
  15. package/esm2022/lib/directives/drag-and-drop/drag-and-drop.module.mjs +24 -0
  16. package/esm2022/lib/directives/drag-and-drop/index.mjs +3 -0
  17. package/esm2022/lib/directives/index.mjs +4 -0
  18. package/esm2022/lib/directives/mat-button-loading/index.mjs +3 -0
  19. package/esm2022/lib/directives/mat-button-loading/mat-button-loading.directive.mjs +65 -0
  20. package/esm2022/lib/directives/mat-button-loading/mat-button-loading.module.mjs +20 -0
  21. package/esm2022/lib/file-upload/file-upload.component.mjs +107 -0
  22. package/esm2022/lib/file-upload/file-upload.module.mjs +42 -0
  23. package/esm2022/lib/file-upload/index.mjs +4 -0
  24. package/esm2022/lib/file-upload/models/file-upload-error-type.enum.mjs +8 -0
  25. package/esm2022/lib/file-upload/models/file-upload-error.model.mjs +2 -0
  26. package/esm2022/lib/file-upload/models/index.mjs +3 -0
  27. package/esm2022/lib/filter-bar/filter-bar.component.mjs +146 -0
  28. package/esm2022/lib/filter-bar/filter-bar.module.mjs +71 -0
  29. package/esm2022/lib/filter-bar/index.mjs +4 -0
  30. package/esm2022/lib/filter-bar/models/filter-bar-change-event.model.mjs +2 -0
  31. package/esm2022/lib/filter-bar/models/filter-bar-filter-item.model.mjs +2 -0
  32. package/esm2022/lib/filter-bar/models/filter-bar-filter.model.mjs +2 -0
  33. package/esm2022/lib/filter-bar/models/filter-bar-settings.model.mjs +2 -0
  34. package/esm2022/lib/filter-bar/models/index.mjs +4 -0
  35. package/{esm2020 → esm2022}/lib/footer/footer.component.mjs +4 -4
  36. package/{esm2020 → esm2022}/lib/footer/footer.module.mjs +11 -11
  37. package/esm2022/lib/helpers/html-element-parse.helper.mjs +15 -0
  38. package/esm2022/lib/helpers/index.mjs +4 -0
  39. package/{esm2020/lib/helpers/missing-translation-helper.mjs → esm2022/lib/helpers/missing-translation.helper.mjs} +1 -1
  40. package/esm2022/lib/helpers/save-file.helper.mjs +11 -0
  41. package/{esm2020 → esm2022}/lib/inline-message/inline-message.component.mjs +4 -4
  42. package/{esm2020 → esm2022}/lib/inline-message/inline-message.module.mjs +9 -9
  43. package/esm2022/lib/multi-functional-table/constants/disable-export-attribute-name.const.mjs +2 -0
  44. package/esm2022/lib/multi-functional-table/constants/index.mjs +2 -0
  45. package/esm2022/lib/multi-functional-table/index.mjs +5 -0
  46. package/esm2022/lib/multi-functional-table/models/batch-config.model.mjs +2 -0
  47. package/esm2022/lib/multi-functional-table/models/column-config.model.mjs +2 -0
  48. package/esm2022/lib/multi-functional-table/models/column-select-config.model.mjs +2 -0
  49. package/esm2022/lib/multi-functional-table/models/export-config.model.mjs +2 -0
  50. package/esm2022/lib/multi-functional-table/models/export-format.enum.mjs +5 -0
  51. package/esm2022/lib/multi-functional-table/models/filter-config.model.mjs +2 -0
  52. package/esm2022/lib/multi-functional-table/models/index.mjs +8 -0
  53. package/esm2022/lib/multi-functional-table/models/multi-functional-table-config.model.mjs +2 -0
  54. package/esm2022/lib/multi-functional-table/models/no-data-row-config.model.mjs +2 -0
  55. package/esm2022/lib/multi-functional-table/models/selected-column-local-storage-config.model.mjs +2 -0
  56. package/esm2022/lib/multi-functional-table/multi-functional-table.component.mjs +227 -0
  57. package/esm2022/lib/multi-functional-table/multi-functional-table.module.mjs +64 -0
  58. package/esm2022/lib/notification-message/notification-message.component.mjs +51 -0
  59. package/{esm2020 → esm2022}/lib/notification-message/notification-message.module.mjs +15 -15
  60. package/esm2022/lib/pipes/date-ago/date-ago.module.mjs +28 -0
  61. package/esm2022/lib/pipes/date-ago/date-ago.pipe.mjs +114 -0
  62. package/esm2022/lib/pipes/date-ago/index.mjs +3 -0
  63. package/esm2022/lib/pipes/date-ago/models/date-ago-interval.model.mjs +2 -0
  64. package/esm2022/lib/pipes/date-ago/models/date-ago-settings.model.mjs +2 -0
  65. package/esm2022/lib/pipes/date-ago/models/date-ago-settings.token.mjs +2 -0
  66. package/esm2022/lib/pipes/date-ago/models/date-ago.model.mjs +2 -0
  67. package/esm2022/lib/pipes/date-ago/models/index.mjs +5 -0
  68. package/{esm2020 → esm2022}/lib/pipes/filter-with-highlight/filter-with-highlight.module.mjs +5 -5
  69. package/{esm2020 → esm2022}/lib/pipes/filter-with-highlight/filter-with-highlight.pipe.mjs +4 -4
  70. package/esm2022/lib/pipes/index.mjs +5 -0
  71. package/{esm2020 → esm2022}/lib/pipes/sort-translations/sort-translations.module.mjs +5 -5
  72. package/{esm2020 → esm2022}/lib/pipes/sort-translations/sort-translations.pipe.mjs +4 -4
  73. package/esm2022/lib/pipes/sort-translations-by-property/index.mjs +3 -0
  74. package/esm2022/lib/pipes/sort-translations-by-property/sort-translations-by-property.module.mjs +18 -0
  75. package/esm2022/lib/pipes/sort-translations-by-property/sort-translations-by-property.pipe.mjs +40 -0
  76. package/{esm2020 → esm2022}/lib/plausible/plausible-event.directive.mjs +4 -4
  77. package/{esm2020 → esm2022}/lib/plausible/plausible.module.mjs +5 -5
  78. package/{esm2020 → esm2022}/lib/services/dom.service.mjs +4 -4
  79. package/{esm2020 → esm2022}/lib/services/icon.service.mjs +4 -4
  80. package/{esm2020 → esm2022}/lib/tld-loader/tld-loader.component.mjs +4 -4
  81. package/{esm2020 → esm2022}/lib/tld-loader/tld-loader.module.mjs +5 -5
  82. package/esm2022/public-api.mjs +19 -0
  83. package/fesm2022/tilde-nlp-ngx-common.mjs +1714 -0
  84. package/fesm2022/tilde-nlp-ngx-common.mjs.map +1 -0
  85. package/lib/close-button/close-button.component.d.ts +1 -1
  86. package/lib/company-product/company-product.component.d.ts +1 -1
  87. package/lib/confirmation-modal/confirmation-modal.component.d.ts +12 -0
  88. package/lib/confirmation-modal/confirmation-modal.module.d.ts +11 -0
  89. package/lib/confirmation-modal/index.d.ts +5 -0
  90. package/lib/confirmation-modal/models/confirmation-body.model.d.ts +8 -0
  91. package/lib/confirmation-modal/models/confirmation.enum.d.ts +4 -0
  92. package/lib/confirmation-modal/services/confirmation.service.d.ts +12 -0
  93. package/lib/confirmation-modal/services/index.d.ts +1 -0
  94. package/lib/directives/drag-and-drop/drag-and-drop.directive.d.ts +14 -0
  95. package/lib/directives/drag-and-drop/drag-and-drop.module.d.ts +8 -0
  96. package/lib/directives/drag-and-drop/index.d.ts +2 -0
  97. package/lib/directives/index.d.ts +2 -0
  98. package/lib/directives/mat-button-loading/index.d.ts +2 -0
  99. package/lib/directives/mat-button-loading/mat-button-loading.directive.d.ts +18 -0
  100. package/lib/directives/mat-button-loading/mat-button-loading.module.d.ts +8 -0
  101. package/lib/file-upload/file-upload.component.d.ts +29 -0
  102. package/lib/file-upload/file-upload.module.d.ts +13 -0
  103. package/lib/file-upload/index.d.ts +3 -0
  104. package/lib/file-upload/models/file-upload-error-type.enum.d.ts +6 -0
  105. package/lib/file-upload/models/file-upload-error.model.d.ts +6 -0
  106. package/lib/file-upload/models/index.d.ts +2 -0
  107. package/lib/filter-bar/filter-bar.component.d.ts +54 -0
  108. package/lib/filter-bar/filter-bar.module.d.ts +19 -0
  109. package/lib/filter-bar/index.d.ts +3 -0
  110. package/lib/filter-bar/models/filter-bar-change-event.model.d.ts +6 -0
  111. package/lib/filter-bar/models/filter-bar-filter-item.model.d.ts +4 -0
  112. package/lib/filter-bar/models/filter-bar-filter.model.d.ts +6 -0
  113. package/lib/filter-bar/models/filter-bar-settings.model.d.ts +19 -0
  114. package/lib/filter-bar/models/index.d.ts +3 -0
  115. package/lib/footer/footer.component.d.ts +1 -1
  116. package/lib/helpers/html-element-parse.helper.d.ts +3 -0
  117. package/lib/helpers/index.d.ts +3 -1
  118. package/lib/helpers/save-file.helper.d.ts +3 -0
  119. package/lib/inline-message/inline-message.component.d.ts +1 -1
  120. package/lib/multi-functional-table/constants/disable-export-attribute-name.const.d.ts +1 -0
  121. package/lib/multi-functional-table/constants/index.d.ts +1 -0
  122. package/lib/multi-functional-table/index.d.ts +4 -0
  123. package/lib/multi-functional-table/models/batch-config.model.d.ts +4 -0
  124. package/lib/multi-functional-table/models/column-config.model.d.ts +18 -0
  125. package/lib/multi-functional-table/models/column-select-config.model.d.ts +14 -0
  126. package/lib/multi-functional-table/models/export-config.model.d.ts +9 -0
  127. package/lib/multi-functional-table/models/export-format.enum.d.ts +3 -0
  128. package/lib/multi-functional-table/models/filter-config.model.d.ts +6 -0
  129. package/lib/multi-functional-table/models/index.d.ts +7 -0
  130. package/lib/multi-functional-table/models/multi-functional-table-config.model.d.ts +36 -0
  131. package/lib/multi-functional-table/models/no-data-row-config.model.d.ts +9 -0
  132. package/lib/multi-functional-table/models/selected-column-local-storage-config.model.d.ts +20 -0
  133. package/lib/multi-functional-table/multi-functional-table.component.d.ts +66 -0
  134. package/lib/multi-functional-table/multi-functional-table.module.d.ts +18 -0
  135. package/lib/notification-message/notification-message.component.d.ts +1 -1
  136. package/lib/pipes/date-ago/date-ago.module.d.ts +9 -0
  137. package/lib/pipes/date-ago/date-ago.pipe.d.ts +20 -0
  138. package/lib/pipes/date-ago/index.d.ts +2 -0
  139. package/lib/pipes/date-ago/models/date-ago-interval.model.d.ts +5 -0
  140. package/lib/pipes/date-ago/models/date-ago-settings.model.d.ts +26 -0
  141. package/lib/pipes/date-ago/models/date-ago-settings.token.d.ts +1 -0
  142. package/lib/pipes/date-ago/models/date-ago.model.d.ts +4 -0
  143. package/lib/pipes/date-ago/models/index.d.ts +4 -0
  144. package/lib/pipes/index.d.ts +2 -0
  145. package/lib/pipes/sort-translations-by-property/index.d.ts +2 -0
  146. package/lib/pipes/sort-translations-by-property/sort-translations-by-property.module.d.ts +8 -0
  147. package/lib/pipes/sort-translations-by-property/sort-translations-by-property.pipe.d.ts +15 -0
  148. package/lib/plausible/plausible-event.directive.d.ts +1 -1
  149. package/package.json +8 -14
  150. package/public-api.d.ts +4 -0
  151. package/styles/components/buttons.scss +19 -0
  152. package/styles/components/dialogs.scss +18 -0
  153. package/styles/components/icons.scss +16 -4
  154. package/styles/mixins/material-overrides/mat-button-overrides.mixin.scss +17 -9
  155. package/styles/mixins/material-overrides/mat-form-field-overrides.mixin.scss +1 -0
  156. package/styles/mixins/material-overrides/mat-progress-bar-overrides.mixin.scss +15 -0
  157. package/styles/mixins/material-overrides/material-overrides.mixin.scss +2 -0
  158. package/styles/mixins/tld-all-mixins.mixin.scss +9 -1
  159. package/styles/tilde-style.scss +1 -0
  160. package/styles/variables/colors.variables.scss +1 -0
  161. package/esm2020/lib/directives/index.mjs +0 -2
  162. package/esm2020/lib/helpers/index.mjs +0 -2
  163. package/esm2020/lib/notification-message/notification-message.component.mjs +0 -51
  164. package/esm2020/lib/pipes/index.mjs +0 -3
  165. package/esm2020/public-api.mjs +0 -15
  166. package/fesm2015/tilde-nlp-ngx-common.mjs +0 -676
  167. package/fesm2015/tilde-nlp-ngx-common.mjs.map +0 -1
  168. package/fesm2020/tilde-nlp-ngx-common.mjs +0 -675
  169. package/fesm2020/tilde-nlp-ngx-common.mjs.map +0 -1
  170. /package/{esm2020 → esm2022}/lib/close-button/index.mjs +0 -0
  171. /package/{esm2020 → esm2022}/lib/company-product/index.mjs +0 -0
  172. /package/{esm2020 → esm2022}/lib/directives/click-outside/index.mjs +0 -0
  173. /package/{esm2020 → esm2022}/lib/footer/index.mjs +0 -0
  174. /package/{esm2020 → esm2022}/lib/inline-message/index.mjs +0 -0
  175. /package/{esm2020 → esm2022}/lib/inline-message/models/index.mjs +0 -0
  176. /package/{esm2020 → esm2022}/lib/inline-message/models/inline-message-icon-position.enum.mjs +0 -0
  177. /package/{esm2020 → esm2022}/lib/inline-message/models/inline-message-type.enum.mjs +0 -0
  178. /package/{esm2020 → esm2022}/lib/inline-message/models/inline-message.model.mjs +0 -0
  179. /package/{esm2020 → esm2022}/lib/notification-message/enums/index.mjs +0 -0
  180. /package/{esm2020 → esm2022}/lib/notification-message/enums/notification-message-type.enum.mjs +0 -0
  181. /package/{esm2020 → esm2022}/lib/notification-message/index.mjs +0 -0
  182. /package/{esm2020 → esm2022}/lib/notification-message/interfaces/index.mjs +0 -0
  183. /package/{esm2020 → esm2022}/lib/notification-message/interfaces/notification-message.model.mjs +0 -0
  184. /package/{esm2020 → esm2022}/lib/pipes/filter-with-highlight/index.mjs +0 -0
  185. /package/{esm2020 → esm2022}/lib/pipes/sort-translations/index.mjs +0 -0
  186. /package/{esm2020 → esm2022}/lib/plausible/index.mjs +0 -0
  187. /package/{esm2020 → esm2022}/lib/plausible/models/index.mjs +0 -0
  188. /package/{esm2020 → esm2022}/lib/plausible/models/plausible-event.model.mjs +0 -0
  189. /package/{esm2020 → esm2022}/lib/plausible/plausible.helper.mjs +0 -0
  190. /package/{esm2020 → esm2022}/lib/services/index.mjs +0 -0
  191. /package/{esm2020 → esm2022}/lib/tld-loader/index.mjs +0 -0
  192. /package/{esm2020 → esm2022}/tilde-nlp-ngx-common.mjs +0 -0
  193. /package/lib/helpers/{missing-translation-helper.d.ts → missing-translation.helper.d.ts} +0 -0
@@ -0,0 +1,18 @@
1
+ @use "../variables/font-size.variables.scss" as fs;
2
+
3
+ .mat-mdc-dialog-container {
4
+ min-width: 22rem;
5
+ width: 40rem !important;
6
+
7
+ h1[mat-dialog-title].mat-mdc-dialog-title,
8
+ [mat-dialog-title].mat-dialog-title h1 {
9
+ font-size: fs.$font-size-2-xl !important;
10
+ font-weight: 600 !important;
11
+ margin-bottom: 0 !important;
12
+ }
13
+ }
14
+
15
+ [mat-dialog-actions] {
16
+ display: flex;
17
+ gap: 1rem;
18
+ }
@@ -1,6 +1,18 @@
1
1
  /*Makes icon be aligned with text.*/
2
2
  mat-icon {
3
- svg {
4
- vertical-align: initial;
5
- }
6
- }
3
+ svg {
4
+ vertical-align: initial;
5
+ }
6
+ }
7
+
8
+ .success-icon {
9
+ color: var(--success-dark);
10
+ }
11
+
12
+ .error-icon {
13
+ color: var(--error-dark);
14
+ }
15
+
16
+ .icon-center-vertically {
17
+ vertical-align: middle;
18
+ }
@@ -1,12 +1,19 @@
1
1
  @mixin mat-button-overrides($color-map) {
2
-
3
2
  // goes through all color map and adds option to add every color from map in html. You can use <button mat-button color="my-color"> as long as my-color is in color map.
4
3
  @each $key,
5
4
  $value in $color-map {
6
5
 
7
- .mat-mdc-button.mat-#{$key},
6
+ .mat-mdc-button.mat-#{$key} {
7
+ color: var(--#{$key}) !important;
8
+
9
+ &:hover {
10
+ color: var(--#{$key}) !important;
11
+ }
12
+ }
13
+
8
14
  .mat-mdc-outlined-button.mat-#{$key} {
9
15
  color: var(--#{$key}) !important;
16
+ border-color: var(--#{$key}) !important;
10
17
 
11
18
  &:hover {
12
19
  color: var(--#{$key}) !important;
@@ -15,17 +22,18 @@
15
22
 
16
23
  .mat-mdc-raised-button.mat-#{$key},
17
24
  .mat-mdc-unelevated-button.mat-#{$key},
18
- a.mat-mdc-raised-button[color=#{$key}],
25
+ a.mat-raised-button[color=#{$key}],
19
26
  .mat-mdc-fab.mat-#{$key},
20
27
  .mat-mdc-mini-fab.mat-#{$key} {
21
- $white: #f0fff3;
22
- color: $white !important;
23
- background-color: var(--#{$key}) !important;
24
-
25
- &:hover {
28
+ &:not([disabled]) {
29
+ $white: #f0fff3;
26
30
  color: $white !important;
31
+ background-color: var(--#{$key}) !important;
32
+
33
+ &:hover {
34
+ color: $white !important;
35
+ }
27
36
  }
28
37
  }
29
-
30
38
  }
31
39
  }
@@ -2,6 +2,7 @@
2
2
 
3
3
  // goes through all color map and adds option to add every color from map in html. You can use <button mat-button color="my-color"> as long as my-color is in color map.
4
4
  //mat-input focused color
5
+ /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
5
6
  .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
6
7
  color: var(--accent) !important;
7
8
  }
@@ -0,0 +1,15 @@
1
+ @mixin mat-progress-bar-overrides() {
2
+ /* TODO(mdc-migration): The following rule targets internal classes of progress-bar that may no longer apply for the MDC version. */
3
+ .mat-progress-bar-fill:after {
4
+ background-color: var(--accent) !important;
5
+ }
6
+ /* TODO(mdc-migration): The following rule targets internal classes of progress-bar that may no longer apply for the MDC version. */
7
+ .mat-progress-bar-buffer {
8
+ background-color: var(--base-70) !important;
9
+ }
10
+
11
+ .mat-mdc-progress-bar {
12
+ margin-top: 0.375em;
13
+ margin-bottom: 0.375em;
14
+ }
15
+ }
@@ -1,7 +1,9 @@
1
1
  @use "./mat-button-overrides.mixin.scss" as mat-buttons;
2
2
  @use "./mat-form-field-overrides.mixin.scss" as mat-form-field;
3
+ @use "./mat-progress-bar-overrides.mixin.scss" as mat-progress-bar;
3
4
 
4
5
  @mixin material-overrides($color-map: ()) {
5
6
  @include mat-buttons.mat-button-overrides($color-map);
7
+ @include mat-progress-bar.mat-progress-bar-overrides();
6
8
  @include mat-form-field.mat-form-field-overrides();
7
9
  }
@@ -9,7 +9,15 @@
9
9
  @mixin tld-all-mixins($color-map: (), $font: $tld-font) {
10
10
  $merged: map.merge($default-colors, $color-map);
11
11
 
12
- @include tld-font($font);
12
+ // there might be cases when passed value is null, and scss does not set default value from method definition, so need to check in if
13
+ @if ($font) {
14
+ @include tld-font($font);
15
+ }
16
+
17
+ @else {
18
+ @include tld-font($tld-font);
19
+ }
20
+
13
21
  @include sass-variables-to-css($merged);
14
22
  @include icon-fill($merged);
15
23
  @include material-overrides($merged);
@@ -3,6 +3,7 @@
3
3
  @use "./components/buttons.scss";
4
4
  @use "./components/links.scss";
5
5
  @use "./components/icons.scss";
6
+ @use "./components/dialogs.scss";
6
7
  // @use "./components/borders.scss";
7
8
  @use "./components/strapi-html.scss";
8
9
  @use "./tilde-fonts.scss";
@@ -2,6 +2,7 @@ $default-colors: (
2
2
  base-100: #FFFFFF,
3
3
  base-95: #F1F2F3,
4
4
  base-70: #DEE0E3,
5
+ base-65: #9AA5B1,
5
6
  base-40: #656E76,
6
7
  base-30: #474D53,
7
8
  base-10: #181A1B,
@@ -1,2 +0,0 @@
1
- export * from './click-outside';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtY29tbW9uL3NyYy9saWIvZGlyZWN0aXZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jbGljay1vdXRzaWRlJztcclxuIl19
@@ -1,2 +0,0 @@
1
- export * from "./missing-translation-helper";
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtY29tbW9uL3NyYy9saWIvaGVscGVycy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vbWlzc2luZy10cmFuc2xhdGlvbi1oZWxwZXJcIjtcclxuIl19
@@ -1,51 +0,0 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "@angular/flex-layout/flex";
5
- import * as i3 from "@angular/flex-layout/extended";
6
- import * as i4 from "../close-button/close-button.component";
7
- import * as i5 from "@angular/material/button";
8
- import * as i6 from "@angular/router";
9
- import * as i7 from "@ngx-translate/core";
10
- export class NotificationMessageComponent {
11
- constructor() {
12
- this.buttonClicked = new EventEmitter();
13
- this.closeClicked = new EventEmitter();
14
- this.linkClicked = new EventEmitter();
15
- this.iconNames = {
16
- "BASIC": "info",
17
- "ERROR": "error",
18
- "SUCCESS": "check_circle",
19
- "WARNING": "info",
20
- };
21
- }
22
- ngOnInit() {
23
- this.className = this.message.type.toLocaleLowerCase();
24
- }
25
- buttonClick() {
26
- this.buttonClicked.next(null);
27
- }
28
- closeClick() {
29
- this.closeClicked.next(null);
30
- }
31
- linkClick() {
32
- this.linkClicked.next(null);
33
- }
34
- }
35
- NotificationMessageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationMessageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36
- NotificationMessageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: NotificationMessageComponent, selector: "lib-tld-notification-message", inputs: { message: "message", inline: "inline" }, outputs: { buttonClicked: "buttonClicked", closeClicked: "closeClicked", linkClicked: "linkClicked" }, ngImport: i0, template: "<div class=\"notification-message {{className}}\">\r\n <div class=\"notification-message-container tld-default-border\" [ngClass.lt-md]=\"'mobile'\" [class.inline]=\"inline\"\r\n fxLayout=\"row\" fxLayoutAlign=\"start start\" [attr.id]=\"message.id\" aria-live=\"polite\" fxLayout=\"row\">\r\n <span class=\"material-icons message-icon\">\r\n {{iconNames[message.type]}}\r\n </span>\r\n <div class=\"items-container\" fxFlex>\r\n <div fxLayout=\"row\">\r\n <div class=\"text-container\" fxFlex>\r\n <h1 *ngIf=\"message.title\" class=\"message-title\"\r\n [innerHtml]=\"message.title | translate: message.localizationParams\"></h1>\r\n <p *ngIf=\"message.body\" class=\"message-body\">\r\n <span [innerHtml]=\"message.body | translate: message.localizationParams\"></span>\r\n <span *ngIf=\"message.support\" [innerHtml]=\"message.support | translate: message.localizationParams\"></span>\r\n </p>\r\n </div>\r\n <tld-close-button *ngIf=\"!message.hideClose\" class=\"close-button\" (tldClick)=\"closeClick()\">\r\n </tld-close-button>\r\n </div>\r\n <div fxLayout=\"row\" fxLayoutGap=\"16px\" fxLayoutAlign=\"start center\"\r\n *ngIf=\"message.buttonText || message.linkHref || message.routerLink\">\r\n <button class=\"message-action-button\" color=\"accent\" mat-flat-button *ngIf=\"message.buttonText\"\r\n (click)=\"buttonClick()\">{{message.buttonText | translate}} </button>\r\n <a class=\"message-action-link\" *ngIf=\"message.linkHref && message.linkText\" (click)=\"linkClick()\"\r\n [attr.href]=\"message.linkHref\">{{message.linkText |\r\n translate}}</a>\r\n <a class=\"message-action-link\" *ngIf=\"message.routerLink && message.linkText\" (click)=\"linkClick()\"\r\n [routerLink]=\"[message.routerLink]\">{{message.linkText |\r\n translate}}</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".notification-message.basic .notification-message-container{background-color:var(--base-100);border-color:var(--base-100)}.notification-message.basic .notification-message-container .message-icon{color:var(--base-40)}.notification-message.basic .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message.error .notification-message-container{background-color:var(--error-light);border-color:var(--base-100)}.notification-message.error .notification-message-container .message-icon{color:var(--error-dark)}.notification-message.error .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message.warning .notification-message-container{background-color:var(--warning-light);border-color:var(--base-100)}.notification-message.warning .notification-message-container .message-icon{color:var(--warning-dark)}.notification-message.warning .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message.success .notification-message-container{background-color:var(--success-light);border-color:var(--base-100)}.notification-message.success .notification-message-container .message-icon{color:var(--success-dark)}.notification-message.success .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message .notification-message-container{border:1px solid var(--base-95);border-radius:.5em}.notification-message .notification-message-container.mobile{padding:.6em .4em!important}.notification-message .notification-message-container.mobile .items-container{margin-left:.4em!important}.notification-message .notification-message-container.mobile .items-container div+div{margin-top:.2em!important}.notification-message .notification-message-container.mobile .items-container .message-title+.message-body{margin-top:0!important}.notification-message .notification-message-container .text-container:first-child{line-height:1.5em}.notification-message .notification-message-container .text-container .message-title{font-weight:500;margin:0}.notification-message .notification-message-container .text-container .message-body{margin:0}.notification-message .notification-message-container:not(.inline){padding:1.5em}.notification-message .notification-message-container:not(.inline) .items-container{margin-left:1em}.notification-message .notification-message-container:not(.inline) .items-container div+div,.notification-message .notification-message-container:not(.inline) .items-container .message-title+.message-body{margin-top:1em}.notification-message .notification-message-container:not(.inline) .message-title{font-size:1.25em}.notification-message .notification-message-container:not(.inline) .message-body{line-height:1.5em}.notification-message .notification-message-container.inline{padding:.75em 1em}.notification-message .notification-message-container.inline .items-container{margin-left:.75em}.notification-message .notification-message-container.inline .items-container div+div{margin-top:.5em}.notification-message .notification-message-container.inline .items-container .message-title+.message-body{margin-top:.2em}.notification-message .notification-message-container.inline .message-title{font-size:1em}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i3.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "component", type: i4.CloseButtonComponent, selector: "tld-close-button", inputs: ["ariaCode", "disabled", "tooltip"], outputs: ["tldClick"] }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i6.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "pipe", type: i7.TranslatePipe, name: "translate" }] });
37
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: NotificationMessageComponent, decorators: [{
38
- type: Component,
39
- args: [{ selector: 'lib-tld-notification-message', template: "<div class=\"notification-message {{className}}\">\r\n <div class=\"notification-message-container tld-default-border\" [ngClass.lt-md]=\"'mobile'\" [class.inline]=\"inline\"\r\n fxLayout=\"row\" fxLayoutAlign=\"start start\" [attr.id]=\"message.id\" aria-live=\"polite\" fxLayout=\"row\">\r\n <span class=\"material-icons message-icon\">\r\n {{iconNames[message.type]}}\r\n </span>\r\n <div class=\"items-container\" fxFlex>\r\n <div fxLayout=\"row\">\r\n <div class=\"text-container\" fxFlex>\r\n <h1 *ngIf=\"message.title\" class=\"message-title\"\r\n [innerHtml]=\"message.title | translate: message.localizationParams\"></h1>\r\n <p *ngIf=\"message.body\" class=\"message-body\">\r\n <span [innerHtml]=\"message.body | translate: message.localizationParams\"></span>\r\n <span *ngIf=\"message.support\" [innerHtml]=\"message.support | translate: message.localizationParams\"></span>\r\n </p>\r\n </div>\r\n <tld-close-button *ngIf=\"!message.hideClose\" class=\"close-button\" (tldClick)=\"closeClick()\">\r\n </tld-close-button>\r\n </div>\r\n <div fxLayout=\"row\" fxLayoutGap=\"16px\" fxLayoutAlign=\"start center\"\r\n *ngIf=\"message.buttonText || message.linkHref || message.routerLink\">\r\n <button class=\"message-action-button\" color=\"accent\" mat-flat-button *ngIf=\"message.buttonText\"\r\n (click)=\"buttonClick()\">{{message.buttonText | translate}} </button>\r\n <a class=\"message-action-link\" *ngIf=\"message.linkHref && message.linkText\" (click)=\"linkClick()\"\r\n [attr.href]=\"message.linkHref\">{{message.linkText |\r\n translate}}</a>\r\n <a class=\"message-action-link\" *ngIf=\"message.routerLink && message.linkText\" (click)=\"linkClick()\"\r\n [routerLink]=\"[message.routerLink]\">{{message.linkText |\r\n translate}}</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".notification-message.basic .notification-message-container{background-color:var(--base-100);border-color:var(--base-100)}.notification-message.basic .notification-message-container .message-icon{color:var(--base-40)}.notification-message.basic .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message.error .notification-message-container{background-color:var(--error-light);border-color:var(--base-100)}.notification-message.error .notification-message-container .message-icon{color:var(--error-dark)}.notification-message.error .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message.warning .notification-message-container{background-color:var(--warning-light);border-color:var(--base-100)}.notification-message.warning .notification-message-container .message-icon{color:var(--warning-dark)}.notification-message.warning .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message.success .notification-message-container{background-color:var(--success-light);border-color:var(--base-100)}.notification-message.success .notification-message-container .message-icon{color:var(--success-dark)}.notification-message.success .notification-message-container .message-action-button{background-color:var(--base-40)}.notification-message .notification-message-container{border:1px solid var(--base-95);border-radius:.5em}.notification-message .notification-message-container.mobile{padding:.6em .4em!important}.notification-message .notification-message-container.mobile .items-container{margin-left:.4em!important}.notification-message .notification-message-container.mobile .items-container div+div{margin-top:.2em!important}.notification-message .notification-message-container.mobile .items-container .message-title+.message-body{margin-top:0!important}.notification-message .notification-message-container .text-container:first-child{line-height:1.5em}.notification-message .notification-message-container .text-container .message-title{font-weight:500;margin:0}.notification-message .notification-message-container .text-container .message-body{margin:0}.notification-message .notification-message-container:not(.inline){padding:1.5em}.notification-message .notification-message-container:not(.inline) .items-container{margin-left:1em}.notification-message .notification-message-container:not(.inline) .items-container div+div,.notification-message .notification-message-container:not(.inline) .items-container .message-title+.message-body{margin-top:1em}.notification-message .notification-message-container:not(.inline) .message-title{font-size:1.25em}.notification-message .notification-message-container:not(.inline) .message-body{line-height:1.5em}.notification-message .notification-message-container.inline{padding:.75em 1em}.notification-message .notification-message-container.inline .items-container{margin-left:.75em}.notification-message .notification-message-container.inline .items-container div+div{margin-top:.5em}.notification-message .notification-message-container.inline .items-container .message-title+.message-body{margin-top:.2em}.notification-message .notification-message-container.inline .message-title{font-size:1em}\n"] }]
40
- }], propDecorators: { message: [{
41
- type: Input
42
- }], buttonClicked: [{
43
- type: Output
44
- }], closeClicked: [{
45
- type: Output
46
- }], linkClicked: [{
47
- type: Output
48
- }], inline: [{
49
- type: Input
50
- }] } });
51
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLW1lc3NhZ2UuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWNvbW1vbi9zcmMvbGliL25vdGlmaWNhdGlvbi1tZXNzYWdlL25vdGlmaWNhdGlvbi1tZXNzYWdlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1jb21tb24vc3JjL2xpYi9ub3RpZmljYXRpb24tbWVzc2FnZS9ub3RpZmljYXRpb24tbWVzc2FnZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7Ozs7QUFTL0UsTUFBTSxPQUFPLDRCQUE0QjtJQUx6QztRQVFZLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUNuQyxpQkFBWSxHQUFHLElBQUksWUFBWSxFQUFFLENBQUM7UUFDbEMsZ0JBQVcsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBSWxDLGNBQVMsR0FBaUQ7WUFDakUsT0FBTyxFQUFFLE1BQU07WUFDZixPQUFPLEVBQUUsT0FBTztZQUNoQixTQUFTLEVBQUUsY0FBYztZQUN6QixTQUFTLEVBQUUsTUFBTTtTQUNsQixDQUFBO0tBbUJGO0lBaEJDLFFBQVE7UUFDTixJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7SUFDekQsQ0FBQztJQUVELFdBQVc7UUFDVCxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQTtJQUMvQixDQUFDO0lBRUQsVUFBVTtRQUNSLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFBO0lBQzlCLENBQUM7SUFFRCxTQUFTO1FBQ1AsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUE7SUFDN0IsQ0FBQzs7eUhBL0JVLDRCQUE0Qjs2R0FBNUIsNEJBQTRCLDZOQ1R6QywyOURBaUNBOzJGRHhCYSw0QkFBNEI7a0JBTHhDLFNBQVM7K0JBQ0UsOEJBQThCOzhCQUsvQixPQUFPO3NCQUFmLEtBQUs7Z0JBRUksYUFBYTtzQkFBdEIsTUFBTTtnQkFDRyxZQUFZO3NCQUFyQixNQUFNO2dCQUNHLFdBQVc7c0JBQXBCLE1BQU07Z0JBRUUsTUFBTTtzQkFBZCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBOb3RpZmljYXRpb25NZXNzYWdlVHlwZSB9IGZyb20gJy4vZW51bXMvbm90aWZpY2F0aW9uLW1lc3NhZ2UtdHlwZS5lbnVtJztcclxuaW1wb3J0IHsgTm90aWZpY2F0aW9uTWVzc2FnZSB9IGZyb20gJy4vaW50ZXJmYWNlcy9ub3RpZmljYXRpb24tbWVzc2FnZS5tb2RlbCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2xpYi10bGQtbm90aWZpY2F0aW9uLW1lc3NhZ2UnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9ub3RpZmljYXRpb24tbWVzc2FnZS5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vbm90aWZpY2F0aW9uLW1lc3NhZ2UuY29tcG9uZW50LnNjc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgTm90aWZpY2F0aW9uTWVzc2FnZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgQElucHV0KCkgbWVzc2FnZSE6IE5vdGlmaWNhdGlvbk1lc3NhZ2U7XHJcblxyXG4gIEBPdXRwdXQoKSBidXR0b25DbGlja2VkID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG4gIEBPdXRwdXQoKSBjbG9zZUNsaWNrZWQgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcbiAgQE91dHB1dCgpIGxpbmtDbGlja2VkID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG4gIC8qKiBBZGRzIGFkZGl0aW9uYWwgY2xhc3MgdGhhdCBtYWtlcyBtZXNzYWdlIHRvIHRha2UgbGVzcyBzcGFjZSBvbiBzY3JlZW4uICovXHJcbiAgQElucHV0KCkgaW5saW5lITogYm9vbGVhbjtcclxuXHJcbiAgcmVhZG9ubHkgaWNvbk5hbWVzOiB7IFtrZXkgaW4gTm90aWZpY2F0aW9uTWVzc2FnZVR5cGVdOiBzdHJpbmcgfSA9IHtcclxuICAgIFwiQkFTSUNcIjogXCJpbmZvXCIsXHJcbiAgICBcIkVSUk9SXCI6IFwiZXJyb3JcIixcclxuICAgIFwiU1VDQ0VTU1wiOiBcImNoZWNrX2NpcmNsZVwiLFxyXG4gICAgXCJXQVJOSU5HXCI6IFwiaW5mb1wiLFxyXG4gIH1cclxuICBjbGFzc05hbWUhOiBzdHJpbmc7XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5jbGFzc05hbWUgPSB0aGlzLm1lc3NhZ2UudHlwZS50b0xvY2FsZUxvd2VyQ2FzZSgpO1xyXG4gIH1cclxuXHJcbiAgYnV0dG9uQ2xpY2soKSB7XHJcbiAgICB0aGlzLmJ1dHRvbkNsaWNrZWQubmV4dChudWxsKVxyXG4gIH1cclxuXHJcbiAgY2xvc2VDbGljaygpIHtcclxuICAgIHRoaXMuY2xvc2VDbGlja2VkLm5leHQobnVsbClcclxuICB9XHJcblxyXG4gIGxpbmtDbGljaygpe1xyXG4gICAgdGhpcy5saW5rQ2xpY2tlZC5uZXh0KG51bGwpXHJcbiAgfVxyXG5cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwibm90aWZpY2F0aW9uLW1lc3NhZ2Uge3tjbGFzc05hbWV9fVwiPlxyXG4gIDxkaXYgY2xhc3M9XCJub3RpZmljYXRpb24tbWVzc2FnZS1jb250YWluZXIgdGxkLWRlZmF1bHQtYm9yZGVyXCIgW25nQ2xhc3MubHQtbWRdPVwiJ21vYmlsZSdcIiBbY2xhc3MuaW5saW5lXT1cImlubGluZVwiXHJcbiAgICBmeExheW91dD1cInJvd1wiIGZ4TGF5b3V0QWxpZ249XCJzdGFydCBzdGFydFwiIFthdHRyLmlkXT1cIm1lc3NhZ2UuaWRcIiBhcmlhLWxpdmU9XCJwb2xpdGVcIiBmeExheW91dD1cInJvd1wiPlxyXG4gICAgPHNwYW4gY2xhc3M9XCJtYXRlcmlhbC1pY29ucyBtZXNzYWdlLWljb25cIj5cclxuICAgICAge3tpY29uTmFtZXNbbWVzc2FnZS50eXBlXX19XHJcbiAgICA8L3NwYW4+XHJcbiAgICA8ZGl2IGNsYXNzPVwiaXRlbXMtY29udGFpbmVyXCIgZnhGbGV4PlxyXG4gICAgICA8ZGl2IGZ4TGF5b3V0PVwicm93XCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInRleHQtY29udGFpbmVyXCIgZnhGbGV4PlxyXG4gICAgICAgICAgPGgxICpuZ0lmPVwibWVzc2FnZS50aXRsZVwiIGNsYXNzPVwibWVzc2FnZS10aXRsZVwiXHJcbiAgICAgICAgICAgIFtpbm5lckh0bWxdPVwibWVzc2FnZS50aXRsZSB8IHRyYW5zbGF0ZTogbWVzc2FnZS5sb2NhbGl6YXRpb25QYXJhbXNcIj48L2gxPlxyXG4gICAgICAgICAgPHAgKm5nSWY9XCJtZXNzYWdlLmJvZHlcIiBjbGFzcz1cIm1lc3NhZ2UtYm9keVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBbaW5uZXJIdG1sXT1cIm1lc3NhZ2UuYm9keSB8IHRyYW5zbGF0ZTogbWVzc2FnZS5sb2NhbGl6YXRpb25QYXJhbXNcIj48L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwibWVzc2FnZS5zdXBwb3J0XCIgW2lubmVySHRtbF09XCJtZXNzYWdlLnN1cHBvcnQgfCB0cmFuc2xhdGU6IG1lc3NhZ2UubG9jYWxpemF0aW9uUGFyYW1zXCI+PC9zcGFuPlxyXG4gICAgICAgICAgPC9wPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDx0bGQtY2xvc2UtYnV0dG9uICpuZ0lmPVwiIW1lc3NhZ2UuaGlkZUNsb3NlXCIgY2xhc3M9XCJjbG9zZS1idXR0b25cIiAodGxkQ2xpY2spPVwiY2xvc2VDbGljaygpXCI+XHJcbiAgICAgICAgPC90bGQtY2xvc2UtYnV0dG9uPlxyXG4gICAgICA8L2Rpdj5cclxuICAgICAgPGRpdiBmeExheW91dD1cInJvd1wiIGZ4TGF5b3V0R2FwPVwiMTZweFwiIGZ4TGF5b3V0QWxpZ249XCJzdGFydCBjZW50ZXJcIlxyXG4gICAgICAgICpuZ0lmPVwibWVzc2FnZS5idXR0b25UZXh0IHx8IG1lc3NhZ2UubGlua0hyZWYgfHwgbWVzc2FnZS5yb3V0ZXJMaW5rXCI+XHJcbiAgICAgICAgPGJ1dHRvbiBjbGFzcz1cIm1lc3NhZ2UtYWN0aW9uLWJ1dHRvblwiIGNvbG9yPVwiYWNjZW50XCIgbWF0LWZsYXQtYnV0dG9uICpuZ0lmPVwibWVzc2FnZS5idXR0b25UZXh0XCJcclxuICAgICAgICAgIChjbGljayk9XCJidXR0b25DbGljaygpXCI+e3ttZXNzYWdlLmJ1dHRvblRleHQgfCB0cmFuc2xhdGV9fSA8L2J1dHRvbj5cclxuICAgICAgICA8YSBjbGFzcz1cIm1lc3NhZ2UtYWN0aW9uLWxpbmtcIiAqbmdJZj1cIm1lc3NhZ2UubGlua0hyZWYgJiYgbWVzc2FnZS5saW5rVGV4dFwiIChjbGljayk9XCJsaW5rQ2xpY2soKVwiXHJcbiAgICAgICAgICBbYXR0ci5ocmVmXT1cIm1lc3NhZ2UubGlua0hyZWZcIj57e21lc3NhZ2UubGlua1RleHQgfFxyXG4gICAgICAgICAgdHJhbnNsYXRlfX08L2E+XHJcbiAgICAgICAgPGEgY2xhc3M9XCJtZXNzYWdlLWFjdGlvbi1saW5rXCIgKm5nSWY9XCJtZXNzYWdlLnJvdXRlckxpbmsgJiYgbWVzc2FnZS5saW5rVGV4dFwiIChjbGljayk9XCJsaW5rQ2xpY2soKVwiXHJcbiAgICAgICAgICBbcm91dGVyTGlua109XCJbbWVzc2FnZS5yb3V0ZXJMaW5rXVwiPnt7bWVzc2FnZS5saW5rVGV4dCB8XHJcbiAgICAgICAgICB0cmFuc2xhdGV9fTwvYT5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuPC9kaXY+XHJcbiJdfQ==
@@ -1,3 +0,0 @@
1
- export * from './filter-with-highlight';
2
- export * from './sort-translations';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtY29tbW9uL3NyYy9saWIvcGlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9maWx0ZXItd2l0aC1oaWdobGlnaHQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NvcnQtdHJhbnNsYXRpb25zJztcclxuIl19
@@ -1,15 +0,0 @@
1
- /*
2
- * Public API Surface of ngx-common
3
- */
4
- export * from './lib/services';
5
- export * from './lib/plausible';
6
- export * from './lib/inline-message';
7
- export * from './lib/pipes';
8
- export * from './lib/directives';
9
- export * from './lib/close-button';
10
- export * from './lib/notification-message';
11
- export * from './lib/tld-loader';
12
- export * from './lib/helpers';
13
- export * from './lib/company-product';
14
- export * from './lib/footer';
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25neC1jb21tb24vc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGtCQUFrQixDQUFBO0FBQ2hDLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2Ygbmd4LWNvbW1vblxyXG4gKi9cclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvcGxhdXNpYmxlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvaW5saW5lLW1lc3NhZ2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jbG9zZS1idXR0b24nO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9ub3RpZmljYXRpb24tbWVzc2FnZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3RsZC1sb2FkZXInXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2hlbHBlcnMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wYW55LXByb2R1Y3QnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9mb290ZXInO1xyXG4iXX0=