@odx/angular 6.1.0 → 6.2.0
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 +15 -0
- package/cdk/checkbox-control/lib/checkbox-control.directive.d.ts +19 -1
- package/cdk/connected-overlay/lib/models/connected-overlay-ref.d.ts +1 -1
- package/cdk/dynamic-view/lib/dynamic-view.directive.d.ts +9 -1
- package/cdk/expandable/lib/directives/expandable-container.directive.d.ts +9 -5
- package/cdk/expandable/lib/directives/expandable-item.directive.d.ts +4 -1
- package/cdk/option-control/lib/option-control.d.ts +2 -0
- package/cdk/radio-group-control/lib/radio-control.directive.d.ts +18 -0
- package/cdk/radio-group-control/lib/radio-group-control.directive.d.ts +3 -1
- package/components/accordion/lib/components/accordion-item/accordion-item.component.d.ts +9 -5
- package/components/action-group/action-group.component.d.ts +3 -0
- package/components/area-header/area-header.component.d.ts +2 -1
- package/components/autocomplete/lib/autocomplete.component.d.ts +17 -4
- package/components/autocomplete/lib/components/option/autocomplete-option.component.d.ts +8 -0
- package/components/autocomplete/lib/directives/autocomplete-input-control.directive.d.ts +4 -0
- package/components/avatar/lib/avatar.component.d.ts +6 -2
- package/components/badge/lib/badge.component.d.ts +12 -1
- package/components/badge/lib/badge.directive.d.ts +18 -3
- package/components/bar/lib/directives/bar-button.directive.d.ts +6 -0
- package/components/button/lib/button.component.d.ts +9 -1
- package/components/button-group/lib/button-group.component.d.ts +12 -0
- package/components/calendar/lib/calendar.component.d.ts +11 -0
- package/components/calendar/lib/calendar.config.d.ts +6 -0
- package/components/calendar/lib/calendar.service.d.ts +13 -1
- package/components/calendar/lib/components/calendar-header/calendar-header.component.d.ts +16 -0
- package/components/calendar/lib/daterange.service.d.ts +3 -0
- package/components/calendar/lib/directives/calendar-cell.directive.d.ts +4 -0
- package/components/calendar/lib/directives/calendar-view.directive.d.ts +18 -0
- package/components/calendar/lib/pipes/date-label.pipe.d.ts +4 -0
- package/components/card/lib/card.component.d.ts +26 -2
- package/components/card/lib/components/card-footer/card-footer.component.d.ts +3 -0
- package/components/card/lib/components/launch-card-subtitle/launch-card-subtitle.component.d.ts +3 -0
- package/components/card/lib/directives/card-content.directive.d.ts +3 -0
- package/components/card/lib/directives/card-title.directive.d.ts +3 -0
- package/components/checkbox/lib/checkbox.component.d.ts +9 -2
- package/components/chip/lib/components/chip/chip.component.d.ts +15 -3
- package/components/circular-progress/lib/circular-progress.component.d.ts +15 -2
- package/components/datepicker/lib/datepicker.component.d.ts +28 -1
- package/components/datepicker/lib/directives/datepicker-input-control.directive.d.ts +7 -1
- package/components/daterangepicker/lib/daterangepicker.component.d.ts +4 -0
- package/components/daterangepicker/lib/directives/daterangepicker-input-control.directive.d.ts +3 -1
- package/components/daterangepicker/lib/required.validator.d.ts +8 -0
- package/components/dropdown/lib/dropdown.component.d.ts +6 -4
- package/components/dropdown/lib/dropdown.directive.d.ts +38 -3
- package/components/dropdown/lib/helpers/close-current-dropdown.d.ts +2 -1
- package/components/error-page/lib/error-page.component.d.ts +2 -0
- package/components/footer/lib/footer.component.d.ts +6 -2
- package/components/footer/lib/helpers/create-footer-links.d.ts +1 -2
- package/components/form-field/lib/components/form-field-info/form-field-info.component.d.ts +2 -1
- package/components/form-field/lib/components/form-group/form-group.component.d.ts +7 -2
- package/components/form-field/lib/directives/form-field-error.directive.d.ts +2 -0
- package/components/form-field/lib/directives/form.directive.d.ts +4 -0
- package/components/form-field/lib/form-field.component.d.ts +17 -2
- package/components/form-field/lib/form-field.service.d.ts +27 -6
- package/components/form-field/lib/services/form-field-error.service.d.ts +11 -3
- package/components/header-navigation/lib/header-navigation.component.d.ts +3 -0
- package/components/icon/lib/helpers/unpack-icon-identifier.d.ts +2 -2
- package/components/icon/lib/icon.component.d.ts +13 -1
- package/components/inline-message/lib/inline-message.component.d.ts +5 -1
- package/components/list/lib/components/expandable-list-item/expandable-list-item.component.d.ts +1 -0
- package/components/list/lib/components/list-item/list-item.component.d.ts +10 -1
- package/components/list/lib/list.component.d.ts +1 -0
- package/components/loading-spinner/lib/loading-spinner.component.d.ts +3 -0
- package/components/loading-spinner/lib/loading-spinner.directive.d.ts +7 -0
- package/components/modal/lib/components/modal-header/modal-header.component.d.ts +0 -1
- package/components/modal/lib/components/modal-hero/modal-hero.component.d.ts +3 -0
- package/components/modal/lib/directives/index.d.ts +2 -0
- package/components/modal/lib/directives/prevent-form-method-dialog.directive.d.ts +9 -0
- package/components/modal/lib/directives/prevent-method-dialog.directive.d.ts +9 -0
- package/components/modal/lib/modal.component.d.ts +11 -3
- package/components/modal/lib/modal.module.d.ts +5 -3
- package/components/modal/lib/modal.service.d.ts +7 -5
- package/components/modal/lib/models/modal-ref.d.ts +18 -4
- package/components/notification/lib/components/notification-item/notification-item.component.d.ts +4 -4
- package/components/notification/lib/directives/notification-center.directive.d.ts +6 -3
- package/components/notification/lib/features/with-browser-notifications.d.ts +1 -1
- package/components/notification/lib/features/with-load-notifications.d.ts +2 -1
- package/components/notification/lib/features/with-notification-transformer.d.ts +2 -2
- package/components/notification/lib/features/with-peristent-notifications.d.ts +6 -8
- package/components/notification/lib/features/with-save-notifications.d.ts +1 -1
- package/components/paginator/lib/paginator.component.d.ts +50 -0
- package/components/progress/lib/progress.component.d.ts +6 -1
- package/components/radio-group/lib/components/radio-button/radio-button.component.d.ts +7 -0
- package/components/radio-group/lib/radio-group.component.d.ts +6 -0
- package/components/rail-navigation/lib/components/rail-navigation-item/rail-navigation-item.component.d.ts +9 -0
- package/components/rail-navigation/lib/rail-navigation.component.d.ts +10 -2
- package/components/rich-list/lib/components/rich-list-item/rich-list-item.component.d.ts +8 -10
- package/components/rich-list/lib/rich-list.component.d.ts +3 -0
- package/components/select/lib/components/select-option/select-option.component.d.ts +1 -0
- package/components/select/lib/directives/select-input-control.directive.d.ts +4 -1
- package/components/select/lib/select.component.d.ts +7 -1
- package/components/slider/lib/slider.directive.d.ts +7 -4
- package/components/spinbox/lib/spinbox.component.d.ts +9 -0
- package/components/tab-bar/lib/components/tab-bar-item/tab-bar-item.component.d.ts +4 -1
- package/components/table/lib/components/check-cell/check-cell.component.d.ts +4 -1
- package/components/table/lib/components/header-title/header-title.component.d.ts +12 -1
- package/components/table/lib/table.component.d.ts +18 -1
- package/components/timepicker/lib/components/timepicker-option.component.d.ts +9 -1
- package/components/timepicker/lib/directives/timepicker-input-control.directive.d.ts +2 -0
- package/components/timepicker/lib/timepicker.component.d.ts +18 -3
- package/components/timepicker/lib/timepicker.service.d.ts +0 -7
- package/components/toast/lib/components/toast-container/toast-container.component.d.ts +19 -0
- package/components/toast/lib/components/toast-item/toast-item.component.d.ts +57 -1
- package/components/toast/lib/toast.service.d.ts +12 -0
- package/components/toggle-button-group/lib/components/toggle-button/toggle-button.component.d.ts +3 -0
- package/components/toggle-button-group/lib/toggle-button-group.component.d.ts +2 -0
- package/components/tooltip/lib/tooltip.component.d.ts +7 -1
- package/components/tooltip/lib/tooltip.directive.d.ts +15 -2
- package/components/wizard/lib/components/wizard-step/wizard-step.component.d.ts +17 -0
- package/components/wizard/lib/wizard.component.d.ts +13 -1
- package/esm2022/cdk/checkbox-control/lib/checkbox-control.directive.mjs +20 -2
- package/esm2022/cdk/connected-overlay/lib/models/connected-overlay-ref.mjs +2 -2
- package/esm2022/cdk/dynamic-view/lib/dynamic-view.directive.mjs +4 -1
- package/esm2022/cdk/expandable/lib/directives/expandable-container.directive.mjs +10 -6
- package/esm2022/cdk/expandable/lib/directives/expandable-item.directive.mjs +5 -2
- package/esm2022/cdk/option-control/lib/option-control.mjs +3 -1
- package/esm2022/cdk/radio-group-control/lib/radio-control.directive.mjs +19 -1
- package/esm2022/cdk/radio-group-control/lib/radio-group-control.directive.mjs +3 -1
- package/esm2022/components/accordion/lib/components/accordion-item/accordion-item.component.mjs +9 -4
- package/esm2022/components/action-group/action-group.component.mjs +4 -1
- package/esm2022/components/area-header/area-header.component.mjs +3 -2
- package/esm2022/components/autocomplete/lib/autocomplete.component.mjs +8 -5
- package/esm2022/components/autocomplete/lib/components/option/autocomplete-option.component.mjs +9 -1
- package/esm2022/components/autocomplete/lib/directives/autocomplete-input-control.directive.mjs +5 -1
- package/esm2022/components/avatar/lib/avatar.component.mjs +7 -3
- package/esm2022/components/badge/lib/badge.component.mjs +7 -2
- package/esm2022/components/badge/lib/badge.directive.mjs +19 -4
- package/esm2022/components/bar/lib/directives/bar-button.directive.mjs +7 -1
- package/esm2022/components/button/lib/button.component.mjs +10 -2
- package/esm2022/components/button-group/lib/button-group.component.mjs +13 -1
- package/esm2022/components/calendar/lib/calendar.component.mjs +12 -1
- package/esm2022/components/calendar/lib/calendar.config.mjs +1 -1
- package/esm2022/components/calendar/lib/calendar.service.mjs +14 -2
- package/esm2022/components/calendar/lib/components/calendar-header/calendar-header.component.mjs +13 -1
- package/esm2022/components/calendar/lib/daterange.service.mjs +4 -1
- package/esm2022/components/calendar/lib/directives/calendar-cell.directive.mjs +5 -1
- package/esm2022/components/calendar/lib/directives/calendar-view.directive.mjs +17 -1
- package/esm2022/components/calendar/lib/pipes/date-label.pipe.mjs +5 -1
- package/esm2022/components/card/lib/card.component.mjs +25 -1
- package/esm2022/components/card/lib/components/card-footer/card-footer.component.mjs +4 -1
- package/esm2022/components/card/lib/components/launch-card-subtitle/launch-card-subtitle.component.mjs +4 -1
- package/esm2022/components/card/lib/directives/card-content.directive.mjs +4 -1
- package/esm2022/components/card/lib/directives/card-title.directive.mjs +4 -1
- package/esm2022/components/checkbox/lib/checkbox.component.mjs +10 -3
- package/esm2022/components/chip/lib/components/chip/chip.component.mjs +15 -3
- package/esm2022/components/circular-progress/lib/circular-progress.component.mjs +16 -3
- package/esm2022/components/datepicker/lib/datepicker.component.mjs +29 -2
- package/esm2022/components/datepicker/lib/directives/datepicker-input-control.directive.mjs +8 -2
- package/esm2022/components/daterangepicker/lib/daterangepicker.component.mjs +5 -1
- package/esm2022/components/daterangepicker/lib/directives/daterangepicker-input-control.directive.mjs +4 -2
- package/esm2022/components/daterangepicker/lib/required.validator.mjs +9 -9
- package/esm2022/components/dropdown/lib/dropdown.component.mjs +1 -5
- package/esm2022/components/dropdown/lib/dropdown.directive.mjs +31 -4
- package/esm2022/components/dropdown/lib/helpers/close-current-dropdown.mjs +3 -2
- package/esm2022/components/error-page/lib/error-page.component.mjs +3 -1
- package/esm2022/components/footer/lib/footer.component.mjs +7 -3
- package/esm2022/components/footer/lib/helpers/create-footer-links.mjs +2 -3
- package/esm2022/components/form-field/lib/components/form-field-info/form-field-info.component.mjs +3 -2
- package/esm2022/components/form-field/lib/components/form-group/form-group.component.mjs +6 -3
- package/esm2022/components/form-field/lib/directives/form-field-error.directive.mjs +1 -1
- package/esm2022/components/form-field/lib/directives/form.directive.mjs +5 -1
- package/esm2022/components/form-field/lib/form-field.component.mjs +14 -2
- package/esm2022/components/form-field/lib/form-field.service.mjs +28 -7
- package/esm2022/components/form-field/lib/services/form-field-error.service.mjs +12 -4
- package/esm2022/components/header-navigation/lib/header-navigation.component.mjs +1 -1
- package/esm2022/components/icon/lib/helpers/unpack-icon-identifier.mjs +3 -3
- package/esm2022/components/icon/lib/icon.component.mjs +14 -2
- package/esm2022/components/inline-message/lib/inline-message.component.mjs +6 -2
- package/esm2022/components/list/lib/components/expandable-list-item/expandable-list-item.component.mjs +2 -1
- package/esm2022/components/list/lib/components/list-item/list-item.component.mjs +11 -2
- package/esm2022/components/list/lib/list.component.mjs +2 -1
- package/esm2022/components/loading-spinner/lib/loading-spinner.component.mjs +4 -1
- package/esm2022/components/loading-spinner/lib/loading-spinner.directive.mjs +8 -1
- package/esm2022/components/modal/lib/components/modal-header/modal-header.component.mjs +1 -1
- package/esm2022/components/modal/lib/components/modal-hero/modal-hero.component.mjs +4 -1
- package/esm2022/components/modal/lib/directives/index.mjs +3 -1
- package/esm2022/components/modal/lib/directives/prevent-form-method-dialog.directive.mjs +23 -0
- package/esm2022/components/modal/lib/directives/prevent-method-dialog.directive.mjs +23 -0
- package/esm2022/components/modal/lib/modal.component.mjs +36 -17
- package/esm2022/components/modal/lib/modal.module.mjs +10 -4
- package/esm2022/components/modal/lib/modal.service.mjs +4 -3
- package/esm2022/components/modal/lib/models/modal-ref.mjs +19 -5
- package/esm2022/components/notification/lib/components/notification-item/notification-item.component.mjs +5 -5
- package/esm2022/components/notification/lib/directives/notification-center.directive.mjs +7 -4
- package/esm2022/components/notification/lib/features/with-browser-notifications.mjs +4 -5
- package/esm2022/components/notification/lib/features/with-load-notifications.mjs +3 -3
- package/esm2022/components/notification/lib/features/with-notification-transformer.mjs +3 -3
- package/esm2022/components/notification/lib/features/with-peristent-notifications.mjs +7 -9
- package/esm2022/components/notification/lib/features/with-save-notifications.mjs +3 -4
- package/esm2022/components/paginator/lib/paginator.component.mjs +51 -1
- package/esm2022/components/progress/lib/progress.component.mjs +7 -2
- package/esm2022/components/radio-group/lib/components/radio-button/radio-button.component.mjs +3 -1
- package/esm2022/components/radio-group/lib/radio-group.component.mjs +7 -1
- package/esm2022/components/rail-navigation/lib/components/rail-navigation-item/rail-navigation-item.component.mjs +7 -1
- package/esm2022/components/rail-navigation/lib/rail-navigation.component.mjs +11 -3
- package/esm2022/components/rich-list/lib/components/rich-list-item/rich-list-item.component.mjs +4 -6
- package/esm2022/components/rich-list/lib/rich-list.component.mjs +4 -1
- package/esm2022/components/select/lib/components/select-option/select-option.component.mjs +2 -1
- package/esm2022/components/select/lib/directives/select-input-control.directive.mjs +4 -1
- package/esm2022/components/select/lib/select.component.mjs +8 -2
- package/esm2022/components/slider/lib/slider.directive.mjs +7 -4
- package/esm2022/components/spinbox/lib/spinbox.component.mjs +10 -1
- package/esm2022/components/tab-bar/lib/components/tab-bar-item/tab-bar-item.component.mjs +5 -2
- package/esm2022/components/table/lib/components/check-cell/check-cell.component.mjs +5 -2
- package/esm2022/components/table/lib/components/header-title/header-title.component.mjs +11 -1
- package/esm2022/components/table/lib/table.component.mjs +15 -1
- package/esm2022/components/timepicker/lib/components/timepicker-option.component.mjs +10 -2
- package/esm2022/components/timepicker/lib/directives/timepicker-input-control.directive.mjs +3 -1
- package/esm2022/components/timepicker/lib/timepicker.component.mjs +14 -4
- package/esm2022/components/timepicker/lib/timepicker.service.mjs +1 -8
- package/esm2022/components/toast/lib/components/toast-container/toast-container.component.mjs +20 -1
- package/esm2022/components/toast/lib/components/toast-item/toast-item.component.mjs +24 -1
- package/esm2022/components/toast/lib/toast.service.mjs +13 -1
- package/esm2022/components/toggle-button-group/lib/components/toggle-button/toggle-button.component.mjs +4 -1
- package/esm2022/components/toggle-button-group/lib/toggle-button-group.component.mjs +3 -1
- package/esm2022/components/tooltip/lib/tooltip.component.mjs +6 -2
- package/esm2022/components/tooltip/lib/tooltip.directive.mjs +16 -3
- package/esm2022/components/wizard/lib/components/wizard-step/wizard-step.component.mjs +18 -1
- package/esm2022/components/wizard/lib/wizard.component.mjs +22 -4
- package/esm2022/lib/controllers/disabled.controller.mjs +9 -1
- package/esm2022/lib/controllers/readonly.controller.mjs +3 -1
- package/esm2022/lib/directives/click-outside.directive.mjs +2 -1
- package/esm2022/lib/services/window-ref.mjs +22 -4
- package/esm2022/theming/lib/helpers/prefers-dark-theme.mjs +1 -1
- package/esm2022/theming/lib/theming.service.mjs +3 -1
- package/esm2022/utils/lib/helpers/queue.mjs +24 -14
- package/fesm2022/odx-angular-cdk-checkbox-control.mjs +19 -1
- package/fesm2022/odx-angular-cdk-checkbox-control.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-connected-overlay.mjs +1 -1
- package/fesm2022/odx-angular-cdk-connected-overlay.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-dynamic-view.mjs +3 -0
- package/fesm2022/odx-angular-cdk-dynamic-view.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-expandable.mjs +13 -6
- package/fesm2022/odx-angular-cdk-expandable.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-option-control.mjs +2 -0
- package/fesm2022/odx-angular-cdk-option-control.mjs.map +1 -1
- package/fesm2022/odx-angular-cdk-radio-group-control.mjs +20 -0
- package/fesm2022/odx-angular-cdk-radio-group-control.mjs.map +1 -1
- package/fesm2022/odx-angular-components-accordion.mjs +8 -3
- package/fesm2022/odx-angular-components-accordion.mjs.map +1 -1
- package/fesm2022/odx-angular-components-action-group.mjs +3 -0
- package/fesm2022/odx-angular-components-action-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-area-header.mjs +2 -1
- package/fesm2022/odx-angular-components-area-header.mjs.map +1 -1
- package/fesm2022/odx-angular-components-autocomplete.mjs +19 -4
- package/fesm2022/odx-angular-components-autocomplete.mjs.map +1 -1
- package/fesm2022/odx-angular-components-avatar.mjs +6 -2
- package/fesm2022/odx-angular-components-avatar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-badge.mjs +24 -4
- package/fesm2022/odx-angular-components-badge.mjs.map +1 -1
- package/fesm2022/odx-angular-components-bar.mjs +6 -0
- package/fesm2022/odx-angular-components-bar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-button-group.mjs +12 -0
- package/fesm2022/odx-angular-components-button-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-button.mjs +9 -1
- package/fesm2022/odx-angular-components-button.mjs.map +1 -1
- package/fesm2022/odx-angular-components-calendar.mjs +63 -1
- package/fesm2022/odx-angular-components-calendar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-card.mjs +36 -0
- package/fesm2022/odx-angular-components-card.mjs.map +1 -1
- package/fesm2022/odx-angular-components-checkbox.mjs +9 -2
- package/fesm2022/odx-angular-components-checkbox.mjs.map +1 -1
- package/fesm2022/odx-angular-components-chip.mjs +14 -2
- package/fesm2022/odx-angular-components-chip.mjs.map +1 -1
- package/fesm2022/odx-angular-components-circular-progress.mjs +15 -2
- package/fesm2022/odx-angular-components-circular-progress.mjs.map +1 -1
- package/fesm2022/odx-angular-components-datepicker.mjs +35 -2
- package/fesm2022/odx-angular-components-datepicker.mjs.map +1 -1
- package/fesm2022/odx-angular-components-daterangepicker.mjs +15 -9
- package/fesm2022/odx-angular-components-daterangepicker.mjs.map +1 -1
- package/fesm2022/odx-angular-components-dropdown.mjs +32 -8
- package/fesm2022/odx-angular-components-dropdown.mjs.map +1 -1
- package/fesm2022/odx-angular-components-error-page.mjs +2 -0
- package/fesm2022/odx-angular-components-error-page.mjs.map +1 -1
- package/fesm2022/odx-angular-components-footer.mjs +7 -4
- package/fesm2022/odx-angular-components-footer.mjs.map +1 -1
- package/fesm2022/odx-angular-components-form-field.mjs +62 -13
- package/fesm2022/odx-angular-components-form-field.mjs.map +1 -1
- package/fesm2022/odx-angular-components-header-navigation.mjs.map +1 -1
- package/fesm2022/odx-angular-components-icon.mjs +15 -3
- package/fesm2022/odx-angular-components-icon.mjs.map +1 -1
- package/fesm2022/odx-angular-components-inline-message.mjs +5 -1
- package/fesm2022/odx-angular-components-inline-message.mjs.map +1 -1
- package/fesm2022/odx-angular-components-list.mjs +12 -1
- package/fesm2022/odx-angular-components-list.mjs.map +1 -1
- package/fesm2022/odx-angular-components-loading-spinner.mjs +10 -0
- package/fesm2022/odx-angular-components-loading-spinner.mjs.map +1 -1
- package/fesm2022/odx-angular-components-modal.mjs +110 -25
- package/fesm2022/odx-angular-components-modal.mjs.map +1 -1
- package/fesm2022/odx-angular-components-notification.mjs +25 -26
- package/fesm2022/odx-angular-components-notification.mjs.map +1 -1
- package/fesm2022/odx-angular-components-paginator.mjs +50 -0
- package/fesm2022/odx-angular-components-paginator.mjs.map +1 -1
- package/fesm2022/odx-angular-components-progress.mjs +6 -1
- package/fesm2022/odx-angular-components-progress.mjs.map +1 -1
- package/fesm2022/odx-angular-components-radio-group.mjs +8 -0
- package/fesm2022/odx-angular-components-radio-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-rail-navigation.mjs +16 -2
- package/fesm2022/odx-angular-components-rail-navigation.mjs.map +1 -1
- package/fesm2022/odx-angular-components-rich-list.mjs +6 -5
- package/fesm2022/odx-angular-components-rich-list.mjs.map +1 -1
- package/fesm2022/odx-angular-components-select.mjs +11 -1
- package/fesm2022/odx-angular-components-select.mjs.map +1 -1
- package/fesm2022/odx-angular-components-slider.mjs +6 -3
- package/fesm2022/odx-angular-components-slider.mjs.map +1 -1
- package/fesm2022/odx-angular-components-spinbox.mjs +9 -0
- package/fesm2022/odx-angular-components-spinbox.mjs.map +1 -1
- package/fesm2022/odx-angular-components-tab-bar.mjs +4 -1
- package/fesm2022/odx-angular-components-tab-bar.mjs.map +1 -1
- package/fesm2022/odx-angular-components-table.mjs +28 -1
- package/fesm2022/odx-angular-components-table.mjs.map +1 -1
- package/fesm2022/odx-angular-components-timepicker.mjs +24 -11
- package/fesm2022/odx-angular-components-timepicker.mjs.map +1 -1
- package/fesm2022/odx-angular-components-toast.mjs +54 -0
- package/fesm2022/odx-angular-components-toast.mjs.map +1 -1
- package/fesm2022/odx-angular-components-toggle-button-group.mjs +5 -0
- package/fesm2022/odx-angular-components-toggle-button-group.mjs.map +1 -1
- package/fesm2022/odx-angular-components-tooltip.mjs +20 -3
- package/fesm2022/odx-angular-components-tooltip.mjs.map +1 -1
- package/fesm2022/odx-angular-components-wizard.mjs +38 -3
- package/fesm2022/odx-angular-components-wizard.mjs.map +1 -1
- package/fesm2022/odx-angular-theming.mjs +2 -0
- package/fesm2022/odx-angular-theming.mjs.map +1 -1
- package/fesm2022/odx-angular-utils.mjs +23 -13
- package/fesm2022/odx-angular-utils.mjs.map +1 -1
- package/fesm2022/odx-angular.mjs +32 -3
- package/fesm2022/odx-angular.mjs.map +1 -1
- package/lib/controllers/disabled.controller.d.ts +8 -0
- package/lib/controllers/readonly.controller.d.ts +2 -0
- package/lib/directives/click-outside.directive.d.ts +1 -0
- package/lib/services/window-ref.d.ts +21 -3
- package/package.json +1 -1
- package/theming/lib/theming.service.d.ts +2 -0
- package/utils/lib/helpers/queue.d.ts +23 -13
|
@@ -11,30 +11,46 @@ export declare class CalendarHeaderComponent implements OnChanges {
|
|
|
11
11
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
12
12
|
/**
|
|
13
13
|
* The active date of the calendar.
|
|
14
|
+
*
|
|
15
|
+
* @type {Date}
|
|
14
16
|
*/
|
|
15
17
|
activeDate: Date;
|
|
16
18
|
/**
|
|
17
19
|
* The current view of the calendar.
|
|
20
|
+
*
|
|
21
|
+
* @type {CalendarView}
|
|
18
22
|
*/
|
|
19
23
|
calendarView: CalendarView;
|
|
20
24
|
/**
|
|
21
25
|
* The minimum selectable date in the calendar.
|
|
26
|
+
*
|
|
27
|
+
* @type {Date | null}
|
|
28
|
+
* @default null
|
|
22
29
|
*/
|
|
23
30
|
minDate?: Date | null;
|
|
24
31
|
/**
|
|
25
32
|
* The maximum selectable date in the calendar.
|
|
33
|
+
*
|
|
34
|
+
* @type {Date | null}
|
|
35
|
+
* @default null
|
|
26
36
|
*/
|
|
27
37
|
maxDate?: Date | null;
|
|
28
38
|
/**
|
|
29
39
|
* Event emitted when the previous button is clicked.
|
|
40
|
+
*
|
|
41
|
+
* @emits {MouseEvent}
|
|
30
42
|
*/
|
|
31
43
|
previous: EventEmitter<MouseEvent>;
|
|
32
44
|
/**
|
|
33
45
|
* Event emitted when the next button is clicked.
|
|
46
|
+
*
|
|
47
|
+
* @emits {MouseEvent}
|
|
34
48
|
*/
|
|
35
49
|
next: EventEmitter<MouseEvent>;
|
|
36
50
|
/**
|
|
37
51
|
* Event emitted when the view is changed.
|
|
52
|
+
*
|
|
53
|
+
* @emits {void}
|
|
38
54
|
*/
|
|
39
55
|
changeView: EventEmitter<void>;
|
|
40
56
|
ngOnChanges(changes: NgChanges<CalendarHeaderComponent>): void;
|
|
@@ -11,17 +11,20 @@ export declare class DaterangeService {
|
|
|
11
11
|
private readonly dateRangeState$$;
|
|
12
12
|
/**
|
|
13
13
|
* An event emitter for outputting the selected date range.
|
|
14
|
+
*
|
|
14
15
|
* @emits {DateRange | null} outputDateRange$ - The selected date range or null if no range is selected.
|
|
15
16
|
*/
|
|
16
17
|
readonly outputDateRange$: EventEmitter<DateRange | null>;
|
|
17
18
|
/**
|
|
18
19
|
* An observable that emits the current date range state.
|
|
19
20
|
* The date range state represents the current selection state and the selected date range.
|
|
21
|
+
*
|
|
20
22
|
* @emits {DateRangeState} dateRangeState$ - The current date range state.
|
|
21
23
|
*/
|
|
22
24
|
readonly dateRangeState$: Observable<DateRangeState>;
|
|
23
25
|
/**
|
|
24
26
|
* Sets the selected date range.
|
|
27
|
+
*
|
|
25
28
|
* @param {DateTypeRange} value - The selected date range.
|
|
26
29
|
*/
|
|
27
30
|
setDateRange(value: DateTypeRange): void;
|
|
@@ -55,18 +55,21 @@ export declare class CalendarCellDirective implements OnChanges, OnInit, OnDestr
|
|
|
55
55
|
* Represents the active date in the calendar view.
|
|
56
56
|
*
|
|
57
57
|
* @type {Date | null}
|
|
58
|
+
* @default null
|
|
58
59
|
*/
|
|
59
60
|
activeDate: Date | null;
|
|
60
61
|
/**
|
|
61
62
|
* Represents the selected date in the calendar view.
|
|
62
63
|
*
|
|
63
64
|
* @type {Date | null}
|
|
65
|
+
* @default null
|
|
64
66
|
*/
|
|
65
67
|
selectedDate?: Date | null;
|
|
66
68
|
/**
|
|
67
69
|
* Represents the selected date range in the calendar view.
|
|
68
70
|
*
|
|
69
71
|
* @type {DateRangeState | null}
|
|
72
|
+
* @default null
|
|
70
73
|
*/
|
|
71
74
|
selectedDateRange?: DateRangeState | null;
|
|
72
75
|
/**
|
|
@@ -75,6 +78,7 @@ export declare class CalendarCellDirective implements OnChanges, OnInit, OnDestr
|
|
|
75
78
|
* It can be set to a specific date or null if no date is being previewed.
|
|
76
79
|
*
|
|
77
80
|
* @type {Date | null}
|
|
81
|
+
* @default null
|
|
78
82
|
*/
|
|
79
83
|
previewDate?: Date | null;
|
|
80
84
|
ngOnChanges(changes: NgChanges<CalendarCellDirective>): void;
|
|
@@ -25,38 +25,56 @@ export declare abstract class CalendarViewDirective {
|
|
|
25
25
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
26
26
|
/**
|
|
27
27
|
* The active date for the calendar view.
|
|
28
|
+
*
|
|
29
|
+
* @type {Date}
|
|
28
30
|
*/
|
|
29
31
|
activeDate: Date;
|
|
30
32
|
/**
|
|
31
33
|
* The selected date in the calendar view.
|
|
34
|
+
*
|
|
32
35
|
* @type {Date | null}
|
|
36
|
+
* @default null
|
|
33
37
|
*/
|
|
34
38
|
selectedDate?: Date | null;
|
|
35
39
|
/**
|
|
36
40
|
* The selected date range in the calendar view.
|
|
41
|
+
*
|
|
37
42
|
* @type {DateRangeState | null}
|
|
43
|
+
* @default null
|
|
38
44
|
*/
|
|
39
45
|
selectedDateRange?: DateRangeState | null;
|
|
40
46
|
/**
|
|
41
47
|
* The preview date for the calendar view.
|
|
42
48
|
* This property represents the date that is currently being previewed in the calendar view.
|
|
43
49
|
* It can be set to a specific date or null if no date is being previewed.
|
|
50
|
+
*
|
|
51
|
+
* @type {Date | null}
|
|
52
|
+
* @default null
|
|
44
53
|
*/
|
|
45
54
|
previewDate?: Date | null;
|
|
46
55
|
/**
|
|
47
56
|
* The minimum selectable date in the calendar view.
|
|
48
57
|
* If set, dates before this minimum date will be disabled for selection.
|
|
58
|
+
*
|
|
59
|
+
* @type {Date | null}
|
|
60
|
+
* @default null
|
|
49
61
|
*/
|
|
50
62
|
minDate?: Date | null;
|
|
51
63
|
/**
|
|
52
64
|
* The maximum selectable date in the calendar view.
|
|
53
65
|
* If set, dates after this maximum date will be disabled for selection.
|
|
66
|
+
*
|
|
67
|
+
* @type {Date | null}
|
|
68
|
+
* @default null
|
|
54
69
|
*/
|
|
55
70
|
maxDate?: Date | null;
|
|
56
71
|
/**
|
|
57
72
|
* The filter function used to determine if a date should be displayed in the calendar view.
|
|
58
73
|
* If set to `null`, no filtering will be applied.
|
|
59
74
|
*
|
|
75
|
+
* @type {DateFilter | null}
|
|
76
|
+
* @default null
|
|
77
|
+
*
|
|
60
78
|
* @remarks
|
|
61
79
|
* The filter function should accept a `Date` object as its parameter and return a boolean value.
|
|
62
80
|
* If the function returns `true`, the date will be displayed; if it returns `false`, the date will be hidden.
|
|
@@ -4,6 +4,10 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
* Transforms a given date into a formatted string based on the provided date format string.
|
|
5
5
|
* The transformation utilizes the `format` function from date-fns library and considers the locale
|
|
6
6
|
* from the global calendar configuration to ensure the date is represented in a locale-appropriate format.
|
|
7
|
+
*
|
|
8
|
+
* @param {Date | null} value - The date to format.
|
|
9
|
+
* @param {Intl.DateTimeFormatOptions} formatOptions - The format options to apply to the date.
|
|
10
|
+
* @returns {string} - The formatted date string.
|
|
7
11
|
*/
|
|
8
12
|
export declare class DateLabelPipe implements PipeTransform {
|
|
9
13
|
private readonly localizationService;
|
|
@@ -4,6 +4,13 @@ import { MenuComponent, MenuDirective } from '@odx/angular/components/menu';
|
|
|
4
4
|
import { CardVariant } from './models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "@odx/angular/cdk/a11y";
|
|
7
|
+
/**
|
|
8
|
+
* Represents a card component.
|
|
9
|
+
* It can contain a header, body, and footer. The card component can also have a menu and action buttons.
|
|
10
|
+
* Has host directive for interactivity.
|
|
11
|
+
*
|
|
12
|
+
* @see {InteractiveDirective}
|
|
13
|
+
*/
|
|
7
14
|
export declare class CardComponent {
|
|
8
15
|
private readonly interactiveDirective;
|
|
9
16
|
private readonly takeUntilDestroyed;
|
|
@@ -12,12 +19,29 @@ export declare class CardComponent {
|
|
|
12
19
|
protected readonly menuHost?: MenuDirective;
|
|
13
20
|
protected readonly footer?: ElementRef<HTMLElement>;
|
|
14
21
|
readonly element: ElementRef<HTMLElement>;
|
|
22
|
+
/**
|
|
23
|
+
* The variant of the card.
|
|
24
|
+
*
|
|
25
|
+
* @type {CardVariant}
|
|
26
|
+
* @default CardVariant.DEFAULT
|
|
27
|
+
*/
|
|
15
28
|
variant?: CardVariant;
|
|
29
|
+
/**
|
|
30
|
+
* Menu icon name.
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @default 'more'
|
|
34
|
+
*/
|
|
16
35
|
menuIcon: string;
|
|
36
|
+
/**
|
|
37
|
+
* Interactivity event emitter.
|
|
38
|
+
*
|
|
39
|
+
* @emits {Event}
|
|
40
|
+
*/
|
|
17
41
|
interact: EventEmitter<Event>;
|
|
18
42
|
constructor();
|
|
19
|
-
get launchTile(): boolean;
|
|
20
|
-
stopEvents
|
|
43
|
+
protected get launchTile(): boolean;
|
|
44
|
+
private stopEvents;
|
|
21
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
22
46
|
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "odx-card", never, { "variant": { "alias": "variant"; "required": false; }; "menuIcon": { "alias": "menuIcon"; "required": false; }; }, { "interact": "interact"; }, ["menu", "buttons", "footer"], ["odx-avatar", "odx-launch-card-subtitle", "[odxCardContent]", "odx-card-footer", "odx-menu", "*", "odx-action-group"], true, [{ directive: typeof i1.InteractiveDirective; inputs: {}; outputs: {}; }]>;
|
|
23
47
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Represents a card footer component.
|
|
4
|
+
*/
|
|
2
5
|
export declare class CardFooterComponent {
|
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
|
|
4
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "odx-card-footer", never, {}, {}, never, ["*"], true, never>;
|
package/components/card/lib/components/launch-card-subtitle/launch-card-subtitle.component.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Represents a launch card subtitle component.
|
|
4
|
+
*/
|
|
2
5
|
export declare class LaunchCardSubtitleComponent {
|
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<LaunchCardSubtitleComponent, never>;
|
|
4
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<LaunchCardSubtitleComponent, "odx-launch-card-subtitle", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Directive for displaying the content of a card.
|
|
4
|
+
*/
|
|
2
5
|
export declare class CardContentDirective {
|
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardContentDirective, never>;
|
|
4
7
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CardContentDirective, "[odxCardContent]", never, {}, {}, never, never, true, never>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Directive for displaying the title of a card.
|
|
4
|
+
*/
|
|
2
5
|
export declare class CardTitleDirective {
|
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardTitleDirective, never>;
|
|
4
7
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CardTitleDirective, "[odxCardTitle]", never, {}, {}, never, never, true, never>;
|
|
@@ -21,6 +21,9 @@ export declare class CheckboxComponent extends CheckBoxControl {
|
|
|
21
21
|
private isIndeterminate;
|
|
22
22
|
/**
|
|
23
23
|
* Gets or sets a value indicating whether the checkbox is in an indeterminate state.
|
|
24
|
+
*
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
*
|
|
24
27
|
* @remarks
|
|
25
28
|
* The indeterminate state is typically used when the checkbox represents a group of checkboxes
|
|
26
29
|
* and not all of them are checked or unchecked.
|
|
@@ -29,16 +32,20 @@ export declare class CheckboxComponent extends CheckBoxControl {
|
|
|
29
32
|
get indeterminate(): boolean;
|
|
30
33
|
/**
|
|
31
34
|
* Emits a boolean value when the indeterminate state of the checkbox changes.
|
|
35
|
+
*
|
|
36
|
+
* @emits {boolean} The new value of the indeterminate state.
|
|
32
37
|
*/
|
|
33
38
|
readonly indeterminateChange: EventEmitter<boolean>;
|
|
34
39
|
/**
|
|
35
40
|
* Gets the value of the `ariaChecked` attribute.
|
|
36
|
-
*
|
|
41
|
+
*
|
|
42
|
+
* @returns {string} - The value of the `ariaChecked` attribute as a string.
|
|
37
43
|
*/
|
|
38
44
|
get ariaChecked(): string;
|
|
39
45
|
/**
|
|
40
46
|
* Gets the modifier icon for the checkbox component.
|
|
41
|
-
*
|
|
47
|
+
*
|
|
48
|
+
* @returns {string} 'minus' if the checkbox is in indeterminate state, otherwise returns 'check'.
|
|
42
49
|
*/
|
|
43
50
|
get modifierIcon(): string;
|
|
44
51
|
onChanged(event: Event): void;
|
|
@@ -6,22 +6,34 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class ChipComponent {
|
|
8
8
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
9
|
+
/**
|
|
10
|
+
* Indicates whether the chip is removable.
|
|
11
|
+
*
|
|
12
|
+
* @type {boolean}
|
|
13
|
+
* @default false
|
|
14
|
+
*/
|
|
9
15
|
removable: boolean;
|
|
10
16
|
/**
|
|
11
17
|
* The size of the chip.
|
|
12
|
-
*
|
|
18
|
+
*
|
|
19
|
+
* @type {ChipSize}
|
|
20
|
+
* @default ChipSize.SMALL
|
|
13
21
|
*/
|
|
14
22
|
size: ChipSize;
|
|
15
23
|
/**
|
|
16
24
|
* The variant of the chip.
|
|
17
|
-
*
|
|
25
|
+
*
|
|
26
|
+
* @type {ChipVariant}
|
|
27
|
+
* @default ChipVariant.SECONDARY
|
|
18
28
|
*/
|
|
19
29
|
variant: ChipVariant;
|
|
20
30
|
/**
|
|
21
31
|
* Event emitter that emits when the chip is removed.
|
|
32
|
+
*
|
|
33
|
+
* @emits {void}
|
|
22
34
|
*/
|
|
23
35
|
remove: EventEmitter<void>;
|
|
24
|
-
onClick(): void;
|
|
36
|
+
protected onClick(): void;
|
|
25
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipComponent, never>;
|
|
26
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "odx-chip", never, { "removable": { "alias": "removable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "remove": "remove"; }, never, ["*"], true, never>;
|
|
27
39
|
static ngAcceptInputType_removable: unknown;
|
|
@@ -20,23 +20,36 @@ export declare class CircularProgressComponent implements OnChanges, AfterViewIn
|
|
|
20
20
|
/**
|
|
21
21
|
* Specifies whether the circular progress is in indeterminate mode.
|
|
22
22
|
* In indeterminate mode, the progress indicator continuously animates without a specific value.
|
|
23
|
+
*
|
|
24
|
+
* @type {boolean}
|
|
25
|
+
* @default false
|
|
23
26
|
*/
|
|
24
27
|
indeterminate: boolean;
|
|
25
28
|
/**
|
|
26
29
|
* The width of the stroke for the circular progress component.
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @default 4
|
|
27
33
|
*/
|
|
28
34
|
stroke: number;
|
|
29
35
|
/**
|
|
30
36
|
* The size of the circular progress component.
|
|
31
|
-
*
|
|
37
|
+
*
|
|
38
|
+
* @type {CircularProgressSize}
|
|
39
|
+
* @default CircularProgressSize.MEDIUM
|
|
32
40
|
*/
|
|
33
41
|
size: CircularProgressSize;
|
|
34
42
|
/**
|
|
35
43
|
* Sets and gets the value of the circular progress component.
|
|
36
44
|
*
|
|
37
|
-
* @param value - The value to set. Must be between -1 and 100 (inclusive).
|
|
45
|
+
* @param {number} value - The value to set. Must be between -1 and 100 (inclusive).
|
|
38
46
|
*/
|
|
39
47
|
set value(value: number);
|
|
48
|
+
/**
|
|
49
|
+
* Gets the value of the circular progress.
|
|
50
|
+
*
|
|
51
|
+
* @returns {number} The current value of the circular progress.
|
|
52
|
+
*/
|
|
40
53
|
get value(): number;
|
|
41
54
|
ngAfterViewInit(): void;
|
|
42
55
|
ngOnChanges(changes: NgChanges<CircularProgressComponent>): void;
|
|
@@ -30,20 +30,47 @@ export declare class DatepickerComponent extends CustomFormControl<Date | null>
|
|
|
30
30
|
* @type {Date}
|
|
31
31
|
*/
|
|
32
32
|
today: Date;
|
|
33
|
+
/**
|
|
34
|
+
* The filter function used to determine if a date should be included or excluded in the datepicker.
|
|
35
|
+
* If set to `null`, no filtering will be applied.
|
|
36
|
+
*
|
|
37
|
+
* @type {DateFilter | null}
|
|
38
|
+
* @default null
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* ```ts
|
|
42
|
+
* // Excludes mondays from the datepicker.
|
|
43
|
+
* const filterFn: DateFilter = (date) => date.getDay() !== 1;
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
33
46
|
filterFn: DateFilter | null;
|
|
47
|
+
/**
|
|
48
|
+
* The minimum selectable date for the datepicker.
|
|
49
|
+
* If set to null, there is no minimum date restriction.
|
|
50
|
+
*
|
|
51
|
+
* @type {Date | null}
|
|
52
|
+
* @default null
|
|
53
|
+
*/
|
|
34
54
|
minDate: Date | null;
|
|
35
55
|
/**
|
|
36
56
|
* The maximum selectable date for the datepicker.
|
|
37
57
|
* If set to null, there is no maximum date restriction.
|
|
38
58
|
*
|
|
39
59
|
* @type {Date | null}
|
|
60
|
+
* @default null
|
|
40
61
|
*/
|
|
41
62
|
maxDate: Date | null;
|
|
63
|
+
/**
|
|
64
|
+
* The position of the dropdown relative to the input field.
|
|
65
|
+
*
|
|
66
|
+
* @type {Position}
|
|
67
|
+
* @default Position.BOTTOM
|
|
68
|
+
*/
|
|
42
69
|
dropdownPosition: Position;
|
|
43
70
|
/**
|
|
44
71
|
* Emits the selected date when it changes.
|
|
45
72
|
*
|
|
46
|
-
* @
|
|
73
|
+
* @emits {Date}
|
|
47
74
|
*/
|
|
48
75
|
selectedChange: EventEmitter<Date>;
|
|
49
76
|
/**
|
|
@@ -40,12 +40,18 @@ export declare class DatepickerInputControlDirective extends InputControlDirecti
|
|
|
40
40
|
* Applies the configured input mask to the native element's value.
|
|
41
41
|
*/
|
|
42
42
|
applyMask(): void;
|
|
43
|
+
/**
|
|
44
|
+
* Gets the current value of the input field as a `Date` object, based on the date format from the datepicker
|
|
45
|
+
* configuration.
|
|
46
|
+
*
|
|
47
|
+
* @returns {Date | null} - The current value of the input field as a `Date` object, or `null` if the value is invalid.
|
|
48
|
+
*/
|
|
43
49
|
get valueAsDate(): Date | null;
|
|
44
50
|
/**
|
|
45
51
|
* Computes the placeholder text for the input based on the date format from
|
|
46
52
|
* the datepicker configuration.
|
|
47
53
|
*
|
|
48
|
-
* @returns {string} The placeholder text, typically the date format in uppercase.
|
|
54
|
+
* @returns {string} - The placeholder text, typically the date format in uppercase.
|
|
49
55
|
*/
|
|
50
56
|
get placeholder(): string;
|
|
51
57
|
protected handleFocusIn(): void;
|
|
@@ -36,6 +36,7 @@ export declare class DaterangepickerComponent extends CustomFormControl<DateRang
|
|
|
36
36
|
* A function that defines additional rules for disabled dates within the picker.
|
|
37
37
|
*
|
|
38
38
|
* @type {DateFilter | null}
|
|
39
|
+
* @default null
|
|
39
40
|
*
|
|
40
41
|
* @example
|
|
41
42
|
* ```ts
|
|
@@ -48,18 +49,21 @@ export declare class DaterangepickerComponent extends CustomFormControl<DateRang
|
|
|
48
49
|
* The earliest date that can be selected in the picker.
|
|
49
50
|
*
|
|
50
51
|
* @type {Date | null}
|
|
52
|
+
* @default null
|
|
51
53
|
*/
|
|
52
54
|
minDate: Date | null;
|
|
53
55
|
/**
|
|
54
56
|
* The latest date that can be selected in the picker.
|
|
55
57
|
*
|
|
56
58
|
* @type {Date | null}
|
|
59
|
+
* @default null
|
|
57
60
|
*/
|
|
58
61
|
maxDate: Date | null;
|
|
59
62
|
/**
|
|
60
63
|
* Position of the dropdown relative to the input fields.
|
|
61
64
|
*
|
|
62
65
|
* @type {Position}
|
|
66
|
+
* @default Position.BOTTOM
|
|
63
67
|
*/
|
|
64
68
|
dropdownPosition: Position;
|
|
65
69
|
/**
|
package/components/daterangepicker/lib/directives/daterangepicker-input-control.directive.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export declare class DaterangepickerInputControlDirective extends InputControlDi
|
|
|
31
31
|
* Captures and processes changes to the input element's value, applying the mask and updating
|
|
32
32
|
* the form control.
|
|
33
33
|
*
|
|
34
|
-
* @
|
|
34
|
+
* @emits {string} - The updated value of the input element.
|
|
35
35
|
*/
|
|
36
36
|
valueChange$: import("rxjs").Observable<string>;
|
|
37
37
|
/**
|
|
@@ -40,11 +40,13 @@ export declare class DaterangepickerInputControlDirective extends InputControlDi
|
|
|
40
40
|
applyMask(): void;
|
|
41
41
|
/**
|
|
42
42
|
* Converts the current input value to a Date object based on the configuration's date format.
|
|
43
|
+
*
|
|
43
44
|
* @returns {Date | null} The parsed date object or null if the input does not represent a valid date.
|
|
44
45
|
*/
|
|
45
46
|
get valueAsDate(): Date | null;
|
|
46
47
|
/**
|
|
47
48
|
* Provides the placeholder text for the input, typically the date format in uppercase.
|
|
49
|
+
*
|
|
48
50
|
* @returns {string} The placeholder text for the input.
|
|
49
51
|
*/
|
|
50
52
|
get placeholder(): string;
|
|
@@ -8,6 +8,14 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* form control as having a validation error.
|
|
9
9
|
*/
|
|
10
10
|
export declare class DaterangepickerRequiredValidator {
|
|
11
|
+
/**
|
|
12
|
+
* Validates the form control associated with the date range input.
|
|
13
|
+
* Checks if both start and end dates are present. If either is missing, it returns a validation error.
|
|
14
|
+
*
|
|
15
|
+
* @param {FormControl<DateRange | null>} control - The form control instance that contains the date range value.
|
|
16
|
+
* @returns {ValidationErrors | null} An object expressing validation errors if the range is incomplete,
|
|
17
|
+
* or null if the range is fully specified. If validation fails, the object returned is `{ required: true }`.
|
|
18
|
+
*/
|
|
11
19
|
validate({ value }: FormControl<DateRange | null>): false | {
|
|
12
20
|
required: boolean;
|
|
13
21
|
};
|
|
@@ -11,20 +11,22 @@ export declare class DropdownComponent {
|
|
|
11
11
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
12
12
|
/**
|
|
13
13
|
* The content to be displayed in the dropdown.
|
|
14
|
+
*
|
|
15
|
+
* @type {DynamicContent | null}
|
|
14
16
|
*/
|
|
15
17
|
content?: DynamicContent | null;
|
|
16
18
|
/**
|
|
17
19
|
* Indicates whether to show a loader while loading the dropdown content.
|
|
20
|
+
*
|
|
21
|
+
* @type {boolean | undefined}
|
|
18
22
|
*/
|
|
19
23
|
showLoader?: boolean;
|
|
20
24
|
/**
|
|
21
25
|
* Indicates whether clicking outside the dropdown should close it.
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean | undefined}
|
|
22
28
|
*/
|
|
23
29
|
clickOutsideActive?: boolean;
|
|
24
|
-
/**
|
|
25
|
-
* Event listener for the CloseDropdownEvent.
|
|
26
|
-
* Closes the dropdown when the event is triggered.
|
|
27
|
-
*/
|
|
28
30
|
protected onDropdownClose(): void;
|
|
29
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
30
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "odx-dropdown", never, { "content": { "alias": "content"; "required": false; }; "showLoader": { "alias": "showLoader"; "required": false; }; "clickOutsideActive": { "alias": "clickOutsideActive"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -20,63 +20,98 @@ export declare class DropdownDirective implements AfterViewInit, OnChanges, OnDe
|
|
|
20
20
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
21
21
|
/**
|
|
22
22
|
* Gets a value indicating whether the dropdown is currently open.
|
|
23
|
+
*
|
|
24
|
+
* @returns {boolean}
|
|
23
25
|
*/
|
|
24
26
|
get isOpen(): boolean;
|
|
25
27
|
/**
|
|
26
28
|
* The content to be displayed in the dropdown.
|
|
27
29
|
* It can be either a static content or a dynamically loaded content.
|
|
30
|
+
*
|
|
31
|
+
* @type {DynamicContent | null}
|
|
28
32
|
*/
|
|
29
33
|
content?: DynamicContent | null;
|
|
30
34
|
/**
|
|
31
35
|
* Indicates whether the dropdown is disabled or not.
|
|
36
|
+
*
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @default false
|
|
32
39
|
*/
|
|
33
40
|
disabled: boolean;
|
|
34
41
|
/**
|
|
35
42
|
* Indicates whether the loader should be shown.
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @default false
|
|
36
46
|
*/
|
|
37
47
|
showLoader: boolean;
|
|
38
48
|
/**
|
|
39
49
|
* Determines whether the dropdown should close when a click event occurs outside of it.
|
|
50
|
+
*
|
|
51
|
+
* @type {boolean}
|
|
52
|
+
* @default true
|
|
40
53
|
*/
|
|
41
54
|
clickOutsideActive: boolean;
|
|
42
55
|
/**
|
|
43
56
|
* The options to be used when creating the dropdown overlay.
|
|
57
|
+
*
|
|
58
|
+
* @type {Partial<DropdownOptions> | null}
|
|
44
59
|
*/
|
|
45
60
|
options?: Partial<DropdownOptions> | null;
|
|
46
61
|
/**
|
|
47
62
|
* The reference element to which the dropdown is anchored.
|
|
63
|
+
*
|
|
64
|
+
* @type {HTMLElement | null}
|
|
48
65
|
*/
|
|
49
66
|
referenceElement?: HTMLElement | null;
|
|
50
67
|
/**
|
|
51
68
|
* The trigger element that opens the dropdown.
|
|
69
|
+
*
|
|
70
|
+
* @type {HTMLElement | null}
|
|
52
71
|
*/
|
|
53
72
|
triggerElement?: HTMLElement | null;
|
|
54
73
|
/**
|
|
55
74
|
* The host element to which the dropdown is appended.
|
|
75
|
+
*
|
|
76
|
+
* @type {HTMLElement | ViewContainerRef | null}
|
|
56
77
|
*/
|
|
57
78
|
host?: HTMLElement | ViewContainerRef | null;
|
|
58
79
|
/**
|
|
59
80
|
* The event triggers that open the dropdown.
|
|
81
|
+
*
|
|
82
|
+
* @type {string[] | null}
|
|
83
|
+
* @default DEFAULT_DROPDOWN_OPEN_TRIGGERS
|
|
60
84
|
*/
|
|
61
85
|
openTrigger?: string[] | null;
|
|
62
86
|
/**
|
|
63
87
|
* The event triggers that close the dropdown.
|
|
88
|
+
*
|
|
89
|
+
* @type {string[] | null}
|
|
90
|
+
* @default DEFAULT_DROPDOWN_CLOSE_TRIGGERS
|
|
64
91
|
*/
|
|
65
92
|
closeTrigger?: string[] | null;
|
|
66
93
|
/**
|
|
67
94
|
* Event emitter that emits before the dropdown is opened.
|
|
95
|
+
*
|
|
96
|
+
* @emits {void}
|
|
68
97
|
*/
|
|
69
98
|
beforeOpen: EventEmitter<void>;
|
|
70
99
|
/**
|
|
71
100
|
* Event emitter that emits after the dropdown is opened.
|
|
101
|
+
*
|
|
102
|
+
* @emits {void}
|
|
72
103
|
*/
|
|
73
104
|
afterOpen: EventEmitter<void>;
|
|
74
105
|
/**
|
|
75
106
|
* Event emitter that emits before the dropdown is closed.
|
|
107
|
+
*
|
|
108
|
+
* @emits {void}
|
|
76
109
|
*/
|
|
77
110
|
beforeClose: EventEmitter<void>;
|
|
78
111
|
/**
|
|
79
112
|
* Event emitter that emits after the dropdown is closed.
|
|
113
|
+
*
|
|
114
|
+
* @emits {void}
|
|
80
115
|
*/
|
|
81
116
|
afterClose: EventEmitter<void>;
|
|
82
117
|
ngAfterViewInit(): void;
|
|
@@ -86,19 +121,19 @@ export declare class DropdownDirective implements AfterViewInit, OnChanges, OnDe
|
|
|
86
121
|
* Toggles the state of the dropdown.
|
|
87
122
|
* If the dropdown is open, it will be closed. If it is closed, it will be opened.
|
|
88
123
|
*
|
|
89
|
-
* @param event - The optional event that triggered the toggle.
|
|
124
|
+
* @param {Event | undefined} event - The optional event that triggered the toggle.
|
|
90
125
|
*/
|
|
91
126
|
toggle(event?: Event): void;
|
|
92
127
|
/**
|
|
93
128
|
* Opens the dropdown.
|
|
94
129
|
*
|
|
95
|
-
* @param event - The optional event that triggered the open.
|
|
130
|
+
* @param {Event | undefined} event - The optional event that triggered the open.
|
|
96
131
|
*/
|
|
97
132
|
open(event?: Event): void;
|
|
98
133
|
/**
|
|
99
134
|
* Closes the dropdown.
|
|
100
135
|
*
|
|
101
|
-
* @param event - The optional event that triggered the close.
|
|
136
|
+
* @param {Event | undefined} event - The optional event that triggered the close.
|
|
102
137
|
*/
|
|
103
138
|
close(event?: Event): void;
|
|
104
139
|
private createOverlayOptions;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
+
* @internal
|
|
2
3
|
* Dispatches a CloseDropdownEvent for target to close the current dropdown.
|
|
3
4
|
*
|
|
4
|
-
* @param target - The target element to close the dropdown for.
|
|
5
|
+
* @param {Element} target - The target element to close the dropdown for.
|
|
5
6
|
*/
|
|
6
7
|
export declare function closeCurrentDropdown(target: Element): void;
|
|
@@ -7,6 +7,8 @@ export declare class ErrorPageComponent {
|
|
|
7
7
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
8
8
|
/**
|
|
9
9
|
* Represents the options for the error page component.
|
|
10
|
+
*
|
|
11
|
+
* @type {ErrorPageConfig}
|
|
10
12
|
*/
|
|
11
13
|
options: import("./error-page.config").ErrorPageConfig;
|
|
12
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorPageComponent, never>;
|