@elderbyte/ngx-starter 14.11.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.
- package/.eslintrc.json +44 -0
- package/karma-ci.conf.js +46 -0
- package/karma.conf.js +44 -0
- package/ng-package.json +15 -0
- package/ng-package.prod.json +14 -0
- package/package.json +8 -24
- package/src/lib/common/async/public_api.ts +3 -0
- package/src/lib/common/async/refreshing-entity.ts +128 -0
- package/src/lib/common/csv/csv-serializer.ts +82 -0
- package/src/lib/common/csv/csv-spec.ts +148 -0
- package/src/lib/common/csv/public_api.ts +3 -0
- package/src/lib/common/data/continuable-listing.ts +35 -0
- package/src/lib/common/data/data-context/data-context-active-page.ts +184 -0
- package/src/lib/common/data/data-context/data-context-auto-starter.ts +108 -0
- package/src/lib/common/data/data-context/data-context-base.ts +406 -0
- package/src/lib/common/data/data-context/data-context-builder.ts +354 -0
- package/src/lib/common/data/data-context/data-context-continuable-base.ts +100 -0
- package/src/lib/common/data/data-context/data-context-continuable-paged.ts +191 -0
- package/src/lib/common/data/data-context/data-context-continuable-token.ts +177 -0
- package/src/lib/common/data/data-context/data-context-life-cycle-binding.ts +59 -0
- package/src/lib/common/data/data-context/data-context-simple.ts +80 -0
- package/src/lib/common/data/data-context/data-context-source-auto-reloader.ts +21 -0
- package/src/lib/common/data/data-context/data-context-status.ts +56 -0
- package/src/lib/common/data/data-context/data-context.ts +204 -0
- package/src/lib/common/data/data-context/mat-table-data-context-binding.ts +209 -0
- package/src/lib/common/data/data-context/public_api.ts +19 -0
- package/src/lib/common/data/datasource/data-source-adapter.ts +96 -0
- package/src/lib/common/data/datasource/data-source-processor.ts +318 -0
- package/src/lib/common/data/datasource/data-source.ts +87 -0
- package/src/lib/common/data/datasource/entity-id-util.ts +11 -0
- package/src/lib/common/data/datasource/fetcher/delegate-data-source.ts +230 -0
- package/src/lib/common/data/datasource/local/local-list-data-source.ts +161 -0
- package/src/lib/common/data/datasource/local/local-paged-data-source.ts +129 -0
- package/src/lib/common/data/datasource/public_api.ts +14 -0
- package/src/lib/common/data/datasource/rest/public_api.ts +2 -0
- package/src/lib/common/data/datasource/rest/rest-client.ts +474 -0
- package/src/lib/common/data/entity-set-patch.ts +210 -0
- package/src/lib/common/data/field-comparator.ts +122 -0
- package/src/lib/common/data/filters/filter-context.spec.ts +150 -0
- package/src/lib/common/data/filters/filter-context.ts +163 -0
- package/src/lib/common/data/filters/filter.spec.ts +136 -0
- package/src/lib/common/data/filters/filter.ts +137 -0
- package/src/lib/common/data/http-params-builder.ts +138 -0
- package/src/lib/common/data/page.ts +92 -0
- package/src/lib/common/data/public_api.ts +12 -0
- package/src/lib/common/data/required-filter-evaluator.ts +122 -0
- package/src/lib/common/data/sort-context.ts +90 -0
- package/src/lib/common/data/sort.ts +16 -0
- package/src/lib/common/data/token-chunk-request.ts +10 -0
- package/src/lib/common/enums/elder-enum-translation.service.ts +116 -0
- package/src/lib/common/enums/public_api.ts +3 -0
- package/src/lib/common/errors/exception-detail.ts +6 -0
- package/{lib/common/errors/public_api.d.ts → src/lib/common/errors/public_api.ts} +0 -0
- package/src/lib/common/errors/standard-error-detail.ts +27 -0
- package/src/lib/common/format/bytes-format.ts +25 -0
- package/src/lib/common/format/bytes-per-second-format.ts +44 -0
- package/{lib/common/format/public_api.d.ts → src/lib/common/format/public_api.ts} +0 -0
- package/src/lib/common/forms/elder-entity-value-accessor.ts +70 -0
- package/src/lib/common/forms/elder-form-field-control-base.directive.ts +240 -0
- package/src/lib/common/forms/elder-from-field-base.ts +113 -0
- package/src/lib/common/forms/elder-from-field-entity-base.ts +63 -0
- package/src/lib/common/forms/elder-from-field-multi-entity-base.ts +86 -0
- package/src/lib/common/forms/elder-multi-entity-value-accessor.ts +84 -0
- package/src/lib/common/forms/form-field-base.component.ts +152 -0
- package/src/lib/common/forms/multi-model-base.component.ts +40 -0
- package/src/lib/common/forms/public_api.ts +12 -0
- package/src/lib/common/forms/template-composite-control.ts +158 -0
- package/src/lib/common/forms/value-accessor-base.ts +165 -0
- package/src/lib/common/forms/view-providers.ts +34 -0
- package/src/lib/common/http/http-client-builder.service.ts +55 -0
- package/src/lib/common/http/http-client-pristine.ts +15 -0
- package/src/lib/common/http/public_api.ts +5 -0
- package/src/lib/common/http/transfer/data-transfer-factory.ts +145 -0
- package/src/lib/common/http/transfer/data-transfer-progress-aggregate.ts +74 -0
- package/src/lib/common/http/transfer/data-transfer-progress.ts +18 -0
- package/src/lib/common/http/transfer/data-transfer-state.ts +129 -0
- package/src/lib/common/http/transfer/data-transfer-status.ts +28 -0
- package/src/lib/common/http/transfer/http-data-transfer.ts +276 -0
- package/src/lib/common/http/transfer/public_api.ts +9 -0
- package/src/lib/common/http/upload/file-upload-client.ts +74 -0
- package/src/lib/common/i18n/entity/impl/i18n-base.ts +9 -0
- package/src/lib/common/i18n/entity/impl/i18n-text.ts +25 -0
- package/src/lib/common/i18n/entity/language-tag.ts +19 -0
- package/src/lib/common/i18n/entity/locale.ts +20 -0
- package/src/lib/common/i18n/entity/localisation-picker.ts +51 -0
- package/src/lib/common/i18n/entity/localized.ts +11 -0
- package/src/lib/common/i18n/entity/public_api.ts +7 -0
- package/src/lib/common/i18n/public_api.ts +3 -0
- package/src/lib/common/json-map.ts +26 -0
- package/src/lib/common/objects.ts +46 -0
- package/src/lib/common/public_api.ts +20 -0
- package/src/lib/common/reactive-map.ts +113 -0
- package/{lib/common/selection/public_api.d.ts → src/lib/common/selection/public_api.ts} +0 -0
- package/src/lib/common/selection/selection-model.ts +274 -0
- package/src/lib/common/sets.ts +48 -0
- package/src/lib/common/suggestion-provider.ts +28 -0
- package/src/lib/common/templates/public_api.ts +1 -0
- package/src/lib/common/templates/template-slot-manager.ts +153 -0
- package/src/lib/common/time/date-util.ts +120 -0
- package/src/lib/common/time/interval.spec.ts +53 -0
- package/src/lib/common/time/interval.ts +539 -0
- package/src/lib/common/time/period-duration.ts +147 -0
- package/src/lib/common/time/public_api.ts +6 -0
- package/src/lib/common/time/time-util.ts +54 -0
- package/src/lib/common/url/elder-router.service.ts +55 -0
- package/src/lib/common/url/elder-url-fragment-params.service.ts +139 -0
- package/src/lib/common/url/public_api.ts +5 -0
- package/src/lib/common/url/url-query-params.ts +169 -0
- package/src/lib/common/utils/batcher.spec.ts +39 -0
- package/src/lib/common/utils/batcher.ts +55 -0
- package/src/lib/common/utils/collection-util.ts +125 -0
- package/src/lib/common/utils/filter-util.ts +67 -0
- package/src/lib/common/utils/next-number-util.ts +102 -0
- package/src/lib/common/utils/ng-zone-utils.ts +18 -0
- package/src/lib/common/utils/parse-util.ts +17 -0
- package/src/lib/common/utils/property-path-util.ts +29 -0
- package/{lib/common/utils/public_api.d.ts → src/lib/common/utils/public_api.ts} +0 -0
- package/src/lib/common/utils/query-list-binding.ts +105 -0
- package/src/lib/common/utils/sort-util.spec.ts +41 -0
- package/src/lib/common/utils/sort-util.ts +38 -0
- package/src/lib/common/utils/url-builder.spec.ts +83 -0
- package/src/lib/common/utils/url-builder.ts +363 -0
- package/src/lib/common/utils/uuid-util.ts +34 -0
- package/src/lib/common/utils/value-wrapper.ts +25 -0
- package/src/lib/components/access-denied/elder-access-denied.component.html +12 -0
- package/src/lib/components/access-denied/elder-access-denied.component.ts +16 -0
- package/src/lib/components/access-denied/elder-access-denied.module.ts +26 -0
- package/src/lib/components/auditing/audited-entity/elder-audited-entity.component.html +25 -0
- package/src/lib/components/auditing/audited-entity/elder-audited-entity.component.ts +42 -0
- package/src/lib/components/auditing/elder-audit.module.ts +32 -0
- package/src/lib/components/auditing/i-audited-entity.ts +17 -0
- package/src/lib/components/button-group/elder-button-group/elder-button-group.component.html +3 -0
- package/src/lib/components/button-group/elder-button-group/elder-button-group.component.ts +21 -0
- package/src/lib/components/button-group/elder-button-group.module.ts +25 -0
- package/src/lib/components/card-organizer/card-organizer/elder-card-organizer.component.html +28 -0
- package/src/lib/components/card-organizer/card-organizer/elder-card-organizer.component.ts +148 -0
- package/src/lib/components/card-organizer/card-organizer/elder-stack-card.directive.ts +9 -0
- package/src/lib/components/card-organizer/card-organizer-data.ts +124 -0
- package/src/lib/components/card-organizer/card-stack/elder-card-stack.component.html +72 -0
- package/src/lib/components/card-organizer/card-stack/elder-card-stack.component.ts +250 -0
- package/src/lib/components/card-organizer/card-stack.ts +231 -0
- package/src/lib/components/card-organizer/elder-card-organizer.module.ts +38 -0
- package/src/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.css +5 -0
- package/src/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.html +16 -0
- package/src/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.ts +14 -0
- package/src/lib/components/cards/elder-card/elder-card.component.html +21 -0
- package/src/lib/components/cards/elder-card/elder-card.component.ts +141 -0
- package/src/lib/components/cards/elder-card/elder-card.module.ts +48 -0
- package/src/lib/components/connectivity/elder-connectivity.module.ts +38 -0
- package/src/lib/components/connectivity/elder-connectivity.service.ts +83 -0
- package/src/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.html +11 -0
- package/src/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.ts +51 -0
- package/src/lib/components/connectivity/public_api.ts +3 -0
- package/src/lib/components/containers/elder-containers.module.ts +20 -0
- package/src/lib/components/containers/elder-scroll-container/elder-scroll-container.component.html +13 -0
- package/src/lib/components/containers/elder-scroll-container/elder-scroll-container.component.ts +30 -0
- package/src/lib/components/containers/public_api.ts +3 -0
- package/src/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.html +5 -0
- package/src/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.ts +105 -0
- package/src/lib/components/csv/elder-csv-stream-exporter-builder.service.ts +56 -0
- package/src/lib/components/csv/elder-csv-stream-exporter-builder.ts +68 -0
- package/src/lib/components/csv/elder-csv-stream-exporter.ts +192 -0
- package/src/lib/components/csv/elder-csv.module.ts +27 -0
- package/src/lib/components/currency/elder-currency.module.ts +18 -0
- package/src/lib/components/currency/elder-currency.pipe.ts +44 -0
- package/src/lib/components/currency/elder-currency.service.ts +83 -0
- package/src/lib/components/currency/model/currency-code.ts +37 -0
- package/src/lib/components/currency/model/currency-unit-registry.ts +39 -0
- package/src/lib/components/currency/model/currency-unit.ts +18 -0
- package/src/lib/components/currency/model/currency.ts +22 -0
- package/src/lib/components/currency/public_api.ts +7 -0
- package/src/lib/components/data-transfer/elder-data-transfer.module.ts +53 -0
- package/src/lib/components/data-transfer/elder-data-transfer.service.ts +120 -0
- package/src/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.html +47 -0
- package/src/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.ts +82 -0
- package/src/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.html +27 -0
- package/src/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.ts +46 -0
- package/src/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.html +31 -0
- package/src/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.ts +61 -0
- package/src/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.html +24 -0
- package/src/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.ts +41 -0
- package/src/lib/components/data-view/base/data-view-options-provider-binding.ts +99 -0
- package/src/lib/components/data-view/base/elder-data-view-base.ts +322 -0
- package/src/lib/components/data-view/base/elder-data-view-options-provider.ts +55 -0
- package/src/lib/components/data-view/base/elder-data-view-options.ts +89 -0
- package/src/lib/components/data-view/base/elder-data-view.ts +14 -0
- package/src/lib/components/data-view/base/public_api.ts +5 -0
- package/src/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.html +56 -0
- package/src/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.ts +51 -0
- package/src/lib/components/data-view/common/elder-data-common.module.ts +63 -0
- package/src/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.html +115 -0
- package/src/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.ts +181 -0
- package/src/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.html +25 -0
- package/src/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.ts +99 -0
- package/src/lib/components/data-view/common/selection/data-context-selection.directive.ts +127 -0
- package/src/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.html +22 -0
- package/src/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.ts +53 -0
- package/src/lib/components/data-view/common/selection/master-selection-state.ts +10 -0
- package/src/lib/components/data-view/elder-data-view-interaction-mode.ts +26 -0
- package/src/lib/components/data-view/grid/elder-grid/elder-grid.component.html +160 -0
- package/src/lib/components/data-view/grid/elder-grid/elder-grid.component.ts +348 -0
- package/src/lib/components/data-view/grid/elder-grid.module.ts +57 -0
- package/src/lib/components/data-view/public_api.ts +5 -0
- package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.css +0 -0
- package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.html +3 -0
- package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.ts +22 -0
- package/src/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.module.ts +51 -0
- package/src/lib/components/data-view/table/activation/elder-item-activator.ts +6 -0
- package/src/lib/components/data-view/table/activation/elder-table-activation-options.ts +19 -0
- package/src/lib/components/data-view/table/activation/elder-table-activation.directive.ts +308 -0
- package/src/lib/components/data-view/table/elder-number-cell.directive.ts +26 -0
- package/src/lib/components/data-view/table/elder-paginator-intl.ts +92 -0
- package/src/lib/components/data-view/table/elder-table/elder-table-toolbar.directive.ts +14 -0
- package/src/lib/components/data-view/table/elder-table/elder-table.component.html +103 -0
- package/src/lib/components/data-view/table/elder-table/elder-table.component.ts +388 -0
- package/src/lib/components/data-view/table/elder-table-column.directive.ts +29 -0
- package/src/lib/components/data-view/table/elder-table-extension.directive.ts +107 -0
- package/src/lib/components/data-view/table/elder-table-root.directive.ts +24 -0
- package/src/lib/components/data-view/table/elder-table-row.directive.ts +154 -0
- package/src/lib/components/data-view/table/elder-table-sort.directive.ts +16 -0
- package/src/lib/components/data-view/table/elder-table.module.ts +95 -0
- package/src/lib/components/data-view/table/model/elder-column-layout.ts +164 -0
- package/src/lib/components/data-view/table/model/elder-table-model-cdk-table-binding.ts +115 -0
- package/src/lib/components/data-view/table/model/elder-table-model-provider.ts +49 -0
- package/src/lib/components/data-view/table/model/elder-table-model-query-group.ts +153 -0
- package/src/lib/components/data-view/table/model/elder-table-model.ts +221 -0
- package/src/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.html +23 -0
- package/src/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.ts +34 -0
- package/src/lib/components/dialogs/elder-dialog-config.ts +21 -0
- package/src/lib/components/dialogs/elder-dialog.module.ts +65 -0
- package/src/lib/components/dialogs/elder-dialog.service.ts +198 -0
- package/src/lib/components/dialogs/question-dialog/elder-question-dialog.component.html +28 -0
- package/src/lib/components/dialogs/question-dialog/elder-question-dialog.component.ts +44 -0
- package/src/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.html +31 -0
- package/src/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.ts +55 -0
- package/src/lib/components/dialogs/selection-dialog/elder-selection-dialog.directive.ts +54 -0
- package/src/lib/components/errors/elder-error.module.ts +30 -0
- package/src/lib/components/errors/error-util.ts +107 -0
- package/src/lib/components/errors/exception-detail/elder-exception-detail.component.html +33 -0
- package/src/lib/components/errors/exception-detail/elder-exception-detail.component.ts +77 -0
- package/src/lib/components/expand-toggle-button/elder-expand-toggle-button.component.html +14 -0
- package/src/lib/components/expand-toggle-button/elder-expand-toggle-button.component.ts +57 -0
- package/src/lib/components/expand-toggle-button/elder-expand-toggle-button.module.ts +24 -0
- package/src/lib/components/files/blob-url.ts +13 -0
- package/src/lib/components/files/blob-viewer/elder-blob-viewer.component.html +62 -0
- package/src/lib/components/files/blob-viewer/elder-blob-viewer.component.ts +304 -0
- package/src/lib/components/files/elder-file-drop-zone.directive.ts +116 -0
- package/src/lib/components/files/elder-file-select.directive.ts +184 -0
- package/src/lib/components/files/elder-file.module.ts +50 -0
- package/src/lib/components/files/file-select/file-select.component.html +9 -0
- package/src/lib/components/files/file-select/file-select.component.ts +61 -0
- package/src/lib/components/files/file-upload/file-upload.component.html +36 -0
- package/src/lib/components/files/file-upload/file-upload.component.ts +81 -0
- package/src/lib/components/forms/clipboard/elder-clipboard.service.ts +57 -0
- package/src/lib/components/forms/directives/base/elder-class-hostbinding-base.ts +55 -0
- package/src/lib/components/forms/directives/elder-clipboard-put.directive.ts +44 -0
- package/src/lib/components/forms/directives/elder-delayed-focus.directive.ts +44 -0
- package/src/lib/components/forms/directives/elder-form-field-dense.directive.ts +31 -0
- package/src/lib/components/forms/directives/elder-form-field-label.directive.ts +92 -0
- package/src/lib/components/forms/directives/elder-form-field-no-hint.directive.ts +28 -0
- package/src/lib/components/forms/directives/elder-form-field-no-spinner.directive.ts +32 -0
- package/src/lib/components/forms/directives/elder-forms-directives.module.ts +115 -0
- package/src/lib/components/forms/directives/elder-input-pattern.directive.ts +76 -0
- package/src/lib/components/forms/directives/elder-key-event.directive.ts +126 -0
- package/src/lib/components/forms/directives/elder-max.directive.ts +38 -0
- package/src/lib/components/forms/directives/elder-min.directive.ts +38 -0
- package/src/lib/components/forms/directives/elder-next-focusable.directive.ts +101 -0
- package/src/lib/components/forms/directives/elder-plug-parent-form.directive.ts +28 -0
- package/src/lib/components/forms/directives/elder-stop-event-propagation.directive.ts +22 -0
- package/src/lib/components/forms/directives/elder-tab-focus-trap.directive.ts +188 -0
- package/src/lib/components/forms/directives/elder-touched.directive.ts +25 -0
- package/src/lib/components/forms/directives/elder-triple-state-checkbox.directive.ts +132 -0
- package/src/lib/components/forms/directives/validation/elder-multiple-of.validator.ts +59 -0
- package/src/lib/components/forms/directives/validation/elder-required-ignore-zero.validator.ts +80 -0
- package/src/lib/components/forms/elder-forms.module.ts +17 -0
- package/src/lib/components/forms/public_api.ts +3 -0
- package/src/lib/components/forms/search/elder-search-context.directive.ts +181 -0
- package/src/lib/components/forms/search/elder-search-input.directive.ts +244 -0
- package/src/lib/components/forms/search/elder-search.module.ts +49 -0
- package/src/lib/components/forms/search/model/search-input-state.ts +95 -0
- package/src/lib/components/forms/search/model/search-input.ts +30 -0
- package/src/lib/components/forms/search/model/simple-search-input.ts +69 -0
- package/src/lib/components/forms/search/search-box/elder-search-box.component.html +66 -0
- package/src/lib/components/forms/search/search-box/elder-search-box.component.ts +149 -0
- package/src/lib/components/forms/search/search-box/elder-search-panel.component.ts +10 -0
- package/src/lib/components/global-search/elder-global-search.component.html +54 -0
- package/src/lib/components/global-search/elder-global-search.component.ts +158 -0
- package/src/lib/components/global-search/elder-global-search.module.ts +28 -0
- package/src/lib/components/global-search/elder-global-search.service.ts +118 -0
- package/src/lib/components/graph/elder-progress-bar/elder-progress-bar.component.html +19 -0
- package/src/lib/components/graph/elder-progress-bar/elder-progress-bar.component.ts +112 -0
- package/src/lib/components/graph/elder-progress-bar/elder-progress-bar.module.ts +22 -0
- package/src/lib/components/graph/elder-progress-bar/sub-bar.ts +6 -0
- package/{lib/components/graph/public_api.d.ts → src/lib/components/graph/public_api.ts} +0 -0
- package/src/lib/components/headers/elder-header/elder-header.component.css +0 -0
- package/src/lib/components/headers/elder-header/elder-header.component.html +5 -0
- package/src/lib/components/headers/elder-header/elder-header.component.ts +38 -0
- package/src/lib/components/headers/elder-header.module.ts +29 -0
- package/src/lib/components/http-support/elder-http-client.service.ts +82 -0
- package/src/lib/components/http-support/public_api.ts +3 -0
- package/src/lib/components/i18n/entities/elder-i18n-entities.module.ts +76 -0
- package/src/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.html +41 -0
- package/src/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.ts +176 -0
- package/src/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.html +36 -0
- package/src/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.ts +33 -0
- package/src/lib/components/i18n/entities/elder-localized-input-dialog.service.ts +35 -0
- package/src/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.html +56 -0
- package/src/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.ts +200 -0
- package/src/lib/components/i18n/entities/elder-localized-text-column.directive.ts +34 -0
- package/src/lib/components/i18n/entities/elder-localized-texts.directive.ts +62 -0
- package/src/lib/components/i18n/entities/picker/i18n-pick-async.pipe.ts +49 -0
- package/src/lib/components/i18n/entities/picker/i18n-pick.pipe.ts +36 -0
- package/src/lib/components/i18n/entities/picker/localisation-picker.service.ts +104 -0
- package/src/lib/components/i18n/language/elder-language-config.ts +18 -0
- package/src/lib/components/i18n/language/elder-language-interceptor.ts +94 -0
- package/src/lib/components/i18n/language/elder-language.module.ts +60 -0
- package/src/lib/components/i18n/language/elder-language.service.ts +139 -0
- package/src/lib/components/i18n/language/language-switcher/elder-language-switcher.component.html +24 -0
- package/src/lib/components/i18n/language/language-switcher/elder-language-switcher.component.ts +71 -0
- package/src/lib/components/i18n/locales/elder-locales-de-ch.module.ts +46 -0
- package/{lib/components/i18n/public_api.d.ts → src/lib/components/i18n/public_api.ts} +0 -0
- package/src/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.html +8 -0
- package/src/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.ts +173 -0
- package/src/lib/components/iframes/data-view/data-view-iframe-adapter.directive.ts +150 -0
- package/src/lib/components/iframes/elder-iframe.module.ts +63 -0
- package/src/lib/components/iframes/iframe-close.directive.ts +49 -0
- package/src/lib/components/iframes/iframe-dialog/iframe-dialog.component.html +11 -0
- package/src/lib/components/iframes/iframe-dialog/iframe-dialog.component.ts +63 -0
- package/src/lib/components/iframes/iframe-host/iframe-host.component.html +43 -0
- package/src/lib/components/iframes/iframe-host/iframe-host.component.ts +172 -0
- package/src/lib/components/iframes/iframe-side-content/iframe-side-content.component.html +14 -0
- package/src/lib/components/iframes/iframe-side-content/iframe-side-content.component.ts +102 -0
- package/src/lib/components/iframes/iframe.service.ts +59 -0
- package/src/lib/components/iframes/typed-event-message.ts +66 -0
- package/src/lib/components/infinitescroll/elder-infinite-autocomplete.directive.ts +79 -0
- package/src/lib/components/infinitescroll/elder-infinite-scroll.directive.ts +187 -0
- package/src/lib/components/infinitescroll/elder-infinite-scroll.module.ts +32 -0
- package/src/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete-option-selected.ts +11 -0
- package/src/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.html +66 -0
- package/src/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.ts +233 -0
- package/src/lib/components/input/autocomplete/elder-autocomplete-many.directive.ts +244 -0
- package/src/lib/components/input/autocomplete/elder-autocomplete.directive.ts +145 -0
- package/src/lib/components/input/autocomplete/elder-autocomplete.module.ts +41 -0
- package/src/lib/components/input/autocomplete/many/word-position-finder.spec.ts +74 -0
- package/src/lib/components/input/autocomplete/many/word-position-finder.ts +76 -0
- package/src/lib/components/input/public_api.ts +3 -0
- package/src/lib/components/labels/elder-labels.module.ts +22 -0
- package/src/lib/components/labels/labels-input/labels-input.component.html +44 -0
- package/src/lib/components/labels/labels-input/labels-input.component.ts +255 -0
- package/src/lib/components/measures/dimensions-input/elder-dimensions-input.component.html +71 -0
- package/src/lib/components/measures/dimensions-input/elder-dimensions-input.component.ts +307 -0
- package/src/lib/components/measures/directives/elder-unit-select.directive.ts +70 -0
- package/src/lib/components/measures/elder-measures.module.ts +78 -0
- package/src/lib/components/measures/elder-quantity-transform.pipe.ts +46 -0
- package/src/lib/components/measures/elder-quantity.pipe.ts +102 -0
- package/src/lib/components/measures/elder-unit.service.ts +135 -0
- package/src/lib/components/measures/model/dimensions.ts +40 -0
- package/src/lib/components/measures/model/quantity.ts +19 -0
- package/src/lib/components/measures/model/unit-dimension.ts +16 -0
- package/src/lib/components/measures/model/unit-registry.ts +110 -0
- package/src/lib/components/measures/model/unit.ts +192 -0
- package/src/lib/components/measures/public_api.ts +9 -0
- package/src/lib/components/measures/quantity-input/elder-quantity-input.component.html +64 -0
- package/src/lib/components/measures/quantity-input/elder-quantity-input.component.ts +221 -0
- package/src/lib/components/measures/util/elder-quantity.service.ts +313 -0
- package/src/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.html +89 -0
- package/src/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.ts +221 -0
- package/src/lib/components/navigation/bread-crumbs/elder-bread-crumbs.module.ts +38 -0
- package/src/lib/components/navigation/bread-crumbs/path/path.ts +49 -0
- package/src/lib/components/navigation/nav/elder-nav.module.ts +36 -0
- package/src/lib/components/navigation/nav/nav-group/elder-nav-group.component.html +34 -0
- package/src/lib/components/navigation/nav/nav-group/elder-nav-group.component.ts +94 -0
- package/src/lib/components/navigation/nav/nav-link/elder-nav-link.component.html +89 -0
- package/src/lib/components/navigation/nav/nav-link/elder-nav-link.component.ts +78 -0
- package/src/lib/components/navigation/nav/nav-list/elder-nav-list.component.html +5 -0
- package/src/lib/components/navigation/nav/nav-list/elder-nav-list.component.ts +16 -0
- package/{lib/components/navigation/public_api.d.ts → src/lib/components/navigation/public_api.ts} +0 -0
- package/src/lib/components/navigation/toolbar/elder-toolbar-column.directive.ts +53 -0
- package/src/lib/components/navigation/toolbar/elder-toolbar.module.ts +52 -0
- package/src/lib/components/navigation/toolbar/elder-toolbar.service.ts +77 -0
- package/src/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.html +50 -0
- package/src/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.ts +78 -0
- package/src/lib/components/navigation/toolbar/toolbar-column-position.ts +20 -0
- package/src/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.html +1 -0
- package/src/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.ts +54 -0
- package/src/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.service.ts +107 -0
- package/src/lib/components/overlays/elder-overlay-origin.directive.ts +45 -0
- package/src/lib/components/overlays/elder-overlay-trigger.directive.ts +71 -0
- package/src/lib/components/overlays/elder-overlay.component.ts +262 -0
- package/src/lib/components/overlays/elder-overlay.module.ts +29 -0
- package/src/lib/components/panels/card-panel/elder-card-panel.component.html +4 -0
- package/src/lib/components/panels/card-panel/elder-card-panel.component.ts +11 -0
- package/src/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.html +4 -0
- package/src/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.ts +11 -0
- package/src/lib/components/panels/elder-panel.module.ts +31 -0
- package/src/lib/components/panels/flat/elder-panel.component.html +2 -0
- package/src/lib/components/panels/flat/elder-panel.component.ts +30 -0
- package/{lib/components/public_api.d.ts → src/lib/components/public_api.ts} +0 -0
- package/src/lib/components/select/auto/elder-auto-select-first.directive.ts +87 -0
- package/src/lib/components/select/auto/elder-select-first-util.ts +98 -0
- package/src/lib/components/select/elder-select-base.ts +355 -0
- package/src/lib/components/select/elder-select-chip.directive.ts +32 -0
- package/src/lib/components/select/elder-select-on-tab.directive.ts +150 -0
- package/src/lib/components/select/elder-select-value.directive.ts +9 -0
- package/src/lib/components/select/elder-select.module.ts +94 -0
- package/src/lib/components/select/multi/elder-multi-select-base.ts +451 -0
- package/src/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.html +89 -0
- package/src/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.ts +316 -0
- package/src/lib/components/select/multi/elder-multi-select-form-field.ts +80 -0
- package/src/lib/components/select/popup/selection-model-popup-trigger-adapter.directive.ts +102 -0
- package/src/lib/components/select/popup/selection-model-popup.directive.ts +145 -0
- package/src/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.html +18 -0
- package/src/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.ts +56 -0
- package/src/lib/components/select/public_api.ts +5 -0
- package/src/lib/components/select/single/elder-clear-select.directive.ts +64 -0
- package/src/lib/components/select/single/elder-select/elder-select.component.html +91 -0
- package/src/lib/components/select/single/elder-select/elder-select.component.ts +530 -0
- package/src/lib/components/select/single/elder-select-form-field.ts +57 -0
- package/src/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.html +13 -0
- package/src/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.ts +169 -0
- package/src/lib/components/select-chip-list/elder-chip-list-select.module.ts +31 -0
- package/src/lib/components/select-list/elder-select-list.module.ts +27 -0
- package/src/lib/components/select-list/select-list/elder-select-list.component.html +5 -0
- package/src/lib/components/select-list/select-list/elder-select-list.component.ts +91 -0
- package/src/lib/components/select-list/select-list-item/elder-select-list-item.component.html +32 -0
- package/src/lib/components/select-list/select-list-item/elder-select-list-item.component.ts +135 -0
- package/src/lib/components/shell/drawers/drawer-outlet-binding.ts +73 -0
- package/src/lib/components/shell/drawers/elder-route-outlet-drawer.service.ts +137 -0
- package/src/lib/components/shell/drawers/elder-router-outlet.service.ts +145 -0
- package/src/lib/components/shell/elder-shell-slot.directive.ts +61 -0
- package/src/lib/components/shell/elder-shell.module.ts +69 -0
- package/src/lib/components/shell/elder-shell.service.ts +176 -0
- package/src/lib/components/shell/header/elder-app-header/elder-app-header.component.html +25 -0
- package/src/lib/components/shell/header/elder-app-header/elder-app-header.component.ts +89 -0
- package/src/lib/components/shell/shell/elder-shell.component.html +86 -0
- package/src/lib/components/shell/shell/elder-shell.component.ts +243 -0
- package/src/lib/components/shell/shell-content-slot.ts +8 -0
- package/src/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.html +4 -0
- package/src/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.ts +153 -0
- package/src/lib/components/tabs/elder-tab/elder-tab.directive.ts +31 -0
- package/src/lib/components/tabs/elder-tab-group-routing/elder-tab-group-routing.directive.ts +320 -0
- package/src/lib/components/tabs/elder-tab.module.ts +27 -0
- package/src/lib/components/theme/elder-theme-applier.directive.ts +73 -0
- package/src/lib/components/theme/elder-theme-preference.service.ts +79 -0
- package/src/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.html +9 -0
- package/src/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.ts +86 -0
- package/src/lib/components/theme/elder-theme.directive.ts +65 -0
- package/src/lib/components/theme/elder-theme.module.ts +52 -0
- package/src/lib/components/theme/elder-theme.service.ts +151 -0
- package/src/lib/components/theme/known-elder-themes.ts +17 -0
- package/{lib/components/theme/public_api.d.ts → src/lib/components/theme/public_api.ts} +0 -0
- package/src/lib/components/theme/theme-spec.ts +32 -0
- package/src/lib/components/time/date-adapters/custom-date-adapter.ts +34 -0
- package/src/lib/components/time/duration/duration-bucket.ts +143 -0
- package/src/lib/components/time/duration/duration-format.ts +346 -0
- package/src/lib/components/time/duration/elder-duration-input/elder-duration-input.component.html +51 -0
- package/src/lib/components/time/duration/elder-duration-input/elder-duration-input.component.ts +132 -0
- package/src/lib/components/time/duration/iso-duration-str.ts +5 -0
- package/src/lib/components/time/elder-date-switcher/elder-date-switcher.component.html +29 -0
- package/src/lib/components/time/elder-date-switcher/elder-date-switcher.component.ts +120 -0
- package/src/lib/components/time/elder-date-time-input/elder-date-time-input.component.html +16 -0
- package/src/lib/components/time/elder-date-time-input/elder-date-time-input.component.ts +93 -0
- package/src/lib/components/time/elder-interval-input/elder-interval-input.component.html +92 -0
- package/src/lib/components/time/elder-interval-input/elder-interval-input.component.ts +222 -0
- package/src/lib/components/time/elder-local-date-input/elder-local-date-input.component.html +41 -0
- package/src/lib/components/time/elder-local-date-input/elder-local-date-input.component.ts +213 -0
- package/src/lib/components/time/elder-local-time-input/elder-local-time-input.component.html +19 -0
- package/src/lib/components/time/elder-local-time-input/elder-local-time-input.component.ts +98 -0
- package/src/lib/components/time/elder-time.module.ts +95 -0
- package/src/lib/components/time/period/elder-period-input/elder-period-input.component.html +40 -0
- package/src/lib/components/time/period/elder-period-input/elder-period-input.component.ts +148 -0
- package/src/lib/components/time/period/period-bucket.ts +51 -0
- package/src/lib/components/time/period/period-format.ts +127 -0
- package/src/lib/components/time/public_api.ts +8 -0
- package/src/lib/components/toasts/elder-toast.module.ts +22 -0
- package/src/lib/components/toasts/elder-toast.service.ts +244 -0
- package/src/lib/components/toasts/standard-toast/standard-toast.component.html +34 -0
- package/src/lib/components/toasts/standard-toast/standard-toast.component.ts +80 -0
- package/src/lib/components/toasts/toast-type.ts +5 -0
- package/src/lib/components/toasts/toast.ts +12 -0
- package/src/lib/components/url-fragment/elder-url-fragment.module.ts +36 -0
- package/src/lib/components/url-fragment/elder-url-fragment.ts +10 -0
- package/src/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.html +25 -0
- package/src/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.ts +107 -0
- package/src/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.html +1 -0
- package/src/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.ts +81 -0
- package/src/lib/components/viewers/elder-viewers.module.ts +18 -0
- package/src/lib/features/event-source/elder-event-source.service.ts +71 -0
- package/src/lib/features/event-source/public_api.ts +3 -0
- package/src/lib/features/event-source/reactive-event-source.ts +252 -0
- package/src/lib/features/kafent/access-token-provider.ts +21 -0
- package/src/lib/features/kafent/kafent-config.ts +42 -0
- package/src/lib/features/kafent/kafent-event-stream.ts +48 -0
- package/src/lib/features/kafent/kafent-event.service.ts +128 -0
- package/src/lib/features/kafent/kafent-event.ts +14 -0
- package/src/lib/features/kafent/kafent-live-event-request.ts +75 -0
- package/src/lib/features/kafent/kafent.module.ts +61 -0
- package/src/lib/features/kafent/sse/kafent-event-stream-sse.service.ts +167 -0
- package/src/lib/features/kafent/sse/kafent-topic-sse.ts +145 -0
- package/src/lib/features/public_api.ts +4 -0
- package/src/lib/i18n/elder-composite-translation-loader.ts +14 -0
- package/src/lib/i18n/elder-starter-translation-loader.ts +20 -0
- package/src/lib/pipes/bytes.pipe.ts +18 -0
- package/src/lib/pipes/elder-pipes.module.ts +51 -0
- package/src/lib/pipes/elder-repeat.pipe.ts +16 -0
- package/src/lib/pipes/elder-round.pipe.ts +37 -0
- package/src/lib/pipes/elder-safe-url.pipe.ts +12 -0
- package/src/lib/pipes/elder-truncate.pipe.ts +45 -0
- package/src/lib/pipes/iso-duration.pipe.ts +64 -0
- package/src/lib/pipes/iso-interval-parse.pipe.ts +61 -0
- package/src/lib/pipes/iso-interval.pipe.ts +146 -0
- package/src/lib/pipes/public_api.ts +3 -0
- package/src/lib/pipes/time-ago.pipe.ts +88 -0
- package/src/lib/pipes/time-duration.pipe.ts +81 -0
- package/src/lib/pipes/weight.pipe.ts +45 -0
- package/src/public_api.ts +8 -0
- package/src/test.ts +28 -0
- package/tsconfig.lib.json +33 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2020/elderbyte-ngx-starter.mjs +0 -5
- package/esm2020/lib/common/async/public_api.mjs +0 -2
- package/esm2020/lib/common/async/refreshing-entity.mjs +0 -86
- package/esm2020/lib/common/csv/csv-serializer.mjs +0 -55
- package/esm2020/lib/common/csv/csv-spec.mjs +0 -99
- package/esm2020/lib/common/csv/public_api.mjs +0 -3
- package/esm2020/lib/common/data/continuable-listing.mjs +0 -10
- package/esm2020/lib/common/data/data-context/data-context-active-page.mjs +0 -130
- package/esm2020/lib/common/data/data-context/data-context-auto-starter.mjs +0 -74
- package/esm2020/lib/common/data/data-context/data-context-base.mjs +0 -283
- package/esm2020/lib/common/data/data-context/data-context-builder.mjs +0 -246
- package/esm2020/lib/common/data/data-context/data-context-continuable-base.mjs +0 -69
- package/esm2020/lib/common/data/data-context/data-context-continuable-paged.mjs +0 -143
- package/esm2020/lib/common/data/data-context/data-context-continuable-token.mjs +0 -136
- package/esm2020/lib/common/data/data-context/data-context-life-cycle-binding.mjs +0 -30
- package/esm2020/lib/common/data/data-context/data-context-simple.mjs +0 -59
- package/esm2020/lib/common/data/data-context/data-context-source-auto-reloader.mjs +0 -12
- package/esm2020/lib/common/data/data-context/data-context-status.mjs +0 -46
- package/esm2020/lib/common/data/data-context/data-context.mjs +0 -30
- package/esm2020/lib/common/data/data-context/mat-table-data-context-binding.mjs +0 -139
- package/esm2020/lib/common/data/data-context/public_api.mjs +0 -14
- package/esm2020/lib/common/data/datasource/data-source-adapter.mjs +0 -55
- package/esm2020/lib/common/data/datasource/data-source-processor.mjs +0 -199
- package/esm2020/lib/common/data/datasource/data-source.mjs +0 -23
- package/esm2020/lib/common/data/datasource/entity-id-util.mjs +0 -11
- package/esm2020/lib/common/data/datasource/fetcher/delegate-data-source.mjs +0 -127
- package/esm2020/lib/common/data/datasource/local/local-list-data-source.mjs +0 -102
- package/esm2020/lib/common/data/datasource/local/local-paged-data-source.mjs +0 -73
- package/esm2020/lib/common/data/datasource/public_api.mjs +0 -8
- package/esm2020/lib/common/data/datasource/rest/public_api.mjs +0 -2
- package/esm2020/lib/common/data/datasource/rest/rest-client.mjs +0 -294
- package/esm2020/lib/common/data/entity-set-patch.mjs +0 -164
- package/esm2020/lib/common/data/field-comparator.mjs +0 -99
- package/esm2020/lib/common/data/filters/filter-context.mjs +0 -141
- package/esm2020/lib/common/data/filters/filter.mjs +0 -109
- package/esm2020/lib/common/data/http-params-builder.mjs +0 -110
- package/esm2020/lib/common/data/page.mjs +0 -58
- package/esm2020/lib/common/data/public_api.mjs +0 -12
- package/esm2020/lib/common/data/required-filter-evaluator.mjs +0 -70
- package/esm2020/lib/common/data/sort-context.mjs +0 -75
- package/esm2020/lib/common/data/sort.mjs +0 -11
- package/esm2020/lib/common/data/token-chunk-request.mjs +0 -8
- package/esm2020/lib/common/enums/elder-enum-translation.service.mjs +0 -81
- package/esm2020/lib/common/enums/public_api.mjs +0 -2
- package/esm2020/lib/common/errors/exception-detail.mjs +0 -2
- package/esm2020/lib/common/errors/public_api.mjs +0 -3
- package/esm2020/lib/common/errors/standard-error-detail.mjs +0 -2
- package/esm2020/lib/common/format/bytes-format.mjs +0 -22
- package/esm2020/lib/common/format/bytes-per-second-format.mjs +0 -41
- package/esm2020/lib/common/format/public_api.mjs +0 -3
- package/esm2020/lib/common/forms/elder-entity-value-accessor.mjs +0 -22
- package/esm2020/lib/common/forms/elder-form-field-control-base.directive.mjs +0 -178
- package/esm2020/lib/common/forms/elder-from-field-base.mjs +0 -94
- package/esm2020/lib/common/forms/elder-from-field-entity-base.mjs +0 -39
- package/esm2020/lib/common/forms/elder-from-field-multi-entity-base.mjs +0 -47
- package/esm2020/lib/common/forms/elder-multi-entity-value-accessor.mjs +0 -22
- package/esm2020/lib/common/forms/form-field-base.component.mjs +0 -106
- package/esm2020/lib/common/forms/multi-model-base.component.mjs +0 -32
- package/esm2020/lib/common/forms/public_api.mjs +0 -12
- package/esm2020/lib/common/forms/template-composite-control.mjs +0 -133
- package/esm2020/lib/common/forms/value-accessor-base.mjs +0 -146
- package/esm2020/lib/common/forms/view-providers.mjs +0 -30
- package/esm2020/lib/common/http/http-client-builder.service.mjs +0 -14
- package/esm2020/lib/common/http/http-client-pristine.mjs +0 -21
- package/esm2020/lib/common/http/public_api.mjs +0 -5
- package/esm2020/lib/common/http/transfer/data-transfer-factory.mjs +0 -95
- package/esm2020/lib/common/http/transfer/data-transfer-progress-aggregate.mjs +0 -49
- package/esm2020/lib/common/http/transfer/data-transfer-progress.mjs +0 -17
- package/esm2020/lib/common/http/transfer/data-transfer-state.mjs +0 -82
- package/esm2020/lib/common/http/transfer/data-transfer-status.mjs +0 -24
- package/esm2020/lib/common/http/transfer/http-data-transfer.mjs +0 -180
- package/esm2020/lib/common/http/transfer/public_api.mjs +0 -7
- package/esm2020/lib/common/http/upload/file-upload-client.mjs +0 -42
- package/esm2020/lib/common/i18n/entity/impl/i18n-base.mjs +0 -6
- package/esm2020/lib/common/i18n/entity/impl/i18n-text.mjs +0 -16
- package/esm2020/lib/common/i18n/entity/language-tag.mjs +0 -12
- package/esm2020/lib/common/i18n/entity/locale.mjs +0 -12
- package/esm2020/lib/common/i18n/entity/localisation-picker.mjs +0 -30
- package/esm2020/lib/common/i18n/entity/localized.mjs +0 -2
- package/esm2020/lib/common/i18n/entity/public_api.mjs +0 -6
- package/esm2020/lib/common/i18n/public_api.mjs +0 -2
- package/esm2020/lib/common/json-map.mjs +0 -18
- package/esm2020/lib/common/objects.mjs +0 -41
- package/esm2020/lib/common/public_api.mjs +0 -19
- package/esm2020/lib/common/reactive-map.mjs +0 -69
- package/esm2020/lib/common/selection/public_api.mjs +0 -2
- package/esm2020/lib/common/selection/selection-model.mjs +0 -212
- package/esm2020/lib/common/sets.mjs +0 -44
- package/esm2020/lib/common/suggestion-provider.mjs +0 -12
- package/esm2020/lib/common/templates/template-slot-manager.mjs +0 -135
- package/esm2020/lib/common/time/date-util.mjs +0 -93
- package/esm2020/lib/common/time/interval.mjs +0 -419
- package/esm2020/lib/common/time/period-duration.mjs +0 -130
- package/esm2020/lib/common/time/public_api.mjs +0 -5
- package/esm2020/lib/common/time/time-util.mjs +0 -41
- package/esm2020/lib/common/url/elder-router.service.mjs +0 -54
- package/esm2020/lib/common/url/elder-url-fragment-params.service.mjs +0 -119
- package/esm2020/lib/common/url/public_api.mjs +0 -4
- package/esm2020/lib/common/url/url-query-params.mjs +0 -133
- package/esm2020/lib/common/utils/batcher.mjs +0 -35
- package/esm2020/lib/common/utils/collection-util.mjs +0 -109
- package/esm2020/lib/common/utils/filter-util.mjs +0 -52
- package/esm2020/lib/common/utils/next-number-util.mjs +0 -88
- package/esm2020/lib/common/utils/ng-zone-utils.mjs +0 -16
- package/esm2020/lib/common/utils/parse-util.mjs +0 -16
- package/esm2020/lib/common/utils/property-path-util.mjs +0 -28
- package/esm2020/lib/common/utils/public_api.mjs +0 -12
- package/esm2020/lib/common/utils/query-list-binding.mjs +0 -67
- package/esm2020/lib/common/utils/sort-util.mjs +0 -30
- package/esm2020/lib/common/utils/url-builder.mjs +0 -275
- package/esm2020/lib/common/utils/uuid-util.mjs +0 -29
- package/esm2020/lib/common/utils/value-wrapper.mjs +0 -19
- package/esm2020/lib/components/access-denied/elder-access-denied.component.mjs +0 -17
- package/esm2020/lib/components/access-denied/elder-access-denied.module.mjs +0 -34
- package/esm2020/lib/components/auditing/audited-entity/elder-audited-entity.component.mjs +0 -43
- package/esm2020/lib/components/auditing/elder-audit.module.mjs +0 -46
- package/esm2020/lib/components/auditing/i-audited-entity.mjs +0 -3
- package/esm2020/lib/components/button-group/elder-button-group/elder-button-group.component.mjs +0 -16
- package/esm2020/lib/components/button-group/elder-button-group.module.mjs +0 -39
- package/esm2020/lib/components/card-organizer/card-organizer/elder-card-organizer.component.mjs +0 -124
- package/esm2020/lib/components/card-organizer/card-organizer/elder-stack-card.directive.mjs +0 -15
- package/esm2020/lib/components/card-organizer/card-organizer-data.mjs +0 -93
- package/esm2020/lib/components/card-organizer/card-stack/elder-card-stack.component.mjs +0 -206
- package/esm2020/lib/components/card-organizer/card-stack.mjs +0 -176
- package/esm2020/lib/components/card-organizer/elder-card-organizer.module.mjs +0 -50
- package/esm2020/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.mjs +0 -19
- package/esm2020/lib/components/cards/elder-card/elder-card.component.mjs +0 -158
- package/esm2020/lib/components/cards/elder-card/elder-card.module.mjs +0 -66
- package/esm2020/lib/components/connectivity/elder-connectivity.module.mjs +0 -57
- package/esm2020/lib/components/connectivity/elder-connectivity.service.mjs +0 -63
- package/esm2020/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.mjs +0 -46
- package/esm2020/lib/components/connectivity/public_api.mjs +0 -3
- package/esm2020/lib/components/containers/elder-containers.module.mjs +0 -29
- package/esm2020/lib/components/containers/elder-scroll-container/elder-scroll-container.component.mjs +0 -25
- package/esm2020/lib/components/containers/public_api.mjs +0 -2
- package/esm2020/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.mjs +0 -77
- package/esm2020/lib/components/csv/elder-csv-stream-exporter-builder.mjs +0 -40
- package/esm2020/lib/components/csv/elder-csv-stream-exporter-builder.service.mjs +0 -38
- package/esm2020/lib/components/csv/elder-csv-stream-exporter.mjs +0 -114
- package/esm2020/lib/components/csv/elder-csv.module.mjs +0 -37
- package/esm2020/lib/components/currency/elder-currency.module.mjs +0 -24
- package/esm2020/lib/components/currency/elder-currency.pipe.mjs +0 -33
- package/esm2020/lib/components/currency/model/currency-code.mjs +0 -38
- package/esm2020/lib/components/currency/model/currency-unit-registry.mjs +0 -30
- package/esm2020/lib/components/currency/model/currency-unit.mjs +0 -10
- package/esm2020/lib/components/currency/model/currency.mjs +0 -15
- package/esm2020/lib/components/currency/public_api.mjs +0 -7
- package/esm2020/lib/components/data-transfer/elder-data-transfer.module.mjs +0 -76
- package/esm2020/lib/components/data-transfer/elder-data-transfer.service.mjs +0 -89
- package/esm2020/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.mjs +0 -68
- package/esm2020/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.mjs +0 -35
- package/esm2020/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.mjs +0 -48
- package/esm2020/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.mjs +0 -33
- package/esm2020/lib/components/data-view/base/data-view-options-provider-binding.mjs +0 -67
- package/esm2020/lib/components/data-view/base/elder-data-view-base.mjs +0 -259
- package/esm2020/lib/components/data-view/base/elder-data-view-options-provider.mjs +0 -44
- package/esm2020/lib/components/data-view/base/elder-data-view-options.mjs +0 -45
- package/esm2020/lib/components/data-view/base/elder-data-view.mjs +0 -3
- package/esm2020/lib/components/data-view/base/public_api.mjs +0 -6
- package/esm2020/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.mjs +0 -46
- package/esm2020/lib/components/data-view/common/elder-data-common.module.mjs +0 -90
- package/esm2020/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.mjs +0 -150
- package/esm2020/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.mjs +0 -90
- package/esm2020/lib/components/data-view/common/selection/data-context-selection.directive.mjs +0 -98
- package/esm2020/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.mjs +0 -38
- package/esm2020/lib/components/data-view/common/selection/master-selection-state.mjs +0 -10
- package/esm2020/lib/components/data-view/elder-data-view-interaction-mode.mjs +0 -2
- package/esm2020/lib/components/data-view/grid/elder-grid/elder-grid.component.mjs +0 -293
- package/esm2020/lib/components/data-view/grid/elder-grid.module.mjs +0 -85
- package/esm2020/lib/components/data-view/public_api.mjs +0 -6
- package/esm2020/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.mjs +0 -19
- package/esm2020/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.module.mjs +0 -79
- package/esm2020/lib/components/data-view/table/activation/elder-item-activator.mjs +0 -2
- package/esm2020/lib/components/data-view/table/activation/elder-table-activation-options.mjs +0 -2
- package/esm2020/lib/components/data-view/table/activation/elder-table-activation.directive.mjs +0 -261
- package/esm2020/lib/components/data-view/table/elder-number-cell.directive.mjs +0 -29
- package/esm2020/lib/components/data-view/table/elder-paginator-intl.mjs +0 -72
- package/esm2020/lib/components/data-view/table/elder-table/elder-table-toolbar.directive.mjs +0 -18
- package/esm2020/lib/components/data-view/table/elder-table/elder-table.component.mjs +0 -322
- package/esm2020/lib/components/data-view/table/elder-table-column.directive.mjs +0 -17
- package/esm2020/lib/components/data-view/table/elder-table-extension.directive.mjs +0 -96
- package/esm2020/lib/components/data-view/table/elder-table-root.directive.mjs +0 -29
- package/esm2020/lib/components/data-view/table/elder-table-row.directive.mjs +0 -136
- package/esm2020/lib/components/data-view/table/elder-table-sort.directive.mjs +0 -20
- package/esm2020/lib/components/data-view/table/elder-table.module.mjs +0 -142
- package/esm2020/lib/components/data-view/table/model/elder-column-layout.mjs +0 -110
- package/esm2020/lib/components/data-view/table/model/elder-table-model-cdk-table-binding.mjs +0 -81
- package/esm2020/lib/components/data-view/table/model/elder-table-model-provider.mjs +0 -40
- package/esm2020/lib/components/data-view/table/model/elder-table-model-query-group.mjs +0 -87
- package/esm2020/lib/components/data-view/table/model/elder-table-model.mjs +0 -165
- package/esm2020/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.mjs +0 -23
- package/esm2020/lib/components/dialogs/elder-dialog-config.mjs +0 -3
- package/esm2020/lib/components/dialogs/elder-dialog.module.mjs +0 -83
- package/esm2020/lib/components/dialogs/elder-dialog.service.mjs +0 -161
- package/esm2020/lib/components/dialogs/question-dialog/elder-question-dialog.component.mjs +0 -41
- package/esm2020/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.mjs +0 -44
- package/esm2020/lib/components/dialogs/selection-dialog/elder-selection-dialog.directive.mjs +0 -46
- package/esm2020/lib/components/errors/elder-error.module.mjs +0 -45
- package/esm2020/lib/components/errors/error-util.mjs +0 -94
- package/esm2020/lib/components/errors/exception-detail/elder-exception-detail.component.mjs +0 -67
- package/esm2020/lib/components/expand-toggle-button/elder-expand-toggle-button.component.mjs +0 -56
- package/esm2020/lib/components/expand-toggle-button/elder-expand-toggle-button.module.mjs +0 -28
- package/esm2020/lib/components/files/blob-url.mjs +0 -10
- package/esm2020/lib/components/files/blob-viewer/elder-blob-viewer.component.mjs +0 -226
- package/esm2020/lib/components/files/elder-file-drop-zone.directive.mjs +0 -109
- package/esm2020/lib/components/files/elder-file-select.directive.mjs +0 -143
- package/esm2020/lib/components/files/elder-file.module.mjs +0 -68
- package/esm2020/lib/components/files/file-select/file-select.component.mjs +0 -55
- package/esm2020/lib/components/files/file-upload/file-upload.component.mjs +0 -75
- package/esm2020/lib/components/forms/clipboard/elder-clipboard.service.mjs +0 -51
- package/esm2020/lib/components/forms/directives/base/elder-class-hostbinding-base.mjs +0 -34
- package/esm2020/lib/components/forms/directives/elder-clipboard-put.directive.mjs +0 -35
- package/esm2020/lib/components/forms/directives/elder-delayed-focus.directive.mjs +0 -42
- package/esm2020/lib/components/forms/directives/elder-form-field-dense.directive.mjs +0 -34
- package/esm2020/lib/components/forms/directives/elder-form-field-label.directive.mjs +0 -82
- package/esm2020/lib/components/forms/directives/elder-form-field-no-hint.directive.mjs +0 -34
- package/esm2020/lib/components/forms/directives/elder-form-field-no-spinner.directive.mjs +0 -34
- package/esm2020/lib/components/forms/directives/elder-forms-directives.module.mjs +0 -159
- package/esm2020/lib/components/forms/directives/elder-input-pattern.directive.mjs +0 -77
- package/esm2020/lib/components/forms/directives/elder-key-event.directive.mjs +0 -111
- package/esm2020/lib/components/forms/directives/elder-max.directive.mjs +0 -39
- package/esm2020/lib/components/forms/directives/elder-min.directive.mjs +0 -39
- package/esm2020/lib/components/forms/directives/elder-next-focusable.directive.mjs +0 -101
- package/esm2020/lib/components/forms/directives/elder-plug-parent-form.directive.mjs +0 -36
- package/esm2020/lib/components/forms/directives/elder-stop-event-propagation.directive.mjs +0 -29
- package/esm2020/lib/components/forms/directives/elder-tab-focus-trap.directive.mjs +0 -157
- package/esm2020/lib/components/forms/directives/elder-touched.directive.mjs +0 -27
- package/esm2020/lib/components/forms/directives/elder-triple-state-checkbox.directive.mjs +0 -120
- package/esm2020/lib/components/forms/directives/validation/elder-multiple-of.validator.mjs +0 -57
- package/esm2020/lib/components/forms/directives/validation/elder-required-ignore-zero.validator.mjs +0 -68
- package/esm2020/lib/components/forms/elder-forms.module.mjs +0 -22
- package/esm2020/lib/components/forms/public_api.mjs +0 -2
- package/esm2020/lib/components/forms/search/elder-search-context.directive.mjs +0 -146
- package/esm2020/lib/components/forms/search/elder-search-input.directive.mjs +0 -185
- package/esm2020/lib/components/forms/search/elder-search.module.mjs +0 -67
- package/esm2020/lib/components/forms/search/model/search-input-state.mjs +0 -78
- package/esm2020/lib/components/forms/search/model/search-input.mjs +0 -2
- package/esm2020/lib/components/forms/search/search-box/elder-search-box.component.mjs +0 -124
- package/esm2020/lib/components/forms/search/search-box/elder-search-panel.component.mjs +0 -16
- package/esm2020/lib/components/global-search/elder-global-search.component.mjs +0 -127
- package/esm2020/lib/components/global-search/elder-global-search.module.mjs +0 -33
- package/esm2020/lib/components/global-search/elder-global-search.service.mjs +0 -93
- package/esm2020/lib/components/graph/elder-progress-bar/elder-progress-bar.component.mjs +0 -98
- package/esm2020/lib/components/graph/elder-progress-bar/elder-progress-bar.module.mjs +0 -30
- package/esm2020/lib/components/graph/elder-progress-bar/sub-bar.mjs +0 -7
- package/esm2020/lib/components/graph/public_api.mjs +0 -2
- package/esm2020/lib/components/headers/elder-header/elder-header.component.mjs +0 -29
- package/esm2020/lib/components/headers/elder-header.module.mjs +0 -44
- package/esm2020/lib/components/http-support/elder-http-client.service.mjs +0 -68
- package/esm2020/lib/components/http-support/public_api.mjs +0 -2
- package/esm2020/lib/components/i18n/entities/elder-i18n-entities.module.mjs +0 -123
- package/esm2020/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.mjs +0 -136
- package/esm2020/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.mjs +0 -29
- package/esm2020/lib/components/i18n/entities/elder-localized-input-dialog.service.mjs +0 -30
- package/esm2020/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.mjs +0 -152
- package/esm2020/lib/components/i18n/entities/elder-localized-text-column.directive.mjs +0 -28
- package/esm2020/lib/components/i18n/entities/elder-localized-texts.directive.mjs +0 -56
- package/esm2020/lib/components/i18n/entities/picker/i18n-pick-async.pipe.mjs +0 -39
- package/esm2020/lib/components/i18n/entities/picker/i18n-pick.pipe.mjs +0 -30
- package/esm2020/lib/components/i18n/entities/picker/localisation-picker.service.mjs +0 -74
- package/esm2020/lib/components/i18n/language/elder-language-config.mjs +0 -3
- package/esm2020/lib/components/i18n/language/elder-language-interceptor.mjs +0 -69
- package/esm2020/lib/components/i18n/language/elder-language.module.mjs +0 -76
- package/esm2020/lib/components/i18n/language/elder-language.service.mjs +0 -121
- package/esm2020/lib/components/i18n/language/language-switcher/elder-language-switcher.component.mjs +0 -66
- package/esm2020/lib/components/i18n/locales/elder-locales-de-ch.module.mjs +0 -53
- package/esm2020/lib/components/i18n/public_api.mjs +0 -4
- package/esm2020/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.mjs +0 -128
- package/esm2020/lib/components/iframes/data-view/data-view-iframe-adapter.directive.mjs +0 -136
- package/esm2020/lib/components/iframes/elder-iframe.module.mjs +0 -99
- package/esm2020/lib/components/iframes/iframe-close.directive.mjs +0 -41
- package/esm2020/lib/components/iframes/iframe-dialog/iframe-dialog.component.mjs +0 -52
- package/esm2020/lib/components/iframes/iframe-host/iframe-host.component.mjs +0 -127
- package/esm2020/lib/components/iframes/iframe-side-content/iframe-side-content.component.mjs +0 -79
- package/esm2020/lib/components/iframes/iframe.service.mjs +0 -48
- package/esm2020/lib/components/iframes/typed-event-message.mjs +0 -42
- package/esm2020/lib/components/infinitescroll/elder-infinite-autocomplete.directive.mjs +0 -61
- package/esm2020/lib/components/infinitescroll/elder-infinite-scroll.directive.mjs +0 -157
- package/esm2020/lib/components/infinitescroll/elder-infinite-scroll.module.mjs +0 -40
- package/esm2020/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete-option-selected.mjs +0 -9
- package/esm2020/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.mjs +0 -187
- package/esm2020/lib/components/input/autocomplete/elder-autocomplete-many.directive.mjs +0 -197
- package/esm2020/lib/components/input/autocomplete/elder-autocomplete.directive.mjs +0 -114
- package/esm2020/lib/components/input/autocomplete/elder-autocomplete.module.mjs +0 -62
- package/esm2020/lib/components/input/autocomplete/many/word-position-finder.mjs +0 -58
- package/esm2020/lib/components/input/public_api.mjs +0 -2
- package/esm2020/lib/components/labels/elder-labels.module.mjs +0 -30
- package/esm2020/lib/components/labels/labels-input/labels-input.component.mjs +0 -230
- package/esm2020/lib/components/measures/dimensions-input/elder-dimensions-input.component.mjs +0 -240
- package/esm2020/lib/components/measures/directives/elder-unit-select.directive.mjs +0 -64
- package/esm2020/lib/components/measures/elder-measures.module.mjs +0 -120
- package/esm2020/lib/components/measures/elder-quantity-transform.pipe.mjs +0 -41
- package/esm2020/lib/components/measures/elder-quantity.pipe.mjs +0 -73
- package/esm2020/lib/components/measures/elder-unit.service.mjs +0 -115
- package/esm2020/lib/components/measures/model/dimensions.mjs +0 -17
- package/esm2020/lib/components/measures/model/quantity.mjs +0 -12
- package/esm2020/lib/components/measures/model/unit-dimension.mjs +0 -14
- package/esm2020/lib/components/measures/model/unit-registry.mjs +0 -81
- package/esm2020/lib/components/measures/model/unit.mjs +0 -143
- package/esm2020/lib/components/measures/public_api.mjs +0 -8
- package/esm2020/lib/components/measures/quantity-input/elder-quantity-input.component.mjs +0 -190
- package/esm2020/lib/components/measures/util/elder-quantity.service.mjs +0 -237
- package/esm2020/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.mjs +0 -165
- package/esm2020/lib/components/navigation/bread-crumbs/elder-bread-crumbs.module.mjs +0 -56
- package/esm2020/lib/components/navigation/bread-crumbs/path/path.mjs +0 -37
- package/esm2020/lib/components/navigation/nav/elder-nav.module.mjs +0 -52
- package/esm2020/lib/components/navigation/nav/nav-group/elder-nav-group.component.mjs +0 -94
- package/esm2020/lib/components/navigation/nav/nav-link/elder-nav-link.component.mjs +0 -65
- package/esm2020/lib/components/navigation/nav/nav-list/elder-nav-list.component.mjs +0 -14
- package/esm2020/lib/components/navigation/public_api.mjs +0 -4
- package/esm2020/lib/components/navigation/toolbar/elder-toolbar-column.directive.mjs +0 -46
- package/esm2020/lib/components/navigation/toolbar/elder-toolbar.module.mjs +0 -77
- package/esm2020/lib/components/navigation/toolbar/elder-toolbar.service.mjs +0 -68
- package/esm2020/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.mjs +0 -67
- package/esm2020/lib/components/navigation/toolbar/toolbar-column-position.mjs +0 -2
- package/esm2020/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.mjs +0 -39
- package/esm2020/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.service.mjs +0 -85
- package/esm2020/lib/components/overlays/elder-overlay-origin.directive.mjs +0 -43
- package/esm2020/lib/components/overlays/elder-overlay-trigger.directive.mjs +0 -72
- package/esm2020/lib/components/overlays/elder-overlay.component.mjs +0 -204
- package/esm2020/lib/components/overlays/elder-overlay.module.mjs +0 -41
- package/esm2020/lib/components/panels/card-panel/elder-card-panel.component.mjs +0 -13
- package/esm2020/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.mjs +0 -13
- package/esm2020/lib/components/panels/elder-panel.module.mjs +0 -42
- package/esm2020/lib/components/panels/flat/elder-panel.component.mjs +0 -26
- package/esm2020/lib/components/public_api.mjs +0 -40
- package/esm2020/lib/components/select/auto/elder-auto-select-first.directive.mjs +0 -77
- package/esm2020/lib/components/select/auto/elder-select-first-util.mjs +0 -62
- package/esm2020/lib/components/select/elder-select-base.mjs +0 -284
- package/esm2020/lib/components/select/elder-select-chip.directive.mjs +0 -45
- package/esm2020/lib/components/select/elder-select-on-tab.directive.mjs +0 -133
- package/esm2020/lib/components/select/elder-select-value.directive.mjs +0 -15
- package/esm2020/lib/components/select/elder-select.module.mjs +0 -134
- package/esm2020/lib/components/select/multi/elder-multi-select-base.mjs +0 -356
- package/esm2020/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.mjs +0 -238
- package/esm2020/lib/components/select/multi/elder-multi-select-form-field.mjs +0 -67
- package/esm2020/lib/components/select/popup/selection-model-popup-trigger-adapter.directive.mjs +0 -86
- package/esm2020/lib/components/select/popup/selection-model-popup.directive.mjs +0 -126
- package/esm2020/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.mjs +0 -48
- package/esm2020/lib/components/select/public_api.mjs +0 -6
- package/esm2020/lib/components/select/single/elder-clear-select.directive.mjs +0 -57
- package/esm2020/lib/components/select/single/elder-select/elder-select.component.mjs +0 -443
- package/esm2020/lib/components/select/single/elder-select-form-field.mjs +0 -45
- package/esm2020/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.mjs +0 -154
- package/esm2020/lib/components/select-chip-list/elder-chip-list-select.module.mjs +0 -49
- package/esm2020/lib/components/select-list/elder-select-list.module.mjs +0 -37
- package/esm2020/lib/components/select-list/select-list/elder-select-list.component.mjs +0 -76
- package/esm2020/lib/components/select-list/select-list-item/elder-select-list-item.component.mjs +0 -119
- package/esm2020/lib/components/shell/drawers/drawer-outlet-binding.mjs +0 -60
- package/esm2020/lib/components/shell/drawers/elder-route-outlet-drawer.service.mjs +0 -117
- package/esm2020/lib/components/shell/drawers/elder-router-outlet.service.mjs +0 -128
- package/esm2020/lib/components/shell/elder-shell-slot.directive.mjs +0 -46
- package/esm2020/lib/components/shell/elder-shell.module.mjs +0 -91
- package/esm2020/lib/components/shell/elder-shell.service.mjs +0 -145
- package/esm2020/lib/components/shell/header/elder-app-header/elder-app-header.component.mjs +0 -74
- package/esm2020/lib/components/shell/shell/elder-shell.component.mjs +0 -207
- package/esm2020/lib/components/shell/shell-content-slot.mjs +0 -2
- package/esm2020/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.mjs +0 -137
- package/esm2020/lib/components/tabs/elder-tab/elder-tab.directive.mjs +0 -25
- package/esm2020/lib/components/tabs/elder-tab-group-routing/elder-tab-group-routing.directive.mjs +0 -256
- package/esm2020/lib/components/tabs/elder-tab.module.mjs +0 -36
- package/esm2020/lib/components/theme/elder-theme-applier.directive.mjs +0 -62
- package/esm2020/lib/components/theme/elder-theme-preference.service.mjs +0 -74
- package/esm2020/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.mjs +0 -72
- package/esm2020/lib/components/theme/elder-theme.directive.mjs +0 -61
- package/esm2020/lib/components/theme/elder-theme.module.mjs +0 -74
- package/esm2020/lib/components/theme/elder-theme.service.mjs +0 -123
- package/esm2020/lib/components/theme/known-elder-themes.mjs +0 -6
- package/esm2020/lib/components/theme/public_api.mjs +0 -2
- package/esm2020/lib/components/theme/theme-spec.mjs +0 -15
- package/esm2020/lib/components/time/date-adapters/custom-date-adapter.mjs +0 -23
- package/esm2020/lib/components/time/duration/duration-bucket.mjs +0 -67
- package/esm2020/lib/components/time/duration/duration-format.mjs +0 -271
- package/esm2020/lib/components/time/duration/elder-duration-input/elder-duration-input.component.mjs +0 -110
- package/esm2020/lib/components/time/duration/iso-duration-str.mjs +0 -2
- package/esm2020/lib/components/time/elder-date-switcher/elder-date-switcher.component.mjs +0 -101
- package/esm2020/lib/components/time/elder-date-time-input/elder-date-time-input.component.mjs +0 -80
- package/esm2020/lib/components/time/elder-interval-input/elder-interval-input.component.mjs +0 -127
- package/esm2020/lib/components/time/elder-local-date-input/elder-local-date-input.component.mjs +0 -190
- package/esm2020/lib/components/time/elder-local-time-input/elder-local-time-input.component.mjs +0 -85
- package/esm2020/lib/components/time/elder-time.module.mjs +0 -143
- package/esm2020/lib/components/time/period/elder-period-input/elder-period-input.component.mjs +0 -120
- package/esm2020/lib/components/time/period/period-bucket.mjs +0 -31
- package/esm2020/lib/components/time/period/period-format.mjs +0 -89
- package/esm2020/lib/components/time/public_api.mjs +0 -8
- package/esm2020/lib/components/toasts/elder-toast.module.mjs +0 -23
- package/esm2020/lib/components/toasts/elder-toast.service.mjs +0 -197
- package/esm2020/lib/components/toasts/standard-toast/standard-toast.component.mjs +0 -74
- package/esm2020/lib/components/toasts/toast-type.mjs +0 -7
- package/esm2020/lib/components/toasts/toast.mjs +0 -2
- package/esm2020/lib/components/url-fragment/elder-url-fragment.mjs +0 -9
- package/esm2020/lib/components/url-fragment/elder-url-fragment.module.mjs +0 -58
- package/esm2020/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.mjs +0 -85
- package/esm2020/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.mjs +0 -65
- package/esm2020/lib/components/viewers/elder-viewers.module.mjs +0 -25
- package/esm2020/lib/features/event-source/elder-event-source.service.mjs +0 -56
- package/esm2020/lib/features/event-source/public_api.mjs +0 -3
- package/esm2020/lib/features/event-source/reactive-event-source.mjs +0 -198
- package/esm2020/lib/features/kafent/access-token-provider.mjs +0 -20
- package/esm2020/lib/features/kafent/kafent-config.mjs +0 -24
- package/esm2020/lib/features/kafent/kafent-event-stream.mjs +0 -25
- package/esm2020/lib/features/kafent/kafent-event.mjs +0 -3
- package/esm2020/lib/features/kafent/kafent-event.service.mjs +0 -107
- package/esm2020/lib/features/kafent/kafent-live-event-request.mjs +0 -2
- package/esm2020/lib/features/kafent/kafent.module.mjs +0 -61
- package/esm2020/lib/features/kafent/sse/kafent-event-stream-sse.service.mjs +0 -128
- package/esm2020/lib/features/kafent/sse/kafent-topic-sse.mjs +0 -98
- package/esm2020/lib/features/public_api.mjs +0 -3
- package/esm2020/lib/pipes/bytes.pipe.mjs +0 -24
- package/esm2020/lib/pipes/elder-pipes.module.mjs +0 -67
- package/esm2020/lib/pipes/elder-repeat.pipe.mjs +0 -21
- package/esm2020/lib/pipes/elder-round.pipe.mjs +0 -35
- package/esm2020/lib/pipes/elder-safe-url.pipe.mjs +0 -20
- package/esm2020/lib/pipes/elder-truncate.pipe.mjs +0 -40
- package/esm2020/lib/pipes/iso-duration.pipe.mjs +0 -58
- package/esm2020/lib/pipes/iso-interval-parse.pipe.mjs +0 -49
- package/esm2020/lib/pipes/iso-interval.pipe.mjs +0 -109
- package/esm2020/lib/pipes/public_api.mjs +0 -2
- package/esm2020/lib/pipes/time-ago.pipe.mjs +0 -104
- package/esm2020/lib/pipes/time-duration.pipe.mjs +0 -98
- package/esm2020/lib/pipes/weight.pipe.mjs +0 -56
- package/esm2020/public_api.mjs +0 -8
- package/fesm2015/elderbyte-ngx-starter.mjs +0 -27541
- package/fesm2015/elderbyte-ngx-starter.mjs.map +0 -1
- package/fesm2020/elderbyte-ngx-starter.mjs +0 -27428
- package/fesm2020/elderbyte-ngx-starter.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/common/async/public_api.d.ts +0 -1
- package/lib/common/async/refreshing-entity.d.ts +0 -55
- package/lib/common/csv/csv-serializer.d.ts +0 -33
- package/lib/common/csv/csv-spec.d.ts +0 -71
- package/lib/common/csv/public_api.d.ts +0 -2
- package/lib/common/data/continuable-listing.d.ts +0 -28
- package/lib/common/data/data-context/data-context-active-page.d.ts +0 -75
- package/lib/common/data/data-context/data-context-auto-starter.d.ts +0 -41
- package/lib/common/data/data-context/data-context-base.d.ts +0 -149
- package/lib/common/data/data-context/data-context-builder.d.ts +0 -142
- package/lib/common/data/data-context/data-context-continuable-base.d.ts +0 -43
- package/lib/common/data/data-context/data-context-continuable-paged.d.ts +0 -58
- package/lib/common/data/data-context/data-context-continuable-token.d.ts +0 -48
- package/lib/common/data/data-context/data-context-life-cycle-binding.d.ts +0 -33
- package/lib/common/data/data-context/data-context-simple.d.ts +0 -30
- package/lib/common/data/data-context/data-context-source-auto-reloader.d.ts +0 -8
- package/lib/common/data/data-context/data-context-status.d.ts +0 -30
- package/lib/common/data/data-context/data-context.d.ts +0 -154
- package/lib/common/data/data-context/mat-table-data-context-binding.d.ts +0 -60
- package/lib/common/data/data-context/public_api.d.ts +0 -13
- package/lib/common/data/datasource/data-source-adapter.d.ts +0 -39
- package/lib/common/data/datasource/data-source-processor.d.ts +0 -106
- package/lib/common/data/datasource/data-source.d.ts +0 -58
- package/lib/common/data/datasource/entity-id-util.d.ts +0 -3
- package/lib/common/data/datasource/fetcher/delegate-data-source.d.ts +0 -84
- package/lib/common/data/datasource/local/local-list-data-source.d.ts +0 -61
- package/lib/common/data/datasource/local/local-paged-data-source.d.ts +0 -49
- package/lib/common/data/datasource/public_api.d.ts +0 -7
- package/lib/common/data/datasource/rest/public_api.d.ts +0 -1
- package/lib/common/data/datasource/rest/rest-client.d.ts +0 -162
- package/lib/common/data/entity-set-patch.d.ts +0 -74
- package/lib/common/data/field-comparator.d.ts +0 -43
- package/lib/common/data/filters/filter-context.d.ts +0 -63
- package/lib/common/data/filters/filter.d.ts +0 -52
- package/lib/common/data/http-params-builder.d.ts +0 -45
- package/lib/common/data/page.d.ts +0 -41
- package/lib/common/data/public_api.d.ts +0 -11
- package/lib/common/data/required-filter-evaluator.d.ts +0 -46
- package/lib/common/data/sort-context.d.ts +0 -42
- package/lib/common/data/sort.d.ts +0 -8
- package/lib/common/data/token-chunk-request.d.ts +0 -8
- package/lib/common/enums/elder-enum-translation.service.d.ts +0 -52
- package/lib/common/enums/public_api.d.ts +0 -1
- package/lib/common/errors/exception-detail.d.ts +0 -5
- package/lib/common/errors/standard-error-detail.d.ts +0 -22
- package/lib/common/format/bytes-format.d.ts +0 -4
- package/lib/common/format/bytes-per-second-format.d.ts +0 -5
- package/lib/common/forms/elder-entity-value-accessor.d.ts +0 -42
- package/lib/common/forms/elder-form-field-control-base.directive.d.ts +0 -103
- package/lib/common/forms/elder-from-field-base.d.ts +0 -52
- package/lib/common/forms/elder-from-field-entity-base.d.ts +0 -31
- package/lib/common/forms/elder-from-field-multi-entity-base.d.ts +0 -35
- package/lib/common/forms/elder-multi-entity-value-accessor.d.ts +0 -52
- package/lib/common/forms/form-field-base.component.d.ts +0 -74
- package/lib/common/forms/multi-model-base.component.d.ts +0 -23
- package/lib/common/forms/public_api.d.ts +0 -11
- package/lib/common/forms/template-composite-control.d.ts +0 -64
- package/lib/common/forms/value-accessor-base.d.ts +0 -98
- package/lib/common/forms/view-providers.d.ts +0 -23
- package/lib/common/http/http-client-builder.service.d.ts +0 -6
- package/lib/common/http/http-client-pristine.d.ts +0 -10
- package/lib/common/http/public_api.d.ts +0 -4
- package/lib/common/http/transfer/data-transfer-factory.d.ts +0 -70
- package/lib/common/http/transfer/data-transfer-progress-aggregate.d.ts +0 -27
- package/lib/common/http/transfer/data-transfer-progress.d.ts +0 -13
- package/lib/common/http/transfer/data-transfer-state.d.ts +0 -52
- package/lib/common/http/transfer/data-transfer-status.d.ts +0 -22
- package/lib/common/http/transfer/http-data-transfer.d.ts +0 -96
- package/lib/common/http/transfer/public_api.d.ts +0 -6
- package/lib/common/http/upload/file-upload-client.d.ts +0 -38
- package/lib/common/i18n/entity/impl/i18n-base.d.ts +0 -6
- package/lib/common/i18n/entity/impl/i18n-text.d.ts +0 -11
- package/lib/common/i18n/entity/language-tag.d.ts +0 -15
- package/lib/common/i18n/entity/locale.d.ts +0 -8
- package/lib/common/i18n/entity/localisation-picker.d.ts +0 -14
- package/lib/common/i18n/entity/localized.d.ts +0 -10
- package/lib/common/i18n/entity/public_api.d.ts +0 -5
- package/lib/common/i18n/public_api.d.ts +0 -1
- package/lib/common/json-map.d.ts +0 -7
- package/lib/common/objects.d.ts +0 -19
- package/lib/common/public_api.d.ts +0 -18
- package/lib/common/reactive-map.d.ts +0 -40
- package/lib/common/selection/selection-model.d.ts +0 -82
- package/lib/common/sets.d.ts +0 -20
- package/lib/common/suggestion-provider.d.ts +0 -13
- package/lib/common/templates/template-slot-manager.d.ts +0 -70
- package/lib/common/time/date-util.d.ts +0 -54
- package/lib/common/time/interval.d.ts +0 -287
- package/lib/common/time/period-duration.d.ts +0 -84
- package/lib/common/time/public_api.d.ts +0 -4
- package/lib/common/time/time-util.d.ts +0 -15
- package/lib/common/url/elder-router.service.d.ts +0 -36
- package/lib/common/url/elder-url-fragment-params.service.d.ts +0 -62
- package/lib/common/url/public_api.d.ts +0 -3
- package/lib/common/url/url-query-params.d.ts +0 -96
- package/lib/common/utils/batcher.d.ts +0 -14
- package/lib/common/utils/collection-util.d.ts +0 -35
- package/lib/common/utils/filter-util.d.ts +0 -7
- package/lib/common/utils/next-number-util.d.ts +0 -39
- package/lib/common/utils/ng-zone-utils.d.ts +0 -7
- package/lib/common/utils/parse-util.d.ts +0 -8
- package/lib/common/utils/property-path-util.d.ts +0 -8
- package/lib/common/utils/query-list-binding.d.ts +0 -57
- package/lib/common/utils/sort-util.d.ts +0 -10
- package/lib/common/utils/url-builder.d.ts +0 -160
- package/lib/common/utils/uuid-util.d.ts +0 -18
- package/lib/common/utils/value-wrapper.d.ts +0 -15
- package/lib/components/access-denied/elder-access-denied.component.d.ts +0 -8
- package/lib/components/access-denied/elder-access-denied.module.d.ts +0 -12
- package/lib/components/auditing/audited-entity/elder-audited-entity.component.d.ts +0 -21
- package/lib/components/auditing/elder-audit.module.d.ts +0 -15
- package/lib/components/auditing/i-audited-entity.d.ts +0 -13
- package/lib/components/button-group/elder-button-group/elder-button-group.component.d.ts +0 -8
- package/lib/components/button-group/elder-button-group.module.d.ts +0 -13
- package/lib/components/card-organizer/card-organizer/elder-card-organizer.component.d.ts +0 -64
- package/lib/components/card-organizer/card-organizer/elder-stack-card.directive.d.ts +0 -9
- package/lib/components/card-organizer/card-organizer-data.d.ts +0 -57
- package/lib/components/card-organizer/card-stack/elder-card-stack.component.d.ts +0 -89
- package/lib/components/card-organizer/card-stack.d.ts +0 -146
- package/lib/components/card-organizer/elder-card-organizer.module.d.ts +0 -23
- package/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.d.ts +0 -6
- package/lib/components/cards/elder-card/elder-card.component.d.ts +0 -68
- package/lib/components/cards/elder-card/elder-card.module.d.ts +0 -14
- package/lib/components/connectivity/elder-connectivity.module.d.ts +0 -15
- package/lib/components/connectivity/elder-connectivity.service.d.ts +0 -36
- package/lib/components/connectivity/offline-indicator/elder-offline-indicator.component.d.ts +0 -33
- package/lib/components/connectivity/public_api.d.ts +0 -2
- package/lib/components/containers/elder-containers.module.d.ts +0 -10
- package/lib/components/containers/elder-scroll-container/elder-scroll-container.component.d.ts +0 -12
- package/lib/components/containers/public_api.d.ts +0 -1
- package/lib/components/csv/elder-csv-export-btn/elder-csv-export-btn.component.d.ts +0 -51
- package/lib/components/csv/elder-csv-stream-exporter-builder.d.ts +0 -35
- package/lib/components/csv/elder-csv-stream-exporter-builder.service.d.ts +0 -28
- package/lib/components/csv/elder-csv-stream-exporter.d.ts +0 -58
- package/lib/components/csv/elder-csv.module.d.ts +0 -14
- package/lib/components/currency/elder-currency.module.d.ts +0 -8
- package/lib/components/currency/elder-currency.pipe.d.ts +0 -21
- package/lib/components/currency/model/currency-code.d.ts +0 -36
- package/lib/components/currency/model/currency-unit-registry.d.ts +0 -23
- package/lib/components/currency/model/currency-unit.d.ts +0 -7
- package/lib/components/currency/model/currency.d.ts +0 -10
- package/lib/components/currency/public_api.d.ts +0 -6
- package/lib/components/data-transfer/elder-data-transfer.module.d.ts +0 -27
- package/lib/components/data-transfer/elder-data-transfer.service.d.ts +0 -55
- package/lib/components/data-transfer/http-data-transfer/http-data-transfer.component.d.ts +0 -30
- package/lib/components/data-transfer/http-data-transfer-aggregate/http-data-transfer-aggregate.component.d.ts +0 -29
- package/lib/components/data-transfer/http-data-transfer-indicator/http-data-transfer-indicator.component.d.ts +0 -31
- package/lib/components/data-transfer/http-data-transfer-overview/http-data-transfer-overview.component.d.ts +0 -28
- package/lib/components/data-view/base/data-view-options-provider-binding.d.ts +0 -39
- package/lib/components/data-view/base/elder-data-view-base.d.ts +0 -129
- package/lib/components/data-view/base/elder-data-view-options-provider.d.ts +0 -38
- package/lib/components/data-view/base/elder-data-view-options.d.ts +0 -34
- package/lib/components/data-view/base/elder-data-view.d.ts +0 -7
- package/lib/components/data-view/base/public_api.d.ts +0 -5
- package/lib/components/data-view/common/data-context-state-indicator/data-context-state-indicator.component.d.ts +0 -32
- package/lib/components/data-view/common/elder-data-common.module.d.ts +0 -30
- package/lib/components/data-view/common/elder-data-toolbar/elder-data-toolbar.component.d.ts +0 -66
- package/lib/components/data-view/common/elder-single-sort/elder-single-sort.component.d.ts +0 -45
- package/lib/components/data-view/common/selection/data-context-selection.directive.d.ts +0 -48
- package/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.d.ts +0 -26
- package/lib/components/data-view/common/selection/master-selection-state.d.ts +0 -8
- package/lib/components/data-view/elder-data-view-interaction-mode.d.ts +0 -21
- package/lib/components/data-view/grid/elder-grid/elder-grid.component.d.ts +0 -112
- package/lib/components/data-view/grid/elder-grid.module.d.ts +0 -25
- package/lib/components/data-view/public_api.d.ts +0 -5
- package/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.component.d.ts +0 -9
- package/lib/components/data-view/simple/elder-simple-selection-view/elder-simple-selection-view.module.d.ts +0 -29
- package/lib/components/data-view/table/activation/elder-item-activator.d.ts +0 -3
- package/lib/components/data-view/table/activation/elder-table-activation-options.d.ts +0 -16
- package/lib/components/data-view/table/activation/elder-table-activation.directive.d.ts +0 -78
- package/lib/components/data-view/table/elder-number-cell.directive.d.ts +0 -12
- package/lib/components/data-view/table/elder-paginator-intl.d.ts +0 -38
- package/lib/components/data-view/table/elder-table/elder-table-toolbar.directive.d.ts +0 -12
- package/lib/components/data-view/table/elder-table/elder-table.component.d.ts +0 -129
- package/lib/components/data-view/table/elder-table-column.directive.d.ts +0 -9
- package/lib/components/data-view/table/elder-table-extension.directive.d.ts +0 -53
- package/lib/components/data-view/table/elder-table-root.directive.d.ts +0 -15
- package/lib/components/data-view/table/elder-table-row.directive.d.ts +0 -63
- package/lib/components/data-view/table/elder-table-sort.directive.d.ts +0 -11
- package/lib/components/data-view/table/elder-table.module.d.ts +0 -48
- package/lib/components/data-view/table/model/elder-column-layout.d.ts +0 -44
- package/lib/components/data-view/table/model/elder-table-model-cdk-table-binding.d.ts +0 -44
- package/lib/components/data-view/table/model/elder-table-model-provider.d.ts +0 -25
- package/lib/components/data-view/table/model/elder-table-model-query-group.d.ts +0 -53
- package/lib/components/data-view/table/model/elder-table-model.d.ts +0 -83
- package/lib/components/dialogs/confirm-dialog/elder-confirm-dialog.component.d.ts +0 -22
- package/lib/components/dialogs/elder-dialog-config.d.ts +0 -16
- package/lib/components/dialogs/elder-dialog.module.d.ts +0 -36
- package/lib/components/dialogs/elder-dialog.service.d.ts +0 -71
- package/lib/components/dialogs/question-dialog/elder-question-dialog.component.d.ts +0 -22
- package/lib/components/dialogs/selection-dialog/elder-selection-dialog/elder-selection-dialog.component.d.ts +0 -29
- package/lib/components/dialogs/selection-dialog/elder-selection-dialog.directive.d.ts +0 -24
- package/lib/components/errors/elder-error.module.d.ts +0 -17
- package/lib/components/errors/error-util.d.ts +0 -23
- package/lib/components/errors/exception-detail/elder-exception-detail.component.d.ts +0 -42
- package/lib/components/expand-toggle-button/elder-expand-toggle-button.component.d.ts +0 -33
- package/lib/components/expand-toggle-button/elder-expand-toggle-button.module.d.ts +0 -12
- package/lib/components/files/blob-url.d.ts +0 -6
- package/lib/components/files/blob-viewer/elder-blob-viewer.component.d.ts +0 -107
- package/lib/components/files/elder-file-drop-zone.directive.d.ts +0 -45
- package/lib/components/files/elder-file-select.directive.d.ts +0 -66
- package/lib/components/files/elder-file.module.d.ts +0 -24
- package/lib/components/files/file-select/file-select.component.d.ts +0 -34
- package/lib/components/files/file-upload/file-upload.component.d.ts +0 -45
- package/lib/components/forms/clipboard/elder-clipboard.service.d.ts +0 -26
- package/lib/components/forms/directives/base/elder-class-hostbinding-base.d.ts +0 -32
- package/lib/components/forms/directives/elder-clipboard-put.directive.d.ts +0 -22
- package/lib/components/forms/directives/elder-delayed-focus.directive.d.ts +0 -21
- package/lib/components/forms/directives/elder-form-field-dense.directive.d.ts +0 -19
- package/lib/components/forms/directives/elder-form-field-label.directive.d.ts +0 -58
- package/lib/components/forms/directives/elder-form-field-no-hint.directive.d.ts +0 -19
- package/lib/components/forms/directives/elder-form-field-no-spinner.directive.d.ts +0 -19
- package/lib/components/forms/directives/elder-forms-directives.module.d.ts +0 -68
- package/lib/components/forms/directives/elder-input-pattern.directive.d.ts +0 -41
- package/lib/components/forms/directives/elder-key-event.directive.d.ts +0 -58
- package/lib/components/forms/directives/elder-max.directive.d.ts +0 -11
- package/lib/components/forms/directives/elder-min.directive.d.ts +0 -11
- package/lib/components/forms/directives/elder-next-focusable.directive.d.ts +0 -48
- package/lib/components/forms/directives/elder-plug-parent-form.directive.d.ts +0 -13
- package/lib/components/forms/directives/elder-stop-event-propagation.directive.d.ts +0 -16
- package/lib/components/forms/directives/elder-tab-focus-trap.directive.d.ts +0 -63
- package/lib/components/forms/directives/elder-touched.directive.d.ts +0 -14
- package/lib/components/forms/directives/elder-triple-state-checkbox.directive.d.ts +0 -51
- package/lib/components/forms/directives/validation/elder-multiple-of.validator.d.ts +0 -20
- package/lib/components/forms/directives/validation/elder-required-ignore-zero.validator.d.ts +0 -33
- package/lib/components/forms/elder-forms.module.d.ts +0 -12
- package/lib/components/forms/public_api.d.ts +0 -1
- package/lib/components/forms/search/elder-search-context.directive.d.ts +0 -79
- package/lib/components/forms/search/elder-search-input.directive.d.ts +0 -85
- package/lib/components/forms/search/elder-search.module.d.ts +0 -26
- package/lib/components/forms/search/model/search-input-state.d.ts +0 -67
- package/lib/components/forms/search/model/search-input.d.ts +0 -21
- package/lib/components/forms/search/search-box/elder-search-box.component.d.ts +0 -72
- package/lib/components/forms/search/search-box/elder-search-panel.component.d.ts +0 -6
- package/lib/components/global-search/elder-global-search.component.d.ts +0 -39
- package/lib/components/global-search/elder-global-search.module.d.ts +0 -19
- package/lib/components/global-search/elder-global-search.service.d.ts +0 -54
- package/lib/components/graph/elder-progress-bar/elder-progress-bar.component.d.ts +0 -54
- package/lib/components/graph/elder-progress-bar/elder-progress-bar.module.d.ts +0 -11
- package/lib/components/graph/elder-progress-bar/sub-bar.d.ts +0 -5
- package/lib/components/headers/elder-header/elder-header.component.d.ts +0 -25
- package/lib/components/headers/elder-header.module.d.ts +0 -12
- package/lib/components/http-support/elder-http-client.service.d.ts +0 -48
- package/lib/components/http-support/public_api.d.ts +0 -1
- package/lib/components/i18n/entities/elder-i18n-entities.module.d.ts +0 -38
- package/lib/components/i18n/entities/elder-localized-input/elder-localized-input.component.d.ts +0 -62
- package/lib/components/i18n/entities/elder-localized-input-dialog/elder-localized-input-dialog.component.d.ts +0 -22
- package/lib/components/i18n/entities/elder-localized-input-dialog.service.d.ts +0 -13
- package/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.d.ts +0 -67
- package/lib/components/i18n/entities/elder-localized-text-column.directive.d.ts +0 -17
- package/lib/components/i18n/entities/elder-localized-texts.directive.d.ts +0 -37
- package/lib/components/i18n/entities/picker/i18n-pick-async.pipe.d.ts +0 -23
- package/lib/components/i18n/entities/picker/i18n-pick.pipe.d.ts +0 -22
- package/lib/components/i18n/entities/picker/localisation-picker.service.d.ts +0 -44
- package/lib/components/i18n/language/elder-language-config.d.ts +0 -14
- package/lib/components/i18n/language/elder-language-interceptor.d.ts +0 -41
- package/lib/components/i18n/language/elder-language.module.d.ts +0 -27
- package/lib/components/i18n/language/elder-language.service.d.ts +0 -77
- package/lib/components/i18n/language/language-switcher/elder-language-switcher.component.d.ts +0 -37
- package/lib/components/i18n/locales/elder-locales-de-ch.module.d.ts +0 -10
- package/lib/components/iframes/data-view/data-view-iframe/data-view-iframe.component.d.ts +0 -68
- package/lib/components/iframes/data-view/data-view-iframe-adapter.directive.d.ts +0 -62
- package/lib/components/iframes/elder-iframe.module.d.ts +0 -28
- package/lib/components/iframes/iframe-close.directive.d.ts +0 -24
- package/lib/components/iframes/iframe-dialog/iframe-dialog.component.d.ts +0 -36
- package/lib/components/iframes/iframe-host/iframe-host.component.d.ts +0 -92
- package/lib/components/iframes/iframe-side-content/iframe-side-content.component.d.ts +0 -48
- package/lib/components/iframes/iframe.service.d.ts +0 -25
- package/lib/components/iframes/typed-event-message.d.ts +0 -26
- package/lib/components/infinitescroll/elder-infinite-autocomplete.directive.d.ts +0 -30
- package/lib/components/infinitescroll/elder-infinite-scroll.directive.d.ts +0 -63
- package/lib/components/infinitescroll/elder-infinite-scroll.module.d.ts +0 -19
- package/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete-option-selected.d.ts +0 -8
- package/lib/components/input/autocomplete/elder-autocomplete/elder-autocomplete.component.d.ts +0 -87
- package/lib/components/input/autocomplete/elder-autocomplete-many.directive.d.ts +0 -78
- package/lib/components/input/autocomplete/elder-autocomplete.directive.d.ts +0 -60
- package/lib/components/input/autocomplete/elder-autocomplete.module.d.ts +0 -20
- package/lib/components/input/autocomplete/many/word-position-finder.d.ts +0 -15
- package/lib/components/input/public_api.d.ts +0 -1
- package/lib/components/labels/elder-labels.module.d.ts +0 -15
- package/lib/components/labels/labels-input/labels-input.component.d.ts +0 -91
- package/lib/components/measures/dimensions-input/elder-dimensions-input.component.d.ts +0 -111
- package/lib/components/measures/directives/elder-unit-select.directive.d.ts +0 -30
- package/lib/components/measures/elder-measures.module.d.ts +0 -33
- package/lib/components/measures/elder-quantity-transform.pipe.d.ts +0 -22
- package/lib/components/measures/elder-quantity.pipe.d.ts +0 -40
- package/lib/components/measures/elder-unit.service.d.ts +0 -39
- package/lib/components/measures/model/dimensions.d.ts +0 -11
- package/lib/components/measures/model/quantity.d.ts +0 -7
- package/lib/components/measures/model/unit-dimension.d.ts +0 -12
- package/lib/components/measures/model/unit-registry.d.ts +0 -46
- package/lib/components/measures/model/unit.d.ts +0 -111
- package/lib/components/measures/public_api.d.ts +0 -7
- package/lib/components/measures/quantity-input/elder-quantity-input.component.d.ts +0 -94
- package/lib/components/measures/util/elder-quantity.service.d.ts +0 -116
- package/lib/components/navigation/bread-crumbs/bread-crumbs/elder-bread-crumbs.component.d.ts +0 -69
- package/lib/components/navigation/bread-crumbs/elder-bread-crumbs.module.d.ts +0 -19
- package/lib/components/navigation/bread-crumbs/path/path.d.ts +0 -31
- package/lib/components/navigation/nav/elder-nav.module.d.ts +0 -19
- package/lib/components/navigation/nav/nav-group/elder-nav-group.component.d.ts +0 -45
- package/lib/components/navigation/nav/nav-link/elder-nav-link.component.d.ts +0 -27
- package/lib/components/navigation/nav/nav-list/elder-nav-list.component.d.ts +0 -8
- package/lib/components/navigation/toolbar/elder-toolbar-column.directive.d.ts +0 -34
- package/lib/components/navigation/toolbar/elder-toolbar.module.d.ts +0 -24
- package/lib/components/navigation/toolbar/elder-toolbar.service.d.ts +0 -46
- package/lib/components/navigation/toolbar/toolbar/elder-toolbar.component.d.ts +0 -42
- package/lib/components/navigation/toolbar/toolbar-column-position.d.ts +0 -9
- package/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.d.ts +0 -30
- package/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.service.d.ts +0 -47
- package/lib/components/overlays/elder-overlay-origin.directive.d.ts +0 -28
- package/lib/components/overlays/elder-overlay-trigger.directive.d.ts +0 -36
- package/lib/components/overlays/elder-overlay.component.d.ts +0 -88
- package/lib/components/overlays/elder-overlay.module.d.ts +0 -14
- package/lib/components/panels/card-panel/elder-card-panel.component.d.ts +0 -6
- package/lib/components/panels/elder-dialog-panel/elder-dialog-panel.component.d.ts +0 -6
- package/lib/components/panels/elder-panel.module.d.ts +0 -15
- package/lib/components/panels/flat/elder-panel.component.d.ts +0 -15
- package/lib/components/select/auto/elder-auto-select-first.directive.d.ts +0 -45
- package/lib/components/select/auto/elder-select-first-util.d.ts +0 -22
- package/lib/components/select/elder-select-base.d.ts +0 -149
- package/lib/components/select/elder-select-chip.directive.d.ts +0 -23
- package/lib/components/select/elder-select-on-tab.directive.d.ts +0 -55
- package/lib/components/select/elder-select-value.directive.d.ts +0 -9
- package/lib/components/select/elder-select.module.d.ts +0 -49
- package/lib/components/select/multi/elder-multi-select-base.d.ts +0 -120
- package/lib/components/select/multi/elder-multi-select-chips/elder-multi-select-chips.component.d.ts +0 -105
- package/lib/components/select/multi/elder-multi-select-form-field.d.ts +0 -34
- package/lib/components/select/popup/selection-model-popup-trigger-adapter.directive.d.ts +0 -42
- package/lib/components/select/popup/selection-model-popup.directive.d.ts +0 -49
- package/lib/components/select/popup/templated-selection-dialog/templated-selection-dialog.component.d.ts +0 -32
- package/lib/components/select/public_api.d.ts +0 -5
- package/lib/components/select/single/elder-clear-select.directive.d.ts +0 -34
- package/lib/components/select/single/elder-select/elder-select.component.d.ts +0 -155
- package/lib/components/select/single/elder-select-form-field.d.ts +0 -30
- package/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.d.ts +0 -78
- package/lib/components/select-chip-list/elder-chip-list-select.module.d.ts +0 -13
- package/lib/components/select-list/elder-select-list.module.d.ts +0 -16
- package/lib/components/select-list/select-list/elder-select-list.component.d.ts +0 -53
- package/lib/components/select-list/select-list-item/elder-select-list-item.component.d.ts +0 -57
- package/lib/components/shell/drawers/drawer-outlet-binding.d.ts +0 -36
- package/lib/components/shell/drawers/elder-route-outlet-drawer.service.d.ts +0 -55
- package/lib/components/shell/drawers/elder-router-outlet.service.d.ts +0 -64
- package/lib/components/shell/elder-shell-slot.directive.d.ts +0 -34
- package/lib/components/shell/elder-shell.module.d.ts +0 -31
- package/lib/components/shell/elder-shell.service.d.ts +0 -98
- package/lib/components/shell/header/elder-app-header/elder-app-header.component.d.ts +0 -43
- package/lib/components/shell/shell/elder-shell.component.d.ts +0 -99
- package/lib/components/shell/shell-content-slot.d.ts +0 -4
- package/lib/components/shell/shell-navigation-toggle/elder-shell-navigation-toggle.component.d.ts +0 -66
- package/lib/components/tabs/elder-tab/elder-tab.directive.d.ts +0 -19
- package/lib/components/tabs/elder-tab-group-routing/elder-tab-group-routing.directive.d.ts +0 -100
- package/lib/components/tabs/elder-tab.module.d.ts +0 -13
- package/lib/components/theme/elder-theme-applier.directive.d.ts +0 -36
- package/lib/components/theme/elder-theme-preference.service.d.ts +0 -35
- package/lib/components/theme/elder-theme-toggle/elder-theme-toggle.component.d.ts +0 -37
- package/lib/components/theme/elder-theme.directive.d.ts +0 -38
- package/lib/components/theme/elder-theme.module.d.ts +0 -22
- package/lib/components/theme/elder-theme.service.d.ts +0 -51
- package/lib/components/theme/known-elder-themes.d.ts +0 -5
- package/lib/components/theme/theme-spec.d.ts +0 -18
- package/lib/components/time/date-adapters/custom-date-adapter.d.ts +0 -12
- package/lib/components/time/duration/duration-bucket.d.ts +0 -37
- package/lib/components/time/duration/duration-format.d.ts +0 -62
- package/lib/components/time/duration/elder-duration-input/elder-duration-input.component.d.ts +0 -58
- package/lib/components/time/duration/iso-duration-str.d.ts +0 -5
- package/lib/components/time/elder-date-switcher/elder-date-switcher.component.d.ts +0 -60
- package/lib/components/time/elder-date-time-input/elder-date-time-input.component.d.ts +0 -42
- package/lib/components/time/elder-interval-input/elder-interval-input.component.d.ts +0 -84
- package/lib/components/time/elder-local-date-input/elder-local-date-input.component.d.ts +0 -78
- package/lib/components/time/elder-local-time-input/elder-local-time-input.component.d.ts +0 -47
- package/lib/components/time/elder-time.module.d.ts +0 -39
- package/lib/components/time/period/elder-period-input/elder-period-input.component.d.ts +0 -71
- package/lib/components/time/period/period-bucket.d.ts +0 -21
- package/lib/components/time/period/period-format.d.ts +0 -43
- package/lib/components/time/public_api.d.ts +0 -7
- package/lib/components/toasts/elder-toast.module.d.ts +0 -13
- package/lib/components/toasts/elder-toast.service.d.ts +0 -96
- package/lib/components/toasts/standard-toast/standard-toast.component.d.ts +0 -38
- package/lib/components/toasts/toast-type.d.ts +0 -5
- package/lib/components/toasts/toast.d.ts +0 -7
- package/lib/components/url-fragment/elder-url-fragment.d.ts +0 -7
- package/lib/components/url-fragment/elder-url-fragment.module.d.ts +0 -18
- package/lib/components/url-fragment/url-fragment-switcher/elder-url-fragment-switcher.component.d.ts +0 -38
- package/lib/components/viewers/elder-svg-viewer/elder-svg-viewer.component.d.ts +0 -41
- package/lib/components/viewers/elder-viewers.module.d.ts +0 -9
- package/lib/features/event-source/elder-event-source.service.d.ts +0 -43
- package/lib/features/event-source/public_api.d.ts +0 -2
- package/lib/features/event-source/reactive-event-source.d.ts +0 -97
- package/lib/features/kafent/access-token-provider.d.ts +0 -12
- package/lib/features/kafent/kafent-config.d.ts +0 -32
- package/lib/features/kafent/kafent-event-stream.d.ts +0 -28
- package/lib/features/kafent/kafent-event.d.ts +0 -11
- package/lib/features/kafent/kafent-event.service.d.ts +0 -77
- package/lib/features/kafent/kafent-live-event-request.d.ts +0 -58
- package/lib/features/kafent/kafent.module.d.ts +0 -30
- package/lib/features/kafent/sse/kafent-event-stream-sse.service.d.ts +0 -56
- package/lib/features/kafent/sse/kafent-topic-sse.d.ts +0 -70
- package/lib/features/public_api.d.ts +0 -2
- package/lib/pipes/bytes.pipe.d.ts +0 -7
- package/lib/pipes/elder-pipes.module.d.ts +0 -46
- package/lib/pipes/elder-repeat.pipe.d.ts +0 -7
- package/lib/pipes/elder-round.pipe.d.ts +0 -23
- package/lib/pipes/elder-safe-url.pipe.d.ts +0 -10
- package/lib/pipes/elder-truncate.pipe.d.ts +0 -17
- package/lib/pipes/iso-duration.pipe.d.ts +0 -26
- package/lib/pipes/iso-interval-parse.pipe.d.ts +0 -30
- package/lib/pipes/iso-interval.pipe.d.ts +0 -43
- package/lib/pipes/public_api.d.ts +0 -1
- package/lib/pipes/time-ago.pipe.d.ts +0 -18
- package/lib/pipes/time-duration.pipe.d.ts +0 -13
- package/lib/pipes/weight.pipe.d.ts +0 -7
- package/public_api.d.ts +0 -4
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { Component, HostBinding, Input } from '@angular/core';
|
|
2
|
-
import { BehaviorSubject, combineLatest } from 'rxjs';
|
|
3
|
-
import { map } from 'rxjs/operators';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "@angular/common";
|
|
6
|
-
import * as i2 from "@angular/router";
|
|
7
|
-
import * as i3 from "@angular/material/icon";
|
|
8
|
-
import * as i4 from "@angular/material/button";
|
|
9
|
-
import * as i5 from "@angular/flex-layout/flex";
|
|
10
|
-
import * as i6 from "@ngx-translate/core";
|
|
11
|
-
export class ElderNavLinkComponent {
|
|
12
|
-
constructor() {
|
|
13
|
-
this.tabIndex = -1;
|
|
14
|
-
this.routerLink$ = new BehaviorSubject('');
|
|
15
|
-
this.href$ = new BehaviorSubject('');
|
|
16
|
-
this.target$ = new BehaviorSubject('_blank');
|
|
17
|
-
this.queryParams = {};
|
|
18
|
-
}
|
|
19
|
-
set routerLink(value) {
|
|
20
|
-
this.routerLink$.next(value);
|
|
21
|
-
}
|
|
22
|
-
set href(value) {
|
|
23
|
-
this.href$.next(value);
|
|
24
|
-
}
|
|
25
|
-
set target(value) {
|
|
26
|
-
this.target$.next(value);
|
|
27
|
-
}
|
|
28
|
-
ngOnInit() {
|
|
29
|
-
}
|
|
30
|
-
// If neither routerLink nor href is defined, we fallback to simple button.
|
|
31
|
-
get fallbackToButton$() {
|
|
32
|
-
return combineLatest(this.routerLink$, this.href$)
|
|
33
|
-
.pipe(map((result) => !result[0] && !result[1]));
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
ElderNavLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderNavLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
37
|
-
ElderNavLinkComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.10", type: ElderNavLinkComponent, selector: "elder-nav-link, ebs-nav-link", inputs: { title: "title", routerLink: "routerLink", href: "href", target: "target", queryParamsHandling: "queryParamsHandling", queryParams: "queryParams", icon: "icon", fontIcon: "fontIcon", fontSet: "fontSet", svgIcon: "svgIcon" }, host: { properties: { "attr.tabindex": "this.tabIndex" } }, ngImport: i0, template: "<!-- Router Link -->\n<a mat-button *ngIf=\"(routerLink$ | async) as routerLink\"\n class=\"nav-link\"\n fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [tabIndex]=\"0\"\n [routerLink]=\"routerLink\"\n [queryParamsHandling]=\"queryParamsHandling\"\n [queryParams]=\"queryParams\"\n routerLinkActive=\"nav-link-active\"\n #rla=\"routerLinkActive\"\n [color]=\"rla.isActive ? 'primary' : ''\"\n>\n\n <ng-container [ngTemplateOutlet]=\"rla.isActive ? activeLinkContent : inactiveLinkContent\">\n </ng-container>\n\n</a>\n\n<!-- Href Link -->\n<a mat-button *ngIf=\"(href$ | async) as href\"\n class=\"nav-link\"\n fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [tabIndex]=\"0\"\n [href]=\"href\"\n [target]=\"target$ | async\"\n>\n\n <ng-container [ngTemplateOutlet]=\"inactiveLinkContent\">\n </ng-container>\n\n</a>\n\n<!-- Simple Button -->\n<a mat-button *ngIf=\"(fallbackToButton$ | async)\"\n class=\"nav-link\"\n fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [tabIndex]=\"0\"\n>\n\n <ng-container [ngTemplateOutlet]=\"inactiveLinkContent\">\n </ng-container>\n\n</a>\n\n\n<!-- Content for an active Nav Element -->\n<ng-template #activeLinkContent>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n\n <mat-icon *ngIf=\"!svgIcon\" class=\"nav-icon\"\n [fontIcon]=\"fontIcon\"\n [fontSet]=\"fontSet\">\n {{icon}}\n </mat-icon>\n\n <mat-icon *ngIf=\"svgIcon\" class=\"nav-icon\"\n [svgIcon]=\"svgIcon\"\n ></mat-icon>\n\n <span class=\"noselect nav-text nav-text-active\">\n {{ title | translate}}\n\n </span>\n </div>\n\n</ng-template>\n\n<!-- Content for an inactive Nav Element -->\n<ng-template #inactiveLinkContent>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n\n <mat-icon *ngIf=\"!svgIcon\" class=\"nav-icon nav-icon-inactive\"\n [fontIcon]=\"fontIcon\"\n [fontSet]=\"fontSet\">\n {{icon}}\n </mat-icon>\n\n <mat-icon *ngIf=\"svgIcon\" class=\"nav-icon nav-icon-inactive\"\n [svgIcon]=\"svgIcon\"\n ></mat-icon>\n\n <span class=\"noselect nav-text nav-text-inactive\">\n {{ title | translate}}\n </span>\n </div>\n\n</ng-template>\n", styles: [".nav-link{padding-left:16px;padding-right:16px;min-height:56px;border-radius:0}.nav-icon{height:24px;width:24px;font-size:24px;padding:4px}.nav-icon-inactive{color:#757575}.nav-text{padding-left:16px;font-size:16px;font-weight:400}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i2.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i4.MatAnchor, selector: "a[mat-button], a[mat-raised-button], a[mat-icon-button], a[mat-fab], a[mat-mini-fab], a[mat-stroked-button], a[mat-flat-button]", inputs: ["disabled", "disableRipple", "color", "tabIndex"], exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i6.TranslatePipe, name: "translate" }] });
|
|
38
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderNavLinkComponent, decorators: [{
|
|
39
|
-
type: Component,
|
|
40
|
-
args: [{ selector: 'elder-nav-link, ebs-nav-link', template: "<!-- Router Link -->\n<a mat-button *ngIf=\"(routerLink$ | async) as routerLink\"\n class=\"nav-link\"\n fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [tabIndex]=\"0\"\n [routerLink]=\"routerLink\"\n [queryParamsHandling]=\"queryParamsHandling\"\n [queryParams]=\"queryParams\"\n routerLinkActive=\"nav-link-active\"\n #rla=\"routerLinkActive\"\n [color]=\"rla.isActive ? 'primary' : ''\"\n>\n\n <ng-container [ngTemplateOutlet]=\"rla.isActive ? activeLinkContent : inactiveLinkContent\">\n </ng-container>\n\n</a>\n\n<!-- Href Link -->\n<a mat-button *ngIf=\"(href$ | async) as href\"\n class=\"nav-link\"\n fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [tabIndex]=\"0\"\n [href]=\"href\"\n [target]=\"target$ | async\"\n>\n\n <ng-container [ngTemplateOutlet]=\"inactiveLinkContent\">\n </ng-container>\n\n</a>\n\n<!-- Simple Button -->\n<a mat-button *ngIf=\"(fallbackToButton$ | async)\"\n class=\"nav-link\"\n fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [tabIndex]=\"0\"\n>\n\n <ng-container [ngTemplateOutlet]=\"inactiveLinkContent\">\n </ng-container>\n\n</a>\n\n\n<!-- Content for an active Nav Element -->\n<ng-template #activeLinkContent>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n\n <mat-icon *ngIf=\"!svgIcon\" class=\"nav-icon\"\n [fontIcon]=\"fontIcon\"\n [fontSet]=\"fontSet\">\n {{icon}}\n </mat-icon>\n\n <mat-icon *ngIf=\"svgIcon\" class=\"nav-icon\"\n [svgIcon]=\"svgIcon\"\n ></mat-icon>\n\n <span class=\"noselect nav-text nav-text-active\">\n {{ title | translate}}\n\n </span>\n </div>\n\n</ng-template>\n\n<!-- Content for an inactive Nav Element -->\n<ng-template #inactiveLinkContent>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n\n <mat-icon *ngIf=\"!svgIcon\" class=\"nav-icon nav-icon-inactive\"\n [fontIcon]=\"fontIcon\"\n [fontSet]=\"fontSet\">\n {{icon}}\n </mat-icon>\n\n <mat-icon *ngIf=\"svgIcon\" class=\"nav-icon nav-icon-inactive\"\n [svgIcon]=\"svgIcon\"\n ></mat-icon>\n\n <span class=\"noselect nav-text nav-text-inactive\">\n {{ title | translate}}\n </span>\n </div>\n\n</ng-template>\n", styles: [".nav-link{padding-left:16px;padding-right:16px;min-height:56px;border-radius:0}.nav-icon{height:24px;width:24px;font-size:24px;padding:4px}.nav-icon-inactive{color:#757575}.nav-text{padding-left:16px;font-size:16px;font-weight:400}\n"] }]
|
|
41
|
-
}], ctorParameters: function () { return []; }, propDecorators: { tabIndex: [{
|
|
42
|
-
type: HostBinding,
|
|
43
|
-
args: ['attr.tabindex']
|
|
44
|
-
}], title: [{
|
|
45
|
-
type: Input
|
|
46
|
-
}], routerLink: [{
|
|
47
|
-
type: Input
|
|
48
|
-
}], href: [{
|
|
49
|
-
type: Input
|
|
50
|
-
}], target: [{
|
|
51
|
-
type: Input
|
|
52
|
-
}], queryParamsHandling: [{
|
|
53
|
-
type: Input
|
|
54
|
-
}], queryParams: [{
|
|
55
|
-
type: Input
|
|
56
|
-
}], icon: [{
|
|
57
|
-
type: Input
|
|
58
|
-
}], fontIcon: [{
|
|
59
|
-
type: Input
|
|
60
|
-
}], fontSet: [{
|
|
61
|
-
type: Input
|
|
62
|
-
}], svgIcon: [{
|
|
63
|
-
type: Input
|
|
64
|
-
}] } });
|
|
65
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItbmF2LWxpbmsuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9uYXZpZ2F0aW9uL25hdi9uYXYtbGluay9lbGRlci1uYXYtbGluay5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL25hdmlnYXRpb24vbmF2L25hdi1saW5rL2VsZGVyLW5hdi1saW5rLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBUyxNQUFNLGVBQWUsQ0FBQztBQUNwRSxPQUFPLEVBQUMsZUFBZSxFQUFFLGFBQWEsRUFBYSxNQUFNLE1BQU0sQ0FBQztBQUNoRSxPQUFPLEVBQUMsR0FBRyxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7Ozs7Ozs7O0FBU25DLE1BQU0sT0FBTyxxQkFBcUI7SUErQ2hDO1FBN0M4QixhQUFRLEdBQUcsQ0FBQyxDQUFDLENBQUM7UUFFckMsZ0JBQVcsR0FBRyxJQUFJLGVBQWUsQ0FBUyxFQUFFLENBQUMsQ0FBQztRQUM5QyxVQUFLLEdBQUcsSUFBSSxlQUFlLENBQVMsRUFBRSxDQUFDLENBQUM7UUFDeEMsWUFBTyxHQUFHLElBQUksZUFBZSxDQUFTLFFBQVEsQ0FBQyxDQUFDO1FBeUJoRCxnQkFBVyxHQUVkLEVBQUUsQ0FBQztJQWVQLENBQUM7SUFwQ0QsSUFDVyxVQUFVLENBQUMsS0FBYTtRQUNqQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMvQixDQUFDO0lBRUQsSUFDVyxJQUFJLENBQUMsS0FBYTtRQUMzQixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN6QixDQUFDO0lBRUQsSUFDVyxNQUFNLENBQUMsS0FBYTtRQUM3QixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBeUJELFFBQVE7SUFDUixDQUFDO0lBR0QsMkVBQTJFO0lBQzNFLElBQVcsaUJBQWlCO1FBQzFCLE9BQU8sYUFBYSxDQUNsQixJQUFJLENBQUMsV0FBVyxFQUNoQixJQUFJLENBQUMsS0FBSyxDQUNYO2FBQ0UsSUFBSSxDQUNILEdBQUcsQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FDMUMsQ0FBQztJQUNOLENBQUM7O21IQS9EVSxxQkFBcUI7dUdBQXJCLHFCQUFxQiwwV0NYbEMsNnNFQXlGQTs0RkQ5RWEscUJBQXFCO2tCQU5qQyxTQUFTOytCQUNFLDhCQUE4QjswRUFPVixRQUFRO3NCQUFyQyxXQUFXO3VCQUFDLGVBQWU7Z0JBUXJCLEtBQUs7c0JBRFgsS0FBSztnQkFJSyxVQUFVO3NCQURwQixLQUFLO2dCQU1LLElBQUk7c0JBRGQsS0FBSztnQkFNSyxNQUFNO3NCQURoQixLQUFLO2dCQU1DLG1CQUFtQjtzQkFEekIsS0FBSztnQkFJQyxXQUFXO3NCQURqQixLQUFLO2dCQU1DLElBQUk7c0JBRFYsS0FBSztnQkFJQyxRQUFRO3NCQURkLEtBQUs7Z0JBSUMsT0FBTztzQkFEYixLQUFLO2dCQUlDLE9BQU87c0JBRGIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBIb3N0QmluZGluZywgSW5wdXQsIE9uSW5pdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0JlaGF2aW9yU3ViamVjdCwgY29tYmluZUxhdGVzdCwgT2JzZXJ2YWJsZX0gZnJvbSAncnhqcyc7XG5pbXBvcnQge21hcH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuaW1wb3J0IHtRdWVyeVBhcmFtc0hhbmRsaW5nfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlbGRlci1uYXYtbGluaywgZWJzLW5hdi1saW5rJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2VsZGVyLW5hdi1saW5rLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZWxkZXItbmF2LWxpbmsuY29tcG9uZW50LnNjc3MnXVxuICAvLyBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCBGaXggUm91dGVyTGlua0FjdGl2ZSBiaW5kaW5nIGZpcnN0IDooXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyTmF2TGlua0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLnRhYmluZGV4JykgdGFiSW5kZXggPSAtMTtcblxuICBwdWJsaWMgcm91dGVyTGluayQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PHN0cmluZz4oJycpO1xuICBwdWJsaWMgaHJlZiQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PHN0cmluZz4oJycpO1xuICBwdWJsaWMgdGFyZ2V0JCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8c3RyaW5nPignX2JsYW5rJyk7XG5cblxuICBASW5wdXQoKVxuICBwdWJsaWMgdGl0bGU6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBwdWJsaWMgc2V0IHJvdXRlckxpbmsodmFsdWU6IHN0cmluZykge1xuICAgIHRoaXMucm91dGVyTGluayQubmV4dCh2YWx1ZSk7XG4gIH1cblxuICBASW5wdXQoKVxuICBwdWJsaWMgc2V0IGhyZWYodmFsdWU6IHN0cmluZykge1xuICAgIHRoaXMuaHJlZiQubmV4dCh2YWx1ZSk7XG4gIH1cblxuICBASW5wdXQoKVxuICBwdWJsaWMgc2V0IHRhcmdldCh2YWx1ZTogc3RyaW5nKSB7XG4gICAgdGhpcy50YXJnZXQkLm5leHQodmFsdWUpO1xuICB9XG5cbiAgQElucHV0KClcbiAgcHVibGljIHF1ZXJ5UGFyYW1zSGFuZGxpbmc6IFF1ZXJ5UGFyYW1zSGFuZGxpbmc7XG5cbiAgQElucHV0KClcbiAgcHVibGljIHF1ZXJ5UGFyYW1zOiB7XG4gICAgW2s6IHN0cmluZ106IGFueTtcbiAgfSA9IHt9O1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBpY29uOiBzdHJpbmc7XG5cbiAgQElucHV0KClcbiAgcHVibGljIGZvbnRJY29uOiBzdHJpbmc7XG5cbiAgQElucHV0KClcbiAgcHVibGljIGZvbnRTZXQ6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBwdWJsaWMgc3ZnSWNvbjogc3RyaW5nO1xuXG4gIGNvbnN0cnVjdG9yKCkge1xuICB9XG5cbiAgbmdPbkluaXQoKSB7XG4gIH1cblxuXG4gIC8vIElmIG5laXRoZXIgcm91dGVyTGluayBub3IgaHJlZiBpcyBkZWZpbmVkLCB3ZSBmYWxsYmFjayB0byBzaW1wbGUgYnV0dG9uLlxuICBwdWJsaWMgZ2V0IGZhbGxiYWNrVG9CdXR0b24kKCk6IE9ic2VydmFibGU8Ym9vbGVhbj4ge1xuICAgIHJldHVybiBjb21iaW5lTGF0ZXN0KFxuICAgICAgdGhpcy5yb3V0ZXJMaW5rJCxcbiAgICAgIHRoaXMuaHJlZiRcbiAgICApXG4gICAgICAucGlwZShcbiAgICAgICAgbWFwKChyZXN1bHQpID0+ICFyZXN1bHRbMF0gJiYgIXJlc3VsdFsxXSlcbiAgICAgICk7XG4gIH1cblxuXG59XG4iLCI8IS0tIFJvdXRlciBMaW5rIC0tPlxuPGEgbWF0LWJ1dHRvbiAqbmdJZj1cIihyb3V0ZXJMaW5rJCB8IGFzeW5jKSBhcyByb3V0ZXJMaW5rXCJcbiAgIGNsYXNzPVwibmF2LWxpbmtcIlxuICAgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwic3RhcnQgY2VudGVyXCJcbiAgIFt0YWJJbmRleF09XCIwXCJcbiAgIFtyb3V0ZXJMaW5rXT1cInJvdXRlckxpbmtcIlxuICAgW3F1ZXJ5UGFyYW1zSGFuZGxpbmddPVwicXVlcnlQYXJhbXNIYW5kbGluZ1wiXG4gICBbcXVlcnlQYXJhbXNdPVwicXVlcnlQYXJhbXNcIlxuICAgcm91dGVyTGlua0FjdGl2ZT1cIm5hdi1saW5rLWFjdGl2ZVwiXG4gICAjcmxhPVwicm91dGVyTGlua0FjdGl2ZVwiXG4gICBbY29sb3JdPVwicmxhLmlzQWN0aXZlID8gJ3ByaW1hcnknIDogJydcIlxuPlxuXG4gIDxuZy1jb250YWluZXIgW25nVGVtcGxhdGVPdXRsZXRdPVwicmxhLmlzQWN0aXZlID8gYWN0aXZlTGlua0NvbnRlbnQgOiBpbmFjdGl2ZUxpbmtDb250ZW50XCI+XG4gIDwvbmctY29udGFpbmVyPlxuXG48L2E+XG5cbjwhLS0gSHJlZiBMaW5rIC0tPlxuPGEgbWF0LWJ1dHRvbiAqbmdJZj1cIihocmVmJCB8IGFzeW5jKSBhcyBocmVmXCJcbiAgIGNsYXNzPVwibmF2LWxpbmtcIlxuICAgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwic3RhcnQgY2VudGVyXCJcbiAgIFt0YWJJbmRleF09XCIwXCJcbiAgIFtocmVmXT1cImhyZWZcIlxuICAgW3RhcmdldF09XCJ0YXJnZXQkIHwgYXN5bmNcIlxuPlxuXG4gIDxuZy1jb250YWluZXIgW25nVGVtcGxhdGVPdXRsZXRdPVwiaW5hY3RpdmVMaW5rQ29udGVudFwiPlxuICA8L25nLWNvbnRhaW5lcj5cblxuPC9hPlxuXG48IS0tIFNpbXBsZSBCdXR0b24gLS0+XG48YSBtYXQtYnV0dG9uICpuZ0lmPVwiKGZhbGxiYWNrVG9CdXR0b24kIHwgYXN5bmMpXCJcbiAgIGNsYXNzPVwibmF2LWxpbmtcIlxuICAgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwic3RhcnQgY2VudGVyXCJcbiAgIFt0YWJJbmRleF09XCIwXCJcbj5cblxuICA8bmctY29udGFpbmVyIFtuZ1RlbXBsYXRlT3V0bGV0XT1cImluYWN0aXZlTGlua0NvbnRlbnRcIj5cbiAgPC9uZy1jb250YWluZXI+XG5cbjwvYT5cblxuXG48IS0tIENvbnRlbnQgZm9yIGFuIGFjdGl2ZSBOYXYgRWxlbWVudCAtLT5cbjxuZy10ZW1wbGF0ZSAjYWN0aXZlTGlua0NvbnRlbnQ+XG5cbiAgPGRpdiBmeExheW91dD1cInJvd1wiIGZ4TGF5b3V0QWxpZ249XCJzdGFydCBjZW50ZXJcIj5cblxuICAgIDxtYXQtaWNvbiAqbmdJZj1cIiFzdmdJY29uXCIgY2xhc3M9XCJuYXYtaWNvblwiXG4gICAgICAgICAgICAgIFtmb250SWNvbl09XCJmb250SWNvblwiXG4gICAgICAgICAgICAgIFtmb250U2V0XT1cImZvbnRTZXRcIj5cbiAgICAgIHt7aWNvbn19XG4gICAgPC9tYXQtaWNvbj5cblxuICAgIDxtYXQtaWNvbiAqbmdJZj1cInN2Z0ljb25cIiBjbGFzcz1cIm5hdi1pY29uXCJcbiAgICAgICAgICAgICAgW3N2Z0ljb25dPVwic3ZnSWNvblwiXG4gICAgPjwvbWF0LWljb24+XG5cbiAgICA8c3BhbiBjbGFzcz1cIm5vc2VsZWN0IG5hdi10ZXh0IG5hdi10ZXh0LWFjdGl2ZVwiPlxuICAgICAge3sgdGl0bGUgfCB0cmFuc2xhdGV9fVxuXG4gICAgPC9zcGFuPlxuICA8L2Rpdj5cblxuPC9uZy10ZW1wbGF0ZT5cblxuPCEtLSBDb250ZW50IGZvciBhbiBpbmFjdGl2ZSBOYXYgRWxlbWVudCAtLT5cbjxuZy10ZW1wbGF0ZSAjaW5hY3RpdmVMaW5rQ29udGVudD5cblxuICA8ZGl2IGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXRBbGlnbj1cInN0YXJ0IGNlbnRlclwiPlxuXG4gICAgPG1hdC1pY29uICpuZ0lmPVwiIXN2Z0ljb25cIiBjbGFzcz1cIm5hdi1pY29uIG5hdi1pY29uLWluYWN0aXZlXCJcbiAgICAgICAgICAgICAgW2ZvbnRJY29uXT1cImZvbnRJY29uXCJcbiAgICAgICAgICAgICAgW2ZvbnRTZXRdPVwiZm9udFNldFwiPlxuICAgICAge3tpY29ufX1cbiAgICA8L21hdC1pY29uPlxuXG4gICAgPG1hdC1pY29uICpuZ0lmPVwic3ZnSWNvblwiIGNsYXNzPVwibmF2LWljb24gbmF2LWljb24taW5hY3RpdmVcIlxuICAgICAgICAgICAgICBbc3ZnSWNvbl09XCJzdmdJY29uXCJcbiAgICA+PC9tYXQtaWNvbj5cblxuICAgIDxzcGFuIGNsYXNzPVwibm9zZWxlY3QgbmF2LXRleHQgbmF2LXRleHQtaW5hY3RpdmVcIj5cbiAgICAgIHt7IHRpdGxlIHwgdHJhbnNsYXRlfX1cbiAgICA8L3NwYW4+XG4gIDwvZGl2PlxuXG48L25nLXRlbXBsYXRlPlxuIl19
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/flex-layout/flex";
|
|
4
|
-
export class ElderNavListComponent {
|
|
5
|
-
constructor() { }
|
|
6
|
-
ngOnInit() { }
|
|
7
|
-
}
|
|
8
|
-
ElderNavListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderNavListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
ElderNavListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.10", type: ElderNavListComponent, selector: "elder-nav-list, ebs-nav-list", ngImport: i0, template: "<div fxLayout=\"column\" fxFlex class=\"scroll-fix elder-nav-list-full\" tabindex=\"0\">\n <div fxLayout=\"column\" fxFlex class=\"scrollable\" >\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [".scrollable{overflow-y:auto;-webkit-overflow-scrolling:touch}.scroll-fix{min-width:0;min-height:0}.elder-nav-list-full{min-width:350px}.elder-nav-list-full:focus{outline:none}\n"], dependencies: [{ kind: "directive", type: i1.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i1.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderNavListComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{ selector: 'elder-nav-list, ebs-nav-list', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div fxLayout=\"column\" fxFlex class=\"scroll-fix elder-nav-list-full\" tabindex=\"0\">\n <div fxLayout=\"column\" fxFlex class=\"scrollable\" >\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [".scrollable{overflow-y:auto;-webkit-overflow-scrolling:touch}.scroll-fix{min-width:0;min-height:0}.elder-nav-list-full{min-width:350px}.elder-nav-list-full:focus{outline:none}\n"] }]
|
|
13
|
-
}], ctorParameters: function () { return []; } });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItbmF2LWxpc3QuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9uYXZpZ2F0aW9uL25hdi9uYXYtbGlzdC9lbGRlci1uYXYtbGlzdC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL25hdmlnYXRpb24vbmF2L25hdi1saXN0L2VsZGVyLW5hdi1saXN0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyx1QkFBdUIsRUFBRSxTQUFTLEVBQVMsTUFBTSxlQUFlLENBQUM7OztBQVN6RSxNQUFNLE9BQU8scUJBQXFCO0lBRWhDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVEsS0FBSyxDQUFDOzttSEFKSCxxQkFBcUI7dUdBQXJCLHFCQUFxQixvRUNUbEMsdU1BS0E7NEZESWEscUJBQXFCO2tCQU5qQyxTQUFTOytCQUNFLDhCQUE4QixtQkFHdkIsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgT25Jbml0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlbGRlci1uYXYtbGlzdCwgZWJzLW5hdi1saXN0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2VsZGVyLW5hdi1saXN0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZWxkZXItbmF2LWxpc3QuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJOYXZMaXN0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCkgeyB9XG5cbn1cbiIsIjxkaXYgZnhMYXlvdXQ9XCJjb2x1bW5cIiBmeEZsZXggY2xhc3M9XCJzY3JvbGwtZml4IGVsZGVyLW5hdi1saXN0LWZ1bGxcIiB0YWJpbmRleD1cIjBcIj5cbiAgPGRpdiBmeExheW91dD1cImNvbHVtblwiIGZ4RmxleCBjbGFzcz1cInNjcm9sbGFibGVcIiA+XG4gICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './toolbar/elder-toolbar.module';
|
|
2
|
-
export * from './nav/elder-nav.module';
|
|
3
|
-
export * from './bread-crumbs/elder-bread-crumbs.module';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvbmF2aWdhdGlvbi9wdWJsaWNfYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLDBDQUEwQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi90b29sYmFyL2VsZGVyLXRvb2xiYXIubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbmF2L2VsZGVyLW5hdi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9icmVhZC1jcnVtYnMvZWxkZXItYnJlYWQtY3J1bWJzLm1vZHVsZSc7XG4iXX0=
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { Directive, Input } from '@angular/core';
|
|
2
|
-
import { LoggerFactory } from '@elderbyte/ts-logger';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./elder-toolbar.service";
|
|
5
|
-
export class ElderToolbarColumnDirective {
|
|
6
|
-
/***************************************************************************
|
|
7
|
-
* *
|
|
8
|
-
* Constructor *
|
|
9
|
-
* *
|
|
10
|
-
**************************************************************************/
|
|
11
|
-
constructor(viewContainer, toolbarService, templateRef) {
|
|
12
|
-
this.viewContainer = viewContainer;
|
|
13
|
-
this.toolbarService = toolbarService;
|
|
14
|
-
this.templateRef = templateRef;
|
|
15
|
-
/***************************************************************************
|
|
16
|
-
* *
|
|
17
|
-
* Fields *
|
|
18
|
-
* *
|
|
19
|
-
**************************************************************************/
|
|
20
|
-
this.logger = LoggerFactory.getLogger(this.constructor.name);
|
|
21
|
-
}
|
|
22
|
-
/***************************************************************************
|
|
23
|
-
* *
|
|
24
|
-
* Life Cycle *
|
|
25
|
-
* *
|
|
26
|
-
**************************************************************************/
|
|
27
|
-
ngOnInit() {
|
|
28
|
-
this.toolbarService.registerColumn(this.elderToolbarColumn, this.templateRef, this.elderToolbarDefault);
|
|
29
|
-
}
|
|
30
|
-
ngOnDestroy() {
|
|
31
|
-
this.toolbarService.deregisterColumn(this.templateRef, this.elderToolbarColumn);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
ElderToolbarColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarColumnDirective, deps: [{ token: i0.ViewContainerRef }, { token: i1.ElderToolbarService }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35
|
-
ElderToolbarColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: ElderToolbarColumnDirective, selector: "[elderToolbarColumn], [ebsToolbarColumn]", inputs: { elderToolbarColumn: "elderToolbarColumn", elderToolbarDefault: "elderToolbarDefault" }, ngImport: i0 });
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarColumnDirective, decorators: [{
|
|
37
|
-
type: Directive,
|
|
38
|
-
args: [{
|
|
39
|
-
selector: '[elderToolbarColumn], [ebsToolbarColumn]'
|
|
40
|
-
}]
|
|
41
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i1.ElderToolbarService }, { type: i0.TemplateRef }]; }, propDecorators: { elderToolbarColumn: [{
|
|
42
|
-
type: Input
|
|
43
|
-
}], elderToolbarDefault: [{
|
|
44
|
-
type: Input
|
|
45
|
-
}] } });
|
|
46
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItdG9vbGJhci1jb2x1bW4uZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9uYXZpZ2F0aW9uL3Rvb2xiYXIvZWxkZXItdG9vbGJhci1jb2x1bW4uZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFtRCxNQUFNLGVBQWUsQ0FBQztBQUNqRyxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sc0JBQXNCLENBQUM7OztBQU9uRCxNQUFNLE9BQU8sMkJBQTJCO0lBa0JwQzs7OztnRkFJNEU7SUFFNUUsWUFDWSxhQUErQixFQUMvQixjQUFtQyxFQUNwQyxXQUE2QjtRQUY1QixrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFDL0IsbUJBQWMsR0FBZCxjQUFjLENBQXFCO1FBQ3BDLGdCQUFXLEdBQVgsV0FBVyxDQUFrQjtRQXpCeEM7Ozs7b0ZBSTRFO1FBRTNELFdBQU0sR0FBRyxhQUFhLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUM7SUFvQnJFLENBQUM7SUFFTDs7OztnRkFJNEU7SUFFckUsUUFBUTtRQUNYLElBQUksQ0FBQyxjQUFjLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsV0FBVyxFQUFFLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO0lBQzVHLENBQUM7SUFFTSxXQUFXO1FBQ2QsSUFBSSxDQUFDLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO0lBQ3BGLENBQUM7O3lIQTFDUSwyQkFBMkI7NkdBQTNCLDJCQUEyQjs0RkFBM0IsMkJBQTJCO2tCQUh2QyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSwwQ0FBMEM7aUJBQ3ZEO21LQWFVLGtCQUFrQjtzQkFEeEIsS0FBSztnQkFLQyxtQkFBbUI7c0JBRHpCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0RpcmVjdGl2ZSwgSW5wdXQsIE9uRGVzdHJveSwgT25Jbml0LCBUZW1wbGF0ZVJlZiwgVmlld0NvbnRhaW5lclJlZn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0xvZ2dlckZhY3Rvcnl9IGZyb20gJ0BlbGRlcmJ5dGUvdHMtbG9nZ2VyJztcbmltcG9ydCB7RWxkZXJUb29sYmFyU2VydmljZX0gZnJvbSAnLi9lbGRlci10b29sYmFyLnNlcnZpY2UnO1xuaW1wb3J0IHtUb29sYmFyQ29sdW1uUG9zaXRpb259IGZyb20gJy4vdG9vbGJhci1jb2x1bW4tcG9zaXRpb24nO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1tlbGRlclRvb2xiYXJDb2x1bW5dLCBbZWJzVG9vbGJhckNvbHVtbl0nXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyVG9vbGJhckNvbHVtbkRpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcblxuICAgIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAgICogRmllbGRzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgICBwcml2YXRlIHJlYWRvbmx5IGxvZ2dlciA9IExvZ2dlckZhY3RvcnkuZ2V0TG9nZ2VyKHRoaXMuY29uc3RydWN0b3IubmFtZSk7XG5cbiAgICAvKiogUG9zaXRpb24gYXQgd2hpY2ggY29sdW1uIHNob3VsZCBiZSBwbGFjZWQuICovXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgZWxkZXJUb29sYmFyQ29sdW1uOiBUb29sYmFyQ29sdW1uUG9zaXRpb247XG5cbiAgICAvKiogSWYgdGhlIGNvbHVtbiBzaG91bGQgYmUgY29uc2lkZXJlZCBhcyBkZWZhdWx0IChmYWxsYmFjaykuICovXG4gICAgQElucHV0KClcbiAgICBwdWJsaWMgZWxkZXJUb29sYmFyRGVmYXVsdDogYm9vbGVhbjtcblxuICAgIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAgICogQ29uc3RydWN0b3IgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSB2aWV3Q29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmLFxuICAgICAgICBwcml2YXRlIHRvb2xiYXJTZXJ2aWNlOiBFbGRlclRvb2xiYXJTZXJ2aWNlLFxuICAgICAgICBwdWJsaWMgdGVtcGxhdGVSZWY6IFRlbXBsYXRlUmVmPGFueT4sXG4gICAgKSB7IH1cblxuICAgIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAgICogTGlmZSBDeWNsZSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMudG9vbGJhclNlcnZpY2UucmVnaXN0ZXJDb2x1bW4odGhpcy5lbGRlclRvb2xiYXJDb2x1bW4sIHRoaXMudGVtcGxhdGVSZWYsIHRoaXMuZWxkZXJUb29sYmFyRGVmYXVsdCk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgICAgICB0aGlzLnRvb2xiYXJTZXJ2aWNlLmRlcmVnaXN0ZXJDb2x1bW4odGhpcy50ZW1wbGF0ZVJlZiwgdGhpcy5lbGRlclRvb2xiYXJDb2x1bW4pO1xuICAgIH1cblxufVxuIl19
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
4
|
-
import { RouterModule } from '@angular/router';
|
|
5
|
-
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
6
|
-
import { MatBadgeModule } from '@angular/material/badge';
|
|
7
|
-
import { MatButtonModule } from '@angular/material/button';
|
|
8
|
-
import { MatDividerModule } from '@angular/material/divider';
|
|
9
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
10
|
-
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
11
|
-
import { ElderToolbarComponent } from './toolbar/elder-toolbar.component';
|
|
12
|
-
import { ElderLanguageModule } from '../../i18n/language/elder-language.module';
|
|
13
|
-
import { ElderToolbarColumnDirective } from './elder-toolbar-column.directive';
|
|
14
|
-
import { ElderToolbarTitleComponent } from './toolbar-title/elder-toolbar-title.component';
|
|
15
|
-
import * as i0 from "@angular/core";
|
|
16
|
-
export { ElderToolbarService } from './elder-toolbar.service';
|
|
17
|
-
export { ElderToolbarColumnDirective } from './elder-toolbar-column.directive';
|
|
18
|
-
export { ElderToolbarComponent } from './toolbar/elder-toolbar.component';
|
|
19
|
-
export { ElderToolbarTitleComponent } from './toolbar-title/elder-toolbar-title.component';
|
|
20
|
-
export { ElderToolbarTitleService, ToolbarHeader } from './toolbar-title/elder-toolbar-title.service';
|
|
21
|
-
export class ElderToolbarModule {
|
|
22
|
-
}
|
|
23
|
-
ElderToolbarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
24
|
-
ElderToolbarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarModule, declarations: [ElderToolbarComponent,
|
|
25
|
-
ElderToolbarColumnDirective,
|
|
26
|
-
ElderToolbarTitleComponent], imports: [
|
|
27
|
-
// common
|
|
28
|
-
CommonModule, RouterModule,
|
|
29
|
-
// layout
|
|
30
|
-
FlexLayoutModule, MatDividerModule,
|
|
31
|
-
// navigation
|
|
32
|
-
MatToolbarModule,
|
|
33
|
-
// buttons & indicators
|
|
34
|
-
MatButtonModule, MatIconModule, MatBadgeModule,
|
|
35
|
-
// translations
|
|
36
|
-
TranslateModule, ElderLanguageModule], exports: [ElderToolbarComponent,
|
|
37
|
-
ElderToolbarColumnDirective,
|
|
38
|
-
ElderToolbarTitleComponent] });
|
|
39
|
-
ElderToolbarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarModule, imports: [
|
|
40
|
-
// common
|
|
41
|
-
CommonModule, RouterModule,
|
|
42
|
-
// layout
|
|
43
|
-
FlexLayoutModule, MatDividerModule,
|
|
44
|
-
// navigation
|
|
45
|
-
MatToolbarModule,
|
|
46
|
-
// buttons & indicators
|
|
47
|
-
MatButtonModule, MatIconModule, MatBadgeModule,
|
|
48
|
-
// translations
|
|
49
|
-
TranslateModule, ElderLanguageModule] });
|
|
50
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarModule, decorators: [{
|
|
51
|
-
type: NgModule,
|
|
52
|
-
args: [{
|
|
53
|
-
imports: [
|
|
54
|
-
// common
|
|
55
|
-
CommonModule, RouterModule,
|
|
56
|
-
// layout
|
|
57
|
-
FlexLayoutModule, MatDividerModule,
|
|
58
|
-
// navigation
|
|
59
|
-
MatToolbarModule,
|
|
60
|
-
// buttons & indicators
|
|
61
|
-
MatButtonModule, MatIconModule, MatBadgeModule,
|
|
62
|
-
// translations
|
|
63
|
-
TranslateModule, ElderLanguageModule
|
|
64
|
-
],
|
|
65
|
-
declarations: [
|
|
66
|
-
ElderToolbarComponent,
|
|
67
|
-
ElderToolbarColumnDirective,
|
|
68
|
-
ElderToolbarTitleComponent
|
|
69
|
-
],
|
|
70
|
-
exports: [
|
|
71
|
-
ElderToolbarComponent,
|
|
72
|
-
ElderToolbarColumnDirective,
|
|
73
|
-
ElderToolbarTitleComponent
|
|
74
|
-
]
|
|
75
|
-
}]
|
|
76
|
-
}] });
|
|
77
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItdG9vbGJhci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL25hdmlnYXRpb24vdG9vbGJhci9lbGRlci10b29sYmFyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDcEQsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDN0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzdELE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLG1DQUFtQyxDQUFDO0FBQ3hFLE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLDJDQUEyQyxDQUFDO0FBQzlFLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQy9FLE9BQU8sRUFBQywwQkFBMEIsRUFBQyxNQUFNLCtDQUErQyxDQUFDOztBQUV6RixPQUFPLEVBQUMsbUJBQW1CLEVBQUMsTUFBTSx5QkFBeUIsQ0FBQztBQUM1RCxPQUFPLEVBQUMsMkJBQTJCLEVBQUMsTUFBTSxrQ0FBa0MsQ0FBQztBQUM3RSxPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQztBQUV4RSxPQUFPLEVBQUMsMEJBQTBCLEVBQUMsTUFBTSwrQ0FBK0MsQ0FBQztBQUN6RixPQUFPLEVBQUMsd0JBQXdCLEVBQUUsYUFBYSxFQUFDLE1BQU0sNkNBQTZDLENBQUM7QUE4QnBHLE1BQU0sT0FBTyxrQkFBa0I7O2dIQUFsQixrQkFBa0I7aUhBQWxCLGtCQUFrQixpQkFWekIscUJBQXFCO1FBQ3JCLDJCQUEyQjtRQUMzQiwwQkFBMEI7UUFsQnhCLFNBQVM7UUFDVCxZQUFZLEVBQUUsWUFBWTtRQUUxQixTQUFTO1FBQ1QsZ0JBQWdCLEVBQUUsZ0JBQWdCO1FBRWxDLGFBQWE7UUFDYixnQkFBZ0I7UUFFaEIsdUJBQXVCO1FBQ3ZCLGVBQWUsRUFBRSxhQUFhLEVBQUUsY0FBYztRQUU5QyxlQUFlO1FBQ2YsZUFBZSxFQUFFLG1CQUFtQixhQVF0QyxxQkFBcUI7UUFDckIsMkJBQTJCO1FBQzNCLDBCQUEwQjtpSEFHbkIsa0JBQWtCO1FBMUJ2QixTQUFTO1FBQ1QsWUFBWSxFQUFFLFlBQVk7UUFFMUIsU0FBUztRQUNULGdCQUFnQixFQUFFLGdCQUFnQjtRQUVsQyxhQUFhO1FBQ2IsZ0JBQWdCO1FBRWhCLHVCQUF1QjtRQUN2QixlQUFlLEVBQUUsYUFBYSxFQUFFLGNBQWM7UUFFOUMsZUFBZTtRQUNmLGVBQWUsRUFBRSxtQkFBbUI7NEZBYS9CLGtCQUFrQjtrQkE1QjlCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFO3dCQUNMLFNBQVM7d0JBQ1QsWUFBWSxFQUFFLFlBQVk7d0JBRTFCLFNBQVM7d0JBQ1QsZ0JBQWdCLEVBQUUsZ0JBQWdCO3dCQUVsQyxhQUFhO3dCQUNiLGdCQUFnQjt3QkFFaEIsdUJBQXVCO3dCQUN2QixlQUFlLEVBQUUsYUFBYSxFQUFFLGNBQWM7d0JBRTlDLGVBQWU7d0JBQ2YsZUFBZSxFQUFFLG1CQUFtQjtxQkFDdkM7b0JBQ0QsWUFBWSxFQUFFO3dCQUNaLHFCQUFxQjt3QkFDckIsMkJBQTJCO3dCQUMzQiwwQkFBMEI7cUJBQzNCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxxQkFBcUI7d0JBQ3JCLDJCQUEyQjt3QkFDM0IsMEJBQTBCO3FCQUMzQjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbIlxuaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7VHJhbnNsYXRlTW9kdWxlfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcbmltcG9ydCB7Um91dGVyTW9kdWxlfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHtGbGV4TGF5b3V0TW9kdWxlfSBmcm9tICdAYW5ndWxhci9mbGV4LWxheW91dCc7XG5pbXBvcnQgeyBNYXRCYWRnZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2JhZGdlJztcbmltcG9ydCB7IE1hdEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2J1dHRvbic7XG5pbXBvcnQgeyBNYXREaXZpZGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGl2aWRlcic7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQgeyBNYXRUb29sYmFyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdG9vbGJhcic7XG5pbXBvcnQge0VsZGVyVG9vbGJhckNvbXBvbmVudH0gZnJvbSAnLi90b29sYmFyL2VsZGVyLXRvb2xiYXIuY29tcG9uZW50JztcbmltcG9ydCB7RWxkZXJMYW5ndWFnZU1vZHVsZX0gZnJvbSAnLi4vLi4vaTE4bi9sYW5ndWFnZS9lbGRlci1sYW5ndWFnZS5tb2R1bGUnO1xuaW1wb3J0IHsgRWxkZXJUb29sYmFyQ29sdW1uRGlyZWN0aXZlIH0gZnJvbSAnLi9lbGRlci10b29sYmFyLWNvbHVtbi5kaXJlY3RpdmUnO1xuaW1wb3J0IHtFbGRlclRvb2xiYXJUaXRsZUNvbXBvbmVudH0gZnJvbSAnLi90b29sYmFyLXRpdGxlL2VsZGVyLXRvb2xiYXItdGl0bGUuY29tcG9uZW50JztcblxuZXhwb3J0IHtFbGRlclRvb2xiYXJTZXJ2aWNlfSBmcm9tICcuL2VsZGVyLXRvb2xiYXIuc2VydmljZSc7XG5leHBvcnQge0VsZGVyVG9vbGJhckNvbHVtbkRpcmVjdGl2ZX0gZnJvbSAnLi9lbGRlci10b29sYmFyLWNvbHVtbi5kaXJlY3RpdmUnO1xuZXhwb3J0IHtFbGRlclRvb2xiYXJDb21wb25lbnR9IGZyb20gJy4vdG9vbGJhci9lbGRlci10b29sYmFyLmNvbXBvbmVudCc7XG5cbmV4cG9ydCB7RWxkZXJUb29sYmFyVGl0bGVDb21wb25lbnR9IGZyb20gJy4vdG9vbGJhci10aXRsZS9lbGRlci10b29sYmFyLXRpdGxlLmNvbXBvbmVudCc7XG5leHBvcnQge0VsZGVyVG9vbGJhclRpdGxlU2VydmljZSwgVG9vbGJhckhlYWRlcn0gZnJvbSAnLi90b29sYmFyLXRpdGxlL2VsZGVyLXRvb2xiYXItdGl0bGUuc2VydmljZSc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1xuICAgICAgICAvLyBjb21tb25cbiAgICAgICAgQ29tbW9uTW9kdWxlLCBSb3V0ZXJNb2R1bGUsXG5cbiAgICAgICAgLy8gbGF5b3V0XG4gICAgICAgIEZsZXhMYXlvdXRNb2R1bGUsIE1hdERpdmlkZXJNb2R1bGUsXG5cbiAgICAgICAgLy8gbmF2aWdhdGlvblxuICAgICAgICBNYXRUb29sYmFyTW9kdWxlLFxuXG4gICAgICAgIC8vIGJ1dHRvbnMgJiBpbmRpY2F0b3JzXG4gICAgICAgIE1hdEJ1dHRvbk1vZHVsZSwgTWF0SWNvbk1vZHVsZSwgTWF0QmFkZ2VNb2R1bGUsXG5cbiAgICAgICAgLy8gdHJhbnNsYXRpb25zXG4gICAgICAgIFRyYW5zbGF0ZU1vZHVsZSwgRWxkZXJMYW5ndWFnZU1vZHVsZVxuICAgIF0sXG4gICAgZGVjbGFyYXRpb25zOiBbXG4gICAgICBFbGRlclRvb2xiYXJDb21wb25lbnQsXG4gICAgICBFbGRlclRvb2xiYXJDb2x1bW5EaXJlY3RpdmUsXG4gICAgICBFbGRlclRvb2xiYXJUaXRsZUNvbXBvbmVudFxuICAgIF0sXG4gICAgZXhwb3J0czogW1xuICAgICAgRWxkZXJUb29sYmFyQ29tcG9uZW50LFxuICAgICAgRWxkZXJUb29sYmFyQ29sdW1uRGlyZWN0aXZlLFxuICAgICAgRWxkZXJUb29sYmFyVGl0bGVDb21wb25lbnRcbiAgICBdXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyVG9vbGJhck1vZHVsZSB7fVxuIl19
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { LoggerFactory } from '@elderbyte/ts-logger';
|
|
3
|
-
import { TemplateSlotManager } from '../../../common/templates/template-slot-manager';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class ElderToolbarService {
|
|
6
|
-
/***************************************************************************
|
|
7
|
-
* *
|
|
8
|
-
* Constructors *
|
|
9
|
-
* *
|
|
10
|
-
**************************************************************************/
|
|
11
|
-
constructor() {
|
|
12
|
-
/***************************************************************************
|
|
13
|
-
* *
|
|
14
|
-
* Fields *
|
|
15
|
-
* *
|
|
16
|
-
**************************************************************************/
|
|
17
|
-
this.logger = LoggerFactory.getLogger(this.constructor.name);
|
|
18
|
-
this.slotManager = new TemplateSlotManager([
|
|
19
|
-
'left',
|
|
20
|
-
'left.begin',
|
|
21
|
-
['left.end', 'left.actions'],
|
|
22
|
-
'center',
|
|
23
|
-
'right',
|
|
24
|
-
['right.begin', 'right.actions'],
|
|
25
|
-
'right.end',
|
|
26
|
-
]);
|
|
27
|
-
}
|
|
28
|
-
/***************************************************************************
|
|
29
|
-
* *
|
|
30
|
-
* Public API *
|
|
31
|
-
* *
|
|
32
|
-
**************************************************************************/
|
|
33
|
-
/**
|
|
34
|
-
* Returns an observable which emits the current active template for the given position
|
|
35
|
-
* over time.
|
|
36
|
-
*/
|
|
37
|
-
activeColumnTemplate(position) {
|
|
38
|
-
return this.slotManager.activeSlotTemplate(position);
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Registers the given template as toolbar column at the given position.
|
|
42
|
-
*
|
|
43
|
-
* @param position at which template should be placed
|
|
44
|
-
* @param template to set at position
|
|
45
|
-
* @param isDefault if the given template should be used as app default
|
|
46
|
-
*/
|
|
47
|
-
registerColumn(position, template, isDefault = false) {
|
|
48
|
-
this.slotManager.registerSlotTemplate(position, template, isDefault);
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* Deregister the given template from the toolbar.
|
|
52
|
-
*
|
|
53
|
-
* @param template to deregister
|
|
54
|
-
* @param position if set, the template will only be deregistered if it was registered at this position (optional)
|
|
55
|
-
*/
|
|
56
|
-
deregisterColumn(template, position) {
|
|
57
|
-
this.slotManager.deregisterSlotTemplate(template, position);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
ElderToolbarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
61
|
-
ElderToolbarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarService, providedIn: 'root' });
|
|
62
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarService, decorators: [{
|
|
63
|
-
type: Injectable,
|
|
64
|
-
args: [{
|
|
65
|
-
providedIn: 'root'
|
|
66
|
-
}]
|
|
67
|
-
}], ctorParameters: function () { return []; } });
|
|
68
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItdG9vbGJhci5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9uYXZpZ2F0aW9uL3Rvb2xiYXIvZWxkZXItdG9vbGJhci5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxVQUFVLEVBQWMsTUFBTSxlQUFlLENBQUM7QUFDdEQsT0FBTyxFQUFDLGFBQWEsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBR25ELE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLGlEQUFpRCxDQUFDOztBQUtwRixNQUFNLE9BQU8sbUJBQW1CO0lBWTlCOzs7O2dGQUk0RTtJQUU1RTtRQWhCQTs7OztvRkFJNEU7UUFFM0QsV0FBTSxHQUFHLGFBQWEsQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQVd2RSxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksbUJBQW1CLENBQ3hDO1lBQ0UsTUFBTTtZQUNOLFlBQVk7WUFDWixDQUFDLFVBQVUsRUFBRSxjQUFjLENBQUM7WUFDNUIsUUFBUTtZQUNSLE9BQU87WUFDUCxDQUFDLGFBQWEsRUFBRSxlQUFlLENBQUM7WUFDaEMsV0FBVztTQUNaLENBQ0YsQ0FBQztJQUNKLENBQUM7SUFFRDs7OztnRkFJNEU7SUFFNUU7OztPQUdHO0lBQ0ksb0JBQW9CLENBQUMsUUFBK0I7UUFDekQsT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFDLGtCQUFrQixDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ3ZELENBQUM7SUFFRDs7Ozs7O09BTUc7SUFDSSxjQUFjLENBQUMsUUFBK0IsRUFBRSxRQUEwQixFQUFFLFNBQVMsR0FBRyxLQUFLO1FBQ2xHLElBQUksQ0FBQyxXQUFXLENBQUMsb0JBQW9CLENBQUMsUUFBUSxFQUFFLFFBQVEsRUFBRSxTQUFTLENBQUMsQ0FBQztJQUN2RSxDQUFDO0lBRUQ7Ozs7O09BS0c7SUFDSSxnQkFBZ0IsQ0FBQyxRQUEwQixFQUFFLFFBQWdDO1FBQ2xGLElBQUksQ0FBQyxXQUFXLENBQUMsc0JBQXNCLENBQUMsUUFBUSxFQUFFLFFBQVEsQ0FBQyxDQUFDO0lBQzlELENBQUM7O2lIQWpFVSxtQkFBbUI7cUhBQW5CLG1CQUFtQixjQUZsQixNQUFNOzRGQUVQLG1CQUFtQjtrQkFIL0IsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0luamVjdGFibGUsIFRlbXBsYXRlUmVmfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7TG9nZ2VyRmFjdG9yeX0gZnJvbSAnQGVsZGVyYnl0ZS90cy1sb2dnZXInO1xuaW1wb3J0IHtUb29sYmFyQ29sdW1uUG9zaXRpb259IGZyb20gJy4vdG9vbGJhci1jb2x1bW4tcG9zaXRpb24nO1xuaW1wb3J0IHtPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcbmltcG9ydCB7VGVtcGxhdGVTbG90TWFuYWdlcn0gZnJvbSAnLi4vLi4vLi4vY29tbW9uL3RlbXBsYXRlcy90ZW1wbGF0ZS1zbG90LW1hbmFnZXInO1xuXG5ASW5qZWN0YWJsZSh7XG4gIHByb3ZpZGVkSW46ICdyb290J1xufSlcbmV4cG9ydCBjbGFzcyBFbGRlclRvb2xiYXJTZXJ2aWNlIHtcblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogRmllbGRzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBwcml2YXRlIHJlYWRvbmx5IGxvZ2dlciA9IExvZ2dlckZhY3RvcnkuZ2V0TG9nZ2VyKHRoaXMuY29uc3RydWN0b3IubmFtZSk7XG5cbiAgcHJpdmF0ZSByZWFkb25seSBzbG90TWFuYWdlcjogVGVtcGxhdGVTbG90TWFuYWdlcjxUb29sYmFyQ29sdW1uUG9zaXRpb24+O1xuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBDb25zdHJ1Y3RvcnMgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIHRoaXMuc2xvdE1hbmFnZXIgPSBuZXcgVGVtcGxhdGVTbG90TWFuYWdlcihcbiAgICAgIFtcbiAgICAgICAgJ2xlZnQnLFxuICAgICAgICAnbGVmdC5iZWdpbicsXG4gICAgICAgIFsnbGVmdC5lbmQnLCAnbGVmdC5hY3Rpb25zJ10sXG4gICAgICAgICdjZW50ZXInLFxuICAgICAgICAncmlnaHQnLFxuICAgICAgICBbJ3JpZ2h0LmJlZ2luJywgJ3JpZ2h0LmFjdGlvbnMnXSxcbiAgICAgICAgJ3JpZ2h0LmVuZCcsXG4gICAgICBdXG4gICAgKTtcbiAgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBQdWJsaWMgQVBJICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIC8qKlxuICAgKiBSZXR1cm5zIGFuIG9ic2VydmFibGUgd2hpY2ggZW1pdHMgdGhlIGN1cnJlbnQgYWN0aXZlIHRlbXBsYXRlIGZvciB0aGUgZ2l2ZW4gcG9zaXRpb25cbiAgICogb3ZlciB0aW1lLlxuICAgKi9cbiAgcHVibGljIGFjdGl2ZUNvbHVtblRlbXBsYXRlKHBvc2l0aW9uOiBUb29sYmFyQ29sdW1uUG9zaXRpb24pOiBPYnNlcnZhYmxlPFRlbXBsYXRlUmVmPGFueT4+IHtcbiAgICByZXR1cm4gdGhpcy5zbG90TWFuYWdlci5hY3RpdmVTbG90VGVtcGxhdGUocG9zaXRpb24pO1xuICB9XG5cbiAgLyoqXG4gICAqIFJlZ2lzdGVycyB0aGUgZ2l2ZW4gdGVtcGxhdGUgYXMgdG9vbGJhciBjb2x1bW4gYXQgdGhlIGdpdmVuIHBvc2l0aW9uLlxuICAgKlxuICAgKiBAcGFyYW0gcG9zaXRpb24gYXQgd2hpY2ggdGVtcGxhdGUgc2hvdWxkIGJlIHBsYWNlZFxuICAgKiBAcGFyYW0gdGVtcGxhdGUgdG8gc2V0IGF0IHBvc2l0aW9uXG4gICAqIEBwYXJhbSBpc0RlZmF1bHQgaWYgdGhlIGdpdmVuIHRlbXBsYXRlIHNob3VsZCBiZSB1c2VkIGFzIGFwcCBkZWZhdWx0XG4gICAqL1xuICBwdWJsaWMgcmVnaXN0ZXJDb2x1bW4ocG9zaXRpb246IFRvb2xiYXJDb2x1bW5Qb3NpdGlvbiwgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT4sIGlzRGVmYXVsdCA9IGZhbHNlKTogdm9pZCB7XG4gICAgdGhpcy5zbG90TWFuYWdlci5yZWdpc3RlclNsb3RUZW1wbGF0ZShwb3NpdGlvbiwgdGVtcGxhdGUsIGlzRGVmYXVsdCk7XG4gIH1cblxuICAvKipcbiAgICogRGVyZWdpc3RlciB0aGUgZ2l2ZW4gdGVtcGxhdGUgZnJvbSB0aGUgdG9vbGJhci5cbiAgICpcbiAgICogQHBhcmFtIHRlbXBsYXRlIHRvIGRlcmVnaXN0ZXJcbiAgICogQHBhcmFtIHBvc2l0aW9uIGlmIHNldCwgdGhlIHRlbXBsYXRlIHdpbGwgb25seSBiZSBkZXJlZ2lzdGVyZWQgaWYgaXQgd2FzIHJlZ2lzdGVyZWQgYXQgdGhpcyBwb3NpdGlvbiAob3B0aW9uYWwpXG4gICAqL1xuICBwdWJsaWMgZGVyZWdpc3RlckNvbHVtbih0ZW1wbGF0ZTogVGVtcGxhdGVSZWY8YW55PiwgcG9zaXRpb24/OiBUb29sYmFyQ29sdW1uUG9zaXRpb24pIHtcbiAgICB0aGlzLnNsb3RNYW5hZ2VyLmRlcmVnaXN0ZXJTbG90VGVtcGxhdGUodGVtcGxhdGUsIHBvc2l0aW9uKTtcbiAgfVxuXG59XG4iXX0=
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
-
import { LoggerFactory } from '@elderbyte/ts-logger';
|
|
3
|
-
import { BehaviorSubject, Subject } from 'rxjs';
|
|
4
|
-
import { takeUntil } from 'rxjs/operators';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "../elder-toolbar.service";
|
|
7
|
-
import * as i2 from "../../../theme/elder-theme.service";
|
|
8
|
-
import * as i3 from "@angular/common";
|
|
9
|
-
import * as i4 from "@angular/flex-layout/flex";
|
|
10
|
-
import * as i5 from "@angular/material/toolbar";
|
|
11
|
-
import * as i6 from "../../../i18n/language/language-switcher/elder-language-switcher.component";
|
|
12
|
-
import * as i7 from "../toolbar-title/elder-toolbar-title.component";
|
|
13
|
-
export class ElderToolbarComponent {
|
|
14
|
-
/***************************************************************************
|
|
15
|
-
* *
|
|
16
|
-
* Constructor *
|
|
17
|
-
* *
|
|
18
|
-
**************************************************************************/
|
|
19
|
-
constructor(toolbarService, themeService) {
|
|
20
|
-
this.toolbarService = toolbarService;
|
|
21
|
-
this.themeService = themeService;
|
|
22
|
-
/***************************************************************************
|
|
23
|
-
* *
|
|
24
|
-
* Fields *
|
|
25
|
-
* *
|
|
26
|
-
**************************************************************************/
|
|
27
|
-
this.logger = LoggerFactory.getLogger(this.constructor.name);
|
|
28
|
-
/** The color of the Toolbar */
|
|
29
|
-
this.color$ = new BehaviorSubject('primary');
|
|
30
|
-
this.destroy$ = new Subject();
|
|
31
|
-
}
|
|
32
|
-
set color(c) {
|
|
33
|
-
this.color$.next(c);
|
|
34
|
-
}
|
|
35
|
-
/***************************************************************************
|
|
36
|
-
* *
|
|
37
|
-
* Life Cycle *
|
|
38
|
-
* *
|
|
39
|
-
**************************************************************************/
|
|
40
|
-
ngOnInit() {
|
|
41
|
-
this.themeService
|
|
42
|
-
.activeTheme$
|
|
43
|
-
.pipe(takeUntil(this.destroy$))
|
|
44
|
-
.subscribe(theme => this.color$.next(theme.heroBackground));
|
|
45
|
-
}
|
|
46
|
-
ngOnDestroy() {
|
|
47
|
-
this.destroy$.next();
|
|
48
|
-
this.destroy$.complete();
|
|
49
|
-
}
|
|
50
|
-
/***************************************************************************
|
|
51
|
-
* *
|
|
52
|
-
* Public API *
|
|
53
|
-
* *
|
|
54
|
-
**************************************************************************/
|
|
55
|
-
slotTemplate$(slot) {
|
|
56
|
-
return this.toolbarService.activeColumnTemplate(slot);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
ElderToolbarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarComponent, deps: [{ token: i1.ElderToolbarService }, { token: i2.ElderThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
60
|
-
ElderToolbarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.10", type: ElderToolbarComponent, selector: "elder-toolbar, ebs-toolbar", inputs: { color: "color" }, ngImport: i0, template: "\n\n<div fxLayout=\"row\">\n\n <ng-content></ng-content>\n\n <mat-toolbar fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [color]=\"color$ | async\">\n\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('left.begin') | async)\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('left') | async) || defaultLeftColumnTemplate\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('left.end') | async) || defaultEmptyTemplate\"></ng-container>\n </div>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxFlex>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('center') | async) || defaultCenterColumnTemplate\"></ng-container>\n </div>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"end center\">\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('right.begin') | async) || defaultEmptyTemplate\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('right') | async) || defaultRightColumnTemplate\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('right.end') | async)\"></ng-container>\n </div>\n\n\n <!-- Default Templates -->\n\n <ng-template #defaultLeftColumnTemplate>\n\n <elder-toolbar-title></elder-toolbar-title>\n\n </ng-template>\n\n\n <ng-template #defaultCenterColumnTemplate></ng-template>\n\n <ng-template #defaultEmptyTemplate></ng-template>\n\n\n <ng-template #defaultRightColumnTemplate>\n\n <elder-language-switcher [slimMode]=\"true\"></elder-language-switcher>\n\n </ng-template>\n\n </mat-toolbar>\n\n</div>\n\n", styles: [""], dependencies: [{ kind: "directive", type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i4.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i4.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "component", type: i5.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "component", type: i6.ElderLanguageSwitcherComponent, selector: "elder-language-switcher, ebs-language-switcher", inputs: ["slimMode"] }, { kind: "component", type: i7.ElderToolbarTitleComponent, selector: "elder-toolbar-title, ebs-toolbar-title" }, { kind: "pipe", type: i3.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
61
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarComponent, decorators: [{
|
|
62
|
-
type: Component,
|
|
63
|
-
args: [{ selector: 'elder-toolbar, ebs-toolbar', changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n<div fxLayout=\"row\">\n\n <ng-content></ng-content>\n\n <mat-toolbar fxLayout=\"row\" fxLayoutAlign=\"start center\"\n [color]=\"color$ | async\">\n\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('left.begin') | async)\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('left') | async) || defaultLeftColumnTemplate\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('left.end') | async) || defaultEmptyTemplate\"></ng-container>\n </div>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxFlex>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('center') | async) || defaultCenterColumnTemplate\"></ng-container>\n </div>\n\n <div fxLayout=\"row\" fxLayoutAlign=\"end center\">\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('right.begin') | async) || defaultEmptyTemplate\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('right') | async) || defaultRightColumnTemplate\"></ng-container>\n <ng-container *ngTemplateOutlet=\"(slotTemplate$('right.end') | async)\"></ng-container>\n </div>\n\n\n <!-- Default Templates -->\n\n <ng-template #defaultLeftColumnTemplate>\n\n <elder-toolbar-title></elder-toolbar-title>\n\n </ng-template>\n\n\n <ng-template #defaultCenterColumnTemplate></ng-template>\n\n <ng-template #defaultEmptyTemplate></ng-template>\n\n\n <ng-template #defaultRightColumnTemplate>\n\n <elder-language-switcher [slimMode]=\"true\"></elder-language-switcher>\n\n </ng-template>\n\n </mat-toolbar>\n\n</div>\n\n" }]
|
|
64
|
-
}], ctorParameters: function () { return [{ type: i1.ElderToolbarService }, { type: i2.ElderThemeService }]; }, propDecorators: { color: [{
|
|
65
|
-
type: Input
|
|
66
|
-
}] } });
|
|
67
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItdG9vbGJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL25hdmlnYXRpb24vdG9vbGJhci90b29sYmFyL2VsZGVyLXRvb2xiYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9uYXZpZ2F0aW9uL3Rvb2xiYXIvdG9vbGJhci9lbGRlci10b29sYmFyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFpQyxNQUFNLGVBQWUsQ0FBQztBQUN4RyxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sc0JBQXNCLENBQUM7QUFFbkQsT0FBTyxFQUFDLGVBQWUsRUFBYyxPQUFPLEVBQUMsTUFBTSxNQUFNLENBQUM7QUFJMUQsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGdCQUFnQixDQUFDOzs7Ozs7Ozs7QUFRekMsTUFBTSxPQUFPLHFCQUFxQjtJQW9CaEM7Ozs7Z0ZBSTRFO0lBRTVFLFlBQ1UsY0FBbUMsRUFDbkMsWUFBK0I7UUFEL0IsbUJBQWMsR0FBZCxjQUFjLENBQXFCO1FBQ25DLGlCQUFZLEdBQVosWUFBWSxDQUFtQjtRQTFCekM7Ozs7b0ZBSTRFO1FBRTNELFdBQU0sR0FBRyxhQUFhLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUM7UUFFekUsK0JBQStCO1FBQ2YsV0FBTSxHQUFHLElBQUksZUFBZSxDQUFlLFNBQVMsQ0FBQyxDQUFDO1FBRXJELGFBQVEsR0FBRyxJQUFJLE9BQU8sRUFBUSxDQUFDO0lBaUJoRCxDQUFDO0lBZkQsSUFDVyxLQUFLLENBQUMsQ0FBZTtRQUM5QixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUN0QixDQUFDO0lBY0Q7Ozs7Z0ZBSTRFO0lBRXJFLFFBQVE7UUFDYixJQUFJLENBQUMsWUFBWTthQUNkLFlBQVk7YUFDWixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUM5QixTQUFTLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsY0FBYyxDQUFDLENBQUMsQ0FBQTtJQUMvRCxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ3JCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDM0IsQ0FBQztJQUVEOzs7O2dGQUk0RTtJQUVyRSxhQUFhLENBQUMsSUFBMkI7UUFDOUMsT0FBTyxJQUFJLENBQUMsY0FBYyxDQUFDLG9CQUFvQixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3hELENBQUM7O21IQTFEVSxxQkFBcUI7dUdBQXJCLHFCQUFxQiw4RkNmbEMsZ29EQWtEQTs0RkRuQ2EscUJBQXFCO2tCQU5qQyxTQUFTOytCQUNFLDRCQUE0QixtQkFHckIsdUJBQXVCLENBQUMsTUFBTTswSUFrQnBDLEtBQUs7c0JBRGYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQsIE9uRGVzdHJveSwgT25Jbml0LCBUZW1wbGF0ZVJlZn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0xvZ2dlckZhY3Rvcnl9IGZyb20gJ0BlbGRlcmJ5dGUvdHMtbG9nZ2VyJztcbmltcG9ydCB7RWxkZXJUb29sYmFyU2VydmljZX0gZnJvbSAnLi4vZWxkZXItdG9vbGJhci5zZXJ2aWNlJztcbmltcG9ydCB7QmVoYXZpb3JTdWJqZWN0LCBPYnNlcnZhYmxlLCBTdWJqZWN0fSBmcm9tICdyeGpzJztcbmltcG9ydCB7VG9vbGJhckNvbHVtblBvc2l0aW9ufSBmcm9tICcuLi90b29sYmFyLWNvbHVtbi1wb3NpdGlvbic7XG5pbXBvcnQge1RoZW1lUGFsZXR0ZX0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZSc7XG5pbXBvcnQge0VsZGVyVGhlbWVTZXJ2aWNlfSBmcm9tICcuLi8uLi8uLi90aGVtZS9lbGRlci10aGVtZS5zZXJ2aWNlJztcbmltcG9ydCB7dGFrZVVudGlsfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2VsZGVyLXRvb2xiYXIsIGVicy10b29sYmFyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2VsZGVyLXRvb2xiYXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9lbGRlci10b29sYmFyLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyVG9vbGJhckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogRmllbGRzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBwcml2YXRlIHJlYWRvbmx5IGxvZ2dlciA9IExvZ2dlckZhY3RvcnkuZ2V0TG9nZ2VyKHRoaXMuY29uc3RydWN0b3IubmFtZSk7XG5cbiAgLyoqIFRoZSBjb2xvciBvZiB0aGUgVG9vbGJhciAqL1xuICBwdWJsaWMgcmVhZG9ubHkgY29sb3IkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxUaGVtZVBhbGV0dGU+KCdwcmltYXJ5Jyk7XG5cbiAgcHJpdmF0ZSByZWFkb25seSBkZXN0cm95JCA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XG5cbiAgQElucHV0KClcbiAgcHVibGljIHNldCBjb2xvcihjOiBUaGVtZVBhbGV0dGUpe1xuICAgIHRoaXMuY29sb3IkLm5leHQoYyk7XG4gIH1cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogQ29uc3RydWN0b3IgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIHRvb2xiYXJTZXJ2aWNlOiBFbGRlclRvb2xiYXJTZXJ2aWNlLFxuICAgIHByaXZhdGUgdGhlbWVTZXJ2aWNlOiBFbGRlclRoZW1lU2VydmljZVxuICApIHtcbiAgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBMaWZlIEN5Y2xlICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnRoZW1lU2VydmljZVxuICAgICAgLmFjdGl2ZVRoZW1lJFxuICAgICAgLnBpcGUodGFrZVVudGlsKHRoaXMuZGVzdHJveSQpKVxuICAgICAgLnN1YnNjcmliZSh0aGVtZSA9PiB0aGlzLmNvbG9yJC5uZXh0KHRoZW1lLmhlcm9CYWNrZ3JvdW5kKSlcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLmRlc3Ryb3kkLm5leHQoKTtcbiAgICB0aGlzLmRlc3Ryb3kkLmNvbXBsZXRlKCk7XG4gIH1cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogUHVibGljIEFQSSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBwdWJsaWMgc2xvdFRlbXBsYXRlJChzbG90OiBUb29sYmFyQ29sdW1uUG9zaXRpb24pOiBPYnNlcnZhYmxlPFRlbXBsYXRlUmVmPGFueT4+IHtcbiAgICByZXR1cm4gdGhpcy50b29sYmFyU2VydmljZS5hY3RpdmVDb2x1bW5UZW1wbGF0ZShzbG90KTtcbiAgfVxuXG5cblxufVxuIiwiXG5cbjxkaXYgZnhMYXlvdXQ9XCJyb3dcIj5cblxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG5cbiAgPG1hdC10b29sYmFyIGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXRBbGlnbj1cInN0YXJ0IGNlbnRlclwiXG4gICAgICAgICAgICAgICBbY29sb3JdPVwiY29sb3IkIHwgYXN5bmNcIj5cblxuICAgIDxkaXYgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwic3RhcnQgY2VudGVyXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiKHNsb3RUZW1wbGF0ZSQoJ2xlZnQuYmVnaW4nKSB8IGFzeW5jKVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cIihzbG90VGVtcGxhdGUkKCdsZWZ0JykgfCBhc3luYykgfHwgZGVmYXVsdExlZnRDb2x1bW5UZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cIihzbG90VGVtcGxhdGUkKCdsZWZ0LmVuZCcpIHwgYXN5bmMpIHx8IGRlZmF1bHRFbXB0eVRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XG4gICAgPC9kaXY+XG5cbiAgICA8ZGl2IGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXRBbGlnbj1cImNlbnRlciBjZW50ZXJcIiBmeEZsZXg+XG4gICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiKHNsb3RUZW1wbGF0ZSQoJ2NlbnRlcicpIHwgYXN5bmMpIHx8IGRlZmF1bHRDZW50ZXJDb2x1bW5UZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvZGl2PlxuXG4gICAgPGRpdiBmeExheW91dD1cInJvd1wiIGZ4TGF5b3V0QWxpZ249XCJlbmQgY2VudGVyXCI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiKHNsb3RUZW1wbGF0ZSQoJ3JpZ2h0LmJlZ2luJykgfCBhc3luYykgfHwgZGVmYXVsdEVtcHR5VGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCIoc2xvdFRlbXBsYXRlJCgncmlnaHQnKSB8IGFzeW5jKSB8fCBkZWZhdWx0UmlnaHRDb2x1bW5UZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cIihzbG90VGVtcGxhdGUkKCdyaWdodC5lbmQnKSB8IGFzeW5jKVwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvZGl2PlxuXG5cbiAgICA8IS0tIERlZmF1bHQgVGVtcGxhdGVzIC0tPlxuXG4gICAgPG5nLXRlbXBsYXRlICNkZWZhdWx0TGVmdENvbHVtblRlbXBsYXRlPlxuXG4gICAgICA8ZWxkZXItdG9vbGJhci10aXRsZT48L2VsZGVyLXRvb2xiYXItdGl0bGU+XG5cbiAgICA8L25nLXRlbXBsYXRlPlxuXG5cbiAgICA8bmctdGVtcGxhdGUgI2RlZmF1bHRDZW50ZXJDb2x1bW5UZW1wbGF0ZT48L25nLXRlbXBsYXRlPlxuXG4gICAgPG5nLXRlbXBsYXRlICNkZWZhdWx0RW1wdHlUZW1wbGF0ZT48L25nLXRlbXBsYXRlPlxuXG5cbiAgICA8bmctdGVtcGxhdGUgI2RlZmF1bHRSaWdodENvbHVtblRlbXBsYXRlPlxuXG4gICAgICA8ZWxkZXItbGFuZ3VhZ2Utc3dpdGNoZXIgW3NsaW1Nb2RlXT1cInRydWVcIj48L2VsZGVyLWxhbmd1YWdlLXN3aXRjaGVyPlxuXG4gICAgPC9uZy10ZW1wbGF0ZT5cblxuICA8L21hdC10b29sYmFyPlxuXG48L2Rpdj5cblxuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbGJhci1jb2x1bW4tcG9zaXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL25hdmlnYXRpb24vdG9vbGJhci90b29sYmFyLWNvbHVtbi1wb3NpdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiXG5cbmV4cG9ydCB0eXBlIFRvb2xiYXJDb2x1bW5Qb3NpdGlvbiA9XG4gICdsZWZ0JyB8XG4gICdsZWZ0LmJlZ2luJyB8XG4gICdsZWZ0LmVuZCcgfFxuXG4gIC8qKlxuICAgKiBTeW5vbnltIHRvIGxlZnQuZW5kXG4gICAqL1xuICAnbGVmdC5hY3Rpb25zJyB8XG4gICdjZW50ZXInIHxcbiAgJ3JpZ2h0JyB8XG4gICdyaWdodC5iZWdpbicgfFxuICAncmlnaHQuZW5kJyB8XG5cbiAgLyoqXG4gICAqIFN5bm9ueW0gdG8gcmlnaHQuYmVnaW5cbiAgICovXG4gICdyaWdodC5hY3Rpb25zJztcbiJdfQ==
|
package/esm2020/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.component.mjs
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
2
|
-
import { map } from 'rxjs/operators';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./elder-toolbar-title.service";
|
|
5
|
-
import * as i2 from "@angular/router";
|
|
6
|
-
import * as i3 from "@angular/common";
|
|
7
|
-
import * as i4 from "@ngx-translate/core";
|
|
8
|
-
export class ElderToolbarTitleComponent {
|
|
9
|
-
/***************************************************************************
|
|
10
|
-
* *
|
|
11
|
-
* Constructor *
|
|
12
|
-
* *
|
|
13
|
-
**************************************************************************/
|
|
14
|
-
constructor(toolbarService, activatedRoute) {
|
|
15
|
-
this.toolbarService = toolbarService;
|
|
16
|
-
this.activatedRoute = activatedRoute;
|
|
17
|
-
}
|
|
18
|
-
/***************************************************************************
|
|
19
|
-
* *
|
|
20
|
-
* Lifecycle *
|
|
21
|
-
* *
|
|
22
|
-
**************************************************************************/
|
|
23
|
-
ngOnInit() {
|
|
24
|
-
this.title$ = this.toolbarService.titleChange
|
|
25
|
-
.pipe(map(tb => tb.name));
|
|
26
|
-
}
|
|
27
|
-
ngAfterViewInit() {
|
|
28
|
-
setTimeout(() => {
|
|
29
|
-
this.toolbarService.updateTitle(this.activatedRoute);
|
|
30
|
-
}, 10);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
ElderToolbarTitleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarTitleComponent, deps: [{ token: i1.ElderToolbarTitleService }, { token: i2.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
34
|
-
ElderToolbarTitleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.10", type: ElderToolbarTitleComponent, selector: "elder-toolbar-title, ebs-toolbar-title", ngImport: i0, template: "<h3 class=\"mat-title\">{{(title$ | async) | translate}}</h3>\n", styles: [""], dependencies: [{ kind: "pipe", type: i3.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarTitleComponent, decorators: [{
|
|
36
|
-
type: Component,
|
|
37
|
-
args: [{ selector: 'elder-toolbar-title, ebs-toolbar-title', changeDetection: ChangeDetectionStrategy.OnPush, template: "<h3 class=\"mat-title\">{{(title$ | async) | translate}}</h3>\n" }]
|
|
38
|
-
}], ctorParameters: function () { return [{ type: i1.ElderToolbarTitleService }, { type: i2.ActivatedRoute }]; } });
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItdG9vbGJhci10aXRsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL25hdmlnYXRpb24vdG9vbGJhci90b29sYmFyLXRpdGxlL2VsZGVyLXRvb2xiYXItdGl0bGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9uYXZpZ2F0aW9uL3Rvb2xiYXIvdG9vbGJhci10aXRsZS9lbGRlci10b29sYmFyLXRpdGxlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBZ0IsdUJBQXVCLEVBQUUsU0FBUyxFQUFTLE1BQU0sZUFBZSxDQUFDO0FBRXhGLE9BQU8sRUFBQyxHQUFHLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7O0FBVW5DLE1BQU0sT0FBTywwQkFBMEI7SUFVckM7Ozs7Z0ZBSTRFO0lBRTVFLFlBQ1UsY0FBd0MsRUFDeEMsY0FBOEI7UUFEOUIsbUJBQWMsR0FBZCxjQUFjLENBQTBCO1FBQ3hDLG1CQUFjLEdBQWQsY0FBYyxDQUFnQjtJQUd4QyxDQUFDO0lBRUQ7Ozs7Z0ZBSTRFO0lBRXJFLFFBQVE7UUFDYixJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsV0FBVzthQUMxQyxJQUFJLENBQ0gsR0FBRyxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxDQUNuQixDQUFDO0lBQ04sQ0FBQztJQUVNLGVBQWU7UUFDcEIsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUNkLElBQUksQ0FBQyxjQUFjLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUN2RCxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUM7SUFDVCxDQUFDOzt3SEF4Q1UsMEJBQTBCOzRHQUExQiwwQkFBMEIsOEVDWnZDLGlFQUNBOzRGRFdhLDBCQUEwQjtrQkFOdEMsU0FBUzsrQkFDRSx3Q0FBd0MsbUJBR2pDLHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0FmdGVyVmlld0luaXQsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIE9uSW5pdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0VsZGVyVG9vbGJhclRpdGxlU2VydmljZX0gZnJvbSAnLi9lbGRlci10b29sYmFyLXRpdGxlLnNlcnZpY2UnO1xuaW1wb3J0IHttYXB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcbmltcG9ydCB7QWN0aXZhdGVkUm91dGV9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQge09ic2VydmFibGV9IGZyb20gJ3J4anMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlbGRlci10b29sYmFyLXRpdGxlLCBlYnMtdG9vbGJhci10aXRsZScsXG4gIHRlbXBsYXRlVXJsOiAnLi9lbGRlci10b29sYmFyLXRpdGxlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZWxkZXItdG9vbGJhci10aXRsZS5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxufSlcbmV4cG9ydCBjbGFzcyBFbGRlclRvb2xiYXJUaXRsZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgQWZ0ZXJWaWV3SW5pdCB7XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIEZpZWxkcyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHVibGljIHRpdGxlJDogT2JzZXJ2YWJsZTxzdHJpbmc+O1xuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBDb25zdHJ1Y3RvciAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgdG9vbGJhclNlcnZpY2U6IEVsZGVyVG9vbGJhclRpdGxlU2VydmljZSxcbiAgICBwcml2YXRlIGFjdGl2YXRlZFJvdXRlOiBBY3RpdmF0ZWRSb3V0ZVxuICApIHtcblxuICB9XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIExpZmVjeWNsZSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMudGl0bGUkID0gdGhpcy50b29sYmFyU2VydmljZS50aXRsZUNoYW5nZVxuICAgICAgLnBpcGUoXG4gICAgICAgIG1hcCh0YiA9PiB0Yi5uYW1lKVxuICAgICAgKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ0FmdGVyVmlld0luaXQoKTogdm9pZCB7XG4gICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICB0aGlzLnRvb2xiYXJTZXJ2aWNlLnVwZGF0ZVRpdGxlKHRoaXMuYWN0aXZhdGVkUm91dGUpO1xuICAgIH0sIDEwKTtcbiAgfVxufVxuIiwiPGgzIGNsYXNzPVwibWF0LXRpdGxlXCI+e3sodGl0bGUkIHwgYXN5bmMpIHwgdHJhbnNsYXRlfX08L2gzPlxuIl19
|
package/esm2020/lib/components/navigation/toolbar/toolbar-title/elder-toolbar-title.service.mjs
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import { NavigationEnd } from '@angular/router';
|
|
4
|
-
import { filter, map } from 'rxjs/operators';
|
|
5
|
-
import { LoggerFactory } from '@elderbyte/ts-logger';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "@angular/router";
|
|
8
|
-
export class ToolbarHeader {
|
|
9
|
-
constructor(name) {
|
|
10
|
-
this.name = name;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
export class ElderToolbarTitleService {
|
|
14
|
-
/***************************************************************************
|
|
15
|
-
* *
|
|
16
|
-
* Constructor *
|
|
17
|
-
* *
|
|
18
|
-
**************************************************************************/
|
|
19
|
-
constructor(router, activatedRoute) {
|
|
20
|
-
this.router = router;
|
|
21
|
-
this.activatedRoute = activatedRoute;
|
|
22
|
-
/***************************************************************************
|
|
23
|
-
* *
|
|
24
|
-
* Fields *
|
|
25
|
-
* *
|
|
26
|
-
**************************************************************************/
|
|
27
|
-
this.logger = LoggerFactory.getLogger(this.constructor.name);
|
|
28
|
-
this._title = new ToolbarHeader('');
|
|
29
|
-
this._titleChange = new BehaviorSubject(this._title);
|
|
30
|
-
router.events.pipe(filter(event => event instanceof NavigationEnd), map(() => this.activatedRoute))
|
|
31
|
-
.subscribe(active => {
|
|
32
|
-
this.updateTitle(active);
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
/***************************************************************************
|
|
36
|
-
* *
|
|
37
|
-
* Properties *
|
|
38
|
-
* *
|
|
39
|
-
**************************************************************************/
|
|
40
|
-
set title(title) {
|
|
41
|
-
this._title = title;
|
|
42
|
-
this._titleChange.next(title);
|
|
43
|
-
}
|
|
44
|
-
get title() {
|
|
45
|
-
return this._title;
|
|
46
|
-
}
|
|
47
|
-
get titleChange() {
|
|
48
|
-
return this._titleChange;
|
|
49
|
-
}
|
|
50
|
-
/***************************************************************************
|
|
51
|
-
* *
|
|
52
|
-
* Public Api *
|
|
53
|
-
* *
|
|
54
|
-
**************************************************************************/
|
|
55
|
-
updateTitle(activatedRoute) {
|
|
56
|
-
const title = this.resolveTitle(activatedRoute);
|
|
57
|
-
// this.logger.trace('Updating Title to: ' + title, activatedRoute);
|
|
58
|
-
this.title = new ToolbarHeader(title);
|
|
59
|
-
}
|
|
60
|
-
/***************************************************************************
|
|
61
|
-
* *
|
|
62
|
-
* Private methods *
|
|
63
|
-
* *
|
|
64
|
-
**************************************************************************/
|
|
65
|
-
resolveTitle(activatedRoute) {
|
|
66
|
-
let resolvedTitle = 'Loading ...';
|
|
67
|
-
while (activatedRoute) {
|
|
68
|
-
const point = activatedRoute.snapshot.data['title'];
|
|
69
|
-
if (point) {
|
|
70
|
-
resolvedTitle = point;
|
|
71
|
-
}
|
|
72
|
-
activatedRoute = activatedRoute.firstChild;
|
|
73
|
-
}
|
|
74
|
-
return resolvedTitle;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
ElderToolbarTitleService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarTitleService, deps: [{ token: i1.Router }, { token: i1.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
78
|
-
ElderToolbarTitleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarTitleService, providedIn: 'root' });
|
|
79
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderToolbarTitleService, decorators: [{
|
|
80
|
-
type: Injectable,
|
|
81
|
-
args: [{
|
|
82
|
-
providedIn: 'root'
|
|
83
|
-
}]
|
|
84
|
-
}], ctorParameters: function () { return [{ type: i1.Router }, { type: i1.ActivatedRoute }]; } });
|
|
85
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItdG9vbGJhci10aXRsZS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9uYXZpZ2F0aW9uL3Rvb2xiYXIvdG9vbGJhci10aXRsZS9lbGRlci10b29sYmFyLXRpdGxlLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUMsZUFBZSxFQUFhLE1BQU0sTUFBTSxDQUFDO0FBQ2pELE9BQU8sRUFBaUIsYUFBYSxFQUFTLE1BQU0saUJBQWlCLENBQUM7QUFDdEUsT0FBTyxFQUFDLE1BQU0sRUFBRSxHQUFHLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUMsYUFBYSxFQUFDLE1BQU0sc0JBQXNCLENBQUM7OztBQUduRCxNQUFNLE9BQU8sYUFBYTtJQUN4QixZQUNTLElBQVk7UUFBWixTQUFJLEdBQUosSUFBSSxDQUFRO0lBQ3JCLENBQUM7Q0FDRjtBQUtELE1BQU0sT0FBTyx3QkFBd0I7SUFjbkM7Ozs7Z0ZBSTRFO0lBRTVFLFlBQ1UsTUFBYyxFQUNkLGNBQThCO1FBRDlCLFdBQU0sR0FBTixNQUFNLENBQVE7UUFDZCxtQkFBYyxHQUFkLGNBQWMsQ0FBZ0I7UUFwQnhDOzs7O29GQUk0RTtRQUUzRCxXQUFNLEdBQUcsYUFBYSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRWpFLFdBQU0sR0FBRyxJQUFJLGFBQWEsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQWNyQyxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksZUFBZSxDQUFnQixJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFcEUsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQ2hCLE1BQU0sQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLEtBQUssWUFBWSxhQUFhLENBQUMsRUFDL0MsR0FBRyxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FDL0I7YUFDRSxTQUFTLENBQUMsTUFBTSxDQUFFLEVBQUU7WUFDbkIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUMzQixDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFRDs7OztnRkFJNEU7SUFFNUUsSUFBVyxLQUFLLENBQUMsS0FBb0I7UUFDbkMsSUFBSSxDQUFDLE1BQU0sR0FBRyxLQUFLLENBQUM7UUFDcEIsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDaEMsQ0FBQztJQUVELElBQVcsS0FBSztRQUNkLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFBVyxXQUFXO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQztJQUMzQixDQUFDO0lBRUQ7Ozs7Z0ZBSTRFO0lBRXJFLFdBQVcsQ0FBQyxjQUE4QjtRQUUvQyxNQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBRWhELG9FQUFvRTtRQUVwRSxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksYUFBYSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3hDLENBQUM7SUFFRDs7OztnRkFJNEU7SUFFcEUsWUFBWSxDQUFDLGNBQThCO1FBRWpELElBQUksYUFBYSxHQUFHLGFBQWEsQ0FBQztRQUVsQyxPQUFPLGNBQWMsRUFBRTtZQUNyQixNQUFNLEtBQUssR0FBRyxjQUFjLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUNwRCxJQUFJLEtBQUssRUFBRTtnQkFDVCxhQUFhLEdBQUcsS0FBSyxDQUFDO2FBQ3ZCO1lBQ0QsY0FBYyxHQUFHLGNBQWMsQ0FBQyxVQUFVLENBQUM7U0FDNUM7UUFFRCxPQUFPLGFBQWEsQ0FBQztJQUN2QixDQUFDOztzSEF4RlUsd0JBQXdCOzBIQUF4Qix3QkFBd0IsY0FGdkIsTUFBTTs0RkFFUCx3QkFBd0I7a0JBSHBDLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiXG5pbXBvcnQge0luamVjdGFibGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtCZWhhdmlvclN1YmplY3QsIE9ic2VydmFibGV9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHtBY3RpdmF0ZWRSb3V0ZSwgTmF2aWdhdGlvbkVuZCwgUm91dGVyfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHtmaWx0ZXIsIG1hcH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuaW1wb3J0IHtMb2dnZXJGYWN0b3J5fSBmcm9tICdAZWxkZXJieXRlL3RzLWxvZ2dlcic7XG5cblxuZXhwb3J0IGNsYXNzIFRvb2xiYXJIZWFkZXIge1xuICBjb25zdHJ1Y3RvcihcbiAgICBwdWJsaWMgbmFtZTogc3RyaW5nKSB7XG4gIH1cbn1cblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCdcbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJUb29sYmFyVGl0bGVTZXJ2aWNlIHtcblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogRmllbGRzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBwcml2YXRlIHJlYWRvbmx5IGxvZ2dlciA9IExvZ2dlckZhY3RvcnkuZ2V0TG9nZ2VyKHRoaXMuY29uc3RydWN0b3IubmFtZSk7XG5cbiAgcHJpdmF0ZSBfdGl0bGUgPSBuZXcgVG9vbGJhckhlYWRlcignJyk7XG4gIHByaXZhdGUgX3RpdGxlQ2hhbmdlOiBCZWhhdmlvclN1YmplY3Q8VG9vbGJhckhlYWRlcj47XG5cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogQ29uc3RydWN0b3IgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIHJvdXRlcjogUm91dGVyLFxuICAgIHByaXZhdGUgYWN0aXZhdGVkUm91dGU6IEFjdGl2YXRlZFJvdXRlXG4gICkge1xuICAgIHRoaXMuX3RpdGxlQ2hhbmdlID0gbmV3IEJlaGF2aW9yU3ViamVjdDxUb29sYmFySGVhZGVyPih0aGlzLl90aXRsZSk7XG5cbiAgICByb3V0ZXIuZXZlbnRzLnBpcGUoXG4gICAgICBmaWx0ZXIoZXZlbnQgPT4gZXZlbnQgaW5zdGFuY2VvZiBOYXZpZ2F0aW9uRW5kKSxcbiAgICAgIG1hcCgoKSA9PiB0aGlzLmFjdGl2YXRlZFJvdXRlKVxuICAgIClcbiAgICAgIC5zdWJzY3JpYmUoYWN0aXZlICA9PiB7XG4gICAgICAgIHRoaXMudXBkYXRlVGl0bGUoYWN0aXZlKTtcbiAgICAgIH0pO1xuICB9XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIFByb3BlcnRpZXMgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHVibGljIHNldCB0aXRsZSh0aXRsZTogVG9vbGJhckhlYWRlcikge1xuICAgIHRoaXMuX3RpdGxlID0gdGl0bGU7XG4gICAgdGhpcy5fdGl0bGVDaGFuZ2UubmV4dCh0aXRsZSk7XG4gIH1cblxuICBwdWJsaWMgZ2V0IHRpdGxlKCk6IFRvb2xiYXJIZWFkZXIge1xuICAgIHJldHVybiB0aGlzLl90aXRsZTtcbiAgfVxuXG4gIHB1YmxpYyBnZXQgdGl0bGVDaGFuZ2UoKTogT2JzZXJ2YWJsZTxUb29sYmFySGVhZGVyPiB7XG4gICAgcmV0dXJuIHRoaXMuX3RpdGxlQ2hhbmdlO1xuICB9XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIFB1YmxpYyBBcGkgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHVibGljIHVwZGF0ZVRpdGxlKGFjdGl2YXRlZFJvdXRlOiBBY3RpdmF0ZWRSb3V0ZSk6IHZvaWQge1xuXG4gICAgY29uc3QgdGl0bGUgPSB0aGlzLnJlc29sdmVUaXRsZShhY3RpdmF0ZWRSb3V0ZSk7XG5cbiAgICAvLyB0aGlzLmxvZ2dlci50cmFjZSgnVXBkYXRpbmcgVGl0bGUgdG86ICcgKyB0aXRsZSwgYWN0aXZhdGVkUm91dGUpO1xuXG4gICAgdGhpcy50aXRsZSA9IG5ldyBUb29sYmFySGVhZGVyKHRpdGxlKTtcbiAgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBQcml2YXRlIG1ldGhvZHMgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIHByaXZhdGUgcmVzb2x2ZVRpdGxlKGFjdGl2YXRlZFJvdXRlOiBBY3RpdmF0ZWRSb3V0ZSk6IHN0cmluZyB7XG5cbiAgICBsZXQgcmVzb2x2ZWRUaXRsZSA9ICdMb2FkaW5nIC4uLic7XG5cbiAgICB3aGlsZSAoYWN0aXZhdGVkUm91dGUpIHtcbiAgICAgIGNvbnN0IHBvaW50ID0gYWN0aXZhdGVkUm91dGUuc25hcHNob3QuZGF0YVsndGl0bGUnXTtcbiAgICAgIGlmIChwb2ludCkge1xuICAgICAgICByZXNvbHZlZFRpdGxlID0gcG9pbnQ7XG4gICAgICB9XG4gICAgICBhY3RpdmF0ZWRSb3V0ZSA9IGFjdGl2YXRlZFJvdXRlLmZpcnN0Q2hpbGQ7XG4gICAgfVxuXG4gICAgcmV0dXJuIHJlc29sdmVkVGl0bGU7XG4gIH1cbn1cbiJdfQ==
|