@elderbyte/ngx-starter 14.10.0 → 14.11.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 (1359) hide show
  1. package/.eslintrc.json +44 -0
  2. package/karma-ci.conf.js +46 -0
  3. package/karma.conf.js +44 -0
  4. package/ng-package.json +15 -0
  5. package/ng-package.prod.json +14 -0
  6. package/package.json +8 -24
  7. package/src/lib/common/async/public_api.ts +3 -0
  8. package/src/lib/common/async/refreshing-entity.ts +128 -0
  9. package/src/lib/common/csv/csv-serializer.ts +82 -0
  10. package/src/lib/common/csv/csv-spec.ts +148 -0
  11. package/src/lib/common/csv/public_api.ts +3 -0
  12. package/src/lib/common/data/continuable-listing.ts +35 -0
  13. package/src/lib/common/data/data-context/data-context-active-page.ts +184 -0
  14. package/src/lib/common/data/data-context/data-context-auto-starter.ts +108 -0
  15. package/src/lib/common/data/data-context/data-context-base.ts +406 -0
  16. package/src/lib/common/data/data-context/data-context-builder.ts +354 -0
  17. package/src/lib/common/data/data-context/data-context-continuable-base.ts +100 -0
  18. package/src/lib/common/data/data-context/data-context-continuable-paged.ts +191 -0
  19. package/src/lib/common/data/data-context/data-context-continuable-token.ts +177 -0
  20. package/src/lib/common/data/data-context/data-context-life-cycle-binding.ts +59 -0
  21. package/src/lib/common/data/data-context/data-context-simple.ts +80 -0
  22. package/src/lib/common/data/data-context/data-context-source-auto-reloader.ts +21 -0
  23. package/src/lib/common/data/data-context/data-context-status.ts +56 -0
  24. package/src/lib/common/data/data-context/data-context.ts +204 -0
  25. package/src/lib/common/data/data-context/mat-table-data-context-binding.ts +209 -0
  26. package/src/lib/common/data/data-context/public_api.ts +19 -0
  27. package/src/lib/common/data/datasource/data-source-adapter.ts +96 -0
  28. package/src/lib/common/data/datasource/data-source-processor.ts +318 -0
  29. package/src/lib/common/data/datasource/data-source.ts +87 -0
  30. package/src/lib/common/data/datasource/entity-id-util.ts +11 -0
  31. package/src/lib/common/data/datasource/fetcher/delegate-data-source.ts +230 -0
  32. package/src/lib/common/data/datasource/local/local-list-data-source.ts +161 -0
  33. package/src/lib/common/data/datasource/local/local-paged-data-source.ts +129 -0
  34. package/src/lib/common/data/datasource/public_api.ts +14 -0
  35. package/src/lib/common/data/datasource/rest/public_api.ts +2 -0
  36. package/src/lib/common/data/datasource/rest/rest-client.ts +474 -0
  37. package/src/lib/common/data/entity-set-patch.ts +210 -0
  38. package/src/lib/common/data/field-comparator.ts +122 -0
  39. package/src/lib/common/data/filters/filter-context.spec.ts +150 -0
  40. package/src/lib/common/data/filters/filter-context.ts +163 -0
  41. package/src/lib/common/data/filters/filter.spec.ts +136 -0
  42. package/src/lib/common/data/filters/filter.ts +137 -0
  43. package/src/lib/common/data/http-params-builder.ts +138 -0
  44. package/src/lib/common/data/page.ts +92 -0
  45. package/src/lib/common/data/public_api.ts +12 -0
  46. package/src/lib/common/data/required-filter-evaluator.ts +122 -0
  47. package/src/lib/common/data/sort-context.ts +90 -0
  48. package/src/lib/common/data/sort.ts +16 -0
  49. package/src/lib/common/data/token-chunk-request.ts +10 -0
  50. package/src/lib/common/enums/elder-enum-translation.service.ts +116 -0
  51. package/src/lib/common/enums/public_api.ts +3 -0
  52. package/src/lib/common/errors/exception-detail.ts +6 -0
  53. package/{lib/common/errors/public_api.d.ts → src/lib/common/errors/public_api.ts} +0 -0
  54. package/src/lib/common/errors/standard-error-detail.ts +27 -0
  55. package/src/lib/common/format/bytes-format.ts +25 -0
  56. package/src/lib/common/format/bytes-per-second-format.ts +44 -0
  57. package/{lib/common/format/public_api.d.ts → src/lib/common/format/public_api.ts} +0 -0
  58. package/src/lib/common/forms/elder-entity-value-accessor.ts +70 -0
  59. package/src/lib/common/forms/elder-form-field-control-base.directive.ts +240 -0
  60. package/src/lib/common/forms/elder-from-field-base.ts +113 -0
  61. package/src/lib/common/forms/elder-from-field-entity-base.ts +63 -0
  62. package/src/lib/common/forms/elder-from-field-multi-entity-base.ts +86 -0
  63. package/src/lib/common/forms/elder-multi-entity-value-accessor.ts +84 -0
  64. package/src/lib/common/forms/form-field-base.component.ts +152 -0
  65. package/src/lib/common/forms/multi-model-base.component.ts +40 -0
  66. package/src/lib/common/forms/public_api.ts +12 -0
  67. package/src/lib/common/forms/template-composite-control.ts +158 -0
  68. package/src/lib/common/forms/value-accessor-base.ts +165 -0
  69. package/src/lib/common/forms/view-providers.ts +34 -0
  70. package/src/lib/common/http/http-client-builder.service.ts +55 -0
  71. package/src/lib/common/http/http-client-pristine.ts +15 -0
  72. package/src/lib/common/http/public_api.ts +5 -0
  73. package/src/lib/common/http/transfer/data-transfer-factory.ts +145 -0
  74. package/src/lib/common/http/transfer/data-transfer-progress-aggregate.ts +74 -0
  75. package/src/lib/common/http/transfer/data-transfer-progress.ts +18 -0
  76. package/src/lib/common/http/transfer/data-transfer-state.ts +129 -0
  77. package/src/lib/common/http/transfer/data-transfer-status.ts +28 -0
  78. package/src/lib/common/http/transfer/http-data-transfer.ts +276 -0
  79. package/src/lib/common/http/transfer/public_api.ts +9 -0
  80. package/src/lib/common/http/upload/file-upload-client.ts +74 -0
  81. package/src/lib/common/i18n/entity/impl/i18n-base.ts +9 -0
  82. package/src/lib/common/i18n/entity/impl/i18n-text.ts +25 -0
  83. package/src/lib/common/i18n/entity/language-tag.ts +19 -0
  84. package/src/lib/common/i18n/entity/locale.ts +20 -0
  85. package/src/lib/common/i18n/entity/localisation-picker.ts +51 -0
  86. package/src/lib/common/i18n/entity/localized.ts +11 -0
  87. package/src/lib/common/i18n/entity/public_api.ts +7 -0
  88. package/src/lib/common/i18n/public_api.ts +3 -0
  89. package/src/lib/common/json-map.ts +26 -0
  90. package/src/lib/common/objects.ts +46 -0
  91. package/src/lib/common/public_api.ts +20 -0
  92. package/src/lib/common/reactive-map.ts +113 -0
  93. package/{lib/common/selection/public_api.d.ts → src/lib/common/selection/public_api.ts} +0 -0
  94. package/src/lib/common/selection/selection-model.ts +274 -0
  95. package/src/lib/common/sets.ts +48 -0
  96. package/src/lib/common/suggestion-provider.ts +28 -0
  97. package/src/lib/common/templates/public_api.ts +1 -0
  98. package/src/lib/common/templates/template-slot-manager.ts +153 -0
  99. package/src/lib/common/time/date-util.ts +120 -0
  100. package/src/lib/common/time/interval.spec.ts +53 -0
  101. package/src/lib/common/time/interval.ts +539 -0
  102. package/src/lib/common/time/period-duration.ts +147 -0
  103. package/src/lib/common/time/public_api.ts +6 -0
  104. package/src/lib/common/time/time-util.ts +54 -0
  105. package/src/lib/common/url/elder-router.service.ts +55 -0
  106. package/src/lib/common/url/elder-url-fragment-params.service.ts +139 -0
  107. package/src/lib/common/url/public_api.ts +5 -0
  108. package/src/lib/common/url/url-query-params.ts +169 -0
  109. package/src/lib/common/utils/batcher.spec.ts +39 -0
  110. package/src/lib/common/utils/batcher.ts +55 -0
  111. package/src/lib/common/utils/collection-util.ts +125 -0
  112. package/src/lib/common/utils/filter-util.ts +67 -0
  113. package/src/lib/common/utils/next-number-util.ts +102 -0
  114. package/src/lib/common/utils/ng-zone-utils.ts +18 -0
  115. package/src/lib/common/utils/parse-util.ts +17 -0
  116. package/src/lib/common/utils/property-path-util.ts +29 -0
  117. package/{lib/common/utils/public_api.d.ts → src/lib/common/utils/public_api.ts} +0 -0
  118. package/src/lib/common/utils/query-list-binding.ts +105 -0
  119. package/src/lib/common/utils/sort-util.spec.ts +41 -0
  120. package/src/lib/common/utils/sort-util.ts +38 -0
  121. package/src/lib/common/utils/url-builder.spec.ts +83 -0
  122. package/src/lib/common/utils/url-builder.ts +363 -0
  123. package/src/lib/common/utils/uuid-util.ts +34 -0
  124. package/src/lib/common/utils/value-wrapper.ts +25 -0
  125. package/src/lib/components/access-denied/elder-access-denied.component.html +12 -0
  126. package/src/lib/components/access-denied/elder-access-denied.component.ts +16 -0
  127. package/src/lib/components/access-denied/elder-access-denied.module.ts +26 -0
  128. package/src/lib/components/auditing/audited-entity/elder-audited-entity.component.html +25 -0
  129. package/src/lib/components/auditing/audited-entity/elder-audited-entity.component.ts +42 -0
  130. package/src/lib/components/auditing/elder-audit.module.ts +32 -0
  131. package/src/lib/components/auditing/i-audited-entity.ts +17 -0
  132. package/src/lib/components/button-group/elder-button-group/elder-button-group.component.html +3 -0
  133. package/src/lib/components/button-group/elder-button-group/elder-button-group.component.ts +21 -0
  134. package/src/lib/components/button-group/elder-button-group.module.ts +25 -0
  135. package/src/lib/components/card-organizer/card-organizer/elder-card-organizer.component.html +28 -0
  136. package/src/lib/components/card-organizer/card-organizer/elder-card-organizer.component.ts +148 -0
  137. package/src/lib/components/card-organizer/card-organizer/elder-stack-card.directive.ts +9 -0
  138. package/src/lib/components/card-organizer/card-organizer-data.ts +124 -0
  139. package/src/lib/components/card-organizer/card-stack/elder-card-stack.component.html +72 -0
  140. package/src/lib/components/card-organizer/card-stack/elder-card-stack.component.ts +250 -0
  141. package/src/lib/components/card-organizer/card-stack.ts +231 -0
  142. package/src/lib/components/card-organizer/elder-card-organizer.module.ts +38 -0
  143. package/src/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.css +5 -0
  144. package/src/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.html +16 -0
  145. package/src/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.ts +14 -0
  146. package/src/lib/components/cards/elder-card/elder-card.component.html +21 -0
  147. package/src/lib/components/cards/elder-card/elder-card.component.ts +141 -0
  148. package/src/lib/components/cards/elder-card/elder-card.module.ts +48 -0
  149. package/src/lib/components/connectivity/elder-connectivity.module.ts +38 -0
  150. package/src/lib/components/connectivity/elder-connectivity.service.ts +83 -0
  151. package/src/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.html +11 -0
  152. package/src/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.ts +51 -0
  153. package/src/lib/components/connectivity/public_api.ts +3 -0
  154. package/src/lib/components/containers/elder-containers.module.ts +20 -0
  155. package/src/lib/components/containers/elder-scroll-container/elder-scroll-container.component.html +13 -0
  156. package/src/lib/components/containers/elder-scroll-container/elder-scroll-container.component.ts +30 -0
  157. package/src/lib/components/containers/public_api.ts +3 -0
  158. package/src/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.html +5 -0
  159. package/src/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.ts +105 -0
  160. package/src/lib/components/csv/elder-csv-stream-exporter-builder.service.ts +56 -0
  161. package/src/lib/components/csv/elder-csv-stream-exporter-builder.ts +68 -0
  162. package/src/lib/components/csv/elder-csv-stream-exporter.ts +192 -0
  163. package/src/lib/components/csv/elder-csv.module.ts +27 -0
  164. package/src/lib/components/currency/elder-currency.module.ts +18 -0
  165. package/src/lib/components/currency/elder-currency.pipe.ts +44 -0
  166. package/src/lib/components/currency/elder-currency.service.ts +83 -0
  167. package/src/lib/components/currency/model/currency-code.ts +37 -0
  168. package/src/lib/components/currency/model/currency-unit-registry.ts +39 -0
  169. package/src/lib/components/currency/model/currency-unit.ts +18 -0
  170. package/src/lib/components/currency/model/currency.ts +22 -0
  171. package/src/lib/components/currency/public_api.ts +7 -0
  172. package/src/lib/components/data-transfer/elder-data-transfer.module.ts +53 -0
  173. package/src/lib/components/data-transfer/elder-data-transfer.service.ts +120 -0
  174. package/src/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.html +47 -0
  175. package/src/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.ts +82 -0
  176. package/src/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.html +27 -0
  177. package/src/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.ts +46 -0
  178. package/src/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.html +31 -0
  179. package/src/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.ts +61 -0
  180. package/src/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.html +24 -0
  181. package/src/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.ts +41 -0
  182. package/src/lib/components/data-view/base/data-view-options-provider-binding.ts +99 -0
  183. package/src/lib/components/data-view/base/elder-data-view-base.ts +322 -0
  184. package/src/lib/components/data-view/base/elder-data-view-options-provider.ts +55 -0
  185. package/src/lib/components/data-view/base/elder-data-view-options.ts +89 -0
  186. package/src/lib/components/data-view/base/elder-data-view.ts +14 -0
  187. package/src/lib/components/data-view/base/public_api.ts +5 -0
  188. package/src/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.html +56 -0
  189. package/src/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.ts +51 -0
  190. package/src/lib/components/data-view/common/elder-data-common.module.ts +63 -0
  191. package/src/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.html +115 -0
  192. package/src/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.ts +181 -0
  193. package/src/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.html +25 -0
  194. package/src/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.ts +99 -0
  195. package/src/lib/components/data-view/common/selection/data-context-selection.directive.ts +127 -0
  196. package/src/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.html +22 -0
  197. package/src/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.ts +53 -0
  198. package/src/lib/components/data-view/common/selection/master-selection-state.ts +10 -0
  199. package/src/lib/components/data-view/elder-data-view-interaction-mode.ts +26 -0
  200. package/src/lib/components/data-view/grid/elder-grid/elder-grid.component.html +160 -0
  201. package/src/lib/components/data-view/grid/elder-grid/elder-grid.component.ts +348 -0
  202. package/src/lib/components/data-view/grid/elder-grid.module.ts +57 -0
  203. package/src/lib/components/data-view/public_api.ts +5 -0
  204. package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.css +0 -0
  205. package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.html +3 -0
  206. package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.ts +22 -0
  207. package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.module.ts +51 -0
  208. package/src/lib/components/data-view/table/activation/elder-item-activator.ts +6 -0
  209. package/src/lib/components/data-view/table/activation/elder-table-activation-options.ts +19 -0
  210. package/src/lib/components/data-view/table/activation/elder-table-activation.directive.ts +308 -0
  211. package/src/lib/components/data-view/table/elder-number-cell.directive.ts +26 -0
  212. package/src/lib/components/data-view/table/elder-paginator-intl.ts +92 -0
  213. package/src/lib/components/data-view/table/elder-table/elder-table-toolbar.directive.ts +14 -0
  214. package/src/lib/components/data-view/table/elder-table/elder-table.component.html +103 -0
  215. package/src/lib/components/data-view/table/elder-table/elder-table.component.ts +388 -0
  216. package/src/lib/components/data-view/table/elder-table-column.directive.ts +29 -0
  217. package/src/lib/components/data-view/table/elder-table-extension.directive.ts +107 -0
  218. package/src/lib/components/data-view/table/elder-table-root.directive.ts +24 -0
  219. package/src/lib/components/data-view/table/elder-table-row.directive.ts +154 -0
  220. package/src/lib/components/data-view/table/elder-table-sort.directive.ts +16 -0
  221. package/src/lib/components/data-view/table/elder-table.module.ts +95 -0
  222. package/src/lib/components/data-view/table/model/elder-column-layout.ts +164 -0
  223. package/src/lib/components/data-view/table/model/elder-table-model-cdk-table-binding.ts +115 -0
  224. package/src/lib/components/data-view/table/model/elder-table-model-provider.ts +49 -0
  225. package/src/lib/components/data-view/table/model/elder-table-model-query-group.ts +153 -0
  226. package/src/lib/components/data-view/table/model/elder-table-model.ts +221 -0
  227. package/src/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.html +23 -0
  228. package/src/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.ts +34 -0
  229. package/src/lib/components/dialogs/elder-dialog-config.ts +21 -0
  230. package/src/lib/components/dialogs/elder-dialog.module.ts +65 -0
  231. package/src/lib/components/dialogs/elder-dialog.service.ts +198 -0
  232. package/src/lib/components/dialogs/question-dialog/elder-question-dialog.component.html +28 -0
  233. package/src/lib/components/dialogs/question-dialog/elder-question-dialog.component.ts +44 -0
  234. package/src/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.html +31 -0
  235. package/src/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.ts +55 -0
  236. package/src/lib/components/dialogs/selection-dialog/elder-selection-dialog.directive.ts +54 -0
  237. package/src/lib/components/errors/elder-error.module.ts +30 -0
  238. package/src/lib/components/errors/error-util.ts +107 -0
  239. package/src/lib/components/errors/exception-detail/elder-exception-detail.component.html +33 -0
  240. package/src/lib/components/errors/exception-detail/elder-exception-detail.component.ts +77 -0
  241. package/src/lib/components/expand-toggle-button/elder-expand-toggle-button.component.html +14 -0
  242. package/src/lib/components/expand-toggle-button/elder-expand-toggle-button.component.ts +57 -0
  243. package/src/lib/components/expand-toggle-button/elder-expand-toggle-button.module.ts +24 -0
  244. package/src/lib/components/files/blob-url.ts +13 -0
  245. package/src/lib/components/files/blob-viewer/elder-blob-viewer.component.html +62 -0
  246. package/src/lib/components/files/blob-viewer/elder-blob-viewer.component.ts +304 -0
  247. package/src/lib/components/files/elder-file-drop-zone.directive.ts +116 -0
  248. package/src/lib/components/files/elder-file-select.directive.ts +184 -0
  249. package/src/lib/components/files/elder-file.module.ts +50 -0
  250. package/src/lib/components/files/file-select/file-select.component.html +9 -0
  251. package/src/lib/components/files/file-select/file-select.component.ts +61 -0
  252. package/src/lib/components/files/file-upload/file-upload.component.html +36 -0
  253. package/src/lib/components/files/file-upload/file-upload.component.ts +81 -0
  254. package/src/lib/components/forms/clipboard/elder-clipboard.service.ts +57 -0
  255. package/src/lib/components/forms/directives/base/elder-class-hostbinding-base.ts +55 -0
  256. package/src/lib/components/forms/directives/elder-clipboard-put.directive.ts +44 -0
  257. package/src/lib/components/forms/directives/elder-delayed-focus.directive.ts +44 -0
  258. package/src/lib/components/forms/directives/elder-form-field-dense.directive.ts +31 -0
  259. package/src/lib/components/forms/directives/elder-form-field-label.directive.ts +92 -0
  260. package/src/lib/components/forms/directives/elder-form-field-no-hint.directive.ts +28 -0
  261. package/src/lib/components/forms/directives/elder-form-field-no-spinner.directive.ts +32 -0
  262. package/src/lib/components/forms/directives/elder-forms-directives.module.ts +115 -0
  263. package/src/lib/components/forms/directives/elder-input-pattern.directive.ts +76 -0
  264. package/src/lib/components/forms/directives/elder-key-event.directive.ts +126 -0
  265. package/src/lib/components/forms/directives/elder-max.directive.ts +38 -0
  266. package/src/lib/components/forms/directives/elder-min.directive.ts +38 -0
  267. package/src/lib/components/forms/directives/elder-next-focusable.directive.ts +101 -0
  268. package/src/lib/components/forms/directives/elder-plug-parent-form.directive.ts +28 -0
  269. package/src/lib/components/forms/directives/elder-stop-event-propagation.directive.ts +22 -0
  270. package/src/lib/components/forms/directives/elder-tab-focus-trap.directive.ts +188 -0
  271. package/src/lib/components/forms/directives/elder-touched.directive.ts +25 -0
  272. package/src/lib/components/forms/directives/elder-triple-state-checkbox.directive.ts +132 -0
  273. package/src/lib/components/forms/directives/validation/elder-multiple-of.validator.ts +59 -0
  274. package/src/lib/components/forms/directives/validation/elder-required-ignore-zero.validator.ts +80 -0
  275. package/src/lib/components/forms/elder-forms.module.ts +17 -0
  276. package/src/lib/components/forms/public_api.ts +3 -0
  277. package/src/lib/components/forms/search/elder-search-context.directive.ts +181 -0
  278. package/src/lib/components/forms/search/elder-search-input.directive.ts +244 -0
  279. package/src/lib/components/forms/search/elder-search.module.ts +49 -0
  280. package/src/lib/components/forms/search/model/search-input-state.ts +95 -0
  281. package/src/lib/components/forms/search/model/search-input.ts +30 -0
  282. package/src/lib/components/forms/search/model/simple-search-input.ts +69 -0
  283. package/src/lib/components/forms/search/search-box/elder-search-box.component.html +66 -0
  284. package/src/lib/components/forms/search/search-box/elder-search-box.component.ts +149 -0
  285. package/src/lib/components/forms/search/search-box/elder-search-panel.component.ts +10 -0
  286. package/src/lib/components/global-search/elder-global-search.component.html +54 -0
  287. package/src/lib/components/global-search/elder-global-search.component.ts +158 -0
  288. package/src/lib/components/global-search/elder-global-search.module.ts +28 -0
  289. package/src/lib/components/global-search/elder-global-search.service.ts +118 -0
  290. package/src/lib/components/graph/elder-progress-bar/elder-progress-bar.component.html +19 -0
  291. package/src/lib/components/graph/elder-progress-bar/elder-progress-bar.component.ts +112 -0
  292. package/src/lib/components/graph/elder-progress-bar/elder-progress-bar.module.ts +22 -0
  293. package/src/lib/components/graph/elder-progress-bar/sub-bar.ts +6 -0
  294. package/{lib/components/graph/public_api.d.ts → src/lib/components/graph/public_api.ts} +0 -0
  295. package/src/lib/components/headers/elder-header/elder-header.component.css +0 -0
  296. package/src/lib/components/headers/elder-header/elder-header.component.html +5 -0
  297. package/src/lib/components/headers/elder-header/elder-header.component.ts +38 -0
  298. package/src/lib/components/headers/elder-header.module.ts +29 -0
  299. package/src/lib/components/http-support/elder-http-client.service.ts +82 -0
  300. package/src/lib/components/http-support/public_api.ts +3 -0
  301. package/src/lib/components/i18n/entities/elder-i18n-entities.module.ts +76 -0
  302. package/src/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.html +41 -0
  303. package/src/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.ts +176 -0
  304. package/src/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.html +36 -0
  305. package/src/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.ts +33 -0
  306. package/src/lib/components/i18n/entities/elder-localized-input-dialog.service.ts +35 -0
  307. package/src/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.html +56 -0
  308. package/src/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.ts +200 -0
  309. package/src/lib/components/i18n/entities/elder-localized-text-column.directive.ts +34 -0
  310. package/src/lib/components/i18n/entities/elder-localized-texts.directive.ts +62 -0
  311. package/src/lib/components/i18n/entities/picker/i18n-pick-async.pipe.ts +49 -0
  312. package/src/lib/components/i18n/entities/picker/i18n-pick.pipe.ts +36 -0
  313. package/src/lib/components/i18n/entities/picker/localisation-picker.service.ts +104 -0
  314. package/src/lib/components/i18n/language/elder-language-config.ts +18 -0
  315. package/src/lib/components/i18n/language/elder-language-interceptor.ts +94 -0
  316. package/src/lib/components/i18n/language/elder-language.module.ts +60 -0
  317. package/src/lib/components/i18n/language/elder-language.service.ts +139 -0
  318. package/src/lib/components/i18n/language/language-switcher/elder-language-switcher.component.html +24 -0
  319. package/src/lib/components/i18n/language/language-switcher/elder-language-switcher.component.ts +71 -0
  320. package/src/lib/components/i18n/locales/elder-locales-de-ch.module.ts +46 -0
  321. package/{lib/components/i18n/public_api.d.ts → src/lib/components/i18n/public_api.ts} +0 -0
  322. package/src/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.html +8 -0
  323. package/src/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.ts +173 -0
  324. package/src/lib/components/iframes/data-view/data-view-iframe-adapter.directive.ts +150 -0
  325. package/src/lib/components/iframes/elder-iframe.module.ts +63 -0
  326. package/src/lib/components/iframes/iframe-close.directive.ts +49 -0
  327. package/src/lib/components/iframes/iframe-dialog/iframe-dialog.component.html +11 -0
  328. package/src/lib/components/iframes/iframe-dialog/iframe-dialog.component.ts +63 -0
  329. package/src/lib/components/iframes/iframe-host/iframe-host.component.html +43 -0
  330. package/src/lib/components/iframes/iframe-host/iframe-host.component.ts +172 -0
  331. package/src/lib/components/iframes/iframe-side-content/iframe-side-content.component.html +14 -0
  332. package/src/lib/components/iframes/iframe-side-content/iframe-side-content.component.ts +102 -0
  333. package/src/lib/components/iframes/iframe.service.ts +59 -0
  334. package/src/lib/components/iframes/typed-event-message.ts +66 -0
  335. package/src/lib/components/infinitescroll/elder-infinite-autocomplete.directive.ts +79 -0
  336. package/src/lib/components/infinitescroll/elder-infinite-scroll.directive.ts +187 -0
  337. package/src/lib/components/infinitescroll/elder-infinite-scroll.module.ts +32 -0
  338. package/src/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete-option-selected.ts +11 -0
  339. package/src/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.html +66 -0
  340. package/src/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.ts +233 -0
  341. package/src/lib/components/input/autocomplete/elder-autocomplete-many.directive.ts +244 -0
  342. package/src/lib/components/input/autocomplete/elder-autocomplete.directive.ts +145 -0
  343. package/src/lib/components/input/autocomplete/elder-autocomplete.module.ts +41 -0
  344. package/src/lib/components/input/autocomplete/many/word-position-finder.spec.ts +74 -0
  345. package/src/lib/components/input/autocomplete/many/word-position-finder.ts +76 -0
  346. package/src/lib/components/input/public_api.ts +3 -0
  347. package/src/lib/components/labels/elder-labels.module.ts +22 -0
  348. package/src/lib/components/labels/labels-input/labels-input.component.html +44 -0
  349. package/src/lib/components/labels/labels-input/labels-input.component.ts +255 -0
  350. package/src/lib/components/measures/dimensions-input/elder-dimensions-input.component.html +71 -0
  351. package/src/lib/components/measures/dimensions-input/elder-dimensions-input.component.ts +307 -0
  352. package/src/lib/components/measures/directives/elder-unit-select.directive.ts +70 -0
  353. package/src/lib/components/measures/elder-measures.module.ts +78 -0
  354. package/src/lib/components/measures/elder-quantity-transform.pipe.ts +46 -0
  355. package/src/lib/components/measures/elder-quantity.pipe.ts +102 -0
  356. package/src/lib/components/measures/elder-unit.service.ts +135 -0
  357. package/src/lib/components/measures/model/dimensions.ts +40 -0
  358. package/src/lib/components/measures/model/quantity.ts +19 -0
  359. package/src/lib/components/measures/model/unit-dimension.ts +16 -0
  360. package/src/lib/components/measures/model/unit-registry.ts +110 -0
  361. package/src/lib/components/measures/model/unit.ts +192 -0
  362. package/src/lib/components/measures/public_api.ts +9 -0
  363. package/src/lib/components/measures/quantity-input/elder-quantity-input.component.html +64 -0
  364. package/src/lib/components/measures/quantity-input/elder-quantity-input.component.ts +221 -0
  365. package/src/lib/components/measures/util/elder-quantity.service.ts +313 -0
  366. package/src/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.html +89 -0
  367. package/src/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.ts +221 -0
  368. package/src/lib/components/navigation/bread-crumbs/elder-bread-crumbs.module.ts +38 -0
  369. package/src/lib/components/navigation/bread-crumbs/path/path.ts +49 -0
  370. package/src/lib/components/navigation/nav/elder-nav.module.ts +36 -0
  371. package/src/lib/components/navigation/nav/nav-group/elder-nav-group.component.html +34 -0
  372. package/src/lib/components/navigation/nav/nav-group/elder-nav-group.component.ts +94 -0
  373. package/src/lib/components/navigation/nav/nav-link/elder-nav-link.component.html +89 -0
  374. package/src/lib/components/navigation/nav/nav-link/elder-nav-link.component.ts +78 -0
  375. package/src/lib/components/navigation/nav/nav-list/elder-nav-list.component.html +5 -0
  376. package/src/lib/components/navigation/nav/nav-list/elder-nav-list.component.ts +16 -0
  377. package/{lib/components/navigation/public_api.d.ts → src/lib/components/navigation/public_api.ts} +0 -0
  378. package/src/lib/components/navigation/toolbar/elder-toolbar-column.directive.ts +53 -0
  379. package/src/lib/components/navigation/toolbar/elder-toolbar.module.ts +52 -0
  380. package/src/lib/components/navigation/toolbar/elder-toolbar.service.ts +77 -0
  381. package/src/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.html +50 -0
  382. package/src/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.ts +78 -0
  383. package/src/lib/components/navigation/toolbar/toolbar-column-position.ts +20 -0
  384. package/src/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.html +1 -0
  385. package/src/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.ts +54 -0
  386. package/src/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.service.ts +107 -0
  387. package/src/lib/components/overlays/elder-overlay-origin.directive.ts +45 -0
  388. package/src/lib/components/overlays/elder-overlay-trigger.directive.ts +71 -0
  389. package/src/lib/components/overlays/elder-overlay.component.ts +262 -0
  390. package/src/lib/components/overlays/elder-overlay.module.ts +29 -0
  391. package/src/lib/components/panels/card-panel/elder-card-panel.component.html +4 -0
  392. package/src/lib/components/panels/card-panel/elder-card-panel.component.ts +11 -0
  393. package/src/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.html +4 -0
  394. package/src/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.ts +11 -0
  395. package/src/lib/components/panels/elder-panel.module.ts +31 -0
  396. package/src/lib/components/panels/flat/elder-panel.component.html +2 -0
  397. package/src/lib/components/panels/flat/elder-panel.component.ts +30 -0
  398. package/{lib/components/public_api.d.ts → src/lib/components/public_api.ts} +0 -0
  399. package/src/lib/components/select/auto/elder-auto-select-first.directive.ts +87 -0
  400. package/src/lib/components/select/auto/elder-select-first-util.ts +98 -0
  401. package/src/lib/components/select/elder-select-base.ts +355 -0
  402. package/src/lib/components/select/elder-select-chip.directive.ts +32 -0
  403. package/src/lib/components/select/elder-select-on-tab.directive.ts +150 -0
  404. package/src/lib/components/select/elder-select-value.directive.ts +9 -0
  405. package/src/lib/components/select/elder-select.module.ts +94 -0
  406. package/src/lib/components/select/multi/elder-multi-select-base.ts +451 -0
  407. package/src/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.html +89 -0
  408. package/src/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.ts +316 -0
  409. package/src/lib/components/select/multi/elder-multi-select-form-field.ts +80 -0
  410. package/src/lib/components/select/popup/selection-model-popup-trigger-adapter.directive.ts +102 -0
  411. package/src/lib/components/select/popup/selection-model-popup.directive.ts +145 -0
  412. package/src/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.html +18 -0
  413. package/src/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.ts +56 -0
  414. package/src/lib/components/select/public_api.ts +5 -0
  415. package/src/lib/components/select/single/elder-clear-select.directive.ts +64 -0
  416. package/src/lib/components/select/single/elder-select/elder-select.component.html +91 -0
  417. package/src/lib/components/select/single/elder-select/elder-select.component.ts +530 -0
  418. package/src/lib/components/select/single/elder-select-form-field.ts +57 -0
  419. package/src/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.html +13 -0
  420. package/src/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.ts +169 -0
  421. package/src/lib/components/select-chip-list/elder-chip-list-select.module.ts +31 -0
  422. package/src/lib/components/select-list/elder-select-list.module.ts +27 -0
  423. package/src/lib/components/select-list/select-list/elder-select-list.component.html +5 -0
  424. package/src/lib/components/select-list/select-list/elder-select-list.component.ts +91 -0
  425. package/src/lib/components/select-list/select-list-item/elder-select-list-item.component.html +32 -0
  426. package/src/lib/components/select-list/select-list-item/elder-select-list-item.component.ts +135 -0
  427. package/src/lib/components/shell/drawers/drawer-outlet-binding.ts +73 -0
  428. package/src/lib/components/shell/drawers/elder-route-outlet-drawer.service.ts +137 -0
  429. package/src/lib/components/shell/drawers/elder-router-outlet.service.ts +145 -0
  430. package/src/lib/components/shell/elder-shell-slot.directive.ts +61 -0
  431. package/src/lib/components/shell/elder-shell.module.ts +69 -0
  432. package/src/lib/components/shell/elder-shell.service.ts +176 -0
  433. package/src/lib/components/shell/header/elder-app-header/elder-app-header.component.html +25 -0
  434. package/src/lib/components/shell/header/elder-app-header/elder-app-header.component.ts +89 -0
  435. package/src/lib/components/shell/shell/elder-shell.component.html +86 -0
  436. package/src/lib/components/shell/shell/elder-shell.component.ts +243 -0
  437. package/src/lib/components/shell/shell-content-slot.ts +8 -0
  438. package/src/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.html +4 -0
  439. package/src/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.ts +153 -0
  440. package/src/lib/components/tabs/elder-tab/elder-tab.directive.ts +31 -0
  441. package/src/lib/components/tabs/elder-tab-group-routing/elder-tab-group-routing.directive.ts +320 -0
  442. package/src/lib/components/tabs/elder-tab.module.ts +27 -0
  443. package/src/lib/components/theme/elder-theme-applier.directive.ts +73 -0
  444. package/src/lib/components/theme/elder-theme-preference.service.ts +79 -0
  445. package/src/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.html +9 -0
  446. package/src/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.ts +86 -0
  447. package/src/lib/components/theme/elder-theme.directive.ts +65 -0
  448. package/src/lib/components/theme/elder-theme.module.ts +52 -0
  449. package/src/lib/components/theme/elder-theme.service.ts +151 -0
  450. package/src/lib/components/theme/known-elder-themes.ts +17 -0
  451. package/{lib/components/theme/public_api.d.ts → src/lib/components/theme/public_api.ts} +0 -0
  452. package/src/lib/components/theme/theme-spec.ts +32 -0
  453. package/src/lib/components/time/date-adapters/custom-date-adapter.ts +34 -0
  454. package/src/lib/components/time/duration/duration-bucket.ts +143 -0
  455. package/src/lib/components/time/duration/duration-format.ts +346 -0
  456. package/src/lib/components/time/duration/elder-duration-input/elder-duration-input.component.html +51 -0
  457. package/src/lib/components/time/duration/elder-duration-input/elder-duration-input.component.ts +132 -0
  458. package/src/lib/components/time/duration/iso-duration-str.ts +5 -0
  459. package/src/lib/components/time/elder-date-switcher/elder-date-switcher.component.html +29 -0
  460. package/src/lib/components/time/elder-date-switcher/elder-date-switcher.component.ts +120 -0
  461. package/src/lib/components/time/elder-date-time-input/elder-date-time-input.component.html +16 -0
  462. package/src/lib/components/time/elder-date-time-input/elder-date-time-input.component.ts +93 -0
  463. package/src/lib/components/time/elder-interval-input/elder-interval-input.component.html +92 -0
  464. package/src/lib/components/time/elder-interval-input/elder-interval-input.component.ts +222 -0
  465. package/src/lib/components/time/elder-local-date-input/elder-local-date-input.component.html +41 -0
  466. package/src/lib/components/time/elder-local-date-input/elder-local-date-input.component.ts +213 -0
  467. package/src/lib/components/time/elder-local-time-input/elder-local-time-input.component.html +19 -0
  468. package/src/lib/components/time/elder-local-time-input/elder-local-time-input.component.ts +98 -0
  469. package/src/lib/components/time/elder-time.module.ts +95 -0
  470. package/src/lib/components/time/period/elder-period-input/elder-period-input.component.html +40 -0
  471. package/src/lib/components/time/period/elder-period-input/elder-period-input.component.ts +148 -0
  472. package/src/lib/components/time/period/period-bucket.ts +51 -0
  473. package/src/lib/components/time/period/period-format.ts +127 -0
  474. package/src/lib/components/time/public_api.ts +8 -0
  475. package/src/lib/components/toasts/elder-toast.module.ts +22 -0
  476. package/src/lib/components/toasts/elder-toast.service.ts +244 -0
  477. package/src/lib/components/toasts/standard-toast/standard-toast.component.html +34 -0
  478. package/src/lib/components/toasts/standard-toast/standard-toast.component.ts +80 -0
  479. package/src/lib/components/toasts/toast-type.ts +5 -0
  480. package/src/lib/components/toasts/toast.ts +12 -0
  481. package/src/lib/components/url-fragment/elder-url-fragment.module.ts +36 -0
  482. package/src/lib/components/url-fragment/elder-url-fragment.ts +10 -0
  483. package/src/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.html +25 -0
  484. package/src/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.ts +107 -0
  485. package/src/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.html +1 -0
  486. package/src/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.ts +81 -0
  487. package/src/lib/components/viewers/elder-viewers.module.ts +18 -0
  488. package/src/lib/features/event-source/elder-event-source.service.ts +71 -0
  489. package/src/lib/features/event-source/public_api.ts +3 -0
  490. package/src/lib/features/event-source/reactive-event-source.ts +252 -0
  491. package/src/lib/features/kafent/access-token-provider.ts +21 -0
  492. package/src/lib/features/kafent/kafent-config.ts +42 -0
  493. package/src/lib/features/kafent/kafent-event-stream.ts +48 -0
  494. package/src/lib/features/kafent/kafent-event.service.ts +128 -0
  495. package/src/lib/features/kafent/kafent-event.ts +14 -0
  496. package/src/lib/features/kafent/kafent-live-event-request.ts +75 -0
  497. package/src/lib/features/kafent/kafent.module.ts +61 -0
  498. package/src/lib/features/kafent/sse/kafent-event-stream-sse.service.ts +167 -0
  499. package/src/lib/features/kafent/sse/kafent-topic-sse.ts +145 -0
  500. package/src/lib/features/public_api.ts +4 -0
  501. package/src/lib/i18n/elder-composite-translation-loader.ts +14 -0
  502. package/src/lib/i18n/elder-starter-translation-loader.ts +20 -0
  503. package/src/lib/pipes/bytes.pipe.ts +18 -0
  504. package/src/lib/pipes/elder-pipes.module.ts +51 -0
  505. package/src/lib/pipes/elder-repeat.pipe.ts +16 -0
  506. package/src/lib/pipes/elder-round.pipe.ts +37 -0
  507. package/src/lib/pipes/elder-safe-url.pipe.ts +12 -0
  508. package/src/lib/pipes/elder-truncate.pipe.ts +45 -0
  509. package/src/lib/pipes/iso-duration.pipe.ts +64 -0
  510. package/src/lib/pipes/iso-interval-parse.pipe.ts +61 -0
  511. package/src/lib/pipes/iso-interval.pipe.ts +146 -0
  512. package/src/lib/pipes/public_api.ts +3 -0
  513. package/src/lib/pipes/time-ago.pipe.ts +88 -0
  514. package/src/lib/pipes/time-duration.pipe.ts +81 -0
  515. package/src/lib/pipes/weight.pipe.ts +45 -0
  516. package/src/public_api.ts +8 -0
  517. package/src/test.ts +28 -0
  518. package/tsconfig.lib.json +33 -0
  519. package/tsconfig.lib.prod.json +10 -0
  520. package/tsconfig.spec.json +17 -0
  521. package/esm2020/elderbyte-ngx-starter.mjs +0 -5
  522. package/esm2020/lib/common/async/public_api.mjs +0 -2
  523. package/esm2020/lib/common/async/refreshing-entity.mjs +0 -86
  524. package/esm2020/lib/common/csv/csv-serializer.mjs +0 -55
  525. package/esm2020/lib/common/csv/csv-spec.mjs +0 -99
  526. package/esm2020/lib/common/csv/public_api.mjs +0 -3
  527. package/esm2020/lib/common/data/continuable-listing.mjs +0 -10
  528. package/esm2020/lib/common/data/data-context/data-context-active-page.mjs +0 -130
  529. package/esm2020/lib/common/data/data-context/data-context-auto-starter.mjs +0 -74
  530. package/esm2020/lib/common/data/data-context/data-context-base.mjs +0 -283
  531. package/esm2020/lib/common/data/data-context/data-context-builder.mjs +0 -246
  532. package/esm2020/lib/common/data/data-context/data-context-continuable-base.mjs +0 -69
  533. package/esm2020/lib/common/data/data-context/data-context-continuable-paged.mjs +0 -143
  534. package/esm2020/lib/common/data/data-context/data-context-continuable-token.mjs +0 -136
  535. package/esm2020/lib/common/data/data-context/data-context-life-cycle-binding.mjs +0 -30
  536. package/esm2020/lib/common/data/data-context/data-context-simple.mjs +0 -59
  537. package/esm2020/lib/common/data/data-context/data-context-source-auto-reloader.mjs +0 -12
  538. package/esm2020/lib/common/data/data-context/data-context-status.mjs +0 -46
  539. package/esm2020/lib/common/data/data-context/data-context.mjs +0 -30
  540. package/esm2020/lib/common/data/data-context/mat-table-data-context-binding.mjs +0 -139
  541. package/esm2020/lib/common/data/data-context/public_api.mjs +0 -14
  542. package/esm2020/lib/common/data/datasource/data-source-adapter.mjs +0 -55
  543. package/esm2020/lib/common/data/datasource/data-source-processor.mjs +0 -199
  544. package/esm2020/lib/common/data/datasource/data-source.mjs +0 -23
  545. package/esm2020/lib/common/data/datasource/entity-id-util.mjs +0 -11
  546. package/esm2020/lib/common/data/datasource/fetcher/delegate-data-source.mjs +0 -127
  547. package/esm2020/lib/common/data/datasource/local/local-list-data-source.mjs +0 -102
  548. package/esm2020/lib/common/data/datasource/local/local-paged-data-source.mjs +0 -73
  549. package/esm2020/lib/common/data/datasource/public_api.mjs +0 -8
  550. package/esm2020/lib/common/data/datasource/rest/public_api.mjs +0 -2
  551. package/esm2020/lib/common/data/datasource/rest/rest-client.mjs +0 -294
  552. package/esm2020/lib/common/data/entity-set-patch.mjs +0 -164
  553. package/esm2020/lib/common/data/field-comparator.mjs +0 -99
  554. package/esm2020/lib/common/data/filters/filter-context.mjs +0 -141
  555. package/esm2020/lib/common/data/filters/filter.mjs +0 -109
  556. package/esm2020/lib/common/data/http-params-builder.mjs +0 -110
  557. package/esm2020/lib/common/data/page.mjs +0 -58
  558. package/esm2020/lib/common/data/public_api.mjs +0 -12
  559. package/esm2020/lib/common/data/required-filter-evaluator.mjs +0 -70
  560. package/esm2020/lib/common/data/sort-context.mjs +0 -75
  561. package/esm2020/lib/common/data/sort.mjs +0 -11
  562. package/esm2020/lib/common/data/token-chunk-request.mjs +0 -8
  563. package/esm2020/lib/common/enums/elder-enum-translation.service.mjs +0 -81
  564. package/esm2020/lib/common/enums/public_api.mjs +0 -2
  565. package/esm2020/lib/common/errors/exception-detail.mjs +0 -2
  566. package/esm2020/lib/common/errors/public_api.mjs +0 -3
  567. package/esm2020/lib/common/errors/standard-error-detail.mjs +0 -2
  568. package/esm2020/lib/common/format/bytes-format.mjs +0 -22
  569. package/esm2020/lib/common/format/bytes-per-second-format.mjs +0 -41
  570. package/esm2020/lib/common/format/public_api.mjs +0 -3
  571. package/esm2020/lib/common/forms/elder-entity-value-accessor.mjs +0 -22
  572. package/esm2020/lib/common/forms/elder-form-field-control-base.directive.mjs +0 -178
  573. package/esm2020/lib/common/forms/elder-from-field-base.mjs +0 -94
  574. package/esm2020/lib/common/forms/elder-from-field-entity-base.mjs +0 -39
  575. package/esm2020/lib/common/forms/elder-from-field-multi-entity-base.mjs +0 -47
  576. package/esm2020/lib/common/forms/elder-multi-entity-value-accessor.mjs +0 -22
  577. package/esm2020/lib/common/forms/form-field-base.component.mjs +0 -106
  578. package/esm2020/lib/common/forms/multi-model-base.component.mjs +0 -32
  579. package/esm2020/lib/common/forms/public_api.mjs +0 -12
  580. package/esm2020/lib/common/forms/template-composite-control.mjs +0 -133
  581. package/esm2020/lib/common/forms/value-accessor-base.mjs +0 -146
  582. package/esm2020/lib/common/forms/view-providers.mjs +0 -30
  583. package/esm2020/lib/common/http/http-client-builder.service.mjs +0 -14
  584. package/esm2020/lib/common/http/http-client-pristine.mjs +0 -21
  585. package/esm2020/lib/common/http/public_api.mjs +0 -5
  586. package/esm2020/lib/common/http/transfer/data-transfer-factory.mjs +0 -95
  587. package/esm2020/lib/common/http/transfer/data-transfer-progress-aggregate.mjs +0 -49
  588. package/esm2020/lib/common/http/transfer/data-transfer-progress.mjs +0 -17
  589. package/esm2020/lib/common/http/transfer/data-transfer-state.mjs +0 -82
  590. package/esm2020/lib/common/http/transfer/data-transfer-status.mjs +0 -24
  591. package/esm2020/lib/common/http/transfer/http-data-transfer.mjs +0 -180
  592. package/esm2020/lib/common/http/transfer/public_api.mjs +0 -7
  593. package/esm2020/lib/common/http/upload/file-upload-client.mjs +0 -42
  594. package/esm2020/lib/common/i18n/entity/impl/i18n-base.mjs +0 -6
  595. package/esm2020/lib/common/i18n/entity/impl/i18n-text.mjs +0 -16
  596. package/esm2020/lib/common/i18n/entity/language-tag.mjs +0 -12
  597. package/esm2020/lib/common/i18n/entity/locale.mjs +0 -12
  598. package/esm2020/lib/common/i18n/entity/localisation-picker.mjs +0 -30
  599. package/esm2020/lib/common/i18n/entity/localized.mjs +0 -2
  600. package/esm2020/lib/common/i18n/entity/public_api.mjs +0 -6
  601. package/esm2020/lib/common/i18n/public_api.mjs +0 -2
  602. package/esm2020/lib/common/json-map.mjs +0 -18
  603. package/esm2020/lib/common/objects.mjs +0 -41
  604. package/esm2020/lib/common/public_api.mjs +0 -19
  605. package/esm2020/lib/common/reactive-map.mjs +0 -69
  606. package/esm2020/lib/common/selection/public_api.mjs +0 -2
  607. package/esm2020/lib/common/selection/selection-model.mjs +0 -212
  608. package/esm2020/lib/common/sets.mjs +0 -44
  609. package/esm2020/lib/common/suggestion-provider.mjs +0 -12
  610. package/esm2020/lib/common/templates/template-slot-manager.mjs +0 -135
  611. package/esm2020/lib/common/time/date-util.mjs +0 -93
  612. package/esm2020/lib/common/time/interval.mjs +0 -419
  613. package/esm2020/lib/common/time/period-duration.mjs +0 -130
  614. package/esm2020/lib/common/time/public_api.mjs +0 -5
  615. package/esm2020/lib/common/time/time-util.mjs +0 -41
  616. package/esm2020/lib/common/url/elder-router.service.mjs +0 -54
  617. package/esm2020/lib/common/url/elder-url-fragment-params.service.mjs +0 -119
  618. package/esm2020/lib/common/url/public_api.mjs +0 -4
  619. package/esm2020/lib/common/url/url-query-params.mjs +0 -133
  620. package/esm2020/lib/common/utils/batcher.mjs +0 -35
  621. package/esm2020/lib/common/utils/collection-util.mjs +0 -109
  622. package/esm2020/lib/common/utils/filter-util.mjs +0 -52
  623. package/esm2020/lib/common/utils/next-number-util.mjs +0 -88
  624. package/esm2020/lib/common/utils/ng-zone-utils.mjs +0 -16
  625. package/esm2020/lib/common/utils/parse-util.mjs +0 -16
  626. package/esm2020/lib/common/utils/property-path-util.mjs +0 -28
  627. package/esm2020/lib/common/utils/public_api.mjs +0 -12
  628. package/esm2020/lib/common/utils/query-list-binding.mjs +0 -67
  629. package/esm2020/lib/common/utils/sort-util.mjs +0 -30
  630. package/esm2020/lib/common/utils/url-builder.mjs +0 -275
  631. package/esm2020/lib/common/utils/uuid-util.mjs +0 -29
  632. package/esm2020/lib/common/utils/value-wrapper.mjs +0 -19
  633. package/esm2020/lib/components/access-denied/elder-access-denied.component.mjs +0 -17
  634. package/esm2020/lib/components/access-denied/elder-access-denied.module.mjs +0 -34
  635. package/esm2020/lib/components/auditing/audited-entity/elder-audited-entity.component.mjs +0 -43
  636. package/esm2020/lib/components/auditing/elder-audit.module.mjs +0 -46
  637. package/esm2020/lib/components/auditing/i-audited-entity.mjs +0 -3
  638. package/esm2020/lib/components/button-group/elder-button-group/elder-button-group.component.mjs +0 -16
  639. package/esm2020/lib/components/button-group/elder-button-group.module.mjs +0 -39
  640. package/esm2020/lib/components/card-organizer/card-organizer/elder-card-organizer.component.mjs +0 -124
  641. package/esm2020/lib/components/card-organizer/card-organizer/elder-stack-card.directive.mjs +0 -15
  642. package/esm2020/lib/components/card-organizer/card-organizer-data.mjs +0 -93
  643. package/esm2020/lib/components/card-organizer/card-stack/elder-card-stack.component.mjs +0 -206
  644. package/esm2020/lib/components/card-organizer/card-stack.mjs +0 -176
  645. package/esm2020/lib/components/card-organizer/elder-card-organizer.module.mjs +0 -50
  646. package/esm2020/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.mjs +0 -19
  647. package/esm2020/lib/components/cards/elder-card/elder-card.component.mjs +0 -158
  648. package/esm2020/lib/components/cards/elder-card/elder-card.module.mjs +0 -66
  649. package/esm2020/lib/components/connectivity/elder-connectivity.module.mjs +0 -57
  650. package/esm2020/lib/components/connectivity/elder-connectivity.service.mjs +0 -63
  651. package/esm2020/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.mjs +0 -46
  652. package/esm2020/lib/components/connectivity/public_api.mjs +0 -3
  653. package/esm2020/lib/components/containers/elder-containers.module.mjs +0 -29
  654. package/esm2020/lib/components/containers/elder-scroll-container/elder-scroll-container.component.mjs +0 -25
  655. package/esm2020/lib/components/containers/public_api.mjs +0 -2
  656. package/esm2020/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.mjs +0 -77
  657. package/esm2020/lib/components/csv/elder-csv-stream-exporter-builder.mjs +0 -40
  658. package/esm2020/lib/components/csv/elder-csv-stream-exporter-builder.service.mjs +0 -38
  659. package/esm2020/lib/components/csv/elder-csv-stream-exporter.mjs +0 -114
  660. package/esm2020/lib/components/csv/elder-csv.module.mjs +0 -37
  661. package/esm2020/lib/components/currency/elder-currency.module.mjs +0 -24
  662. package/esm2020/lib/components/currency/elder-currency.pipe.mjs +0 -33
  663. package/esm2020/lib/components/currency/model/currency-code.mjs +0 -38
  664. package/esm2020/lib/components/currency/model/currency-unit-registry.mjs +0 -30
  665. package/esm2020/lib/components/currency/model/currency-unit.mjs +0 -10
  666. package/esm2020/lib/components/currency/model/currency.mjs +0 -15
  667. package/esm2020/lib/components/currency/public_api.mjs +0 -7
  668. package/esm2020/lib/components/data-transfer/elder-data-transfer.module.mjs +0 -76
  669. package/esm2020/lib/components/data-transfer/elder-data-transfer.service.mjs +0 -89
  670. package/esm2020/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.mjs +0 -68
  671. package/esm2020/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.mjs +0 -35
  672. package/esm2020/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.mjs +0 -48
  673. package/esm2020/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.mjs +0 -33
  674. package/esm2020/lib/components/data-view/base/data-view-options-provider-binding.mjs +0 -67
  675. package/esm2020/lib/components/data-view/base/elder-data-view-base.mjs +0 -259
  676. package/esm2020/lib/components/data-view/base/elder-data-view-options-provider.mjs +0 -44
  677. package/esm2020/lib/components/data-view/base/elder-data-view-options.mjs +0 -45
  678. package/esm2020/lib/components/data-view/base/elder-data-view.mjs +0 -3
  679. package/esm2020/lib/components/data-view/base/public_api.mjs +0 -6
  680. package/esm2020/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.mjs +0 -46
  681. package/esm2020/lib/components/data-view/common/elder-data-common.module.mjs +0 -90
  682. package/esm2020/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.mjs +0 -150
  683. package/esm2020/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.mjs +0 -90
  684. package/esm2020/lib/components/data-view/common/selection/data-context-selection.directive.mjs +0 -98
  685. package/esm2020/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.mjs +0 -38
  686. package/esm2020/lib/components/data-view/common/selection/master-selection-state.mjs +0 -10
  687. package/esm2020/lib/components/data-view/elder-data-view-interaction-mode.mjs +0 -2
  688. package/esm2020/lib/components/data-view/grid/elder-grid/elder-grid.component.mjs +0 -293
  689. package/esm2020/lib/components/data-view/grid/elder-grid.module.mjs +0 -85
  690. package/esm2020/lib/components/data-view/public_api.mjs +0 -6
  691. package/esm2020/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.mjs +0 -19
  692. package/esm2020/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.module.mjs +0 -79
  693. package/esm2020/lib/components/data-view/table/activation/elder-item-activator.mjs +0 -2
  694. package/esm2020/lib/components/data-view/table/activation/elder-table-activation-options.mjs +0 -2
  695. package/esm2020/lib/components/data-view/table/activation/elder-table-activation.directive.mjs +0 -261
  696. package/esm2020/lib/components/data-view/table/elder-number-cell.directive.mjs +0 -29
  697. package/esm2020/lib/components/data-view/table/elder-paginator-intl.mjs +0 -72
  698. package/esm2020/lib/components/data-view/table/elder-table/elder-table-toolbar.directive.mjs +0 -18
  699. package/esm2020/lib/components/data-view/table/elder-table/elder-table.component.mjs +0 -322
  700. package/esm2020/lib/components/data-view/table/elder-table-column.directive.mjs +0 -17
  701. package/esm2020/lib/components/data-view/table/elder-table-extension.directive.mjs +0 -96
  702. package/esm2020/lib/components/data-view/table/elder-table-root.directive.mjs +0 -29
  703. package/esm2020/lib/components/data-view/table/elder-table-row.directive.mjs +0 -136
  704. package/esm2020/lib/components/data-view/table/elder-table-sort.directive.mjs +0 -20
  705. package/esm2020/lib/components/data-view/table/elder-table.module.mjs +0 -142
  706. package/esm2020/lib/components/data-view/table/model/elder-column-layout.mjs +0 -110
  707. package/esm2020/lib/components/data-view/table/model/elder-table-model-cdk-table-binding.mjs +0 -81
  708. package/esm2020/lib/components/data-view/table/model/elder-table-model-provider.mjs +0 -40
  709. package/esm2020/lib/components/data-view/table/model/elder-table-model-query-group.mjs +0 -87
  710. package/esm2020/lib/components/data-view/table/model/elder-table-model.mjs +0 -165
  711. package/esm2020/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.mjs +0 -23
  712. package/esm2020/lib/components/dialogs/elder-dialog-config.mjs +0 -3
  713. package/esm2020/lib/components/dialogs/elder-dialog.module.mjs +0 -83
  714. package/esm2020/lib/components/dialogs/elder-dialog.service.mjs +0 -161
  715. package/esm2020/lib/components/dialogs/question-dialog/elder-question-dialog.component.mjs +0 -41
  716. package/esm2020/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.mjs +0 -44
  717. package/esm2020/lib/components/dialogs/selection-dialog/elder-selection-dialog.directive.mjs +0 -46
  718. package/esm2020/lib/components/errors/elder-error.module.mjs +0 -45
  719. package/esm2020/lib/components/errors/error-util.mjs +0 -94
  720. package/esm2020/lib/components/errors/exception-detail/elder-exception-detail.component.mjs +0 -67
  721. package/esm2020/lib/components/expand-toggle-button/elder-expand-toggle-button.component.mjs +0 -56
  722. package/esm2020/lib/components/expand-toggle-button/elder-expand-toggle-button.module.mjs +0 -28
  723. package/esm2020/lib/components/files/blob-url.mjs +0 -10
  724. package/esm2020/lib/components/files/blob-viewer/elder-blob-viewer.component.mjs +0 -226
  725. package/esm2020/lib/components/files/elder-file-drop-zone.directive.mjs +0 -109
  726. package/esm2020/lib/components/files/elder-file-select.directive.mjs +0 -143
  727. package/esm2020/lib/components/files/elder-file.module.mjs +0 -68
  728. package/esm2020/lib/components/files/file-select/file-select.component.mjs +0 -55
  729. package/esm2020/lib/components/files/file-upload/file-upload.component.mjs +0 -75
  730. package/esm2020/lib/components/forms/clipboard/elder-clipboard.service.mjs +0 -51
  731. package/esm2020/lib/components/forms/directives/base/elder-class-hostbinding-base.mjs +0 -34
  732. package/esm2020/lib/components/forms/directives/elder-clipboard-put.directive.mjs +0 -35
  733. package/esm2020/lib/components/forms/directives/elder-delayed-focus.directive.mjs +0 -42
  734. package/esm2020/lib/components/forms/directives/elder-form-field-dense.directive.mjs +0 -34
  735. package/esm2020/lib/components/forms/directives/elder-form-field-label.directive.mjs +0 -82
  736. package/esm2020/lib/components/forms/directives/elder-form-field-no-hint.directive.mjs +0 -34
  737. package/esm2020/lib/components/forms/directives/elder-form-field-no-spinner.directive.mjs +0 -34
  738. package/esm2020/lib/components/forms/directives/elder-forms-directives.module.mjs +0 -159
  739. package/esm2020/lib/components/forms/directives/elder-input-pattern.directive.mjs +0 -77
  740. package/esm2020/lib/components/forms/directives/elder-key-event.directive.mjs +0 -111
  741. package/esm2020/lib/components/forms/directives/elder-max.directive.mjs +0 -39
  742. package/esm2020/lib/components/forms/directives/elder-min.directive.mjs +0 -39
  743. package/esm2020/lib/components/forms/directives/elder-next-focusable.directive.mjs +0 -101
  744. package/esm2020/lib/components/forms/directives/elder-plug-parent-form.directive.mjs +0 -36
  745. package/esm2020/lib/components/forms/directives/elder-stop-event-propagation.directive.mjs +0 -29
  746. package/esm2020/lib/components/forms/directives/elder-tab-focus-trap.directive.mjs +0 -157
  747. package/esm2020/lib/components/forms/directives/elder-touched.directive.mjs +0 -27
  748. package/esm2020/lib/components/forms/directives/elder-triple-state-checkbox.directive.mjs +0 -120
  749. package/esm2020/lib/components/forms/directives/validation/elder-multiple-of.validator.mjs +0 -57
  750. package/esm2020/lib/components/forms/directives/validation/elder-required-ignore-zero.validator.mjs +0 -68
  751. package/esm2020/lib/components/forms/elder-forms.module.mjs +0 -22
  752. package/esm2020/lib/components/forms/public_api.mjs +0 -2
  753. package/esm2020/lib/components/forms/search/elder-search-context.directive.mjs +0 -146
  754. package/esm2020/lib/components/forms/search/elder-search-input.directive.mjs +0 -185
  755. package/esm2020/lib/components/forms/search/elder-search.module.mjs +0 -67
  756. package/esm2020/lib/components/forms/search/model/search-input-state.mjs +0 -78
  757. package/esm2020/lib/components/forms/search/model/search-input.mjs +0 -2
  758. package/esm2020/lib/components/forms/search/search-box/elder-search-box.component.mjs +0 -124
  759. package/esm2020/lib/components/forms/search/search-box/elder-search-panel.component.mjs +0 -16
  760. package/esm2020/lib/components/global-search/elder-global-search.component.mjs +0 -127
  761. package/esm2020/lib/components/global-search/elder-global-search.module.mjs +0 -33
  762. package/esm2020/lib/components/global-search/elder-global-search.service.mjs +0 -93
  763. package/esm2020/lib/components/graph/elder-progress-bar/elder-progress-bar.component.mjs +0 -98
  764. package/esm2020/lib/components/graph/elder-progress-bar/elder-progress-bar.module.mjs +0 -30
  765. package/esm2020/lib/components/graph/elder-progress-bar/sub-bar.mjs +0 -7
  766. package/esm2020/lib/components/graph/public_api.mjs +0 -2
  767. package/esm2020/lib/components/headers/elder-header/elder-header.component.mjs +0 -29
  768. package/esm2020/lib/components/headers/elder-header.module.mjs +0 -44
  769. package/esm2020/lib/components/http-support/elder-http-client.service.mjs +0 -68
  770. package/esm2020/lib/components/http-support/public_api.mjs +0 -2
  771. package/esm2020/lib/components/i18n/entities/elder-i18n-entities.module.mjs +0 -123
  772. package/esm2020/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.mjs +0 -136
  773. package/esm2020/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.mjs +0 -29
  774. package/esm2020/lib/components/i18n/entities/elder-localized-input-dialog.service.mjs +0 -30
  775. package/esm2020/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.mjs +0 -152
  776. package/esm2020/lib/components/i18n/entities/elder-localized-text-column.directive.mjs +0 -28
  777. package/esm2020/lib/components/i18n/entities/elder-localized-texts.directive.mjs +0 -56
  778. package/esm2020/lib/components/i18n/entities/picker/i18n-pick-async.pipe.mjs +0 -39
  779. package/esm2020/lib/components/i18n/entities/picker/i18n-pick.pipe.mjs +0 -30
  780. package/esm2020/lib/components/i18n/entities/picker/localisation-picker.service.mjs +0 -74
  781. package/esm2020/lib/components/i18n/language/elder-language-config.mjs +0 -3
  782. package/esm2020/lib/components/i18n/language/elder-language-interceptor.mjs +0 -69
  783. package/esm2020/lib/components/i18n/language/elder-language.module.mjs +0 -76
  784. package/esm2020/lib/components/i18n/language/elder-language.service.mjs +0 -121
  785. package/esm2020/lib/components/i18n/language/language-switcher/elder-language-switcher.component.mjs +0 -66
  786. package/esm2020/lib/components/i18n/locales/elder-locales-de-ch.module.mjs +0 -53
  787. package/esm2020/lib/components/i18n/public_api.mjs +0 -4
  788. package/esm2020/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.mjs +0 -128
  789. package/esm2020/lib/components/iframes/data-view/data-view-iframe-adapter.directive.mjs +0 -136
  790. package/esm2020/lib/components/iframes/elder-iframe.module.mjs +0 -99
  791. package/esm2020/lib/components/iframes/iframe-close.directive.mjs +0 -41
  792. package/esm2020/lib/components/iframes/iframe-dialog/iframe-dialog.component.mjs +0 -52
  793. package/esm2020/lib/components/iframes/iframe-host/iframe-host.component.mjs +0 -127
  794. package/esm2020/lib/components/iframes/iframe-side-content/iframe-side-content.component.mjs +0 -79
  795. package/esm2020/lib/components/iframes/iframe.service.mjs +0 -48
  796. package/esm2020/lib/components/iframes/typed-event-message.mjs +0 -42
  797. package/esm2020/lib/components/infinitescroll/elder-infinite-autocomplete.directive.mjs +0 -61
  798. package/esm2020/lib/components/infinitescroll/elder-infinite-scroll.directive.mjs +0 -157
  799. package/esm2020/lib/components/infinitescroll/elder-infinite-scroll.module.mjs +0 -40
  800. package/esm2020/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete-option-selected.mjs +0 -9
  801. package/esm2020/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.mjs +0 -187
  802. package/esm2020/lib/components/input/autocomplete/elder-autocomplete-many.directive.mjs +0 -197
  803. package/esm2020/lib/components/input/autocomplete/elder-autocomplete.directive.mjs +0 -114
  804. package/esm2020/lib/components/input/autocomplete/elder-autocomplete.module.mjs +0 -62
  805. package/esm2020/lib/components/input/autocomplete/many/word-position-finder.mjs +0 -58
  806. package/esm2020/lib/components/input/public_api.mjs +0 -2
  807. package/esm2020/lib/components/labels/elder-labels.module.mjs +0 -30
  808. package/esm2020/lib/components/labels/labels-input/labels-input.component.mjs +0 -230
  809. package/esm2020/lib/components/measures/dimensions-input/elder-dimensions-input.component.mjs +0 -240
  810. package/esm2020/lib/components/measures/directives/elder-unit-select.directive.mjs +0 -64
  811. package/esm2020/lib/components/measures/elder-measures.module.mjs +0 -120
  812. package/esm2020/lib/components/measures/elder-quantity-transform.pipe.mjs +0 -41
  813. package/esm2020/lib/components/measures/elder-quantity.pipe.mjs +0 -73
  814. package/esm2020/lib/components/measures/elder-unit.service.mjs +0 -115
  815. package/esm2020/lib/components/measures/model/dimensions.mjs +0 -17
  816. package/esm2020/lib/components/measures/model/quantity.mjs +0 -12
  817. package/esm2020/lib/components/measures/model/unit-dimension.mjs +0 -14
  818. package/esm2020/lib/components/measures/model/unit-registry.mjs +0 -81
  819. package/esm2020/lib/components/measures/model/unit.mjs +0 -143
  820. package/esm2020/lib/components/measures/public_api.mjs +0 -8
  821. package/esm2020/lib/components/measures/quantity-input/elder-quantity-input.component.mjs +0 -190
  822. package/esm2020/lib/components/measures/util/elder-quantity.service.mjs +0 -237
  823. package/esm2020/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.mjs +0 -165
  824. package/esm2020/lib/components/navigation/bread-crumbs/elder-bread-crumbs.module.mjs +0 -56
  825. package/esm2020/lib/components/navigation/bread-crumbs/path/path.mjs +0 -37
  826. package/esm2020/lib/components/navigation/nav/elder-nav.module.mjs +0 -52
  827. package/esm2020/lib/components/navigation/nav/nav-group/elder-nav-group.component.mjs +0 -94
  828. package/esm2020/lib/components/navigation/nav/nav-link/elder-nav-link.component.mjs +0 -65
  829. package/esm2020/lib/components/navigation/nav/nav-list/elder-nav-list.component.mjs +0 -14
  830. package/esm2020/lib/components/navigation/public_api.mjs +0 -4
  831. package/esm2020/lib/components/navigation/toolbar/elder-toolbar-column.directive.mjs +0 -46
  832. package/esm2020/lib/components/navigation/toolbar/elder-toolbar.module.mjs +0 -77
  833. package/esm2020/lib/components/navigation/toolbar/elder-toolbar.service.mjs +0 -68
  834. package/esm2020/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.mjs +0 -67
  835. package/esm2020/lib/components/navigation/toolbar/toolbar-column-position.mjs +0 -2
  836. package/esm2020/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.mjs +0 -39
  837. package/esm2020/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.service.mjs +0 -85
  838. package/esm2020/lib/components/overlays/elder-overlay-origin.directive.mjs +0 -43
  839. package/esm2020/lib/components/overlays/elder-overlay-trigger.directive.mjs +0 -72
  840. package/esm2020/lib/components/overlays/elder-overlay.component.mjs +0 -204
  841. package/esm2020/lib/components/overlays/elder-overlay.module.mjs +0 -41
  842. package/esm2020/lib/components/panels/card-panel/elder-card-panel.component.mjs +0 -13
  843. package/esm2020/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.mjs +0 -13
  844. package/esm2020/lib/components/panels/elder-panel.module.mjs +0 -42
  845. package/esm2020/lib/components/panels/flat/elder-panel.component.mjs +0 -26
  846. package/esm2020/lib/components/public_api.mjs +0 -40
  847. package/esm2020/lib/components/select/auto/elder-auto-select-first.directive.mjs +0 -77
  848. package/esm2020/lib/components/select/auto/elder-select-first-util.mjs +0 -62
  849. package/esm2020/lib/components/select/elder-select-base.mjs +0 -284
  850. package/esm2020/lib/components/select/elder-select-chip.directive.mjs +0 -45
  851. package/esm2020/lib/components/select/elder-select-on-tab.directive.mjs +0 -133
  852. package/esm2020/lib/components/select/elder-select-value.directive.mjs +0 -15
  853. package/esm2020/lib/components/select/elder-select.module.mjs +0 -134
  854. package/esm2020/lib/components/select/multi/elder-multi-select-base.mjs +0 -356
  855. package/esm2020/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.mjs +0 -238
  856. package/esm2020/lib/components/select/multi/elder-multi-select-form-field.mjs +0 -67
  857. package/esm2020/lib/components/select/popup/selection-model-popup-trigger-adapter.directive.mjs +0 -86
  858. package/esm2020/lib/components/select/popup/selection-model-popup.directive.mjs +0 -126
  859. package/esm2020/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.mjs +0 -48
  860. package/esm2020/lib/components/select/public_api.mjs +0 -6
  861. package/esm2020/lib/components/select/single/elder-clear-select.directive.mjs +0 -57
  862. package/esm2020/lib/components/select/single/elder-select/elder-select.component.mjs +0 -443
  863. package/esm2020/lib/components/select/single/elder-select-form-field.mjs +0 -45
  864. package/esm2020/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.mjs +0 -154
  865. package/esm2020/lib/components/select-chip-list/elder-chip-list-select.module.mjs +0 -49
  866. package/esm2020/lib/components/select-list/elder-select-list.module.mjs +0 -37
  867. package/esm2020/lib/components/select-list/select-list/elder-select-list.component.mjs +0 -76
  868. package/esm2020/lib/components/select-list/select-list-item/elder-select-list-item.component.mjs +0 -119
  869. package/esm2020/lib/components/shell/drawers/drawer-outlet-binding.mjs +0 -60
  870. package/esm2020/lib/components/shell/drawers/elder-route-outlet-drawer.service.mjs +0 -117
  871. package/esm2020/lib/components/shell/drawers/elder-router-outlet.service.mjs +0 -128
  872. package/esm2020/lib/components/shell/elder-shell-slot.directive.mjs +0 -46
  873. package/esm2020/lib/components/shell/elder-shell.module.mjs +0 -91
  874. package/esm2020/lib/components/shell/elder-shell.service.mjs +0 -145
  875. package/esm2020/lib/components/shell/header/elder-app-header/elder-app-header.component.mjs +0 -74
  876. package/esm2020/lib/components/shell/shell/elder-shell.component.mjs +0 -207
  877. package/esm2020/lib/components/shell/shell-content-slot.mjs +0 -2
  878. package/esm2020/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.mjs +0 -137
  879. package/esm2020/lib/components/tabs/elder-tab/elder-tab.directive.mjs +0 -25
  880. package/esm2020/lib/components/tabs/elder-tab-group-routing/elder-tab-group-routing.directive.mjs +0 -256
  881. package/esm2020/lib/components/tabs/elder-tab.module.mjs +0 -36
  882. package/esm2020/lib/components/theme/elder-theme-applier.directive.mjs +0 -62
  883. package/esm2020/lib/components/theme/elder-theme-preference.service.mjs +0 -74
  884. package/esm2020/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.mjs +0 -72
  885. package/esm2020/lib/components/theme/elder-theme.directive.mjs +0 -61
  886. package/esm2020/lib/components/theme/elder-theme.module.mjs +0 -74
  887. package/esm2020/lib/components/theme/elder-theme.service.mjs +0 -123
  888. package/esm2020/lib/components/theme/known-elder-themes.mjs +0 -6
  889. package/esm2020/lib/components/theme/public_api.mjs +0 -2
  890. package/esm2020/lib/components/theme/theme-spec.mjs +0 -15
  891. package/esm2020/lib/components/time/date-adapters/custom-date-adapter.mjs +0 -23
  892. package/esm2020/lib/components/time/duration/duration-bucket.mjs +0 -67
  893. package/esm2020/lib/components/time/duration/duration-format.mjs +0 -271
  894. package/esm2020/lib/components/time/duration/elder-duration-input/elder-duration-input.component.mjs +0 -110
  895. package/esm2020/lib/components/time/duration/iso-duration-str.mjs +0 -2
  896. package/esm2020/lib/components/time/elder-date-switcher/elder-date-switcher.component.mjs +0 -101
  897. package/esm2020/lib/components/time/elder-date-time-input/elder-date-time-input.component.mjs +0 -80
  898. package/esm2020/lib/components/time/elder-interval-input/elder-interval-input.component.mjs +0 -127
  899. package/esm2020/lib/components/time/elder-local-date-input/elder-local-date-input.component.mjs +0 -190
  900. package/esm2020/lib/components/time/elder-local-time-input/elder-local-time-input.component.mjs +0 -85
  901. package/esm2020/lib/components/time/elder-time.module.mjs +0 -143
  902. package/esm2020/lib/components/time/period/elder-period-input/elder-period-input.component.mjs +0 -120
  903. package/esm2020/lib/components/time/period/period-bucket.mjs +0 -31
  904. package/esm2020/lib/components/time/period/period-format.mjs +0 -89
  905. package/esm2020/lib/components/time/public_api.mjs +0 -8
  906. package/esm2020/lib/components/toasts/elder-toast.module.mjs +0 -23
  907. package/esm2020/lib/components/toasts/elder-toast.service.mjs +0 -197
  908. package/esm2020/lib/components/toasts/standard-toast/standard-toast.component.mjs +0 -74
  909. package/esm2020/lib/components/toasts/toast-type.mjs +0 -7
  910. package/esm2020/lib/components/toasts/toast.mjs +0 -2
  911. package/esm2020/lib/components/url-fragment/elder-url-fragment.mjs +0 -9
  912. package/esm2020/lib/components/url-fragment/elder-url-fragment.module.mjs +0 -58
  913. package/esm2020/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.mjs +0 -85
  914. package/esm2020/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.mjs +0 -65
  915. package/esm2020/lib/components/viewers/elder-viewers.module.mjs +0 -25
  916. package/esm2020/lib/features/event-source/elder-event-source.service.mjs +0 -56
  917. package/esm2020/lib/features/event-source/public_api.mjs +0 -3
  918. package/esm2020/lib/features/event-source/reactive-event-source.mjs +0 -198
  919. package/esm2020/lib/features/kafent/access-token-provider.mjs +0 -20
  920. package/esm2020/lib/features/kafent/kafent-config.mjs +0 -24
  921. package/esm2020/lib/features/kafent/kafent-event-stream.mjs +0 -25
  922. package/esm2020/lib/features/kafent/kafent-event.mjs +0 -3
  923. package/esm2020/lib/features/kafent/kafent-event.service.mjs +0 -107
  924. package/esm2020/lib/features/kafent/kafent-live-event-request.mjs +0 -2
  925. package/esm2020/lib/features/kafent/kafent.module.mjs +0 -61
  926. package/esm2020/lib/features/kafent/sse/kafent-event-stream-sse.service.mjs +0 -128
  927. package/esm2020/lib/features/kafent/sse/kafent-topic-sse.mjs +0 -98
  928. package/esm2020/lib/features/public_api.mjs +0 -3
  929. package/esm2020/lib/pipes/bytes.pipe.mjs +0 -24
  930. package/esm2020/lib/pipes/elder-pipes.module.mjs +0 -67
  931. package/esm2020/lib/pipes/elder-repeat.pipe.mjs +0 -21
  932. package/esm2020/lib/pipes/elder-round.pipe.mjs +0 -35
  933. package/esm2020/lib/pipes/elder-safe-url.pipe.mjs +0 -20
  934. package/esm2020/lib/pipes/elder-truncate.pipe.mjs +0 -40
  935. package/esm2020/lib/pipes/iso-duration.pipe.mjs +0 -58
  936. package/esm2020/lib/pipes/iso-interval-parse.pipe.mjs +0 -49
  937. package/esm2020/lib/pipes/iso-interval.pipe.mjs +0 -109
  938. package/esm2020/lib/pipes/public_api.mjs +0 -2
  939. package/esm2020/lib/pipes/time-ago.pipe.mjs +0 -104
  940. package/esm2020/lib/pipes/time-duration.pipe.mjs +0 -98
  941. package/esm2020/lib/pipes/weight.pipe.mjs +0 -56
  942. package/esm2020/public_api.mjs +0 -8
  943. package/fesm2015/elderbyte-ngx-starter.mjs +0 -27541
  944. package/fesm2015/elderbyte-ngx-starter.mjs.map +0 -1
  945. package/fesm2020/elderbyte-ngx-starter.mjs +0 -27428
  946. package/fesm2020/elderbyte-ngx-starter.mjs.map +0 -1
  947. package/index.d.ts +0 -5
  948. package/lib/common/async/public_api.d.ts +0 -1
  949. package/lib/common/async/refreshing-entity.d.ts +0 -55
  950. package/lib/common/csv/csv-serializer.d.ts +0 -33
  951. package/lib/common/csv/csv-spec.d.ts +0 -71
  952. package/lib/common/csv/public_api.d.ts +0 -2
  953. package/lib/common/data/continuable-listing.d.ts +0 -28
  954. package/lib/common/data/data-context/data-context-active-page.d.ts +0 -75
  955. package/lib/common/data/data-context/data-context-auto-starter.d.ts +0 -41
  956. package/lib/common/data/data-context/data-context-base.d.ts +0 -149
  957. package/lib/common/data/data-context/data-context-builder.d.ts +0 -142
  958. package/lib/common/data/data-context/data-context-continuable-base.d.ts +0 -43
  959. package/lib/common/data/data-context/data-context-continuable-paged.d.ts +0 -58
  960. package/lib/common/data/data-context/data-context-continuable-token.d.ts +0 -48
  961. package/lib/common/data/data-context/data-context-life-cycle-binding.d.ts +0 -33
  962. package/lib/common/data/data-context/data-context-simple.d.ts +0 -30
  963. package/lib/common/data/data-context/data-context-source-auto-reloader.d.ts +0 -8
  964. package/lib/common/data/data-context/data-context-status.d.ts +0 -30
  965. package/lib/common/data/data-context/data-context.d.ts +0 -154
  966. package/lib/common/data/data-context/mat-table-data-context-binding.d.ts +0 -60
  967. package/lib/common/data/data-context/public_api.d.ts +0 -13
  968. package/lib/common/data/datasource/data-source-adapter.d.ts +0 -39
  969. package/lib/common/data/datasource/data-source-processor.d.ts +0 -106
  970. package/lib/common/data/datasource/data-source.d.ts +0 -58
  971. package/lib/common/data/datasource/entity-id-util.d.ts +0 -3
  972. package/lib/common/data/datasource/fetcher/delegate-data-source.d.ts +0 -84
  973. package/lib/common/data/datasource/local/local-list-data-source.d.ts +0 -61
  974. package/lib/common/data/datasource/local/local-paged-data-source.d.ts +0 -49
  975. package/lib/common/data/datasource/public_api.d.ts +0 -7
  976. package/lib/common/data/datasource/rest/public_api.d.ts +0 -1
  977. package/lib/common/data/datasource/rest/rest-client.d.ts +0 -162
  978. package/lib/common/data/entity-set-patch.d.ts +0 -74
  979. package/lib/common/data/field-comparator.d.ts +0 -43
  980. package/lib/common/data/filters/filter-context.d.ts +0 -63
  981. package/lib/common/data/filters/filter.d.ts +0 -52
  982. package/lib/common/data/http-params-builder.d.ts +0 -45
  983. package/lib/common/data/page.d.ts +0 -41
  984. package/lib/common/data/public_api.d.ts +0 -11
  985. package/lib/common/data/required-filter-evaluator.d.ts +0 -46
  986. package/lib/common/data/sort-context.d.ts +0 -42
  987. package/lib/common/data/sort.d.ts +0 -8
  988. package/lib/common/data/token-chunk-request.d.ts +0 -8
  989. package/lib/common/enums/elder-enum-translation.service.d.ts +0 -52
  990. package/lib/common/enums/public_api.d.ts +0 -1
  991. package/lib/common/errors/exception-detail.d.ts +0 -5
  992. package/lib/common/errors/standard-error-detail.d.ts +0 -22
  993. package/lib/common/format/bytes-format.d.ts +0 -4
  994. package/lib/common/format/bytes-per-second-format.d.ts +0 -5
  995. package/lib/common/forms/elder-entity-value-accessor.d.ts +0 -42
  996. package/lib/common/forms/elder-form-field-control-base.directive.d.ts +0 -103
  997. package/lib/common/forms/elder-from-field-base.d.ts +0 -52
  998. package/lib/common/forms/elder-from-field-entity-base.d.ts +0 -31
  999. package/lib/common/forms/elder-from-field-multi-entity-base.d.ts +0 -35
  1000. package/lib/common/forms/elder-multi-entity-value-accessor.d.ts +0 -52
  1001. package/lib/common/forms/form-field-base.component.d.ts +0 -74
  1002. package/lib/common/forms/multi-model-base.component.d.ts +0 -23
  1003. package/lib/common/forms/public_api.d.ts +0 -11
  1004. package/lib/common/forms/template-composite-control.d.ts +0 -64
  1005. package/lib/common/forms/value-accessor-base.d.ts +0 -98
  1006. package/lib/common/forms/view-providers.d.ts +0 -23
  1007. package/lib/common/http/http-client-builder.service.d.ts +0 -6
  1008. package/lib/common/http/http-client-pristine.d.ts +0 -10
  1009. package/lib/common/http/public_api.d.ts +0 -4
  1010. package/lib/common/http/transfer/data-transfer-factory.d.ts +0 -70
  1011. package/lib/common/http/transfer/data-transfer-progress-aggregate.d.ts +0 -27
  1012. package/lib/common/http/transfer/data-transfer-progress.d.ts +0 -13
  1013. package/lib/common/http/transfer/data-transfer-state.d.ts +0 -52
  1014. package/lib/common/http/transfer/data-transfer-status.d.ts +0 -22
  1015. package/lib/common/http/transfer/http-data-transfer.d.ts +0 -96
  1016. package/lib/common/http/transfer/public_api.d.ts +0 -6
  1017. package/lib/common/http/upload/file-upload-client.d.ts +0 -38
  1018. package/lib/common/i18n/entity/impl/i18n-base.d.ts +0 -6
  1019. package/lib/common/i18n/entity/impl/i18n-text.d.ts +0 -11
  1020. package/lib/common/i18n/entity/language-tag.d.ts +0 -15
  1021. package/lib/common/i18n/entity/locale.d.ts +0 -8
  1022. package/lib/common/i18n/entity/localisation-picker.d.ts +0 -14
  1023. package/lib/common/i18n/entity/localized.d.ts +0 -10
  1024. package/lib/common/i18n/entity/public_api.d.ts +0 -5
  1025. package/lib/common/i18n/public_api.d.ts +0 -1
  1026. package/lib/common/json-map.d.ts +0 -7
  1027. package/lib/common/objects.d.ts +0 -19
  1028. package/lib/common/public_api.d.ts +0 -18
  1029. package/lib/common/reactive-map.d.ts +0 -40
  1030. package/lib/common/selection/selection-model.d.ts +0 -82
  1031. package/lib/common/sets.d.ts +0 -20
  1032. package/lib/common/suggestion-provider.d.ts +0 -13
  1033. package/lib/common/templates/template-slot-manager.d.ts +0 -70
  1034. package/lib/common/time/date-util.d.ts +0 -54
  1035. package/lib/common/time/interval.d.ts +0 -287
  1036. package/lib/common/time/period-duration.d.ts +0 -84
  1037. package/lib/common/time/public_api.d.ts +0 -4
  1038. package/lib/common/time/time-util.d.ts +0 -15
  1039. package/lib/common/url/elder-router.service.d.ts +0 -36
  1040. package/lib/common/url/elder-url-fragment-params.service.d.ts +0 -62
  1041. package/lib/common/url/public_api.d.ts +0 -3
  1042. package/lib/common/url/url-query-params.d.ts +0 -96
  1043. package/lib/common/utils/batcher.d.ts +0 -14
  1044. package/lib/common/utils/collection-util.d.ts +0 -35
  1045. package/lib/common/utils/filter-util.d.ts +0 -7
  1046. package/lib/common/utils/next-number-util.d.ts +0 -39
  1047. package/lib/common/utils/ng-zone-utils.d.ts +0 -7
  1048. package/lib/common/utils/parse-util.d.ts +0 -8
  1049. package/lib/common/utils/property-path-util.d.ts +0 -8
  1050. package/lib/common/utils/query-list-binding.d.ts +0 -57
  1051. package/lib/common/utils/sort-util.d.ts +0 -10
  1052. package/lib/common/utils/url-builder.d.ts +0 -160
  1053. package/lib/common/utils/uuid-util.d.ts +0 -18
  1054. package/lib/common/utils/value-wrapper.d.ts +0 -15
  1055. package/lib/components/access-denied/elder-access-denied.component.d.ts +0 -8
  1056. package/lib/components/access-denied/elder-access-denied.module.d.ts +0 -12
  1057. package/lib/components/auditing/audited-entity/elder-audited-entity.component.d.ts +0 -21
  1058. package/lib/components/auditing/elder-audit.module.d.ts +0 -15
  1059. package/lib/components/auditing/i-audited-entity.d.ts +0 -13
  1060. package/lib/components/button-group/elder-button-group/elder-button-group.component.d.ts +0 -8
  1061. package/lib/components/button-group/elder-button-group.module.d.ts +0 -13
  1062. package/lib/components/card-organizer/card-organizer/elder-card-organizer.component.d.ts +0 -64
  1063. package/lib/components/card-organizer/card-organizer/elder-stack-card.directive.d.ts +0 -9
  1064. package/lib/components/card-organizer/card-organizer-data.d.ts +0 -57
  1065. package/lib/components/card-organizer/card-stack/elder-card-stack.component.d.ts +0 -89
  1066. package/lib/components/card-organizer/card-stack.d.ts +0 -146
  1067. package/lib/components/card-organizer/elder-card-organizer.module.d.ts +0 -23
  1068. package/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.d.ts +0 -6
  1069. package/lib/components/cards/elder-card/elder-card.component.d.ts +0 -68
  1070. package/lib/components/cards/elder-card/elder-card.module.d.ts +0 -14
  1071. package/lib/components/connectivity/elder-connectivity.module.d.ts +0 -15
  1072. package/lib/components/connectivity/elder-connectivity.service.d.ts +0 -36
  1073. package/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.d.ts +0 -33
  1074. package/lib/components/connectivity/public_api.d.ts +0 -2
  1075. package/lib/components/containers/elder-containers.module.d.ts +0 -10
  1076. package/lib/components/containers/elder-scroll-container/elder-scroll-container.component.d.ts +0 -12
  1077. package/lib/components/containers/public_api.d.ts +0 -1
  1078. package/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.d.ts +0 -51
  1079. package/lib/components/csv/elder-csv-stream-exporter-builder.d.ts +0 -35
  1080. package/lib/components/csv/elder-csv-stream-exporter-builder.service.d.ts +0 -28
  1081. package/lib/components/csv/elder-csv-stream-exporter.d.ts +0 -58
  1082. package/lib/components/csv/elder-csv.module.d.ts +0 -14
  1083. package/lib/components/currency/elder-currency.module.d.ts +0 -8
  1084. package/lib/components/currency/elder-currency.pipe.d.ts +0 -21
  1085. package/lib/components/currency/model/currency-code.d.ts +0 -36
  1086. package/lib/components/currency/model/currency-unit-registry.d.ts +0 -23
  1087. package/lib/components/currency/model/currency-unit.d.ts +0 -7
  1088. package/lib/components/currency/model/currency.d.ts +0 -10
  1089. package/lib/components/currency/public_api.d.ts +0 -6
  1090. package/lib/components/data-transfer/elder-data-transfer.module.d.ts +0 -27
  1091. package/lib/components/data-transfer/elder-data-transfer.service.d.ts +0 -55
  1092. package/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.d.ts +0 -30
  1093. package/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.d.ts +0 -29
  1094. package/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.d.ts +0 -31
  1095. package/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.d.ts +0 -28
  1096. package/lib/components/data-view/base/data-view-options-provider-binding.d.ts +0 -39
  1097. package/lib/components/data-view/base/elder-data-view-base.d.ts +0 -129
  1098. package/lib/components/data-view/base/elder-data-view-options-provider.d.ts +0 -38
  1099. package/lib/components/data-view/base/elder-data-view-options.d.ts +0 -34
  1100. package/lib/components/data-view/base/elder-data-view.d.ts +0 -7
  1101. package/lib/components/data-view/base/public_api.d.ts +0 -5
  1102. package/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.d.ts +0 -32
  1103. package/lib/components/data-view/common/elder-data-common.module.d.ts +0 -30
  1104. package/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.d.ts +0 -66
  1105. package/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.d.ts +0 -45
  1106. package/lib/components/data-view/common/selection/data-context-selection.directive.d.ts +0 -48
  1107. package/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.d.ts +0 -26
  1108. package/lib/components/data-view/common/selection/master-selection-state.d.ts +0 -8
  1109. package/lib/components/data-view/elder-data-view-interaction-mode.d.ts +0 -21
  1110. package/lib/components/data-view/grid/elder-grid/elder-grid.component.d.ts +0 -112
  1111. package/lib/components/data-view/grid/elder-grid.module.d.ts +0 -25
  1112. package/lib/components/data-view/public_api.d.ts +0 -5
  1113. package/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.d.ts +0 -9
  1114. package/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.module.d.ts +0 -29
  1115. package/lib/components/data-view/table/activation/elder-item-activator.d.ts +0 -3
  1116. package/lib/components/data-view/table/activation/elder-table-activation-options.d.ts +0 -16
  1117. package/lib/components/data-view/table/activation/elder-table-activation.directive.d.ts +0 -78
  1118. package/lib/components/data-view/table/elder-number-cell.directive.d.ts +0 -12
  1119. package/lib/components/data-view/table/elder-paginator-intl.d.ts +0 -38
  1120. package/lib/components/data-view/table/elder-table/elder-table-toolbar.directive.d.ts +0 -12
  1121. package/lib/components/data-view/table/elder-table/elder-table.component.d.ts +0 -129
  1122. package/lib/components/data-view/table/elder-table-column.directive.d.ts +0 -9
  1123. package/lib/components/data-view/table/elder-table-extension.directive.d.ts +0 -53
  1124. package/lib/components/data-view/table/elder-table-root.directive.d.ts +0 -15
  1125. package/lib/components/data-view/table/elder-table-row.directive.d.ts +0 -63
  1126. package/lib/components/data-view/table/elder-table-sort.directive.d.ts +0 -11
  1127. package/lib/components/data-view/table/elder-table.module.d.ts +0 -48
  1128. package/lib/components/data-view/table/model/elder-column-layout.d.ts +0 -44
  1129. package/lib/components/data-view/table/model/elder-table-model-cdk-table-binding.d.ts +0 -44
  1130. package/lib/components/data-view/table/model/elder-table-model-provider.d.ts +0 -25
  1131. package/lib/components/data-view/table/model/elder-table-model-query-group.d.ts +0 -53
  1132. package/lib/components/data-view/table/model/elder-table-model.d.ts +0 -83
  1133. package/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.d.ts +0 -22
  1134. package/lib/components/dialogs/elder-dialog-config.d.ts +0 -16
  1135. package/lib/components/dialogs/elder-dialog.module.d.ts +0 -36
  1136. package/lib/components/dialogs/elder-dialog.service.d.ts +0 -71
  1137. package/lib/components/dialogs/question-dialog/elder-question-dialog.component.d.ts +0 -22
  1138. package/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.d.ts +0 -29
  1139. package/lib/components/dialogs/selection-dialog/elder-selection-dialog.directive.d.ts +0 -24
  1140. package/lib/components/errors/elder-error.module.d.ts +0 -17
  1141. package/lib/components/errors/error-util.d.ts +0 -23
  1142. package/lib/components/errors/exception-detail/elder-exception-detail.component.d.ts +0 -42
  1143. package/lib/components/expand-toggle-button/elder-expand-toggle-button.component.d.ts +0 -33
  1144. package/lib/components/expand-toggle-button/elder-expand-toggle-button.module.d.ts +0 -12
  1145. package/lib/components/files/blob-url.d.ts +0 -6
  1146. package/lib/components/files/blob-viewer/elder-blob-viewer.component.d.ts +0 -107
  1147. package/lib/components/files/elder-file-drop-zone.directive.d.ts +0 -45
  1148. package/lib/components/files/elder-file-select.directive.d.ts +0 -66
  1149. package/lib/components/files/elder-file.module.d.ts +0 -24
  1150. package/lib/components/files/file-select/file-select.component.d.ts +0 -34
  1151. package/lib/components/files/file-upload/file-upload.component.d.ts +0 -45
  1152. package/lib/components/forms/clipboard/elder-clipboard.service.d.ts +0 -26
  1153. package/lib/components/forms/directives/base/elder-class-hostbinding-base.d.ts +0 -32
  1154. package/lib/components/forms/directives/elder-clipboard-put.directive.d.ts +0 -22
  1155. package/lib/components/forms/directives/elder-delayed-focus.directive.d.ts +0 -21
  1156. package/lib/components/forms/directives/elder-form-field-dense.directive.d.ts +0 -19
  1157. package/lib/components/forms/directives/elder-form-field-label.directive.d.ts +0 -58
  1158. package/lib/components/forms/directives/elder-form-field-no-hint.directive.d.ts +0 -19
  1159. package/lib/components/forms/directives/elder-form-field-no-spinner.directive.d.ts +0 -19
  1160. package/lib/components/forms/directives/elder-forms-directives.module.d.ts +0 -68
  1161. package/lib/components/forms/directives/elder-input-pattern.directive.d.ts +0 -41
  1162. package/lib/components/forms/directives/elder-key-event.directive.d.ts +0 -58
  1163. package/lib/components/forms/directives/elder-max.directive.d.ts +0 -11
  1164. package/lib/components/forms/directives/elder-min.directive.d.ts +0 -11
  1165. package/lib/components/forms/directives/elder-next-focusable.directive.d.ts +0 -48
  1166. package/lib/components/forms/directives/elder-plug-parent-form.directive.d.ts +0 -13
  1167. package/lib/components/forms/directives/elder-stop-event-propagation.directive.d.ts +0 -16
  1168. package/lib/components/forms/directives/elder-tab-focus-trap.directive.d.ts +0 -63
  1169. package/lib/components/forms/directives/elder-touched.directive.d.ts +0 -14
  1170. package/lib/components/forms/directives/elder-triple-state-checkbox.directive.d.ts +0 -51
  1171. package/lib/components/forms/directives/validation/elder-multiple-of.validator.d.ts +0 -20
  1172. package/lib/components/forms/directives/validation/elder-required-ignore-zero.validator.d.ts +0 -33
  1173. package/lib/components/forms/elder-forms.module.d.ts +0 -12
  1174. package/lib/components/forms/public_api.d.ts +0 -1
  1175. package/lib/components/forms/search/elder-search-context.directive.d.ts +0 -79
  1176. package/lib/components/forms/search/elder-search-input.directive.d.ts +0 -85
  1177. package/lib/components/forms/search/elder-search.module.d.ts +0 -26
  1178. package/lib/components/forms/search/model/search-input-state.d.ts +0 -67
  1179. package/lib/components/forms/search/model/search-input.d.ts +0 -21
  1180. package/lib/components/forms/search/search-box/elder-search-box.component.d.ts +0 -72
  1181. package/lib/components/forms/search/search-box/elder-search-panel.component.d.ts +0 -6
  1182. package/lib/components/global-search/elder-global-search.component.d.ts +0 -39
  1183. package/lib/components/global-search/elder-global-search.module.d.ts +0 -19
  1184. package/lib/components/global-search/elder-global-search.service.d.ts +0 -54
  1185. package/lib/components/graph/elder-progress-bar/elder-progress-bar.component.d.ts +0 -54
  1186. package/lib/components/graph/elder-progress-bar/elder-progress-bar.module.d.ts +0 -11
  1187. package/lib/components/graph/elder-progress-bar/sub-bar.d.ts +0 -5
  1188. package/lib/components/headers/elder-header/elder-header.component.d.ts +0 -25
  1189. package/lib/components/headers/elder-header.module.d.ts +0 -12
  1190. package/lib/components/http-support/elder-http-client.service.d.ts +0 -48
  1191. package/lib/components/http-support/public_api.d.ts +0 -1
  1192. package/lib/components/i18n/entities/elder-i18n-entities.module.d.ts +0 -38
  1193. package/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.d.ts +0 -62
  1194. package/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.d.ts +0 -22
  1195. package/lib/components/i18n/entities/elder-localized-input-dialog.service.d.ts +0 -13
  1196. package/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.d.ts +0 -67
  1197. package/lib/components/i18n/entities/elder-localized-text-column.directive.d.ts +0 -17
  1198. package/lib/components/i18n/entities/elder-localized-texts.directive.d.ts +0 -37
  1199. package/lib/components/i18n/entities/picker/i18n-pick-async.pipe.d.ts +0 -23
  1200. package/lib/components/i18n/entities/picker/i18n-pick.pipe.d.ts +0 -22
  1201. package/lib/components/i18n/entities/picker/localisation-picker.service.d.ts +0 -44
  1202. package/lib/components/i18n/language/elder-language-config.d.ts +0 -14
  1203. package/lib/components/i18n/language/elder-language-interceptor.d.ts +0 -41
  1204. package/lib/components/i18n/language/elder-language.module.d.ts +0 -27
  1205. package/lib/components/i18n/language/elder-language.service.d.ts +0 -77
  1206. package/lib/components/i18n/language/language-switcher/elder-language-switcher.component.d.ts +0 -37
  1207. package/lib/components/i18n/locales/elder-locales-de-ch.module.d.ts +0 -10
  1208. package/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.d.ts +0 -68
  1209. package/lib/components/iframes/data-view/data-view-iframe-adapter.directive.d.ts +0 -62
  1210. package/lib/components/iframes/elder-iframe.module.d.ts +0 -28
  1211. package/lib/components/iframes/iframe-close.directive.d.ts +0 -24
  1212. package/lib/components/iframes/iframe-dialog/iframe-dialog.component.d.ts +0 -36
  1213. package/lib/components/iframes/iframe-host/iframe-host.component.d.ts +0 -92
  1214. package/lib/components/iframes/iframe-side-content/iframe-side-content.component.d.ts +0 -48
  1215. package/lib/components/iframes/iframe.service.d.ts +0 -25
  1216. package/lib/components/iframes/typed-event-message.d.ts +0 -26
  1217. package/lib/components/infinitescroll/elder-infinite-autocomplete.directive.d.ts +0 -30
  1218. package/lib/components/infinitescroll/elder-infinite-scroll.directive.d.ts +0 -63
  1219. package/lib/components/infinitescroll/elder-infinite-scroll.module.d.ts +0 -19
  1220. package/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete-option-selected.d.ts +0 -8
  1221. package/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.d.ts +0 -87
  1222. package/lib/components/input/autocomplete/elder-autocomplete-many.directive.d.ts +0 -78
  1223. package/lib/components/input/autocomplete/elder-autocomplete.directive.d.ts +0 -60
  1224. package/lib/components/input/autocomplete/elder-autocomplete.module.d.ts +0 -20
  1225. package/lib/components/input/autocomplete/many/word-position-finder.d.ts +0 -15
  1226. package/lib/components/input/public_api.d.ts +0 -1
  1227. package/lib/components/labels/elder-labels.module.d.ts +0 -15
  1228. package/lib/components/labels/labels-input/labels-input.component.d.ts +0 -91
  1229. package/lib/components/measures/dimensions-input/elder-dimensions-input.component.d.ts +0 -111
  1230. package/lib/components/measures/directives/elder-unit-select.directive.d.ts +0 -30
  1231. package/lib/components/measures/elder-measures.module.d.ts +0 -33
  1232. package/lib/components/measures/elder-quantity-transform.pipe.d.ts +0 -22
  1233. package/lib/components/measures/elder-quantity.pipe.d.ts +0 -40
  1234. package/lib/components/measures/elder-unit.service.d.ts +0 -39
  1235. package/lib/components/measures/model/dimensions.d.ts +0 -11
  1236. package/lib/components/measures/model/quantity.d.ts +0 -7
  1237. package/lib/components/measures/model/unit-dimension.d.ts +0 -12
  1238. package/lib/components/measures/model/unit-registry.d.ts +0 -46
  1239. package/lib/components/measures/model/unit.d.ts +0 -111
  1240. package/lib/components/measures/public_api.d.ts +0 -7
  1241. package/lib/components/measures/quantity-input/elder-quantity-input.component.d.ts +0 -94
  1242. package/lib/components/measures/util/elder-quantity.service.d.ts +0 -116
  1243. package/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.d.ts +0 -69
  1244. package/lib/components/navigation/bread-crumbs/elder-bread-crumbs.module.d.ts +0 -19
  1245. package/lib/components/navigation/bread-crumbs/path/path.d.ts +0 -31
  1246. package/lib/components/navigation/nav/elder-nav.module.d.ts +0 -19
  1247. package/lib/components/navigation/nav/nav-group/elder-nav-group.component.d.ts +0 -45
  1248. package/lib/components/navigation/nav/nav-link/elder-nav-link.component.d.ts +0 -27
  1249. package/lib/components/navigation/nav/nav-list/elder-nav-list.component.d.ts +0 -8
  1250. package/lib/components/navigation/toolbar/elder-toolbar-column.directive.d.ts +0 -34
  1251. package/lib/components/navigation/toolbar/elder-toolbar.module.d.ts +0 -24
  1252. package/lib/components/navigation/toolbar/elder-toolbar.service.d.ts +0 -46
  1253. package/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.d.ts +0 -42
  1254. package/lib/components/navigation/toolbar/toolbar-column-position.d.ts +0 -9
  1255. package/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.d.ts +0 -30
  1256. package/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.service.d.ts +0 -47
  1257. package/lib/components/overlays/elder-overlay-origin.directive.d.ts +0 -28
  1258. package/lib/components/overlays/elder-overlay-trigger.directive.d.ts +0 -36
  1259. package/lib/components/overlays/elder-overlay.component.d.ts +0 -88
  1260. package/lib/components/overlays/elder-overlay.module.d.ts +0 -14
  1261. package/lib/components/panels/card-panel/elder-card-panel.component.d.ts +0 -6
  1262. package/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.d.ts +0 -6
  1263. package/lib/components/panels/elder-panel.module.d.ts +0 -15
  1264. package/lib/components/panels/flat/elder-panel.component.d.ts +0 -15
  1265. package/lib/components/select/auto/elder-auto-select-first.directive.d.ts +0 -45
  1266. package/lib/components/select/auto/elder-select-first-util.d.ts +0 -22
  1267. package/lib/components/select/elder-select-base.d.ts +0 -149
  1268. package/lib/components/select/elder-select-chip.directive.d.ts +0 -23
  1269. package/lib/components/select/elder-select-on-tab.directive.d.ts +0 -55
  1270. package/lib/components/select/elder-select-value.directive.d.ts +0 -9
  1271. package/lib/components/select/elder-select.module.d.ts +0 -49
  1272. package/lib/components/select/multi/elder-multi-select-base.d.ts +0 -120
  1273. package/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.d.ts +0 -105
  1274. package/lib/components/select/multi/elder-multi-select-form-field.d.ts +0 -34
  1275. package/lib/components/select/popup/selection-model-popup-trigger-adapter.directive.d.ts +0 -42
  1276. package/lib/components/select/popup/selection-model-popup.directive.d.ts +0 -49
  1277. package/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.d.ts +0 -32
  1278. package/lib/components/select/public_api.d.ts +0 -5
  1279. package/lib/components/select/single/elder-clear-select.directive.d.ts +0 -34
  1280. package/lib/components/select/single/elder-select/elder-select.component.d.ts +0 -155
  1281. package/lib/components/select/single/elder-select-form-field.d.ts +0 -30
  1282. package/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.d.ts +0 -78
  1283. package/lib/components/select-chip-list/elder-chip-list-select.module.d.ts +0 -13
  1284. package/lib/components/select-list/elder-select-list.module.d.ts +0 -16
  1285. package/lib/components/select-list/select-list/elder-select-list.component.d.ts +0 -53
  1286. package/lib/components/select-list/select-list-item/elder-select-list-item.component.d.ts +0 -57
  1287. package/lib/components/shell/drawers/drawer-outlet-binding.d.ts +0 -36
  1288. package/lib/components/shell/drawers/elder-route-outlet-drawer.service.d.ts +0 -55
  1289. package/lib/components/shell/drawers/elder-router-outlet.service.d.ts +0 -64
  1290. package/lib/components/shell/elder-shell-slot.directive.d.ts +0 -34
  1291. package/lib/components/shell/elder-shell.module.d.ts +0 -31
  1292. package/lib/components/shell/elder-shell.service.d.ts +0 -98
  1293. package/lib/components/shell/header/elder-app-header/elder-app-header.component.d.ts +0 -43
  1294. package/lib/components/shell/shell/elder-shell.component.d.ts +0 -99
  1295. package/lib/components/shell/shell-content-slot.d.ts +0 -4
  1296. package/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.d.ts +0 -66
  1297. package/lib/components/tabs/elder-tab/elder-tab.directive.d.ts +0 -19
  1298. package/lib/components/tabs/elder-tab-group-routing/elder-tab-group-routing.directive.d.ts +0 -100
  1299. package/lib/components/tabs/elder-tab.module.d.ts +0 -13
  1300. package/lib/components/theme/elder-theme-applier.directive.d.ts +0 -36
  1301. package/lib/components/theme/elder-theme-preference.service.d.ts +0 -35
  1302. package/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.d.ts +0 -37
  1303. package/lib/components/theme/elder-theme.directive.d.ts +0 -38
  1304. package/lib/components/theme/elder-theme.module.d.ts +0 -22
  1305. package/lib/components/theme/elder-theme.service.d.ts +0 -51
  1306. package/lib/components/theme/known-elder-themes.d.ts +0 -5
  1307. package/lib/components/theme/theme-spec.d.ts +0 -18
  1308. package/lib/components/time/date-adapters/custom-date-adapter.d.ts +0 -12
  1309. package/lib/components/time/duration/duration-bucket.d.ts +0 -37
  1310. package/lib/components/time/duration/duration-format.d.ts +0 -62
  1311. package/lib/components/time/duration/elder-duration-input/elder-duration-input.component.d.ts +0 -58
  1312. package/lib/components/time/duration/iso-duration-str.d.ts +0 -5
  1313. package/lib/components/time/elder-date-switcher/elder-date-switcher.component.d.ts +0 -60
  1314. package/lib/components/time/elder-date-time-input/elder-date-time-input.component.d.ts +0 -42
  1315. package/lib/components/time/elder-interval-input/elder-interval-input.component.d.ts +0 -84
  1316. package/lib/components/time/elder-local-date-input/elder-local-date-input.component.d.ts +0 -78
  1317. package/lib/components/time/elder-local-time-input/elder-local-time-input.component.d.ts +0 -47
  1318. package/lib/components/time/elder-time.module.d.ts +0 -39
  1319. package/lib/components/time/period/elder-period-input/elder-period-input.component.d.ts +0 -71
  1320. package/lib/components/time/period/period-bucket.d.ts +0 -21
  1321. package/lib/components/time/period/period-format.d.ts +0 -43
  1322. package/lib/components/time/public_api.d.ts +0 -7
  1323. package/lib/components/toasts/elder-toast.module.d.ts +0 -13
  1324. package/lib/components/toasts/elder-toast.service.d.ts +0 -96
  1325. package/lib/components/toasts/standard-toast/standard-toast.component.d.ts +0 -38
  1326. package/lib/components/toasts/toast-type.d.ts +0 -5
  1327. package/lib/components/toasts/toast.d.ts +0 -7
  1328. package/lib/components/url-fragment/elder-url-fragment.d.ts +0 -7
  1329. package/lib/components/url-fragment/elder-url-fragment.module.d.ts +0 -18
  1330. package/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.d.ts +0 -38
  1331. package/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.d.ts +0 -41
  1332. package/lib/components/viewers/elder-viewers.module.d.ts +0 -9
  1333. package/lib/features/event-source/elder-event-source.service.d.ts +0 -43
  1334. package/lib/features/event-source/public_api.d.ts +0 -2
  1335. package/lib/features/event-source/reactive-event-source.d.ts +0 -97
  1336. package/lib/features/kafent/access-token-provider.d.ts +0 -12
  1337. package/lib/features/kafent/kafent-config.d.ts +0 -32
  1338. package/lib/features/kafent/kafent-event-stream.d.ts +0 -28
  1339. package/lib/features/kafent/kafent-event.d.ts +0 -11
  1340. package/lib/features/kafent/kafent-event.service.d.ts +0 -77
  1341. package/lib/features/kafent/kafent-live-event-request.d.ts +0 -58
  1342. package/lib/features/kafent/kafent.module.d.ts +0 -30
  1343. package/lib/features/kafent/sse/kafent-event-stream-sse.service.d.ts +0 -56
  1344. package/lib/features/kafent/sse/kafent-topic-sse.d.ts +0 -70
  1345. package/lib/features/public_api.d.ts +0 -2
  1346. package/lib/pipes/bytes.pipe.d.ts +0 -7
  1347. package/lib/pipes/elder-pipes.module.d.ts +0 -46
  1348. package/lib/pipes/elder-repeat.pipe.d.ts +0 -7
  1349. package/lib/pipes/elder-round.pipe.d.ts +0 -23
  1350. package/lib/pipes/elder-safe-url.pipe.d.ts +0 -10
  1351. package/lib/pipes/elder-truncate.pipe.d.ts +0 -17
  1352. package/lib/pipes/iso-duration.pipe.d.ts +0 -26
  1353. package/lib/pipes/iso-interval-parse.pipe.d.ts +0 -30
  1354. package/lib/pipes/iso-interval.pipe.d.ts +0 -43
  1355. package/lib/pipes/public_api.d.ts +0 -1
  1356. package/lib/pipes/time-ago.pipe.d.ts +0 -18
  1357. package/lib/pipes/time-duration.pipe.d.ts +0 -13
  1358. package/lib/pipes/weight.pipe.d.ts +0 -7
  1359. package/public_api.d.ts +0 -4
