@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,287 +0,0 @@
|
|
|
1
|
-
import { Duration, Instant, LocalDate, TemporalAmount, ZoneId } from '@js-joda/core';
|
|
2
|
-
import { PeriodDuration } from './period-duration';
|
|
3
|
-
/**
|
|
4
|
-
* Represents an ISO-8601 interval string.
|
|
5
|
-
* https://en.wikipedia.org/wiki/ISO_8601#Time_intervals
|
|
6
|
-
*/
|
|
7
|
-
export declare type IsoIntervalStr = string;
|
|
8
|
-
export declare class Interval {
|
|
9
|
-
readonly start: Instant;
|
|
10
|
-
readonly end: Instant;
|
|
11
|
-
/***************************************************************************
|
|
12
|
-
* *
|
|
13
|
-
* Constructor *
|
|
14
|
-
* *
|
|
15
|
-
**************************************************************************/
|
|
16
|
-
constructor(start: Instant, end: Instant);
|
|
17
|
-
/***************************************************************************
|
|
18
|
-
* *
|
|
19
|
-
* Static Builders *
|
|
20
|
-
* *
|
|
21
|
-
**************************************************************************/
|
|
22
|
-
/**
|
|
23
|
-
* Parses an ISO-8601 interval string.
|
|
24
|
-
* https://en.wikipedia.org/wiki/ISO_8601#Time_intervals
|
|
25
|
-
* @param iso
|
|
26
|
-
*/
|
|
27
|
-
static parse(iso: IsoIntervalStr): Interval;
|
|
28
|
-
static yesterday(zoneId: ZoneId): Interval;
|
|
29
|
-
static tomorrow(zoneId: ZoneId): Interval;
|
|
30
|
-
static today(zoneId: ZoneId): Interval;
|
|
31
|
-
/**
|
|
32
|
-
* Creates a Interval from a Date by spreading it to the begin and end of its day.
|
|
33
|
-
* @param date Date to spread
|
|
34
|
-
*/
|
|
35
|
-
static ofDayDate(date: Date): Interval;
|
|
36
|
-
static ofDay(day: LocalDate, zoneId: ZoneId): Interval;
|
|
37
|
-
static betweenDays(startDayInclusive: LocalDate, endDayExclusive: LocalDate, zoneId: ZoneId): Interval;
|
|
38
|
-
/**
|
|
39
|
-
* Creates a new interval with the given start time point
|
|
40
|
-
* and a offset from the start.
|
|
41
|
-
*
|
|
42
|
-
* Note that you should use Period for days to account for zone specific
|
|
43
|
-
* things like daylight saving.
|
|
44
|
-
*
|
|
45
|
-
* @param startInclusive
|
|
46
|
-
* @param offsetExclusive A Period or Duration offset.
|
|
47
|
-
*/
|
|
48
|
-
static ofStartAndOffset(startInclusive: Instant, offsetExclusive: TemporalAmount): Interval;
|
|
49
|
-
static of(startInclusive: Instant, endExclusive: Instant): Interval;
|
|
50
|
-
static ofDate(startInclusive: Date | string, endExclusive: Date | string): Interval;
|
|
51
|
-
/***************************************************************************
|
|
52
|
-
* *
|
|
53
|
-
* Properties *
|
|
54
|
-
* *
|
|
55
|
-
**************************************************************************/
|
|
56
|
-
/**
|
|
57
|
-
* Checks if the range is empty.
|
|
58
|
-
* <p>
|
|
59
|
-
* An empty range occurs when the start date equals the inclusive end date.
|
|
60
|
-
*
|
|
61
|
-
* @return true if the range is empty
|
|
62
|
-
*/
|
|
63
|
-
isEmpty(): boolean;
|
|
64
|
-
/**
|
|
65
|
-
* Checks if the start of the interval is unbounded.
|
|
66
|
-
*
|
|
67
|
-
* @return true if start is unbounded
|
|
68
|
-
*/
|
|
69
|
-
isUnboundedStart(): boolean;
|
|
70
|
-
/**
|
|
71
|
-
* Checks if the end of the interval is unbounded.
|
|
72
|
-
*
|
|
73
|
-
* @return true if end is unbounded
|
|
74
|
-
*/
|
|
75
|
-
isUnboundedEnd(): boolean;
|
|
76
|
-
/***************************************************************************
|
|
77
|
-
* *
|
|
78
|
-
* Public API *
|
|
79
|
-
* *
|
|
80
|
-
**************************************************************************/
|
|
81
|
-
toDuration(): Duration;
|
|
82
|
-
toPeriodDuration(zone: ZoneId): PeriodDuration;
|
|
83
|
-
toString(): IsoIntervalStr;
|
|
84
|
-
toInstantString(): IsoIntervalStr;
|
|
85
|
-
toDurationString(): IsoIntervalStr;
|
|
86
|
-
/***************************************************************************
|
|
87
|
-
* *
|
|
88
|
-
* Public Modification API *
|
|
89
|
-
* *
|
|
90
|
-
**************************************************************************/
|
|
91
|
-
/**
|
|
92
|
-
* Returns a copy of this range with the specified start instant.
|
|
93
|
-
*
|
|
94
|
-
* @param start the start instant for the new interval, not null
|
|
95
|
-
* @return an interval with the end from this interval and the specified start
|
|
96
|
-
* @throws DateTimeException if the resulting interval has end before start
|
|
97
|
-
*/
|
|
98
|
-
withStart(start: Instant): Interval;
|
|
99
|
-
/**
|
|
100
|
-
* Returns a copy of this range with the specified end instant.
|
|
101
|
-
*
|
|
102
|
-
* @param end the end instant for the new interval, not null
|
|
103
|
-
* @return an interval with the start from this interval and the specified end
|
|
104
|
-
* @throws DateTimeException if the resulting interval has end before start
|
|
105
|
-
*/
|
|
106
|
-
withEnd(end: Instant): Interval;
|
|
107
|
-
/**
|
|
108
|
-
* Calculates the interval that is the intersection of this interval and the specified interval.
|
|
109
|
-
* <p>
|
|
110
|
-
* This finds the intersection of two intervals.
|
|
111
|
-
* This throws an exception if the two intervals are not {@linkplain #isConnected(Interval) connected}.
|
|
112
|
-
*
|
|
113
|
-
* @param other the other interval to check for, not null
|
|
114
|
-
* @return the interval that is the intersection of the two intervals
|
|
115
|
-
* @throws DateTimeException if the intervals do not connect
|
|
116
|
-
*/
|
|
117
|
-
intersection(other: Interval): Interval;
|
|
118
|
-
/**
|
|
119
|
-
* Calculates the interval that is the union of this interval and the specified interval.
|
|
120
|
-
* <p>
|
|
121
|
-
* This finds the union of two intervals.
|
|
122
|
-
* This throws an exception if the two intervals are not {@linkplain #isConnected(Interval) connected}.
|
|
123
|
-
*
|
|
124
|
-
* @param other the other interval to check for, not null
|
|
125
|
-
* @return the interval that is the union of the two intervals
|
|
126
|
-
* @throws DateTimeException if the intervals do not connect
|
|
127
|
-
*/
|
|
128
|
-
union(other: Interval): Interval;
|
|
129
|
-
/**
|
|
130
|
-
* Calculates the smallest interval that encloses this interval and the specified interval.
|
|
131
|
-
* <p>
|
|
132
|
-
* The result of this method will {@linkplain #encloses(Interval) enclose}
|
|
133
|
-
* this interval and the specified interval.
|
|
134
|
-
*
|
|
135
|
-
* @param other the other interval to check for, not null
|
|
136
|
-
* @return the interval that spans the two intervals
|
|
137
|
-
*/
|
|
138
|
-
span(other: Interval): Interval;
|
|
139
|
-
/**
|
|
140
|
-
* Shift the whole interval by the given days period.
|
|
141
|
-
* @param days
|
|
142
|
-
*/
|
|
143
|
-
shiftDays(days: number): Interval;
|
|
144
|
-
/**
|
|
145
|
-
* Shift the whole interval by the given temporal amount.
|
|
146
|
-
* Note that only Period will account for zone specific things such as daylight savings.
|
|
147
|
-
* Use Duration only if you are below days.
|
|
148
|
-
* @param offset
|
|
149
|
-
*/
|
|
150
|
-
shift(offset: TemporalAmount): Interval;
|
|
151
|
-
moveStart(offset: TemporalAmount): Interval;
|
|
152
|
-
moveEnd(offset: TemporalAmount): Interval;
|
|
153
|
-
/***************************************************************************
|
|
154
|
-
* *
|
|
155
|
-
* Interval Query API *
|
|
156
|
-
* *
|
|
157
|
-
**************************************************************************/
|
|
158
|
-
/**
|
|
159
|
-
* Checks if the given TimeFrame overlaps with this one.
|
|
160
|
-
*
|
|
161
|
-
* @param other TimeFrame to check against
|
|
162
|
-
* @return Returns {@code true} if the two candidates overlap, false otherwise
|
|
163
|
-
*/
|
|
164
|
-
overlaps(other: Interval): boolean;
|
|
165
|
-
/**
|
|
166
|
-
* Checks it the given localDate overlaps with the given TimeFrame.
|
|
167
|
-
*
|
|
168
|
-
* @param timeFrame TimeFrame to check against
|
|
169
|
-
* @param localDate LocalDate to check
|
|
170
|
-
*/
|
|
171
|
-
overlapsWithLocalDate(localDate: Date): boolean;
|
|
172
|
-
/**
|
|
173
|
-
* Checks if this interval contains the specified instant.
|
|
174
|
-
* <p>
|
|
175
|
-
* This checks if the specified instant is within the bounds of this interval.
|
|
176
|
-
* If this range has an unbounded start then {@code contains(Instant#MIN)} returns true.
|
|
177
|
-
* If this range has an unbounded end then {@code contains(Instant#MAX)} returns true.
|
|
178
|
-
* If this range is empty then this method always returns false.
|
|
179
|
-
*
|
|
180
|
-
* @param instant the instant, not null
|
|
181
|
-
* @return true if this interval contains the instant
|
|
182
|
-
*/
|
|
183
|
-
contains(instant: Instant): boolean;
|
|
184
|
-
/**
|
|
185
|
-
* Checks if this interval encloses the specified interval.
|
|
186
|
-
* <p>
|
|
187
|
-
* This checks if the bounds of the specified interval are within the bounds of this interval.
|
|
188
|
-
* An empty interval encloses itself.
|
|
189
|
-
*
|
|
190
|
-
* @param other the other interval, not null
|
|
191
|
-
* @return true if this interval contains the other interval
|
|
192
|
-
*/
|
|
193
|
-
encloses(other: Interval): boolean;
|
|
194
|
-
/**
|
|
195
|
-
* Checks if this interval abuts (is next to or has a common boundary with) the specified interval.
|
|
196
|
-
* <p>
|
|
197
|
-
* The result is true if the end of this interval is the start of the other, or vice versa.
|
|
198
|
-
* An empty interval does not abut itself.
|
|
199
|
-
*
|
|
200
|
-
* @param other the other interval, not null
|
|
201
|
-
* @return true if this interval abuts the other interval
|
|
202
|
-
*/
|
|
203
|
-
abuts(other: Interval): boolean;
|
|
204
|
-
/**
|
|
205
|
-
* Checks if this interval is connected to the specified interval.
|
|
206
|
-
* <p>
|
|
207
|
-
* The result is true if the two intervals have an enclosed interval in common, even if that interval is empty.
|
|
208
|
-
* An empty interval is connected to itself.
|
|
209
|
-
* <p>
|
|
210
|
-
* This is equivalent to {@code (overlaps(other) || abuts(other))}.
|
|
211
|
-
*
|
|
212
|
-
* @param other the other interval, not null
|
|
213
|
-
* @return true if this interval is connected to the other interval
|
|
214
|
-
*/
|
|
215
|
-
isConnected(other: Interval): boolean;
|
|
216
|
-
/**
|
|
217
|
-
* Checks if this interval is after the specified instant.
|
|
218
|
-
* <p>
|
|
219
|
-
* The result is true if this instant starts after the specified instant.
|
|
220
|
-
* An empty interval behaves as though it is an instant for comparison purposes.
|
|
221
|
-
*
|
|
222
|
-
* @param instant the other instant to compare to, not null
|
|
223
|
-
* @return true if the start of this interval is after the specified instant
|
|
224
|
-
*/
|
|
225
|
-
isAfterInstant(instant: Instant): boolean;
|
|
226
|
-
/**
|
|
227
|
-
* Checks if this interval is before the specified instant.
|
|
228
|
-
* <p>
|
|
229
|
-
* The result is true if this instant ends before the specified instant.
|
|
230
|
-
* Since intervals do not include their end points, this will return true if the
|
|
231
|
-
* instant equals the end of the interval.
|
|
232
|
-
* An empty interval behaves as though it is an instant for comparison purposes.
|
|
233
|
-
*
|
|
234
|
-
* @param instant the other instant to compare to, not null
|
|
235
|
-
* @return true if the start of this interval is before the specified instant
|
|
236
|
-
*/
|
|
237
|
-
isBeforeInstant(instant: Instant): boolean;
|
|
238
|
-
/**
|
|
239
|
-
* Checks if this interval is after the specified interval.
|
|
240
|
-
* <p>
|
|
241
|
-
* The result is true if this instant starts after the end of the specified interval.
|
|
242
|
-
* Since intervals do not include their end points, this will return true if the
|
|
243
|
-
* instant equals the end of the interval.
|
|
244
|
-
* An empty interval behaves as though it is an instant for comparison purposes.
|
|
245
|
-
*
|
|
246
|
-
* @param interval the other interval to compare to, not null
|
|
247
|
-
* @return true if this instant is after the specified instant
|
|
248
|
-
*/
|
|
249
|
-
isAfter(interval: Interval): boolean;
|
|
250
|
-
/**
|
|
251
|
-
* Checks if this interval is before the specified interval.
|
|
252
|
-
* <p>
|
|
253
|
-
* The result is true if this instant ends before the start of the specified interval.
|
|
254
|
-
* Since intervals do not include their end points, this will return true if the
|
|
255
|
-
* two intervals abut.
|
|
256
|
-
* An empty interval behaves as though it is an instant for comparison purposes.
|
|
257
|
-
*
|
|
258
|
-
* @param interval the other interval to compare to, not null
|
|
259
|
-
* @return true if this instant is before the specified instant
|
|
260
|
-
*/
|
|
261
|
-
isBefore(interval: Interval): boolean;
|
|
262
|
-
/***************************************************************************
|
|
263
|
-
* *
|
|
264
|
-
* Equality & Hashcode *
|
|
265
|
-
* *
|
|
266
|
-
**************************************************************************/
|
|
267
|
-
/**
|
|
268
|
-
* Checks if this interval is equal to another interval.
|
|
269
|
-
* <p>
|
|
270
|
-
* Compares this {@code Interval} with another ensuring that the two instants are the same.
|
|
271
|
-
* Only objects of type {@code Interval} are compared, other types return false.
|
|
272
|
-
*
|
|
273
|
-
* @param obj the object to check, null returns false
|
|
274
|
-
* @return true if this is equal to the other interval
|
|
275
|
-
*/
|
|
276
|
-
equals(obj: any): boolean;
|
|
277
|
-
/**
|
|
278
|
-
* Compares this Interval to the given Interval.
|
|
279
|
-
* <p>
|
|
280
|
-
* The comparison is based on the time-line position of the lower bound instants (Interval start).
|
|
281
|
-
*
|
|
282
|
-
* @param other the other Interval to compare to, not null
|
|
283
|
-
* @return the comparator value, negative if less, positive if greater
|
|
284
|
-
* @throws NullPointerException if other is null
|
|
285
|
-
*/
|
|
286
|
-
compareTo(other: Interval): number;
|
|
287
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import { Duration, Period, Temporal } from '@js-joda/core';
|
|
2
|
-
export declare class PeriodDuration {
|
|
3
|
-
/***************************************************************************
|
|
4
|
-
* *
|
|
5
|
-
* Fields *
|
|
6
|
-
* *
|
|
7
|
-
**************************************************************************/
|
|
8
|
-
readonly period: Period;
|
|
9
|
-
readonly duration: Duration;
|
|
10
|
-
/***************************************************************************
|
|
11
|
-
* *
|
|
12
|
-
* Constructor *
|
|
13
|
-
* *
|
|
14
|
-
**************************************************************************/
|
|
15
|
-
private constructor();
|
|
16
|
-
/***************************************************************************
|
|
17
|
-
* *
|
|
18
|
-
* Static Builder *
|
|
19
|
-
* *
|
|
20
|
-
**************************************************************************/
|
|
21
|
-
/**
|
|
22
|
-
* Obtains an instance from a text string such as {@code PnYnMnDTnHnMnS}.
|
|
23
|
-
* <p>
|
|
24
|
-
* This will parse the string produced by {@code toString()} which is
|
|
25
|
-
* based on the ISO-8601 period formats {@code PnYnMnDTnHnMnS} and {@code PnW}.
|
|
26
|
-
* <p>
|
|
27
|
-
* The string starts with an optional sign, denoted by the ASCII negative
|
|
28
|
-
* or positive symbol. If negative, the whole amount is negated.
|
|
29
|
-
* The ASCII letter "P" is next in upper or lower case.
|
|
30
|
-
* There are then a number of sections, each consisting of a number and a suffix.
|
|
31
|
-
* At least one of the sections must be present.
|
|
32
|
-
* The sections have suffixes in ASCII of "Y" for years, "M" for months,
|
|
33
|
-
* "W" for weeks, "D" for days, "H" for hours, "M" for minutes, "S" for seconds,
|
|
34
|
-
* accepted in upper or lower case. Note that the ASCII letter "T" separates
|
|
35
|
-
* the date and time parts and must be present if any time part is present.
|
|
36
|
-
* The suffixes must occur in order.
|
|
37
|
-
* The number part of each section must consist of ASCII digits.
|
|
38
|
-
* The number may be prefixed by the ASCII negative or positive symbol.
|
|
39
|
-
* The number must parse to an {@code int}.
|
|
40
|
-
* Any week-based input is multiplied by 7 and treated as a number of days.
|
|
41
|
-
* <p>
|
|
42
|
-
* The leading plus/minus sign, and negative values for weeks and days are
|
|
43
|
-
* not part of the ISO-8601 standard.
|
|
44
|
-
* <p>
|
|
45
|
-
* Note that the date style format {@code PYYYY-MM-DDTHH:MM:SS} is not supported.
|
|
46
|
-
* <p>
|
|
47
|
-
* For example, the following are valid inputs:
|
|
48
|
-
* <pre>
|
|
49
|
-
* "P2Y" -- PeriodDuration.of(Period.ofYears(2))
|
|
50
|
-
* "P3M" -- PeriodDuration.of(Period.ofMonths(3))
|
|
51
|
-
* "P4W" -- PeriodDuration.of(Period.ofWeeks(4))
|
|
52
|
-
* "P5D" -- PeriodDuration.of(Period.ofDays(5))
|
|
53
|
-
* "PT6H" -- PeriodDuration.of(Duration.ofHours(6))
|
|
54
|
-
* "P1Y2M3D" -- PeriodDuration.of(Period.of(1, 2, 3))
|
|
55
|
-
* "P1Y2M3W4DT8H" -- PeriodDuration.of(Period.of(1, 2, 25), Duration.ofHours(8))
|
|
56
|
-
* "P-1Y2M" -- PeriodDuration.of(Period.of(-1, 2, 0))
|
|
57
|
-
* "-P1Y2M" -- PeriodDuration.of(Period.of(-1, -2, 0))
|
|
58
|
-
* </pre>
|
|
59
|
-
*
|
|
60
|
-
* @param text the text to parse, not null
|
|
61
|
-
* @return the parsed period, not null
|
|
62
|
-
* @throws DateTimeParseException if the text cannot be parsed to a period
|
|
63
|
-
*/
|
|
64
|
-
static parse(text: string): PeriodDuration;
|
|
65
|
-
/**
|
|
66
|
-
* Obtains an instance consisting of the amount of time between two temporals.
|
|
67
|
-
* <p>
|
|
68
|
-
* The start is included, but the end is not.
|
|
69
|
-
* The result of this method can be negative if the end is before the start.
|
|
70
|
-
* <p>
|
|
71
|
-
* The calculation examines the temporals and extracts {@link LocalDate} and {@link LocalTime}.
|
|
72
|
-
* If the time is missing, it will be defaulted to midnight.
|
|
73
|
-
* If one date is missing, it will be defaulted to the other date.
|
|
74
|
-
* It then finds the amount of time between the two dates and between the two times.
|
|
75
|
-
*
|
|
76
|
-
* @param startInclusive the start, inclusive, not null
|
|
77
|
-
* @param endExclusive the end, exclusive, not null
|
|
78
|
-
* @return the number of days between this date and the end date, not null
|
|
79
|
-
*/
|
|
80
|
-
static between(startInclusive: Temporal, endExclusive: Temporal): PeriodDuration;
|
|
81
|
-
static ofPeriod(period: Period): PeriodDuration;
|
|
82
|
-
static ofDuration(duration: Duration): PeriodDuration;
|
|
83
|
-
static of(period: Period, duration: Duration): PeriodDuration;
|
|
84
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Duration, Instant, LocalDate, TemporalAccessor, ZonedDateTime, ZoneId } from '@js-joda/core';
|
|
2
|
-
export declare class TimeUtil {
|
|
3
|
-
static readonly SECONDS_PER_DAY = 86400;
|
|
4
|
-
/**
|
|
5
|
-
* Returns an instant for a javascript date / iso date string.
|
|
6
|
-
* @param date
|
|
7
|
-
*/
|
|
8
|
-
static instant(date: Date | string): Instant;
|
|
9
|
-
static dateToLocalDate(date: Date): LocalDate;
|
|
10
|
-
static temporalAccessor(date: Date): TemporalAccessor;
|
|
11
|
-
static date(instant: Instant): Date;
|
|
12
|
-
static localDateToDate(localDate: LocalDate, zone?: ZoneId): Date;
|
|
13
|
-
static isFullDays(duration: Duration): boolean;
|
|
14
|
-
static isStartOfDay(date: ZonedDateTime): boolean;
|
|
15
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { Router, UrlTree } from '@angular/router';
|
|
2
|
-
import { Location } from '@angular/common';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* Provides advanced router navigation support for Angular.
|
|
6
|
-
*
|
|
7
|
-
* Provides the ability to build external & absolute urls which
|
|
8
|
-
* can be used in iframes or external navigation, such as opening
|
|
9
|
-
* new tabs.
|
|
10
|
-
*
|
|
11
|
-
*/
|
|
12
|
-
export declare class ElderRouterService {
|
|
13
|
-
private router;
|
|
14
|
-
private location;
|
|
15
|
-
/***************************************************************************
|
|
16
|
-
* *
|
|
17
|
-
* Constructor *
|
|
18
|
-
* *
|
|
19
|
-
**************************************************************************/
|
|
20
|
-
constructor(router: Router, location: Location);
|
|
21
|
-
/***************************************************************************
|
|
22
|
-
* *
|
|
23
|
-
* Public API *
|
|
24
|
-
* *
|
|
25
|
-
**************************************************************************/
|
|
26
|
-
/**
|
|
27
|
-
* Open the given url in a new window / tab.
|
|
28
|
-
* @param urlTree
|
|
29
|
-
* @param target
|
|
30
|
-
*/
|
|
31
|
-
openUrl(urlTree: UrlTree, target?: string): void;
|
|
32
|
-
serializeUrlAbsolute(urlTree: UrlTree): string;
|
|
33
|
-
serializeUrlExternal(urlTree: UrlTree): string;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderRouterService, never>;
|
|
35
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ElderRouterService>;
|
|
36
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
-
import { UrlQueryParams } from './url-query-params';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
/**
|
|
6
|
-
* Manages bidirectional binding of
|
|
7
|
-
* query params within the current URL fragment.
|
|
8
|
-
*/
|
|
9
|
-
export declare class ElderUrlFragmentParamsService {
|
|
10
|
-
private router;
|
|
11
|
-
private activatedRoute;
|
|
12
|
-
/***************************************************************************
|
|
13
|
-
* *
|
|
14
|
-
* Fields *
|
|
15
|
-
* *
|
|
16
|
-
**************************************************************************/
|
|
17
|
-
private readonly _log;
|
|
18
|
-
private readonly _queryParams$;
|
|
19
|
-
/***************************************************************************
|
|
20
|
-
* *
|
|
21
|
-
* Constructor *
|
|
22
|
-
* *
|
|
23
|
-
**************************************************************************/
|
|
24
|
-
constructor(router: Router, activatedRoute: ActivatedRoute);
|
|
25
|
-
/***************************************************************************
|
|
26
|
-
* *
|
|
27
|
-
* Properties *
|
|
28
|
-
* *
|
|
29
|
-
**************************************************************************/
|
|
30
|
-
get params$(): Observable<UrlQueryParams>;
|
|
31
|
-
get params(): UrlQueryParams;
|
|
32
|
-
/***************************************************************************
|
|
33
|
-
* *
|
|
34
|
-
* Public API *
|
|
35
|
-
* *
|
|
36
|
-
**************************************************************************/
|
|
37
|
-
/**
|
|
38
|
-
* Replaces all current params with the given ones.
|
|
39
|
-
*/
|
|
40
|
-
setParams(params: UrlQueryParams): void;
|
|
41
|
-
/**
|
|
42
|
-
* Updates the current params with the given ones, effectively
|
|
43
|
-
* resulting in a merge.
|
|
44
|
-
*/
|
|
45
|
-
updateParams(params: UrlQueryParams): void;
|
|
46
|
-
/**
|
|
47
|
-
* Clears all current params.
|
|
48
|
-
*/
|
|
49
|
-
clearParams(): void;
|
|
50
|
-
/***************************************************************************
|
|
51
|
-
* *
|
|
52
|
-
* Private Methods *
|
|
53
|
-
* *
|
|
54
|
-
**************************************************************************/
|
|
55
|
-
private setCurrentParams;
|
|
56
|
-
private updateModel;
|
|
57
|
-
private updateFragment;
|
|
58
|
-
private replaceUrlFragment;
|
|
59
|
-
private parseQueryParams;
|
|
60
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderUrlFragmentParamsService, never>;
|
|
61
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ElderUrlFragmentParamsService>;
|
|
62
|
-
}
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Utility class for handling query params.
|
|
3
|
-
*/
|
|
4
|
-
export declare class UrlQueryParams {
|
|
5
|
-
/***************************************************************************
|
|
6
|
-
* *
|
|
7
|
-
* Fields *
|
|
8
|
-
* *
|
|
9
|
-
**************************************************************************/
|
|
10
|
-
/**
|
|
11
|
-
* Internal data context holding all query params.
|
|
12
|
-
*/
|
|
13
|
-
private readonly _searchParams;
|
|
14
|
-
/***************************************************************************
|
|
15
|
-
* *
|
|
16
|
-
* Static *
|
|
17
|
-
* *
|
|
18
|
-
**************************************************************************/
|
|
19
|
-
/**
|
|
20
|
-
* Creates a new empty UrlQueryParams object.
|
|
21
|
-
*/
|
|
22
|
-
static empty(): UrlQueryParams;
|
|
23
|
-
/**
|
|
24
|
-
* Parses the given string into a UrlQueryParams object.
|
|
25
|
-
*/
|
|
26
|
-
static parse(queryParamsStr: string): UrlQueryParams;
|
|
27
|
-
/***************************************************************************
|
|
28
|
-
* *
|
|
29
|
-
* Constructor *
|
|
30
|
-
* *
|
|
31
|
-
**************************************************************************/
|
|
32
|
-
constructor(init?: string[][] | Record<string, string> | string | URLSearchParams | UrlQueryParams);
|
|
33
|
-
/***************************************************************************
|
|
34
|
-
* *
|
|
35
|
-
* Public API *
|
|
36
|
-
* *
|
|
37
|
-
**************************************************************************/
|
|
38
|
-
/**
|
|
39
|
-
* Appends a new query parameter with the given key / value,
|
|
40
|
-
* regardless if the same parameter is already present.
|
|
41
|
-
*/
|
|
42
|
-
append(key: string, value: string): this;
|
|
43
|
-
/**
|
|
44
|
-
* Appends each of the given parameters as new query parameter,
|
|
45
|
-
* regardless if the same parameter is already present.
|
|
46
|
-
*/
|
|
47
|
-
appendAll(params: Map<string, string>): this;
|
|
48
|
-
/**
|
|
49
|
-
* Removes the given query parameter if present.
|
|
50
|
-
*/
|
|
51
|
-
remove(key: string): this;
|
|
52
|
-
/**
|
|
53
|
-
* Removes all given query parameters if present.
|
|
54
|
-
*/
|
|
55
|
-
removeAll(keys: string[]): this;
|
|
56
|
-
/**
|
|
57
|
-
* Updates the given query parameter with the given new value.
|
|
58
|
-
* If multiple with the same key exists, they will be removed.
|
|
59
|
-
* If the key does not exist, the query param will be added.
|
|
60
|
-
*/
|
|
61
|
-
set(key: string, value: string): this;
|
|
62
|
-
/**
|
|
63
|
-
* Updates each parameter with the given value.
|
|
64
|
-
* Each entry will be added using the set(key, value) logic.
|
|
65
|
-
*/
|
|
66
|
-
setAll(params: Map<string, string>): this;
|
|
67
|
-
/**
|
|
68
|
-
* Returns true if a query parameter with the given key exists.
|
|
69
|
-
*/
|
|
70
|
-
has(key: string): boolean;
|
|
71
|
-
/**
|
|
72
|
-
* Returns the first value of the associated query param.
|
|
73
|
-
*/
|
|
74
|
-
get(key: string): string;
|
|
75
|
-
/**
|
|
76
|
-
* Returns all values of the associated query params.
|
|
77
|
-
*/
|
|
78
|
-
getAllOf(key: string): string[];
|
|
79
|
-
/**
|
|
80
|
-
* Returns a map with all key-value pairs.
|
|
81
|
-
*/
|
|
82
|
-
getAll(): Map<string, string>;
|
|
83
|
-
/**
|
|
84
|
-
* Returns true only if there are any query parameters present.
|
|
85
|
-
*/
|
|
86
|
-
hasParams(): boolean;
|
|
87
|
-
/**
|
|
88
|
-
* Return true only if there are no query parameters present.
|
|
89
|
-
*/
|
|
90
|
-
isEmpty(): boolean;
|
|
91
|
-
/**
|
|
92
|
-
* Returns a string containing all query parameters in URL conform fashion.
|
|
93
|
-
* (Returns an empty string if no query parameters have been set).
|
|
94
|
-
*/
|
|
95
|
-
toString(): string;
|
|
96
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export declare class Batcher {
|
|
2
|
-
/**
|
|
3
|
-
* Batches the given items into batches of the given size.
|
|
4
|
-
*/
|
|
5
|
-
static batch<V>(items: V[], batchSize: number): V[][];
|
|
6
|
-
/**
|
|
7
|
-
* Batches the given items into batches of the given size, and
|
|
8
|
-
* applies a mapping function to each batch.
|
|
9
|
-
* @param items
|
|
10
|
-
* @param batchSize
|
|
11
|
-
* @param mapper
|
|
12
|
-
*/
|
|
13
|
-
static batchMap<V, R>(items: V[], batchSize: number, mapper: (slice: V[]) => R): R[];
|
|
14
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export declare class CollectionUtil {
|
|
2
|
-
private static readonly logger;
|
|
3
|
-
static flatten<T>(groups: T[][]): T[];
|
|
4
|
-
/**
|
|
5
|
-
* Moves the given item down in the given array - if not already at the bottom
|
|
6
|
-
* @param items
|
|
7
|
-
* @param toMove
|
|
8
|
-
*/
|
|
9
|
-
static moveDown<T>(items: T[], toMove: T): boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Moves the given item up in the given array - if not already at the top
|
|
12
|
-
* @param items
|
|
13
|
-
* @param toMove
|
|
14
|
-
*/
|
|
15
|
-
static moveUp<T>(items: T[], toMove: T): boolean;
|
|
16
|
-
/**
|
|
17
|
-
* Groups the given items by the given field into a Map
|
|
18
|
-
*/
|
|
19
|
-
static groupByField<G, T>(items: T[], field: string): Map<G, T[]>;
|
|
20
|
-
/**
|
|
21
|
-
* Groups the given items, using the group key getter, into a Map
|
|
22
|
-
* @dynamic
|
|
23
|
-
*/
|
|
24
|
-
static groupByKey<G, T>(items: T[], keyGetter: ((item: T) => G)): Map<G, T[]>;
|
|
25
|
-
/**
|
|
26
|
-
* Compares two sets values deep.
|
|
27
|
-
* If both sets have the same items, they are considered equal.
|
|
28
|
-
*
|
|
29
|
-
* Warning: Duplicate elements are ignored.
|
|
30
|
-
* @param aSet
|
|
31
|
-
* @param bSet
|
|
32
|
-
*/
|
|
33
|
-
static equalSetDeep<T>(aSet: Set<T>, bSet: Set<T>): boolean;
|
|
34
|
-
static hasElements(list: any[]): boolean;
|
|
35
|
-
}
|