@odx/angular 1.0.0-rc.3 → 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.component.d.ts +3 -3
- package/cdk/dynamic-view/lib/dynamic-view.directive.d.ts +3 -1
- 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/helpers/create-projectable-nodes.d.ts +2 -0
- package/cdk/dynamic-view/lib/helpers/index.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 +7 -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/chip/README.md +3 -0
- package/components/chip/index.d.ts +2 -0
- package/components/chip/lib/chip.component.d.ts +15 -0
- package/components/chip/lib/models/chip-size.d.ts +5 -0
- package/components/chip/lib/models/chip-variant.d.ts +7 -0
- package/components/chip/lib/models/index.d.ts +2 -0
- package/components/circular-progress/README.md +3 -0
- package/components/circular-progress/index.d.ts +2 -0
- package/components/circular-progress/lib/circular-progress.component.d.ts +28 -0
- package/components/circular-progress/lib/models/circular-progress-size.d.ts +7 -0
- package/components/circular-progress/lib/models/index.d.ts +1 -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/loading-spinner/README.md +3 -0
- package/components/loading-spinner/index.d.ts +3 -0
- package/components/loading-spinner/lib/loading-spinner.component.d.ts +15 -0
- package/components/loading-spinner/lib/loading-spinner.directive.d.ts +26 -0
- package/components/loading-spinner/lib/loading-spinner.module.d.ts +9 -0
- package/components/loading-spinner/lib/loading-spinner.service.d.ts +9 -0
- package/components/main-menu/lib/directives/main-menu-item.directive.d.ts +6 -1
- package/components/main-menu/lib/main-menu.component.d.ts +3 -1
- package/components/modal/lib/components/modal-header/modal-header.component.d.ts +1 -0
- package/components/modal/lib/modal.component.d.ts +4 -3
- package/components/modal/lib/modal.directive.d.ts +8 -4
- 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-ref.d.ts +4 -2
- package/components/modal/lib/models/modal-variant.d.ts +5 -0
- package/components/progress/README.md +3 -0
- package/components/progress/index.d.ts +1 -0
- package/components/progress/lib/progress.component.d.ts +14 -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/fade.mjs +2 -5
- 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 +13 -15
- 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 +23 -14
- package/esm2020/cdk/dynamic-view/lib/dynamic-view.directive.mjs +21 -9
- 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/helpers/create-projectable-nodes.mjs +9 -0
- package/esm2020/cdk/dynamic-view/lib/helpers/index.mjs +2 -1
- package/esm2020/cdk/dynamic-view/lib/models/dynamic-component-ref.mjs +13 -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 +7 -7
- 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/index.mjs +3 -0
- package/esm2020/components/chip/lib/chip.component.mjs +54 -0
- package/esm2020/components/chip/lib/models/chip-size.mjs +5 -0
- package/esm2020/components/chip/lib/models/chip-variant.mjs +7 -0
- package/esm2020/components/chip/lib/models/index.mjs +3 -0
- package/esm2020/components/chip/odx-angular-components-chip.mjs +5 -0
- package/esm2020/components/circular-progress/index.mjs +3 -0
- package/esm2020/components/circular-progress/lib/circular-progress.component.mjs +91 -0
- package/esm2020/components/circular-progress/lib/models/circular-progress-size.mjs +7 -0
- package/esm2020/components/circular-progress/lib/models/index.mjs +2 -0
- package/esm2020/components/circular-progress/odx-angular-components-circular-progress.mjs +5 -0
- 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/index.mjs +4 -0
- package/esm2020/components/loading-spinner/lib/loading-spinner.component.mjs +58 -0
- package/esm2020/components/loading-spinner/lib/loading-spinner.directive.mjs +87 -0
- package/esm2020/components/loading-spinner/lib/loading-spinner.module.mjs +19 -0
- package/esm2020/components/loading-spinner/lib/loading-spinner.service.mjs +17 -0
- package/esm2020/components/loading-spinner/odx-angular-components-loading-spinner.mjs +5 -0
- 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 +20 -9
- package/esm2020/components/main-menu/lib/main-menu.component.mjs +7 -6
- 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 +10 -8
- 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 +29 -16
- package/esm2020/components/modal/lib/modal.config.mjs +3 -1
- package/esm2020/components/modal/lib/modal.directive.mjs +24 -6
- 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-ref.mjs +9 -2
- 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/index.mjs +2 -0
- package/esm2020/components/progress/lib/progress.component.mjs +51 -0
- package/esm2020/components/progress/odx-angular-components-progress.mjs +5 -0
- 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 +15 -13
- 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 +5 -3
- 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 +12 -14
- 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 +88 -38
- 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 +13 -13
- 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 +71 -0
- package/fesm2015/odx-angular-components-chip.mjs.map +1 -0
- package/fesm2015/odx-angular-components-circular-progress.mjs +103 -0
- package/fesm2015/odx-angular-components-circular-progress.mjs.map +1 -0
- 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 +173 -0
- package/fesm2015/odx-angular-components-loading-spinner.mjs.map +1 -0
- 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 +34 -23
- package/fesm2015/odx-angular-components-main-menu.mjs.map +1 -1
- package/fesm2015/odx-angular-components-modal.mjs +97 -66
- package/fesm2015/odx-angular-components-modal.mjs.map +1 -1
- package/fesm2015/odx-angular-components-progress.mjs +57 -0
- package/fesm2015/odx-angular-components-progress.mjs.map +1 -0
- 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 +38 -33
- package/fesm2015/odx-angular.mjs.map +1 -1
- package/fesm2020/odx-angular-animations.mjs +5 -6
- 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 +12 -14
- 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 +82 -33
- 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 +13 -13
- 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 +71 -0
- package/fesm2020/odx-angular-components-chip.mjs.map +1 -0
- package/fesm2020/odx-angular-components-circular-progress.mjs +103 -0
- package/fesm2020/odx-angular-components-circular-progress.mjs.map +1 -0
- 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 +172 -0
- package/fesm2020/odx-angular-components-loading-spinner.mjs.map +1 -0
- 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 +34 -23
- package/fesm2020/odx-angular-components-main-menu.mjs.map +1 -1
- package/fesm2020/odx-angular-components-modal.mjs +96 -65
- package/fesm2020/odx-angular-components-modal.mjs.map +1 -1
- package/fesm2020/odx-angular-components-progress.mjs +57 -0
- package/fesm2020/odx-angular-components-progress.mjs.map +1 -0
- 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 +38 -33
- package/fesm2020/odx-angular.mjs.map +1 -1
- package/lib/controllers/controller.d.ts +1 -2
- package/package.json +59 -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
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { AsyncPipe } from '@angular/common';
|
|
2
1
|
import { OnDestroy } from '@angular/core';
|
|
3
2
|
import { DynamicTextContent } from './facade';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class DynamicViewComponent implements OnDestroy {
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
private readonly element;
|
|
6
|
+
private currentSubscription;
|
|
8
7
|
set content(value: DynamicTextContent);
|
|
9
8
|
ngOnDestroy(): void;
|
|
9
|
+
private setContent;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicViewComponent, never>;
|
|
11
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicViewComponent, "odx-dynamic-view", never, { "content": "content"; }, {}, never, never, true>;
|
|
12
12
|
}
|
|
@@ -5,7 +5,9 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class DynamicViewDirective<T extends DynamicContent<unknown> = DynamicContent<unknown>> implements OnDestroy, OnInit, OnChanges {
|
|
6
6
|
private readonly dynamicViewService;
|
|
7
7
|
private readonly viewContainer;
|
|
8
|
+
private readonly template;
|
|
8
9
|
private viewRef;
|
|
10
|
+
private contentViewRef;
|
|
9
11
|
content?: T | DynamicViewRef<T> | null;
|
|
10
12
|
injector?: Injector;
|
|
11
13
|
context?: GetDynamicViewContext<T>;
|
|
@@ -16,5 +18,5 @@ export declare class DynamicViewDirective<T extends DynamicContent<unknown> = Dy
|
|
|
16
18
|
private render;
|
|
17
19
|
private destroy;
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicViewDirective<any>, never>;
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicViewDirective<any>, "[odxDynamicView]", never, { "content": "odxDynamicView"; "injector": "odxDynamicViewInjector"; "context": "odxDynamicViewContext"; }, {}, never, never, true>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicViewDirective<any>, "ng-template[odxDynamicView]", never, { "content": "odxDynamicView"; "injector": "odxDynamicViewInjector"; "context": "odxDynamicViewContext"; }, {}, never, never, true>;
|
|
20
22
|
}
|
|
@@ -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,7 +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
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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { ChipSize, ChipVariant } from './models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ChipComponent {
|
|
6
|
+
static ngAcceptInputType_removable: BooleanInput;
|
|
7
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
8
|
+
removable: boolean;
|
|
9
|
+
size: ChipSize;
|
|
10
|
+
variant: ChipVariant;
|
|
11
|
+
remove: EventEmitter<void>;
|
|
12
|
+
onClick(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChipComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "odx-chip", never, { "removable": "removable"; "size": "size"; "variant": "variant"; }, { "remove": "remove"; }, never, ["*"], true>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { NumberInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { AfterViewInit, OnChanges } from '@angular/core';
|
|
3
|
+
import { NgChanges } from '@odx/angular/utils';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CircularProgressComponent implements OnChanges, AfterViewInit {
|
|
6
|
+
static ngAcceptInputType_size: NumberInput;
|
|
7
|
+
static ngAcceptInputType_stroke: NumberInput;
|
|
8
|
+
static ngAcceptInputType_value: NumberInput;
|
|
9
|
+
private readonly changeDetector;
|
|
10
|
+
private _value;
|
|
11
|
+
protected readonly viewPortSize = 100;
|
|
12
|
+
protected radius: number;
|
|
13
|
+
protected normalizedStroke: number;
|
|
14
|
+
protected circumference: number;
|
|
15
|
+
protected get ariaValueNow(): null | number;
|
|
16
|
+
protected get progressValue(): number;
|
|
17
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
18
|
+
indeterminate: boolean;
|
|
19
|
+
stroke: number;
|
|
20
|
+
size: "medium";
|
|
21
|
+
set value(value: unknown);
|
|
22
|
+
get value(): number;
|
|
23
|
+
ngAfterViewInit(): void;
|
|
24
|
+
ngOnChanges(changes: NgChanges<CircularProgressComponent>): void;
|
|
25
|
+
private updateDimensions;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircularProgressComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircularProgressComponent, "odx-circular-progress", never, { "stroke": "stroke"; "size": "size"; "value": "value"; }, {}, never, never, true>;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './circular-progress-size';
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AnimationEvent } from '@angular/animations';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LoadingSpinnerComponent implements OnInit {
|
|
5
|
+
private readonly spinnerService;
|
|
6
|
+
private readonly windowRef;
|
|
7
|
+
protected backgroundColor: string | null;
|
|
8
|
+
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
9
|
+
autoColor: boolean;
|
|
10
|
+
animationFinished({ toState }: AnimationEvent): void;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
private resolveBackgroundColor;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingSpinnerComponent, "odx-loading-spinner", never, { "autoColor": "autoColor"; }, {}, never, never, true>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BooleanInput, NumberInput } from '@angular/cdk/coercion';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LoadingSpinnerDirective {
|
|
4
|
+
static ngAcceptInputType_autoColor: BooleanInput;
|
|
5
|
+
static ngAcceptInputType_isLoading: BooleanInput;
|
|
6
|
+
static ngAcceptInputType_minHeight: NumberInput;
|
|
7
|
+
private readonly dynamicViewService;
|
|
8
|
+
private readonly hostElement;
|
|
9
|
+
private readonly renderer;
|
|
10
|
+
private readonly spinnerService;
|
|
11
|
+
private readonly injector;
|
|
12
|
+
private readonly windowRef;
|
|
13
|
+
private parentMinHeight;
|
|
14
|
+
private viewRef;
|
|
15
|
+
autoColor: boolean;
|
|
16
|
+
set isLoading(value: boolean);
|
|
17
|
+
set minHeight(value: unknown);
|
|
18
|
+
private setParent;
|
|
19
|
+
private setParentHeight;
|
|
20
|
+
private appendSpinner;
|
|
21
|
+
private resetParentElement;
|
|
22
|
+
private hasStaticPosition;
|
|
23
|
+
constructor();
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerDirective, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LoadingSpinnerDirective, "[odxLoadingSpinner]", never, { "autoColor": "odxLoadingSpinnerAutoColor"; "isLoading": "odxLoadingSpinner"; "minHeight": "odxLoadingSpinnerMinHeight"; }, {}, never, never, true>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./loading-spinner.component";
|
|
3
|
+
import * as i2 from "./loading-spinner.directive";
|
|
4
|
+
import * as i3 from "@odx/angular";
|
|
5
|
+
export declare class LoadingSpinnerModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingSpinnerModule, never, [typeof i1.LoadingSpinnerComponent, typeof i2.LoadingSpinnerDirective], [typeof i3.CoreModule, typeof i1.LoadingSpinnerComponent, typeof i2.LoadingSpinnerDirective]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LoadingSpinnerModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LoadingSpinnerService implements OnDestroy {
|
|
5
|
+
readonly spinnerDestroyed$: Subject<void>;
|
|
6
|
+
ngOnDestroy(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoadingSpinnerService>;
|
|
9
|
+
}
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { RouterLinkActive } from '@angular/router';
|
|
1
3
|
import { DisabledController } from '@odx/angular';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class MainMenuItemDirective {
|
|
6
|
+
static readonly ngAcceptInputType_isSelected: BooleanInput;
|
|
4
7
|
protected readonly disabledController: DisabledController | null;
|
|
8
|
+
protected readonly routerLinkActive: RouterLinkActive | null;
|
|
5
9
|
readonly element: import("@angular/core").ElementRef<HTMLLinkElement>;
|
|
6
10
|
get isDisabled(): boolean;
|
|
11
|
+
isSelected: boolean;
|
|
7
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuItemDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuItemDirective, "
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MainMenuItemDirective, "[odxMainMenuItem]", never, { "isSelected": "isSelected"; }, {}, never, never, true>;
|
|
9
14
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
1
2
|
import { MainMenuService } from './main-menu.service';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class MainMenuComponent {
|
|
5
|
+
static readonly ngAcceptInputType_isOpen: BooleanInput;
|
|
4
6
|
protected readonly mainMenuService: MainMenuService;
|
|
5
7
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
6
8
|
title: string;
|
|
@@ -11,5 +13,5 @@ export declare class MainMenuComponent {
|
|
|
11
13
|
menuOpen: import("rxjs").Observable<boolean>;
|
|
12
14
|
close(): void;
|
|
13
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainMenuComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainMenuComponent, "odx-main-menu", never, { "title": "title"; "subtitle": "subtitle"; "copyright": "copyright"; "isOpen": "isOpen"; }, { "menuOpen": "menuOpen"; }, never, ["
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainMenuComponent, "odx-main-menu", never, { "title": "title"; "subtitle": "subtitle"; "copyright": "copyright"; "isOpen": "isOpen"; }, { "menuOpen": "menuOpen"; }, never, ["*", "[odxLink]"], true>;
|
|
15
17
|
}
|
|
@@ -5,6 +5,7 @@ export declare class ModalHeaderComponent implements AfterContentInit {
|
|
|
5
5
|
protected readonly modalRef: import("@odx/angular/components/modal").ModalRef<unknown, unknown>;
|
|
6
6
|
readonly element: import("@angular/core").ElementRef<HTMLElement>;
|
|
7
7
|
areaHeaderComponent?: AreaHeaderComponent;
|
|
8
|
+
constructor();
|
|
8
9
|
ngAfterContentInit(): void;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderComponent, never>;
|
|
10
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderComponent, "odx-modal-header", never, {}, {}, ["areaHeaderComponent"], ["odx-area-header"], true>;
|
|
@@ -1,15 +1,16 @@
|
|
|
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
|
+
constructor();
|
|
13
14
|
onClose(): void;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
|
|
15
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "odx-modal", never, { "content": "content"; }, {}, never, never, true>;
|
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
import { OnDestroy, TemplateRef } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, TemplateRef } from '@angular/core';
|
|
2
|
+
import { NgChanges } from '@odx/angular/utils';
|
|
2
3
|
import { ModalOptions } from './models';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ModalDirective implements OnDestroy {
|
|
5
|
+
export declare class ModalDirective implements OnChanges, OnDestroy {
|
|
5
6
|
private readonly modalService;
|
|
6
7
|
private modalRef;
|
|
7
|
-
modalOptions?: Partial<ModalOptions> | '' | null;
|
|
8
8
|
protected readonly template: TemplateRef<any>;
|
|
9
|
+
modalOptions?: Partial<ModalOptions> | '' | null;
|
|
10
|
+
modalClose: EventEmitter<any>;
|
|
11
|
+
modalDismiss: EventEmitter<any>;
|
|
12
|
+
ngOnChanges(changes: NgChanges<ModalDirective>): void;
|
|
9
13
|
ngOnDestroy(): void;
|
|
10
14
|
open(): void;
|
|
11
15
|
dismiss(): void;
|
|
12
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalDirective, "ng-template[odxModal]", ["odxModal"], { "modalOptions": "odxModal"; }, {}, never, never, true>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalDirective, "ng-template[odxModal]", ["odxModal"], { "modalOptions": "odxModal"; }, { "modalClose": "odxModalClose"; "modalDismiss": "odxModalDismiss"; }, never, never, true>;
|
|
14
18
|
}
|