@@ -1,127 +0,0 @@
1
- import { Component, EventEmitter, Input, Output, ViewChild, } from '@angular/core';
2
- import { SearchQuery } from './elder-global-search.service';
3
- import { NavigationEnd } from '@angular/router';
4
- import { Sort } from '../../common/data/sort';
5
- import { filter } from 'rxjs/operators';
6
- import * as i0 from "@angular/core";
7
- import * as i1 from "@angular/router";
8
- import * as i2 from "./elder-global-search.service";
9
- import * as i3 from "@angular/common";
10
- import * as i4 from "@angular/material/icon";
11
- import * as i5 from "@angular/material/form-field";
12
- import * as i6 from "@angular/material/input";
13
- import * as i7 from "@angular/material/button";
14
- import * as i8 from "@angular/material/menu";
15
- import * as i9 from "@angular/flex-layout/flex";
16
- import * as i10 from "@ngx-translate/core";
17
- /**
18
- * @deprecated This component is considered EOL
19
- */
20
- export class ElderGlobalSearchComponent {
21
- constructor(router, globalSearch) {
22
- this.router = router;
23
- this.globalSearch = globalSearch;
24
- this._searchCollapsed = true;
25
- this._subs = [];
26
- this.searchCollapsedChange = new EventEmitter();
27
- this._availableSort = [];
28
- this.sortAsc = false;
29
- this.globalSearchDisabled = !globalSearch.showGlobalSearch;
30
- this._subs.push(globalSearch.showGlobalSearchObservable
31
- .subscribe(value => {
32
- this.globalSearchDisabled = !value;
33
- }), this.globalSearch.availableSortsObservable
34
- .subscribe(available => {
35
- this.availableSort = available;
36
- }), router.events.pipe(filter(event => event instanceof NavigationEnd))
37
- .subscribe(() => {
38
- this.searchCollapsed = true;
39
- }));
40
- }
41
- set availableSort(available) {
42
- this._availableSort = available;
43
- if (available.length > 0) {
44
- this.selectedSort = available[0];
45
- }
46
- }
47
- get availableSort() {
48
- return this._availableSort;
49
- }
50
- get canSort() {
51
- return this._availableSort && this.availableSort.length > 0;
52
- }
53
- ngOnInit() {
54
- this.searchCollapsed = true;
55
- }
56
- ngOnDestroy() {
57
- this._subs.forEach(sub => sub.unsubscribe());
58
- }
59
- get searchCollapsed() {
60
- return this._searchCollapsed;
61
- }
62
- set txtSearch(input) {
63
- this._txtSearch = input;
64
- }
65
- set searchCollapsed(value) {
66
- this._searchCollapsed = value;
67
- this.searchCollapsedChange.emit(this.searchCollapsed);
68
- if (!this._searchCollapsed) {
69
- setTimeout(() => this._txtSearch.nativeElement.focus(), 0);
70
- }
71
- }
72
- get toggleIcon() {
73
- return this.searchCollapsed ? 'search' : 'close';
74
- }
75
- toggleSearch() {
76
- if (this.searchCollapsed) {
77
- // Show search
78
- this.searchCollapsed = false;
79
- }
80
- else {
81
- // Collapse search
82
- this.searchCollapsed = true;
83
- this.globalSearch.query = SearchQuery.Empty;
84
- }
85
- }
86
- get isSearchHidden() {
87
- return this.hideWhenDisabled && this.globalSearchDisabled;
88
- }
89
- toggleSortAsc() {
90
- this.sortAsc = !this.sortAsc;
91
- this.onQueryChanged();
92
- }
93
- sortBy(sort) {
94
- this.selectedSort = sort;
95
- this.onQueryChanged();
96
- }
97
- onQueryChanged() {
98
- const sorts = this.selectedSort ? [this.convertToSort(this.selectedSort)] : [];
99
- this.globalSearch.query = new SearchQuery(this.keywordsValue, sorts);
100
- }
101
- convertToSort(sort) {
102
- return new Sort(sort.id, this.sortAsc ? 'asc' : 'desc');
103
- }
104
- get keywordsValue() {
105
- if (this._txtSearch) {
106
- const txtInput = this._txtSearch.nativeElement;
107
- return txtInput.value;
108
- }
109
- return '';
110
- }
111
- }
112
- ElderGlobalSearchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchComponent, deps: [{ token: i1.Router }, { token: i2.ElderGlobalSearchService }], target: i0.ɵɵFactoryTarget.Component });
113
- ElderGlobalSearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: ElderGlobalSearchComponent, selector: "elder-global-search, ebs-global-search", inputs: { hideWhenDisabled: "hideWhenDisabled", searchCollapsed: "searchCollapsed" }, outputs: { searchCollapsedChange: "searchCollapsedChange" }, viewQueries: [{ propertyName: "txtSearch", first: true, predicate: ["txtSearch"], descendants: true }], ngImport: i0, template: "\n\n<div fxLayout=\"row\" fxLayoutAlign=\"center center\">\n\n <span *ngIf=\"searchCollapsed\" fxFlex></span>\n\n\n <div *ngIf=\"!searchCollapsed\" fxLayout=\"row\" fxLayoutAlign=\"center center\" fxFlex>\n\n <!-- Query Keywords -->\n <mat-form-field color=\"accent\" floatPlaceholder=\"never\" fxFlex>\n <mat-icon matPrefix>search</mat-icon>\n <input matInput type=\"search\"\n (keyup)=\"onQueryChanged()\"\n #txtSearch>\n </mat-form-field>\n\n <!-- Sort -->\n <mat-menu #sortMenu=\"matMenu\">\n <button mat-menu-item type=\"button\"\n *ngFor=\"let sort of availableSort\"\n fxLayout=\"row\" fxLayoutAlign=\"space-between center\"\n (click)=\"sortBy(sort)\"\n >\n {{sort.name | translate}}\n <mat-icon *ngIf=\"selectedSort?.id==sort.id\">check</mat-icon>\n </button>\n </mat-menu>\n <button mat-icon-button type=\"button\"\n *ngIf=\"canSort\"\n [matMenuTriggerFor]=\"sortMenu\">\n <mat-icon>sort</mat-icon>\n </button>\n\n <!-- Sort Asc/Desc-->\n <button mat-icon-button type=\"button\"\n *ngIf=\"canSort\"\n (click)=\"toggleSortAsc()\">\n <mat-icon>{{sortAsc ? \"arrow_downward\" : \"arrow_upward\"}}</mat-icon>\n </button>\n\n </div>\n\n\n <!-- Toggle Global Search -->\n <button mat-icon-button type=\"button\"\n *ngIf=\"!isSearchHidden\"\n (click)=\"toggleSearch()\"\n [disabled]=\"globalSearchDisabled\" >\n <mat-icon>{{toggleIcon}}</mat-icon>\n </button>\n</div>\n\n\n", styles: [""], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i5.MatPrefix, selector: "[matPrefix]" }, { kind: "directive", type: i6.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i7.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i8.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { kind: "component", type: i8.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i8.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }, { kind: "directive", type: i9.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: i9.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: i9.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: "pipe", type: i10.TranslatePipe, name: "translate" }] });
114
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchComponent, decorators: [{
115
- type: Component,
116
- args: [{ selector: 'elder-global-search, ebs-global-search', template: "\n\n<div fxLayout=\"row\" fxLayoutAlign=\"center center\">\n\n <span *ngIf=\"searchCollapsed\" fxFlex></span>\n\n\n <div *ngIf=\"!searchCollapsed\" fxLayout=\"row\" fxLayoutAlign=\"center center\" fxFlex>\n\n <!-- Query Keywords -->\n <mat-form-field color=\"accent\" floatPlaceholder=\"never\" fxFlex>\n <mat-icon matPrefix>search</mat-icon>\n <input matInput type=\"search\"\n (keyup)=\"onQueryChanged()\"\n #txtSearch>\n </mat-form-field>\n\n <!-- Sort -->\n <mat-menu #sortMenu=\"matMenu\">\n <button mat-menu-item type=\"button\"\n *ngFor=\"let sort of availableSort\"\n fxLayout=\"row\" fxLayoutAlign=\"space-between center\"\n (click)=\"sortBy(sort)\"\n >\n {{sort.name | translate}}\n <mat-icon *ngIf=\"selectedSort?.id==sort.id\">check</mat-icon>\n </button>\n </mat-menu>\n <button mat-icon-button type=\"button\"\n *ngIf=\"canSort\"\n [matMenuTriggerFor]=\"sortMenu\">\n <mat-icon>sort</mat-icon>\n </button>\n\n <!-- Sort Asc/Desc-->\n <button mat-icon-button type=\"button\"\n *ngIf=\"canSort\"\n (click)=\"toggleSortAsc()\">\n <mat-icon>{{sortAsc ? \"arrow_downward\" : \"arrow_upward\"}}</mat-icon>\n </button>\n\n </div>\n\n\n <!-- Toggle Global Search -->\n <button mat-icon-button type=\"button\"\n *ngIf=\"!isSearchHidden\"\n (click)=\"toggleSearch()\"\n [disabled]=\"globalSearchDisabled\" >\n <mat-icon>{{toggleIcon}}</mat-icon>\n </button>\n</div>\n\n\n" }]
117
- }], ctorParameters: function () { return [{ type: i1.Router }, { type: i2.ElderGlobalSearchService }]; }, propDecorators: { searchCollapsedChange: [{
118
- type: Output
119
- }], hideWhenDisabled: [{
120
- type: Input
121
- }], searchCollapsed: [{
122
- type: Input
123
- }], txtSearch: [{
124
- type: ViewChild,
125
- args: ['txtSearch']
126
- }] } });
127
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItZ2xvYmFsLXNlYXJjaC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2dsb2JhbC1zZWFyY2gvZWxkZXItZ2xvYmFsLXNlYXJjaC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2dsb2JhbC1zZWFyY2gvZWxkZXItZ2xvYmFsLXNlYXJjaC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUFjLFlBQVksRUFBRSxLQUFLLEVBQXFCLE1BQU0sRUFBRSxTQUFTLEdBQ2pGLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBMkIsV0FBVyxFQUFhLE1BQU0sK0JBQStCLENBQUM7QUFDaEcsT0FBTyxFQUFDLGFBQWEsRUFBUyxNQUFNLGlCQUFpQixDQUFDO0FBQ3RELE9BQU8sRUFBQyxJQUFJLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUU1QyxPQUFPLEVBQUMsTUFBTSxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7Ozs7Ozs7Ozs7OztBQUd0Qzs7R0FFRztBQU1ILE1BQU0sT0FBTywwQkFBMEI7SUFpQnJDLFlBQ1UsTUFBYyxFQUNkLFlBQXNDO1FBRHRDLFdBQU0sR0FBTixNQUFNLENBQVE7UUFDZCxpQkFBWSxHQUFaLFlBQVksQ0FBMEI7UUFqQnhDLHFCQUFnQixHQUFHLElBQUksQ0FBQztRQUV4QixVQUFLLEdBQW1CLEVBQUUsQ0FBQztRQUc1QiwwQkFBcUIsR0FBRyxJQUFJLFlBQVksRUFBVyxDQUFDO1FBS25ELG1CQUFjLEdBQWlCLEVBQUUsQ0FBQztRQUVuQyxZQUFPLEdBQUcsS0FBSyxDQUFDO1FBT3JCLElBQUksQ0FBQyxvQkFBb0IsR0FBRyxDQUFDLFlBQVksQ0FBQyxnQkFBZ0IsQ0FBQztRQUczRCxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FFYixZQUFZLENBQUMsMEJBQTBCO2FBQ3BDLFNBQVMsQ0FBQyxLQUFLLENBQUMsRUFBRTtZQUNqQixJQUFJLENBQUMsb0JBQW9CLEdBQUcsQ0FBQyxLQUFLLENBQUM7UUFDckMsQ0FBQyxDQUFDLEVBRUosSUFBSSxDQUFDLFlBQVksQ0FBQyx3QkFBd0I7YUFDdkMsU0FBUyxDQUFDLFNBQVMsQ0FBQyxFQUFFO1lBQ3JCLElBQUksQ0FBQyxhQUFhLEdBQUcsU0FBUyxDQUFDO1FBQ2pDLENBQUMsQ0FBQyxFQUVKLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUNmLE1BQU0sQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLEtBQUssWUFBWSxhQUFhLENBQUMsQ0FDL0M7YUFDQSxTQUFTLENBQUMsR0FBRyxFQUFFO1lBQ2QsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUM7UUFDOUIsQ0FBQyxDQUFDLENBQ0wsQ0FBQztJQUNKLENBQUM7SUFFRCxJQUFXLGFBQWEsQ0FBQyxTQUF1QjtRQUM5QyxJQUFJLENBQUMsY0FBYyxHQUFHLFNBQVMsQ0FBQztRQUNoQyxJQUFJLFNBQVMsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQ3RCLElBQUksQ0FBQyxZQUFZLEdBQUcsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDO1NBQ3BDO0lBQ0gsQ0FBQztJQUVELElBQVcsYUFBYTtRQUNwQixPQUFPLElBQUksQ0FBQyxjQUFjLENBQUM7SUFDL0IsQ0FBQztJQUVELElBQVcsT0FBTztRQUNoQixPQUFPLElBQUksQ0FBQyxjQUFjLElBQUksSUFBSSxDQUFDLGFBQWEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDO0lBQzlELENBQUM7SUFHRCxRQUFRO1FBQ04sSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUM7SUFDOUIsQ0FBQztJQUdELFdBQVc7UUFDVCxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDO0lBQy9DLENBQUM7SUFFRCxJQUNJLGVBQWU7UUFDakIsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUM7SUFDL0IsQ0FBQztJQUVELElBQ0ksU0FBUyxDQUFDLEtBQWlCO1FBQzdCLElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDO0lBQzFCLENBQUM7SUFFRCxJQUFJLGVBQWUsQ0FBQyxLQUFjO1FBQ2hDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUM7UUFDOUIsSUFBSSxDQUFDLHFCQUFxQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDdEQsSUFBSSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsRUFBRTtZQUMxQixVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUM7U0FDNUQ7SUFDSCxDQUFDO0lBRUQsSUFBSSxVQUFVO1FBQ1osT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQztJQUNuRCxDQUFDO0lBRU0sWUFBWTtRQUNqQixJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUU7WUFDeEIsY0FBYztZQUNkLElBQUksQ0FBQyxlQUFlLEdBQUcsS0FBSyxDQUFDO1NBQzlCO2FBQU07WUFDTCxrQkFBa0I7WUFDbEIsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUM7WUFDNUIsSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLEdBQUcsV0FBVyxDQUFDLEtBQUssQ0FBQztTQUM3QztJQUNILENBQUM7SUFFRCxJQUFJLGNBQWM7UUFDaEIsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLElBQUksSUFBSSxDQUFDLG9CQUFvQixDQUFDO0lBQzVELENBQUM7SUFFTSxhQUFhO1FBQ2xCLElBQUksQ0FBQyxPQUFPLEdBQUcsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDO1FBQzdCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUN4QixDQUFDO0lBRU0sTUFBTSxDQUFDLElBQWdCO1FBQzVCLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDO1FBQ3pCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUN4QixDQUFDO0lBRU0sY0FBYztRQUVuQixNQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztRQUUvRSxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssR0FBRyxJQUFJLFdBQVcsQ0FDckMsSUFBSSxDQUFDLGFBQWEsRUFDbEIsS0FBSyxDQUNSLENBQUM7SUFDSixDQUFDO0lBRU8sYUFBYSxDQUFDLElBQWdCO1FBQ2xDLE9BQU8sSUFBSSxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQzVELENBQUM7SUFFRCxJQUFZLGFBQWE7UUFDdkIsSUFBSSxJQUFJLENBQUMsVUFBVSxFQUFFO1lBQ25CLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBaUMsQ0FBQztZQUNuRSxPQUFPLFFBQVEsQ0FBQyxLQUFLLENBQUM7U0FDdkI7UUFDRCxPQUFPLEVBQUUsQ0FBQztJQUNaLENBQUM7O3VIQXpJVSwwQkFBMEI7MkdBQTFCLDBCQUEwQix5VUNsQnZDLGtrREFzREE7MkZEcENhLDBCQUEwQjtrQkFMdEMsU0FBUzsrQkFDRSx3Q0FBd0M7b0lBVzNDLHFCQUFxQjtzQkFEM0IsTUFBTTtnQkFJQSxnQkFBZ0I7c0JBRHRCLEtBQUs7Z0JBOERGLGVBQWU7c0JBRGxCLEtBQUs7Z0JBTUYsU0FBUztzQkFEWixTQUFTO3VCQUFDLFdBQVciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb21wb25lbnQsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uRGVzdHJveSwgT25Jbml0LCBPdXRwdXQsIFZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0VsZGVyR2xvYmFsU2VhcmNoU2VydmljZSwgU2VhcmNoUXVlcnksIFNvcnRPcHRpb259IGZyb20gJy4vZWxkZXItZ2xvYmFsLXNlYXJjaC5zZXJ2aWNlJztcbmltcG9ydCB7TmF2aWdhdGlvbkVuZCwgUm91dGVyfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHtTb3J0fSBmcm9tICcuLi8uLi9jb21tb24vZGF0YS9zb3J0JztcbmltcG9ydCB7U3Vic2NyaXB0aW9ufSBmcm9tICdyeGpzJztcbmltcG9ydCB7ZmlsdGVyfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cblxuLyoqXG4gKiBAZGVwcmVjYXRlZCBUaGlzIGNvbXBvbmVudCBpcyBjb25zaWRlcmVkIEVPTFxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlbGRlci1nbG9iYWwtc2VhcmNoLCBlYnMtZ2xvYmFsLXNlYXJjaCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9lbGRlci1nbG9iYWwtc2VhcmNoLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZWxkZXItZ2xvYmFsLXNlYXJjaC5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyR2xvYmFsU2VhcmNoQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuXG4gIHByaXZhdGUgX3NlYXJjaENvbGxhcHNlZCA9IHRydWU7XG4gIHByaXZhdGUgX3R4dFNlYXJjaDogRWxlbWVudFJlZjtcbiAgcHJpdmF0ZSBfc3ViczogU3Vic2NyaXB0aW9uW10gPSBbXTtcblxuICBAT3V0cHV0KClcbiAgcHVibGljIHNlYXJjaENvbGxhcHNlZENoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgaGlkZVdoZW5EaXNhYmxlZDogYm9vbGVhbjtcblxuICBwcml2YXRlIF9hdmFpbGFibGVTb3J0OiBTb3J0T3B0aW9uW10gPSBbXTtcbiAgcHVibGljIHNlbGVjdGVkU29ydDogU29ydE9wdGlvbjtcbiAgcHVibGljIHNvcnRBc2MgPSBmYWxzZTtcbiAgcHVibGljIGdsb2JhbFNlYXJjaERpc2FibGVkOiBib29sZWFuO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcm91dGVyOiBSb3V0ZXIsXG4gICAgcHJpdmF0ZSBnbG9iYWxTZWFyY2g6IEVsZGVyR2xvYmFsU2VhcmNoU2VydmljZSkge1xuXG4gICAgdGhpcy5nbG9iYWxTZWFyY2hEaXNhYmxlZCA9ICFnbG9iYWxTZWFyY2guc2hvd0dsb2JhbFNlYXJjaDtcblxuXG4gICAgdGhpcy5fc3Vicy5wdXNoKFxuXG4gICAgICBnbG9iYWxTZWFyY2guc2hvd0dsb2JhbFNlYXJjaE9ic2VydmFibGVcbiAgICAgICAgLnN1YnNjcmliZSh2YWx1ZSA9PiB7XG4gICAgICAgICAgdGhpcy5nbG9iYWxTZWFyY2hEaXNhYmxlZCA9ICF2YWx1ZTtcbiAgICAgICAgfSksXG5cbiAgICAgIHRoaXMuZ2xvYmFsU2VhcmNoLmF2YWlsYWJsZVNvcnRzT2JzZXJ2YWJsZVxuICAgICAgICAuc3Vic2NyaWJlKGF2YWlsYWJsZSA9PiB7XG4gICAgICAgICAgdGhpcy5hdmFpbGFibGVTb3J0ID0gYXZhaWxhYmxlO1xuICAgICAgICB9KSxcblxuICAgICAgcm91dGVyLmV2ZW50cy5waXBlKFxuICAgICAgICAgZmlsdGVyKGV2ZW50ID0+IGV2ZW50IGluc3RhbmNlb2YgTmF2aWdhdGlvbkVuZClcbiAgICAgICAgKVxuICAgICAgICAuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgICAgICB0aGlzLnNlYXJjaENvbGxhcHNlZCA9IHRydWU7XG4gICAgICAgIH0pXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyBzZXQgYXZhaWxhYmxlU29ydChhdmFpbGFibGU6IFNvcnRPcHRpb25bXSkge1xuICAgIHRoaXMuX2F2YWlsYWJsZVNvcnQgPSBhdmFpbGFibGU7XG4gICAgaWYgKGF2YWlsYWJsZS5sZW5ndGggPiAwKSB7XG4gICAgICAgIHRoaXMuc2VsZWN0ZWRTb3J0ID0gYXZhaWxhYmxlWzBdO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBnZXQgYXZhaWxhYmxlU29ydCgpOiBTb3J0T3B0aW9uW10ge1xuICAgICAgcmV0dXJuIHRoaXMuX2F2YWlsYWJsZVNvcnQ7XG4gIH1cblxuICBwdWJsaWMgZ2V0IGNhblNvcnQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX2F2YWlsYWJsZVNvcnQgJiYgdGhpcy5hdmFpbGFibGVTb3J0Lmxlbmd0aCA+IDA7XG4gIH1cblxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMuc2VhcmNoQ29sbGFwc2VkID0gdHJ1ZTtcbiAgfVxuXG5cbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgdGhpcy5fc3Vicy5mb3JFYWNoKHN1YiA9PiBzdWIudW5zdWJzY3JpYmUoKSk7XG4gIH1cblxuICBASW5wdXQoKVxuICBnZXQgc2VhcmNoQ29sbGFwc2VkKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9zZWFyY2hDb2xsYXBzZWQ7XG4gIH1cblxuICBAVmlld0NoaWxkKCd0eHRTZWFyY2gnKVxuICBzZXQgdHh0U2VhcmNoKGlucHV0OiBFbGVtZW50UmVmKSB7XG4gICAgdGhpcy5fdHh0U2VhcmNoID0gaW5wdXQ7XG4gIH1cblxuICBzZXQgc2VhcmNoQ29sbGFwc2VkKHZhbHVlOiBib29sZWFuKSB7XG4gICAgdGhpcy5fc2VhcmNoQ29sbGFwc2VkID0gdmFsdWU7XG4gICAgdGhpcy5zZWFyY2hDb2xsYXBzZWRDaGFuZ2UuZW1pdCh0aGlzLnNlYXJjaENvbGxhcHNlZCk7XG4gICAgaWYgKCF0aGlzLl9zZWFyY2hDb2xsYXBzZWQpIHtcbiAgICAgIHNldFRpbWVvdXQoKCkgPT4gdGhpcy5fdHh0U2VhcmNoLm5hdGl2ZUVsZW1lbnQuZm9jdXMoKSwgMCk7XG4gICAgfVxuICB9XG5cbiAgZ2V0IHRvZ2dsZUljb24oKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5zZWFyY2hDb2xsYXBzZWQgPyAnc2VhcmNoJyA6ICdjbG9zZSc7XG4gIH1cblxuICBwdWJsaWMgdG9nZ2xlU2VhcmNoKCkge1xuICAgIGlmICh0aGlzLnNlYXJjaENvbGxhcHNlZCkge1xuICAgICAgLy8gU2hvdyBzZWFyY2hcbiAgICAgIHRoaXMuc2VhcmNoQ29sbGFwc2VkID0gZmFsc2U7XG4gICAgfSBlbHNlIHtcbiAgICAgIC8vIENvbGxhcHNlIHNlYXJjaFxuICAgICAgdGhpcy5zZWFyY2hDb2xsYXBzZWQgPSB0cnVlO1xuICAgICAgdGhpcy5nbG9iYWxTZWFyY2gucXVlcnkgPSBTZWFyY2hRdWVyeS5FbXB0eTtcbiAgICB9XG4gIH1cblxuICBnZXQgaXNTZWFyY2hIaWRkZW4oKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuaGlkZVdoZW5EaXNhYmxlZCAmJiB0aGlzLmdsb2JhbFNlYXJjaERpc2FibGVkO1xuICB9XG5cbiAgcHVibGljIHRvZ2dsZVNvcnRBc2MoKTogdm9pZCB7XG4gICAgdGhpcy5zb3J0QXNjID0gIXRoaXMuc29ydEFzYztcbiAgICB0aGlzLm9uUXVlcnlDaGFuZ2VkKCk7XG4gIH1cblxuICBwdWJsaWMgc29ydEJ5KHNvcnQ6IFNvcnRPcHRpb24pIHtcbiAgICB0aGlzLnNlbGVjdGVkU29ydCA9IHNvcnQ7XG4gICAgdGhpcy5vblF1ZXJ5Q2hhbmdlZCgpO1xuICB9XG5cbiAgcHVibGljIG9uUXVlcnlDaGFuZ2VkKCkge1xuXG4gICAgY29uc3Qgc29ydHMgPSB0aGlzLnNlbGVjdGVkU29ydCA/IFt0aGlzLmNvbnZlcnRUb1NvcnQodGhpcy5zZWxlY3RlZFNvcnQpXSA6IFtdO1xuXG4gICAgdGhpcy5nbG9iYWxTZWFyY2gucXVlcnkgPSBuZXcgU2VhcmNoUXVlcnkoXG4gICAgICAgIHRoaXMua2V5d29yZHNWYWx1ZSxcbiAgICAgICAgc29ydHNcbiAgICApO1xuICB9XG5cbiAgcHJpdmF0ZSBjb252ZXJ0VG9Tb3J0KHNvcnQ6IFNvcnRPcHRpb24pOiBTb3J0IHtcbiAgICAgIHJldHVybiBuZXcgU29ydChzb3J0LmlkLCB0aGlzLnNvcnRBc2MgPyAnYXNjJyA6ICdkZXNjJyk7XG4gIH1cblxuICBwcml2YXRlIGdldCBrZXl3b3Jkc1ZhbHVlKCk6IHN0cmluZyB7XG4gICAgaWYgKHRoaXMuX3R4dFNlYXJjaCkge1xuICAgICAgY29uc3QgdHh0SW5wdXQgPSB0aGlzLl90eHRTZWFyY2gubmF0aXZlRWxlbWVudCBhcyBIVE1MSW5wdXRFbGVtZW50O1xuICAgICAgcmV0dXJuIHR4dElucHV0LnZhbHVlO1xuICAgIH1cbiAgICByZXR1cm4gJyc7XG4gIH1cblxufVxuIiwiXG5cbjxkaXYgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwiY2VudGVyIGNlbnRlclwiPlxuXG4gIDxzcGFuICpuZ0lmPVwic2VhcmNoQ29sbGFwc2VkXCIgZnhGbGV4Pjwvc3Bhbj5cblxuXG4gIDxkaXYgKm5nSWY9XCIhc2VhcmNoQ29sbGFwc2VkXCIgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwiY2VudGVyIGNlbnRlclwiIGZ4RmxleD5cblxuICAgIDwhLS0gUXVlcnkgS2V5d29yZHMgLS0+XG4gICAgPG1hdC1mb3JtLWZpZWxkIGNvbG9yPVwiYWNjZW50XCIgZmxvYXRQbGFjZWhvbGRlcj1cIm5ldmVyXCIgZnhGbGV4PlxuICAgICAgPG1hdC1pY29uIG1hdFByZWZpeD5zZWFyY2g8L21hdC1pY29uPlxuICAgICAgPGlucHV0IG1hdElucHV0IHR5cGU9XCJzZWFyY2hcIlxuICAgICAgICAgICAgIChrZXl1cCk9XCJvblF1ZXJ5Q2hhbmdlZCgpXCJcbiAgICAgICAgICAgICAjdHh0U2VhcmNoPlxuICAgIDwvbWF0LWZvcm0tZmllbGQ+XG5cbiAgICA8IS0tIFNvcnQgLS0+XG4gICAgPG1hdC1tZW51ICNzb3J0TWVudT1cIm1hdE1lbnVcIj5cbiAgICAgIDxidXR0b24gbWF0LW1lbnUtaXRlbSB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgICAgKm5nRm9yPVwibGV0IHNvcnQgb2YgYXZhaWxhYmxlU29ydFwiXG4gICAgICAgICAgICAgIGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXRBbGlnbj1cInNwYWNlLWJldHdlZW4gY2VudGVyXCJcbiAgICAgICAgICAgICAgKGNsaWNrKT1cInNvcnRCeShzb3J0KVwiXG4gICAgICA+XG4gICAgICAgIHt7c29ydC5uYW1lIHwgdHJhbnNsYXRlfX1cbiAgICAgICAgPG1hdC1pY29uICpuZ0lmPVwic2VsZWN0ZWRTb3J0Py5pZD09c29ydC5pZFwiPmNoZWNrPC9tYXQtaWNvbj5cbiAgICAgIDwvYnV0dG9uPlxuICAgIDwvbWF0LW1lbnU+XG4gICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gdHlwZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAqbmdJZj1cImNhblNvcnRcIlxuICAgICAgICAgICAgW21hdE1lbnVUcmlnZ2VyRm9yXT1cInNvcnRNZW51XCI+XG4gICAgICA8bWF0LWljb24+c29ydDwvbWF0LWljb24+XG4gICAgPC9idXR0b24+XG5cbiAgICA8IS0tIFNvcnQgQXNjL0Rlc2MtLT5cbiAgICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgICpuZ0lmPVwiY2FuU29ydFwiXG4gICAgICAgICAgICAoY2xpY2spPVwidG9nZ2xlU29ydEFzYygpXCI+XG4gICAgICA8bWF0LWljb24+e3tzb3J0QXNjID8gXCJhcnJvd19kb3dud2FyZFwiIDogXCJhcnJvd191cHdhcmRcIn19PC9tYXQtaWNvbj5cbiAgICA8L2J1dHRvbj5cblxuICA8L2Rpdj5cblxuXG4gIDwhLS0gVG9nZ2xlIEdsb2JhbCBTZWFyY2ggLS0+XG4gIDxidXR0b24gbWF0LWljb24tYnV0dG9uIHR5cGU9XCJidXR0b25cIlxuICAgICAgICAgICpuZ0lmPVwiIWlzU2VhcmNoSGlkZGVuXCJcbiAgICAgICAgICAoY2xpY2spPVwidG9nZ2xlU2VhcmNoKClcIlxuICAgICAgICAgIFtkaXNhYmxlZF09XCJnbG9iYWxTZWFyY2hEaXNhYmxlZFwiID5cbiAgICA8bWF0LWljb24+e3t0b2dnbGVJY29ufX08L21hdC1pY29uPlxuICA8L2J1dHRvbj5cbjwvZGl2PlxuXG5cbiJdfQ==
@@ -1,33 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { ElderGlobalSearchComponent } from './elder-global-search.component';
3
- import { MatButtonModule } from '@angular/material/button';
4
- import { MatIconModule } from '@angular/material/icon';
5
- import { MatInputModule } from '@angular/material/input';
6
- import { MatMenuModule } from '@angular/material/menu';
7
- import { FlexLayoutModule } from '@angular/flex-layout';
8
- import { CommonModule } from '@angular/common';
9
- import { TranslateModule } from '@ngx-translate/core';
10
- import * as i0 from "@angular/core";
11
- export * from './elder-global-search.component';
12
- export * from './elder-global-search.service';
13
- /**
14
- * @deprecated This module is considered EOL
15
- */
16
- export class ElderGlobalSearchModule {
17
- }
18
- ElderGlobalSearchModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
19
- ElderGlobalSearchModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchModule, declarations: [ElderGlobalSearchComponent], imports: [CommonModule, MatIconModule, MatInputModule, MatButtonModule, MatMenuModule, FlexLayoutModule, TranslateModule], exports: [ElderGlobalSearchComponent] });
20
- ElderGlobalSearchModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchModule, imports: [CommonModule, MatIconModule, MatInputModule, MatButtonModule, MatMenuModule, FlexLayoutModule, TranslateModule] });
21
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchModule, decorators: [{
22
- type: NgModule,
23
- args: [{
24
- declarations: [
25
- ElderGlobalSearchComponent
26
- ],
27
- exports: [
28
- ElderGlobalSearchComponent
29
- ],
30
- imports: [CommonModule, MatIconModule, MatInputModule, MatButtonModule, MatMenuModule, FlexLayoutModule, TranslateModule]
31
- }]
32
- }] });
33
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItZ2xvYmFsLXNlYXJjaC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2dsb2JhbC1zZWFyY2gvZWxkZXItZ2xvYmFsLXNlYXJjaC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsMEJBQTBCLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdkQsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0sc0JBQXNCLENBQUM7QUFDdEQsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxlQUFlLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQzs7QUFFcEQsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLCtCQUErQixDQUFDO0FBRTlDOztHQUVHO0FBVUgsTUFBTSxPQUFPLHVCQUF1Qjs7b0hBQXZCLHVCQUF1QjtxSEFBdkIsdUJBQXVCLGlCQVBoQywwQkFBMEIsYUFLaEIsWUFBWSxFQUFFLGFBQWEsRUFBRSxjQUFjLEVBQUUsZUFBZSxFQUFFLGFBQWEsRUFBRSxnQkFBZ0IsRUFBRSxlQUFlLGFBRnhILDBCQUEwQjtxSEFJakIsdUJBQXVCLFlBRnRCLFlBQVksRUFBRSxhQUFhLEVBQUUsY0FBYyxFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsZ0JBQWdCLEVBQUUsZUFBZTsyRkFFL0csdUJBQXVCO2tCQVRuQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWiwwQkFBMEI7cUJBQzNCO29CQUNELE9BQU8sRUFBRzt3QkFDUiwwQkFBMEI7cUJBQzNCO29CQUNELE9BQU8sRUFBRyxDQUFFLFlBQVksRUFBRSxhQUFhLEVBQUUsY0FBYyxFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsZ0JBQWdCLEVBQUUsZUFBZSxDQUFFO2lCQUM3SCIsInNvdXJjZXNDb250ZW50IjpbIlxuaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0VsZGVyR2xvYmFsU2VhcmNoQ29tcG9uZW50fSBmcm9tICcuL2VsZGVyLWdsb2JhbC1zZWFyY2guY29tcG9uZW50JztcbmltcG9ydCB7IE1hdEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2J1dHRvbic7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQgeyBNYXRJbnB1dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2lucHV0JztcbmltcG9ydCB7IE1hdE1lbnVNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9tZW51JztcbmltcG9ydCB7RmxleExheW91dE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZmxleC1sYXlvdXQnO1xuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1RyYW5zbGF0ZU1vZHVsZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZWxkZXItZ2xvYmFsLXNlYXJjaC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9lbGRlci1nbG9iYWwtc2VhcmNoLnNlcnZpY2UnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkIFRoaXMgbW9kdWxlIGlzIGNvbnNpZGVyZWQgRU9MXG4gKi9cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEVsZGVyR2xvYmFsU2VhcmNoQ29tcG9uZW50XG4gIF0sXG4gIGV4cG9ydHMgOiBbXG4gICAgRWxkZXJHbG9iYWxTZWFyY2hDb21wb25lbnRcbiAgXSxcbiAgaW1wb3J0cyA6IFsgQ29tbW9uTW9kdWxlLCBNYXRJY29uTW9kdWxlLCBNYXRJbnB1dE1vZHVsZSwgTWF0QnV0dG9uTW9kdWxlLCBNYXRNZW51TW9kdWxlLCBGbGV4TGF5b3V0TW9kdWxlLCBUcmFuc2xhdGVNb2R1bGUgXVxufSlcbmV4cG9ydCBjbGFzcyBFbGRlckdsb2JhbFNlYXJjaE1vZHVsZSB7XG59XG4iXX0=
@@ -1,93 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { NavigationEnd } from '@angular/router';
3
- import { Subject } from 'rxjs';
4
- import { filter, map, mergeMap } from 'rxjs/operators';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/router";
7
- export class SortOption {
8
- constructor(id, name) {
9
- this.id = id;
10
- this.name = name;
11
- }
12
- }
13
- /**
14
- * Represents the search query which the user has configured
15
- */
16
- export class SearchQuery {
17
- constructor(keywords, sorts) {
18
- this.keywords = keywords;
19
- this.sorts = sorts;
20
- }
21
- }
22
- SearchQuery.Empty = new SearchQuery('', []);
23
- /**
24
- * @deprecated This service is considered EOL
25
- */
26
- export class ElderGlobalSearchService {
27
- /***************************************************************************
28
- * *
29
- * Constructor *
30
- * *
31
- **************************************************************************/
32
- constructor(router) {
33
- /***************************************************************************
34
- * *
35
- * Fields *
36
- * *
37
- **************************************************************************/
38
- this._showGlobalSearch = false;
39
- this._showGlobalSearchSubject = new Subject();
40
- this._querySubject = new Subject();
41
- this._availableSorts = new Subject();
42
- router.events.pipe(filter(event => event instanceof NavigationEnd), map(() => router.routerState.root), map(route => {
43
- while (route.firstChild) {
44
- route = route.firstChild;
45
- }
46
- return route;
47
- }), filter(route => route.outlet === 'primary'), mergeMap(route => route.data))
48
- .subscribe(currentRouteData => {
49
- const enableGlobalSearch = currentRouteData['enableGlobalSearch'];
50
- this.showGlobalSearch = enableGlobalSearch != null ? !!enableGlobalSearch : !!currentRouteData['showGlobalSearch'];
51
- });
52
- }
53
- /***************************************************************************
54
- * *
55
- * Properties *
56
- * *
57
- **************************************************************************/
58
- get availableSortsObservable() {
59
- return this._availableSorts;
60
- }
61
- set availableSorts(sorts) {
62
- this._availableSorts.next(sorts);
63
- }
64
- get queryObservable() {
65
- return this._querySubject;
66
- }
67
- get query() {
68
- return this._query;
69
- }
70
- set query(value) {
71
- this._query = value;
72
- this._querySubject.next(value);
73
- }
74
- get showGlobalSearchObservable() {
75
- return this._showGlobalSearchSubject;
76
- }
77
- get showGlobalSearch() {
78
- return this._showGlobalSearch;
79
- }
80
- set showGlobalSearch(value) {
81
- this._showGlobalSearch = value;
82
- this._showGlobalSearchSubject.next(value);
83
- }
84
- }
85
- ElderGlobalSearchService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchService, deps: [{ token: i1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
86
- ElderGlobalSearchService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchService, providedIn: 'root' });
87
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderGlobalSearchService, decorators: [{
88
- type: Injectable,
89
- args: [{
90
- providedIn: 'root'
91
- }]
92
- }], ctorParameters: function () { return [{ type: i1.Router }]; } });
93
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItZ2xvYmFsLXNlYXJjaC5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9nbG9iYWwtc2VhcmNoL2VsZGVyLWdsb2JhbC1zZWFyY2guc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBQyxhQUFhLEVBQVMsTUFBTSxpQkFBaUIsQ0FBQztBQUN0RCxPQUFPLEVBQUMsT0FBTyxFQUFhLE1BQU0sTUFBTSxDQUFDO0FBQ3pDLE9BQU8sRUFBQyxNQUFNLEVBQUUsR0FBRyxFQUFFLFFBQVEsRUFBQyxNQUFNLGdCQUFnQixDQUFDOzs7QUFLckQsTUFBTSxPQUFPLFVBQVU7SUFDbkIsWUFDVyxFQUFVLEVBQ1YsSUFBWTtRQURaLE9BQUUsR0FBRixFQUFFLENBQVE7UUFDVixTQUFJLEdBQUosSUFBSSxDQUFRO0lBQ25CLENBQUM7Q0FDUjtBQUVEOztHQUVHO0FBQ0gsTUFBTSxPQUFPLFdBQVc7SUFJcEIsWUFDVyxRQUFnQixFQUNoQixLQUFhO1FBRGIsYUFBUSxHQUFSLFFBQVEsQ0FBUTtRQUNoQixVQUFLLEdBQUwsS0FBSyxDQUFRO0lBQ3BCLENBQUM7O0FBTFMsaUJBQUssR0FBRyxJQUFJLFdBQVcsQ0FBQyxFQUFFLEVBQUUsRUFBRSxDQUFDLENBQUM7QUFRbEQ7O0dBRUc7QUFJSCxNQUFNLE9BQU8sd0JBQXdCO0lBZWpDOzs7O2dGQUk0RTtJQUU1RSxZQUNJLE1BQWM7UUFwQmxCOzs7O29GQUk0RTtRQUVwRSxzQkFBaUIsR0FBRyxLQUFLLENBQUM7UUFDMUIsNkJBQXdCLEdBQUcsSUFBSSxPQUFPLEVBQVcsQ0FBQztRQUdsRCxrQkFBYSxHQUFHLElBQUksT0FBTyxFQUFlLENBQUM7UUFDM0Msb0JBQWUsR0FBRyxJQUFJLE9BQU8sRUFBZ0IsQ0FBQztRQVlsRCxNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksQ0FDZCxNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxLQUFLLFlBQVksYUFBYSxDQUFDLEVBQy9DLEdBQUcsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxFQUNsQyxHQUFHLENBQUMsS0FBSyxDQUFDLEVBQUU7WUFDUixPQUFPLEtBQUssQ0FBQyxVQUFVLEVBQUU7Z0JBQUUsS0FBSyxHQUFHLEtBQUssQ0FBQyxVQUFVLENBQUM7YUFBRTtZQUN0RCxPQUFPLEtBQUssQ0FBQztRQUNqQixDQUFDLENBQUMsRUFDRixNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsTUFBTSxLQUFLLFNBQVMsQ0FBQyxFQUMzQyxRQUFRLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQ2hDO2FBQ0ksU0FBUyxDQUFDLGdCQUFnQixDQUFFLEVBQUU7WUFDM0IsTUFBTSxrQkFBa0IsR0FBRyxnQkFBZ0IsQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO1lBQ2xFLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxrQkFBa0IsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLENBQUM7UUFDdkgsQ0FBQyxDQUFDLENBQUM7SUFDWCxDQUFDO0lBRUQ7Ozs7Z0ZBSTRFO0lBRzVFLElBQVcsd0JBQXdCO1FBQy9CLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQztJQUNoQyxDQUFDO0lBRUQsSUFBVyxjQUFjLENBQUMsS0FBbUI7UUFDekMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDckMsQ0FBQztJQUVELElBQVcsZUFBZTtRQUN0QixPQUFPLElBQUksQ0FBQyxhQUFhLENBQUM7SUFDOUIsQ0FBQztJQUVELElBQVcsS0FBSztRQUNaLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUN2QixDQUFDO0lBRUQsSUFBVyxLQUFLLENBQUMsS0FBa0I7UUFDL0IsSUFBSSxDQUFDLE1BQU0sR0FBRyxLQUFLLENBQUM7UUFDcEIsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELElBQVcsMEJBQTBCO1FBQ2pDLE9BQU8sSUFBSSxDQUFDLHdCQUF3QixDQUFDO0lBQ3pDLENBQUM7SUFFRCxJQUFXLGdCQUFnQjtRQUN2QixPQUFPLElBQUksQ0FBQyxpQkFBaUIsQ0FBQztJQUNsQyxDQUFDO0lBRUQsSUFBVyxnQkFBZ0IsQ0FBQyxLQUFjO1FBQ3RDLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxLQUFLLENBQUM7UUFDL0IsSUFBSSxDQUFDLHdCQUF3QixDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM5QyxDQUFDOztxSEFoRlEsd0JBQXdCO3lIQUF4Qix3QkFBd0IsY0FGdkIsTUFBTTsyRkFFUCx3QkFBd0I7a0JBSHBDLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3RhYmxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7TmF2aWdhdGlvbkVuZCwgUm91dGVyfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHtTdWJqZWN0LCBPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcbmltcG9ydCB7ZmlsdGVyLCBtYXAsIG1lcmdlTWFwfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5pbXBvcnQge1NvcnR9IGZyb20gJy4uLy4uL2NvbW1vbi9kYXRhL3NvcnQnO1xuXG5cblxuZXhwb3J0IGNsYXNzIFNvcnRPcHRpb24ge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwdWJsaWMgaWQ6IHN0cmluZyxcbiAgICAgICAgcHVibGljIG5hbWU6IHN0cmluZ1xuICAgICkgeyB9XG59XG5cbi8qKlxuICogUmVwcmVzZW50cyB0aGUgc2VhcmNoIHF1ZXJ5IHdoaWNoIHRoZSB1c2VyIGhhcyBjb25maWd1cmVkXG4gKi9cbmV4cG9ydCBjbGFzcyBTZWFyY2hRdWVyeSB7XG5cbiAgICBwdWJsaWMgc3RhdGljIEVtcHR5ID0gbmV3IFNlYXJjaFF1ZXJ5KCcnLCBbXSk7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHVibGljIGtleXdvcmRzOiBzdHJpbmcsXG4gICAgICAgIHB1YmxpYyBzb3J0czogU29ydFtdXG4gICAgKSB7IH1cbn1cblxuLyoqXG4gKiBAZGVwcmVjYXRlZCBUaGlzIHNlcnZpY2UgaXMgY29uc2lkZXJlZCBFT0xcbiAqL1xuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJHbG9iYWxTZWFyY2hTZXJ2aWNlIHtcblxuICAgIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAgICogRmllbGRzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgICBwcml2YXRlIF9zaG93R2xvYmFsU2VhcmNoID0gZmFsc2U7XG4gICAgcHJpdmF0ZSBfc2hvd0dsb2JhbFNlYXJjaFN1YmplY3QgPSBuZXcgU3ViamVjdDxib29sZWFuPigpO1xuXG4gICAgcHJpdmF0ZSBfcXVlcnk6IFNlYXJjaFF1ZXJ5O1xuICAgIHByaXZhdGUgX3F1ZXJ5U3ViamVjdCA9IG5ldyBTdWJqZWN0PFNlYXJjaFF1ZXJ5PigpO1xuICAgIHByaXZhdGUgX2F2YWlsYWJsZVNvcnRzID0gbmV3IFN1YmplY3Q8U29ydE9wdGlvbltdPigpO1xuXG4gICAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICAgKiBDb25zdHJ1Y3RvciAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICByb3V0ZXI6IFJvdXRlclxuICAgICkge1xuXG4gICAgICAgIHJvdXRlci5ldmVudHMucGlwZShcbiAgICAgICAgICAgIGZpbHRlcihldmVudCA9PiBldmVudCBpbnN0YW5jZW9mIE5hdmlnYXRpb25FbmQpLFxuICAgICAgICAgICAgbWFwKCgpID0+IHJvdXRlci5yb3V0ZXJTdGF0ZS5yb290KSxcbiAgICAgICAgICAgIG1hcChyb3V0ZSA9PiB7XG4gICAgICAgICAgICAgICAgd2hpbGUgKHJvdXRlLmZpcnN0Q2hpbGQpIHsgcm91dGUgPSByb3V0ZS5maXJzdENoaWxkOyB9XG4gICAgICAgICAgICAgICAgcmV0dXJuIHJvdXRlO1xuICAgICAgICAgICAgfSksXG4gICAgICAgICAgICBmaWx0ZXIocm91dGUgPT4gcm91dGUub3V0bGV0ID09PSAncHJpbWFyeScpLFxuICAgICAgICAgICAgbWVyZ2VNYXAocm91dGUgPT4gcm91dGUuZGF0YSlcbiAgICAgICAgKVxuICAgICAgICAgICAgLnN1YnNjcmliZShjdXJyZW50Um91dGVEYXRhICA9PiB7XG4gICAgICAgICAgICAgICAgY29uc3QgZW5hYmxlR2xvYmFsU2VhcmNoID0gY3VycmVudFJvdXRlRGF0YVsnZW5hYmxlR2xvYmFsU2VhcmNoJ107XG4gICAgICAgICAgICAgICAgdGhpcy5zaG93R2xvYmFsU2VhcmNoID0gZW5hYmxlR2xvYmFsU2VhcmNoICE9IG51bGwgPyAhIWVuYWJsZUdsb2JhbFNlYXJjaCA6ICEhY3VycmVudFJvdXRlRGF0YVsnc2hvd0dsb2JhbFNlYXJjaCddO1xuICAgICAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICAgKiBQcm9wZXJ0aWVzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuXG4gICAgcHVibGljIGdldCBhdmFpbGFibGVTb3J0c09ic2VydmFibGUoKTogT2JzZXJ2YWJsZTxTb3J0T3B0aW9uW10+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX2F2YWlsYWJsZVNvcnRzO1xuICAgIH1cblxuICAgIHB1YmxpYyBzZXQgYXZhaWxhYmxlU29ydHMoc29ydHM6IFNvcnRPcHRpb25bXSkge1xuICAgICAgICB0aGlzLl9hdmFpbGFibGVTb3J0cy5uZXh0KHNvcnRzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IHF1ZXJ5T2JzZXJ2YWJsZSgpOiBPYnNlcnZhYmxlPFNlYXJjaFF1ZXJ5PiB7XG4gICAgICAgIHJldHVybiB0aGlzLl9xdWVyeVN1YmplY3Q7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBxdWVyeSgpOiBTZWFyY2hRdWVyeSB7XG4gICAgICAgIHJldHVybiB0aGlzLl9xdWVyeTtcbiAgICB9XG5cbiAgICBwdWJsaWMgc2V0IHF1ZXJ5KHZhbHVlOiBTZWFyY2hRdWVyeSkge1xuICAgICAgICB0aGlzLl9xdWVyeSA9IHZhbHVlO1xuICAgICAgICB0aGlzLl9xdWVyeVN1YmplY3QubmV4dCh2YWx1ZSk7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBzaG93R2xvYmFsU2VhcmNoT2JzZXJ2YWJsZSgpOiBPYnNlcnZhYmxlPGJvb2xlYW4+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3Nob3dHbG9iYWxTZWFyY2hTdWJqZWN0O1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgc2hvd0dsb2JhbFNlYXJjaCgpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3Nob3dHbG9iYWxTZWFyY2g7XG4gICAgfVxuXG4gICAgcHVibGljIHNldCBzaG93R2xvYmFsU2VhcmNoKHZhbHVlOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX3Nob3dHbG9iYWxTZWFyY2ggPSB2YWx1ZTtcbiAgICAgICAgdGhpcy5fc2hvd0dsb2JhbFNlYXJjaFN1YmplY3QubmV4dCh2YWx1ZSk7XG4gICAgfVxuXG5cbn1cbiJdfQ==
@@ -1,98 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
2
- import { BehaviorSubject } from 'rxjs';
3
- import { SubBar } from './sub-bar';
4
- import { LoggerFactory } from '@elderbyte/ts-logger';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/common";
7
- import * as i2 from "@angular/flex-layout/flex";
8
- export class ElderProgressBarComponent {
9
- /***************************************************************************
10
- * *
11
- * Constructor *
12
- * *
13
- **************************************************************************/
14
- constructor() {
15
- /***************************************************************************
16
- * *
17
- * Fields *
18
- * *
19
- **************************************************************************/
20
- this.log = LoggerFactory.getLogger(this.constructor.name);
21
- this.minHeight = 4;
22
- /**
23
- * This color is used when the bar is set via the 'value' input.
24
- * It does not get used when multiple sub-bars are set directly.
25
- */
26
- this.barColor = 'green';
27
- this.barBackgroundColor = 'lightgray';
28
- this.bars$ = new BehaviorSubject([]);
29
- }
30
- /***************************************************************************
31
- * *
32
- * Life Cycle *
33
- * *
34
- **************************************************************************/
35
- ngOnInit() {
36
- }
37
- /***************************************************************************
38
- * *
39
- * Properties *
40
- * *
41
- **************************************************************************/
42
- set value(value) {
43
- if (value != null) {
44
- this.setSingleBarValue(value);
45
- }
46
- }
47
- set bars(bars) {
48
- if (bars) {
49
- const validBars = bars.filter(b => b.widthPercent > 0);
50
- this.checkAndAdjustPercentages(validBars);
51
- this.bars$.next(validBars);
52
- }
53
- }
54
- get bars() {
55
- return this.bars$.getValue();
56
- }
57
- /***************************************************************************
58
- * *
59
- * Public API *
60
- * *
61
- **************************************************************************/
62
- /***************************************************************************
63
- * *
64
- * Private methods *
65
- * *
66
- **************************************************************************/
67
- setSingleBarValue(value) {
68
- const bars = this.bars.length === 1 ? [...this.bars] : [new SubBar(0, this.barColor)];
69
- bars[0].widthPercent = value;
70
- this.bars = bars;
71
- }
72
- checkAndAdjustPercentages(bars) {
73
- if (bars.length > 0) {
74
- const totalPercentage = bars.map(b => b.widthPercent).reduce((sum, number) => sum + number);
75
- if (totalPercentage > 100) {
76
- this.log.warn('Total bars width are greater than 100%, adjusting percentages...');
77
- bars.forEach(b => b.widthPercent = 100 / totalPercentage * b.widthPercent);
78
- }
79
- }
80
- }
81
- }
82
- ElderProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83
- ElderProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: ElderProgressBarComponent, selector: "elder-progress-bar", inputs: { minHeight: "minHeight", barColor: "barColor", barBackgroundColor: "barBackgroundColor", value: "value", bars: "bars" }, ngImport: i0, template: "<div *ngIf=\"bars$ | async as bars\" fxLayout=\"row\" fxFlex=\"no-shrink\"\n [style.background]=\"barBackgroundColor\"\n [style.min-height]=\"minHeight\"\n style=\"min-width: 180px\">\n\n <div *ngIf=\"bars.length === 0\"\n [style.font-size]=\"minHeight+'px'\">\n &nbsp;\n </div>\n\n <span class=\"progress-content\" *ngFor=\"let bar of bars\"\n [fxFlex]=\"bar.widthPercent\"\n [style.background]=\"bar.color\"\n [style.min-height]=\"minHeight\"\n [style.font-size]=\"minHeight+'px'\">\n &nbsp;\n </span>\n\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { 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.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: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
84
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderProgressBarComponent, decorators: [{
85
- type: Component,
86
- args: [{ selector: 'elder-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"bars$ | async as bars\" fxLayout=\"row\" fxFlex=\"no-shrink\"\n [style.background]=\"barBackgroundColor\"\n [style.min-height]=\"minHeight\"\n style=\"min-width: 180px\">\n\n <div *ngIf=\"bars.length === 0\"\n [style.font-size]=\"minHeight+'px'\">\n &nbsp;\n </div>\n\n <span class=\"progress-content\" *ngFor=\"let bar of bars\"\n [fxFlex]=\"bar.widthPercent\"\n [style.background]=\"bar.color\"\n [style.min-height]=\"minHeight\"\n [style.font-size]=\"minHeight+'px'\">\n &nbsp;\n </span>\n\n</div>\n" }]
87
- }], ctorParameters: function () { return []; }, propDecorators: { minHeight: [{
88
- type: Input
89
- }], barColor: [{
90
- type: Input
91
- }], barBackgroundColor: [{
92
- type: Input
93
- }], value: [{
94
- type: Input
95
- }], bars: [{
96
- type: Input
97
- }] } });
98
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItcHJvZ3Jlc3MtYmFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvZ3JhcGgvZWxkZXItcHJvZ3Jlc3MtYmFyL2VsZGVyLXByb2dyZXNzLWJhci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2dyYXBoL2VsZGVyLXByb2dyZXNzLWJhci9lbGRlci1wcm9ncmVzcy1iYXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBVSx1QkFBdUIsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDaEYsT0FBTyxFQUFDLGVBQWUsRUFBQyxNQUFNLE1BQU0sQ0FBQztBQUNyQyxPQUFPLEVBQUMsTUFBTSxFQUFDLE1BQU0sV0FBVyxDQUFDO0FBQ2pDLE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxzQkFBc0IsQ0FBQzs7OztBQVNuRCxNQUFNLE9BQU8seUJBQXlCO0lBMkJwQzs7OztnRkFJNEU7SUFFNUU7UUEvQkE7Ozs7b0ZBSTRFO1FBRTNELFFBQUcsR0FBRyxhQUFhLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUM7UUFJL0QsY0FBUyxHQUFHLENBQUMsQ0FBQztRQUVyQjs7O1dBR0c7UUFFSSxhQUFRLEdBQUcsT0FBTyxDQUFDO1FBR25CLHVCQUFrQixHQUFHLFdBQVcsQ0FBQztRQUd4QixVQUFLLEdBQUcsSUFBSSxlQUFlLENBQVcsRUFBRSxDQUFDLENBQUM7SUFTMUQsQ0FBQztJQUVEOzs7O2dGQUk0RTtJQUU1RSxRQUFRO0lBQ1IsQ0FBQztJQUVEOzs7O2dGQUk0RTtJQUU1RSxJQUNXLEtBQUssQ0FBQyxLQUFhO1FBQzVCLElBQUksS0FBSyxJQUFJLElBQUksRUFBRTtZQUNqQixJQUFJLENBQUMsaUJBQWlCLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDL0I7SUFDSCxDQUFDO0lBRUQsSUFDVyxJQUFJLENBQUMsSUFBYztRQUM1QixJQUFJLElBQUksRUFBRTtZQUNSLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsWUFBWSxHQUFHLENBQUMsQ0FBQyxDQUFDO1lBQ3ZELElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxTQUFTLENBQUMsQ0FBQztZQUMxQyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQztTQUM1QjtJQUNILENBQUM7SUFFRCxJQUFXLElBQUk7UUFDYixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDL0IsQ0FBQztJQUVEOzs7O2dGQUk0RTtJQUU1RTs7OztnRkFJNEU7SUFFcEUsaUJBQWlCLENBQUMsS0FBYTtRQUNyQyxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDO1FBQ3RGLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO1FBQzdCLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO0lBQ25CLENBQUM7SUFFTyx5QkFBeUIsQ0FBQyxJQUFjO1FBQzlDLElBQUksSUFBSSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7WUFDbkIsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLEVBQUUsTUFBTSxFQUFFLEVBQUUsQ0FBQyxHQUFHLEdBQUcsTUFBTSxDQUFDLENBQUM7WUFDNUYsSUFBSSxlQUFlLEdBQUcsR0FBRyxFQUFFO2dCQUN6QixJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxrRUFBa0UsQ0FBQyxDQUFDO2dCQUNsRixJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFlBQVksR0FBRyxHQUFHLEdBQUcsZUFBZSxHQUFHLENBQUMsQ0FBQyxZQUFZLENBQUMsQ0FBQzthQUM1RTtTQUNGO0lBQ0gsQ0FBQzs7c0hBakdVLHlCQUF5QjswR0FBekIseUJBQXlCLDRMQ1p0Qyw2akJBbUJBOzJGRFBhLHlCQUF5QjtrQkFOckMsU0FBUzsrQkFDRSxvQkFBb0IsbUJBR2IsdUJBQXVCLENBQUMsTUFBTTswRUFjeEMsU0FBUztzQkFEZixLQUFLO2dCQVFDLFFBQVE7c0JBRGQsS0FBSztnQkFJQyxrQkFBa0I7c0JBRHhCLEtBQUs7Z0JBK0JLLEtBQUs7c0JBRGYsS0FBSztnQkFRSyxJQUFJO3NCQURkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgT25Jbml0LCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgSW5wdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtCZWhhdmlvclN1YmplY3R9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHtTdWJCYXJ9IGZyb20gJy4vc3ViLWJhcic7XG5pbXBvcnQge0xvZ2dlckZhY3Rvcnl9IGZyb20gJ0BlbGRlcmJ5dGUvdHMtbG9nZ2VyJztcblxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlbGRlci1wcm9ncmVzcy1iYXInLFxuICB0ZW1wbGF0ZVVybDogJy4vZWxkZXItcHJvZ3Jlc3MtYmFyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZWxkZXItcHJvZ3Jlc3MtYmFyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyUHJvZ3Jlc3NCYXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBGaWVsZHMgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgbG9nID0gTG9nZ2VyRmFjdG9yeS5nZXRMb2dnZXIodGhpcy5jb25zdHJ1Y3Rvci5uYW1lKTtcblxuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBtaW5IZWlnaHQgPSA0O1xuXG4gIC8qKlxuICAgKiBUaGlzIGNvbG9yIGlzIHVzZWQgd2hlbiB0aGUgYmFyIGlzIHNldCB2aWEgdGhlICd2YWx1ZScgaW5wdXQuXG4gICAqIEl0IGRvZXMgbm90IGdldCB1c2VkIHdoZW4gbXVsdGlwbGUgc3ViLWJhcnMgYXJlIHNldCBkaXJlY3RseS5cbiAgICovXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBiYXJDb2xvciA9ICdncmVlbic7XG5cbiAgQElucHV0KClcbiAgcHVibGljIGJhckJhY2tncm91bmRDb2xvciA9ICdsaWdodGdyYXknO1xuXG5cbiAgcHVibGljIHJlYWRvbmx5IGJhcnMkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxTdWJCYXJbXT4oW10pO1xuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBDb25zdHJ1Y3RvciAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIGNvbnN0cnVjdG9yKCkge1xuICB9XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIExpZmUgQ3ljbGUgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogUHJvcGVydGllcyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBASW5wdXQoKVxuICBwdWJsaWMgc2V0IHZhbHVlKHZhbHVlOiBudW1iZXIpIHtcbiAgICBpZiAodmFsdWUgIT0gbnVsbCkge1xuICAgICAgdGhpcy5zZXRTaW5nbGVCYXJWYWx1ZSh2YWx1ZSk7XG4gICAgfVxuICB9XG5cbiAgQElucHV0KClcbiAgcHVibGljIHNldCBiYXJzKGJhcnM6IFN1YkJhcltdKSB7XG4gICAgaWYgKGJhcnMpIHtcbiAgICAgIGNvbnN0IHZhbGlkQmFycyA9IGJhcnMuZmlsdGVyKGIgPT4gYi53aWR0aFBlcmNlbnQgPiAwKTtcbiAgICAgIHRoaXMuY2hlY2tBbmRBZGp1c3RQZXJjZW50YWdlcyh2YWxpZEJhcnMpO1xuICAgICAgdGhpcy5iYXJzJC5uZXh0KHZhbGlkQmFycyk7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGdldCBiYXJzKCk6IFN1YkJhcltdIHtcbiAgICByZXR1cm4gdGhpcy5iYXJzJC5nZXRWYWx1ZSgpO1xuICB9XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIFB1YmxpYyBBUEkgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIFByaXZhdGUgbWV0aG9kcyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHJpdmF0ZSBzZXRTaW5nbGVCYXJWYWx1ZSh2YWx1ZTogbnVtYmVyKTogdm9pZCB7XG4gICAgY29uc3QgYmFycyA9IHRoaXMuYmFycy5sZW5ndGggPT09IDEgPyBbLi4udGhpcy5iYXJzXSA6IFtuZXcgU3ViQmFyKDAsIHRoaXMuYmFyQ29sb3IpXTtcbiAgICBiYXJzWzBdLndpZHRoUGVyY2VudCA9IHZhbHVlO1xuICAgIHRoaXMuYmFycyA9IGJhcnM7XG4gIH1cblxuICBwcml2YXRlIGNoZWNrQW5kQWRqdXN0UGVyY2VudGFnZXMoYmFyczogU3ViQmFyW10pOiB2b2lkIHtcbiAgICBpZiAoYmFycy5sZW5ndGggPiAwKSB7XG4gICAgICBjb25zdCB0b3RhbFBlcmNlbnRhZ2UgPSBiYXJzLm1hcChiID0+IGIud2lkdGhQZXJjZW50KS5yZWR1Y2UoKHN1bSwgbnVtYmVyKSA9PiBzdW0gKyBudW1iZXIpO1xuICAgICAgaWYgKHRvdGFsUGVyY2VudGFnZSA+IDEwMCkge1xuICAgICAgICB0aGlzLmxvZy53YXJuKCdUb3RhbCBiYXJzIHdpZHRoIGFyZSBncmVhdGVyIHRoYW4gMTAwJSwgYWRqdXN0aW5nIHBlcmNlbnRhZ2VzLi4uJyk7XG4gICAgICAgIGJhcnMuZm9yRWFjaChiID0+IGIud2lkdGhQZXJjZW50ID0gMTAwIC8gdG90YWxQZXJjZW50YWdlICogYi53aWR0aFBlcmNlbnQpO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG59XG4iLCI8ZGl2ICpuZ0lmPVwiYmFycyQgfCBhc3luYyBhcyBiYXJzXCIgZnhMYXlvdXQ9XCJyb3dcIiBmeEZsZXg9XCJuby1zaHJpbmtcIlxuICAgICBbc3R5bGUuYmFja2dyb3VuZF09XCJiYXJCYWNrZ3JvdW5kQ29sb3JcIlxuICAgICBbc3R5bGUubWluLWhlaWdodF09XCJtaW5IZWlnaHRcIlxuICAgICBzdHlsZT1cIm1pbi13aWR0aDogMTgwcHhcIj5cblxuICA8ZGl2ICpuZ0lmPVwiYmFycy5sZW5ndGggPT09IDBcIlxuICAgICAgIFtzdHlsZS5mb250LXNpemVdPVwibWluSGVpZ2h0KydweCdcIj5cbiAgICAmbmJzcDtcbiAgPC9kaXY+XG5cbiAgPHNwYW4gY2xhc3M9XCJwcm9ncmVzcy1jb250ZW50XCIgKm5nRm9yPVwibGV0IGJhciBvZiBiYXJzXCJcbiAgICAgICAgW2Z4RmxleF09XCJiYXIud2lkdGhQZXJjZW50XCJcbiAgICAgICAgW3N0eWxlLmJhY2tncm91bmRdPVwiYmFyLmNvbG9yXCJcbiAgICAgICAgW3N0eWxlLm1pbi1oZWlnaHRdPVwibWluSGVpZ2h0XCJcbiAgICAgICAgW3N0eWxlLmZvbnQtc2l6ZV09XCJtaW5IZWlnaHQrJ3B4J1wiPlxuICAgICZuYnNwO1xuICA8L3NwYW4+XG5cbjwvZGl2PlxuIl19
@@ -1,30 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { ElderProgressBarComponent } from './elder-progress-bar.component';
3
- import { CommonModule } from '@angular/common';
4
- import { FlexModule } from '@angular/flex-layout';
5
- import * as i0 from "@angular/core";
6
- export * from './elder-progress-bar.component';
7
- export * from './sub-bar';
8
- export class ElderProgressBarModule {
9
- }
10
- ElderProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
- ElderProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.4", ngImport: i0, type: ElderProgressBarModule, declarations: [ElderProgressBarComponent], imports: [CommonModule,
12
- FlexModule], exports: [ElderProgressBarComponent] });
13
- ElderProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderProgressBarModule, imports: [CommonModule,
14
- FlexModule] });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderProgressBarModule, decorators: [{
16
- type: NgModule,
17
- args: [{
18
- declarations: [
19
- ElderProgressBarComponent
20
- ],
21
- exports: [
22
- ElderProgressBarComponent
23
- ],
24
- imports: [
25
- CommonModule,
26
- FlexModule
27
- ]
28
- }]
29
- }] });
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItcHJvZ3Jlc3MtYmFyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvZ3JhcGgvZWxkZXItcHJvZ3Jlc3MtYmFyL2VsZGVyLXByb2dyZXNzLWJhci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMseUJBQXlCLEVBQUMsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN6RSxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLHNCQUFzQixDQUFDOztBQUVoRCxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsV0FBVyxDQUFDO0FBYzFCLE1BQU0sT0FBTyxzQkFBc0I7O21IQUF0QixzQkFBc0I7b0hBQXRCLHNCQUFzQixpQkFWL0IseUJBQXlCLGFBTXpCLFlBQVk7UUFDWixVQUFVLGFBSlYseUJBQXlCO29IQU9oQixzQkFBc0IsWUFKL0IsWUFBWTtRQUNaLFVBQVU7MkZBR0Qsc0JBQXNCO2tCQVpsQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWix5QkFBeUI7cUJBQzFCO29CQUNELE9BQU8sRUFBRTt3QkFDUCx5QkFBeUI7cUJBQzFCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLFVBQVU7cUJBQ1g7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7RWxkZXJQcm9ncmVzc0JhckNvbXBvbmVudH0gZnJvbSAnLi9lbGRlci1wcm9ncmVzcy1iYXIuY29tcG9uZW50JztcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtGbGV4TW9kdWxlfSBmcm9tICdAYW5ndWxhci9mbGV4LWxheW91dCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZWxkZXItcHJvZ3Jlc3MtYmFyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3N1Yi1iYXInO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBFbGRlclByb2dyZXNzQmFyQ29tcG9uZW50XG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBFbGRlclByb2dyZXNzQmFyQ29tcG9uZW50XG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgRmxleE1vZHVsZVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyUHJvZ3Jlc3NCYXJNb2R1bGUge1xufVxuIl19
@@ -1,7 +0,0 @@
1
- export class SubBar {
2
- constructor(widthPercent, color) {
3
- this.widthPercent = widthPercent;
4
- this.color = color;
5
- }
6
- }
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3ViLWJhci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvZ3JhcGgvZWxkZXItcHJvZ3Jlc3MtYmFyL3N1Yi1iYXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLE1BQU07SUFFakIsWUFBbUIsWUFBb0IsRUFBUyxLQUFhO1FBQTFDLGlCQUFZLEdBQVosWUFBWSxDQUFRO1FBQVMsVUFBSyxHQUFMLEtBQUssQ0FBUTtJQUM3RCxDQUFDO0NBRUYiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgU3ViQmFyIHtcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgd2lkdGhQZXJjZW50OiBudW1iZXIsIHB1YmxpYyBjb2xvcjogc3RyaW5nKSB7XG4gIH1cblxufVxuIl19
@@ -1,2 +0,0 @@
1
- export * from './elder-progress-bar/elder-progress-bar.module';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvZ3JhcGgvcHVibGljX2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGdEQUFnRCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lbGRlci1wcm9ncmVzcy1iYXIvZWxkZXItcHJvZ3Jlc3MtYmFyLm1vZHVsZSc7XG4iXX0=
@@ -1,29 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/flex-layout/flex";
4
- import * as i2 from "@ngx-translate/core";
5
- export class ElderHeaderComponent {
6
- /***************************************************************************
7
- * *
8
- * Constructor *
9
- * *
10
- **************************************************************************/
11
- constructor() { }
12
- /***************************************************************************
13
- * *
14
- * Life Cycle *
15
- * *
16
- **************************************************************************/
17
- ngOnInit() { }
18
- }
19
- ElderHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
20
- ElderHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: ElderHeaderComponent, selector: "elder-header", inputs: { header: "header", subheader: "subheader" }, ngImport: i0, template: "\n<div fxLayout=\"column\" class=\"mat-typography\">\n <h2 style=\"margin: 0\">{{header ? header : '-' | translate}}</h2>\n <span class=\"mat-caption\">{{subheader ? subheader : '-' | translate}}</span>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.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: "pipe", type: i2.TranslatePipe, name: "translate" }] });
21
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderHeaderComponent, decorators: [{
22
- type: Component,
23
- args: [{ selector: 'elder-header', template: "\n<div fxLayout=\"column\" class=\"mat-typography\">\n <h2 style=\"margin: 0\">{{header ? header : '-' | translate}}</h2>\n <span class=\"mat-caption\">{{subheader ? subheader : '-' | translate}}</span>\n</div>\n" }]
24
- }], ctorParameters: function () { return []; }, propDecorators: { header: [{
25
- type: Input
26
- }], subheader: [{
27
- type: Input
28
- }] } });
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItaGVhZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvaGVhZGVycy9lbGRlci1oZWFkZXIvZWxkZXItaGVhZGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvaGVhZGVycy9lbGRlci1oZWFkZXIvZWxkZXItaGVhZGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFTLE1BQU0sZUFBZSxDQUFDOzs7O0FBT3ZELE1BQU0sT0FBTyxvQkFBb0I7SUFjL0I7Ozs7Z0ZBSTRFO0lBRTVFLGdCQUFnQixDQUFDO0lBRWpCOzs7O2dGQUk0RTtJQUVyRSxRQUFRLEtBQVUsQ0FBQzs7aUhBNUJmLG9CQUFvQjtxR0FBcEIsb0JBQW9CLDBHQ1BqQyx3TkFLQTsyRkRFYSxvQkFBb0I7a0JBTGhDLFNBQVM7K0JBQ0UsY0FBYzswRUFhakIsTUFBTTtzQkFEWixLQUFLO2dCQUlDLFNBQVM7c0JBRGYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBJbnB1dCwgT25Jbml0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZWxkZXItaGVhZGVyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2VsZGVyLWhlYWRlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2VsZGVyLWhlYWRlci5jb21wb25lbnQuY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJIZWFkZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBGaWVsZHMgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBoZWFkZXI6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBwdWJsaWMgc3ViaGVhZGVyOiBzdHJpbmc7XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIENvbnN0cnVjdG9yICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogTGlmZSBDeWNsZSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7fVxuXG59XG4iLCJcbjxkaXYgZnhMYXlvdXQ9XCJjb2x1bW5cIiBjbGFzcz1cIm1hdC10eXBvZ3JhcGh5XCI+XG4gIDxoMiBzdHlsZT1cIm1hcmdpbjogMFwiPnt7aGVhZGVyID8gaGVhZGVyIDogJy0nIHwgdHJhbnNsYXRlfX08L2gyPlxuICA8c3BhbiBjbGFzcz1cIm1hdC1jYXB0aW9uXCI+e3tzdWJoZWFkZXIgPyBzdWJoZWFkZXIgOiAnLScgfCB0cmFuc2xhdGV9fTwvc3Bhbj5cbjwvZGl2PlxuIl19
@@ -1,44 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { FlexLayoutModule } from '@angular/flex-layout';
4
- import { RouterModule } from '@angular/router';
5
- import { TranslateModule } from '@ngx-translate/core';
6
- import { ElderHeaderComponent } from './elder-header/elder-header.component';
7
- import * as i0 from "@angular/core";
8
- export * from './elder-header/elder-header.component';
9
- export class ElderHeaderModule {
10
- }
11
- ElderHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
12
- ElderHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.4", ngImport: i0, type: ElderHeaderModule, declarations: [ElderHeaderComponent], imports: [
13
- // Angular
14
- CommonModule, RouterModule,
15
- // Third Party
16
- FlexLayoutModule, TranslateModule
17
- // Angular Material
18
- ], exports: [ElderHeaderComponent] });
19
- ElderHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderHeaderModule, imports: [
20
- // Angular
21
- CommonModule, RouterModule,
22
- // Third Party
23
- FlexLayoutModule, TranslateModule
24
- // Angular Material
25
- ] });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderHeaderModule, decorators: [{
27
- type: NgModule,
28
- args: [{
29
- imports: [
30
- // Angular
31
- CommonModule, RouterModule,
32
- // Third Party
33
- FlexLayoutModule, TranslateModule
34
- // Angular Material
35
- ],
36
- declarations: [
37
- ElderHeaderComponent
38
- ],
39
- exports: [
40
- ElderHeaderComponent
41
- ]
42
- }]
43
- }] });
44
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItaGVhZGVyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvaGVhZGVycy9lbGRlci1oZWFkZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdEQsT0FBTyxFQUFDLG9CQUFvQixFQUFDLE1BQU0sdUNBQXVDLENBQUM7O0FBRTNFLGNBQWMsdUNBQXVDLENBQUM7QUFxQnRELE1BQU0sT0FBTyxpQkFBaUI7OzhHQUFqQixpQkFBaUI7K0dBQWpCLGlCQUFpQixpQkFOMUIsb0JBQW9CO1FBVnBCLFVBQVU7UUFDVixZQUFZLEVBQUUsWUFBWTtRQUUxQixjQUFjO1FBQ2QsZ0JBQWdCLEVBQUUsZUFBZTtRQUVqQyxtQkFBbUI7aUJBT25CLG9CQUFvQjsrR0FHWCxpQkFBaUI7UUFoQjFCLFVBQVU7UUFDVixZQUFZLEVBQUUsWUFBWTtRQUUxQixjQUFjO1FBQ2QsZ0JBQWdCLEVBQUUsZUFBZTtRQUVqQyxtQkFBbUI7OzJGQVVWLGlCQUFpQjtrQkFuQjdCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUVQLFVBQVU7d0JBQ1YsWUFBWSxFQUFFLFlBQVk7d0JBRTFCLGNBQWM7d0JBQ2QsZ0JBQWdCLEVBQUUsZUFBZTt3QkFFakMsbUJBQW1CO3FCQUVwQjtvQkFDRCxZQUFZLEVBQUU7d0JBQ1osb0JBQW9CO3FCQUNyQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asb0JBQW9CO3FCQUNyQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgRmxleExheW91dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2ZsZXgtbGF5b3V0JztcbmltcG9ydCB7IFJvdXRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQgeyBUcmFuc2xhdGVNb2R1bGUgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcbmltcG9ydCB7RWxkZXJIZWFkZXJDb21wb25lbnR9IGZyb20gJy4vZWxkZXItaGVhZGVyL2VsZGVyLWhlYWRlci5jb21wb25lbnQnO1xuXG5leHBvcnQgKiBmcm9tICcuL2VsZGVyLWhlYWRlci9lbGRlci1oZWFkZXIuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuXG4gICAgLy8gQW5ndWxhclxuICAgIENvbW1vbk1vZHVsZSwgUm91dGVyTW9kdWxlLFxuXG4gICAgLy8gVGhpcmQgUGFydHlcbiAgICBGbGV4TGF5b3V0TW9kdWxlLCBUcmFuc2xhdGVNb2R1bGVcblxuICAgIC8vIEFuZ3VsYXIgTWF0ZXJpYWxcblxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBFbGRlckhlYWRlckNvbXBvbmVudFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgRWxkZXJIZWFkZXJDb21wb25lbnRcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBFbGRlckhlYWRlck1vZHVsZSB7IH1cbiJdfQ==