@odx/angular 1.0.0-rc.4 → 1.0.0-rc.5
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/animations/index.d.ts +1 -0
- package/animations/lib/wait-for-child-animations.d.ts +1 -0
- package/cdk/active-indicator/README.md +3 -0
- package/cdk/active-indicator/index.d.ts +2 -0
- package/cdk/active-indicator/lib/active-indicator.directive.d.ts +24 -0
- package/cdk/active-indicator/lib/models/active-indicator-direction.d.ts +5 -0
- package/cdk/active-indicator/lib/models/active-indicator-position.d.ts +6 -0
- package/cdk/active-indicator/lib/models/index.d.ts +2 -0
- package/cdk/checkbox-control/lib/checkbox-control.directive.d.ts +2 -3
- package/cdk/custom-form-control/lib/custom-form-control.d.ts +7 -14
- package/cdk/dynamic-view/lib/dynamic-view.service.d.ts +1 -0
- package/cdk/dynamic-view/lib/facade/dynamic-view-ref.d.ts +1 -0
- package/cdk/dynamic-view/lib/models/dynamic-component-ref.d.ts +1 -0
- package/cdk/dynamic-view/lib/models/dynamic-template-ref.d.ts +1 -0
- package/cdk/dynamic-view/lib/models/dynamic-view-options.d.ts +6 -3
- package/cdk/dynamic-view/lib/tokens/dynamic-view-default-host.d.ts +3 -0
- package/cdk/dynamic-view/lib/tokens/index.d.ts +1 -0
- package/components/checkbox/index.d.ts +2 -0
- package/components/checkbox/lib/checkbox.module.d.ts +9 -0
- package/components/checkbox/lib/checkbox.validator.d.ts +6 -0
- package/components/form-field/lib/components/form-group/form-group.component.d.ts +0 -1
- package/components/form-field/lib/directives/form-field-control.directive.d.ts +3 -4
- package/components/form-field/lib/form-field.config.d.ts +0 -5
- package/components/list/README.md +3 -0
- package/components/list/index.d.ts +3 -0
- package/components/list/lib/components/index.d.ts +1 -0
- package/components/list/lib/components/list-item.component.d.ts +14 -0
- package/components/list/lib/list.component.d.ts +5 -0
- package/components/list/lib/list.module.d.ts +9 -0
- package/components/main-menu/lib/directives/main-menu-item.directive.d.ts +1 -1
- package/components/modal/lib/modal.component.d.ts +2 -2
- package/components/modal/lib/modal.service.d.ts +0 -2
- package/components/modal/lib/models/index.d.ts +1 -0
- package/components/modal/lib/models/modal-options.d.ts +2 -0
- package/components/modal/lib/models/modal-variant.d.ts +5 -0
- package/components/rail-navigation/README.md +3 -0
- package/components/rail-navigation/index.d.ts +3 -0
- package/components/rail-navigation/lib/components/rail-navigation-item.component.d.ts +15 -0
- package/components/rail-navigation/lib/rail-navigation.component.d.ts +12 -0
- package/components/rail-navigation/lib/rail-navigation.module.d.ts +9 -0
- package/components/switch/index.d.ts +2 -0
- package/components/switch/lib/switch.module.d.ts +9 -0
- package/components/switch/lib/switch.validator.d.ts +6 -0
- package/components/toggle-button-group/lib/toggle-button-group.component.d.ts +5 -1
- package/esm2020/animations/index.mjs +2 -1
- package/esm2020/animations/lib/wait-for-child-animations.mjs +3 -0
- package/esm2020/cdk/active-indicator/index.mjs +3 -0
- package/esm2020/cdk/active-indicator/lib/active-indicator.directive.mjs +127 -0
- package/esm2020/cdk/active-indicator/lib/models/active-indicator-direction.mjs +5 -0
- package/esm2020/cdk/active-indicator/lib/models/active-indicator-position.mjs +6 -0
- package/esm2020/cdk/active-indicator/lib/models/index.mjs +3 -0
- package/esm2020/cdk/active-indicator/odx-angular-cdk-active-indicator.mjs +5 -0
- package/esm2020/cdk/checkbox-control/lib/checkbox-control.directive.mjs +11 -13
- package/esm2020/cdk/custom-form-control/lib/control.directive.mjs +4 -4
- package/esm2020/cdk/custom-form-control/lib/custom-form-control.mjs +20 -47
- package/esm2020/cdk/dynamic-view/lib/dynamic-view.component.mjs +4 -4
- package/esm2020/cdk/dynamic-view/lib/dynamic-view.directive.mjs +5 -5
- package/esm2020/cdk/dynamic-view/lib/dynamic-view.service.mjs +11 -9
- package/esm2020/cdk/dynamic-view/lib/facade/dynamic-view-ref.mjs +1 -1
- package/esm2020/cdk/dynamic-view/lib/models/dynamic-component-ref.mjs +12 -5
- package/esm2020/cdk/dynamic-view/lib/models/dynamic-template-ref.mjs +9 -5
- package/esm2020/cdk/dynamic-view/lib/models/dynamic-view-options.mjs +1 -1
- package/esm2020/cdk/dynamic-view/lib/tokens/dynamic-view-default-host.mjs +10 -0
- package/esm2020/cdk/dynamic-view/lib/tokens/index.mjs +2 -1
- package/esm2020/cdk/expandable/lib/directives/expandable-item.directive.mjs +4 -4
- package/esm2020/cdk/expandable/lib/directives/extandable-container.directive.mjs +4 -4
- package/esm2020/cdk/expandable/lib/expandable.module.mjs +5 -5
- package/esm2020/cdk/radio-group-control/lib/radio-control.directive.mjs +5 -5
- package/esm2020/cdk/radio-group-control/lib/radio-group-control.directive.mjs +4 -4
- package/esm2020/cdk/radio-group-control/lib/radio-group-control.module.mjs +5 -5
- package/esm2020/components/accordion/lib/accordion.component.mjs +4 -4
- package/esm2020/components/accordion/lib/accordion.module.mjs +5 -5
- package/esm2020/components/accordion/lib/components/accordion-item/accordion-item.component.mjs +4 -4
- package/esm2020/components/accordion/lib/directives/accordion-item-title.mjs +4 -4
- package/esm2020/components/action-group/action-group.component.mjs +4 -4
- package/esm2020/components/area-header/area-header.component.mjs +4 -4
- package/esm2020/components/area-header/area-header.module.mjs +5 -5
- package/esm2020/components/area-header/directives/area-header-content.directive.mjs +4 -4
- package/esm2020/components/area-header/directives/area-header-subtitle.directive.mjs +4 -4
- package/esm2020/components/avatar/lib/avatar.component.mjs +4 -4
- package/esm2020/components/badge/lib/badge.component.mjs +6 -6
- package/esm2020/components/badge/lib/badge.directive.mjs +7 -7
- package/esm2020/components/button/lib/button.component.mjs +5 -5
- package/esm2020/components/button-group/lib/button-group.component.mjs +4 -4
- package/esm2020/components/checkbox/index.mjs +3 -1
- package/esm2020/components/checkbox/lib/checkbox.component.mjs +5 -5
- package/esm2020/components/checkbox/lib/checkbox.module.mjs +19 -0
- package/esm2020/components/checkbox/lib/checkbox.validator.mjs +28 -0
- package/esm2020/components/chip/lib/chip.component.mjs +4 -4
- package/esm2020/components/circular-progress/lib/circular-progress.component.mjs +4 -4
- package/esm2020/components/content-box/lib/content-box.component.mjs +4 -4
- package/esm2020/components/content-box/lib/content-box.module.mjs +5 -5
- package/esm2020/components/content-box/lib/directives/content-box-footer-directive.mjs +4 -4
- package/esm2020/components/content-box/lib/directives/content-box-header-directive.mjs +4 -4
- package/esm2020/components/form-field/lib/components/form-field-info/form-field-info.component.mjs +4 -4
- package/esm2020/components/form-field/lib/components/form-group/form-group.component.mjs +11 -13
- package/esm2020/components/form-field/lib/directives/form-field-control.directive.mjs +20 -13
- package/esm2020/components/form-field/lib/directives/form-field-error.directive.mjs +4 -4
- package/esm2020/components/form-field/lib/directives/form-field-hint.directive.mjs +4 -4
- package/esm2020/components/form-field/lib/directives/form-field-label.directive.mjs +4 -4
- package/esm2020/components/form-field/lib/directives/form.directive.mjs +4 -4
- package/esm2020/components/form-field/lib/form-field.component.mjs +4 -4
- package/esm2020/components/form-field/lib/form-field.config.mjs +1 -2
- package/esm2020/components/form-field/lib/form-field.module.mjs +5 -5
- package/esm2020/components/form-field/lib/form-field.service.mjs +4 -4
- package/esm2020/components/form-field/lib/services/form-field-error.service.mjs +4 -4
- package/esm2020/components/header/lib/directives/header-avatar.directive.mjs +4 -4
- package/esm2020/components/header/lib/directives/header-title.directive.mjs +4 -4
- package/esm2020/components/header/lib/header.component.mjs +4 -4
- package/esm2020/components/header/lib/header.module.mjs +5 -5
- package/esm2020/components/icon/lib/icon.component.mjs +4 -4
- package/esm2020/components/link/link.directive.mjs +4 -4
- package/esm2020/components/list/index.mjs +4 -0
- package/esm2020/components/list/lib/components/index.mjs +2 -0
- package/esm2020/components/list/lib/components/list-item.component.mjs +46 -0
- package/esm2020/components/list/lib/list.component.mjs +13 -0
- package/esm2020/components/list/lib/list.module.mjs +19 -0
- package/esm2020/components/list/odx-angular-components-list.mjs +5 -0
- package/esm2020/components/loading-spinner/lib/loading-spinner.component.mjs +4 -4
- package/esm2020/components/loading-spinner/lib/loading-spinner.directive.mjs +7 -7
- package/esm2020/components/loading-spinner/lib/loading-spinner.module.mjs +5 -5
- package/esm2020/components/loading-spinner/lib/loading-spinner.service.mjs +4 -4
- package/esm2020/components/logo/logo.directive.mjs +4 -4
- package/esm2020/components/main-menu/lib/directives/main-menu-button.directive.mjs +4 -4
- package/esm2020/components/main-menu/lib/directives/main-menu-item.directive.mjs +4 -4
- package/esm2020/components/main-menu/lib/main-menu.component.mjs +4 -4
- package/esm2020/components/main-menu/lib/main-menu.module.mjs +5 -5
- package/esm2020/components/main-menu/lib/main-menu.service.mjs +4 -4
- package/esm2020/components/modal/lib/components/modal-footer/modal-footer.component.mjs +4 -4
- package/esm2020/components/modal/lib/components/modal-header/modal-header.component.mjs +4 -4
- package/esm2020/components/modal/lib/directives/modal-close.directive.mjs +4 -4
- package/esm2020/components/modal/lib/directives/modal-content.directive.mjs +4 -4
- package/esm2020/components/modal/lib/directives/modal-dismiss.directive.mjs +4 -4
- package/esm2020/components/modal/lib/modal.component.mjs +23 -14
- package/esm2020/components/modal/lib/modal.config.mjs +3 -1
- package/esm2020/components/modal/lib/modal.directive.mjs +4 -4
- package/esm2020/components/modal/lib/modal.module.mjs +5 -5
- package/esm2020/components/modal/lib/modal.service.mjs +8 -21
- package/esm2020/components/modal/lib/models/index.mjs +2 -1
- package/esm2020/components/modal/lib/models/modal-options.mjs +1 -1
- package/esm2020/components/modal/lib/models/modal-variant.mjs +5 -0
- package/esm2020/components/modal/lib/services/open-modal-manager.service.mjs +4 -4
- package/esm2020/components/progress/lib/progress.component.mjs +4 -4
- package/esm2020/components/radio-group/lib/components/radio-button/radio-button.component.mjs +5 -5
- package/esm2020/components/radio-group/lib/radio-group.component.mjs +4 -4
- package/esm2020/components/radio-group/lib/radio-group.module.mjs +5 -5
- package/esm2020/components/rail-navigation/index.mjs +4 -0
- package/esm2020/components/rail-navigation/lib/components/rail-navigation-item.component.mjs +43 -0
- package/esm2020/components/rail-navigation/lib/rail-navigation.component.mjs +41 -0
- package/esm2020/components/rail-navigation/lib/rail-navigation.module.mjs +19 -0
- package/esm2020/components/rail-navigation/odx-angular-components-rail-navigation.mjs +5 -0
- package/esm2020/components/switch/index.mjs +3 -1
- package/esm2020/components/switch/lib/switch.component.mjs +5 -5
- package/esm2020/components/switch/lib/switch.module.mjs +19 -0
- package/esm2020/components/switch/lib/switch.validator.mjs +28 -0
- package/esm2020/components/toggle-button-group/lib/components/toggle-button/toggle-button.component.mjs +5 -5
- package/esm2020/components/toggle-button-group/lib/toggle-button-group.component.mjs +20 -11
- package/esm2020/components/toggle-button-group/lib/toggle-button-group.module.mjs +5 -5
- package/esm2020/lib/controllers/controller.mjs +10 -9
- package/esm2020/lib/controllers/disabled.controller.mjs +7 -6
- package/esm2020/lib/controllers/readonly.controller.mjs +7 -6
- package/esm2020/lib/core.module.mjs +5 -5
- package/esm2020/lib/directives/click-outside.directive.mjs +4 -4
- package/esm2020/lib/services/window-ref.mjs +4 -4
- package/esm2020/rxjs/index.mjs +2 -2
- package/esm2020/rxjs/lib/from-element-resize.mjs +14 -0
- package/esm2020/utils/lib/helpers/angular.mjs +5 -2
- package/esm2020/utils/lib/helpers/dom.mjs +24 -1
- package/fesm2015/odx-angular-animations.mjs +4 -2
- package/fesm2015/odx-angular-animations.mjs.map +1 -1
- package/fesm2015/odx-angular-cdk-active-indicator.mjs +142 -0
- package/fesm2015/odx-angular-cdk-active-indicator.mjs.map +1 -0
- package/fesm2015/odx-angular-cdk-checkbox-control.mjs +10 -12
- package/fesm2015/odx-angular-cdk-checkbox-control.mjs.map +1 -1
- package/fesm2015/odx-angular-cdk-custom-form-control.mjs +24 -51
- package/fesm2015/odx-angular-cdk-custom-form-control.mjs.map +1 -1
- package/fesm2015/odx-angular-cdk-dynamic-view.mjs +46 -25
- package/fesm2015/odx-angular-cdk-dynamic-view.mjs.map +1 -1
- package/fesm2015/odx-angular-cdk-expandable.mjs +10 -10
- package/fesm2015/odx-angular-cdk-expandable.mjs.map +1 -1
- package/fesm2015/odx-angular-cdk-radio-group-control.mjs +11 -11
- package/fesm2015/odx-angular-cdk-radio-group-control.mjs.map +1 -1
- package/fesm2015/odx-angular-components-accordion.mjs +13 -13
- package/fesm2015/odx-angular-components-accordion.mjs.map +1 -1
- package/fesm2015/odx-angular-components-action-group.mjs +3 -3
- package/fesm2015/odx-angular-components-action-group.mjs.map +1 -1
- package/fesm2015/odx-angular-components-area-header.mjs +13 -13
- package/fesm2015/odx-angular-components-area-header.mjs.map +1 -1
- package/fesm2015/odx-angular-components-avatar.mjs +3 -3
- package/fesm2015/odx-angular-components-avatar.mjs.map +1 -1
- package/fesm2015/odx-angular-components-badge.mjs +10 -10
- package/fesm2015/odx-angular-components-badge.mjs.map +1 -1
- package/fesm2015/odx-angular-components-button-group.mjs +3 -3
- package/fesm2015/odx-angular-components-button-group.mjs.map +1 -1
- package/fesm2015/odx-angular-components-button.mjs +4 -5
- package/fesm2015/odx-angular-components-button.mjs.map +1 -1
- package/fesm2015/odx-angular-components-checkbox.mjs +47 -7
- package/fesm2015/odx-angular-components-checkbox.mjs.map +1 -1
- package/fesm2015/odx-angular-components-chip.mjs +3 -3
- package/fesm2015/odx-angular-components-chip.mjs.map +1 -1
- package/fesm2015/odx-angular-components-circular-progress.mjs +3 -3
- package/fesm2015/odx-angular-components-circular-progress.mjs.map +1 -1
- package/fesm2015/odx-angular-components-content-box.mjs +13 -13
- package/fesm2015/odx-angular-components-content-box.mjs.map +1 -1
- package/fesm2015/odx-angular-components-form-field.mjs +52 -51
- package/fesm2015/odx-angular-components-form-field.mjs.map +1 -1
- package/fesm2015/odx-angular-components-header.mjs +13 -13
- package/fesm2015/odx-angular-components-header.mjs.map +1 -1
- package/fesm2015/odx-angular-components-icon.mjs +3 -3
- package/fesm2015/odx-angular-components-icon.mjs.map +1 -1
- package/fesm2015/odx-angular-components-link.mjs +3 -3
- package/fesm2015/odx-angular-components-link.mjs.map +1 -1
- package/fesm2015/odx-angular-components-list.mjs +79 -0
- package/fesm2015/odx-angular-components-list.mjs.map +1 -0
- package/fesm2015/odx-angular-components-loading-spinner.mjs +16 -16
- package/fesm2015/odx-angular-components-loading-spinner.mjs.map +1 -1
- package/fesm2015/odx-angular-components-logo.mjs +3 -3
- package/fesm2015/odx-angular-components-logo.mjs.map +1 -1
- package/fesm2015/odx-angular-components-main-menu.mjs +16 -16
- package/fesm2015/odx-angular-components-main-menu.mjs.map +1 -1
- package/fesm2015/odx-angular-components-modal.mjs +61 -58
- package/fesm2015/odx-angular-components-modal.mjs.map +1 -1
- package/fesm2015/odx-angular-components-progress.mjs +3 -3
- package/fesm2015/odx-angular-components-progress.mjs.map +1 -1
- package/fesm2015/odx-angular-components-radio-group.mjs +11 -11
- package/fesm2015/odx-angular-components-radio-group.mjs.map +1 -1
- package/fesm2015/odx-angular-components-rail-navigation.mjs +97 -0
- package/fesm2015/odx-angular-components-rail-navigation.mjs.map +1 -0
- package/fesm2015/odx-angular-components-switch.mjs +47 -7
- package/fesm2015/odx-angular-components-switch.mjs.map +1 -1
- package/fesm2015/odx-angular-components-toggle-button-group.mjs +26 -18
- package/fesm2015/odx-angular-components-toggle-button-group.mjs.map +1 -1
- package/fesm2015/odx-angular-rxjs.mjs +15 -6
- package/fesm2015/odx-angular-rxjs.mjs.map +1 -1
- package/fesm2015/odx-angular-utils.mjs +28 -2
- package/fesm2015/odx-angular-utils.mjs.map +1 -1
- package/fesm2015/odx-angular.mjs +32 -28
- package/fesm2015/odx-angular.mjs.map +1 -1
- package/fesm2020/odx-angular-animations.mjs +4 -2
- package/fesm2020/odx-angular-animations.mjs.map +1 -1
- package/fesm2020/odx-angular-cdk-active-indicator.mjs +142 -0
- package/fesm2020/odx-angular-cdk-active-indicator.mjs.map +1 -0
- package/fesm2020/odx-angular-cdk-checkbox-control.mjs +10 -12
- package/fesm2020/odx-angular-cdk-checkbox-control.mjs.map +1 -1
- package/fesm2020/odx-angular-cdk-custom-form-control.mjs +22 -49
- package/fesm2020/odx-angular-cdk-custom-form-control.mjs.map +1 -1
- package/fesm2020/odx-angular-cdk-dynamic-view.mjs +42 -22
- package/fesm2020/odx-angular-cdk-dynamic-view.mjs.map +1 -1
- package/fesm2020/odx-angular-cdk-expandable.mjs +10 -10
- package/fesm2020/odx-angular-cdk-expandable.mjs.map +1 -1
- package/fesm2020/odx-angular-cdk-radio-group-control.mjs +11 -11
- package/fesm2020/odx-angular-cdk-radio-group-control.mjs.map +1 -1
- package/fesm2020/odx-angular-components-accordion.mjs +13 -13
- package/fesm2020/odx-angular-components-accordion.mjs.map +1 -1
- package/fesm2020/odx-angular-components-action-group.mjs +3 -3
- package/fesm2020/odx-angular-components-action-group.mjs.map +1 -1
- package/fesm2020/odx-angular-components-area-header.mjs +13 -13
- package/fesm2020/odx-angular-components-area-header.mjs.map +1 -1
- package/fesm2020/odx-angular-components-avatar.mjs +3 -3
- package/fesm2020/odx-angular-components-avatar.mjs.map +1 -1
- package/fesm2020/odx-angular-components-badge.mjs +10 -10
- package/fesm2020/odx-angular-components-badge.mjs.map +1 -1
- package/fesm2020/odx-angular-components-button-group.mjs +3 -3
- package/fesm2020/odx-angular-components-button-group.mjs.map +1 -1
- package/fesm2020/odx-angular-components-button.mjs +4 -4
- package/fesm2020/odx-angular-components-button.mjs.map +1 -1
- package/fesm2020/odx-angular-components-checkbox.mjs +47 -7
- package/fesm2020/odx-angular-components-checkbox.mjs.map +1 -1
- package/fesm2020/odx-angular-components-chip.mjs +3 -3
- package/fesm2020/odx-angular-components-chip.mjs.map +1 -1
- package/fesm2020/odx-angular-components-circular-progress.mjs +3 -3
- package/fesm2020/odx-angular-components-circular-progress.mjs.map +1 -1
- package/fesm2020/odx-angular-components-content-box.mjs +13 -13
- package/fesm2020/odx-angular-components-content-box.mjs.map +1 -1
- package/fesm2020/odx-angular-components-form-field.mjs +52 -51
- package/fesm2020/odx-angular-components-form-field.mjs.map +1 -1
- package/fesm2020/odx-angular-components-header.mjs +13 -13
- package/fesm2020/odx-angular-components-header.mjs.map +1 -1
- package/fesm2020/odx-angular-components-icon.mjs +3 -3
- package/fesm2020/odx-angular-components-icon.mjs.map +1 -1
- package/fesm2020/odx-angular-components-link.mjs +3 -3
- package/fesm2020/odx-angular-components-link.mjs.map +1 -1
- package/fesm2020/odx-angular-components-list.mjs +78 -0
- package/fesm2020/odx-angular-components-list.mjs.map +1 -0
- package/fesm2020/odx-angular-components-loading-spinner.mjs +16 -16
- package/fesm2020/odx-angular-components-loading-spinner.mjs.map +1 -1
- package/fesm2020/odx-angular-components-logo.mjs +3 -3
- package/fesm2020/odx-angular-components-logo.mjs.map +1 -1
- package/fesm2020/odx-angular-components-main-menu.mjs +16 -16
- package/fesm2020/odx-angular-components-main-menu.mjs.map +1 -1
- package/fesm2020/odx-angular-components-modal.mjs +61 -58
- package/fesm2020/odx-angular-components-modal.mjs.map +1 -1
- package/fesm2020/odx-angular-components-progress.mjs +3 -3
- package/fesm2020/odx-angular-components-progress.mjs.map +1 -1
- package/fesm2020/odx-angular-components-radio-group.mjs +11 -11
- package/fesm2020/odx-angular-components-radio-group.mjs.map +1 -1
- package/fesm2020/odx-angular-components-rail-navigation.mjs +96 -0
- package/fesm2020/odx-angular-components-rail-navigation.mjs.map +1 -0
- package/fesm2020/odx-angular-components-switch.mjs +47 -7
- package/fesm2020/odx-angular-components-switch.mjs.map +1 -1
- package/fesm2020/odx-angular-components-toggle-button-group.mjs +26 -18
- package/fesm2020/odx-angular-components-toggle-button-group.mjs.map +1 -1
- package/fesm2020/odx-angular-rxjs.mjs +15 -6
- package/fesm2020/odx-angular-rxjs.mjs.map +1 -1
- package/fesm2020/odx-angular-utils.mjs +28 -2
- package/fesm2020/odx-angular-utils.mjs.map +1 -1
- package/fesm2020/odx-angular.mjs +32 -28
- package/fesm2020/odx-angular.mjs.map +1 -1
- package/package.json +26 -2
- package/rxjs/index.d.ts +1 -1
- package/rxjs/lib/from-element-resize.d.ts +2 -0
- package/utils/lib/helpers/angular.d.ts +2 -1
- package/utils/lib/helpers/dom.d.ts +5 -1
- package/esm2020/rxjs/lib/mark-for-check.mjs +0 -5
- package/rxjs/lib/mark-for-check.d.ts +0 -3
package/animations/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const waitForChildAnimations: import("@angular/animations").AnimationTransitionMetadata;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterViewInit, OnChanges } from '@angular/core';
|
|
2
|
+
import { NgChanges } from '@odx/angular/utils';
|
|
3
|
+
import { ActiveIndicatorPosition } from './models';
|
|
4
|
+
import { ActiveIndicatorDirection } from './models/active-indicator-direction';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ActiveIndicatorDirective implements OnChanges, AfterViewInit {
|
|
7
|
+
private readonly takeUntilDestroyed;
|
|
8
|
+
private readonly parentElement$$;
|
|
9
|
+
private readonly onResize$;
|
|
10
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
11
|
+
protected isActive: boolean;
|
|
12
|
+
activeElement?: HTMLElement | null;
|
|
13
|
+
set parent(value: HTMLElement | null);
|
|
14
|
+
direction: ActiveIndicatorDirection;
|
|
15
|
+
position: ActiveIndicatorPosition;
|
|
16
|
+
ngAfterViewInit(): void;
|
|
17
|
+
ngOnChanges(changes: NgChanges<ActiveIndicatorDirective>): void;
|
|
18
|
+
private updateStyles;
|
|
19
|
+
private getIndicatorPositionX;
|
|
20
|
+
private getIndicatorPositionY;
|
|
21
|
+
private getIndicatorRelativeOffset;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveIndicatorDirective, never>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ActiveIndicatorDirective, "[odxActiveIndicator]", never, { "activeElement": "odxActiveIndicator"; "parent": "odxActiveIndicatorParent"; "direction": "odxActiveIndicatorDirection"; "position": "odxActiveIndicatorPosition"; }, {}, never, never, true>;
|
|
24
|
+
}
|
|
@@ -6,11 +6,10 @@ export declare class CheckBoxControl extends CustomFormControl<boolean> {
|
|
|
6
6
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
7
7
|
set checked(value: boolean);
|
|
8
8
|
get checked(): boolean;
|
|
9
|
-
|
|
9
|
+
controlValue: string | null;
|
|
10
10
|
get ariaChecked(): string;
|
|
11
11
|
constructor();
|
|
12
12
|
onChanged(event: Event): void;
|
|
13
|
-
protected updateRequiredValidator(): void;
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxControl, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckBoxControl, "[odxCheckBoxControl]", never, { "checked": "checked"; "
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckBoxControl, "[odxCheckBoxControl]", never, { "checked": "checked"; "controlValue": "value"; }, {}, never, never, false>;
|
|
16
15
|
}
|
|
@@ -1,30 +1,24 @@
|
|
|
1
|
-
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
-
import { AfterContentInit } from '@angular/core';
|
|
3
1
|
import { ControlValueAccessor, NgControl, ValidatorFn } from '@angular/forms';
|
|
4
2
|
import { Controller, DisabledController, ReadonlyController } from '@odx/angular';
|
|
5
3
|
import { ControlDirective } from './control.directive';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare abstract class CustomFormControl<T> extends Controller implements ControlValueAccessor
|
|
5
|
+
export declare abstract class CustomFormControl<T> extends Controller implements ControlValueAccessor {
|
|
8
6
|
private static CURRENT_INDEX;
|
|
9
|
-
|
|
7
|
+
private readonly requiredValidator;
|
|
10
8
|
private internalValue;
|
|
11
|
-
private isRequired;
|
|
12
9
|
protected readonly disabledController: DisabledController | null;
|
|
13
10
|
protected readonly readonlyController: ReadonlyController | null;
|
|
14
|
-
protected readonly enabled$: import("rxjs").Observable<void>;
|
|
15
11
|
protected readonly ngControl: NgControl | null;
|
|
16
12
|
id: string | null;
|
|
17
13
|
name: string;
|
|
18
|
-
set
|
|
19
|
-
get
|
|
20
|
-
set controlValue(value: T);
|
|
21
|
-
get controlValue(): T;
|
|
14
|
+
set value(value: T);
|
|
15
|
+
get value(): T;
|
|
22
16
|
get hasError(): boolean;
|
|
23
17
|
get isDisabled(): boolean;
|
|
24
18
|
get isReadonly(): boolean;
|
|
19
|
+
get isRequired(): boolean;
|
|
25
20
|
readonly control: ControlDirective | null;
|
|
26
21
|
constructor(initialValue: T);
|
|
27
|
-
ngAfterContentInit(): void;
|
|
28
22
|
onTouched(): void;
|
|
29
23
|
onChange(_value: T): void;
|
|
30
24
|
registerOnChange(fn: (value: T) => void): void;
|
|
@@ -32,8 +26,7 @@ export declare abstract class CustomFormControl<T> extends Controller implements
|
|
|
32
26
|
setDisabledState(isDisabled: boolean): void;
|
|
33
27
|
writeValue(value: T): void;
|
|
34
28
|
updateValue(value: T): void;
|
|
35
|
-
protected
|
|
36
|
-
protected updateRequiredValidator(): void;
|
|
29
|
+
protected hasValidator(validator: ValidatorFn): boolean;
|
|
37
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomFormControl<any>, never>;
|
|
38
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomFormControl<any>, never, never, { "id": "id"; "name": "name";
|
|
31
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomFormControl<any>, never, never, { "id": "id"; "name": "name"; }, {}, never, never, false>;
|
|
39
32
|
}
|
|
@@ -3,6 +3,7 @@ import { DynamicViewOptions } from './models';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DynamicViewService {
|
|
5
5
|
private readonly injector;
|
|
6
|
+
private readonly defaultHost;
|
|
6
7
|
createView<T extends DynamicContent>(content: T, options?: Partial<DynamicViewOptions<T>>): DynamicViewRef<T>;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicViewService, never>;
|
|
8
9
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicViewService>;
|
|
@@ -13,6 +13,7 @@ export declare class DynamicTemplateRef<T extends NgTemplateRef<unknown> = NgTem
|
|
|
13
13
|
destroy(): void;
|
|
14
14
|
getElement(): Element;
|
|
15
15
|
update(context: GetDynamicViewContext<T>): void;
|
|
16
|
+
getContext(): GetDynamicViewContext<T>;
|
|
16
17
|
getView(): ViewRef | null;
|
|
17
18
|
private create;
|
|
18
19
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { Injector, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { Injector, StaticProvider, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { DynamicContent, GetDynamicViewContext } from '../facade';
|
|
3
|
-
export interface
|
|
3
|
+
export interface DynamicViewRenderingOptions {
|
|
4
4
|
injector: Injector;
|
|
5
|
+
providers?: StaticProvider[];
|
|
6
|
+
host?: ViewContainerRef | Element;
|
|
7
|
+
}
|
|
8
|
+
export interface DynamicViewOptions<T extends DynamicContent> extends DynamicViewRenderingOptions {
|
|
5
9
|
context?: GetDynamicViewContext<T>;
|
|
6
10
|
projectableNodes?: Node[][];
|
|
7
|
-
vcr?: ViewContainerRef;
|
|
8
11
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./checkbox.component";
|
|
3
|
+
import * as i2 from "./checkbox.validator";
|
|
4
|
+
import * as i3 from "@odx/angular";
|
|
5
|
+
export declare class CheckboxModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckboxModule, never, [typeof i1.CheckboxComponent, typeof i2.CheckboxValidator], [typeof i3.CoreModule, typeof i1.CheckboxComponent, typeof i2.CheckboxValidator]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CheckboxModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CheckboxRequiredValidator } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CheckboxValidator extends CheckboxRequiredValidator {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxValidator, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxValidator, "odx-checkbox[required][formControlName], odx-checkbox[required][formControl], odx-checkbox[required][ngModel]", never, {}, {}, never, never, true>;
|
|
6
|
+
}
|
|
@@ -7,7 +7,6 @@ export declare class FormGroupComponent implements AfterContentInit {
|
|
|
7
7
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
8
8
|
error$: Observable<FormFieldError | null> | null;
|
|
9
9
|
formFieldErrorServices: QueryList<FormFieldErrorService>;
|
|
10
|
-
constructor();
|
|
11
10
|
ngAfterContentInit(): void;
|
|
12
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupComponent, never>;
|
|
13
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupComponent, "odx-form-group", never, {}, {}, ["formFieldErrorServices"], ["odx-form-field", "odx-form-field-hint"], true>;
|
|
@@ -2,21 +2,20 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class FormFieldControlDirective implements OnInit, OnDestroy {
|
|
4
4
|
private readonly config;
|
|
5
|
-
private readonly element;
|
|
6
5
|
private readonly ngControl;
|
|
7
6
|
private readonly form;
|
|
8
7
|
private readonly onFormReset$;
|
|
9
8
|
private readonly onFormSubmit$;
|
|
10
9
|
private readonly formFieldService;
|
|
11
10
|
private readonly formFieldErrorService;
|
|
12
|
-
private readonly isInput;
|
|
13
11
|
private readonly takeUntilDestroyed;
|
|
12
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
14
13
|
constructor();
|
|
15
14
|
ngOnInit(): void;
|
|
16
|
-
private registerOnBlur;
|
|
17
15
|
ngOnDestroy(): void;
|
|
16
|
+
private registerOnBlur;
|
|
18
17
|
private registerOnChange;
|
|
19
18
|
private registerOnSubmit;
|
|
20
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldControlDirective, never>;
|
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FormFieldControlDirective, "[odxFormFieldControl]",
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormFieldControlDirective, "[odxFormFieldControl]", ["odxFormFieldControl"], {}, {}, never, never, true>;
|
|
22
21
|
}
|
|
@@ -5,11 +5,6 @@ export interface FormFieldModuleConfig {
|
|
|
5
5
|
* @default {}
|
|
6
6
|
*/
|
|
7
7
|
errors: FormFieldErrorResolvers;
|
|
8
|
-
/**
|
|
9
|
-
* Detect if native control element supports the `blur` event
|
|
10
|
-
* @default ({ tagName }: Element) => ['input', 'select', 'textarea'].includes(tagName.toLowerCase())
|
|
11
|
-
* */
|
|
12
|
-
blurPredicate: (element: Element) => boolean;
|
|
13
8
|
/**
|
|
14
9
|
* Detect form field control changes on `blur` and/or `change`
|
|
15
10
|
* @default ['blur']
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./list-item.component";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { DisabledController } from '@odx/angular';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ListItemComponent {
|
|
5
|
+
static ngAcceptInputType_selected: BooleanInput;
|
|
6
|
+
static ngAcceptInputType_danger: BooleanInput;
|
|
7
|
+
protected readonly disabledController: DisabledController | null;
|
|
8
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
9
|
+
get isDisabled(): boolean;
|
|
10
|
+
danger: boolean;
|
|
11
|
+
selected: boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListItemComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListItemComponent, "[odxListItem]", never, { "danger": "danger"; "selected": "selected"; }, {}, never, ["[odxListPrefix]", "*", "[odxListSuffix]"], true>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list.component";
|
|
3
|
+
import * as i2 from "./components/list-item.component";
|
|
4
|
+
import * as i3 from "@odx/angular/components/icon";
|
|
5
|
+
export declare class ListModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ListModule, never, [typeof i1.ListComponent, typeof i2.ListItemComponent, typeof i3.IconComponent], [typeof i1.ListComponent, typeof i2.ListItemComponent, typeof i3.IconComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ListModule>;
|
|
9
|
+
}
|
|
@@ -7,8 +7,8 @@ export declare class MainMenuItemDirective {
|
|
|
7
7
|
protected readonly disabledController: DisabledController | null;
|
|
8
8
|
protected readonly routerLinkActive: RouterLinkActive | null;
|
|
9
9
|
readonly element: import("@angular/core").ElementRef<HTMLLinkElement>;
|
|
10
|
-
isSelected: boolean;
|
|
11
10
|
get isDisabled(): boolean;
|
|
11
|
+
isSelected: boolean;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuItemDirective, never>;
|
|
13
13
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuItemDirective, "[odxMainMenuItem]", never, { "isSelected": "isSelected"; }, {}, never, never, true>;
|
|
14
14
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
1
|
import { DynamicContent, DynamicTextContent } from '@odx/angular/cdk/dynamic-view';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class ModalComponent {
|
|
5
4
|
protected readonly modalRef: import("@odx/angular/components/modal").ModalRef<unknown, unknown>;
|
|
6
|
-
protected readonly injector: Injector;
|
|
5
|
+
protected readonly injector: import("@angular/core").Injector;
|
|
7
6
|
protected readonly context: {
|
|
8
7
|
$implicit: import("@odx/angular/components/modal").ModalRef<unknown, unknown>;
|
|
9
8
|
};
|
|
10
9
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
11
10
|
size: import("@odx/angular/components/modal").ModalSize;
|
|
11
|
+
variant: import("@odx/angular/components/modal").ModalVariant;
|
|
12
12
|
content: Exclude<DynamicContent, DynamicTextContent>;
|
|
13
13
|
constructor();
|
|
14
14
|
onClose(): void;
|
|
@@ -5,7 +5,6 @@ export declare class ModalService {
|
|
|
5
5
|
private static ID;
|
|
6
6
|
private readonly injector;
|
|
7
7
|
private readonly moduleConfig;
|
|
8
|
-
private readonly document;
|
|
9
8
|
private readonly openModalManager;
|
|
10
9
|
private readonly dynamicViewService;
|
|
11
10
|
readonly openModals$: import("rxjs").Observable<ModalRef<unknown, unknown>[]>;
|
|
@@ -14,7 +13,6 @@ export declare class ModalService {
|
|
|
14
13
|
open<Data, Result, T>(content: TemplateRef<T>, options?: Partial<ModalOptions<Data>>): ModalRef<Data, Result>;
|
|
15
14
|
open<Data, Result, T = unknown>(content: ModalType<T, Data, Result>, options?: Partial<ModalOptions<Data>>): ModalRef<Data, Result>;
|
|
16
15
|
private attachModal;
|
|
17
|
-
private mergeOptions;
|
|
18
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, never>;
|
|
19
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<ModalService>;
|
|
20
18
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ModalSize } from './modal-size';
|
|
3
|
+
import { ModalVariant } from './modal-variant';
|
|
3
4
|
export interface ModalInstanceOptions {
|
|
4
5
|
id: string;
|
|
5
6
|
dismissable: boolean;
|
|
6
7
|
size: ModalSize;
|
|
8
|
+
variant: ModalVariant;
|
|
7
9
|
}
|
|
8
10
|
export interface ModalOptionsExtras<Data> {
|
|
9
11
|
data: Data;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { RouterLinkActive } from '@angular/router';
|
|
3
|
+
import { DisabledController } from '@odx/angular';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RailNavigationItemComponent {
|
|
6
|
+
static ngAcceptInputType_isSelected: BooleanInput;
|
|
7
|
+
protected readonly disabledController: DisabledController | null;
|
|
8
|
+
protected readonly routerLinkActive: RouterLinkActive | null;
|
|
9
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
10
|
+
get isDisabled(): boolean;
|
|
11
|
+
isSelected: boolean;
|
|
12
|
+
iconName: string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RailNavigationItemComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RailNavigationItemComponent, "a[odxRailNavigationItem][iconName], button[odxRailNavigationItem][iconName]", never, { "isSelected": "isSelected"; "iconName": "iconName"; }, {}, never, ["*"], true>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RailNavigationComponent {
|
|
4
|
+
static ngAcceptInputType_isOpen: BooleanInput;
|
|
5
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
6
|
+
isOpen: boolean;
|
|
7
|
+
toggle(): void;
|
|
8
|
+
open(): void;
|
|
9
|
+
close(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RailNavigationComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RailNavigationComponent, "odx-rail-navigation", never, { "isOpen": "isOpen"; }, {}, never, ["*"], true>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./rail-navigation.component";
|
|
3
|
+
import * as i2 from "./components/rail-navigation-item.component";
|
|
4
|
+
import * as i3 from "@odx/angular";
|
|
5
|
+
export declare class RailNavigationModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RailNavigationModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RailNavigationModule, never, [typeof i1.RailNavigationComponent, typeof i2.RailNavigationItemComponent], [typeof i1.RailNavigationComponent, typeof i2.RailNavigationItemComponent, typeof i3.CoreModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RailNavigationModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./switch.component";
|
|
3
|
+
import * as i2 from "./switch.validator";
|
|
4
|
+
import * as i3 from "@odx/angular";
|
|
5
|
+
export declare class SwitchModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SwitchModule, never, [typeof i1.SwitchComponent, typeof i2.SwitchValidator], [typeof i3.CoreModule, typeof i1.SwitchComponent, typeof i2.SwitchValidator]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SwitchModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CheckboxRequiredValidator } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SwitchValidator extends CheckboxRequiredValidator {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchValidator, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchValidator, "odx-switch[required][formControlName], odx-switch[required][formControl], odx-switch[required][ngModel]", never, {}, {}, never, never, true>;
|
|
6
|
+
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
1
2
|
import { RadioGroupControlDirective } from '@odx/angular/cdk/radio-group-control';
|
|
3
|
+
import { ToggleButtonComponent } from './components';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class ToggleButtonGroupComponent<T = unknown> extends RadioGroupControlDirective<T> {
|
|
4
6
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
7
|
+
protected activeElement$: import("rxjs").Observable<HTMLElement | null>;
|
|
8
|
+
protected toggleButtons: QueryList<ToggleButtonComponent>;
|
|
5
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonGroupComponent<any>, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonGroupComponent<any>, "odx-toggle-button-group", never, {}, {},
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonGroupComponent<any>, "odx-toggle-button-group", never, {}, {}, ["toggleButtons"], ["odx-toggle-button"], true>;
|
|
7
11
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './lib/expand';
|
|
2
2
|
export * from './lib/fade';
|
|
3
3
|
export * from './lib/slide';
|
|
4
|
-
|
|
4
|
+
export * from './lib/wait-for-child-animations';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXIvYW5pbWF0aW9ucy9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxpQ0FBaUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliL2V4cGFuZCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9mYWRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NsaWRlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dhaXQtZm9yLWNoaWxkLWFuaW1hdGlvbnMnO1xuIl19
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { animateChild, query, transition } from '@angular/animations';
|
|
2
|
+
export const waitForChildAnimations = transition(':enter, :leave', [query('@*', animateChild(), { optional: true })]);
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FpdC1mb3ItY2hpbGQtYW5pbWF0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci9hbmltYXRpb25zL3NyYy9saWIvd2FpdC1mb3ItY2hpbGQtYW5pbWF0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUV0RSxNQUFNLENBQUMsTUFBTSxzQkFBc0IsR0FBRyxVQUFVLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQyxLQUFLLENBQUMsSUFBSSxFQUFFLFlBQVksRUFBRSxFQUFFLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYW5pbWF0ZUNoaWxkLCBxdWVyeSwgdHJhbnNpdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2FuaW1hdGlvbnMnO1xuXG5leHBvcnQgY29uc3Qgd2FpdEZvckNoaWxkQW5pbWF0aW9ucyA9IHRyYW5zaXRpb24oJzplbnRlciwgOmxlYXZlJywgW3F1ZXJ5KCdAKicsIGFuaW1hdGVDaGlsZCgpLCB7IG9wdGlvbmFsOiB0cnVlIH0pXSk7XG4iXX0=
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './lib/active-indicator.directive';
|
|
2
|
+
export * from './lib/models';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXIvY2RrL2FjdGl2ZS1pbmRpY2F0b3Ivc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYi9hY3RpdmUtaW5kaWNhdG9yLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMnO1xuIl19
|