@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,176 +0,0 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import { moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop';
|
|
3
|
-
export class CardDropEvent {
|
|
4
|
-
constructor(
|
|
5
|
-
/**
|
|
6
|
-
* fromStack The stack where the card originated from
|
|
7
|
-
*/
|
|
8
|
-
fromStack,
|
|
9
|
-
/**
|
|
10
|
-
* toStack The stack where the card is dropped to
|
|
11
|
-
*/
|
|
12
|
-
toStack,
|
|
13
|
-
/**
|
|
14
|
-
* card The card domain model
|
|
15
|
-
*/
|
|
16
|
-
card,
|
|
17
|
-
/**
|
|
18
|
-
* copy Should the item being moved (copy = false) or duplicated (copy=true).
|
|
19
|
-
*/
|
|
20
|
-
copy,
|
|
21
|
-
/**
|
|
22
|
-
* fromIndex Index of the item when it was picked up fromStack.
|
|
23
|
-
*/
|
|
24
|
-
fromIndex,
|
|
25
|
-
/**
|
|
26
|
-
* toIndex Current index of the item in toStack.
|
|
27
|
-
*/
|
|
28
|
-
toIndex,
|
|
29
|
-
/**
|
|
30
|
-
* isPointerOverContainer Whether the user's pointer was over the container when the item was dropped.
|
|
31
|
-
*/
|
|
32
|
-
isPointerOverContainer) {
|
|
33
|
-
this.fromStack = fromStack;
|
|
34
|
-
this.toStack = toStack;
|
|
35
|
-
this.card = card;
|
|
36
|
-
this.copy = copy;
|
|
37
|
-
this.fromIndex = fromIndex;
|
|
38
|
-
this.toIndex = toIndex;
|
|
39
|
-
this.isPointerOverContainer = isPointerOverContainer;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* Represents a card stack model.
|
|
44
|
-
*
|
|
45
|
-
* D: Type of the attached stack data
|
|
46
|
-
* T: Type of the attached card data
|
|
47
|
-
*/
|
|
48
|
-
export class CardStack {
|
|
49
|
-
/***************************************************************************
|
|
50
|
-
* *
|
|
51
|
-
* Constructor *
|
|
52
|
-
* *
|
|
53
|
-
**************************************************************************/
|
|
54
|
-
/**
|
|
55
|
-
* Creates a new card stack model
|
|
56
|
-
*
|
|
57
|
-
* @param id The unique stack id
|
|
58
|
-
* @param title The display title of this stack
|
|
59
|
-
* @param data Custom data attached to this stack
|
|
60
|
-
* @param initialCards Initial card data
|
|
61
|
-
*/
|
|
62
|
-
constructor(id, title, data, initialCards) {
|
|
63
|
-
this._collapsed = new BehaviorSubject(false);
|
|
64
|
-
this._id = id;
|
|
65
|
-
this._data = data;
|
|
66
|
-
this._title = title;
|
|
67
|
-
this._cards = new BehaviorSubject(initialCards ? initialCards : []);
|
|
68
|
-
}
|
|
69
|
-
/***************************************************************************
|
|
70
|
-
* *
|
|
71
|
-
* Static Builder *
|
|
72
|
-
* *
|
|
73
|
-
**************************************************************************/
|
|
74
|
-
static newStackSimple(initialCards) {
|
|
75
|
-
return new CardStack('id-' + Math.floor((Math.random() * 6) + 1), '', null, initialCards);
|
|
76
|
-
}
|
|
77
|
-
static newStack(id, title, initialCards) {
|
|
78
|
-
return new CardStack(id, title, null, initialCards);
|
|
79
|
-
}
|
|
80
|
-
static newStackData(id, title, stackData, initialCards) {
|
|
81
|
-
return new CardStack(id, title, stackData, initialCards);
|
|
82
|
-
}
|
|
83
|
-
/***************************************************************************
|
|
84
|
-
* *
|
|
85
|
-
* Properties *
|
|
86
|
-
* *
|
|
87
|
-
**************************************************************************/
|
|
88
|
-
/**
|
|
89
|
-
* Gets the id of this stack.
|
|
90
|
-
*/
|
|
91
|
-
get id() {
|
|
92
|
-
return this._id;
|
|
93
|
-
}
|
|
94
|
-
/**
|
|
95
|
-
* Gets the custom data attached to this stack.
|
|
96
|
-
*/
|
|
97
|
-
get data() {
|
|
98
|
-
return this._data;
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* Attach custom data to this stack.
|
|
102
|
-
*/
|
|
103
|
-
set data(data) {
|
|
104
|
-
this._data = data;
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* Gets the display title of this stack
|
|
108
|
-
*/
|
|
109
|
-
get title() {
|
|
110
|
-
return this._title;
|
|
111
|
-
}
|
|
112
|
-
/**
|
|
113
|
-
* Sets the display title of this stack
|
|
114
|
-
*/
|
|
115
|
-
set title(title) {
|
|
116
|
-
this._title = title;
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
* Observable stream of the current cards in this stack
|
|
120
|
-
*/
|
|
121
|
-
get cards() {
|
|
122
|
-
return this._cards.asObservable();
|
|
123
|
-
}
|
|
124
|
-
get cardsSnapshot() {
|
|
125
|
-
return [...this._cards.getValue()];
|
|
126
|
-
}
|
|
127
|
-
get collapsed() {
|
|
128
|
-
return this._collapsed.asObservable();
|
|
129
|
-
}
|
|
130
|
-
set isCollapsed(state) {
|
|
131
|
-
this._collapsed.next(state);
|
|
132
|
-
}
|
|
133
|
-
get isCollapsed() {
|
|
134
|
-
return this._collapsed.getValue();
|
|
135
|
-
}
|
|
136
|
-
set sort(sortFn) {
|
|
137
|
-
this._sort = sortFn;
|
|
138
|
-
}
|
|
139
|
-
get sort() {
|
|
140
|
-
return this._sort;
|
|
141
|
-
}
|
|
142
|
-
/***************************************************************************
|
|
143
|
-
* *
|
|
144
|
-
* Public API *
|
|
145
|
-
* *
|
|
146
|
-
**************************************************************************/
|
|
147
|
-
clear() {
|
|
148
|
-
this.replaceCards([]);
|
|
149
|
-
}
|
|
150
|
-
replaceCards(newCards) {
|
|
151
|
-
if (this._sort) {
|
|
152
|
-
newCards.sort(this._sort);
|
|
153
|
-
}
|
|
154
|
-
this._cards.next(newCards);
|
|
155
|
-
}
|
|
156
|
-
addCard(card, desiredIndex) {
|
|
157
|
-
const cards = this.cardsSnapshot;
|
|
158
|
-
if (desiredIndex === undefined || desiredIndex === null) {
|
|
159
|
-
cards.push(card);
|
|
160
|
-
}
|
|
161
|
-
else {
|
|
162
|
-
const dummy = [card];
|
|
163
|
-
transferArrayItem(dummy, cards, 0, desiredIndex);
|
|
164
|
-
}
|
|
165
|
-
this.replaceCards(cards);
|
|
166
|
-
}
|
|
167
|
-
removeCard(card) {
|
|
168
|
-
this.replaceCards(this.cardsSnapshot.filter(c => c !== card));
|
|
169
|
-
}
|
|
170
|
-
moveCard(fromIndex, toIndex) {
|
|
171
|
-
const snapshot = this.cardsSnapshot;
|
|
172
|
-
moveItemInArray(snapshot, fromIndex, toIndex);
|
|
173
|
-
this.replaceCards(snapshot);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1zdGFjay5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvY2FyZC1vcmdhbml6ZXIvY2FyZC1zdGFjay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWMsZUFBZSxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ25ELE9BQU8sRUFBQyxlQUFlLEVBQUUsaUJBQWlCLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUUxRSxNQUFNLE9BQU8sYUFBYTtJQUN4QjtJQUNFOztPQUVHO0lBQ2EsU0FBMEI7SUFFMUM7O09BRUc7SUFDYSxPQUF3QjtJQUN4Qzs7T0FFRztJQUNhLElBQU87SUFDdkI7O09BRUc7SUFDYSxJQUFhO0lBQzdCOztPQUVHO0lBQ2EsU0FBaUI7SUFDakM7O09BRUc7SUFDYSxPQUFlO0lBQy9COztPQUVHO0lBQ2Esc0JBQStCO1FBekIvQixjQUFTLEdBQVQsU0FBUyxDQUFpQjtRQUsxQixZQUFPLEdBQVAsT0FBTyxDQUFpQjtRQUl4QixTQUFJLEdBQUosSUFBSSxDQUFHO1FBSVAsU0FBSSxHQUFKLElBQUksQ0FBUztRQUliLGNBQVMsR0FBVCxTQUFTLENBQVE7UUFJakIsWUFBTyxHQUFQLE9BQU8sQ0FBUTtRQUlmLDJCQUFzQixHQUF0QixzQkFBc0IsQ0FBUztJQUM3QyxDQUFDO0NBQ047QUFHRDs7Ozs7R0FLRztBQUNILE1BQU0sT0FBTyxTQUFTO0lBMENwQjs7OztnRkFJNEU7SUFFNUU7Ozs7Ozs7T0FPRztJQUNILFlBQ0UsRUFBVSxFQUNWLEtBQWEsRUFDYixJQUFRLEVBQ1IsWUFBa0I7UUFsREgsZUFBVSxHQUFHLElBQUksZUFBZSxDQUFVLEtBQUssQ0FBQyxDQUFDO1FBb0RoRSxJQUFJLENBQUMsR0FBRyxHQUFHLEVBQUUsQ0FBQztRQUNkLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO1FBQ3BCLElBQUksQ0FBQyxNQUFNLEdBQUcsSUFBSSxlQUFlLENBQU0sWUFBWSxDQUFDLENBQUMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBQzNFLENBQUM7SUFoREQ7Ozs7Z0ZBSTRFO0lBRXJFLE1BQU0sQ0FBQyxjQUFjLENBQUksWUFBa0I7UUFDaEQsT0FBTyxJQUFJLFNBQVMsQ0FDbEIsS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEVBQzNDLEVBQUUsRUFDRixJQUFJLEVBQ0osWUFBWSxDQUNiLENBQUM7SUFDSixDQUFDO0lBRU0sTUFBTSxDQUFDLFFBQVEsQ0FBSSxFQUFVLEVBQUUsS0FBYSxFQUFFLFlBQWtCO1FBQ3JFLE9BQU8sSUFBSSxTQUFTLENBQUMsRUFBRSxFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUUsWUFBWSxDQUFDLENBQUM7SUFDdEQsQ0FBQztJQUVNLE1BQU0sQ0FBQyxZQUFZLENBQU8sRUFBVSxFQUFFLEtBQWEsRUFDekIsU0FBWSxFQUFFLFlBQWtCO1FBQy9ELE9BQU8sSUFBSSxTQUFTLENBQUMsRUFBRSxFQUFFLEtBQUssRUFBRSxTQUFTLEVBQUUsWUFBWSxDQUFDLENBQUM7SUFDM0QsQ0FBQztJQTRCRDs7OztnRkFJNEU7SUFFNUU7O09BRUc7SUFDSCxJQUFXLEVBQUU7UUFDWCxPQUFPLElBQUksQ0FBQyxHQUFHLENBQUM7SUFDbEIsQ0FBQztJQUVEOztPQUVHO0lBQ0gsSUFBVyxJQUFJO1FBQ2IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDO0lBQ3BCLENBQUM7SUFFRDs7T0FFRztJQUNILElBQVcsSUFBSSxDQUFDLElBQU87UUFDckIsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7SUFDcEIsQ0FBQztJQUVEOztPQUVHO0lBQ0gsSUFBVyxLQUFLO1FBQ2QsT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDO0lBQ3JCLENBQUM7SUFFRDs7T0FFRztJQUNILElBQVcsS0FBSyxDQUFDLEtBQWE7UUFDNUIsSUFBSSxDQUFDLE1BQU0sR0FBRyxLQUFLLENBQUM7SUFDdEIsQ0FBQztJQUVEOztPQUVHO0lBQ0gsSUFBVyxLQUFLO1FBQ2QsT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDLFlBQVksRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFFRCxJQUFXLGFBQWE7UUFDdEIsT0FBTyxDQUFDLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDO0lBQ3JDLENBQUM7SUFFRCxJQUFXLFNBQVM7UUFDbEIsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFlBQVksRUFBRSxDQUFDO0lBQ3hDLENBQUM7SUFFRCxJQUFXLFdBQVcsQ0FBQyxLQUFjO1FBQ25DLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzlCLENBQUM7SUFFRCxJQUFXLFdBQVc7UUFDcEIsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFFRCxJQUFXLElBQUksQ0FBQyxNQUFnQztRQUM5QyxJQUFJLENBQUMsS0FBSyxHQUFHLE1BQU0sQ0FBQztJQUN0QixDQUFDO0lBRUQsSUFBVyxJQUFJO1FBQ2IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDO0lBQ3BCLENBQUM7SUFFRDs7OztnRkFJNEU7SUFFckUsS0FBSztRQUNWLElBQUksQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDeEIsQ0FBQztJQUVNLFlBQVksQ0FBQyxRQUFhO1FBRS9CLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNkLFFBQVEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQzNCO1FBRUQsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDN0IsQ0FBQztJQUVNLE9BQU8sQ0FBQyxJQUFPLEVBQUUsWUFBcUI7UUFDM0MsTUFBTSxLQUFLLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQztRQUNqQyxJQUFJLFlBQVksS0FBSyxTQUFTLElBQUksWUFBWSxLQUFLLElBQUksRUFBRTtZQUN2RCxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ2xCO2FBQU07WUFDTCxNQUFNLEtBQUssR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ3JCLGlCQUFpQixDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsQ0FBQyxFQUFFLFlBQVksQ0FBQyxDQUFDO1NBQ2xEO1FBQ0QsSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBRU0sVUFBVSxDQUFDLElBQU87UUFDdkIsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsS0FBSyxJQUFJLENBQUMsQ0FBQyxDQUFDO0lBQ2hFLENBQUM7SUFFTSxRQUFRLENBQUMsU0FBaUIsRUFBRSxPQUFlO1FBQ2hELE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUM7UUFDcEMsZUFBZSxDQUFDLFFBQVEsRUFBRSxTQUFTLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFDOUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUM5QixDQUFDO0NBUUYiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBPYnNlcnZhYmxlLCBCZWhhdmlvclN1YmplY3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7bW92ZUl0ZW1JbkFycmF5LCB0cmFuc2ZlckFycmF5SXRlbX0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCc7XG5cbmV4cG9ydCBjbGFzcyBDYXJkRHJvcEV2ZW50PFQsIEQgPSBhbnk+IHtcbiAgY29uc3RydWN0b3IgKFxuICAgIC8qKlxuICAgICAqIGZyb21TdGFjayBUaGUgc3RhY2sgd2hlcmUgdGhlIGNhcmQgb3JpZ2luYXRlZCBmcm9tXG4gICAgICovXG4gICAgcHVibGljIHJlYWRvbmx5IGZyb21TdGFjazogQ2FyZFN0YWNrPFQsIEQ+LFxuXG4gICAgLyoqXG4gICAgICogdG9TdGFjayBUaGUgc3RhY2sgd2hlcmUgdGhlIGNhcmQgaXMgZHJvcHBlZCB0b1xuICAgICAqL1xuICAgIHB1YmxpYyByZWFkb25seSB0b1N0YWNrOiBDYXJkU3RhY2s8VCwgRD4sXG4gICAgLyoqXG4gICAgICogY2FyZCBUaGUgY2FyZCBkb21haW4gbW9kZWxcbiAgICAgKi9cbiAgICBwdWJsaWMgcmVhZG9ubHkgY2FyZDogVCxcbiAgICAvKipcbiAgICAgKiBjb3B5IFNob3VsZCB0aGUgaXRlbSBiZWluZyBtb3ZlZCAoY29weSA9IGZhbHNlKSBvciBkdXBsaWNhdGVkIChjb3B5PXRydWUpLlxuICAgICAqL1xuICAgIHB1YmxpYyByZWFkb25seSBjb3B5OiBib29sZWFuLFxuICAgIC8qKlxuICAgICAqICBmcm9tSW5kZXggSW5kZXggb2YgdGhlIGl0ZW0gd2hlbiBpdCB3YXMgcGlja2VkIHVwIGZyb21TdGFjay5cbiAgICAgKi9cbiAgICBwdWJsaWMgcmVhZG9ubHkgZnJvbUluZGV4OiBudW1iZXIsXG4gICAgLyoqXG4gICAgICogdG9JbmRleCBDdXJyZW50IGluZGV4IG9mIHRoZSBpdGVtIGluIHRvU3RhY2suXG4gICAgICovXG4gICAgcHVibGljIHJlYWRvbmx5IHRvSW5kZXg6IG51bWJlcixcbiAgICAvKipcbiAgICAgKiBpc1BvaW50ZXJPdmVyQ29udGFpbmVyIFdoZXRoZXIgdGhlIHVzZXIncyBwb2ludGVyIHdhcyBvdmVyIHRoZSBjb250YWluZXIgd2hlbiB0aGUgaXRlbSB3YXMgZHJvcHBlZC5cbiAgICAgKi9cbiAgICBwdWJsaWMgcmVhZG9ubHkgaXNQb2ludGVyT3ZlckNvbnRhaW5lcjogYm9vbGVhblxuICApIHsgfVxufVxuXG5cbi8qKlxuICogUmVwcmVzZW50cyBhIGNhcmQgc3RhY2sgbW9kZWwuXG4gKlxuICogRDogVHlwZSBvZiB0aGUgYXR0YWNoZWQgc3RhY2sgZGF0YVxuICogVDogVHlwZSBvZiB0aGUgYXR0YWNoZWQgY2FyZCBkYXRhXG4gKi9cbmV4cG9ydCBjbGFzcyBDYXJkU3RhY2s8VCwgRCA9IGFueT4ge1xuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBGaWVsZHMgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgX2lkOiBzdHJpbmc7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2NhcmRzOiBCZWhhdmlvclN1YmplY3Q8VFtdPjtcbiAgcHJpdmF0ZSByZWFkb25seSBfY29sbGFwc2VkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPihmYWxzZSk7XG5cbiAgcHJpdmF0ZSBfdGl0bGU6IHN0cmluZztcbiAgcHJpdmF0ZSBfZGF0YTogRDtcblxuICBwcml2YXRlIF9zb3J0OiAoYTogVCwgYjogVCkgPT4gbnVtYmVyO1xuXG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIFN0YXRpYyBCdWlsZGVyICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgcHVibGljIHN0YXRpYyBuZXdTdGFja1NpbXBsZTxUPihpbml0aWFsQ2FyZHM/OiBUW10pOiBDYXJkU3RhY2s8VD4gIHtcbiAgICByZXR1cm4gbmV3IENhcmRTdGFjayhcbiAgICAgICdpZC0nICsgTWF0aC5mbG9vcigoTWF0aC5yYW5kb20oKSAqIDYpICsgMSksXG4gICAgICAnJyxcbiAgICAgIG51bGwsXG4gICAgICBpbml0aWFsQ2FyZHNcbiAgICApO1xuICB9XG5cbiAgcHVibGljIHN0YXRpYyBuZXdTdGFjazxUPihpZDogc3RyaW5nLCB0aXRsZTogc3RyaW5nLCBpbml0aWFsQ2FyZHM/OiBUW10pOiBDYXJkU3RhY2s8VD4gIHtcbiAgICByZXR1cm4gbmV3IENhcmRTdGFjayhpZCwgdGl0bGUsIG51bGwsIGluaXRpYWxDYXJkcyk7XG4gIH1cblxuICBwdWJsaWMgc3RhdGljIG5ld1N0YWNrRGF0YTxULCBEPihpZDogc3RyaW5nLCB0aXRsZTogc3RyaW5nLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzdGFja0RhdGE6IEQsIGluaXRpYWxDYXJkcz86IFRbXSk6IENhcmRTdGFjazxULCBEPiAge1xuICAgIHJldHVybiBuZXcgQ2FyZFN0YWNrKGlkLCB0aXRsZSwgc3RhY2tEYXRhLCBpbml0aWFsQ2FyZHMpO1xuICB9XG5cbiAgLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqIENvbnN0cnVjdG9yICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cbiAgLyoqXG4gICAqIENyZWF0ZXMgYSBuZXcgY2FyZCBzdGFjayBtb2RlbFxuICAgKlxuICAgKiBAcGFyYW0gaWQgVGhlIHVuaXF1ZSBzdGFjayBpZFxuICAgKiBAcGFyYW0gdGl0bGUgVGhlIGRpc3BsYXkgdGl0bGUgb2YgdGhpcyBzdGFja1xuICAgKiBAcGFyYW0gZGF0YSBDdXN0b20gZGF0YSBhdHRhY2hlZCB0byB0aGlzIHN0YWNrXG4gICAqIEBwYXJhbSBpbml0aWFsQ2FyZHMgSW5pdGlhbCBjYXJkIGRhdGFcbiAgICovXG4gIGNvbnN0cnVjdG9yKFxuICAgIGlkOiBzdHJpbmcsXG4gICAgdGl0bGU6IHN0cmluZyxcbiAgICBkYXRhPzogRCxcbiAgICBpbml0aWFsQ2FyZHM/OiBUW10sXG4gICkge1xuICAgIHRoaXMuX2lkID0gaWQ7XG4gICAgdGhpcy5fZGF0YSA9IGRhdGE7XG4gICAgdGhpcy5fdGl0bGUgPSB0aXRsZTtcbiAgICB0aGlzLl9jYXJkcyA9IG5ldyBCZWhhdmlvclN1YmplY3Q8VFtdPihpbml0aWFsQ2FyZHMgPyBpbml0aWFsQ2FyZHMgOiBbXSk7XG4gIH1cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogUHJvcGVydGllcyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICAvKipcbiAgICogR2V0cyB0aGUgaWQgb2YgdGhpcyBzdGFjay5cbiAgICovXG4gIHB1YmxpYyBnZXQgaWQoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5faWQ7XG4gIH1cblxuICAvKipcbiAgICogR2V0cyB0aGUgY3VzdG9tIGRhdGEgYXR0YWNoZWQgdG8gdGhpcyBzdGFjay5cbiAgICovXG4gIHB1YmxpYyBnZXQgZGF0YSgpOiBEIHtcbiAgICByZXR1cm4gdGhpcy5fZGF0YTtcbiAgfVxuXG4gIC8qKlxuICAgKiBBdHRhY2ggY3VzdG9tIGRhdGEgdG8gdGhpcyBzdGFjay5cbiAgICovXG4gIHB1YmxpYyBzZXQgZGF0YShkYXRhOiBEKSB7XG4gICAgdGhpcy5fZGF0YSA9IGRhdGE7XG4gIH1cblxuICAvKipcbiAgICogR2V0cyB0aGUgZGlzcGxheSB0aXRsZSBvZiB0aGlzIHN0YWNrXG4gICAqL1xuICBwdWJsaWMgZ2V0IHRpdGxlKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuX3RpdGxlO1xuICB9XG5cbiAgLyoqXG4gICAqIFNldHMgdGhlIGRpc3BsYXkgdGl0bGUgb2YgdGhpcyBzdGFja1xuICAgKi9cbiAgcHVibGljIHNldCB0aXRsZSh0aXRsZTogc3RyaW5nKSB7XG4gICAgdGhpcy5fdGl0bGUgPSB0aXRsZTtcbiAgfVxuXG4gIC8qKlxuICAgKiBPYnNlcnZhYmxlIHN0cmVhbSBvZiB0aGUgY3VycmVudCBjYXJkcyBpbiB0aGlzIHN0YWNrXG4gICAqL1xuICBwdWJsaWMgZ2V0IGNhcmRzKCk6IE9ic2VydmFibGU8VFtdPiB7XG4gICAgcmV0dXJuIHRoaXMuX2NhcmRzLmFzT2JzZXJ2YWJsZSgpO1xuICB9XG5cbiAgcHVibGljIGdldCBjYXJkc1NuYXBzaG90KCk6IFRbXSB7XG4gICAgcmV0dXJuIFsuLi50aGlzLl9jYXJkcy5nZXRWYWx1ZSgpXTtcbiAgfVxuXG4gIHB1YmxpYyBnZXQgY29sbGFwc2VkKCk6IE9ic2VydmFibGU8Ym9vbGVhbj4ge1xuICAgIHJldHVybiB0aGlzLl9jb2xsYXBzZWQuYXNPYnNlcnZhYmxlKCk7XG4gIH1cblxuICBwdWJsaWMgc2V0IGlzQ29sbGFwc2VkKHN0YXRlOiBib29sZWFuKSB7XG4gICAgdGhpcy5fY29sbGFwc2VkLm5leHQoc3RhdGUpO1xuICB9XG5cbiAgcHVibGljIGdldCBpc0NvbGxhcHNlZCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5fY29sbGFwc2VkLmdldFZhbHVlKCk7XG4gIH1cblxuICBwdWJsaWMgc2V0IHNvcnQoc29ydEZuOiAoKGE6IFQsIGI6IFQpID0+IG51bWJlcikpIHtcbiAgICB0aGlzLl9zb3J0ID0gc29ydEZuO1xuICB9XG5cbiAgcHVibGljIGdldCBzb3J0KCk6ICgoYTogVCwgYjogVCkgPT4gbnVtYmVyKSB7XG4gICAgcmV0dXJuIHRoaXMuX3NvcnQ7XG4gIH1cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogUHVibGljIEFQSSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBwdWJsaWMgY2xlYXIoKSB7XG4gICAgdGhpcy5yZXBsYWNlQ2FyZHMoW10pO1xuICB9XG5cbiAgcHVibGljIHJlcGxhY2VDYXJkcyhuZXdDYXJkczogVFtdKTogdm9pZCB7XG5cbiAgICBpZiAodGhpcy5fc29ydCkge1xuICAgICAgbmV3Q2FyZHMuc29ydCh0aGlzLl9zb3J0KTtcbiAgICB9XG5cbiAgICB0aGlzLl9jYXJkcy5uZXh0KG5ld0NhcmRzKTtcbiAgfVxuXG4gIHB1YmxpYyBhZGRDYXJkKGNhcmQ6IFQsIGRlc2lyZWRJbmRleD86IG51bWJlcik6IHZvaWQge1xuICAgIGNvbnN0IGNhcmRzID0gdGhpcy5jYXJkc1NuYXBzaG90O1xuICAgIGlmIChkZXNpcmVkSW5kZXggPT09IHVuZGVmaW5lZCB8fCBkZXNpcmVkSW5kZXggPT09IG51bGwpIHtcbiAgICAgIGNhcmRzLnB1c2goY2FyZCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIGNvbnN0IGR1bW15ID0gW2NhcmRdO1xuICAgICAgdHJhbnNmZXJBcnJheUl0ZW0oZHVtbXksIGNhcmRzLCAwLCBkZXNpcmVkSW5kZXgpO1xuICAgIH1cbiAgICB0aGlzLnJlcGxhY2VDYXJkcyhjYXJkcyk7XG4gIH1cblxuICBwdWJsaWMgcmVtb3ZlQ2FyZChjYXJkOiBUKTogdm9pZCB7XG4gICAgdGhpcy5yZXBsYWNlQ2FyZHModGhpcy5jYXJkc1NuYXBzaG90LmZpbHRlcihjID0+IGMgIT09IGNhcmQpKTtcbiAgfVxuXG4gIHB1YmxpYyBtb3ZlQ2FyZChmcm9tSW5kZXg6IG51bWJlciwgdG9JbmRleDogbnVtYmVyKTogdm9pZCB7XG4gICAgY29uc3Qgc25hcHNob3QgPSB0aGlzLmNhcmRzU25hcHNob3Q7XG4gICAgbW92ZUl0ZW1JbkFycmF5KHNuYXBzaG90LCBmcm9tSW5kZXgsIHRvSW5kZXgpO1xuICAgIHRoaXMucmVwbGFjZUNhcmRzKHNuYXBzaG90KTtcbiAgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBQcml2YXRlIG1ldGhvZHMgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG59XG4iXX0=
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ElderCardOrganizerComponent } from './card-organizer/elder-card-organizer.component';
|
|
4
|
-
import { ElderCardStackComponent } from './card-stack/elder-card-stack.component';
|
|
5
|
-
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
6
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
7
|
-
import { MatButtonModule } from '@angular/material/button';
|
|
8
|
-
import { MatRippleModule } from '@angular/material/core';
|
|
9
|
-
import { MatDividerModule } from '@angular/material/divider';
|
|
10
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
11
|
-
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
12
|
-
import { ElderCardModule } from '../cards/elder-card/elder-card.module';
|
|
13
|
-
import { ElderStackCardDirective } from './card-organizer/elder-stack-card.directive';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
export * from './card-organizer-data';
|
|
16
|
-
export * from './card-stack';
|
|
17
|
-
export * from './card-organizer/elder-stack-card.directive';
|
|
18
|
-
export * from './card-organizer/elder-card-organizer.component';
|
|
19
|
-
export * from './card-stack/elder-card-stack.component';
|
|
20
|
-
export class ElderCardOrganizerModule {
|
|
21
|
-
}
|
|
22
|
-
ElderCardOrganizerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardOrganizerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
23
|
-
ElderCardOrganizerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: ElderCardOrganizerModule, declarations: [ElderCardOrganizerComponent, ElderCardStackComponent, ElderStackCardDirective], imports: [CommonModule,
|
|
24
|
-
MatIconModule, MatButtonModule, MatDividerModule,
|
|
25
|
-
MatRippleModule,
|
|
26
|
-
DragDropModule,
|
|
27
|
-
FlexLayoutModule, TranslateModule,
|
|
28
|
-
ElderCardModule], exports: [ElderCardOrganizerComponent, ElderCardStackComponent, ElderStackCardDirective] });
|
|
29
|
-
ElderCardOrganizerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardOrganizerModule, imports: [CommonModule,
|
|
30
|
-
MatIconModule, MatButtonModule, MatDividerModule,
|
|
31
|
-
MatRippleModule,
|
|
32
|
-
DragDropModule,
|
|
33
|
-
FlexLayoutModule, TranslateModule,
|
|
34
|
-
ElderCardModule] });
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardOrganizerModule, decorators: [{
|
|
36
|
-
type: NgModule,
|
|
37
|
-
args: [{
|
|
38
|
-
imports: [
|
|
39
|
-
CommonModule,
|
|
40
|
-
MatIconModule, MatButtonModule, MatDividerModule,
|
|
41
|
-
MatRippleModule,
|
|
42
|
-
DragDropModule,
|
|
43
|
-
FlexLayoutModule, TranslateModule,
|
|
44
|
-
ElderCardModule
|
|
45
|
-
],
|
|
46
|
-
declarations: [ElderCardOrganizerComponent, ElderCardStackComponent, ElderStackCardDirective],
|
|
47
|
-
exports: [ElderCardOrganizerComponent, ElderCardStackComponent, ElderStackCardDirective],
|
|
48
|
-
}]
|
|
49
|
-
}] });
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItY2FyZC1vcmdhbml6ZXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9jYXJkLW9yZ2FuaXplci9lbGRlci1jYXJkLW9yZ2FuaXplci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDOUYsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDbEYsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDeEQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUMzRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDN0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBQyxjQUFjLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUN0RCxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sdUNBQXVDLENBQUM7QUFDdEUsT0FBTyxFQUFDLHVCQUF1QixFQUFDLE1BQU0sNkNBQTZDLENBQUM7O0FBRXBGLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyw2Q0FBNkMsQ0FBQztBQUM1RCxjQUFjLGlEQUFpRCxDQUFDO0FBQ2hFLGNBQWMseUNBQXlDLENBQUM7QUFtQnhELE1BQU0sT0FBTyx3QkFBd0I7O3NIQUF4Qix3QkFBd0I7dUhBQXhCLHdCQUF3QixpQkFIcEIsMkJBQTJCLEVBQUUsdUJBQXVCLEVBQUUsdUJBQXVCLGFBWDFGLFlBQVk7UUFFWixhQUFhLEVBQUUsZUFBZSxFQUFFLGdCQUFnQjtRQUNoRCxlQUFlO1FBRWYsY0FBYztRQUVkLGdCQUFnQixFQUFFLGVBQWU7UUFFakMsZUFBZSxhQUdQLDJCQUEyQixFQUFFLHVCQUF1QixFQUFFLHVCQUF1Qjt1SEFFNUUsd0JBQXdCLFlBZGpDLFlBQVk7UUFFWixhQUFhLEVBQUUsZUFBZSxFQUFFLGdCQUFnQjtRQUNoRCxlQUFlO1FBRWYsY0FBYztRQUVkLGdCQUFnQixFQUFFLGVBQWU7UUFFakMsZUFBZTs0RkFLTix3QkFBd0I7a0JBaEJwQyxRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUVaLGFBQWEsRUFBRSxlQUFlLEVBQUUsZ0JBQWdCO3dCQUNoRCxlQUFlO3dCQUVmLGNBQWM7d0JBRWQsZ0JBQWdCLEVBQUUsZUFBZTt3QkFFakMsZUFBZTtxQkFDaEI7b0JBQ0QsWUFBWSxFQUFFLENBQUMsMkJBQTJCLEVBQUUsdUJBQXVCLEVBQUUsdUJBQXVCLENBQUM7b0JBQzdGLE9BQU8sRUFBRSxDQUFDLDJCQUEyQixFQUFFLHVCQUF1QixFQUFFLHVCQUF1QixDQUFDO2lCQUN6RiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgRWxkZXJDYXJkT3JnYW5pemVyQ29tcG9uZW50IH0gZnJvbSAnLi9jYXJkLW9yZ2FuaXplci9lbGRlci1jYXJkLW9yZ2FuaXplci5jb21wb25lbnQnO1xuaW1wb3J0IHsgRWxkZXJDYXJkU3RhY2tDb21wb25lbnQgfSBmcm9tICcuL2NhcmQtc3RhY2svZWxkZXItY2FyZC1zdGFjay5jb21wb25lbnQnO1xuaW1wb3J0IHsgRmxleExheW91dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2ZsZXgtbGF5b3V0JztcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuaW1wb3J0IHsgTWF0QnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYnV0dG9uJztcbmltcG9ydCB7IE1hdFJpcHBsZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnO1xuaW1wb3J0IHsgTWF0RGl2aWRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RpdmlkZXInO1xuaW1wb3J0IHsgTWF0SWNvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xuaW1wb3J0IHtEcmFnRHJvcE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCc7XG5pbXBvcnQge0VsZGVyQ2FyZE1vZHVsZX0gZnJvbSAnLi4vY2FyZHMvZWxkZXItY2FyZC9lbGRlci1jYXJkLm1vZHVsZSc7XG5pbXBvcnQge0VsZGVyU3RhY2tDYXJkRGlyZWN0aXZlfSBmcm9tICcuL2NhcmQtb3JnYW5pemVyL2VsZGVyLXN0YWNrLWNhcmQuZGlyZWN0aXZlJztcblxuZXhwb3J0ICogZnJvbSAnLi9jYXJkLW9yZ2FuaXplci1kYXRhJztcbmV4cG9ydCAqIGZyb20gJy4vY2FyZC1zdGFjayc7XG5leHBvcnQgKiBmcm9tICcuL2NhcmQtb3JnYW5pemVyL2VsZGVyLXN0YWNrLWNhcmQuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vY2FyZC1vcmdhbml6ZXIvZWxkZXItY2FyZC1vcmdhbml6ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vY2FyZC1zdGFjay9lbGRlci1jYXJkLXN0YWNrLmNvbXBvbmVudCc7XG5cblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcblxuICAgIE1hdEljb25Nb2R1bGUsIE1hdEJ1dHRvbk1vZHVsZSwgTWF0RGl2aWRlck1vZHVsZSxcbiAgICBNYXRSaXBwbGVNb2R1bGUsXG5cbiAgICBEcmFnRHJvcE1vZHVsZSxcblxuICAgIEZsZXhMYXlvdXRNb2R1bGUsIFRyYW5zbGF0ZU1vZHVsZSxcblxuICAgIEVsZGVyQ2FyZE1vZHVsZVxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtFbGRlckNhcmRPcmdhbml6ZXJDb21wb25lbnQsIEVsZGVyQ2FyZFN0YWNrQ29tcG9uZW50LCBFbGRlclN0YWNrQ2FyZERpcmVjdGl2ZV0sXG4gIGV4cG9ydHM6IFtFbGRlckNhcmRPcmdhbml6ZXJDb21wb25lbnQsIEVsZGVyQ2FyZFN0YWNrQ29tcG9uZW50LCBFbGRlclN0YWNrQ2FyZERpcmVjdGl2ZV0sXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyQ2FyZE9yZ2FuaXplck1vZHVsZSB7IH1cbiJdfQ==
|
package/esm2020/lib/components/cards/elder-card/elder-card-header/elder-card-header.component.mjs
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "@angular/flex-layout/flex";
|
|
5
|
-
import * as i3 from "@angular/flex-layout/extended";
|
|
6
|
-
export class ElderCardHeaderComponent {
|
|
7
|
-
constructor() {
|
|
8
|
-
this.padding = '15px 15px 5px 15px';
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
ElderCardHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12
|
-
ElderCardHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.10", type: ElderCardHeaderComponent, selector: "elder-card-header", inputs: { padding: "padding" }, ngImport: i0, template: "\n<!-- Card Header -->\n<div fxLayout=\"row\" fxLayoutAlign=\"start center\" class=\"elder-card-header\" [ngStyle]=\"{'padding': padding}\">\n\n <!-- Card Title -->\n <ng-content select=\"elder-card-title\">\n </ng-content>\n\n <span fxFlex></span>\n\n <!-- Card Header Actions -->\n <div fxLayout=\"row\" fxLayoutAlign=\"end center\" fxLayoutGap=\"12px\">\n <ng-content select=\"elder-card-header-actions\"></ng-content>\n </div>\n\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i2.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i3.DefaultStyleDirective, selector: " [ngStyle], [ngStyle.xs], [ngStyle.sm], [ngStyle.md], [ngStyle.lg], [ngStyle.xl], [ngStyle.lt-sm], [ngStyle.lt-md], [ngStyle.lt-lg], [ngStyle.lt-xl], [ngStyle.gt-xs], [ngStyle.gt-sm], [ngStyle.gt-md], [ngStyle.gt-lg]", inputs: ["ngStyle", "ngStyle.xs", "ngStyle.sm", "ngStyle.md", "ngStyle.lg", "ngStyle.xl", "ngStyle.lt-sm", "ngStyle.lt-md", "ngStyle.lt-lg", "ngStyle.lt-xl", "ngStyle.gt-xs", "ngStyle.gt-sm", "ngStyle.gt-md", "ngStyle.gt-lg"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardHeaderComponent, decorators: [{
|
|
14
|
-
type: Component,
|
|
15
|
-
args: [{ selector: 'elder-card-header', encapsulation: ViewEncapsulation.None, template: "\n<!-- Card Header -->\n<div fxLayout=\"row\" fxLayoutAlign=\"start center\" class=\"elder-card-header\" [ngStyle]=\"{'padding': padding}\">\n\n <!-- Card Title -->\n <ng-content select=\"elder-card-title\">\n </ng-content>\n\n <span fxFlex></span>\n\n <!-- Card Header Actions -->\n <div fxLayout=\"row\" fxLayoutAlign=\"end center\" fxLayoutGap=\"12px\">\n <ng-content select=\"elder-card-header-actions\"></ng-content>\n </div>\n\n</div>\n" }]
|
|
16
|
-
}], propDecorators: { padding: [{
|
|
17
|
-
type: Input
|
|
18
|
-
}] } });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItY2FyZC1oZWFkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZWxkZXJieXRlL25neC1zdGFydGVyL3NyYy9saWIvY29tcG9uZW50cy9jYXJkcy9lbGRlci1jYXJkL2VsZGVyLWNhcmQtaGVhZGVyL2VsZGVyLWNhcmQtaGVhZGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvY2FyZHMvZWxkZXItY2FyZC9lbGRlci1jYXJkLWhlYWRlci9lbGRlci1jYXJkLWhlYWRlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBRSxpQkFBaUIsRUFBQyxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFRbEUsTUFBTSxPQUFPLHdCQUF3QjtJQU5yQztRQVNTLFlBQU8sR0FBRyxvQkFBb0IsQ0FBQztLQUV2Qzs7c0hBTFksd0JBQXdCOzBHQUF4Qix3QkFBd0IseUZDUnJDLHNjQWdCQTs0RkRSYSx3QkFBd0I7a0JBTnBDLFNBQVM7K0JBQ0UsbUJBQW1CLGlCQUdkLGlCQUFpQixDQUFDLElBQUk7OEJBSzlCLE9BQU87c0JBRGIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb259IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlbGRlci1jYXJkLWhlYWRlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9lbGRlci1jYXJkLWhlYWRlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2VsZGVyLWNhcmQtaGVhZGVyLmNvbXBvbmVudC5jc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJDYXJkSGVhZGVyQ29tcG9uZW50IHtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgcGFkZGluZyA9ICcxNXB4IDE1cHggNXB4IDE1cHgnO1xuXG59XG4iLCJcbjwhLS0gQ2FyZCBIZWFkZXIgLS0+XG48ZGl2IGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXRBbGlnbj1cInN0YXJ0IGNlbnRlclwiIGNsYXNzPVwiZWxkZXItY2FyZC1oZWFkZXJcIiBbbmdTdHlsZV09XCJ7J3BhZGRpbmcnOiBwYWRkaW5nfVwiPlxuXG4gIDwhLS0gQ2FyZCBUaXRsZSAtLT5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZWxkZXItY2FyZC10aXRsZVwiPlxuICA8L25nLWNvbnRlbnQ+XG5cbiAgPHNwYW4gZnhGbGV4Pjwvc3Bhbj5cblxuICA8IS0tIENhcmQgSGVhZGVyIEFjdGlvbnMgLS0+XG4gIDxkaXYgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwiZW5kIGNlbnRlclwiIGZ4TGF5b3V0R2FwPVwiMTJweFwiPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImVsZGVyLWNhcmQtaGVhZGVyLWFjdGlvbnNcIj48L25nLWNvbnRlbnQ+XG4gIDwvZGl2PlxuXG48L2Rpdj5cbiJdfQ==
|
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Directive, HostBinding, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/common";
|
|
5
|
-
import * as i2 from "@angular/flex-layout/flex";
|
|
6
|
-
import * as i3 from "@angular/flex-layout/extended";
|
|
7
|
-
export class ElderPaddingDirective {
|
|
8
|
-
constructor() {
|
|
9
|
-
/*
|
|
10
|
-
@HostBinding('style.padding.px')
|
|
11
|
-
hostPadding = '10';
|
|
12
|
-
|
|
13
|
-
@Input('elderPadding')
|
|
14
|
-
public set padding(padding: string) {
|
|
15
|
-
this.hostPadding = padding;
|
|
16
|
-
}
|
|
17
|
-
*/
|
|
18
|
-
this.padding = '8px';
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
ElderPaddingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderPaddingDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
22
|
-
ElderPaddingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: ElderPaddingDirective, selector: "elder-padding, [elder-padding], [elderPadding]", inputs: { padding: ["elderPadding", "padding"] }, host: { properties: { "style.padding": "this.padding" } }, ngImport: i0 });
|
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderPaddingDirective, decorators: [{
|
|
24
|
-
type: Directive,
|
|
25
|
-
args: [{
|
|
26
|
-
selector: `elder-padding, [elder-padding], [elderPadding]`
|
|
27
|
-
}]
|
|
28
|
-
}], propDecorators: { padding: [{
|
|
29
|
-
type: Input,
|
|
30
|
-
args: ['elderPadding']
|
|
31
|
-
}, {
|
|
32
|
-
type: HostBinding,
|
|
33
|
-
args: ['style.padding']
|
|
34
|
-
}] } });
|
|
35
|
-
/**
|
|
36
|
-
* Title of a card, needed as it's used as a selector in the API.
|
|
37
|
-
*/
|
|
38
|
-
export class ElderCardTitleDirective {
|
|
39
|
-
}
|
|
40
|
-
ElderCardTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
-
ElderCardTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: ElderCardTitleDirective, selector: "elder-card-title, [elder-card-title], [elderCardTitle]", host: { classAttribute: "mat-h3 mat-subheading-2 elder-card-title" }, ngImport: i0 });
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardTitleDirective, decorators: [{
|
|
43
|
-
type: Directive,
|
|
44
|
-
args: [{
|
|
45
|
-
selector: `elder-card-title, [elder-card-title], [elderCardTitle]`,
|
|
46
|
-
host: {
|
|
47
|
-
'class': 'mat-h3 mat-subheading-2 elder-card-title'
|
|
48
|
-
}
|
|
49
|
-
}]
|
|
50
|
-
}] });
|
|
51
|
-
/**
|
|
52
|
-
* Content of a card, needed as it's used as a selector in the API.
|
|
53
|
-
*/
|
|
54
|
-
export class ElderCardContentDirective {
|
|
55
|
-
constructor() {
|
|
56
|
-
this.padding = '5px 15px 5px 15px';
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
ElderCardContentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
60
|
-
ElderCardContentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: ElderCardContentDirective, selector: "elder-card-content, [elder-card-content], [elderCardContent]", inputs: { padding: "padding" }, host: { properties: { "style.padding": "this.padding" }, classAttribute: "elder-card-content" }, ngImport: i0 });
|
|
61
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardContentDirective, decorators: [{
|
|
62
|
-
type: Directive,
|
|
63
|
-
args: [{
|
|
64
|
-
selector: `elder-card-content, [elder-card-content], [elderCardContent]`,
|
|
65
|
-
host: {
|
|
66
|
-
'class': 'elder-card-content'
|
|
67
|
-
}
|
|
68
|
-
}]
|
|
69
|
-
}], propDecorators: { padding: [{
|
|
70
|
-
type: Input
|
|
71
|
-
}, {
|
|
72
|
-
type: HostBinding,
|
|
73
|
-
args: ['style.padding']
|
|
74
|
-
}] } });
|
|
75
|
-
/**
|
|
76
|
-
* Actions in the right top corner, needed as it's used as a selector in the API.
|
|
77
|
-
*/
|
|
78
|
-
export class ElderCardHeaderActionsDirective {
|
|
79
|
-
}
|
|
80
|
-
ElderCardHeaderActionsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardHeaderActionsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
81
|
-
ElderCardHeaderActionsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: ElderCardHeaderActionsDirective, selector: "elder-card-header-actions, [elder-card-header-actions], [elderCardHeaderActions]", host: { classAttribute: "elder-card-header-actions" }, ngImport: i0 });
|
|
82
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardHeaderActionsDirective, decorators: [{
|
|
83
|
-
type: Directive,
|
|
84
|
-
args: [{
|
|
85
|
-
selector: `elder-card-header-actions, [elder-card-header-actions], [elderCardHeaderActions]`,
|
|
86
|
-
host: {
|
|
87
|
-
'class': 'elder-card-header-actions'
|
|
88
|
-
}
|
|
89
|
-
}]
|
|
90
|
-
}] });
|
|
91
|
-
/**
|
|
92
|
-
* Sub title, can be used to auto style sub titles within card.
|
|
93
|
-
*/
|
|
94
|
-
export class ElderCardSubtitleDirective {
|
|
95
|
-
}
|
|
96
|
-
ElderCardSubtitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardSubtitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
97
|
-
ElderCardSubtitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: ElderCardSubtitleDirective, selector: "elder-card-subtitle, [elder-card-subtitle], [elderCardSubtitle]", host: { classAttribute: "mat-h4 elder-card-subtitle" }, ngImport: i0 });
|
|
98
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardSubtitleDirective, decorators: [{
|
|
99
|
-
type: Directive,
|
|
100
|
-
args: [{
|
|
101
|
-
selector: `elder-card-subtitle, [elder-card-subtitle], [elderCardSubtitle]`,
|
|
102
|
-
host: {
|
|
103
|
-
'class': 'mat-h4 elder-card-subtitle'
|
|
104
|
-
}
|
|
105
|
-
}]
|
|
106
|
-
}] });
|
|
107
|
-
export class ElderCardComponent {
|
|
108
|
-
/***************************************************************************
|
|
109
|
-
* *
|
|
110
|
-
* Constructor *
|
|
111
|
-
* *
|
|
112
|
-
**************************************************************************/
|
|
113
|
-
constructor() {
|
|
114
|
-
/***************************************************************************
|
|
115
|
-
* *
|
|
116
|
-
* Fields *
|
|
117
|
-
* *
|
|
118
|
-
**************************************************************************/
|
|
119
|
-
this._float = true;
|
|
120
|
-
this.padding = '5px';
|
|
121
|
-
}
|
|
122
|
-
/***************************************************************************
|
|
123
|
-
* *
|
|
124
|
-
* Life Cycle *
|
|
125
|
-
* *
|
|
126
|
-
**************************************************************************/
|
|
127
|
-
ngOnInit() { }
|
|
128
|
-
/***************************************************************************
|
|
129
|
-
* *
|
|
130
|
-
* Properties *
|
|
131
|
-
* *
|
|
132
|
-
**************************************************************************/
|
|
133
|
-
set flat(value) {
|
|
134
|
-
this._float = !coerceBooleanProperty(value);
|
|
135
|
-
}
|
|
136
|
-
get flat() {
|
|
137
|
-
return !this._float;
|
|
138
|
-
}
|
|
139
|
-
set float(value) {
|
|
140
|
-
this._float = coerceBooleanProperty(value);
|
|
141
|
-
}
|
|
142
|
-
get float() {
|
|
143
|
-
return this._float;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
ElderCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
147
|
-
ElderCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.10", type: ElderCardComponent, selector: "elder-card", inputs: { padding: "padding", flat: "flat", float: "float" }, host: { classAttribute: "elder-card-host" }, ngImport: i0, template: "\n<!-- Card Container -->\n<div fxLayout=\"column\" fxFlex\n [ngStyle]=\"{'padding': padding}\"\n [class.mat-elevation-z5]=\"float\"\n [class.elder-card-flat]=\"!float\"\n class=\"mat-typography elder-card\">\n\n <!-- If one does not want to use predefined card-sections. -->\n <ng-content></ng-content>\n\n <!-- Card Header -->\n <ng-content select=\"elder-card-header\">\n </ng-content>\n\n <!-- Card Content -->\n <ng-content select=\"elder-card-content\">\n </ng-content>\n\n\n</div>\n", styles: [".elder-card-host{display:flex;flex:1;min-width:0;min-height:0}.elder-card-content{overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;display:flex;flex:1}\n"], dependencies: [{ kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i2.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i3.DefaultStyleDirective, selector: " [ngStyle], [ngStyle.xs], [ngStyle.sm], [ngStyle.md], [ngStyle.lg], [ngStyle.xl], [ngStyle.lt-sm], [ngStyle.lt-md], [ngStyle.lt-lg], [ngStyle.lt-xl], [ngStyle.gt-xs], [ngStyle.gt-sm], [ngStyle.gt-md], [ngStyle.gt-lg]", inputs: ["ngStyle", "ngStyle.xs", "ngStyle.sm", "ngStyle.md", "ngStyle.lg", "ngStyle.xl", "ngStyle.lt-sm", "ngStyle.lt-md", "ngStyle.lt-lg", "ngStyle.lt-xl", "ngStyle.gt-xs", "ngStyle.gt-sm", "ngStyle.gt-md", "ngStyle.gt-lg"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardComponent, decorators: [{
|
|
149
|
-
type: Component,
|
|
150
|
-
args: [{ selector: 'elder-card', encapsulation: ViewEncapsulation.None, host: { 'class': 'elder-card-host' }, changeDetection: ChangeDetectionStrategy.OnPush, template: "\n<!-- Card Container -->\n<div fxLayout=\"column\" fxFlex\n [ngStyle]=\"{'padding': padding}\"\n [class.mat-elevation-z5]=\"float\"\n [class.elder-card-flat]=\"!float\"\n class=\"mat-typography elder-card\">\n\n <!-- If one does not want to use predefined card-sections. -->\n <ng-content></ng-content>\n\n <!-- Card Header -->\n <ng-content select=\"elder-card-header\">\n </ng-content>\n\n <!-- Card Content -->\n <ng-content select=\"elder-card-content\">\n </ng-content>\n\n\n</div>\n", styles: [".elder-card-host{display:flex;flex:1;min-width:0;min-height:0}.elder-card-content{overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;display:flex;flex:1}\n"] }]
|
|
151
|
-
}], ctorParameters: function () { return []; }, propDecorators: { padding: [{
|
|
152
|
-
type: Input
|
|
153
|
-
}], flat: [{
|
|
154
|
-
type: Input
|
|
155
|
-
}], float: [{
|
|
156
|
-
type: Input
|
|
157
|
-
}] } });
|
|
158
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItY2FyZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2NhcmRzL2VsZGVyLWNhcmQvZWxkZXItY2FyZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2NhcmRzL2VsZGVyLWNhcmQvZWxkZXItY2FyZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFVLGlCQUFpQixFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQzNILE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHVCQUF1QixDQUFDOzs7OztBQU01RCxNQUFNLE9BQU8scUJBQXFCO0lBSGxDO1FBS0U7Ozs7Ozs7O1VBUUU7UUFJSyxZQUFPLEdBQUcsS0FBSyxDQUFDO0tBRXhCOzttSEFoQlkscUJBQXFCO3VHQUFyQixxQkFBcUI7NEZBQXJCLHFCQUFxQjtrQkFIakMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsZ0RBQWdEO2lCQUMzRDs4QkFlUSxPQUFPO3NCQUZiLEtBQUs7dUJBQUMsY0FBYzs7c0JBQ3BCLFdBQVc7dUJBQUMsZUFBZTs7QUFLOUI7O0dBRUc7QUFPSCxNQUFNLE9BQU8sdUJBQXVCOztxSEFBdkIsdUJBQXVCO3lHQUF2Qix1QkFBdUI7NEZBQXZCLHVCQUF1QjtrQkFObkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsd0RBQXdEO29CQUNsRSxJQUFJLEVBQUU7d0JBQ0osT0FBTyxFQUFFLDBDQUEwQztxQkFDcEQ7aUJBQ0Y7O0FBS0Q7O0dBRUc7QUFPSCxNQUFNLE9BQU8seUJBQXlCO0lBTnRDO1FBVVMsWUFBTyxHQUFHLG1CQUFtQixDQUFDO0tBRXRDOzt1SEFOWSx5QkFBeUI7MkdBQXpCLHlCQUF5Qjs0RkFBekIseUJBQXlCO2tCQU5yQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSw4REFBOEQ7b0JBQ3hFLElBQUksRUFBRTt3QkFDSixPQUFPLEVBQUUsb0JBQW9CO3FCQUM5QjtpQkFDRjs4QkFLUSxPQUFPO3NCQUZiLEtBQUs7O3NCQUNMLFdBQVc7dUJBQUMsZUFBZTs7QUFLOUI7O0dBRUc7QUFPSCxNQUFNLE9BQU8sK0JBQStCOzs2SEFBL0IsK0JBQStCO2lIQUEvQiwrQkFBK0I7NEZBQS9CLCtCQUErQjtrQkFOM0MsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsa0ZBQWtGO29CQUM1RixJQUFJLEVBQUU7d0JBQ0osT0FBTyxFQUFFLDJCQUEyQjtxQkFDckM7aUJBQ0Y7O0FBS0Q7O0dBRUc7QUFPSCxNQUFNLE9BQU8sMEJBQTBCOzt3SEFBMUIsMEJBQTBCOzRHQUExQiwwQkFBMEI7NEZBQTFCLDBCQUEwQjtrQkFOdEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsaUVBQWlFO29CQUMzRSxJQUFJLEVBQUU7d0JBQ0osT0FBTyxFQUFFLDRCQUE0QjtxQkFDdEM7aUJBQ0Y7O0FBV0QsTUFBTSxPQUFPLGtCQUFrQjtJQWE3Qjs7OztnRkFJNEU7SUFFNUU7UUFqQkE7Ozs7b0ZBSTRFO1FBRXBFLFdBQU0sR0FBRyxJQUFJLENBQUM7UUFHZixZQUFPLEdBQUcsS0FBSyxDQUFDO0lBUVAsQ0FBQztJQUVqQjs7OztnRkFJNEU7SUFFNUUsUUFBUSxLQUFJLENBQUM7SUFFYjs7OztnRkFJNEU7SUFFNUUsSUFDVyxJQUFJLENBQUMsS0FBYztRQUM1QixJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMscUJBQXFCLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDOUMsQ0FBQztJQUVELElBQVcsSUFBSTtRQUNiLE9BQU8sQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDO0lBQ3RCLENBQUM7SUFFRCxJQUNXLEtBQUssQ0FBQyxLQUFjO1FBQzdCLElBQUksQ0FBQyxNQUFNLEdBQUcscUJBQXFCLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVELElBQVcsS0FBSztRQUNkLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUNyQixDQUFDOztnSEFuRFUsa0JBQWtCO29HQUFsQixrQkFBa0IsNkpDdkYvQixtaEJBcUJBOzRGRGtFYSxrQkFBa0I7a0JBUjlCLFNBQVM7K0JBQ0UsWUFBWSxpQkFHUCxpQkFBaUIsQ0FBQyxJQUFJLFFBQy9CLEVBQUMsT0FBTyxFQUFFLGlCQUFpQixFQUFDLG1CQUNqQix1QkFBdUIsQ0FBQyxNQUFNOzBFQWF4QyxPQUFPO3NCQURiLEtBQUs7Z0JBMEJLLElBQUk7c0JBRGQsS0FBSztnQkFVSyxLQUFLO3NCQURmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIERpcmVjdGl2ZSwgSG9zdEJpbmRpbmcsIElucHV0LCBPbkluaXQsIFZpZXdFbmNhcHN1bGF0aW9ufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7Y29lcmNlQm9vbGVhblByb3BlcnR5fSBmcm9tICdAYW5ndWxhci9jZGsvY29lcmNpb24nO1xuXG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogYGVsZGVyLXBhZGRpbmcsIFtlbGRlci1wYWRkaW5nXSwgW2VsZGVyUGFkZGluZ11gXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyUGFkZGluZ0RpcmVjdGl2ZSB7XG5cbiAgLypcbiAgQEhvc3RCaW5kaW5nKCdzdHlsZS5wYWRkaW5nLnB4JylcbiAgaG9zdFBhZGRpbmcgPSAnMTAnO1xuXG4gIEBJbnB1dCgnZWxkZXJQYWRkaW5nJylcbiAgcHVibGljIHNldCBwYWRkaW5nKHBhZGRpbmc6IHN0cmluZykge1xuICAgIHRoaXMuaG9zdFBhZGRpbmcgPSBwYWRkaW5nO1xuICB9XG4gICovXG5cbiAgQElucHV0KCdlbGRlclBhZGRpbmcnKVxuICBASG9zdEJpbmRpbmcoJ3N0eWxlLnBhZGRpbmcnKVxuICBwdWJsaWMgcGFkZGluZyA9ICc4cHgnO1xuXG59XG5cbi8qKlxuICogVGl0bGUgb2YgYSBjYXJkLCBuZWVkZWQgYXMgaXQncyB1c2VkIGFzIGEgc2VsZWN0b3IgaW4gdGhlIEFQSS5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiBgZWxkZXItY2FyZC10aXRsZSwgW2VsZGVyLWNhcmQtdGl0bGVdLCBbZWxkZXJDYXJkVGl0bGVdYCxcbiAgaG9zdDoge1xuICAgICdjbGFzcyc6ICdtYXQtaDMgbWF0LXN1YmhlYWRpbmctMiBlbGRlci1jYXJkLXRpdGxlJ1xuICB9XG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyQ2FyZFRpdGxlRGlyZWN0aXZlIHtcblxufVxuXG4vKipcbiAqIENvbnRlbnQgb2YgYSBjYXJkLCBuZWVkZWQgYXMgaXQncyB1c2VkIGFzIGEgc2VsZWN0b3IgaW4gdGhlIEFQSS5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiBgZWxkZXItY2FyZC1jb250ZW50LCBbZWxkZXItY2FyZC1jb250ZW50XSwgW2VsZGVyQ2FyZENvbnRlbnRdYCxcbiAgaG9zdDoge1xuICAgICdjbGFzcyc6ICdlbGRlci1jYXJkLWNvbnRlbnQnXG4gIH1cbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJDYXJkQ29udGVudERpcmVjdGl2ZSB7XG5cbiAgQElucHV0KClcbiAgQEhvc3RCaW5kaW5nKCdzdHlsZS5wYWRkaW5nJylcbiAgcHVibGljIHBhZGRpbmcgPSAnNXB4IDE1cHggNXB4IDE1cHgnO1xuXG59XG5cbi8qKlxuICogQWN0aW9ucyBpbiB0aGUgcmlnaHQgdG9wIGNvcm5lciwgbmVlZGVkIGFzIGl0J3MgdXNlZCBhcyBhIHNlbGVjdG9yIGluIHRoZSBBUEkuXG4gKi9cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogYGVsZGVyLWNhcmQtaGVhZGVyLWFjdGlvbnMsIFtlbGRlci1jYXJkLWhlYWRlci1hY3Rpb25zXSwgW2VsZGVyQ2FyZEhlYWRlckFjdGlvbnNdYCxcbiAgaG9zdDoge1xuICAgICdjbGFzcyc6ICdlbGRlci1jYXJkLWhlYWRlci1hY3Rpb25zJ1xuICB9XG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyQ2FyZEhlYWRlckFjdGlvbnNEaXJlY3RpdmUge1xuXG59XG5cbi8qKlxuICogU3ViIHRpdGxlLCBjYW4gYmUgdXNlZCB0byBhdXRvIHN0eWxlIHN1YiB0aXRsZXMgd2l0aGluIGNhcmQuXG4gKi9cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogYGVsZGVyLWNhcmQtc3VidGl0bGUsIFtlbGRlci1jYXJkLXN1YnRpdGxlXSwgW2VsZGVyQ2FyZFN1YnRpdGxlXWAsXG4gIGhvc3Q6IHtcbiAgICAnY2xhc3MnOiAnbWF0LWg0IGVsZGVyLWNhcmQtc3VidGl0bGUnXG4gIH1cbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJDYXJkU3VidGl0bGVEaXJlY3RpdmUgeyB9XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2VsZGVyLWNhcmQnLFxuICB0ZW1wbGF0ZVVybDogJy4vZWxkZXItY2FyZC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2VsZGVyLWNhcmQuY29tcG9uZW50LnNjc3MnXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDogeydjbGFzcyc6ICdlbGRlci1jYXJkLWhvc3QnfSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJDYXJkQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogRmllbGRzICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBwcml2YXRlIF9mbG9hdCA9IHRydWU7XG5cbiAgQElucHV0KClcbiAgcHVibGljIHBhZGRpbmcgPSAnNXB4JztcblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogQ29uc3RydWN0b3IgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIC8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiBMaWZlIEN5Y2xlICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuXG4gIG5nT25Jbml0KCkge31cblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICpcbiAgICogUHJvcGVydGllcyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKlxuICAgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAqXG4gICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuICBASW5wdXQoKVxuICBwdWJsaWMgc2V0IGZsYXQodmFsdWU6IGJvb2xlYW4pIHtcbiAgICB0aGlzLl9mbG9hdCA9ICFjb2VyY2VCb29sZWFuUHJvcGVydHkodmFsdWUpO1xuICB9XG5cbiAgcHVibGljIGdldCBmbGF0KCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiAhdGhpcy5fZmxvYXQ7XG4gIH1cblxuICBASW5wdXQoKVxuICBwdWJsaWMgc2V0IGZsb2F0KHZhbHVlOiBib29sZWFuKSB7XG4gICAgdGhpcy5fZmxvYXQgPSBjb2VyY2VCb29sZWFuUHJvcGVydHkodmFsdWUpO1xuICB9XG5cbiAgcHVibGljIGdldCBmbG9hdCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5fZmxvYXQ7XG4gIH1cblxufVxuIiwiXG48IS0tIENhcmQgQ29udGFpbmVyIC0tPlxuPGRpdiBmeExheW91dD1cImNvbHVtblwiIGZ4RmxleFxuICAgICBbbmdTdHlsZV09XCJ7J3BhZGRpbmcnOiBwYWRkaW5nfVwiXG4gICAgIFtjbGFzcy5tYXQtZWxldmF0aW9uLXo1XT1cImZsb2F0XCJcbiAgICAgW2NsYXNzLmVsZGVyLWNhcmQtZmxhdF09XCIhZmxvYXRcIlxuICAgICBjbGFzcz1cIm1hdC10eXBvZ3JhcGh5IGVsZGVyLWNhcmRcIj5cblxuICAgIDwhLS0gSWYgb25lIGRvZXMgbm90IHdhbnQgdG8gdXNlIHByZWRlZmluZWQgY2FyZC1zZWN0aW9ucy4gLS0+XG4gICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuXG4gICAgPCEtLSBDYXJkIEhlYWRlciAtLT5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJlbGRlci1jYXJkLWhlYWRlclwiPlxuICAgIDwvbmctY29udGVudD5cblxuICAgIDwhLS0gQ2FyZCBDb250ZW50IC0tPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImVsZGVyLWNhcmQtY29udGVudFwiPlxuICAgIDwvbmctY29udGVudD5cblxuXG48L2Rpdj5cbiJdfQ==
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { RouterModule } from '@angular/router';
|
|
4
|
-
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
5
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
6
|
-
import { ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardTitleDirective, ElderCardSubtitleDirective, ElderPaddingDirective } from './elder-card.component';
|
|
7
|
-
import { ElderCardHeaderComponent } from './elder-card-header/elder-card-header.component';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export * from './elder-card.component';
|
|
10
|
-
export * from './elder-card-header/elder-card-header.component';
|
|
11
|
-
export class ElderCardModule {
|
|
12
|
-
}
|
|
13
|
-
ElderCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
14
|
-
ElderCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: ElderCardModule, declarations: [ElderCardComponent,
|
|
15
|
-
ElderCardTitleDirective,
|
|
16
|
-
ElderCardContentDirective,
|
|
17
|
-
ElderCardHeaderActionsDirective,
|
|
18
|
-
ElderCardSubtitleDirective,
|
|
19
|
-
ElderCardHeaderComponent,
|
|
20
|
-
ElderPaddingDirective], imports: [
|
|
21
|
-
// Angular
|
|
22
|
-
CommonModule, RouterModule,
|
|
23
|
-
// Third Party
|
|
24
|
-
FlexLayoutModule, TranslateModule], exports: [ElderCardComponent,
|
|
25
|
-
ElderCardTitleDirective,
|
|
26
|
-
ElderCardContentDirective,
|
|
27
|
-
ElderCardHeaderActionsDirective,
|
|
28
|
-
ElderCardSubtitleDirective,
|
|
29
|
-
ElderCardHeaderComponent,
|
|
30
|
-
ElderPaddingDirective] });
|
|
31
|
-
ElderCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardModule, imports: [
|
|
32
|
-
// Angular
|
|
33
|
-
CommonModule, RouterModule,
|
|
34
|
-
// Third Party
|
|
35
|
-
FlexLayoutModule, TranslateModule] });
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderCardModule, decorators: [{
|
|
37
|
-
type: NgModule,
|
|
38
|
-
args: [{
|
|
39
|
-
imports: [
|
|
40
|
-
// Angular
|
|
41
|
-
CommonModule, RouterModule,
|
|
42
|
-
// Third Party
|
|
43
|
-
FlexLayoutModule, TranslateModule,
|
|
44
|
-
// Angular Material
|
|
45
|
-
],
|
|
46
|
-
declarations: [
|
|
47
|
-
ElderCardComponent,
|
|
48
|
-
ElderCardTitleDirective,
|
|
49
|
-
ElderCardContentDirective,
|
|
50
|
-
ElderCardHeaderActionsDirective,
|
|
51
|
-
ElderCardSubtitleDirective,
|
|
52
|
-
ElderCardHeaderComponent,
|
|
53
|
-
ElderPaddingDirective
|
|
54
|
-
],
|
|
55
|
-
exports: [
|
|
56
|
-
ElderCardComponent,
|
|
57
|
-
ElderCardTitleDirective,
|
|
58
|
-
ElderCardContentDirective,
|
|
59
|
-
ElderCardHeaderActionsDirective,
|
|
60
|
-
ElderCardSubtitleDirective,
|
|
61
|
-
ElderCardHeaderComponent,
|
|
62
|
-
ElderPaddingDirective
|
|
63
|
-
]
|
|
64
|
-
}]
|
|
65
|
-
}] });
|
|
66
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItY2FyZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9lbGRlcmJ5dGUvbmd4LXN0YXJ0ZXIvc3JjL2xpYi9jb21wb25lbnRzL2NhcmRzL2VsZGVyLWNhcmQvZWxkZXItY2FyZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ3RELE9BQU8sRUFBQyxlQUFlLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUNwRCxPQUFPLEVBQ0wsa0JBQWtCLEVBQ2xCLHlCQUF5QixFQUN6QiwrQkFBK0IsRUFDL0IsdUJBQXVCLEVBQ3ZCLDBCQUEwQixFQUMxQixxQkFBcUIsRUFDdEIsTUFBTSx3QkFBd0IsQ0FBQztBQUNoQyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQzs7QUFFM0YsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLGlEQUFpRCxDQUFDO0FBK0JoRSxNQUFNLE9BQU8sZUFBZTs7NkdBQWYsZUFBZTs4R0FBZixlQUFlLGlCQWxCeEIsa0JBQWtCO1FBQ2xCLHVCQUF1QjtRQUN2Qix5QkFBeUI7UUFDekIsK0JBQStCO1FBQy9CLDBCQUEwQjtRQUMxQix3QkFBd0I7UUFDeEIscUJBQXFCO1FBZnJCLFVBQVU7UUFDVixZQUFZLEVBQUUsWUFBWTtRQUUxQixjQUFjO1FBQ2QsZ0JBQWdCLEVBQUUsZUFBZSxhQWNqQyxrQkFBa0I7UUFDbEIsdUJBQXVCO1FBQ3ZCLHlCQUF5QjtRQUN6QiwrQkFBK0I7UUFDL0IsMEJBQTBCO1FBQzFCLHdCQUF3QjtRQUN4QixxQkFBcUI7OEdBR1osZUFBZTtRQTNCeEIsVUFBVTtRQUNWLFlBQVksRUFBRSxZQUFZO1FBRTFCLGNBQWM7UUFDZCxnQkFBZ0IsRUFBRSxlQUFlOzRGQXVCeEIsZUFBZTtrQkE3QjNCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFVBQVU7d0JBQ1YsWUFBWSxFQUFFLFlBQVk7d0JBRTFCLGNBQWM7d0JBQ2QsZ0JBQWdCLEVBQUUsZUFBZTt3QkFFakMsbUJBQW1CO3FCQUNwQjtvQkFDRCxZQUFZLEVBQUU7d0JBQ1osa0JBQWtCO3dCQUNsQix1QkFBdUI7d0JBQ3ZCLHlCQUF5Qjt3QkFDekIsK0JBQStCO3dCQUMvQiwwQkFBMEI7d0JBQzFCLHdCQUF3Qjt3QkFDeEIscUJBQXFCO3FCQUN0QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asa0JBQWtCO3dCQUNsQix1QkFBdUI7d0JBQ3ZCLHlCQUF5Qjt3QkFDekIsK0JBQStCO3dCQUMvQiwwQkFBMEI7d0JBQzFCLHdCQUF3Qjt3QkFDeEIscUJBQXFCO3FCQUN0QjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtSb3V0ZXJNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQge0ZsZXhMYXlvdXRNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2ZsZXgtbGF5b3V0JztcbmltcG9ydCB7VHJhbnNsYXRlTW9kdWxlfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcbmltcG9ydCB7XG4gIEVsZGVyQ2FyZENvbXBvbmVudCxcbiAgRWxkZXJDYXJkQ29udGVudERpcmVjdGl2ZSxcbiAgRWxkZXJDYXJkSGVhZGVyQWN0aW9uc0RpcmVjdGl2ZSxcbiAgRWxkZXJDYXJkVGl0bGVEaXJlY3RpdmUsXG4gIEVsZGVyQ2FyZFN1YnRpdGxlRGlyZWN0aXZlLFxuICBFbGRlclBhZGRpbmdEaXJlY3RpdmVcbn0gZnJvbSAnLi9lbGRlci1jYXJkLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBFbGRlckNhcmRIZWFkZXJDb21wb25lbnQgfSBmcm9tICcuL2VsZGVyLWNhcmQtaGVhZGVyL2VsZGVyLWNhcmQtaGVhZGVyLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZWxkZXItY2FyZC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9lbGRlci1jYXJkLWhlYWRlci9lbGRlci1jYXJkLWhlYWRlci5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgLy8gQW5ndWxhclxuICAgIENvbW1vbk1vZHVsZSwgUm91dGVyTW9kdWxlLFxuXG4gICAgLy8gVGhpcmQgUGFydHlcbiAgICBGbGV4TGF5b3V0TW9kdWxlLCBUcmFuc2xhdGVNb2R1bGUsXG5cbiAgICAvLyBBbmd1bGFyIE1hdGVyaWFsXG4gIF0sXG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEVsZGVyQ2FyZENvbXBvbmVudCxcbiAgICBFbGRlckNhcmRUaXRsZURpcmVjdGl2ZSxcbiAgICBFbGRlckNhcmRDb250ZW50RGlyZWN0aXZlLFxuICAgIEVsZGVyQ2FyZEhlYWRlckFjdGlvbnNEaXJlY3RpdmUsXG4gICAgRWxkZXJDYXJkU3VidGl0bGVEaXJlY3RpdmUsXG4gICAgRWxkZXJDYXJkSGVhZGVyQ29tcG9uZW50LFxuICAgIEVsZGVyUGFkZGluZ0RpcmVjdGl2ZVxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgRWxkZXJDYXJkQ29tcG9uZW50LFxuICAgIEVsZGVyQ2FyZFRpdGxlRGlyZWN0aXZlLFxuICAgIEVsZGVyQ2FyZENvbnRlbnREaXJlY3RpdmUsXG4gICAgRWxkZXJDYXJkSGVhZGVyQWN0aW9uc0RpcmVjdGl2ZSxcbiAgICBFbGRlckNhcmRTdWJ0aXRsZURpcmVjdGl2ZSxcbiAgICBFbGRlckNhcmRIZWFkZXJDb21wb25lbnQsXG4gICAgRWxkZXJQYWRkaW5nRGlyZWN0aXZlXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgRWxkZXJDYXJkTW9kdWxlIHsgfVxuIl19
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { MatButtonModule } from '@angular/material/button';
|
|
4
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
5
|
-
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
6
|
-
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
7
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
8
|
-
import { ElderOfflineIndicatorComponent } from './offline-indicator/elder-offline-indicator.component';
|
|
9
|
-
import { ElderPipesModule } from '../../pipes/elder-pipes.module';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export { ElderOfflineIndicatorComponent } from './offline-indicator/elder-offline-indicator.component';
|
|
12
|
-
export class ElderConnectivityModule {
|
|
13
|
-
}
|
|
14
|
-
ElderConnectivityModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderConnectivityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
15
|
-
ElderConnectivityModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: ElderConnectivityModule, declarations: [ElderOfflineIndicatorComponent], imports: [
|
|
16
|
-
// Angular
|
|
17
|
-
CommonModule,
|
|
18
|
-
// Third Party
|
|
19
|
-
FlexLayoutModule, TranslateModule,
|
|
20
|
-
// Angular Material
|
|
21
|
-
MatIconModule, MatTooltipModule,
|
|
22
|
-
MatButtonModule,
|
|
23
|
-
// ElderByte
|
|
24
|
-
ElderPipesModule], exports: [ElderOfflineIndicatorComponent] });
|
|
25
|
-
ElderConnectivityModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderConnectivityModule, imports: [
|
|
26
|
-
// Angular
|
|
27
|
-
CommonModule,
|
|
28
|
-
// Third Party
|
|
29
|
-
FlexLayoutModule, TranslateModule,
|
|
30
|
-
// Angular Material
|
|
31
|
-
MatIconModule, MatTooltipModule,
|
|
32
|
-
MatButtonModule,
|
|
33
|
-
// ElderByte
|
|
34
|
-
ElderPipesModule] });
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: ElderConnectivityModule, decorators: [{
|
|
36
|
-
type: NgModule,
|
|
37
|
-
args: [{
|
|
38
|
-
imports: [
|
|
39
|
-
// Angular
|
|
40
|
-
CommonModule,
|
|
41
|
-
// Third Party
|
|
42
|
-
FlexLayoutModule, TranslateModule,
|
|
43
|
-
// Angular Material
|
|
44
|
-
MatIconModule, MatTooltipModule,
|
|
45
|
-
MatButtonModule,
|
|
46
|
-
// ElderByte
|
|
47
|
-
ElderPipesModule
|
|
48
|
-
],
|
|
49
|
-
declarations: [
|
|
50
|
-
ElderOfflineIndicatorComponent
|
|
51
|
-
],
|
|
52
|
-
exports: [
|
|
53
|
-
ElderOfflineIndicatorComponent
|
|
54
|
-
]
|
|
55
|
-
}]
|
|
56
|
-
}] });
|
|
57
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWxkZXItY29ubmVjdGl2aXR5Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VsZGVyYnl0ZS9uZ3gtc3RhcnRlci9zcmMvbGliL2NvbXBvbmVudHMvY29ubmVjdGl2aXR5L2VsZGVyLWNvbm5lY3Rpdml0eS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdEQsT0FBTyxFQUFDLDhCQUE4QixFQUFDLE1BQU0sdURBQXVELENBQUM7QUFDckcsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0sZ0NBQWdDLENBQUM7O0FBRWhFLE9BQU8sRUFBQyw4QkFBOEIsRUFBQyxNQUFNLHVEQUF1RCxDQUFDO0FBMkJyRyxNQUFNLE9BQU8sdUJBQXVCOztxSEFBdkIsdUJBQXVCO3NIQUF2Qix1QkFBdUIsaUJBTmhDLDhCQUE4QjtRQWY5QixVQUFVO1FBQ1YsWUFBWTtRQUVaLGNBQWM7UUFDZCxnQkFBZ0IsRUFBRSxlQUFlO1FBRWpDLG1CQUFtQjtRQUNuQixhQUFhLEVBQUUsZ0JBQWdCO1FBQy9CLGVBQWU7UUFFZixZQUFZO1FBQ1osZ0JBQWdCLGFBT2hCLDhCQUE4QjtzSEFHckIsdUJBQXVCO1FBckJoQyxVQUFVO1FBQ1YsWUFBWTtRQUVaLGNBQWM7UUFDZCxnQkFBZ0IsRUFBRSxlQUFlO1FBRWpDLG1CQUFtQjtRQUNuQixhQUFhLEVBQUUsZ0JBQWdCO1FBQy9CLGVBQWU7UUFFZixZQUFZO1FBQ1osZ0JBQWdCOzRGQVVQLHVCQUF1QjtrQkF4Qm5DLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUVQLFVBQVU7d0JBQ1YsWUFBWTt3QkFFWixjQUFjO3dCQUNkLGdCQUFnQixFQUFFLGVBQWU7d0JBRWpDLG1CQUFtQjt3QkFDbkIsYUFBYSxFQUFFLGdCQUFnQjt3QkFDL0IsZUFBZTt3QkFFZixZQUFZO3dCQUNaLGdCQUFnQjtxQkFFakI7b0JBQ0QsWUFBWSxFQUFFO3dCQUNaLDhCQUE4QjtxQkFDL0I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLDhCQUE4QjtxQkFDL0I7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE1hdEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2J1dHRvbic7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQgeyBNYXRUb29sdGlwTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdG9vbHRpcCc7XG5pbXBvcnQgeyBGbGV4TGF5b3V0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZmxleC1sYXlvdXQnO1xuaW1wb3J0IHsgVHJhbnNsYXRlTW9kdWxlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQge0VsZGVyT2ZmbGluZUluZGljYXRvckNvbXBvbmVudH0gZnJvbSAnLi9vZmZsaW5lLWluZGljYXRvci9lbGRlci1vZmZsaW5lLWluZGljYXRvci5jb21wb25lbnQnO1xuaW1wb3J0IHtFbGRlclBpcGVzTW9kdWxlfSBmcm9tICcuLi8uLi9waXBlcy9lbGRlci1waXBlcy5tb2R1bGUnO1xuXG5leHBvcnQge0VsZGVyT2ZmbGluZUluZGljYXRvckNvbXBvbmVudH0gZnJvbSAnLi9vZmZsaW5lLWluZGljYXRvci9lbGRlci1vZmZsaW5lLWluZGljYXRvci5jb21wb25lbnQnO1xuXG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtcblxuICAgIC8vIEFuZ3VsYXJcbiAgICBDb21tb25Nb2R1bGUsXG5cbiAgICAvLyBUaGlyZCBQYXJ0eVxuICAgIEZsZXhMYXlvdXRNb2R1bGUsIFRyYW5zbGF0ZU1vZHVsZSxcblxuICAgIC8vIEFuZ3VsYXIgTWF0ZXJpYWxcbiAgICBNYXRJY29uTW9kdWxlLCBNYXRUb29sdGlwTW9kdWxlLFxuICAgIE1hdEJ1dHRvbk1vZHVsZSxcblxuICAgIC8vIEVsZGVyQnl0ZVxuICAgIEVsZGVyUGlwZXNNb2R1bGVcblxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBFbGRlck9mZmxpbmVJbmRpY2F0b3JDb21wb25lbnRcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEVsZGVyT2ZmbGluZUluZGljYXRvckNvbXBvbmVudFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEVsZGVyQ29ubmVjdGl2aXR5TW9kdWxlIHsgfVxuIl19
|