@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,62 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { ElderAutocompleteComponent } from './elder-autocomplete/elder-autocomplete.component';
4
- import { MatAutocompleteModule } from '@angular/material/autocomplete';
5
- import { ElderInfiniteScrollModule } from '../../infinitescroll/elder-infinite-scroll.module';
6
- import { MatIconModule } from '@angular/material/icon';
7
- import { FlexModule } from '@angular/flex-layout';
8
- import { MatProgressBarModule } from '@angular/material/progress-bar';
9
- import { ElderAutocompleteDirective } from './elder-autocomplete.directive';
10
- import { ReactiveFormsModule } from '@angular/forms';
11
- import { MatInputModule } from '@angular/material/input';
12
- import { ElderAutocompleteManyDirective } from './elder-autocomplete-many.directive';
13
- import * as i0 from "@angular/core";
14
- export { ElderAutocompleteComponent } from './elder-autocomplete/elder-autocomplete.component';
15
- export { ElderAutocompleteManyDirective } from './elder-autocomplete-many.directive';
16
- export { ElderAutocompleteDirective } from './elder-autocomplete.directive';
17
- export class ElderAutocompleteModule {
18
- }
19
- ElderAutocompleteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderAutocompleteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
20
- ElderAutocompleteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.4", ngImport: i0, type: ElderAutocompleteModule, declarations: [ElderAutocompleteComponent,
21
- ElderAutocompleteDirective,
22
- ElderAutocompleteManyDirective], imports: [CommonModule, ReactiveFormsModule,
23
- MatInputModule,
24
- MatAutocompleteModule,
25
- ElderInfiniteScrollModule,
26
- MatIconModule,
27
- FlexModule,
28
- MatProgressBarModule], exports: [ElderAutocompleteComponent,
29
- ElderAutocompleteDirective,
30
- ElderAutocompleteManyDirective] });
31
- ElderAutocompleteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderAutocompleteModule, imports: [CommonModule, ReactiveFormsModule,
32
- MatInputModule,
33
- MatAutocompleteModule,
34
- ElderInfiniteScrollModule,
35
- MatIconModule,
36
- FlexModule,
37
- MatProgressBarModule] });
38
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderAutocompleteModule, decorators: [{
39
- type: NgModule,
40
- args: [{
41
- declarations: [
42
- ElderAutocompleteComponent,
43
- ElderAutocompleteDirective,
44
- ElderAutocompleteManyDirective
45
- ],
46
- exports: [
47
- ElderAutocompleteComponent,
48
- ElderAutocompleteDirective,
49
- ElderAutocompleteManyDirective
50
- ],
51
- imports: [
52
- CommonModule, ReactiveFormsModule,
53
- MatInputModule,
54
- MatAutocompleteModule,
55
- ElderInfiniteScrollModule,
56
- MatIconModule,
57
- FlexModule,
58
- MatProgressBarModule,
59
- ]
60
- }]
61
- }] });
62
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItYXV0b2NvbXBsZXRlLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvaW5wdXQvYXV0b2NvbXBsZXRlL2VsZGVyLWF1dG9jb21wbGV0ZS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFDL0YsT0FBTyxFQUFDLHFCQUFxQixFQUFDLE1BQU0sZ0NBQWdDLENBQUM7QUFDckUsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0sbURBQW1ELENBQUM7QUFDNUYsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQ3JELE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxzQkFBc0IsQ0FBQztBQUNoRCxPQUFPLEVBQUMsb0JBQW9CLEVBQUMsTUFBTSxnQ0FBZ0MsQ0FBQztBQUNwRSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUM1RSxPQUFPLEVBQUMsbUJBQW1CLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUNuRCxPQUFPLEVBQUMsY0FBYyxFQUFDLE1BQU0seUJBQXlCLENBQUM7QUFDdkQsT0FBTyxFQUFDLDhCQUE4QixFQUFDLE1BQU0scUNBQXFDLENBQUM7O0FBRW5GLE9BQU8sRUFBQywwQkFBMEIsRUFBQyxNQUFNLG1EQUFtRCxDQUFDO0FBQzdGLE9BQU8sRUFBQyw4QkFBOEIsRUFBQyxNQUFNLHFDQUFxQyxDQUFDO0FBQ25GLE9BQU8sRUFBQywwQkFBMEIsRUFBQyxNQUFNLGdDQUFnQyxDQUFDO0FBeUIxRSxNQUFNLE9BQU8sdUJBQXVCOztvSEFBdkIsdUJBQXVCO3FIQUF2Qix1QkFBdUIsaUJBckJoQywwQkFBMEI7UUFDMUIsMEJBQTBCO1FBQzFCLDhCQUE4QixhQVE5QixZQUFZLEVBQUUsbUJBQW1CO1FBRWpDLGNBQWM7UUFDZCxxQkFBcUI7UUFDckIseUJBQXlCO1FBQ3pCLGFBQWE7UUFDYixVQUFVO1FBQ1Ysb0JBQW9CLGFBWnBCLDBCQUEwQjtRQUMxQiwwQkFBMEI7UUFDMUIsOEJBQThCO3FIQWNyQix1QkFBdUIsWUFYaEMsWUFBWSxFQUFFLG1CQUFtQjtRQUVqQyxjQUFjO1FBQ2QscUJBQXFCO1FBQ3JCLHlCQUF5QjtRQUN6QixhQUFhO1FBQ2IsVUFBVTtRQUNWLG9CQUFvQjsyRkFJWCx1QkFBdUI7a0JBdkJuQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWiwwQkFBMEI7d0JBQzFCLDBCQUEwQjt3QkFDMUIsOEJBQThCO3FCQUMvQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsMEJBQTBCO3dCQUMxQiwwQkFBMEI7d0JBQzFCLDhCQUE4QjtxQkFDL0I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVksRUFBRSxtQkFBbUI7d0JBRWpDLGNBQWM7d0JBQ2QscUJBQXFCO3dCQUNyQix5QkFBeUI7d0JBQ3pCLGFBQWE7d0JBQ2IsVUFBVTt3QkFDVixvQkFBb0I7cUJBRXJCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBFbGRlckF1dG9jb21wbGV0ZUNvbXBvbmVudCB9IGZyb20gJy4vZWxkZXItYXV0b2NvbXBsZXRlL2VsZGVyLWF1dG9jb21wbGV0ZS5jb21wb25lbnQnO1xuaW1wb3J0IHtNYXRBdXRvY29tcGxldGVNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2F1dG9jb21wbGV0ZSc7XG5pbXBvcnQge0VsZGVySW5maW5pdGVTY3JvbGxNb2R1bGV9IGZyb20gJy4uLy4uL2luZmluaXRlc2Nyb2xsL2VsZGVyLWluZmluaXRlLXNjcm9sbC5tb2R1bGUnO1xuaW1wb3J0IHtNYXRJY29uTW9kdWxlfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcbmltcG9ydCB7RmxleE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZmxleC1sYXlvdXQnO1xuaW1wb3J0IHtNYXRQcm9ncmVzc0Jhck1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvcHJvZ3Jlc3MtYmFyJztcbmltcG9ydCB7IEVsZGVyQXV0b2NvbXBsZXRlRGlyZWN0aXZlIH0gZnJvbSAnLi9lbGRlci1hdXRvY29tcGxldGUuZGlyZWN0aXZlJztcbmltcG9ydCB7UmVhY3RpdmVGb3Jtc01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHtNYXRJbnB1dE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaW5wdXQnO1xuaW1wb3J0IHtFbGRlckF1dG9jb21wbGV0ZU1hbnlEaXJlY3RpdmV9IGZyb20gJy4vZWxkZXItYXV0b2NvbXBsZXRlLW1hbnkuZGlyZWN0aXZlJztcblxuZXhwb3J0IHtFbGRlckF1dG9jb21wbGV0ZUNvbXBvbmVudH0gZnJvbSAnLi9lbGRlci1hdXRvY29tcGxldGUvZWxkZXItYXV0b2NvbXBsZXRlLmNvbXBvbmVudCc7XG5leHBvcnQge0VsZGVyQXV0b2NvbXBsZXRlTWFueURpcmVjdGl2ZX0gZnJvbSAnLi9lbGRlci1hdXRvY29tcGxldGUtbWFueS5kaXJlY3RpdmUnO1xuZXhwb3J0IHtFbGRlckF1dG9jb21wbGV0ZURpcmVjdGl2ZX0gZnJvbSAnLi9lbGRlci1hdXRvY29tcGxldGUuZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRWxkZXJBdXRvY29tcGxldGVDb21wb25lbnQsXG4gICAgRWxkZXJBdXRvY29tcGxldGVEaXJlY3RpdmUsXG4gICAgRWxkZXJBdXRvY29tcGxldGVNYW55RGlyZWN0aXZlXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBFbGRlckF1dG9jb21wbGV0ZUNvbXBvbmVudCxcbiAgICBFbGRlckF1dG9jb21wbGV0ZURpcmVjdGl2ZSxcbiAgICBFbGRlckF1dG9jb21wbGV0ZU1hbnlEaXJlY3RpdmVcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZSxcblxuICAgIE1hdElucHV0TW9kdWxlLFxuICAgIE1hdEF1dG9jb21wbGV0ZU1vZHVsZSxcbiAgICBFbGRlckluZmluaXRlU2Nyb2xsTW9kdWxlLFxuICAgIE1hdEljb25Nb2R1bGUsXG4gICAgRmxleE1vZHVsZSxcbiAgICBNYXRQcm9ncmVzc0Jhck1vZHVsZSxcblxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyQXV0b2NvbXBsZXRlTW9kdWxlIHsgfVxuIl19
@@ -1,58 +0,0 @@
1
- export class TextRange {
2
- constructor(start, end, value) {
3
- this.start = start;
4
- this.end = end;
5
- this.value = value;
6
- }
7
- }
8
- export class ReplacementResult {
9
- constructor(newText, replaced) {
10
- this.newText = newText;
11
- this.replaced = replaced;
12
- }
13
- }
14
- export class WordPositionFinder {
15
- findWord(text, position) {
16
- if (position >= 0) {
17
- // Search for the word's beginning and end.
18
- const left = text.slice(0, position).search(/\S+$/);
19
- let right = text.slice(position).search(/\s/);
20
- // The last word in the string is a special case.
21
- if (right < 0) {
22
- right = text.length;
23
- }
24
- else {
25
- right += position;
26
- }
27
- const word = text.substring(left, right);
28
- return new TextRange(left, right, word);
29
- }
30
- else {
31
- return new TextRange(text.length, text.length, undefined);
32
- }
33
- }
34
- replaceWord(text, position, replacement) {
35
- const current = this.findWord(text, position);
36
- const beforePos = current.start;
37
- const before = text.substring(0, beforePos);
38
- const after = text.substring(current.end, text.length);
39
- let newText = '';
40
- if (before) {
41
- newText += before.trim();
42
- }
43
- if (replacement) {
44
- if (newText) {
45
- newText += ' ';
46
- }
47
- newText += replacement;
48
- }
49
- if (after) {
50
- if (newText) {
51
- newText += ' ';
52
- }
53
- newText += after.trim();
54
- }
55
- return new ReplacementResult(newText, new TextRange(beforePos, beforePos + replacement.length, replacement));
56
- }
57
- }
58
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29yZC1wb3NpdGlvbi1maW5kZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2lucHV0L2F1dG9jb21wbGV0ZS9tYW55L3dvcmQtcG9zaXRpb24tZmluZGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE1BQU0sT0FBTyxTQUFTO0lBQ3BCLFlBQ1MsS0FBYSxFQUNiLEdBQVcsRUFDWCxLQUFhO1FBRmIsVUFBSyxHQUFMLEtBQUssQ0FBUTtRQUNiLFFBQUcsR0FBSCxHQUFHLENBQVE7UUFDWCxVQUFLLEdBQUwsS0FBSyxDQUFRO0lBRXRCLENBQUM7Q0FDRjtBQUVELE1BQU0sT0FBTyxpQkFBaUI7SUFDNUIsWUFDUyxPQUFlLEVBQ2YsUUFBbUI7UUFEbkIsWUFBTyxHQUFQLE9BQU8sQ0FBUTtRQUNmLGFBQVEsR0FBUixRQUFRLENBQVc7SUFFNUIsQ0FBQztDQUNGO0FBRUQsTUFBTSxPQUFPLGtCQUFrQjtJQUV0QixRQUFRLENBQUMsSUFBWSxFQUFFLFFBQWdCO1FBQzVDLElBQUcsUUFBUSxJQUFJLENBQUMsRUFBQztZQUNmLDJDQUEyQztZQUMzQyxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxRQUFRLENBQUMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDcEQsSUFBSSxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUM7WUFFOUMsaURBQWlEO1lBQ2pELElBQUksS0FBSyxHQUFHLENBQUMsRUFBRTtnQkFDYixLQUFLLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQzthQUNyQjtpQkFBTTtnQkFDTCxLQUFLLElBQUksUUFBUSxDQUFDO2FBQ25CO1lBQ0QsTUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLENBQUM7WUFDekMsT0FBTyxJQUFJLFNBQVMsQ0FBQyxJQUFJLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQ3pDO2FBQU07WUFDTCxPQUFPLElBQUksU0FBUyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU0sRUFBRSxTQUFTLENBQUMsQ0FBQztTQUMzRDtJQUNILENBQUM7SUFHTSxXQUFXLENBQUMsSUFBWSxFQUFFLFFBQWdCLEVBQUUsV0FBbUI7UUFFcEUsTUFBTSxPQUFPLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7UUFFOUMsTUFBTSxTQUFTLEdBQUcsT0FBTyxDQUFDLEtBQUssQ0FBQztRQUNoQyxNQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxTQUFTLENBQUMsQ0FBQztRQUM1QyxNQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxHQUFHLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBRXZELElBQUksT0FBTyxHQUFHLEVBQUUsQ0FBQztRQUNqQixJQUFJLE1BQU0sRUFBRTtZQUNWLE9BQU8sSUFBSSxNQUFNLENBQUMsSUFBSSxFQUFFLENBQUM7U0FDMUI7UUFFRCxJQUFHLFdBQVcsRUFBQztZQUNiLElBQUksT0FBTyxFQUFFO2dCQUNYLE9BQU8sSUFBSSxHQUFHLENBQUM7YUFDaEI7WUFDRCxPQUFPLElBQUksV0FBVyxDQUFDO1NBQ3hCO1FBRUQsSUFBRyxLQUFLLEVBQUM7WUFDUCxJQUFJLE9BQU8sRUFBRTtnQkFDWCxPQUFPLElBQUksR0FBRyxDQUFDO2FBQ2hCO1lBQ0QsT0FBTyxJQUFJLEtBQUssQ0FBQyxJQUFJLEVBQUUsQ0FBQztTQUN6QjtRQUVELE9BQU8sSUFBSSxpQkFBaUIsQ0FDMUIsT0FBTyxFQUNQLElBQUksU0FBUyxDQUNYLFNBQVMsRUFDVCxTQUFTLEdBQUcsV0FBVyxDQUFDLE1BQU0sRUFBRSxXQUFXLENBQzVDLENBQ0YsQ0FBQztJQUNKLENBQUM7Q0FDRiIsInNvdXJjZXNDb250ZW50IjpbIlxuZXhwb3J0IGNsYXNzIFRleHRSYW5nZSB7XG4gIGNvbnN0cnVjdG9yKFxuICAgIHB1YmxpYyBzdGFydDogbnVtYmVyLFxuICAgIHB1YmxpYyBlbmQ6IG51bWJlcixcbiAgICBwdWJsaWMgdmFsdWU6IHN0cmluZ1xuICApIHtcbiAgfVxufVxuXG5leHBvcnQgY2xhc3MgUmVwbGFjZW1lbnRSZXN1bHQge1xuICBjb25zdHJ1Y3RvcihcbiAgICBwdWJsaWMgbmV3VGV4dDogc3RyaW5nLFxuICAgIHB1YmxpYyByZXBsYWNlZDogVGV4dFJhbmdlXG4gICkge1xuICB9XG59XG5cbmV4cG9ydCBjbGFzcyBXb3JkUG9zaXRpb25GaW5kZXIge1xuXG4gIHB1YmxpYyBmaW5kV29yZCh0ZXh0OiBzdHJpbmcsIHBvc2l0aW9uOiBudW1iZXIpOiBUZXh0UmFuZ2Uge1xuICAgIGlmKHBvc2l0aW9uID49IDApe1xuICAgICAgLy8gU2VhcmNoIGZvciB0aGUgd29yZCdzIGJlZ2lubmluZyBhbmQgZW5kLlxuICAgICAgY29uc3QgbGVmdCA9IHRleHQuc2xpY2UoMCwgcG9zaXRpb24pLnNlYXJjaCgvXFxTKyQvKTtcbiAgICAgIGxldCByaWdodCA9IHRleHQuc2xpY2UocG9zaXRpb24pLnNlYXJjaCgvXFxzLyk7XG5cbiAgICAgIC8vIFRoZSBsYXN0IHdvcmQgaW4gdGhlIHN0cmluZyBpcyBhIHNwZWNpYWwgY2FzZS5cbiAgICAgIGlmIChyaWdodCA8IDApIHtcbiAgICAgICAgcmlnaHQgPSB0ZXh0Lmxlbmd0aDtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHJpZ2h0ICs9IHBvc2l0aW9uO1xuICAgICAgfVxuICAgICAgY29uc3Qgd29yZCA9IHRleHQuc3Vic3RyaW5nKGxlZnQsIHJpZ2h0KTtcbiAgICAgIHJldHVybiBuZXcgVGV4dFJhbmdlKGxlZnQsIHJpZ2h0LCB3b3JkKTtcbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIG5ldyBUZXh0UmFuZ2UodGV4dC5sZW5ndGgsIHRleHQubGVuZ3RoLCB1bmRlZmluZWQpO1xuICAgIH1cbiAgfVxuXG5cbiAgcHVibGljIHJlcGxhY2VXb3JkKHRleHQ6IHN0cmluZywgcG9zaXRpb246IG51bWJlciwgcmVwbGFjZW1lbnQ6IHN0cmluZyk6IFJlcGxhY2VtZW50UmVzdWx0IHtcblxuICAgIGNvbnN0IGN1cnJlbnQgPSB0aGlzLmZpbmRXb3JkKHRleHQsIHBvc2l0aW9uKTtcblxuICAgIGNvbnN0IGJlZm9yZVBvcyA9IGN1cnJlbnQuc3RhcnQ7XG4gICAgY29uc3QgYmVmb3JlID0gdGV4dC5zdWJzdHJpbmcoMCwgYmVmb3JlUG9zKTtcbiAgICBjb25zdCBhZnRlciA9IHRleHQuc3Vic3RyaW5nKGN1cnJlbnQuZW5kLCB0ZXh0Lmxlbmd0aCk7XG5cbiAgICBsZXQgbmV3VGV4dCA9ICcnO1xuICAgIGlmIChiZWZvcmUpIHtcbiAgICAgIG5ld1RleHQgKz0gYmVmb3JlLnRyaW0oKTtcbiAgICB9XG5cbiAgICBpZihyZXBsYWNlbWVudCl7XG4gICAgICBpZiAobmV3VGV4dCkge1xuICAgICAgICBuZXdUZXh0ICs9ICcgJztcbiAgICAgIH1cbiAgICAgIG5ld1RleHQgKz0gcmVwbGFjZW1lbnQ7XG4gICAgfVxuXG4gICAgaWYoYWZ0ZXIpe1xuICAgICAgaWYgKG5ld1RleHQpIHtcbiAgICAgICAgbmV3VGV4dCArPSAnICc7XG4gICAgICB9XG4gICAgICBuZXdUZXh0ICs9IGFmdGVyLnRyaW0oKTtcbiAgICB9XG5cbiAgICByZXR1cm4gbmV3IFJlcGxhY2VtZW50UmVzdWx0KFxuICAgICAgbmV3VGV4dCxcbiAgICAgIG5ldyBUZXh0UmFuZ2UoXG4gICAgICAgIGJlZm9yZVBvcyxcbiAgICAgICAgYmVmb3JlUG9zICsgcmVwbGFjZW1lbnQubGVuZ3RoLCByZXBsYWNlbWVudFxuICAgICAgKVxuICAgICk7XG4gIH1cbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export * from './autocomplete/elder-autocomplete.module';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvaW5wdXQvcHVibGljX2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxjQUFjLDBDQUEwQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiXG5leHBvcnQgKiBmcm9tICcuL2F1dG9jb21wbGV0ZS9lbGRlci1hdXRvY29tcGxldGUubW9kdWxlJztcblxuIl19
@@ -1,30 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { ElderLabelInputComponent } from './labels-input/labels-input.component';
4
- import { MatAutocompleteModule } from '@angular/material/autocomplete';
5
- import { MatChipsModule } from '@angular/material/chips';
6
- import { MatIconModule } from '@angular/material/icon';
7
- import { MatInputModule } from '@angular/material/input';
8
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
9
- import { TranslateModule } from '@ngx-translate/core';
10
- import * as i0 from "@angular/core";
11
- export { ElderLabelInputComponent } from './labels-input/labels-input.component';
12
- export class ElderLabelsModule {
13
- }
14
- ElderLabelsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderLabelsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
15
- ElderLabelsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.4", ngImport: i0, type: ElderLabelsModule, declarations: [ElderLabelInputComponent], imports: [CommonModule, FormsModule, ReactiveFormsModule,
16
- MatIconModule, MatInputModule, MatChipsModule, MatAutocompleteModule, TranslateModule], exports: [ElderLabelInputComponent] });
17
- ElderLabelsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderLabelsModule, imports: [CommonModule, FormsModule, ReactiveFormsModule,
18
- MatIconModule, MatInputModule, MatChipsModule, MatAutocompleteModule, TranslateModule] });
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderLabelsModule, decorators: [{
20
- type: NgModule,
21
- args: [{
22
- imports: [
23
- CommonModule, FormsModule, ReactiveFormsModule,
24
- MatIconModule, MatInputModule, MatChipsModule, MatAutocompleteModule, TranslateModule,
25
- ],
26
- declarations: [ElderLabelInputComponent],
27
- exports: [ElderLabelInputComponent]
28
- }]
29
- }] });
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItbGFiZWxzLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvbGFiZWxzL2VsZGVyLWxhYmVscy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sdUNBQXVDLENBQUM7QUFDL0UsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFDdkUsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDekQsT0FBTyxFQUFDLFdBQVcsRUFBRSxtQkFBbUIsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBQ2hFLE9BQU8sRUFBQyxlQUFlLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQzs7QUFFcEQsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sdUNBQXVDLENBQUM7QUFXL0UsTUFBTSxPQUFPLGlCQUFpQjs7OEdBQWpCLGlCQUFpQjsrR0FBakIsaUJBQWlCLGlCQUhYLHdCQUF3QixhQUpuQyxZQUFZLEVBQUUsV0FBVyxFQUFFLG1CQUFtQjtRQUU5QyxhQUFhLEVBQUUsY0FBYyxFQUFFLGNBQWMsRUFBRSxxQkFBcUIsRUFBRSxlQUFlLGFBRy9FLHdCQUF3QjsrR0FFekIsaUJBQWlCLFlBUHRCLFlBQVksRUFBRSxXQUFXLEVBQUUsbUJBQW1CO1FBRTlDLGFBQWEsRUFBRSxjQUFjLEVBQUUsY0FBYyxFQUFFLHFCQUFxQixFQUFFLGVBQWU7MkZBS2hGLGlCQUFpQjtrQkFUN0IsUUFBUTttQkFBQztvQkFDTixPQUFPLEVBQUU7d0JBQ0wsWUFBWSxFQUFFLFdBQVcsRUFBRSxtQkFBbUI7d0JBRTlDLGFBQWEsRUFBRSxjQUFjLEVBQUUsY0FBYyxFQUFFLHFCQUFxQixFQUFFLGVBQWU7cUJBQ3hGO29CQUNELFlBQVksRUFBRSxDQUFDLHdCQUF3QixDQUFDO29CQUN4QyxPQUFPLEVBQUUsQ0FBQyx3QkFBd0IsQ0FBQztpQkFDdEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7RWxkZXJMYWJlbElucHV0Q29tcG9uZW50fSBmcm9tICcuL2xhYmVscy1pbnB1dC9sYWJlbHMtaW5wdXQuY29tcG9uZW50JztcbmltcG9ydCB7IE1hdEF1dG9jb21wbGV0ZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2F1dG9jb21wbGV0ZSc7XG5pbXBvcnQgeyBNYXRDaGlwc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NoaXBzJztcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcbmltcG9ydCB7IE1hdElucHV0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaW5wdXQnO1xuaW1wb3J0IHtGb3Jtc01vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHtUcmFuc2xhdGVNb2R1bGV9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuXG5leHBvcnQge0VsZGVyTGFiZWxJbnB1dENvbXBvbmVudH0gZnJvbSAnLi9sYWJlbHMtaW5wdXQvbGFiZWxzLWlucHV0LmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsIEZvcm1zTW9kdWxlLCBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuXG4gICAgICAgIE1hdEljb25Nb2R1bGUsIE1hdElucHV0TW9kdWxlLCBNYXRDaGlwc01vZHVsZSwgTWF0QXV0b2NvbXBsZXRlTW9kdWxlLCBUcmFuc2xhdGVNb2R1bGUsXG4gICAgXSxcbiAgICBkZWNsYXJhdGlvbnM6IFtFbGRlckxhYmVsSW5wdXRDb21wb25lbnRdLFxuICAgIGV4cG9ydHM6IFtFbGRlckxhYmVsSW5wdXRDb21wb25lbnRdXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyTGFiZWxzTW9kdWxlIHsgfVxuIl19
@@ -1,230 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input, Output, ViewChild } from '@angular/core';
2
- import { UntypedFormControl } from '@angular/forms';
3
- import { LoggerFactory } from '@elderbyte/ts-logger';
4
- import { EMPTY } from 'rxjs';
5
- import { debounceTime, map, startWith, switchMap } from 'rxjs/operators';
6
- import { FormFieldBaseComponent } from '../../../common/forms/form-field-base.component';
7
- import { buildFormIntegrationProviders } from '../../../common/forms/template-composite-control';
8
- import * as i0 from "@angular/core";
9
- import * as i1 from "@angular/common";
10
- import * as i2 from "@angular/forms";
11
- import * as i3 from "@angular/material/icon";
12
- import * as i4 from "@angular/material/form-field";
13
- import * as i5 from "@angular/material/input";
14
- import * as i6 from "@angular/material/chips";
15
- import * as i7 from "@angular/material/autocomplete";
16
- import * as i8 from "@angular/material/core";
17
- import * as i9 from "@ngx-translate/core";
18
- export class ElderLabelInputComponent extends FormFieldBaseComponent {
19
- /***************************************************************************
20
- * *
21
- * Constructor *
22
- * *
23
- **************************************************************************/
24
- constructor() {
25
- super();
26
- /***************************************************************************
27
- * *
28
- * Fields *
29
- * *
30
- **************************************************************************/
31
- this.logger = LoggerFactory.getLogger(this.constructor.name);
32
- this._allowCreate = true;
33
- this.selectable = true;
34
- this.removable = true;
35
- this.labelInputControl = new UntypedFormControl();
36
- this.availableSuggestions$ = EMPTY;
37
- this.floatLabel = 'never';
38
- }
39
- /***************************************************************************
40
- * *
41
- * Properties *
42
- * *
43
- **************************************************************************/
44
- get currentLabels$() {
45
- return this.value$;
46
- }
47
- set labels(value) {
48
- this.value = value;
49
- }
50
- set suggestionLoader(provider) {
51
- if (provider) {
52
- this.availableSuggestions$ = this.labelInputControl.valueChanges.pipe(startWith(null), debounceTime(150), switchMap((value) => provider.loadSuggestions(value)), map(labels => this.filterNotPresent(labels)));
53
- }
54
- else {
55
- this.logger.debug('Cant provide suggestions since no suggestion provider was registered!');
56
- this.availableSuggestions$ = EMPTY;
57
- }
58
- }
59
- set allowNew(value) {
60
- this._allowCreate = value;
61
- }
62
- get labelsChanged() {
63
- return this.valueChange;
64
- }
65
- /**
66
- * A function to compare the option values with the selected values. The first argument
67
- * is a value from an option. The second is a value from the selection. A boolean
68
- * should be returned.
69
- */
70
- set compareWith(fn) {
71
- if (typeof fn !== 'function') {
72
- throw new Error('compareWith must be a function!');
73
- }
74
- this._compareWith = fn;
75
- }
76
- /**
77
- * A function which returns the color of a given label object.
78
- */
79
- set colorResolver(fn) {
80
- if (typeof fn !== 'function') {
81
- throw new Error('colorResolver must be a function!');
82
- }
83
- this._colorResolver = fn;
84
- }
85
- /**
86
- * A function which returns the display name of a given label object.
87
- */
88
- set nameResolver(fn) {
89
- if (typeof fn !== 'function') {
90
- throw new Error('nameResolver must be a function!');
91
- }
92
- this._nameResolver = fn;
93
- }
94
- /**
95
- * A function which returns one or more labels for a given raw string
96
- */
97
- set labelBuilder(fn) {
98
- if (typeof fn !== 'function') {
99
- throw new Error('labelBuilder must be a function!');
100
- }
101
- this._labelBuilder = fn;
102
- }
103
- /***************************************************************************
104
- * *
105
- * Life-Cycle Event *
106
- * *
107
- **************************************************************************/
108
- ngOnInit() { }
109
- /***************************************************************************
110
- * *
111
- * Public API *
112
- * *
113
- **************************************************************************/
114
- labelSelected(event) {
115
- console.log('labelSelected:', event);
116
- const selection = event.option.value;
117
- if (selection) {
118
- this.resetInput();
119
- this.addLabel(selection);
120
- }
121
- }
122
- createNewLabels(event) {
123
- if (this._allowCreate) {
124
- const input = event.input;
125
- const value = event.value;
126
- if (value) {
127
- const myLabels = this.buildLabels(value);
128
- this.addLabels(myLabels);
129
- }
130
- if (input) {
131
- // input.value = ''; // reset input
132
- this.resetInput();
133
- }
134
- }
135
- }
136
- addLabels(labels) {
137
- const current = this.value ? this.value : [];
138
- this.replaceWith([...current, ...labels]);
139
- }
140
- addLabel(label) {
141
- this.addLabels([label]);
142
- }
143
- removeLabel(toRemove) {
144
- const remaining = this.value
145
- .filter(l => !this.areEqual(l, toRemove));
146
- this.replaceWith(remaining);
147
- }
148
- replaceWith(labels) {
149
- this.updateValue(labels);
150
- }
151
- labelName(label) {
152
- if (label) {
153
- return this._nameResolver ? this._nameResolver(label) : label.toString();
154
- }
155
- else {
156
- return '';
157
- }
158
- }
159
- labelColor(label) {
160
- return this._colorResolver ? this._colorResolver(label) : undefined;
161
- }
162
- /***************************************************************************
163
- * *
164
- * Private methods *
165
- * *
166
- **************************************************************************/
167
- resetInput() {
168
- this.inputControl.nativeElement.value = '';
169
- }
170
- buildLabels(rawName) {
171
- if (this._labelBuilder) {
172
- return this._labelBuilder(rawName);
173
- }
174
- else {
175
- return [rawName];
176
- }
177
- }
178
- filterNotPresent(suggestions) {
179
- if (suggestions) {
180
- if (this.value) {
181
- return suggestions
182
- .filter(l => l)
183
- .filter(l => !this.value.some(el => this.areEqual(el, l)));
184
- }
185
- else {
186
- return suggestions;
187
- }
188
- }
189
- else {
190
- return [];
191
- }
192
- }
193
- areEqual(a, b) {
194
- return this._compareWith ? this._compareWith(a, b) : a === b;
195
- }
196
- }
197
- ElderLabelInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderLabelInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
198
- ElderLabelInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: ElderLabelInputComponent, selector: "elder-label-input, ebs-label-input", inputs: { labels: "labels", suggestionLoader: "suggestionLoader", allowNew: "allowNew", compareWith: "compareWith", colorResolver: "colorResolver", nameResolver: "nameResolver", labelBuilder: "labelBuilder" }, outputs: { labelsChanged: "labelsChanged" }, providers: buildFormIntegrationProviders(ElderLabelInputComponent), viewQueries: [{ propertyName: "inputControl", first: true, predicate: ["labelInput"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<mat-form-field\n [floatLabel]=\"floatLabel\"\n class=\"full-width\"\n [appearance]=\"appearance\"\n [color]=\"color\"\n>\n <mat-label *ngIf=\"label\">{{label | translate}}</mat-label>\n\n <mat-chip-list #chips>\n <mat-chip *ngFor=\"let label of currentLabels$ | async\"\n class=\"noselect\"\n [color]=\"labelColor(label)\"\n [selectable]=\"selectable\"\n [removable]=\"removable\"\n (removed)=\"removeLabel(label)\"\n >\n {{labelName(label)}}\n <mat-icon matChipRemove *ngIf=\"removable\">cancel</mat-icon>\n </mat-chip>\n\n <input matInput type=\"text\"\n [matChipInputFor]=\"chips\"\n [matAutocomplete]=\"labelAutoComplete\"\n [formControl]=\"labelInputControl\"\n (matChipInputTokenEnd)=\"createNewLabels($event)\"\n [name]=\"name\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n autocomplete=\"off\"\n #labelInput>\n </mat-chip-list>\n\n <mat-autocomplete\n #labelAutoComplete=\"matAutocomplete\"\n (optionSelected)=\"labelSelected($event)\">\n <mat-option *ngFor=\"let suggestion of availableSuggestions$ | async\" [value]=\"suggestion\">\n {{labelName(suggestion)}}\n </mat-option>\n </mat-autocomplete>\n\n</mat-form-field>\n\n", styles: [".full-width{width:100%}\n"], 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.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "directive", type: i5.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: i6.MatChipList, selector: "mat-chip-list", inputs: ["role", "aria-describedby", "errorStateMatcher", "multiple", "compareWith", "value", "required", "placeholder", "disabled", "aria-orientation", "selectable", "tabIndex"], outputs: ["change", "valueChange"], exportAs: ["matChipList"] }, { kind: "directive", type: i6.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["color", "disableRipple", "tabIndex", "role", "selected", "value", "selectable", "disabled", "removable"], outputs: ["selectionChange", "destroyed", "removed"], exportAs: ["matChip"] }, { kind: "directive", type: i6.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i6.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i7.MatAutocomplete, selector: "mat-autocomplete", inputs: ["disableRipple"], exportAs: ["matAutocomplete"] }, { kind: "directive", type: i7.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", exportAs: ["matAutocompleteTrigger"] }, { kind: "component", type: i8.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i9.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
199
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ElderLabelInputComponent, decorators: [{
200
- type: Component,
201
- args: [{ selector: 'elder-label-input, ebs-label-input', providers: buildFormIntegrationProviders(ElderLabelInputComponent), changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-form-field\n [floatLabel]=\"floatLabel\"\n class=\"full-width\"\n [appearance]=\"appearance\"\n [color]=\"color\"\n>\n <mat-label *ngIf=\"label\">{{label | translate}}</mat-label>\n\n <mat-chip-list #chips>\n <mat-chip *ngFor=\"let label of currentLabels$ | async\"\n class=\"noselect\"\n [color]=\"labelColor(label)\"\n [selectable]=\"selectable\"\n [removable]=\"removable\"\n (removed)=\"removeLabel(label)\"\n >\n {{labelName(label)}}\n <mat-icon matChipRemove *ngIf=\"removable\">cancel</mat-icon>\n </mat-chip>\n\n <input matInput type=\"text\"\n [matChipInputFor]=\"chips\"\n [matAutocomplete]=\"labelAutoComplete\"\n [formControl]=\"labelInputControl\"\n (matChipInputTokenEnd)=\"createNewLabels($event)\"\n [name]=\"name\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n autocomplete=\"off\"\n #labelInput>\n </mat-chip-list>\n\n <mat-autocomplete\n #labelAutoComplete=\"matAutocomplete\"\n (optionSelected)=\"labelSelected($event)\">\n <mat-option *ngFor=\"let suggestion of availableSuggestions$ | async\" [value]=\"suggestion\">\n {{labelName(suggestion)}}\n </mat-option>\n </mat-autocomplete>\n\n</mat-form-field>\n\n", styles: [".full-width{width:100%}\n"] }]
202
- }], ctorParameters: function () { return []; }, propDecorators: { inputControl: [{
203
- type: ViewChild,
204
- args: ['labelInput', { static: true }]
205
- }], labels: [{
206
- type: Input,
207
- args: ['labels']
208
- }], suggestionLoader: [{
209
- type: Input,
210
- args: ['suggestionLoader']
211
- }], allowNew: [{
212
- type: Input,
213
- args: ['allowNew']
214
- }], labelsChanged: [{
215
- type: Output,
216
- args: ['labelsChanged']
217
- }], compareWith: [{
218
- type: Input,
219
- args: ['compareWith']
220
- }], colorResolver: [{
221
- type: Input,
222
- args: ['colorResolver']
223
- }], nameResolver: [{
224
- type: Input,
225
- args: ['nameResolver']
226
- }], labelBuilder: [{
227
- type: Input,
228
- args: ['labelBuilder']
229
- }] } });
230
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWxzLWlucHV0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvbGFiZWxzL2xhYmVscy1pbnB1dC9sYWJlbHMtaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9sYWJlbHMvbGFiZWxzLWlucHV0L2xhYmVscy1pbnB1dC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsdUJBQXVCLEVBQUUsU0FBUyxFQUFjLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQy9HLE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBR2xELE9BQU8sRUFBQyxhQUFhLEVBQUMsTUFBTSxzQkFBc0IsQ0FBQztBQUNuRCxPQUFPLEVBQUMsS0FBSyxFQUFhLE1BQU0sTUFBTSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUUsR0FBRyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUV2RSxPQUFPLEVBQUMsc0JBQXNCLEVBQUMsTUFBTSxpREFBaUQsQ0FBQztBQUN2RixPQUFPLEVBQUMsNkJBQTZCLEVBQUMsTUFBTSxrREFBa0QsQ0FBQzs7Ozs7Ozs7Ozs7QUFVL0YsTUFBTSxPQUFPLHdCQUE0QixTQUFRLHNCQUEyQjtJQTBCMUU7Ozs7Z0ZBSTRFO0lBRTVFO1FBRUUsS0FBSyxFQUFFLENBQUM7UUFoQ1Y7Ozs7b0ZBSTRFO1FBRTNELFdBQU0sR0FBRyxhQUFhLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUM7UUFPakUsaUJBQVksR0FBRyxJQUFJLENBQUM7UUFFckIsZUFBVSxHQUFHLElBQUksQ0FBQztRQUNsQixjQUFTLEdBQUcsSUFBSSxDQUFDO1FBRVIsc0JBQWlCLEdBQXVCLElBQUksa0JBQWtCLEVBQUUsQ0FBQztRQUMxRSwwQkFBcUIsR0FBc0IsS0FBSyxDQUFDO1FBY3RELElBQUksQ0FBQyxVQUFVLEdBQUcsT0FBTyxDQUFDO0lBQzVCLENBQUM7SUFFRDs7OztnRkFJNEU7SUFFNUUsSUFBVyxjQUFjO1FBQ3ZCLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFDVyxNQUFNLENBQUMsS0FBVTtRQUMxQixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFDVyxnQkFBZ0IsQ0FBQyxRQUFrQztRQUM1RCxJQUFJLFFBQVEsRUFBRTtZQUNaLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsWUFBWSxDQUFDLElBQUksQ0FDbkUsU0FBUyxDQUFTLElBQUksQ0FBQyxFQUN2QixZQUFZLENBQUMsR0FBRyxDQUFDLEVBQ2pCLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsUUFBUSxDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxFQUNyRCxHQUFHLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FDN0MsQ0FBQztTQUNIO2FBQU07WUFDTCxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyx1RUFBdUUsQ0FBQyxDQUFDO1lBQzNGLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxLQUFLLENBQUM7U0FDcEM7SUFDSCxDQUFDO0lBRUQsSUFDVyxRQUFRLENBQUMsS0FBYztRQUNoQyxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQztJQUM1QixDQUFDO0lBRUQsSUFDVyxhQUFhO1FBQ3RCLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQztJQUMxQixDQUFDO0lBRUQ7Ozs7T0FJRztJQUNILElBQ1csV0FBVyxDQUFDLEVBQWlDO1FBQ3RELElBQUksT0FBTyxFQUFFLEtBQUssVUFBVSxFQUFFO1lBQzVCLE1BQU0sSUFBSSxLQUFLLENBQUMsaUNBQWlDLENBQUMsQ0FBQztTQUNwRDtRQUNELElBQUksQ0FBQyxZQUFZLEdBQUcsRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFHRDs7T0FFRztJQUNILElBQ1csYUFBYSxDQUFDLEVBQTZCO1FBQ3BELElBQUksT0FBTyxFQUFFLEtBQUssVUFBVSxFQUFFO1lBQzVCLE1BQU0sSUFBSSxLQUFLLENBQUMsbUNBQW1DLENBQUMsQ0FBQztTQUN0RDtRQUNELElBQUksQ0FBQyxjQUFjLEdBQUcsRUFBRSxDQUFDO0lBQzNCLENBQUM7SUFFRDs7T0FFRztJQUNILElBQ1csWUFBWSxDQUFDLEVBQXVCO1FBQzdDLElBQUksT0FBTyxFQUFFLEtBQUssVUFBVSxFQUFFO1lBQzVCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDtRQUNELElBQUksQ0FBQyxhQUFhLEdBQUcsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFFRDs7T0FFRztJQUNILElBQ1csWUFBWSxDQUFDLEVBQStCO1FBQ3JELElBQUksT0FBTyxFQUFFLEtBQUssVUFBVSxFQUFFO1lBQzVCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDtRQUNELElBQUksQ0FBQyxhQUFhLEdBQUcsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFFRDs7OztnRkFJNEU7SUFFckUsUUFBUSxLQUFXLENBQUM7SUFFM0I7Ozs7Z0ZBSTRFO0lBRXJFLGFBQWEsQ0FBQyxLQUFtQztRQUN0RCxPQUFPLENBQUMsR0FBRyxDQUFDLGdCQUFnQixFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQ3JDLE1BQU0sU0FBUyxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDO1FBQ3JDLElBQUksU0FBUyxFQUFFO1lBQ2IsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBQ2xCLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUM7U0FDMUI7SUFDSCxDQUFDO0lBRU0sZUFBZSxDQUFDLEtBQXdCO1FBQzdDLElBQUksSUFBSSxDQUFDLFlBQVksRUFBRTtZQUVyQixNQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsS0FBSyxDQUFDO1lBQzFCLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUM7WUFFMUIsSUFBSSxLQUFLLEVBQUU7Z0JBQ1QsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUMsQ0FBQztnQkFDekMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUMxQjtZQUVELElBQUksS0FBSyxFQUFFO2dCQUNULG1DQUFtQztnQkFDbkMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO2FBQ25CO1NBQ0Y7SUFDSCxDQUFDO0lBRU0sU0FBUyxDQUFDLE1BQVc7UUFDMUIsTUFBTSxPQUFPLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQzdDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQyxHQUFHLE9BQU8sRUFBRSxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVNLFFBQVEsQ0FBQyxLQUFVO1FBQ3hCLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQzFCLENBQUM7SUFFTSxXQUFXLENBQUMsUUFBVztRQUU1QixNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsS0FBSzthQUN6QixNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxFQUFFLFFBQVEsQ0FBQyxDQUFDLENBQUM7UUFFNUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUM5QixDQUFDO0lBRU0sV0FBVyxDQUFDLE1BQVc7UUFDNUIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBRU0sU0FBUyxDQUFDLEtBQVE7UUFDdkIsSUFBSSxLQUFLLEVBQUU7WUFDVCxPQUFPLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFFLElBQUksQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztTQUMzRTthQUFNO1lBQ0wsT0FBTyxFQUFFLENBQUM7U0FDWDtJQUNILENBQUM7SUFFTSxVQUFVLENBQUMsS0FBUTtRQUN4QixPQUFPLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQyxDQUFFLElBQUksQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztJQUN2RSxDQUFDO0lBRUQ7Ozs7Z0ZBSTRFO0lBRXBFLFVBQVU7UUFDaEIsSUFBSSxDQUFDLFlBQVksQ0FBQyxhQUFhLENBQUMsS0FBSyxHQUFHLEVBQUUsQ0FBQztJQUM3QyxDQUFDO0lBRU8sV0FBVyxDQUFDLE9BQWU7UUFDakMsSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQ3RCLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQyxPQUFPLENBQUMsQ0FBQztTQUNwQzthQUFNO1lBQ0wsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1NBQ2xCO0lBQ0gsQ0FBQztJQUVPLGdCQUFnQixDQUFDLFdBQWtCO1FBQ3pDLElBQUksV0FBVyxFQUFFO1lBRWYsSUFBSSxJQUFJLENBQUMsS0FBSyxFQUFFO2dCQUNkLE9BQU8sV0FBVztxQkFDZixNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7cUJBQ2QsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQzthQUM5RDtpQkFBTTtnQkFDTCxPQUFPLFdBQVcsQ0FBQzthQUNwQjtTQUNGO2FBQU07WUFDTCxPQUFPLEVBQUUsQ0FBQztTQUNYO0lBQ0gsQ0FBQztJQUVPLFFBQVEsQ0FBQyxDQUFNLEVBQUUsQ0FBTTtRQUM3QixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQy9ELENBQUM7O3FIQTFPVSx3QkFBd0I7eUdBQXhCLHdCQUF3Qiw0VEFIeEIsNkJBQTZCLENBQUMsd0JBQXdCLENBQUMsMktDaEJwRSxxNUNBNENBOzJGRHpCYSx3QkFBd0I7a0JBUHBDLFNBQVM7K0JBQ0Usb0NBQW9DLGFBR25DLDZCQUE2QiwwQkFBMEIsbUJBQ2pELHVCQUF1QixDQUFDLE1BQU07MEVBMEJ2QyxZQUFZO3NCQURuQixTQUFTO3VCQUFDLFlBQVksRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUU7Z0JBMEI5QixNQUFNO3NCQURoQixLQUFLO3VCQUFDLFFBQVE7Z0JBTUosZ0JBQWdCO3NCQUQxQixLQUFLO3VCQUFDLGtCQUFrQjtnQkFnQmQsUUFBUTtzQkFEbEIsS0FBSzt1QkFBQyxVQUFVO2dCQU1OLGFBQWE7c0JBRHZCLE1BQU07dUJBQUMsZUFBZTtnQkFXWixXQUFXO3NCQURyQixLQUFLO3VCQUFDLGFBQWE7Z0JBYVQsYUFBYTtzQkFEdkIsS0FBSzt1QkFBQyxlQUFlO2dCQVlYLFlBQVk7c0JBRHRCLEtBQUs7dUJBQUMsY0FBYztnQkFZVixZQUFZO3NCQUR0QixLQUFLO3VCQUFDLGNBQWMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEVsZW1lbnRSZWYsIElucHV0LCBPbkluaXQsIE91dHB1dCwgVmlld0NoaWxkfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VW50eXBlZEZvcm1Db250cm9sfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQge01hdEF1dG9jb21wbGV0ZVNlbGVjdGVkRXZlbnR9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2F1dG9jb21wbGV0ZSc7XG5pbXBvcnQge01hdENoaXBJbnB1dEV2ZW50fSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jaGlwcyc7XG5pbXBvcnQge0xvZ2dlckZhY3Rvcnl9IGZyb20gJ0BlbGRlcmJ5dGUvdHMtbG9nZ2VyJztcbmltcG9ydCB7RU1QVFksIE9ic2VydmFibGV9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHtkZWJvdW5jZVRpbWUsIG1hcCwgc3RhcnRXaXRoLCBzd2l0Y2hNYXB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcbmltcG9ydCB7SVN1Z2dlc3Rpb25Qcm92aWRlcn0gZnJvbSAnLi4vLi4vLi4vY29tbW9uL3N1Z2dlc3Rpb24tcHJvdmlkZXInO1xuaW1wb3J0IHtGb3JtRmllbGRCYXNlQ29tcG9uZW50fSBmcm9tICcuLi8uLi8uLi9jb21tb24vZm9ybXMvZm9ybS1maWVsZC1iYXNlLmNvbXBvbmVudCc7XG5pbXBvcnQge2J1aWxkRm9ybUludGVncmF0aW9uUHJvdmlkZXJzfSBmcm9tICcuLi8uLi8uLi9jb21tb24vZm9ybXMvdGVtcGxhdGUtY29tcG9zaXRlLWNvbnRyb2wnO1xuaW1wb3J0IHtUaGVtZVBhbGV0dGV9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlbGRlci1sYWJlbC1pbnB1dCwgZWJzLWxhYmVsLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2xhYmVscy1pbnB1dC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2xhYmVscy1pbnB1dC5jb21wb25lbnQuc2NzcyddLFxuICBwcm92aWRlcnM6IGJ1aWxkRm9ybUludGVncmF0aW9uUHJvdmlkZXJzKEVsZGVyTGFiZWxJbnB1dENvbXBvbmVudCksXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyTGFiZWxJbnB1dENvbXBvbmVudDxUPiBleHRlbmRzIEZvcm1GaWVsZEJhc2VDb21wb25lbnQ8VFtdPiBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIEZpZWxkcyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHJpdmF0ZSByZWFkb25seSBsb2dnZXIgPSBMb2dnZXJGYWN0b3J5LmdldExvZ2dlcih0aGlzLmNvbnN0cnVjdG9yLm5hbWUpO1xuXG4gIHByaXZhdGUgX2NvbXBhcmVXaXRoOiAobzE6IGFueSwgbzI6IGFueSkgPT4gYm9vbGVhbjtcbiAgcHJpdmF0ZSBfbmFtZVJlc29sdmVyOiAobzE6IGFueSkgPT4gc3RyaW5nO1xuICBwcml2YXRlIF9jb2xvclJlc29sdmVyOiAobzE6IGFueSkgPT4gVGhlbWVQYWxldHRlO1xuICBwcml2YXRlIF9sYWJlbEJ1aWxkZXI6IChyYXdpbnB1dDogc3RyaW5nKSA9PiBhbnlbXTtcblxuICBwcml2YXRlIF9hbGxvd0NyZWF0ZSA9IHRydWU7XG5cbiAgcHVibGljIHNlbGVjdGFibGUgPSB0cnVlO1xuICBwdWJsaWMgcmVtb3ZhYmxlID0gdHJ1ZTtcblxuICBwdWJsaWMgcmVhZG9ubHkgbGFiZWxJbnB1dENvbnRyb2w6IFVudHlwZWRGb3JtQ29udHJvbCA9IG5ldyBVbnR5cGVkRm9ybUNvbnRyb2woKTtcbiAgcHVibGljIGF2YWlsYWJsZVN1Z2dlc3Rpb25zJDogT2JzZXJ2YWJsZTxhbnlbXT4gPSBFTVBUWTtcblxuICBAVmlld0NoaWxkKCdsYWJlbElucHV0JywgeyBzdGF0aWM6IHRydWUgfSlcbiAgcHJpdmF0ZSBpbnB1dENvbnRyb2w6IEVsZW1lbnRSZWY8SFRNTElucHV0RWxlbWVudD47XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIENvbnN0cnVjdG9yICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgY29uc3RydWN0b3IoXG4gICkge1xuICAgIHN1cGVyKCk7XG4gICAgdGhpcy5mbG9hdExhYmVsID0gJ25ldmVyJztcbiAgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBQcm9wZXJ0aWVzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIHB1YmxpYyBnZXQgY3VycmVudExhYmVscyQoKTogT2JzZXJ2YWJsZTxUW10+IHtcbiAgICByZXR1cm4gdGhpcy52YWx1ZSQ7XG4gIH1cblxuICBASW5wdXQoJ2xhYmVscycpXG4gIHB1YmxpYyBzZXQgbGFiZWxzKHZhbHVlOiBUW10pIHtcbiAgICB0aGlzLnZhbHVlID0gdmFsdWU7XG4gIH1cblxuICBASW5wdXQoJ3N1Z2dlc3Rpb25Mb2FkZXInKVxuICBwdWJsaWMgc2V0IHN1Z2dlc3Rpb25Mb2FkZXIocHJvdmlkZXI6IElTdWdnZXN0aW9uUHJvdmlkZXI8YW55Pikge1xuICAgIGlmIChwcm92aWRlcikge1xuICAgICAgdGhpcy5hdmFpbGFibGVTdWdnZXN0aW9ucyQgPSB0aGlzLmxhYmVsSW5wdXRDb250cm9sLnZhbHVlQ2hhbmdlcy5waXBlKFxuICAgICAgICBzdGFydFdpdGgoPHN0cmluZz5udWxsKSxcbiAgICAgICAgZGVib3VuY2VUaW1lKDE1MCksXG4gICAgICAgIHN3aXRjaE1hcCgodmFsdWUpID0+IHByb3ZpZGVyLmxvYWRTdWdnZXN0aW9ucyh2YWx1ZSkpLFxuICAgICAgICBtYXAobGFiZWxzID0+IHRoaXMuZmlsdGVyTm90UHJlc2VudChsYWJlbHMpKVxuICAgICAgKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5sb2dnZXIuZGVidWcoJ0NhbnQgcHJvdmlkZSBzdWdnZXN0aW9ucyBzaW5jZSBubyBzdWdnZXN0aW9uIHByb3ZpZGVyIHdhcyByZWdpc3RlcmVkIScpO1xuICAgICAgdGhpcy5hdmFpbGFibGVTdWdnZXN0aW9ucyQgPSBFTVBUWTtcbiAgICB9XG4gIH1cblxuICBASW5wdXQoJ2FsbG93TmV3JylcbiAgcHVibGljIHNldCBhbGxvd05ldyh2YWx1ZTogYm9vbGVhbikge1xuICAgIHRoaXMuX2FsbG93Q3JlYXRlID0gdmFsdWU7XG4gIH1cblxuICBAT3V0cHV0KCdsYWJlbHNDaGFuZ2VkJylcbiAgcHVibGljIGdldCBsYWJlbHNDaGFuZ2VkKCk6IE9ic2VydmFibGU8YW55W10+IHtcbiAgICByZXR1cm4gdGhpcy52YWx1ZUNoYW5nZTtcbiAgfVxuXG4gIC8qKlxuICAgKiBBIGZ1bmN0aW9uIHRvIGNvbXBhcmUgdGhlIG9wdGlvbiB2YWx1ZXMgd2l0aCB0aGUgc2VsZWN0ZWQgdmFsdWVzLiBUaGUgZmlyc3QgYXJndW1lbnRcbiAgICogaXMgYSB2YWx1ZSBmcm9tIGFuIG9wdGlvbi4gVGhlIHNlY29uZCBpcyBhIHZhbHVlIGZyb20gdGhlIHNlbGVjdGlvbi4gQSBib29sZWFuXG4gICAqIHNob3VsZCBiZSByZXR1cm5lZC5cbiAgICovXG4gIEBJbnB1dCgnY29tcGFyZVdpdGgnKVxuICBwdWJsaWMgc2V0IGNvbXBhcmVXaXRoKGZuOiAobzE6IGFueSwgbzI6IGFueSkgPT4gYm9vbGVhbikge1xuICAgIGlmICh0eXBlb2YgZm4gIT09ICdmdW5jdGlvbicpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignY29tcGFyZVdpdGggbXVzdCBiZSBhIGZ1bmN0aW9uIScpO1xuICAgIH1cbiAgICB0aGlzLl9jb21wYXJlV2l0aCA9IGZuO1xuICB9XG5cblxuICAvKipcbiAgICogQSBmdW5jdGlvbiB3aGljaCByZXR1cm5zIHRoZSBjb2xvciBvZiBhIGdpdmVuIGxhYmVsIG9iamVjdC5cbiAgICovXG4gIEBJbnB1dCgnY29sb3JSZXNvbHZlcicpXG4gIHB1YmxpYyBzZXQgY29sb3JSZXNvbHZlcihmbjogKG8xOiBhbnkpID0+IFRoZW1lUGFsZXR0ZSkge1xuICAgIGlmICh0eXBlb2YgZm4gIT09ICdmdW5jdGlvbicpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignY29sb3JSZXNvbHZlciBtdXN0IGJlIGEgZnVuY3Rpb24hJyk7XG4gICAgfVxuICAgIHRoaXMuX2NvbG9yUmVzb2x2ZXIgPSBmbjtcbiAgfVxuXG4gIC8qKlxuICAgKiBBIGZ1bmN0aW9uIHdoaWNoIHJldHVybnMgdGhlIGRpc3BsYXkgbmFtZSBvZiBhIGdpdmVuIGxhYmVsIG9iamVjdC5cbiAgICovXG4gIEBJbnB1dCgnbmFtZVJlc29sdmVyJylcbiAgcHVibGljIHNldCBuYW1lUmVzb2x2ZXIoZm46IChvMTogYW55KSA9PiBzdHJpbmcpIHtcbiAgICBpZiAodHlwZW9mIGZuICE9PSAnZnVuY3Rpb24nKSB7XG4gICAgICB0aHJvdyBuZXcgRXJyb3IoJ25hbWVSZXNvbHZlciBtdXN0IGJlIGEgZnVuY3Rpb24hJyk7XG4gICAgfVxuICAgIHRoaXMuX25hbWVSZXNvbHZlciA9IGZuO1xuICB9XG5cbiAgLyoqXG4gICAqIEEgZnVuY3Rpb24gd2hpY2ggcmV0dXJucyBvbmUgb3IgbW9yZSBsYWJlbHMgZm9yIGEgZ2l2ZW4gcmF3IHN0cmluZ1xuICAgKi9cbiAgQElucHV0KCdsYWJlbEJ1aWxkZXInKVxuICBwdWJsaWMgc2V0IGxhYmVsQnVpbGRlcihmbjogKHJhd2lucHV0OiBzdHJpbmcpID0+IGFueVtdKSB7XG4gICAgaWYgKHR5cGVvZiBmbiAhPT0gJ2Z1bmN0aW9uJykge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdsYWJlbEJ1aWxkZXIgbXVzdCBiZSBhIGZ1bmN0aW9uIScpO1xuICAgIH1cbiAgICB0aGlzLl9sYWJlbEJ1aWxkZXIgPSBmbjtcbiAgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBMaWZlLUN5Y2xlIEV2ZW50ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHsgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBQdWJsaWMgQVBJICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIHB1YmxpYyBsYWJlbFNlbGVjdGVkKGV2ZW50OiBNYXRBdXRvY29tcGxldGVTZWxlY3RlZEV2ZW50KSB7XG4gICAgY29uc29sZS5sb2coJ2xhYmVsU2VsZWN0ZWQ6JywgZXZlbnQpO1xuICAgIGNvbnN0IHNlbGVjdGlvbiA9IGV2ZW50Lm9wdGlvbi52YWx1ZTtcbiAgICBpZiAoc2VsZWN0aW9uKSB7XG4gICAgICB0aGlzLnJlc2V0SW5wdXQoKTtcbiAgICAgIHRoaXMuYWRkTGFiZWwoc2VsZWN0aW9uKTtcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgY3JlYXRlTmV3TGFiZWxzKGV2ZW50OiBNYXRDaGlwSW5wdXRFdmVudCk6IHZvaWQge1xuICAgIGlmICh0aGlzLl9hbGxvd0NyZWF0ZSkge1xuXG4gICAgICBjb25zdCBpbnB1dCA9IGV2ZW50LmlucHV0O1xuICAgICAgY29uc3QgdmFsdWUgPSBldmVudC52YWx1ZTtcblxuICAgICAgaWYgKHZhbHVlKSB7XG4gICAgICAgIGNvbnN0IG15TGFiZWxzID0gdGhpcy5idWlsZExhYmVscyh2YWx1ZSk7XG4gICAgICAgIHRoaXMuYWRkTGFiZWxzKG15TGFiZWxzKTtcbiAgICAgIH1cblxuICAgICAgaWYgKGlucHV0KSB7XG4gICAgICAgIC8vIGlucHV0LnZhbHVlID0gJyc7IC8vIHJlc2V0IGlucHV0XG4gICAgICAgIHRoaXMucmVzZXRJbnB1dCgpO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBhZGRMYWJlbHMobGFiZWxzOiBUW10pIHtcbiAgICBjb25zdCBjdXJyZW50ID0gdGhpcy52YWx1ZSA/IHRoaXMudmFsdWUgOiBbXTtcbiAgICB0aGlzLnJlcGxhY2VXaXRoKFsuLi5jdXJyZW50LCAuLi5sYWJlbHNdKTtcbiAgfVxuXG4gIHB1YmxpYyBhZGRMYWJlbChsYWJlbDogYW55KSB7XG4gICAgdGhpcy5hZGRMYWJlbHMoW2xhYmVsXSk7XG4gIH1cblxuICBwdWJsaWMgcmVtb3ZlTGFiZWwodG9SZW1vdmU6IFQpOiB2b2lkIHtcblxuICAgIGNvbnN0IHJlbWFpbmluZyA9IHRoaXMudmFsdWVcbiAgICAgIC5maWx0ZXIobCA9PiAhdGhpcy5hcmVFcXVhbChsLCB0b1JlbW92ZSkpO1xuXG4gICAgdGhpcy5yZXBsYWNlV2l0aChyZW1haW5pbmcpO1xuICB9XG5cbiAgcHVibGljIHJlcGxhY2VXaXRoKGxhYmVsczogVFtdKTogdm9pZCB7XG4gICAgdGhpcy51cGRhdGVWYWx1ZShsYWJlbHMpO1xuICB9XG5cbiAgcHVibGljIGxhYmVsTmFtZShsYWJlbDogVCk6IHN0cmluZyB7XG4gICAgaWYgKGxhYmVsKSB7XG4gICAgICByZXR1cm4gdGhpcy5fbmFtZVJlc29sdmVyID8gIHRoaXMuX25hbWVSZXNvbHZlcihsYWJlbCkgOiBsYWJlbC50b1N0cmluZygpO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gJyc7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGxhYmVsQ29sb3IobGFiZWw6IFQpOiBUaGVtZVBhbGV0dGUge1xuICAgIHJldHVybiB0aGlzLl9jb2xvclJlc29sdmVyID8gIHRoaXMuX2NvbG9yUmVzb2x2ZXIobGFiZWwpIDogdW5kZWZpbmVkO1xuICB9XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIFByaXZhdGUgbWV0aG9kcyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHJpdmF0ZSByZXNldElucHV0KCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRDb250cm9sLm5hdGl2ZUVsZW1lbnQudmFsdWUgPSAnJztcbiAgfVxuXG4gIHByaXZhdGUgYnVpbGRMYWJlbHMocmF3TmFtZTogc3RyaW5nKTogYW55W10ge1xuICAgIGlmICh0aGlzLl9sYWJlbEJ1aWxkZXIpIHtcbiAgICAgIHJldHVybiB0aGlzLl9sYWJlbEJ1aWxkZXIocmF3TmFtZSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiBbcmF3TmFtZV07XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBmaWx0ZXJOb3RQcmVzZW50KHN1Z2dlc3Rpb25zOiBhbnlbXSk6IGFueVtdIHtcbiAgICBpZiAoc3VnZ2VzdGlvbnMpIHtcblxuICAgICAgaWYgKHRoaXMudmFsdWUpIHtcbiAgICAgICAgcmV0dXJuIHN1Z2dlc3Rpb25zXG4gICAgICAgICAgLmZpbHRlcihsID0+IGwpXG4gICAgICAgICAgLmZpbHRlcihsID0+ICF0aGlzLnZhbHVlLnNvbWUoZWwgPT4gdGhpcy5hcmVFcXVhbChlbCwgbCkpKTtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHJldHVybiBzdWdnZXN0aW9ucztcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIFtdO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgYXJlRXF1YWwoYTogYW55LCBiOiBhbnkpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5fY29tcGFyZVdpdGggPyB0aGlzLl9jb21wYXJlV2l0aChhLCBiKSA6IGEgPT09IGI7XG4gIH1cbn1cbiIsIjxtYXQtZm9ybS1maWVsZFxuICBbZmxvYXRMYWJlbF09XCJmbG9hdExhYmVsXCJcbiAgY2xhc3M9XCJmdWxsLXdpZHRoXCJcbiAgW2FwcGVhcmFuY2VdPVwiYXBwZWFyYW5jZVwiXG4gIFtjb2xvcl09XCJjb2xvclwiXG4+XG4gIDxtYXQtbGFiZWwgKm5nSWY9XCJsYWJlbFwiPnt7bGFiZWwgfCB0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxuXG4gIDxtYXQtY2hpcC1saXN0ICNjaGlwcz5cbiAgICA8bWF0LWNoaXAgKm5nRm9yPVwibGV0IGxhYmVsIG9mIGN1cnJlbnRMYWJlbHMkIHwgYXN5bmNcIlxuICAgICAgICAgICAgICBjbGFzcz1cIm5vc2VsZWN0XCJcbiAgICAgICAgICAgICAgW2NvbG9yXT1cImxhYmVsQ29sb3IobGFiZWwpXCJcbiAgICAgICAgICAgICAgW3NlbGVjdGFibGVdPVwic2VsZWN0YWJsZVwiXG4gICAgICAgICAgICAgIFtyZW1vdmFibGVdPVwicmVtb3ZhYmxlXCJcbiAgICAgICAgICAgICAgKHJlbW92ZWQpPVwicmVtb3ZlTGFiZWwobGFiZWwpXCJcbiAgICA+XG4gICAgICB7e2xhYmVsTmFtZShsYWJlbCl9fVxuICAgICAgPG1hdC1pY29uIG1hdENoaXBSZW1vdmUgKm5nSWY9XCJyZW1vdmFibGVcIj5jYW5jZWw8L21hdC1pY29uPlxuICAgIDwvbWF0LWNoaXA+XG5cbiAgICA8aW5wdXQgbWF0SW5wdXQgdHlwZT1cInRleHRcIlxuICAgICAgICAgICBbbWF0Q2hpcElucHV0Rm9yXT1cImNoaXBzXCJcbiAgICAgICAgICAgW21hdEF1dG9jb21wbGV0ZV09XCJsYWJlbEF1dG9Db21wbGV0ZVwiXG4gICAgICAgICAgIFtmb3JtQ29udHJvbF09XCJsYWJlbElucHV0Q29udHJvbFwiXG4gICAgICAgICAgIChtYXRDaGlwSW5wdXRUb2tlbkVuZCk9XCJjcmVhdGVOZXdMYWJlbHMoJGV2ZW50KVwiXG4gICAgICAgICAgIFtuYW1lXT1cIm5hbWVcIlxuICAgICAgICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICAgICAgICAgICBbcmVhZG9ubHldPVwicmVhZG9ubHlcIlxuICAgICAgICAgICBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIlxuICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICAgICAgICAgICBhdXRvY29tcGxldGU9XCJvZmZcIlxuICAgICAgICAgICAjbGFiZWxJbnB1dD5cbiAgPC9tYXQtY2hpcC1saXN0PlxuXG4gIDxtYXQtYXV0b2NvbXBsZXRlXG4gICAgICAjbGFiZWxBdXRvQ29tcGxldGU9XCJtYXRBdXRvY29tcGxldGVcIlxuICAgICAgKG9wdGlvblNlbGVjdGVkKT1cImxhYmVsU2VsZWN0ZWQoJGV2ZW50KVwiPlxuICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCBzdWdnZXN0aW9uIG9mIGF2YWlsYWJsZVN1Z2dlc3Rpb25zJCB8IGFzeW5jXCIgW3ZhbHVlXT1cInN1Z2dlc3Rpb25cIj5cbiAgICAgIHt7bGFiZWxOYW1lKHN1Z2dlc3Rpb24pfX1cbiAgICA8L21hdC1vcHRpb24+XG4gIDwvbWF0LWF1dG9jb21wbGV0ZT5cblxuPC9tYXQtZm9ybS1maWVsZD5cblxuIl19