@odx/angular 5.7.4 → 6.0.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/CHANGELOG.md +17 -0
- package/animations/lib/expand.d.ts +44 -0
- package/animations/lib/fade.d.ts +70 -0
- package/animations/lib/slide.d.ts +21 -0
- package/animations/lib/wait-for-child-animations.d.ts +38 -0
- package/breakpoints/lib/breakpoints.config.d.ts +38 -0
- package/breakpoints/lib/breakpoints.service.d.ts +43 -0
- package/breakpoints/lib/directives/match-breakpoints.directive.d.ts +36 -0
- package/breakpoints/lib/helpers/configure-breakpoint.d.ts +19 -0
- package/cdk/a11y/lib/directives/interactive.directive.d.ts +32 -0
- package/cdk/a11y/lib/directives/list-focus-manager-option.directive.d.ts +22 -0
- package/cdk/a11y/lib/directives/list-focus-manager.directive.d.ts +17 -0
- package/cdk/active-indicator/lib/active-indicator.directive.d.ts +63 -0
- package/cdk/autocomplete-control/lib/autocomplete-control.d.ts +53 -0
- package/cdk/checkbox-control/lib/checkbox-control.directive.d.ts +3 -0
- package/cdk/connected-overlay/lib/connected-overlay.service.d.ts +44 -0
- package/cdk/connected-overlay/lib/helpers/compute-overlay-position.d.ts +10 -0
- package/cdk/connected-overlay/lib/models/connected-overlay-ref.d.ts +49 -0
- package/cdk/custom-form-control/lib/custom-form-control.d.ts +108 -0
- package/cdk/custom-form-control/lib/input-control.directive.d.ts +75 -0
- package/cdk/dynamic-view/lib/dynamic-view.directive.d.ts +25 -0
- package/cdk/dynamic-view/lib/dynamic-view.service.d.ts +30 -0
- package/cdk/dynamic-view/lib/helpers/create-projectable-nodes.d.ts +22 -0
- package/cdk/dynamic-view/lib/helpers/is-dynamic-text-content.d.ts +22 -0
- package/cdk/dynamic-view/lib/helpers/is-dynamic-view.d.ts +22 -0
- package/cdk/dynamic-view/lib/models/dynamic-component-ref.d.ts +39 -0
- package/cdk/dynamic-view/lib/models/dynamic-template-ref.d.ts +36 -0
- package/cdk/event-plugins/lib/event-plugins.config.d.ts +35 -0
- package/cdk/event-plugins/lib/models/event-plugin.d.ts +57 -0
- package/cdk/event-plugins/lib/plugins/debounce-event-plugin.d.ts +32 -0
- package/cdk/event-plugins/lib/plugins/defer-event-plugin.d.ts +24 -0
- package/cdk/expandable/lib/directives/expandable-container.directive.d.ts +41 -0
- package/cdk/expandable/lib/directives/expandable-item.directive.d.ts +47 -0
- package/cdk/option-control/lib/option-control.d.ts +47 -0
- package/cdk/radio-group-control/lib/radio-control.directive.d.ts +8 -0
- package/cdk/radio-group-control/lib/radio-group-control.directive.d.ts +11 -0
- package/components/accordion/lib/accordion.component.d.ts +8 -0
- package/components/accordion/lib/components/accordion-item/accordion-item.component.d.ts +37 -1
- package/components/accordion/lib/directives/accordion-item-title.d.ts +3 -0
- package/components/action-group/action-group.component.d.ts +6 -0
- package/components/area-header/area-header.component.d.ts +8 -0
- package/components/area-header/directives/area-header-content.directive.d.ts +3 -0
- package/components/area-header/directives/area-header-subtitle.directive.d.ts +3 -0
- package/components/autocomplete/lib/autocomplete.component.d.ts +17 -0
- package/components/avatar/lib/avatar.component.d.ts +8 -0
- package/components/badge/lib/badge.component.d.ts +10 -0
- package/components/badge/lib/badge.directive.d.ts +15 -0
- package/components/bar/lib/bar.component.d.ts +7 -0
- package/components/bar/lib/directives/bar-button.directive.d.ts +3 -0
- package/components/bar/lib/directives/bar-label.directive.d.ts +3 -0
- package/components/breadcrumbs/lib/breadcrumbs.component.d.ts +3 -0
- package/components/button/lib/button.component.d.ts +10 -0
- package/components/button-group/lib/button-group.component.d.ts +15 -0
- package/components/calendar/lib/calendar.component.d.ts +48 -0
- package/components/calendar/lib/calendar.config.d.ts +41 -93
- package/components/calendar/lib/calendar.service.d.ts +48 -0
- package/components/calendar/lib/components/calendar-header/calendar-header.component.d.ts +24 -0
- package/components/calendar/lib/components/calendar-month/calendar-month.component.d.ts +6 -0
- package/components/calendar/lib/components/calendar-year/calendar-year.component.d.ts +6 -0
- package/components/calendar/lib/components/calendar-years/calendar-years.component.d.ts +6 -0
- package/components/calendar/lib/daterange.service.d.ts +16 -0
- package/components/calendar/lib/directives/calendar-cell.directive.d.ts +37 -9
- package/components/calendar/lib/directives/calendar-view.directive.d.ts +41 -9
- package/components/calendar/lib/pipes/date-label.pipe.d.ts +12 -21
- package/components/calendar/lib/services/calendar-month.service.d.ts +1 -0
- package/components/calendar/lib/services/calendar-year.service.d.ts +1 -0
- package/components/calendar/lib/services/calendar-years.service.d.ts +1 -0
- package/components/calendar/lib/utils/check-cell-in-range.d.ts +1 -0
- package/components/calendar/lib/utils/check-identical-date.d.ts +1 -0
- package/components/calendar/lib/utils/get-A11y-label.d.ts +2 -2
- package/components/calendar/lib/utils/is-date-disabled.d.ts +1 -0
- package/components/calendar/lib/utils/parse-date.d.ts +1 -0
- package/components/calendar/lib/utils/validate-daterange.d.ts +1 -0
- package/components/calendar/lib/utils/validate-max-date.d.ts +1 -0
- package/components/calendar/lib/utils/validate-min-date.d.ts +1 -0
- package/components/calendar/lib/utils/validate-next-date-set.d.ts +1 -0
- package/components/calendar/lib/utils/validate-previous-date-set.d.ts +1 -0
- package/components/checkbox/lib/checkbox.component.d.ts +32 -0
- package/components/checkbox/lib/checkbox.validator.d.ts +23 -0
- package/components/chip/lib/components/chip/chip.component.d.ts +14 -0
- package/components/chip/lib/components/chip-list/chip-list.component.d.ts +3 -0
- package/components/chip/lib/components/chip-list-row/chip-list-row.component.d.ts +3 -0
- package/components/circular-progress/lib/circular-progress.component.d.ts +20 -0
- package/components/content-box/lib/content-box.component.d.ts +3 -0
- package/components/content-box/lib/directives/content-box-footer.directive.d.ts +3 -0
- package/components/content-box/lib/directives/content-box-header.directive.d.ts +3 -0
- package/components/datepicker/lib/datepicker.component.d.ts +47 -0
- package/components/datepicker/lib/datepicker.config.d.ts +19 -0
- package/components/datepicker/lib/directives/datepicker-input-control.directive.d.ts +30 -0
- package/components/datepicker/lib/utils/get-datepicker-input-pattern.d.ts +2 -0
- package/components/datepicker/lib/utils/get-datepicker-input-value-as-date.d.ts +1 -0
- package/components/daterangepicker/lib/daterangepicker.component.d.ts +89 -0
- package/components/daterangepicker/lib/daterangepicker.config.d.ts +19 -0
- package/components/daterangepicker/lib/directives/daterangepicker-input-control.directive.d.ts +30 -0
- package/components/daterangepicker/lib/range.validator.d.ts +15 -0
- package/components/daterangepicker/lib/required.validator.d.ts +6 -0
- package/components/daterangepicker/lib/utils/get-daterangepicker-input-pattern.d.ts +2 -0
- package/components/daterangepicker/lib/utils/get-daterangepicker-input-value-as-date.d.ts +1 -0
- package/components/dropdown/lib/dropdown.component.d.ts +16 -0
- package/components/dropdown/lib/dropdown.directive.d.ts +67 -0
- package/components/dropdown/lib/helpers/close-current-dropdown.d.ts +5 -0
- package/components/error-page/lib/error-page.component.d.ts +7 -0
- package/components/error-page/lib/error-page.config.d.ts +18 -0
- package/components/footer/lib/footer.component.d.ts +9 -6
- package/components/footer/lib/footer.config.d.ts +2 -0
- package/components/form-field/lib/components/form-field-info/form-field-info.component.d.ts +13 -0
- package/components/form-field/lib/components/form-group/form-group.component.d.ts +16 -0
- package/components/form-field/lib/directives/form-field-control.directive.d.ts +5 -0
- package/components/form-field/lib/directives/form-field-error.directive.d.ts +6 -0
- package/components/form-field/lib/directives/form-field-hint.directive.d.ts +3 -0
- package/components/form-field/lib/directives/form-field-label.directive.d.ts +3 -0
- package/components/form-field/lib/directives/form.directive.d.ts +13 -0
- package/components/form-field/lib/form-field.component.d.ts +20 -0
- package/components/form-field/lib/form-field.service.d.ts +42 -0
- package/components/form-field/lib/services/form-field-error.service.d.ts +24 -0
- package/components/header/lib/directives/header-avatar.directive.d.ts +4 -0
- package/components/header/lib/directives/header-title.directive.d.ts +3 -0
- package/components/header/lib/header.component.d.ts +3 -0
- package/components/header-navigation/lib/directives/header-navigation-link.directive.d.ts +3 -0
- package/components/header-navigation/lib/header-navigation.component.d.ts +6 -0
- package/components/icon/lib/helpers/unpack-icon-identifier.d.ts +14 -0
- package/components/icon/lib/icon.component.d.ts +24 -0
- package/components/icon/lib/icon.config.d.ts +26 -0
- package/components/inline-message/lib/inline-message.component.d.ts +13 -0
- package/components/link/link.directive.d.ts +3 -0
- package/components/list/lib/components/expandable-list-item/expandable-list-item.component.d.ts +6 -0
- package/components/list/lib/components/list-item/list-item.component.d.ts +17 -1
- package/components/list/lib/list.component.d.ts +5 -0
- package/components/loading-spinner/lib/loading-spinner.component.d.ts +8 -0
- package/components/loading-spinner/lib/loading-spinner.directive.d.ts +22 -0
- package/components/logo/logo.directive.d.ts +15 -0
- package/components/main-menu/lib/directives/main-menu-button.directive.d.ts +5 -1
- package/components/main-menu/lib/directives/main-menu-close.directive.d.ts +3 -0
- package/components/main-menu/lib/directives/main-menu-item.directive.d.ts +16 -0
- package/components/main-menu/lib/helpers/create-main-menu-links.d.ts +1 -0
- package/components/main-menu/lib/main-menu.component.d.ts +42 -0
- package/components/main-menu/lib/main-menu.config.d.ts +31 -0
- package/components/main-menu/lib/main-menu.service.d.ts +28 -0
- package/components/mainfilter-group/lib/mainfilter-group.component.d.ts +4 -0
- package/components/menu/lib/directives/menu-item.directive.d.ts +6 -0
- package/components/menu/lib/menu.component.d.ts +13 -1
- package/components/menu/lib/menu.directive.d.ts +31 -0
- package/components/modal/lib/components/basic-modal/basic-modal.component.d.ts +14 -0
- package/components/modal/lib/components/modal-footer/modal-footer.component.d.ts +3 -0
- package/components/modal/lib/components/modal-header/modal-header.component.d.ts +9 -0
- package/components/modal/lib/components/modal-hero/modal-hero.component.d.ts +21 -0
- package/components/modal/lib/directives/modal-close.directive.d.ts +25 -1
- package/components/modal/lib/directives/modal-content.directive.d.ts +3 -0
- package/components/modal/lib/directives/modal-dismiss.directive.d.ts +18 -1
- package/components/modal/lib/helpers/inject-modal-ref.d.ts +21 -0
- package/components/modal/lib/helpers/provide-modal-ref.d.ts +9 -0
- package/components/modal/lib/modal.component.d.ts +25 -0
- package/components/modal/lib/modal.config.d.ts +33 -0
- package/components/modal/lib/modal.directive.d.ts +29 -0
- package/components/modal/lib/modal.service.d.ts +54 -0
- package/components/modal/lib/models/modal-ref.d.ts +34 -0
- package/components/navigation-back/lib/navigation-back.component.d.ts +3 -0
- package/components/notification/lib/components/notification-center/notification-center.component.d.ts +0 -2
- package/components/notification/lib/directives/notification-center.directive.d.ts +18 -4
- package/components/notification/lib/helpers/get-notifications-by-tag.d.ts +1 -0
- package/components/notification/lib/helpers/sort-notifications.d.ts +1 -0
- package/components/notification/lib/helpers/to-notification-collection.d.ts +1 -0
- package/components/notification/lib/models/notification-feature.d.ts +15 -0
- package/components/notification/lib/notification.config.d.ts +54 -0
- package/components/notification/lib/notification.logger.d.ts +1 -0
- package/components/notification/lib/notification.service.d.ts +55 -0
- package/components/notification/lib/notification.tokens.d.ts +3 -0
- package/components/notification/lib/services/notification-center.service.d.ts +9 -0
- package/components/paginator/lib/paginator.component.d.ts +89 -0
- package/components/paginator/lib/paginator.config.d.ts +24 -2
- package/components/progress/lib/progress.component.d.ts +15 -0
- package/components/radio-group/lib/radio-group.component.d.ts +11 -0
- package/components/rail-navigation/lib/components/rail-navigation-item/rail-navigation-item.component.d.ts +19 -0
- package/components/rail-navigation/lib/rail-navigation.component.d.ts +26 -0
- package/components/rich-list/lib/components/rich-list-content/rich-list-content.component.d.ts +4 -0
- package/components/rich-list/lib/components/rich-list-header/rich-list-header.component.d.ts +4 -0
- package/components/rich-list/lib/components/rich-list-item/rich-list-item.component.d.ts +9 -1
- package/components/rich-list/lib/rich-list.component.d.ts +9 -2
- package/components/select/lib/components/select-option/select-option.component.d.ts +39 -2
- package/components/select/lib/directives/select-input-control.directive.d.ts +11 -0
- package/components/select/lib/pipes/select-search-filter.pipe.d.ts +10 -0
- package/components/select/lib/select.component.d.ts +59 -0
- package/components/slider/lib/slider.directive.d.ts +19 -0
- package/components/spinbox/lib/spinbox.component.d.ts +16 -0
- package/components/switch/lib/switch.component.d.ts +10 -0
- package/components/switch/lib/switch.validator.d.ts +12 -0
- package/components/tab-bar/lib/components/tab-bar-item/tab-bar-item.component.d.ts +28 -0
- package/components/tab-bar/lib/tab-bar.component.d.ts +69 -0
- package/components/table/lib/components/check-cell/check-cell.component.d.ts +18 -0
- package/components/table/lib/components/header-title/header-title.component.d.ts +33 -1
- package/components/table/lib/directives/table-cell.directive.d.ts +4 -0
- package/components/table/lib/directives/table-row.directive.d.ts +4 -0
- package/components/table/lib/table.component.d.ts +36 -0
- package/components/timepicker/lib/timepicker.component.d.ts +11 -2
- package/components/timepicker/lib/utils/generate-time-stamps.d.ts +2 -1
- package/components/timepicker/lib/utils/ngx-mask-helper.d.ts +2 -2
- package/components/toast/lib/toast.config.d.ts +26 -0
- package/components/toast/lib/toast.service.d.ts +35 -0
- package/components/toggle-button-group/lib/components/toggle-button/toggle-button.component.d.ts +11 -0
- package/components/toggle-button-group/lib/toggle-button-group.component.d.ts +12 -0
- package/components/tooltip/lib/tooltip.component.d.ts +20 -0
- package/components/tooltip/lib/tooltip.directive.d.ts +35 -0
- package/components/wizard/lib/components/wizard-step/wizard-step.component.d.ts +34 -0
- package/components/wizard/lib/wizard.component.d.ts +20 -0
- package/esm2022/animations/lib/expand.mjs +45 -1
- package/esm2022/animations/lib/fade.mjs +71 -1
- package/esm2022/animations/lib/slide.mjs +22 -1
- package/esm2022/animations/lib/wait-for-child-animations.mjs +39 -1
- package/esm2022/breakpoints/lib/breakpoints.config.mjs +39 -1
- package/esm2022/breakpoints/lib/breakpoints.service.mjs +44 -1
- package/esm2022/breakpoints/lib/directives/match-breakpoints.directive.mjs +37 -1
- package/esm2022/breakpoints/lib/helpers/configure-breakpoint.mjs +20 -1
- package/esm2022/cdk/a11y/lib/directives/interactive.directive.mjs +33 -1
- package/esm2022/cdk/a11y/lib/directives/list-focus-manager-option.directive.mjs +23 -1
- package/esm2022/cdk/a11y/lib/directives/list-focus-manager.directive.mjs +18 -1
- package/esm2022/cdk/active-indicator/lib/active-indicator.directive.mjs +64 -1
- package/esm2022/cdk/autocomplete-control/lib/autocomplete-control.mjs +39 -1
- package/esm2022/cdk/checkbox-control/lib/checkbox-control.directive.mjs +4 -1
- package/esm2022/cdk/connected-overlay/lib/connected-overlay.service.mjs +45 -1
- package/esm2022/cdk/connected-overlay/lib/helpers/compute-overlay-position.mjs +11 -1
- package/esm2022/cdk/connected-overlay/lib/models/connected-overlay-ref.mjs +50 -1
- package/esm2022/cdk/custom-form-control/lib/custom-form-control.mjs +109 -3
- package/esm2022/cdk/custom-form-control/lib/input-control.directive.mjs +76 -1
- package/esm2022/cdk/dynamic-view/lib/dynamic-view.directive.mjs +18 -1
- package/esm2022/cdk/dynamic-view/lib/dynamic-view.service.mjs +31 -1
- package/esm2022/cdk/dynamic-view/lib/helpers/create-projectable-nodes.mjs +23 -1
- package/esm2022/cdk/dynamic-view/lib/helpers/is-dynamic-text-content.mjs +23 -1
- package/esm2022/cdk/dynamic-view/lib/helpers/is-dynamic-view.mjs +23 -1
- package/esm2022/cdk/dynamic-view/lib/models/dynamic-component-ref.mjs +40 -1
- package/esm2022/cdk/dynamic-view/lib/models/dynamic-template-ref.mjs +37 -1
- package/esm2022/cdk/event-plugins/lib/event-plugins.config.mjs +36 -1
- package/esm2022/cdk/event-plugins/lib/models/event-plugin.mjs +45 -1
- package/esm2022/cdk/event-plugins/lib/plugins/debounce-event-plugin.mjs +33 -1
- package/esm2022/cdk/event-plugins/lib/plugins/defer-event-plugin.mjs +25 -1
- package/esm2022/cdk/expandable/lib/directives/expandable-container.directive.mjs +42 -1
- package/esm2022/cdk/expandable/lib/directives/expandable-item.directive.mjs +48 -1
- package/esm2022/cdk/option-control/lib/option-control.mjs +48 -1
- package/esm2022/cdk/radio-group-control/lib/radio-control.directive.mjs +9 -1
- package/esm2022/cdk/radio-group-control/lib/radio-group-control.directive.mjs +12 -1
- package/esm2022/components/accordion/lib/accordion.component.mjs +9 -1
- package/esm2022/components/accordion/lib/components/accordion-item/accordion-item.component.mjs +31 -1
- package/esm2022/components/accordion/lib/directives/accordion-item-title.mjs +4 -1
- package/esm2022/components/action-group/action-group.component.mjs +7 -1
- package/esm2022/components/area-header/area-header.component.mjs +9 -1
- package/esm2022/components/area-header/directives/area-header-content.directive.mjs +4 -1
- package/esm2022/components/area-header/directives/area-header-subtitle.directive.mjs +4 -1
- package/esm2022/components/autocomplete/lib/autocomplete.component.mjs +18 -1
- package/esm2022/components/avatar/lib/avatar.component.mjs +9 -1
- package/esm2022/components/badge/lib/badge.component.mjs +11 -1
- package/esm2022/components/badge/lib/badge.directive.mjs +16 -1
- package/esm2022/components/bar/lib/bar.component.mjs +8 -1
- package/esm2022/components/bar/lib/directives/bar-button.directive.mjs +4 -1
- package/esm2022/components/bar/lib/directives/bar-label.directive.mjs +4 -1
- package/esm2022/components/breadcrumbs/lib/breadcrumbs.component.mjs +4 -1
- package/esm2022/components/button/lib/button.component.mjs +11 -1
- package/esm2022/components/button-group/lib/button-group.component.mjs +16 -1
- package/esm2022/components/calendar/lib/calendar.component.mjs +35 -1
- package/esm2022/components/calendar/lib/calendar.config.mjs +18 -12
- package/esm2022/components/calendar/lib/calendar.service.mjs +49 -1
- package/esm2022/components/calendar/lib/components/calendar-header/calendar-header.component.mjs +19 -1
- package/esm2022/components/calendar/lib/components/calendar-month/calendar-month.component.mjs +9 -3
- package/esm2022/components/calendar/lib/components/calendar-year/calendar-year.component.mjs +9 -3
- package/esm2022/components/calendar/lib/components/calendar-years/calendar-years.component.mjs +9 -3
- package/esm2022/components/calendar/lib/daterange.service.mjs +17 -1
- package/esm2022/components/calendar/lib/directives/calendar-cell.directive.mjs +27 -2
- package/esm2022/components/calendar/lib/directives/calendar-view.directive.mjs +39 -1
- package/esm2022/components/calendar/lib/pipes/date-label.pipe.mjs +27 -9
- package/esm2022/components/calendar/lib/services/calendar-month.service.mjs +2 -1
- package/esm2022/components/calendar/lib/services/calendar-year.service.mjs +2 -1
- package/esm2022/components/calendar/lib/services/calendar-years.service.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/check-cell-in-range.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/check-identical-date.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/get-A11y-label.mjs +11 -8
- package/esm2022/components/calendar/lib/utils/is-date-disabled.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/parse-date.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/validate-daterange.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/validate-max-date.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/validate-min-date.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/validate-next-date-set.mjs +2 -1
- package/esm2022/components/calendar/lib/utils/validate-previous-date-set.mjs +2 -1
- package/esm2022/components/checkbox/lib/checkbox.component.mjs +33 -1
- package/esm2022/components/checkbox/lib/checkbox.validator.mjs +24 -1
- package/esm2022/components/chip/lib/components/chip/chip.component.mjs +15 -1
- package/esm2022/components/chip/lib/components/chip-list/chip-list.component.mjs +4 -1
- package/esm2022/components/chip/lib/components/chip-list-row/chip-list-row.component.mjs +4 -1
- package/esm2022/components/circular-progress/lib/circular-progress.component.mjs +21 -1
- package/esm2022/components/content-box/lib/content-box.component.mjs +4 -1
- package/esm2022/components/content-box/lib/directives/content-box-footer.directive.mjs +4 -1
- package/esm2022/components/content-box/lib/directives/content-box-header.directive.mjs +4 -1
- package/esm2022/components/datepicker/lib/datepicker.component.mjs +33 -1
- package/esm2022/components/datepicker/lib/datepicker.config.mjs +20 -1
- package/esm2022/components/datepicker/lib/directives/datepicker-input-control.directive.mjs +31 -1
- package/esm2022/components/datepicker/lib/utils/get-datepicker-input-pattern.mjs +3 -1
- package/esm2022/components/datepicker/lib/utils/get-datepicker-input-value-as-date.mjs +2 -1
- package/esm2022/components/daterangepicker/lib/daterangepicker.component.mjs +65 -1
- package/esm2022/components/daterangepicker/lib/daterangepicker.config.mjs +20 -1
- package/esm2022/components/daterangepicker/lib/directives/daterangepicker-input-control.directive.mjs +31 -1
- package/esm2022/components/daterangepicker/lib/range.validator.mjs +16 -1
- package/esm2022/components/daterangepicker/lib/required.validator.mjs +15 -1
- package/esm2022/components/daterangepicker/lib/utils/get-daterangepicker-input-pattern.mjs +3 -1
- package/esm2022/components/daterangepicker/lib/utils/get-daterangepicker-input-value-as-date.mjs +2 -1
- package/esm2022/components/dropdown/lib/dropdown.component.mjs +8 -1
- package/esm2022/components/dropdown/lib/dropdown.directive.mjs +55 -1
- package/esm2022/components/dropdown/lib/helpers/close-current-dropdown.mjs +6 -1
- package/esm2022/components/error-page/lib/error-page.component.mjs +8 -1
- package/esm2022/components/error-page/lib/error-page.config.mjs +9 -1
- package/esm2022/components/footer/lib/footer.component.mjs +10 -7
- package/esm2022/components/footer/lib/footer.config.mjs +3 -1
- package/esm2022/components/form-field/lib/components/form-field-info/form-field-info.component.mjs +14 -1
- package/esm2022/components/form-field/lib/components/form-group/form-group.component.mjs +13 -1
- package/esm2022/components/form-field/lib/directives/form-field-control.directive.mjs +6 -1
- package/esm2022/components/form-field/lib/directives/form-field-error.directive.mjs +4 -1
- package/esm2022/components/form-field/lib/directives/form-field-hint.directive.mjs +4 -1
- package/esm2022/components/form-field/lib/directives/form-field-label.directive.mjs +4 -1
- package/esm2022/components/form-field/lib/directives/form.directive.mjs +14 -1
- package/esm2022/components/form-field/lib/form-field.component.mjs +14 -1
- package/esm2022/components/form-field/lib/form-field.service.mjs +43 -1
- package/esm2022/components/form-field/lib/services/form-field-error.service.mjs +25 -1
- package/esm2022/components/header/lib/directives/header-avatar.directive.mjs +5 -1
- package/esm2022/components/header/lib/directives/header-title.directive.mjs +4 -1
- package/esm2022/components/header/lib/header.component.mjs +4 -1
- package/esm2022/components/header-navigation/lib/directives/header-navigation-link.directive.mjs +4 -1
- package/esm2022/components/header-navigation/lib/header-navigation.component.mjs +4 -1
- package/esm2022/components/icon/lib/helpers/unpack-icon-identifier.mjs +15 -1
- package/esm2022/components/icon/lib/icon.component.mjs +25 -1
- package/esm2022/components/icon/lib/icon.config.mjs +20 -1
- package/esm2022/components/inline-message/lib/inline-message.component.mjs +14 -1
- package/esm2022/components/link/link.directive.mjs +4 -1
- package/esm2022/components/list/lib/components/expandable-list-item/expandable-list-item.component.mjs +7 -1
- package/esm2022/components/list/lib/components/list-item/list-item.component.mjs +18 -2
- package/esm2022/components/list/lib/list.component.mjs +6 -1
- package/esm2022/components/loading-spinner/lib/loading-spinner.component.mjs +10 -2
- package/esm2022/components/loading-spinner/lib/loading-spinner.directive.mjs +23 -1
- package/esm2022/components/logo/logo.directive.mjs +16 -1
- package/esm2022/components/main-menu/lib/directives/main-menu-button.directive.mjs +5 -1
- package/esm2022/components/main-menu/lib/directives/main-menu-close.directive.mjs +4 -1
- package/esm2022/components/main-menu/lib/directives/main-menu-item.directive.mjs +17 -1
- package/esm2022/components/main-menu/lib/helpers/create-main-menu-links.mjs +2 -1
- package/esm2022/components/main-menu/lib/main-menu.component.mjs +37 -1
- package/esm2022/components/main-menu/lib/main-menu.config.mjs +32 -1
- package/esm2022/components/main-menu/lib/main-menu.service.mjs +29 -1
- package/esm2022/components/mainfilter-group/lib/mainfilter-group.component.mjs +5 -1
- package/esm2022/components/menu/lib/directives/menu-item.directive.mjs +7 -1
- package/esm2022/components/menu/lib/menu.component.mjs +13 -1
- package/esm2022/components/menu/lib/menu.directive.mjs +19 -1
- package/esm2022/components/modal/lib/components/basic-modal/basic-modal.component.mjs +15 -1
- package/esm2022/components/modal/lib/components/modal-footer/modal-footer.component.mjs +4 -1
- package/esm2022/components/modal/lib/components/modal-header/modal-header.component.mjs +4 -1
- package/esm2022/components/modal/lib/components/modal-hero/modal-hero.component.mjs +12 -1
- package/esm2022/components/modal/lib/directives/modal-close.directive.mjs +25 -1
- package/esm2022/components/modal/lib/directives/modal-content.directive.mjs +4 -1
- package/esm2022/components/modal/lib/directives/modal-dismiss.directive.mjs +18 -1
- package/esm2022/components/modal/lib/helpers/inject-modal-ref.mjs +22 -1
- package/esm2022/components/modal/lib/helpers/provide-modal-ref.mjs +10 -1
- package/esm2022/components/modal/lib/modal.component.mjs +21 -2
- package/esm2022/components/modal/lib/modal.config.mjs +34 -1
- package/esm2022/components/modal/lib/modal.directive.mjs +25 -1
- package/esm2022/components/modal/lib/modal.service.mjs +39 -1
- package/esm2022/components/modal/lib/models/modal-ref.mjs +34 -1
- package/esm2022/components/navigation-back/lib/navigation-back.component.mjs +4 -1
- package/esm2022/components/notification/lib/components/notification-center/notification-center.component.mjs +1 -3
- package/esm2022/components/notification/lib/directives/notification-center.directive.mjs +19 -5
- package/esm2022/components/notification/lib/helpers/get-notifications-by-tag.mjs +2 -1
- package/esm2022/components/notification/lib/helpers/sort-notifications.mjs +2 -1
- package/esm2022/components/notification/lib/helpers/to-notification-collection.mjs +2 -1
- package/esm2022/components/notification/lib/models/notification-feature.mjs +16 -1
- package/esm2022/components/notification/lib/notification.config.mjs +45 -1
- package/esm2022/components/notification/lib/notification.logger.mjs +2 -1
- package/esm2022/components/notification/lib/notification.service.mjs +56 -1
- package/esm2022/components/notification/lib/notification.tokens.mjs +4 -1
- package/esm2022/components/notification/lib/services/notification-center.service.mjs +10 -1
- package/esm2022/components/paginator/lib/paginator.component.mjs +90 -1
- package/esm2022/components/paginator/lib/paginator.config.mjs +29 -1
- package/esm2022/components/progress/lib/progress.component.mjs +16 -1
- package/esm2022/components/radio-group/lib/radio-group.component.mjs +13 -2
- package/esm2022/components/rail-navigation/lib/components/rail-navigation-item/rail-navigation-item.component.mjs +17 -1
- package/esm2022/components/rail-navigation/lib/rail-navigation.component.mjs +27 -1
- package/esm2022/components/rich-list/lib/components/rich-list-content/rich-list-content.component.mjs +5 -1
- package/esm2022/components/rich-list/lib/components/rich-list-header/rich-list-header.component.mjs +5 -1
- package/esm2022/components/rich-list/lib/components/rich-list-item/rich-list-item.component.mjs +10 -2
- package/esm2022/components/rich-list/lib/rich-list.component.mjs +10 -3
- package/esm2022/components/select/lib/components/select-option/select-option.component.mjs +47 -6
- package/esm2022/components/select/lib/directives/select-input-control.directive.mjs +12 -2
- package/esm2022/components/select/lib/pipes/select-search-filter.pipe.mjs +11 -1
- package/esm2022/components/select/lib/select.component.mjs +56 -2
- package/esm2022/components/slider/lib/slider.directive.mjs +20 -1
- package/esm2022/components/spinbox/lib/spinbox.component.mjs +17 -1
- package/esm2022/components/switch/lib/switch.component.mjs +11 -1
- package/esm2022/components/switch/lib/switch.validator.mjs +13 -1
- package/esm2022/components/tab-bar/lib/components/tab-bar-item/tab-bar-item.component.mjs +29 -1
- package/esm2022/components/tab-bar/lib/tab-bar.component.mjs +70 -1
- package/esm2022/components/table/lib/components/check-cell/check-cell.component.mjs +19 -1
- package/esm2022/components/table/lib/components/header-title/header-title.component.mjs +30 -2
- package/esm2022/components/table/lib/directives/table-cell.directive.mjs +5 -1
- package/esm2022/components/table/lib/directives/table-row.directive.mjs +5 -1
- package/esm2022/components/table/lib/table.component.mjs +30 -1
- package/esm2022/components/timepicker/lib/timepicker.component.mjs +15 -6
- package/esm2022/components/timepicker/lib/utils/generate-time-stamps.mjs +5 -3
- package/esm2022/components/timepicker/lib/utils/ngx-mask-helper.mjs +3 -3
- package/esm2022/components/toast/lib/toast.config.mjs +27 -1
- package/esm2022/components/toast/lib/toast.service.mjs +36 -1
- package/esm2022/components/toggle-button-group/lib/components/toggle-button/toggle-button.component.mjs +12 -1
- package/esm2022/components/toggle-button-group/lib/toggle-button-group.component.mjs +14 -2
- package/esm2022/components/tooltip/lib/tooltip.component.mjs +18 -1
- package/esm2022/components/tooltip/lib/tooltip.directive.mjs +36 -1
- package/esm2022/components/wizard/lib/components/wizard-step/wizard-step.component.mjs +35 -1
- package/esm2022/components/wizard/lib/wizard.component.mjs +21 -1
- package/esm2022/internal/lib/helpers/fast-equals.mjs +3 -0
- package/esm2022/internal/lib/helpers/index.mjs +2 -1
- package/esm2022/internal/translate/lib/translate.config.mjs +32 -1
- package/esm2022/internal/translate/lib/translate.service.mjs +30 -1
- package/esm2022/lib/controllers/controller.mjs +26 -1
- package/esm2022/lib/controllers/disabled.controller.mjs +60 -1
- package/esm2022/lib/controllers/readonly.controller.mjs +57 -1
- package/esm2022/lib/directives/click-outside.directive.mjs +30 -1
- package/esm2022/lib/directives/delegate-focus.directive.mjs +15 -1
- package/esm2022/lib/services/window-ref.mjs +67 -1
- package/esm2022/lib/tokens/identity-matcher.mjs +25 -1
- package/esm2022/lib/tokens/string-search-handler.mjs +25 -1
- package/esm2022/lib/tokens/stringify.mjs +26 -1
- package/esm2022/localization/lib/features/with-http-language-header.mjs +54 -1
- package/esm2022/localization/lib/features/with-http-language-query-param.mjs +52 -1
- package/esm2022/localization/lib/loaders/browser-language-loader.mjs +33 -1
- package/esm2022/localization/lib/localization.config.mjs +73 -5
- package/esm2022/localization/lib/localization.logger.mjs +3 -0
- package/esm2022/localization/lib/localization.service.mjs +59 -29
- package/esm2022/rxjs/index.mjs +2 -2
- package/esm2022/rxjs/lib/delay-until.mjs +23 -1
- package/esm2022/rxjs/lib/from-element-mutation.mjs +22 -1
- package/esm2022/rxjs/lib/from-element-resize.mjs +25 -1
- package/esm2022/rxjs/lib/from-events.mjs +25 -1
- package/esm2022/rxjs/lib/from-query-list.mjs +24 -0
- package/esm2022/sdk/lib/application-environment.mjs +51 -1
- package/esm2022/theming/lib/helpers/prefers-dark-theme.mjs +19 -1
- package/esm2022/theming/lib/helpers/resolve-theme.mjs +26 -1
- package/esm2022/theming/lib/helpers/theme-storage.mjs +43 -1
- package/esm2022/theming/lib/theming.config.mjs +34 -1
- package/esm2022/theming/lib/theming.service.mjs +32 -1
- package/esm2022/utils/lib/decorators/pure.mjs +52 -1
- package/esm2022/utils/lib/helpers/angular.mjs +37 -1
- package/esm2022/utils/lib/helpers/array.mjs +5 -1
- package/esm2022/utils/lib/helpers/build-url.mjs +21 -1
- package/esm2022/utils/lib/helpers/build-website-url.mjs +3 -2
- package/esm2022/utils/lib/helpers/cache-storage-client.mjs +52 -1
- package/esm2022/utils/lib/helpers/coercion.mjs +18 -1
- package/esm2022/utils/lib/helpers/debounce.mjs +28 -1
- package/esm2022/utils/lib/helpers/defer-fn.mjs +21 -1
- package/esm2022/utils/lib/helpers/dom.mjs +71 -1
- package/esm2022/utils/lib/helpers/get-axis.mjs +21 -1
- package/esm2022/utils/lib/helpers/get-language-code.mjs +18 -1
- package/esm2022/utils/lib/helpers/get-opposite-side.mjs +22 -1
- package/esm2022/utils/lib/helpers/get-side.mjs +18 -1
- package/esm2022/utils/lib/helpers/get-unique-id.mjs +34 -1
- package/esm2022/utils/lib/helpers/match-url.mjs +41 -1
- package/esm2022/utils/lib/helpers/ng-changes.mjs +30 -1
- package/esm2022/utils/lib/helpers/provide-config.mjs +57 -1
- package/esm2022/utils/lib/helpers/queue.mjs +84 -1
- package/esm2022/utils/lib/helpers/type-guards.mjs +58 -1
- package/esm2022/utils/lib/helpers/until-destroyed.mjs +39 -1
- package/fesm2022/odx-angular-animations.mjs +173 -0
- package/fesm2022/odx-angular-animations.mjs.map +1 -1
- package/fesm2022/odx-angular-breakpoints.mjs +136 -0
- package/fesm2022/odx-angular-breakpoints.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-a11y.mjs +71 -0
- package/fesm2022/odx-angular-cdk-a11y.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-active-indicator.mjs +63 -0
- package/fesm2022/odx-angular-cdk-active-indicator.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-autocomplete-control.mjs +38 -0
- package/fesm2022/odx-angular-cdk-autocomplete-control.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-checkbox-control.mjs +3 -0
- package/fesm2022/odx-angular-cdk-checkbox-control.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-connected-overlay.mjs +103 -0
- package/fesm2022/odx-angular-cdk-connected-overlay.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-custom-form-control.mjs +183 -2
- package/fesm2022/odx-angular-cdk-custom-form-control.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-dynamic-view.mjs +188 -0
- package/fesm2022/odx-angular-cdk-dynamic-view.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-event-plugins.mjs +135 -0
- package/fesm2022/odx-angular-cdk-event-plugins.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-expandable.mjs +88 -0
- package/fesm2022/odx-angular-cdk-expandable.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-option-control.mjs +47 -0
- package/fesm2022/odx-angular-cdk-option-control.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-radio-group-control.mjs +19 -0
- package/fesm2022/odx-angular-cdk-radio-group-control.mjs.map +1 -1
- package/fesm2022/odx-angular-components-accordion.mjs +41 -0
- package/fesm2022/odx-angular-components-accordion.mjs.map +1 -1
- package/fesm2022/odx-angular-components-action-group.mjs +6 -0
- package/fesm2022/odx-angular-components-action-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-area-header.mjs +14 -0
- package/fesm2022/odx-angular-components-area-header.mjs.map +1 -1
- package/fesm2022/odx-angular-components-autocomplete.mjs +17 -0
- package/fesm2022/odx-angular-components-autocomplete.mjs.map +1 -1
- package/fesm2022/odx-angular-components-avatar.mjs +8 -0
- package/fesm2022/odx-angular-components-avatar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-badge.mjs +25 -0
- package/fesm2022/odx-angular-components-badge.mjs.map +1 -1
- package/fesm2022/odx-angular-components-bar.mjs +13 -0
- package/fesm2022/odx-angular-components-bar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-breadcrumbs.mjs +3 -0
- package/fesm2022/odx-angular-components-breadcrumbs.mjs.map +1 -1
- package/fesm2022/odx-angular-components-button-group.mjs +15 -0
- package/fesm2022/odx-angular-components-button-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-button.mjs +10 -0
- package/fesm2022/odx-angular-components-button.mjs.map +1 -1
- package/fesm2022/odx-angular-components-calendar.mjs +270 -33
- package/fesm2022/odx-angular-components-calendar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-checkbox.mjs +55 -0
- package/fesm2022/odx-angular-components-checkbox.mjs.map +1 -1
- package/fesm2022/odx-angular-components-chip.mjs +20 -0
- package/fesm2022/odx-angular-components-chip.mjs.map +1 -1
- package/fesm2022/odx-angular-components-circular-progress.mjs +20 -0
- package/fesm2022/odx-angular-components-circular-progress.mjs.map +1 -1
- package/fesm2022/odx-angular-components-content-box.mjs +9 -0
- package/fesm2022/odx-angular-components-content-box.mjs.map +1 -1
- package/fesm2022/odx-angular-components-datepicker.mjs +84 -0
- package/fesm2022/odx-angular-components-datepicker.mjs.map +1 -1
- package/fesm2022/odx-angular-components-daterangepicker.mjs +145 -0
- package/fesm2022/odx-angular-components-daterangepicker.mjs.map +1 -1
- package/fesm2022/odx-angular-components-dropdown.mjs +66 -0
- package/fesm2022/odx-angular-components-dropdown.mjs.map +1 -1
- package/fesm2022/odx-angular-components-error-page.mjs +15 -0
- package/fesm2022/odx-angular-components-error-page.mjs.map +1 -1
- package/fesm2022/odx-angular-components-footer.mjs +11 -6
- package/fesm2022/odx-angular-components-footer.mjs.map +1 -1
- package/fesm2022/odx-angular-components-form-field.mjs +131 -0
- package/fesm2022/odx-angular-components-form-field.mjs.map +1 -1
- package/fesm2022/odx-angular-components-header-navigation.mjs +6 -0
- package/fesm2022/odx-angular-components-header-navigation.mjs.map +1 -1
- package/fesm2022/odx-angular-components-header.mjs +10 -0
- package/fesm2022/odx-angular-components-header.mjs.map +1 -1
- package/fesm2022/odx-angular-components-icon.mjs +57 -0
- package/fesm2022/odx-angular-components-icon.mjs.map +1 -1
- package/fesm2022/odx-angular-components-inline-message.mjs +13 -0
- package/fesm2022/odx-angular-components-inline-message.mjs.map +1 -1
- package/fesm2022/odx-angular-components-link.mjs +3 -0
- package/fesm2022/odx-angular-components-link.mjs.map +1 -1
- package/fesm2022/odx-angular-components-list.mjs +28 -1
- package/fesm2022/odx-angular-components-list.mjs.map +1 -1
- package/fesm2022/odx-angular-components-loading-spinner.mjs +30 -0
- package/fesm2022/odx-angular-components-loading-spinner.mjs.map +1 -1
- package/fesm2022/odx-angular-components-logo.mjs +15 -0
- package/fesm2022/odx-angular-components-logo.mjs.map +1 -1
- package/fesm2022/odx-angular-components-main-menu.mjs +119 -0
- package/fesm2022/odx-angular-components-main-menu.mjs.map +1 -1
- package/fesm2022/odx-angular-components-mainfilter-group.mjs +4 -0
- package/fesm2022/odx-angular-components-mainfilter-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-menu.mjs +36 -0
- package/fesm2022/odx-angular-components-menu.mjs.map +1 -1
- package/fesm2022/odx-angular-components-modal.mjs +252 -0
- package/fesm2022/odx-angular-components-modal.mjs.map +1 -1
- package/fesm2022/odx-angular-components-navigation-back.mjs +3 -0
- package/fesm2022/odx-angular-components-navigation-back.mjs.map +1 -1
- package/fesm2022/odx-angular-components-notification.mjs +148 -6
- package/fesm2022/odx-angular-components-notification.mjs.map +1 -1
- package/fesm2022/odx-angular-components-paginator.mjs +117 -0
- package/fesm2022/odx-angular-components-paginator.mjs.map +1 -1
- package/fesm2022/odx-angular-components-progress.mjs +15 -0
- package/fesm2022/odx-angular-components-progress.mjs.map +1 -1
- package/fesm2022/odx-angular-components-radio-group.mjs +11 -0
- package/fesm2022/odx-angular-components-radio-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-rail-navigation.mjs +42 -0
- package/fesm2022/odx-angular-components-rail-navigation.mjs.map +1 -1
- package/fesm2022/odx-angular-components-rich-list.mjs +26 -3
- package/fesm2022/odx-angular-components-rich-list.mjs.map +1 -1
- package/fesm2022/odx-angular-components-select.mjs +122 -7
- package/fesm2022/odx-angular-components-select.mjs.map +1 -1
- package/fesm2022/odx-angular-components-slider.mjs +19 -0
- package/fesm2022/odx-angular-components-slider.mjs.map +1 -1
- package/fesm2022/odx-angular-components-spinbox.mjs +16 -0
- package/fesm2022/odx-angular-components-spinbox.mjs.map +1 -1
- package/fesm2022/odx-angular-components-switch.mjs +22 -0
- package/fesm2022/odx-angular-components-switch.mjs.map +1 -1
- package/fesm2022/odx-angular-components-tab-bar.mjs +97 -0
- package/fesm2022/odx-angular-components-tab-bar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-table.mjs +84 -1
- package/fesm2022/odx-angular-components-table.mjs.map +1 -1
- package/fesm2022/odx-angular-components-timepicker.mjs +20 -9
- package/fesm2022/odx-angular-components-timepicker.mjs.map +1 -1
- package/fesm2022/odx-angular-components-toast.mjs +61 -0
- package/fesm2022/odx-angular-components-toast.mjs.map +1 -1
- package/fesm2022/odx-angular-components-toggle-button-group.mjs +23 -0
- package/fesm2022/odx-angular-components-toggle-button-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-tooltip.mjs +52 -0
- package/fesm2022/odx-angular-components-tooltip.mjs.map +1 -1
- package/fesm2022/odx-angular-components-wizard.mjs +54 -0
- package/fesm2022/odx-angular-components-wizard.mjs.map +1 -1
- package/fesm2022/odx-angular-internal-translate.mjs +60 -0
- package/fesm2022/odx-angular-internal-translate.mjs.map +1 -1
- package/fesm2022/odx-angular-internal.mjs +4 -1
- package/fesm2022/odx-angular-internal.mjs.map +1 -1
- package/fesm2022/odx-angular-localization.mjs +269 -32
- package/fesm2022/odx-angular-localization.mjs.map +1 -1
- package/fesm2022/odx-angular-rxjs.mjs +115 -5
- package/fesm2022/odx-angular-rxjs.mjs.map +1 -1
- package/fesm2022/odx-angular-sdk.mjs +50 -0
- package/fesm2022/odx-angular-sdk.mjs.map +1 -1
- package/fesm2022/odx-angular-theming.mjs +149 -0
- package/fesm2022/odx-angular-theming.mjs.map +1 -1
- package/fesm2022/odx-angular-utils.mjs +709 -1
- package/fesm2022/odx-angular-utils.mjs.map +1 -1
- package/fesm2022/odx-angular.mjs +322 -0
- package/fesm2022/odx-angular.mjs.map +1 -1
- package/internal/lib/helpers/fast-equals.d.ts +1 -0
- package/internal/lib/helpers/index.d.ts +1 -0
- package/internal/translate/lib/translate.config.d.ts +31 -0
- package/internal/translate/lib/translate.service.d.ts +29 -0
- package/lib/controllers/controller.d.ts +25 -0
- package/lib/controllers/disabled.controller.d.ts +59 -0
- package/lib/controllers/readonly.controller.d.ts +56 -0
- package/lib/directives/click-outside.directive.d.ts +29 -0
- package/lib/directives/delegate-focus.directive.d.ts +14 -0
- package/lib/services/window-ref.d.ts +66 -0
- package/lib/tokens/identity-matcher.d.ts +41 -0
- package/lib/tokens/string-search-handler.d.ts +39 -0
- package/lib/tokens/stringify.d.ts +42 -0
- package/localization/lib/features/with-http-language-header.d.ts +63 -0
- package/localization/lib/features/with-http-language-query-param.d.ts +61 -0
- package/localization/lib/loaders/browser-language-loader.d.ts +32 -0
- package/localization/lib/localization.config.d.ts +81 -2
- package/localization/lib/localization.logger.d.ts +3 -0
- package/localization/lib/localization.service.d.ts +42 -7
- package/package.json +8 -7
- package/rxjs/index.d.ts +1 -1
- package/rxjs/lib/delay-until.d.ts +22 -0
- package/rxjs/lib/from-element-mutation.d.ts +21 -0
- package/rxjs/lib/from-element-resize.d.ts +24 -0
- package/rxjs/lib/from-events.d.ts +24 -0
- package/rxjs/lib/from-query-list.d.ts +22 -0
- package/sdk/lib/application-environment.d.ts +59 -0
- package/theming/lib/helpers/prefers-dark-theme.d.ts +18 -0
- package/theming/lib/helpers/resolve-theme.d.ts +25 -0
- package/theming/lib/helpers/theme-storage.d.ts +42 -0
- package/theming/lib/theming.config.d.ts +46 -0
- package/theming/lib/theming.service.d.ts +31 -0
- package/utils/lib/decorators/pure.d.ts +51 -0
- package/utils/lib/helpers/angular.d.ts +36 -0
- package/utils/lib/helpers/array.d.ts +4 -0
- package/utils/lib/helpers/build-url.d.ts +20 -0
- package/utils/lib/helpers/build-website-url.d.ts +2 -1
- package/utils/lib/helpers/cache-storage-client.d.ts +51 -0
- package/utils/lib/helpers/coercion.d.ts +17 -0
- package/utils/lib/helpers/debounce.d.ts +27 -0
- package/utils/lib/helpers/defer-fn.d.ts +20 -0
- package/utils/lib/helpers/dom.d.ts +70 -0
- package/utils/lib/helpers/get-axis.d.ts +20 -0
- package/utils/lib/helpers/get-language-code.d.ts +17 -0
- package/utils/lib/helpers/get-opposite-side.d.ts +21 -0
- package/utils/lib/helpers/get-side.d.ts +17 -0
- package/utils/lib/helpers/get-unique-id.d.ts +33 -0
- package/utils/lib/helpers/match-url.d.ts +40 -0
- package/utils/lib/helpers/ng-changes.d.ts +52 -0
- package/utils/lib/helpers/provide-config.d.ts +56 -0
- package/utils/lib/helpers/queue.d.ts +83 -0
- package/utils/lib/helpers/type-guards.d.ts +57 -0
- package/utils/lib/helpers/until-destroyed.d.ts +38 -0
- package/esm2022/rxjs/lib/form-query-list.mjs +0 -5
- package/rxjs/lib/form-query-list.d.ts +0 -3
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
import { InlineMessageVariant } from './models';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Represents an inline message component used for displaying contextual feedback to users.
|
|
5
|
+
* This component can show different types of messages such as warnings, errors, successes, or informational messages,
|
|
6
|
+
* each with corresponding icons. It leverages the `IconComponent` to render these icons.
|
|
7
|
+
*/
|
|
3
8
|
export declare class InlineMessageComponent {
|
|
4
9
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
10
|
+
/**
|
|
11
|
+
* Determines the type of message to display, which influences the icon and styling.
|
|
12
|
+
* Default is `InlineMessageVariant.DEFAULT`, which is typically styled as an informational message.
|
|
13
|
+
* @see {InlineMessageVariant}
|
|
14
|
+
*/
|
|
5
15
|
variant?: InlineMessageVariant | null;
|
|
16
|
+
/**
|
|
17
|
+
* Getter for the icon name based on the current variant.
|
|
18
|
+
*/
|
|
6
19
|
get icon(): string;
|
|
7
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<InlineMessageComponent, never>;
|
|
8
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<InlineMessageComponent, "odx-inline-message", never, { "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@odx/angular";
|
|
3
|
+
/**
|
|
4
|
+
* Represents a link directive.
|
|
5
|
+
*/
|
|
3
6
|
export declare class LinkDirective {
|
|
4
7
|
readonly element: import("@angular/core").ElementRef<HTMLLinkElement>;
|
|
5
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkDirective, never>;
|
package/components/list/lib/components/expandable-list-item/expandable-list-item.component.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { ExpandableItemDirective } from '@odx/angular/cdk/expandable';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "@odx/angular/cdk/expandable";
|
|
4
|
+
/**
|
|
5
|
+
* Represents a component that serves as an expandable list item within an application.
|
|
6
|
+
* It uses animations for expanding and collapsing content, and it integrates seamlessly
|
|
7
|
+
* with other components such as buttons and icons for interactive elements.
|
|
8
|
+
* @see {ExpandableItemDirective}
|
|
9
|
+
*/
|
|
4
10
|
export declare class ExpandableListItemComponent {
|
|
5
11
|
protected readonly expandableItem: ExpandableItemDirective;
|
|
6
12
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
@@ -3,15 +3,31 @@ import { NgChanges } from '@odx/angular/utils';
|
|
|
3
3
|
import { ListItemVariant } from '../../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
import * as i1 from "@odx/angular";
|
|
6
|
+
/**
|
|
7
|
+
* Represents a stylable list item component that can be easily integrated within Angular applications.
|
|
8
|
+
* It supports various visual variants, disabled and selected states, and can be used both as a standalone or
|
|
9
|
+
* as an element in a larger list or collection of items.
|
|
10
|
+
*/
|
|
6
11
|
export declare class ListItemComponent implements OnChanges {
|
|
7
12
|
private readonly withTabIndex;
|
|
8
13
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
9
14
|
/**
|
|
10
|
-
*
|
|
15
|
+
* Marks the list item as potentially harmful or attention-needing, affecting its style and appearance.
|
|
16
|
+
* @deprecated Use `variant` instead.
|
|
11
17
|
*/
|
|
12
18
|
danger: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Specifies the visual variant of the list item.
|
|
21
|
+
* @see {ListItemVariant}
|
|
22
|
+
*/
|
|
13
23
|
variant: ListItemVariant;
|
|
24
|
+
/**
|
|
25
|
+
* Marks the list item as disabled, preventing user interaction and changing its appearance.
|
|
26
|
+
*/
|
|
14
27
|
muted: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Marks the list item as selected, changing its appearance to indicate its state.
|
|
30
|
+
*/
|
|
15
31
|
selected: boolean;
|
|
16
32
|
ngOnChanges(changes: NgChanges<ListItemComponent>): void;
|
|
17
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListItemComponent, never>;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@odx/angular/cdk/expandable";
|
|
3
|
+
/**
|
|
4
|
+
* Represents a list component that can optionally act as an expandable container. This component can be used
|
|
5
|
+
* to display a list of items where each item might be individually expandable.
|
|
6
|
+
* @see {ExpandableContainerDirective}
|
|
7
|
+
*/
|
|
3
8
|
export declare class ListComponent {
|
|
4
9
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
5
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { AnimationEvent } from '@angular/animations';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Represents a loading spinner component.
|
|
6
|
+
*/
|
|
4
7
|
export declare class LoadingSpinnerComponent implements OnInit {
|
|
5
8
|
private readonly host;
|
|
6
9
|
private readonly windowRef;
|
|
7
10
|
protected backgroundColor: string | null;
|
|
8
11
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
12
|
+
/**
|
|
13
|
+
* Indicates whether the color of the loading spinner should be automatically determined.
|
|
14
|
+
* If set to true, the color will be based on the theme of the parent container.
|
|
15
|
+
* If set to false, the color will be the default color specified in the component's styles.
|
|
16
|
+
*/
|
|
9
17
|
autoColor: boolean;
|
|
10
18
|
ngOnInit(): void;
|
|
11
19
|
protected animationFinished({ toState }: AnimationEvent): void;
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* A directive that controls the display of a loading spinner overlay on the host element.
|
|
4
|
+
* This directive can dynamically create or remove a loading spinner based on the `isLoading` state.
|
|
5
|
+
* It modifies the host element's styles to ensure the spinner is displayed correctly, and optionally,
|
|
6
|
+
* it can set a minimum height to prevent layout shifts.
|
|
7
|
+
*/
|
|
2
8
|
export declare class LoadingSpinnerDirective {
|
|
3
9
|
private readonly dynamicViewService;
|
|
4
10
|
private readonly hostElement;
|
|
@@ -7,10 +13,26 @@ export declare class LoadingSpinnerDirective {
|
|
|
7
13
|
private readonly windowRef;
|
|
8
14
|
private parentMinHeight?;
|
|
9
15
|
private viewRef;
|
|
16
|
+
/**
|
|
17
|
+
* Whether the spinner should automatically adjust its color based on the background.
|
|
18
|
+
* Allows the user to specify if the spinner should use automatic color adjustment.
|
|
19
|
+
*/
|
|
10
20
|
autoColor: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Controls whether the spinner is visible or not.
|
|
23
|
+
* Manages the loading state, showing or hiding the spinner accordingly.
|
|
24
|
+
*/
|
|
11
25
|
set isLoading(value: boolean);
|
|
12
26
|
get isLoading(): boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Sets the minimum height for the host element when the spinner is active, to avoid layout shifts.
|
|
29
|
+
* Specifies the minimum height for the spinner's parent element.
|
|
30
|
+
*/
|
|
13
31
|
set minHeight(value: number);
|
|
32
|
+
/**
|
|
33
|
+
* Resets styles applied to the parent element when the spinner is removed.
|
|
34
|
+
* Removes the class, minHeight, and position styles.
|
|
35
|
+
*/
|
|
14
36
|
resetParentStyles(): void;
|
|
15
37
|
private setParentHeight;
|
|
16
38
|
private createSpinner;
|
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
import { LogoSize, LogoVariant } from './models';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* A directive that handles the presentation of a logo with configurable size and variant.
|
|
5
|
+
*/
|
|
3
6
|
export declare class LogoDirective {
|
|
4
7
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
8
|
+
/**
|
|
9
|
+
* The size of the logo.
|
|
10
|
+
*
|
|
11
|
+
* @type {LogoSize}
|
|
12
|
+
* @default LogoSize.SMALL
|
|
13
|
+
*/
|
|
5
14
|
size: LogoSize;
|
|
15
|
+
/**
|
|
16
|
+
* The variant of the logo.
|
|
17
|
+
*
|
|
18
|
+
* @type {LogoVariant}
|
|
19
|
+
* @default LogoVariant.DEFAULT
|
|
20
|
+
*/
|
|
6
21
|
variant: LogoVariant;
|
|
7
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogoDirective, never>;
|
|
8
23
|
static ɵdir: i0.ɵɵDirectiveDeclaration<LogoDirective, "odx-logo", never, { "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Represents a directive for a main menu button.
|
|
4
|
+
* This directive is used to toggle the main menu.
|
|
5
|
+
*/
|
|
2
6
|
export declare class MainMenuButtonDirective {
|
|
3
7
|
private readonly mainMenuService;
|
|
4
8
|
readonly element: import("@angular/core").ElementRef<HTMLButtonElement>;
|
|
5
|
-
onClick(): void;
|
|
9
|
+
protected onClick(): void;
|
|
6
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuButtonDirective, never>;
|
|
7
11
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuButtonDirective, "button[odxMainMenuButton]", never, {}, {}, never, never, true, never>;
|
|
8
12
|
}
|
|
@@ -2,9 +2,25 @@ import { RouterLinkActive } from '@angular/router';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "@odx/angular";
|
|
4
4
|
import * as i2 from "./main-menu-close.directive";
|
|
5
|
+
/**
|
|
6
|
+
* Represents a directive for a main menu item.
|
|
7
|
+
* This directive is used to define a main menu item.
|
|
8
|
+
* Has host directives for disabled state, tabindex, and closing the main menu.
|
|
9
|
+
*
|
|
10
|
+
* @see {WithDisabledState}
|
|
11
|
+
* @see {WithTabIndex}
|
|
12
|
+
* @see {MainMenuCloseDirective}
|
|
13
|
+
*/
|
|
5
14
|
export declare class MainMenuItemDirective {
|
|
6
15
|
protected readonly routerLinkActive: RouterLinkActive | null;
|
|
7
16
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
17
|
+
/**
|
|
18
|
+
* Optionally specifies whether the menu item is selected.
|
|
19
|
+
* If not specified, the menu item will not be selected.
|
|
20
|
+
*
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @default false
|
|
23
|
+
*/
|
|
8
24
|
isSelected: boolean;
|
|
9
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuItemDirective, never>;
|
|
10
26
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuItemDirective, "[odxMainMenuItem]", never, { "isSelected": { "alias": "isSelected"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.WithDisabledState; inputs: {}; outputs: {}; }, { directive: typeof i1.WithTabIndex; inputs: {}; outputs: {}; }, { directive: typeof i2.MainMenuCloseDirective; inputs: {}; outputs: {}; }]>;
|
|
@@ -2,17 +2,59 @@ import { DynamicTextContent } from '@odx/angular/cdk/dynamic-view';
|
|
|
2
2
|
import { trackByIndex } from '@odx/angular/utils';
|
|
3
3
|
import { MainMenuService } from './main-menu.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* The `MainMenuComponent` provides a comprehensive user interface component for displaying a navigation menu within an application.
|
|
7
|
+
* It supports dynamic content for titles, subtitles, and copyright text, and can dynamically render additional links.
|
|
8
|
+
* The menu includes animations for opening and closing states, and can be controlled programmatically or via user interaction.
|
|
9
|
+
*/
|
|
5
10
|
export declare class MainMenuComponent {
|
|
6
11
|
protected readonly mainMenuService: MainMenuService;
|
|
7
12
|
protected readonly mainMenuLinks$: import("rxjs").Observable<import("./models").MainMenuLink[]>;
|
|
8
13
|
protected readonly trackByIndex: typeof trackByIndex;
|
|
9
14
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
15
|
+
/**
|
|
16
|
+
* Input property for the title of the menu. The content is dynamic, allowing complex content structures
|
|
17
|
+
* like translations or custom components.
|
|
18
|
+
*
|
|
19
|
+
* @type {DynamicTextContent}
|
|
20
|
+
*/
|
|
10
21
|
title: DynamicTextContent;
|
|
22
|
+
/**
|
|
23
|
+
* Optional input property for the subtitle of the menu.
|
|
24
|
+
*
|
|
25
|
+
* @type {DynamicTextContent | null}
|
|
26
|
+
* @default null
|
|
27
|
+
*/
|
|
11
28
|
subtitle?: DynamicTextContent | null;
|
|
29
|
+
/**
|
|
30
|
+
* Optional input property for the copyright text of the menu.
|
|
31
|
+
*
|
|
32
|
+
* @type {DynamicTextContent | null}
|
|
33
|
+
* @default null
|
|
34
|
+
*/
|
|
12
35
|
copyright?: DynamicTextContent | null;
|
|
36
|
+
/**
|
|
37
|
+
* Input property to control the open state of the menu. Uses boolean transformation to handle true/false states.
|
|
38
|
+
* Changing this property will toggle the menu's open state via the MainMenuService.
|
|
39
|
+
*
|
|
40
|
+
* @param {boolean} value - The open state of the menu.
|
|
41
|
+
*/
|
|
13
42
|
set isOpen(value: boolean);
|
|
43
|
+
/**
|
|
44
|
+
* Returns the current open state of the menu from the MainMenuService.
|
|
45
|
+
*
|
|
46
|
+
* @returns {boolean} `true` if the menu is open, `false` otherwise.
|
|
47
|
+
*/
|
|
14
48
|
get isOpen(): boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Outputs the observable that tracks the open state of the menu.
|
|
51
|
+
*
|
|
52
|
+
* @emits {boolean} The open state of the menu.
|
|
53
|
+
*/
|
|
15
54
|
menuOpen: import("rxjs").Observable<boolean>;
|
|
55
|
+
/**
|
|
56
|
+
* Closes the menu.
|
|
57
|
+
*/
|
|
16
58
|
close(): void;
|
|
17
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuComponent, never>;
|
|
18
60
|
static ɵcmp: i0.ɵɵComponentDeclaration<MainMenuComponent, "odx-main-menu", never, { "title": { "alias": "title"; "required": true; }; "subtitle": { "alias": "subtitle"; "required": false; }; "copyright": { "alias": "copyright"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, { "menuOpen": "menuOpen"; }, never, ["*", "[odxLink]"], true, never>;
|
|
@@ -9,4 +9,35 @@ export interface MainMenuLinksConfig {
|
|
|
9
9
|
statusUrl?: string | null;
|
|
10
10
|
dynamicLinks?: Observable<MainMenuLink[]>;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Tokens generated to provide and inject `MainMenuLinksConfig`. These tokens are used to configure and access main menu links throughout the application.
|
|
14
|
+
*
|
|
15
|
+
* @exports
|
|
16
|
+
* - `MainMenuLinksConfig` - Token for injecting the config.
|
|
17
|
+
* - `MainMenuLinksDefaultConfig` - Default configuration for main menu links.
|
|
18
|
+
* - `injectMainMenuLinksConfig` - Function to inject the config wherever needed.
|
|
19
|
+
* - `provideMainMenuLinksConfig` - Provider function to configure and provide the config in Angular's DI system.
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```ts
|
|
23
|
+
* // Providing main menu links in an Angular module
|
|
24
|
+
* @NgModule({
|
|
25
|
+
* providers: [
|
|
26
|
+
* provideMainMenuLinksConfig({
|
|
27
|
+
* legalNoticeUrl: 'https://example.com/legalnotice',
|
|
28
|
+
* providerIdentificationUrl: 'https://example.com/provideridentification',
|
|
29
|
+
* }),
|
|
30
|
+
* ],
|
|
31
|
+
* })
|
|
32
|
+
* export class AppModule { }
|
|
33
|
+
*
|
|
34
|
+
* // Injecting and using the main menu links configuration in a component
|
|
35
|
+
* @Component({ ... })
|
|
36
|
+
* export class MyComponent {
|
|
37
|
+
* constructor(@Inject(MainMenuLinksConfig) private config: MainMenuLinksConfig) {
|
|
38
|
+
* console.log('Legal Notice URL:', config.legalNoticeUrl);
|
|
39
|
+
* }
|
|
40
|
+
* }
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
12
43
|
export declare const MainMenuLinksConfig: import("@angular/core").InjectionToken<Partial<MainMenuLinksConfig>>, MainMenuLinksDefaultConfig: MainMenuLinksConfig, injectMainMenuLinksConfig: () => MainMenuLinksConfig, provideMainMenuLinksConfig: <D extends import("@odx/angular/utils").ConfigDependencies<unknown> = import("@odx/angular/utils").ConfigDependencies<Partial<MainMenuLinksConfig>>>(config: import("@odx/angular/utils").ConfigProvider<Partial<MainMenuLinksConfig>, D>) => import("@angular/core").FactoryProvider | import("@angular/core").ValueProvider;
|
|
@@ -1,10 +1,38 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Provides control over the state of the main menu, allowing components to open, close, or toggle its visibility.
|
|
4
|
+
* This service uses a BehaviorSubject to manage the open state and exposes an observable that emits the current state.
|
|
5
|
+
*/
|
|
2
6
|
export declare class MainMenuService {
|
|
3
7
|
private readonly isOpen$$;
|
|
8
|
+
/**
|
|
9
|
+
* An Observable that emits the current state of the menu's visibility.
|
|
10
|
+
* It uses distinctUntilChanged to prevent unnecessary emissions when the state hasn't actually changed.
|
|
11
|
+
* shareReplay is configured to cache the last value for any late subscribers.
|
|
12
|
+
*
|
|
13
|
+
* @emits {boolean} The current visibility state of the main menu.
|
|
14
|
+
*/
|
|
4
15
|
readonly isOpen$: import("rxjs").Observable<boolean>;
|
|
16
|
+
/**
|
|
17
|
+
* Returns the current visibility state of the main menu.
|
|
18
|
+
*
|
|
19
|
+
* @returns {boolean} True if the menu is open, false otherwise.
|
|
20
|
+
*/
|
|
5
21
|
isOpen(): boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Opens the main menu by setting its state to true.
|
|
24
|
+
*/
|
|
6
25
|
open(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Closes the main menu by setting its state to false.
|
|
28
|
+
*/
|
|
7
29
|
close(): void;
|
|
30
|
+
/**
|
|
31
|
+
* Toggles the visibility state of the main menu.
|
|
32
|
+
*
|
|
33
|
+
* @param {boolean | undefined} forceState - If provided, the menu will be set to this specific state. If not provided,
|
|
34
|
+
* the menu will toggle to the opposite of its current state.
|
|
35
|
+
*/
|
|
8
36
|
toggle(forceState?: boolean): void;
|
|
9
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuService, never>;
|
|
10
38
|
static ɵprov: i0.ɵɵInjectableDeclaration<MainMenuService>;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Represents the MainfilterGroupComponent class.
|
|
4
|
+
* This component is responsible for styling the main filter group.
|
|
5
|
+
*/
|
|
2
6
|
export declare class MainfilterGroupComponent {
|
|
3
7
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
4
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainfilterGroupComponent, never>;
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@odx/angular/cdk/a11y";
|
|
3
|
+
/**
|
|
4
|
+
* Represents a directive for a menu item.
|
|
5
|
+
* Uses the `ListFocusManagerOptionDirective` to manage focus within the menu items.
|
|
6
|
+
*
|
|
7
|
+
* @see {ListFocusManagerOptionDirective}
|
|
8
|
+
*/
|
|
3
9
|
export declare class MenuItemDirective {
|
|
4
10
|
readonly element: import("@angular/core").ElementRef<HTMLButtonElement | HTMLLinkElement>;
|
|
5
11
|
protected selectItem(): void;
|
|
@@ -1,9 +1,21 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@odx/angular/cdk/a11y";
|
|
3
|
+
/**
|
|
4
|
+
* `MenuComponent` provides an Angular component for creating a navigational menu structure in an application.
|
|
5
|
+
* It utilizes the `ListFocusManagerDirective` to manage focus within the menu items and integrates with other custom components like `ActionGroupComponent`.
|
|
6
|
+
* The component is styled using CSS component techniques to ensure a consistent look and feel across different parts of the application.
|
|
7
|
+
* @see {ListFocusManagerDirective}
|
|
8
|
+
*/
|
|
3
9
|
export declare class MenuComponent {
|
|
4
10
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
11
|
+
/**
|
|
12
|
+
* A CSS modifier that indicates if the menu should use a tile layout. This is controlled through an input property which can be bound to a boolean value.
|
|
13
|
+
*
|
|
14
|
+
* @type {boolean}
|
|
15
|
+
* @default false
|
|
16
|
+
*/
|
|
5
17
|
tile: boolean;
|
|
6
|
-
onTab(event: KeyboardEvent): void;
|
|
18
|
+
protected onTab(event: KeyboardEvent): void;
|
|
7
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
8
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "odx-menu", never, { "tile": { "alias": "tile"; "required": false; }; }, {}, never, ["*", "[odxButton]"], true, [{ directive: typeof i1.ListFocusManagerDirective; inputs: {}; outputs: {}; }]>;
|
|
9
21
|
static ngAcceptInputType_tile: unknown;
|
|
@@ -4,13 +4,44 @@ import { DropdownDirective } from '@odx/angular/components/dropdown';
|
|
|
4
4
|
import { NgChanges, Position } from '@odx/angular/utils';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "@odx/angular/components/dropdown";
|
|
7
|
+
/**
|
|
8
|
+
* `MenuDirective` integrates a menu system into elements using the `DropdownDirective`
|
|
9
|
+
* for dynamic dropdown functionality.
|
|
10
|
+
* It enables flexible positioning and content injection capabilities, making it suitable
|
|
11
|
+
* for creating context menus, dropdown lists, and other interactive menu-driven components.
|
|
12
|
+
*
|
|
13
|
+
* @see {DropdownDirective}
|
|
14
|
+
*/
|
|
7
15
|
export declare class MenuDirective implements OnChanges {
|
|
8
16
|
protected readonly dropdown: DropdownDirective;
|
|
9
17
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
18
|
+
/**
|
|
19
|
+
* Accepts dynamic content other than `DynamicTextContent` to be used as the content of the dropdown.
|
|
20
|
+
* This allows for more complex content structures such as templates or components to be defined
|
|
21
|
+
* as dropdown content.
|
|
22
|
+
*
|
|
23
|
+
* @type {Exclude<DynamicContent, DynamicTextContent> | null}
|
|
24
|
+
*/
|
|
10
25
|
content?: Exclude<DynamicContent, DynamicTextContent> | null;
|
|
26
|
+
/**
|
|
27
|
+
* Optionally specifies the positioning of the dropdown menu relative to its trigger element.
|
|
28
|
+
* If not specified, a default position may be used.
|
|
29
|
+
*
|
|
30
|
+
* @type {Position | null}
|
|
31
|
+
*/
|
|
11
32
|
position?: Position | null;
|
|
12
33
|
ngOnChanges(changes: NgChanges<MenuDirective>): void;
|
|
34
|
+
/**
|
|
35
|
+
* Returns whether the dropdown is currently open.
|
|
36
|
+
*
|
|
37
|
+
* @returns {boolean} `true` if the dropdown is open, `false` otherwise.
|
|
38
|
+
*/
|
|
13
39
|
isOpen(): boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Closes the dropdown.
|
|
42
|
+
*
|
|
43
|
+
* @param {Event} [event] The event that triggered the dropdown close.
|
|
44
|
+
*/
|
|
14
45
|
close(event?: Event): void;
|
|
15
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuDirective, never>;
|
|
16
47
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuDirective, "[odxMenu]", ["odxMenu"], { "content": { "alias": "odxMenu"; "required": false; }; "position": { "alias": "odxMenuPosition"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.DropdownDirective; inputs: { "odxDropdown": "odxMenu"; }; outputs: {}; }]>;
|
|
@@ -2,9 +2,23 @@ import { Injector } from '@angular/core';
|
|
|
2
2
|
import { trackByIndex } from '@odx/angular/utils';
|
|
3
3
|
import { BasicModalOptions, GetModalActionData, Modal } from '../../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Represents a basic modal component that can be used to display dynamic content, handle modal actions, and interact
|
|
7
|
+
* with other components through dependency injection. It includes common modal features such as headers, footers, and dynamic content areas.
|
|
8
|
+
* This component uses the `ModalRef` to manage its state and interactions.
|
|
9
|
+
*
|
|
10
|
+
* The `BasicModalComponent` is designed to be flexible and reusable for various modal dialog needs within an application.
|
|
11
|
+
*
|
|
12
|
+
* @template Result The expected result type that the modal might produce, typically used when the modal closes.
|
|
13
|
+
*/
|
|
5
14
|
export declare class BasicModalComponent<Result = unknown> implements Modal<BasicModalOptions<Result>, GetModalActionData<BasicModalOptions<Result>>> {
|
|
6
15
|
protected readonly injector: Injector;
|
|
7
16
|
protected readonly trackByIndex: typeof trackByIndex;
|
|
17
|
+
/**
|
|
18
|
+
* The reference to the modal.
|
|
19
|
+
*
|
|
20
|
+
* @type {ModalRef<BasicModalOptions<Result>>}
|
|
21
|
+
*/
|
|
8
22
|
readonly modalRef: import("../../models").ModalRef<BasicModalOptions<Result>, Exclude<Result, undefined>>;
|
|
9
23
|
protected get data(): BasicModalOptions<Result>;
|
|
10
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<BasicModalComponent<any>, never>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Represents the footer component of a modal.
|
|
4
|
+
*/
|
|
2
5
|
export declare class ModalFooterComponent {
|
|
3
6
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
4
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalFooterComponent, never>;
|
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
import { AfterContentInit } from '@angular/core';
|
|
2
2
|
import { AreaHeaderComponent } from '@odx/angular/components/area-header';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Represents the header component of a modal.
|
|
6
|
+
*/
|
|
4
7
|
export declare class ModalHeaderComponent implements AfterContentInit {
|
|
5
8
|
protected readonly modalRef: import("@odx/angular/components/modal").ModalRef<unknown, unknown>;
|
|
6
9
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
10
|
+
/**
|
|
11
|
+
* The area header component associated with the modal header.
|
|
12
|
+
*
|
|
13
|
+
* @type {AreaHeaderComponent | undefined}
|
|
14
|
+
* @remarks This component is optional.
|
|
15
|
+
*/
|
|
7
16
|
areaHeaderComponent?: AreaHeaderComponent;
|
|
8
17
|
constructor();
|
|
9
18
|
ngAfterContentInit(): void;
|
|
@@ -1,10 +1,31 @@
|
|
|
1
1
|
import { ModalHeroVariant } from '../../models';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Represents a modal hero component.
|
|
5
|
+
*/
|
|
3
6
|
export declare class ModalHeroComponent {
|
|
4
7
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
8
|
+
/**
|
|
9
|
+
* The modal reference of the modal hero component.
|
|
10
|
+
*/
|
|
5
11
|
readonly modalRef: import("../../models").ModalRef<unknown, unknown>;
|
|
12
|
+
/**
|
|
13
|
+
* The icon of the modal hero component.
|
|
14
|
+
*
|
|
15
|
+
* @type {string}
|
|
16
|
+
*/
|
|
6
17
|
icon?: string | null;
|
|
18
|
+
/**
|
|
19
|
+
* The icon set of the modal hero component.
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
*/
|
|
7
23
|
iconSet: string;
|
|
24
|
+
/**
|
|
25
|
+
* The variant of the modal hero component.
|
|
26
|
+
*
|
|
27
|
+
* @type {ModalHeroVariant | null}
|
|
28
|
+
*/
|
|
8
29
|
variant?: ModalHeroVariant | null;
|
|
9
30
|
constructor();
|
|
10
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeroComponent, never>;
|
|
@@ -1,8 +1,32 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* A directive that enables an element to close or dismiss a modal when clicked.
|
|
4
|
+
* It can be used on any element within a modal to trigger the close or dismiss action, optionally passing a result back to the modal opener.
|
|
5
|
+
*
|
|
6
|
+
* The directive accepts an input value that determines the result to be passed back on modal close. If no value is provided, or it's explicitly set to `null`,
|
|
7
|
+
* the modal is dismissed without sending a result. If the input value is `undefined`, the modal is dismissed via the `dismiss` method without passing any result.
|
|
8
|
+
*
|
|
9
|
+
* @template T - The type of the result to be emitted when the modal closes. Defaults to `unknown`.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* Closing a modal and passing a result:
|
|
13
|
+
* ```html
|
|
14
|
+
* <button [odxModalClose]="myResult">Close and send result</button>
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* Simply dismissing a modal without passing a result:
|
|
18
|
+
* ```html
|
|
19
|
+
* <button odxModalClose>Dismiss</button>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
2
22
|
export declare class ModalCloseDirective<T = unknown> {
|
|
3
23
|
private readonly modalRef;
|
|
24
|
+
/**
|
|
25
|
+
* Represents the result to be passed back to the modal opener when the modal is closed.
|
|
26
|
+
* @template T - The type of the result returned.
|
|
27
|
+
*/
|
|
4
28
|
result?: T | null;
|
|
5
|
-
onClick(): void;
|
|
29
|
+
protected onClick(): void;
|
|
6
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalCloseDirective<any>, never>;
|
|
7
31
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalCloseDirective<any>, "[odxModalClose]", never, { "result": { "alias": "odxModalClose"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
32
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Represents a directive for the content of a modal.
|
|
4
|
+
*/
|
|
2
5
|
export declare class ModalContentDirective {
|
|
3
6
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
4
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalContentDirective, never>;
|
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* A directive that enables an element to dismiss a modal when clicked. This can be applied
|
|
4
|
+
* to any clickable element within a modal, such as buttons or links, to provide a declarative
|
|
5
|
+
* approach to dismissing the modal.
|
|
6
|
+
*
|
|
7
|
+
* Utilizes `injectModalRef` to access the modal reference associated with the containing modal,
|
|
8
|
+
* enabling the directive to call the `dismiss` method on the modal reference upon the click event.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* Dismissing a modal using the odxModalDismiss directive on a button:
|
|
12
|
+
* ```html
|
|
13
|
+
* <button odxModalDismiss>Cancel</button>
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* This directive simplifies modal dismissal by removing the need for manually wiring click events
|
|
17
|
+
* to dismiss methods in the component class, thereby enhancing template readability and maintainability.
|
|
18
|
+
*/
|
|
2
19
|
export declare class ModalDismissDirective {
|
|
3
20
|
private readonly modalRef;
|
|
4
|
-
onClick(): void;
|
|
21
|
+
protected onClick(): void;
|
|
5
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalDismissDirective, never>;
|
|
6
23
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalDismissDirective, "[odxModalDismiss]", never, {}, {}, never, never, true, never>;
|
|
7
24
|
}
|
|
@@ -1,2 +1,23 @@
|
|
|
1
1
|
import { ModalRef } from '../models';
|
|
2
|
+
/**
|
|
3
|
+
* Utility function to inject a reference to a modal. This function simplifies the injection process by typing the `ModalRef` to the specific data and result expected by the consumer.
|
|
4
|
+
*
|
|
5
|
+
* This approach abstracts away Angular's inject function, providing direct access to the modal reference with the correct type. It is commonly used in components or services that interact with a modal dialog to manipulate its data, close it, or perform other related actions.
|
|
6
|
+
*
|
|
7
|
+
* @template Data The type of data passed to the modal.
|
|
8
|
+
* @template Result The type of result expected when the modal closes.
|
|
9
|
+
* @returns {ModalRef<Data, Result>} A strongly typed reference to the modal.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```ts
|
|
13
|
+
* // Injecting a modal reference in a component or service:
|
|
14
|
+
* const modalRef = injectModalRef<SomeDataType, SomeResultType>();
|
|
15
|
+
*
|
|
16
|
+
* // Using the modal reference to close the modal and return a result:
|
|
17
|
+
* modalRef.close(someResult);
|
|
18
|
+
*
|
|
19
|
+
* // Accessing the data provided to the modal:
|
|
20
|
+
* const modalData = modalRef.data;
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
2
23
|
export declare function injectModalRef<Data, Result = unknown>(): ModalRef<Data, Result>;
|