@progress/kendo-angular-layout 6.5.2 → 7.0.0-next.202203231147
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/{dist/es2015/avatar → avatar}/avatar.component.d.ts +18 -11
- package/{dist/es2015/avatar → avatar}/models/fill.d.ts +0 -0
- package/{dist/es2015/avatar → avatar}/models/models.d.ts +0 -0
- package/{dist/es2015/avatar → avatar}/models/rounded.d.ts +0 -0
- package/{dist/es2015/avatar → avatar}/models/shape.d.ts +0 -0
- package/{dist/es2015/avatar → avatar}/models/size.d.ts +0 -0
- package/{dist/es2015/avatar → avatar}/models/theme-color.d.ts +0 -0
- package/{dist/es2015/avatar.module.d.ts → avatar.module.d.ts} +6 -0
- package/bundles/kendo-angular-layout.umd.js +5 -0
- package/{dist/es2015/card → card}/card-actions.component.d.ts +16 -9
- package/{dist/es2015/card → card}/card-body.component.d.ts +3 -0
- package/{dist/es2015/card → card}/card-footer.component.d.ts +3 -0
- package/{dist/es2015/card → card}/card-header.component.d.ts +3 -0
- package/{dist/es2015/card → card}/card.component.d.ts +6 -3
- package/{dist/es2015/card → card}/directives/card-media.directive.d.ts +3 -0
- package/{dist/es2015/card → card}/directives/card-separator.directive.d.ts +5 -2
- package/{dist/es2015/card → card}/directives/card-subtitle.directive.d.ts +3 -0
- package/{dist/es2015/card → card}/directives/card-title.directive.d.ts +3 -0
- package/{dist/es2015/card → card}/models/actions-layout.d.ts +0 -0
- package/{dist/es2015/card → card}/models/card-action.d.ts +0 -0
- package/card.module.d.ts +24 -0
- package/{dist/es2015/common → common}/direction.d.ts +0 -0
- package/{dist/es2015/common → common}/dom-queries.d.ts +0 -0
- package/{dist/es2015/common → common}/orientation.d.ts +0 -0
- package/{dist/es2015/common → common}/styling-classes.d.ts +0 -0
- package/{dist/es2015/common → common}/util.d.ts +4 -4
- package/{dist/es2015/drawer → drawer}/animations.d.ts +0 -0
- package/{dist/es2015/drawer → drawer}/drawer-container.component.d.ts +9 -6
- package/{dist/es2015/drawer → drawer}/drawer-content.component.d.ts +3 -0
- package/{dist/es2015/drawer → drawer}/drawer.component.d.ts +17 -8
- package/{dist/es2015/drawer → drawer}/drawer.service.d.ts +3 -1
- package/drawer/events/drawer-list-select.event.d.ts +26 -0
- package/{dist/es2015/drawer → drawer}/events/select-event.d.ts +6 -2
- package/{dist/es2015/drawer → drawer}/item.component.d.ts +7 -4
- package/{dist/es2015/drawer → drawer}/list.component.d.ts +6 -1
- package/{dist/es2015/drawer → drawer}/models/constants.d.ts +0 -0
- package/{dist/es2015/drawer → drawer}/models/drawer-animation.interface.d.ts +1 -1
- package/{dist/es2015/drawer → drawer}/models/drawer-item.interface.d.ts +0 -0
- package/{dist/es2015/drawer → drawer}/models/mode.d.ts +0 -0
- package/{dist/es2015/drawer → drawer}/models/position.d.ts +0 -0
- package/{dist/es2015/drawer → drawer}/template-directives/drawer-template.directive.d.ts +3 -0
- package/{dist/es2015/drawer → drawer}/template-directives/footer-template.directive.d.ts +3 -0
- package/{dist/es2015/drawer → drawer}/template-directives/header-template.directive.d.ts +3 -0
- package/{dist/es2015/drawer → drawer}/template-directives/item-template.directive.d.ts +3 -0
- package/{dist/es2015/drawer → drawer}/template-directives.d.ts +0 -0
- package/{dist/es2015/drawer → drawer}/types.d.ts +0 -0
- package/{dist/es2015/drawer → drawer}/util.d.ts +0 -0
- package/drawer.module.d.ts +24 -0
- package/{dist/es2015 → esm2015}/avatar/avatar.component.js +73 -98
- package/{dist/es → esm2015}/avatar/models/fill.js +1 -0
- package/{dist/es/layouts → esm2015/avatar/models}/models.js +5 -0
- package/{dist/es2015 → esm2015}/avatar/models/rounded.js +1 -0
- package/{dist/es2015 → esm2015}/avatar/models/shape.js +1 -0
- package/{dist/es → esm2015}/avatar/models/size.js +1 -0
- package/{dist/es → esm2015}/avatar/models/theme-color.js +1 -0
- package/esm2015/avatar.module.js +31 -0
- package/esm2015/card/card-actions.component.js +145 -0
- package/esm2015/card/card-body.component.js +30 -0
- package/esm2015/card/card-footer.component.js +30 -0
- package/esm2015/card/card-header.component.js +30 -0
- package/esm2015/card/card.component.js +101 -0
- package/esm2015/card/directives/card-media.directive.js +25 -0
- package/esm2015/card/directives/card-separator.directive.js +52 -0
- package/esm2015/card/directives/card-subtitle.directive.js +25 -0
- package/esm2015/card/directives/card-title.directive.js +25 -0
- package/{dist/es → esm2015}/card/models/actions-layout.js +1 -0
- package/{dist/es2015 → esm2015}/card/models/card-action.js +0 -0
- package/{dist/es2015 → esm2015}/card.module.js +28 -11
- package/{dist/es → esm2015}/common/direction.js +1 -0
- package/{dist/es2015 → esm2015}/common/dom-queries.js +0 -3
- package/{dist/es → esm2015}/common/orientation.js +1 -0
- package/{dist/es → esm2015}/common/styling-classes.js +1 -0
- package/{dist/es2015 → esm2015}/common/util.js +4 -6
- package/{dist/es2015 → esm2015}/drawer/animations.js +0 -0
- package/esm2015/drawer/drawer-container.component.js +109 -0
- package/esm2015/drawer/drawer-content.component.js +31 -0
- package/{dist/es2015 → esm2015}/drawer/drawer.component.js +124 -124
- package/{dist/es2015 → esm2015}/drawer/drawer.service.js +8 -20
- package/esm2015/drawer/events/drawer-list-select.event.js +17 -0
- package/{dist/es2015 → esm2015}/drawer/events/select-event.js +8 -1
- package/esm2015/drawer/item.component.js +121 -0
- package/{dist/es2015 → esm2015}/drawer/list.component.js +32 -34
- package/{dist/es2015 → esm2015}/drawer/models/constants.js +0 -0
- package/{dist/es → esm2015}/drawer/models/drawer-animation.interface.js +1 -0
- package/{dist/es → esm2015}/drawer/models/drawer-item.interface.js +1 -0
- package/{dist/es → esm2015}/drawer/models/mode.js +1 -0
- package/{dist/es → esm2015}/drawer/models/position.js +1 -0
- package/esm2015/drawer/template-directives/drawer-template.directive.js +28 -0
- package/esm2015/drawer/template-directives/footer-template.directive.js +26 -0
- package/esm2015/drawer/template-directives/header-template.directive.js +26 -0
- package/esm2015/drawer/template-directives/item-template.directive.js +26 -0
- package/{dist/es → esm2015}/drawer/template-directives.js +0 -0
- package/{dist/es → esm2015}/drawer/types.js +1 -0
- package/{dist/es2015 → esm2015}/drawer/util.js +0 -0
- package/{dist/es2015 → esm2015}/drawer.module.js +25 -11
- package/{dist/es2015 → esm2015}/expansionpanel/animations.js +0 -0
- package/{dist/es2015 → esm2015}/expansionpanel/events/action-event.js +8 -1
- package/esm2015/expansionpanel/expansionpanel-title.directive.js +27 -0
- package/{dist/es2015 → esm2015}/expansionpanel/expansionpanel.component.js +112 -119
- package/esm2015/expansionpanel.module.js +36 -0
- package/esm2015/gridlayout.module.js +35 -0
- package/esm2015/kendo-angular-layout.js +8 -0
- package/{dist/es2015 → esm2015}/layout.module.js +44 -21
- package/{dist/es2015 → esm2015}/layouts/grid-layout.component.js +44 -48
- package/esm2015/layouts/gridlayout-item.component.js +47 -0
- package/{dist/es → esm2015}/layouts/models/gridlayout-gap-settings.js +1 -0
- package/{dist/es → esm2015}/layouts/models/gridlayout-row-col-size.js +1 -0
- package/{dist/es → esm2015}/layouts/models/layout-align-settings.js +1 -0
- package/{dist/es → esm2015}/layouts/models/layout-horizontal-align.js +1 -0
- package/{dist/es → esm2015}/layouts/models/layout-vertical-align.js +1 -0
- package/{dist/es2015/layouts/models.d.ts → esm2015/layouts/models.js} +0 -0
- package/{dist/es2015 → esm2015}/layouts/stack-layout.component.js +48 -54
- package/{dist/es2015 → esm2015}/layouts/util.js +0 -0
- package/{dist/es → esm2015}/main.js +4 -0
- package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
- package/esm2015/panelbar/panelbar-content.directive.js +23 -0
- package/{dist/es → esm2015}/panelbar/panelbar-expand-mode.js +0 -0
- package/{dist/es → esm2015}/panelbar/panelbar-item-model.js +1 -0
- package/esm2015/panelbar/panelbar-item-template.directive.js +24 -0
- package/{dist/es2015 → esm2015}/panelbar/panelbar-item-title.directive.js +14 -12
- package/{dist/es2015 → esm2015}/panelbar/panelbar-item.component.js +218 -158
- package/{dist/es2015 → esm2015}/panelbar/panelbar.component.js +116 -131
- package/{dist/es2015 → esm2015}/panelbar/panelbar.service.js +8 -8
- package/{dist/es2015 → esm2015}/panelbar.module.js +22 -11
- package/{dist/es2015 → esm2015}/splitter/splitter-bar.component.js +60 -81
- package/{dist/es2015 → esm2015}/splitter/splitter-pane.component.js +53 -84
- package/{dist/es2015 → esm2015}/splitter/splitter.component.js +84 -69
- package/{dist/es2015 → esm2015}/splitter/splitter.service.js +9 -9
- package/{dist/es2015 → esm2015}/splitter.module.js +21 -12
- package/esm2015/stacklayout.module.js +31 -0
- package/{dist/es2015 → esm2015}/stepper/events/activate-event.js +8 -1
- package/esm2015/stepper/list.component.js +145 -0
- package/esm2015/stepper/localization/custom-messages.component.js +41 -0
- package/esm2015/stepper/localization/localized-messages.directive.js +38 -0
- package/esm2015/stepper/localization/messages.js +23 -0
- package/{dist/es2015 → esm2015}/stepper/models/constants.js +0 -0
- package/{dist/es → esm2015}/stepper/models/orientation.js +1 -0
- package/{dist/es → esm2015}/stepper/models/step-predicate.js +1 -0
- package/{dist/es → esm2015}/stepper/models/step-type.js +1 -0
- package/{dist/es → esm2015}/stepper/models/stepper-step.interface.js +1 -0
- package/{dist/es2015 → esm2015}/stepper/step.component.js +88 -66
- package/{dist/es2015 → esm2015}/stepper/stepper.component.js +141 -103
- package/{dist/es2015 → esm2015}/stepper/stepper.service.js +25 -14
- package/esm2015/stepper/template-directives/indicator-template.directive.js +26 -0
- package/esm2015/stepper/template-directives/label-template.directive.js +26 -0
- package/esm2015/stepper/template-directives/step-template.directive.js +26 -0
- package/{dist/es → esm2015}/stepper/template-directives.js +0 -0
- package/{dist/es → esm2015}/stepper/types.js +1 -0
- package/{dist/es2015 → esm2015}/stepper.module.js +22 -11
- package/{dist/es2015 → esm2015}/tabstrip/constants.js +0 -0
- package/{dist/es2015 → esm2015}/tabstrip/directives/tab-content.directive.js +12 -11
- package/{dist/es2015 → esm2015}/tabstrip/directives/tab-title.directive.js +12 -11
- package/{dist/es2015 → esm2015}/tabstrip/events/select-event.js +0 -0
- package/{dist/es2015 → esm2015}/tabstrip/events/tabclose-event.js +0 -0
- package/{dist/es2015 → esm2015}/tabstrip/events/tabscroll-event.js +8 -1
- package/{dist/es → esm2015}/tabstrip/events.js +0 -0
- package/esm2015/tabstrip/localization/custom-messages.component.js +41 -0
- package/esm2015/tabstrip/localization/localized-messages.directive.js +36 -0
- package/esm2015/tabstrip/localization/messages.js +23 -0
- package/{dist/es → esm2015}/tabstrip/models/button-state-change.js +1 -0
- package/{dist/es/avatar/models/models.js → esm2015/tabstrip/models/scroll-button-type.js} +1 -0
- package/{dist/es → esm2015}/tabstrip/models/scroll-buttons-visibility.js +1 -0
- package/{dist/es2015 → esm2015}/tabstrip/models/scrollable-settings.js +0 -2
- package/{dist/es → esm2015}/tabstrip/models/tab-alignment.js +1 -0
- package/{dist/es → esm2015}/tabstrip/models/tab-position.js +1 -0
- package/esm2015/tabstrip/models/tabstrip-tab.component.js +65 -0
- package/esm2015/tabstrip/rendering/tab.component.js +123 -0
- package/esm2015/tabstrip/scrollable-button.component.js +123 -0
- package/{dist/es2015 → esm2015}/tabstrip/tabstrip-scroll.service.js +16 -36
- package/{dist/es2015 → esm2015}/tabstrip/tabstrip.component.js +237 -149
- package/{dist/es2015 → esm2015}/tabstrip/tabstrip.service.js +11 -16
- package/{dist/es2015 → esm2015}/tabstrip/util.js +0 -0
- package/{dist/es2015 → esm2015}/tabstrip.module.js +26 -11
- package/{dist/es2015 → esm2015}/tilelayout/constants.js +0 -0
- package/{dist/es2015 → esm2015}/tilelayout/dragging-service.js +10 -12
- package/{dist/es → esm2015}/tilelayout/models/dragging-config.interface.js +1 -0
- package/{dist/es → esm2015}/tilelayout/models/flowmode.type.js +1 -0
- package/{dist/es → esm2015}/tilelayout/models/gap.interface.js +1 -0
- package/{dist/es2015 → esm2015}/tilelayout/reorder-event.js +1 -1
- package/{dist/es2015 → esm2015}/tilelayout/resize-event.js +1 -1
- package/esm2015/tilelayout/tilelayout-item-body.component.js +37 -0
- package/esm2015/tilelayout/tilelayout-item-header.component.js +52 -0
- package/{dist/es2015 → esm2015}/tilelayout/tilelayout-item.component.js +81 -76
- package/{dist/es2015 → esm2015}/tilelayout/tilelayout-resize-handle.directive.js +16 -20
- package/{dist/es2015 → esm2015}/tilelayout/tilelayout.component.js +79 -84
- package/{dist/es2015 → esm2015}/tilelayout/util.js +0 -0
- package/{dist/es2015 → esm2015}/tilelayout.module.js +22 -11
- package/{dist/es2015/expansionpanel → expansionpanel}/animations.d.ts +0 -0
- package/{dist/es2015/expansionpanel → expansionpanel}/events/action-event.d.ts +5 -1
- package/{dist/es2015/expansionpanel → expansionpanel}/expansionpanel-title.directive.d.ts +3 -0
- package/{dist/es2015/expansionpanel → expansionpanel}/expansionpanel.component.d.ts +9 -5
- package/expansionpanel.module.d.ts +18 -0
- package/{dist/fesm2015/index.js → fesm2015/kendo-angular-layout.js} +5166 -4888
- package/gridlayout.module.d.ts +17 -0
- package/{dist/es/stepper/models/constants.js → kendo-angular-layout.d.ts} +3 -2
- package/{dist/es2015/layout.module.d.ts → layout.module.d.ts} +15 -0
- package/{dist/es2015/layouts → layouts}/grid-layout.component.d.ts +7 -3
- package/{dist/es2015/layouts → layouts}/gridlayout-item.component.d.ts +3 -0
- package/{dist/es2015/layouts → layouts}/models/gridlayout-gap-settings.d.ts +0 -0
- package/{dist/es2015/layouts → layouts}/models/gridlayout-row-col-size.d.ts +0 -0
- package/{dist/es2015/layouts → layouts}/models/layout-align-settings.d.ts +0 -0
- package/{dist/es2015/layouts → layouts}/models/layout-horizontal-align.d.ts +0 -0
- package/{dist/es2015/layouts → layouts}/models/layout-vertical-align.d.ts +0 -0
- package/{dist/es/avatar/models/shape.js → layouts/models.d.ts} +6 -0
- package/{dist/es2015/layouts → layouts}/stack-layout.component.d.ts +9 -5
- package/{dist/es2015/layouts → layouts}/util.d.ts +3 -3
- package/{dist/es2015/main.d.ts → main.d.ts} +3 -0
- package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
- package/package.json +43 -131
- package/{dist/es2015/panelbar → panelbar}/panelbar-content.directive.d.ts +3 -0
- package/{dist/es2015/panelbar → panelbar}/panelbar-expand-mode.d.ts +0 -0
- package/{dist/es2015/panelbar → panelbar}/panelbar-item-model.d.ts +0 -0
- package/{dist/es2015/panelbar → panelbar}/panelbar-item-template.directive.d.ts +3 -0
- package/{dist/es2015/panelbar → panelbar}/panelbar-item-title.directive.d.ts +3 -0
- package/{dist/es2015/panelbar → panelbar}/panelbar-item.component.d.ts +17 -13
- package/{dist/es2015/panelbar → panelbar}/panelbar.component.d.ts +13 -8
- package/{dist/es2015/panelbar → panelbar}/panelbar.service.d.ts +3 -0
- package/panelbar.module.d.ts +27 -0
- package/schematics/ngAdd/index.js +5 -2
- package/schematics/ngAdd/index.js.map +1 -1
- package/{dist/es2015/splitter → splitter}/splitter-bar.component.d.ts +8 -5
- package/{dist/es2015/splitter → splitter}/splitter-pane.component.d.ts +13 -8
- package/{dist/es2015/splitter → splitter}/splitter.component.d.ts +9 -6
- package/{dist/es2015/splitter → splitter}/splitter.service.d.ts +3 -0
- package/splitter.module.d.ts +23 -0
- package/{dist/es2015/stacklayout.module.d.ts → stacklayout.module.d.ts} +6 -0
- package/{dist/es2015/stepper → stepper}/events/activate-event.d.ts +6 -2
- package/{dist/es2015/stepper → stepper}/list.component.d.ts +9 -6
- package/{dist/es2015/stepper → stepper}/localization/custom-messages.component.d.ts +4 -1
- package/{dist/es2015/stepper → stepper}/localization/localized-messages.directive.d.ts +3 -0
- package/{dist/es2015/stepper → stepper}/localization/messages.d.ts +3 -0
- package/{dist/es2015/stepper → stepper}/models/constants.d.ts +0 -0
- package/{dist/es2015/stepper → stepper}/models/orientation.d.ts +0 -0
- package/{dist/es2015/stepper → stepper}/models/step-predicate.d.ts +0 -0
- package/{dist/es2015/stepper → stepper}/models/step-type.d.ts +0 -0
- package/{dist/es2015/stepper → stepper}/models/stepper-step.interface.d.ts +0 -0
- package/{dist/es2015/stepper → stepper}/step.component.d.ts +16 -13
- package/{dist/es2015/stepper → stepper}/stepper.component.d.ts +22 -9
- package/{dist/es2015/stepper → stepper}/stepper.service.d.ts +6 -4
- package/{dist/es2015/stepper → stepper}/template-directives/indicator-template.directive.d.ts +3 -0
- package/{dist/es2015/stepper → stepper}/template-directives/label-template.directive.d.ts +3 -0
- package/{dist/es2015/stepper → stepper}/template-directives/step-template.directive.d.ts +3 -0
- package/{dist/es2015/stepper → stepper}/template-directives.d.ts +0 -0
- package/{dist/es2015/stepper → stepper}/types.d.ts +0 -0
- package/stepper.module.d.ts +24 -0
- package/{dist/es2015/tabstrip → tabstrip}/constants.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/directives/tab-content.directive.d.ts +3 -0
- package/{dist/es2015/tabstrip → tabstrip}/directives/tab-title.directive.d.ts +3 -0
- package/{dist/es2015/tabstrip → tabstrip}/events/select-event.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/events/tabclose-event.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/events/tabscroll-event.d.ts +5 -1
- package/{dist/es2015/tabstrip → tabstrip}/events.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/localization/custom-messages.component.d.ts +4 -1
- package/{dist/es2015/tabstrip → tabstrip}/localization/localized-messages.directive.d.ts +3 -0
- package/{dist/es2015/tabstrip → tabstrip}/localization/messages.d.ts +3 -0
- package/{dist/es2015/tabstrip → tabstrip}/models/button-state-change.d.ts +0 -0
- package/{dist/es/drawer/models/constants.js → tabstrip/models/scroll-button-type.d.ts} +1 -1
- package/{dist/es2015/tabstrip → tabstrip}/models/scroll-buttons-visibility.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/models/scrollable-settings.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/models/tab-alignment.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/models/tab-position.d.ts +0 -0
- package/{dist/es2015/tabstrip → tabstrip}/models/tabstrip-tab.component.d.ts +5 -2
- package/tabstrip/rendering/tab.component.d.ts +32 -0
- package/tabstrip/scrollable-button.component.d.ts +38 -0
- package/{dist/es2015/tabstrip → tabstrip}/tabstrip-scroll.service.d.ts +9 -11
- package/{dist/es2015/tabstrip → tabstrip}/tabstrip.component.d.ts +25 -15
- package/{dist/es2015/tabstrip → tabstrip}/tabstrip.service.d.ts +3 -1
- package/{dist/es2015/tabstrip → tabstrip}/util.d.ts +0 -0
- package/tabstrip.module.d.ts +30 -0
- package/{dist/es2015/tilelayout → tilelayout}/constants.d.ts +0 -0
- package/{dist/es2015/tilelayout → tilelayout}/dragging-service.d.ts +7 -4
- package/{dist/es2015/tilelayout → tilelayout}/models/dragging-config.interface.d.ts +0 -0
- package/{dist/es2015/tilelayout → tilelayout}/models/flowmode.type.d.ts +0 -0
- package/{dist/es2015/tilelayout → tilelayout}/models/gap.interface.d.ts +0 -0
- package/{dist/es2015/tilelayout → tilelayout}/reorder-event.d.ts +1 -1
- package/{dist/es2015/tilelayout → tilelayout}/resize-event.d.ts +1 -1
- package/{dist/es2015/tilelayout → tilelayout}/tilelayout-item-body.component.d.ts +3 -0
- package/{dist/es2015/tilelayout → tilelayout}/tilelayout-item-header.component.d.ts +11 -5
- package/{dist/es2015/tilelayout → tilelayout}/tilelayout-item.component.d.ts +14 -5
- package/{dist/es2015/tilelayout → tilelayout}/tilelayout-resize-handle.directive.d.ts +3 -0
- package/{dist/es2015/tilelayout → tilelayout}/tilelayout.component.d.ts +10 -6
- package/{dist/es2015/tilelayout → tilelayout}/util.d.ts +0 -0
- package/tilelayout.module.d.ts +26 -0
- package/dist/cdn/js/kendo-angular-layout.js +0 -20
- package/dist/cdn/main.js +0 -5
- package/dist/es/avatar/avatar.component.js +0 -357
- package/dist/es/avatar/models/rounded.js +0 -4
- package/dist/es/avatar.module.js +0 -29
- package/dist/es/card/card-actions.component.js +0 -151
- package/dist/es/card/card-body.component.js +0 -26
- package/dist/es/card/card-footer.component.js +0 -26
- package/dist/es/card/card-header.component.js +0 -26
- package/dist/es/card/card.component.js +0 -114
- package/dist/es/card/directives/card-media.directive.js +0 -25
- package/dist/es/card/directives/card-separator.directive.js +0 -66
- package/dist/es/card/directives/card-subtitle.directive.js +0 -25
- package/dist/es/card/directives/card-title.directive.js +0 -25
- package/dist/es/card/models/card-action.js +0 -13
- package/dist/es/card.module.js +0 -47
- package/dist/es/common/dom-queries.js +0 -52
- package/dist/es/common/preventable-event.js +0 -36
- package/dist/es/common/util.js +0 -91
- package/dist/es/drawer/animations.js +0 -146
- package/dist/es/drawer/drawer-container.component.js +0 -133
- package/dist/es/drawer/drawer-content.component.js +0 -28
- package/dist/es/drawer/drawer.component.js +0 -405
- package/dist/es/drawer/drawer.service.js +0 -45
- package/dist/es/drawer/events/select-event.js +0 -17
- package/dist/es/drawer/item.component.js +0 -123
- package/dist/es/drawer/list.component.js +0 -119
- package/dist/es/drawer/template-directives/drawer-template.directive.js +0 -27
- package/dist/es/drawer/template-directives/footer-template.directive.js +0 -25
- package/dist/es/drawer/template-directives/header-template.directive.js +0 -25
- package/dist/es/drawer/template-directives/item-template.directive.js +0 -25
- package/dist/es/drawer/util.js +0 -16
- package/dist/es/drawer.module.js +0 -45
- package/dist/es/expansionpanel/animations.js +0 -23
- package/dist/es/expansionpanel/events/action-event.js +0 -17
- package/dist/es/expansionpanel/expansionpanel-title.directive.js +0 -26
- package/dist/es/expansionpanel/expansionpanel.component.js +0 -441
- package/dist/es/expansionpanel.module.js +0 -32
- package/dist/es/gridlayout.module.js +0 -31
- package/dist/es/index.js +0 -29
- package/dist/es/layout.module.js +0 -71
- package/dist/es/layouts/grid-layout.component.js +0 -155
- package/dist/es/layouts/gridlayout-item.component.js +0 -52
- package/dist/es/layouts/stack-layout.component.js +0 -171
- package/dist/es/layouts/util.js +0 -102
- package/dist/es/package-metadata.js +0 -15
- package/dist/es/panelbar/panelbar-content.directive.js +0 -23
- package/dist/es/panelbar/panelbar-item-template.directive.js +0 -23
- package/dist/es/panelbar/panelbar-item-title.directive.js +0 -46
- package/dist/es/panelbar/panelbar-item.component.js +0 -455
- package/dist/es/panelbar/panelbar.component.js +0 -557
- package/dist/es/panelbar/panelbar.service.js +0 -43
- package/dist/es/panelbar.module.js +0 -44
- package/dist/es/splitter/splitter-bar.component.js +0 -282
- package/dist/es/splitter/splitter-pane.component.js +0 -270
- package/dist/es/splitter/splitter.component.js +0 -226
- package/dist/es/splitter/splitter.service.js +0 -153
- package/dist/es/splitter.module.js +0 -42
- package/dist/es/stacklayout.module.js +0 -29
- package/dist/es/stepper/events/activate-event.js +0 -17
- package/dist/es/stepper/list.component.js +0 -144
- package/dist/es/stepper/localization/custom-messages.component.js +0 -44
- package/dist/es/stepper/localization/localized-messages.directive.js +0 -35
- package/dist/es/stepper/localization/messages.js +0 -22
- package/dist/es/stepper/step.component.js +0 -272
- package/dist/es/stepper/stepper.component.js +0 -328
- package/dist/es/stepper/stepper.service.js +0 -161
- package/dist/es/stepper/template-directives/indicator-template.directive.js +0 -25
- package/dist/es/stepper/template-directives/label-template.directive.js +0 -25
- package/dist/es/stepper/template-directives/step-template.directive.js +0 -25
- package/dist/es/stepper.module.js +0 -47
- package/dist/es/tabstrip/constants.js +0 -33
- package/dist/es/tabstrip/directives/tab-content.directive.js +0 -49
- package/dist/es/tabstrip/directives/tab-title.directive.js +0 -54
- package/dist/es/tabstrip/events/select-event.js +0 -26
- package/dist/es/tabstrip/events/tabclose-event.js +0 -22
- package/dist/es/tabstrip/events/tabscroll-event.js +0 -19
- package/dist/es/tabstrip/localization/custom-messages.component.js +0 -44
- package/dist/es/tabstrip/localization/localized-messages.directive.js +0 -35
- package/dist/es/tabstrip/localization/messages.js +0 -22
- package/dist/es/tabstrip/models/scrollable-settings.js +0 -28
- package/dist/es/tabstrip/models/tabstrip-tab.component.js +0 -88
- package/dist/es/tabstrip/rendering/tab.component.js +0 -131
- package/dist/es/tabstrip/scrollable-button.component.js +0 -131
- package/dist/es/tabstrip/tabstrip-scroll.service.js +0 -226
- package/dist/es/tabstrip/tabstrip.component.js +0 -529
- package/dist/es/tabstrip/tabstrip.service.js +0 -158
- package/dist/es/tabstrip/util.js +0 -111
- package/dist/es/tabstrip.module.js +0 -51
- package/dist/es/tilelayout/constants.js +0 -70
- package/dist/es/tilelayout/dragging-service.js +0 -430
- package/dist/es/tilelayout/preventable-event.js +0 -29
- package/dist/es/tilelayout/reorder-event.js +0 -39
- package/dist/es/tilelayout/resize-event.js +0 -35
- package/dist/es/tilelayout/tilelayout-item-body.component.js +0 -32
- package/dist/es/tilelayout/tilelayout-item-header.component.js +0 -55
- package/dist/es/tilelayout/tilelayout-item.component.js +0 -198
- package/dist/es/tilelayout/tilelayout-resize-handle.directive.js +0 -61
- package/dist/es/tilelayout/tilelayout.component.js +0 -344
- package/dist/es/tilelayout/util.js +0 -88
- package/dist/es/tilelayout.module.js +0 -43
- package/dist/es2015/avatar/models/fill.js +0 -4
- package/dist/es2015/avatar/models/models.js +0 -4
- package/dist/es2015/avatar/models/size.js +0 -4
- package/dist/es2015/avatar/models/theme-color.js +0 -4
- package/dist/es2015/avatar.module.js +0 -28
- package/dist/es2015/card/card-actions.component.js +0 -146
- package/dist/es2015/card/card-body.component.js +0 -30
- package/dist/es2015/card/card-footer.component.js +0 -30
- package/dist/es2015/card/card-header.component.js +0 -30
- package/dist/es2015/card/card.component.js +0 -101
- package/dist/es2015/card/directives/card-media.directive.js +0 -27
- package/dist/es2015/card/directives/card-separator.directive.js +0 -60
- package/dist/es2015/card/directives/card-subtitle.directive.js +0 -27
- package/dist/es2015/card/directives/card-title.directive.js +0 -27
- package/dist/es2015/card/models/actions-layout.js +0 -4
- package/dist/es2015/card.module.d.ts +0 -10
- package/dist/es2015/common/direction.js +0 -4
- package/dist/es2015/common/orientation.js +0 -4
- package/dist/es2015/common/preventable-event.d.ts +0 -28
- package/dist/es2015/common/preventable-event.js +0 -34
- package/dist/es2015/common/styling-classes.js +0 -4
- package/dist/es2015/drawer/drawer-container.component.js +0 -109
- package/dist/es2015/drawer/drawer-content.component.js +0 -29
- package/dist/es2015/drawer/item.component.js +0 -121
- package/dist/es2015/drawer/models/drawer-animation.interface.js +0 -4
- package/dist/es2015/drawer/models/drawer-item.interface.js +0 -4
- package/dist/es2015/drawer/models/mode.js +0 -4
- package/dist/es2015/drawer/models/position.js +0 -4
- package/dist/es2015/drawer/template-directives/drawer-template.directive.js +0 -26
- package/dist/es2015/drawer/template-directives/footer-template.directive.js +0 -24
- package/dist/es2015/drawer/template-directives/header-template.directive.js +0 -24
- package/dist/es2015/drawer/template-directives/item-template.directive.js +0 -24
- package/dist/es2015/drawer/template-directives.js +0 -8
- package/dist/es2015/drawer/types.js +0 -4
- package/dist/es2015/drawer.module.d.ts +0 -10
- package/dist/es2015/expansionpanel/expansionpanel-title.directive.js +0 -25
- package/dist/es2015/expansionpanel.module.d.ts +0 -10
- package/dist/es2015/expansionpanel.module.js +0 -31
- package/dist/es2015/gridlayout.module.d.ts +0 -10
- package/dist/es2015/gridlayout.module.js +0 -30
- package/dist/es2015/index.d.ts +0 -29
- package/dist/es2015/index.js +0 -29
- package/dist/es2015/index.metadata.json +0 -1
- package/dist/es2015/layouts/gridlayout-item.component.js +0 -53
- package/dist/es2015/layouts/models/gridlayout-gap-settings.js +0 -4
- package/dist/es2015/layouts/models/gridlayout-row-col-size.js +0 -4
- package/dist/es2015/layouts/models/layout-align-settings.js +0 -4
- package/dist/es2015/layouts/models/layout-horizontal-align.js +0 -4
- package/dist/es2015/layouts/models/layout-vertical-align.js +0 -4
- package/dist/es2015/layouts/models.js +0 -4
- package/dist/es2015/main.js +0 -72
- package/dist/es2015/panelbar/panelbar-content.directive.js +0 -22
- package/dist/es2015/panelbar/panelbar-expand-mode.js +0 -30
- package/dist/es2015/panelbar/panelbar-item-model.js +0 -4
- package/dist/es2015/panelbar/panelbar-item-template.directive.js +0 -22
- package/dist/es2015/panelbar.module.d.ts +0 -17
- package/dist/es2015/splitter.module.d.ts +0 -14
- package/dist/es2015/stacklayout.module.js +0 -28
- package/dist/es2015/stepper/list.component.js +0 -161
- package/dist/es2015/stepper/localization/custom-messages.component.js +0 -36
- package/dist/es2015/stepper/localization/localized-messages.directive.js +0 -33
- package/dist/es2015/stepper/localization/messages.js +0 -16
- package/dist/es2015/stepper/models/orientation.js +0 -4
- package/dist/es2015/stepper/models/step-predicate.js +0 -4
- package/dist/es2015/stepper/models/step-type.js +0 -4
- package/dist/es2015/stepper/models/stepper-step.interface.js +0 -4
- package/dist/es2015/stepper/template-directives/indicator-template.directive.js +0 -24
- package/dist/es2015/stepper/template-directives/label-template.directive.js +0 -24
- package/dist/es2015/stepper/template-directives/step-template.directive.js +0 -24
- package/dist/es2015/stepper/template-directives.js +0 -7
- package/dist/es2015/stepper/types.js +0 -4
- package/dist/es2015/stepper.module.d.ts +0 -10
- package/dist/es2015/tabstrip/events.js +0 -6
- package/dist/es2015/tabstrip/localization/custom-messages.component.js +0 -36
- package/dist/es2015/tabstrip/localization/localized-messages.directive.js +0 -31
- package/dist/es2015/tabstrip/localization/messages.js +0 -16
- package/dist/es2015/tabstrip/models/button-state-change.js +0 -4
- package/dist/es2015/tabstrip/models/scroll-buttons-visibility.js +0 -4
- package/dist/es2015/tabstrip/models/tab-alignment.js +0 -4
- package/dist/es2015/tabstrip/models/tab-position.js +0 -4
- package/dist/es2015/tabstrip/models/tabstrip-tab.component.js +0 -82
- package/dist/es2015/tabstrip/rendering/tab.component.d.ts +0 -28
- package/dist/es2015/tabstrip/rendering/tab.component.js +0 -116
- package/dist/es2015/tabstrip/scrollable-button.component.d.ts +0 -29
- package/dist/es2015/tabstrip/scrollable-button.component.js +0 -110
- package/dist/es2015/tabstrip.module.d.ts +0 -16
- package/dist/es2015/tilelayout/models/dragging-config.interface.js +0 -4
- package/dist/es2015/tilelayout/models/flowmode.type.js +0 -4
- package/dist/es2015/tilelayout/models/gap.interface.js +0 -4
- package/dist/es2015/tilelayout/preventable-event.d.ts +0 -21
- package/dist/es2015/tilelayout/preventable-event.js +0 -27
- package/dist/es2015/tilelayout/tilelayout-item-body.component.js +0 -36
- package/dist/es2015/tilelayout/tilelayout-item-header.component.js +0 -48
- package/dist/es2015/tilelayout.module.d.ts +0 -16
- package/dist/fesm5/index.js +0 -9179
- package/dist/npm/avatar/avatar.component.js +0 -359
- package/dist/npm/avatar/models/fill.js +0 -6
- package/dist/npm/avatar/models/models.js +0 -6
- package/dist/npm/avatar/models/rounded.js +0 -6
- package/dist/npm/avatar/models/shape.js +0 -6
- package/dist/npm/avatar/models/size.js +0 -6
- package/dist/npm/avatar/models/theme-color.js +0 -6
- package/dist/npm/avatar.module.js +0 -31
- package/dist/npm/card/card-actions.component.js +0 -153
- package/dist/npm/card/card-body.component.js +0 -28
- package/dist/npm/card/card-footer.component.js +0 -28
- package/dist/npm/card/card-header.component.js +0 -28
- package/dist/npm/card/card.component.js +0 -116
- package/dist/npm/card/directives/card-media.directive.js +0 -27
- package/dist/npm/card/directives/card-separator.directive.js +0 -68
- package/dist/npm/card/directives/card-subtitle.directive.js +0 -27
- package/dist/npm/card/directives/card-title.directive.js +0 -27
- package/dist/npm/card/models/actions-layout.js +0 -6
- package/dist/npm/card/models/card-action.js +0 -15
- package/dist/npm/card.module.js +0 -49
- package/dist/npm/common/direction.js +0 -6
- package/dist/npm/common/dom-queries.js +0 -55
- package/dist/npm/common/orientation.js +0 -6
- package/dist/npm/common/preventable-event.js +0 -38
- package/dist/npm/common/styling-classes.js +0 -6
- package/dist/npm/common/util.js +0 -93
- package/dist/npm/drawer/animations.js +0 -150
- package/dist/npm/drawer/drawer-container.component.js +0 -135
- package/dist/npm/drawer/drawer-content.component.js +0 -30
- package/dist/npm/drawer/drawer.component.js +0 -407
- package/dist/npm/drawer/drawer.service.js +0 -47
- package/dist/npm/drawer/events/select-event.js +0 -19
- package/dist/npm/drawer/item.component.js +0 -125
- package/dist/npm/drawer/list.component.js +0 -121
- package/dist/npm/drawer/models/constants.js +0 -10
- package/dist/npm/drawer/models/drawer-animation.interface.js +0 -6
- package/dist/npm/drawer/models/drawer-item.interface.js +0 -6
- package/dist/npm/drawer/models/mode.js +0 -6
- package/dist/npm/drawer/models/position.js +0 -6
- package/dist/npm/drawer/template-directives/drawer-template.directive.js +0 -29
- package/dist/npm/drawer/template-directives/footer-template.directive.js +0 -27
- package/dist/npm/drawer/template-directives/header-template.directive.js +0 -27
- package/dist/npm/drawer/template-directives/item-template.directive.js +0 -27
- package/dist/npm/drawer/template-directives.js +0 -14
- package/dist/npm/drawer/types.js +0 -6
- package/dist/npm/drawer/util.js +0 -18
- package/dist/npm/drawer.module.js +0 -47
- package/dist/npm/expansionpanel/animations.js +0 -27
- package/dist/npm/expansionpanel/events/action-event.js +0 -19
- package/dist/npm/expansionpanel/expansionpanel-title.directive.js +0 -28
- package/dist/npm/expansionpanel/expansionpanel.component.js +0 -443
- package/dist/npm/expansionpanel.module.js +0 -34
- package/dist/npm/gridlayout.module.js +0 -33
- package/dist/npm/index.js +0 -53
- package/dist/npm/layout.module.js +0 -73
- package/dist/npm/layouts/grid-layout.component.js +0 -157
- package/dist/npm/layouts/gridlayout-item.component.js +0 -54
- package/dist/npm/layouts/models/gridlayout-gap-settings.js +0 -6
- package/dist/npm/layouts/models/gridlayout-row-col-size.js +0 -6
- package/dist/npm/layouts/models/layout-align-settings.js +0 -6
- package/dist/npm/layouts/models/layout-horizontal-align.js +0 -6
- package/dist/npm/layouts/models/layout-vertical-align.js +0 -6
- package/dist/npm/layouts/models.js +0 -6
- package/dist/npm/layouts/stack-layout.component.js +0 -173
- package/dist/npm/layouts/util.js +0 -104
- package/dist/npm/main.js +0 -132
- package/dist/npm/package-metadata.js +0 -17
- package/dist/npm/panelbar/panelbar-content.directive.js +0 -25
- package/dist/npm/panelbar/panelbar-expand-mode.js +0 -32
- package/dist/npm/panelbar/panelbar-item-model.js +0 -6
- package/dist/npm/panelbar/panelbar-item-template.directive.js +0 -25
- package/dist/npm/panelbar/panelbar-item-title.directive.js +0 -48
- package/dist/npm/panelbar/panelbar-item.component.js +0 -457
- package/dist/npm/panelbar/panelbar.component.js +0 -559
- package/dist/npm/panelbar/panelbar.service.js +0 -45
- package/dist/npm/panelbar.module.js +0 -46
- package/dist/npm/splitter/splitter-bar.component.js +0 -287
- package/dist/npm/splitter/splitter-pane.component.js +0 -272
- package/dist/npm/splitter/splitter.component.js +0 -228
- package/dist/npm/splitter/splitter.service.js +0 -155
- package/dist/npm/splitter.module.js +0 -44
- package/dist/npm/stacklayout.module.js +0 -31
- package/dist/npm/stepper/events/activate-event.js +0 -19
- package/dist/npm/stepper/list.component.js +0 -146
- package/dist/npm/stepper/localization/custom-messages.component.js +0 -46
- package/dist/npm/stepper/localization/localized-messages.directive.js +0 -37
- package/dist/npm/stepper/localization/messages.js +0 -24
- package/dist/npm/stepper/models/constants.js +0 -10
- package/dist/npm/stepper/models/orientation.js +0 -6
- package/dist/npm/stepper/models/step-predicate.js +0 -6
- package/dist/npm/stepper/models/step-type.js +0 -6
- package/dist/npm/stepper/models/stepper-step.interface.js +0 -6
- package/dist/npm/stepper/step.component.js +0 -274
- package/dist/npm/stepper/stepper.component.js +0 -330
- package/dist/npm/stepper/stepper.service.js +0 -163
- package/dist/npm/stepper/template-directives/indicator-template.directive.js +0 -27
- package/dist/npm/stepper/template-directives/label-template.directive.js +0 -27
- package/dist/npm/stepper/template-directives/step-template.directive.js +0 -27
- package/dist/npm/stepper/template-directives.js +0 -12
- package/dist/npm/stepper/types.js +0 -6
- package/dist/npm/stepper.module.js +0 -49
- package/dist/npm/tabstrip/constants.js +0 -35
- package/dist/npm/tabstrip/directives/tab-content.directive.js +0 -51
- package/dist/npm/tabstrip/directives/tab-title.directive.js +0 -56
- package/dist/npm/tabstrip/events/select-event.js +0 -28
- package/dist/npm/tabstrip/events/tabclose-event.js +0 -24
- package/dist/npm/tabstrip/events/tabscroll-event.js +0 -21
- package/dist/npm/tabstrip/events.js +0 -10
- package/dist/npm/tabstrip/localization/custom-messages.component.js +0 -46
- package/dist/npm/tabstrip/localization/localized-messages.directive.js +0 -37
- package/dist/npm/tabstrip/localization/messages.js +0 -24
- package/dist/npm/tabstrip/models/button-state-change.js +0 -6
- package/dist/npm/tabstrip/models/scroll-buttons-visibility.js +0 -6
- package/dist/npm/tabstrip/models/scrollable-settings.js +0 -30
- package/dist/npm/tabstrip/models/tab-alignment.js +0 -6
- package/dist/npm/tabstrip/models/tab-position.js +0 -6
- package/dist/npm/tabstrip/models/tabstrip-tab.component.js +0 -90
- package/dist/npm/tabstrip/rendering/tab.component.js +0 -133
- package/dist/npm/tabstrip/scrollable-button.component.js +0 -133
- package/dist/npm/tabstrip/tabstrip-scroll.service.js +0 -228
- package/dist/npm/tabstrip/tabstrip.component.js +0 -531
- package/dist/npm/tabstrip/tabstrip.service.js +0 -160
- package/dist/npm/tabstrip/util.js +0 -113
- package/dist/npm/tabstrip.module.js +0 -53
- package/dist/npm/tilelayout/constants.js +0 -72
- package/dist/npm/tilelayout/dragging-service.js +0 -432
- package/dist/npm/tilelayout/models/dragging-config.interface.js +0 -6
- package/dist/npm/tilelayout/models/flowmode.type.js +0 -6
- package/dist/npm/tilelayout/models/gap.interface.js +0 -6
- package/dist/npm/tilelayout/preventable-event.js +0 -31
- package/dist/npm/tilelayout/reorder-event.js +0 -41
- package/dist/npm/tilelayout/resize-event.js +0 -37
- package/dist/npm/tilelayout/tilelayout-item-body.component.js +0 -34
- package/dist/npm/tilelayout/tilelayout-item-header.component.js +0 -57
- package/dist/npm/tilelayout/tilelayout-item.component.js +0 -200
- package/dist/npm/tilelayout/tilelayout-resize-handle.directive.js +0 -63
- package/dist/npm/tilelayout/tilelayout.component.js +0 -346
- package/dist/npm/tilelayout/util.js +0 -90
- package/dist/npm/tilelayout.module.js +0 -45
- package/dist/systemjs/kendo-angular-layout.js +0 -5
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "./panelbar/panelbar.component";
|
|
7
|
+
import * as i2 from "./panelbar/panelbar-item.component";
|
|
8
|
+
import * as i3 from "./panelbar/panelbar-content.directive";
|
|
9
|
+
import * as i4 from "./panelbar/panelbar-item-template.directive";
|
|
10
|
+
import * as i5 from "./panelbar/panelbar-item-title.directive";
|
|
11
|
+
import * as i6 from "@angular/common";
|
|
12
|
+
/**
|
|
13
|
+
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
14
|
+
* definition for the PanelBar component.
|
|
15
|
+
*
|
|
16
|
+
* The module registers:
|
|
17
|
+
* - `PanelBarComponent`—The `PanelBar` component class.
|
|
18
|
+
* - `PanelBarItemComponent`—The `PanelBarItem` component class.
|
|
19
|
+
* - `PanelBarContentComponent`—The `PanelBarContent` component class.
|
|
20
|
+
* - `PanelBarItemTemplateDirective—The `PanelBarItemTemplate` directive.
|
|
21
|
+
* - `PanelBarItemTitleDirective—The `PanelBarItemTitle` directive.
|
|
22
|
+
*/
|
|
23
|
+
export declare class PanelBarModule {
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PanelBarModule, never>;
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PanelBarModule, [typeof i1.PanelBarComponent, typeof i2.PanelBarItemComponent, typeof i3.PanelBarContentDirective, typeof i4.PanelBarItemTemplateDirective, typeof i5.PanelBarItemTitleDirective], [typeof i6.CommonModule], [typeof i1.PanelBarComponent, typeof i2.PanelBarItemComponent, typeof i3.PanelBarContentDirective, typeof i4.PanelBarItemTemplateDirective, typeof i5.PanelBarItemTitleDirective]>;
|
|
26
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PanelBarModule>;
|
|
27
|
+
}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
"use strict";
|
|
2
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
7
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
4
8
|
function default_1(options) {
|
|
5
|
-
const finalOptions = Object.assign({}, options, { mainNgModule: 'LayoutModule', package: 'layout' //package name, e.g grid
|
|
9
|
+
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'LayoutModule', package: 'layout' //package name, e.g grid
|
|
6
10
|
});
|
|
7
11
|
return schematics_1.externalSchematic('@progress/kendo-schematics', 'ng-add', finalOptions);
|
|
8
12
|
}
|
|
9
13
|
exports.default = default_1;
|
|
10
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKqC;AAErC,mBAAyB,OAAY;IACjC,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKqC;AAErC,mBAAyB,OAAY;IACjC,MAAM,YAAY,mCACX,OAAO,KACV,YAAY,EAAE,cAAc,EAC5B,OAAO,EAAE,QAAQ,CAAC,wBAAwB;OAC7C,CAAC;IAEF,OAAO,8BAAiB,CAAC,4BAA4B,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;AACnF,CAAC;AARD,4BAQC"}
|
|
@@ -7,6 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
7
7
|
import { Orientation } from '../common/orientation';
|
|
8
8
|
import { DraggableDirective } from '@progress/kendo-angular-common';
|
|
9
9
|
import { SplitterService } from './splitter.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* @hidden
|
|
12
13
|
*/
|
|
@@ -16,19 +17,19 @@ export declare class SplitterBarComponent implements OnInit, OnDestroy {
|
|
|
16
17
|
private splitter;
|
|
17
18
|
private localization;
|
|
18
19
|
orientation: Orientation;
|
|
19
|
-
|
|
20
|
+
get direction(): string;
|
|
20
21
|
index: number;
|
|
21
22
|
ariaRole: string;
|
|
22
23
|
focused: boolean;
|
|
23
24
|
private subscriptions;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
get tabIndex(): number;
|
|
26
|
+
get hostClasses(): string;
|
|
27
|
+
get order(): number;
|
|
27
28
|
collapseAny(): void;
|
|
28
29
|
onFocusIn(): void;
|
|
29
30
|
onFocusOut(): void;
|
|
30
31
|
onKeyDown(event: any): void;
|
|
31
|
-
private
|
|
32
|
+
private get expandLast();
|
|
32
33
|
constructor(draggable: DraggableDirective, element: ElementRef<HTMLElement>, splitter: SplitterService, localization: LocalizationService);
|
|
33
34
|
ngOnInit(): void;
|
|
34
35
|
ngOnDestroy(): void;
|
|
@@ -37,4 +38,6 @@ export declare class SplitterBarComponent implements OnInit, OnDestroy {
|
|
|
37
38
|
previousArrowClass(): string;
|
|
38
39
|
nextArrowClass(): string;
|
|
39
40
|
private tryToggleNearest;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterBarComponent, [{ host: true; }, null, null, null]>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SplitterBarComponent, "kendo-splitter-bar", never, { "orientation": "orientation"; "index": "index"; }, {}, never, never>;
|
|
40
43
|
}
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ChangeDetectorRef, ElementRef, EventEmitter, Renderer2, AfterViewChecked } from '@angular/core';
|
|
6
6
|
import { Orientation } from '../common/orientation';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* Represents the pane component of the Splitter.
|
|
9
10
|
*/
|
|
@@ -14,12 +15,14 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
|
|
|
14
15
|
/**
|
|
15
16
|
* @hidden
|
|
16
17
|
*/
|
|
17
|
-
order: number;
|
|
18
|
+
set order(paneOrder: number);
|
|
19
|
+
get order(): number;
|
|
18
20
|
/**
|
|
19
21
|
* Sets the initial size of the pane.
|
|
20
22
|
* Has to be between the `min` and `max` properties.
|
|
21
23
|
*/
|
|
22
|
-
size: string;
|
|
24
|
+
set size(newSize: string);
|
|
25
|
+
get size(): string;
|
|
23
26
|
/**
|
|
24
27
|
* Sets the minimum possible size of the pane.
|
|
25
28
|
*/
|
|
@@ -51,7 +54,7 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
|
|
|
51
54
|
/**
|
|
52
55
|
* @hidden
|
|
53
56
|
*/
|
|
54
|
-
containsSplitter: boolean;
|
|
57
|
+
set containsSplitter(value: boolean);
|
|
55
58
|
/**
|
|
56
59
|
* @hidden
|
|
57
60
|
*/
|
|
@@ -68,11 +71,11 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
|
|
|
68
71
|
* Allows a two-way binding of the `collapsed` pane property.
|
|
69
72
|
*/
|
|
70
73
|
collapsedChange: EventEmitter<boolean>;
|
|
71
|
-
|
|
74
|
+
get isHidden(): boolean;
|
|
72
75
|
hostClass: boolean;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
+
get staticPaneClass(): boolean;
|
|
77
|
+
get scrollablePaneClass(): boolean;
|
|
78
|
+
get fixedSize(): boolean;
|
|
76
79
|
/**
|
|
77
80
|
* @hidden
|
|
78
81
|
*/
|
|
@@ -88,7 +91,7 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
|
|
|
88
91
|
/**
|
|
89
92
|
* @hidden
|
|
90
93
|
*/
|
|
91
|
-
|
|
94
|
+
get computedSize(): number;
|
|
92
95
|
/**
|
|
93
96
|
* @hidden
|
|
94
97
|
*/
|
|
@@ -98,4 +101,6 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
|
|
|
98
101
|
*/
|
|
99
102
|
detectChanges(): void;
|
|
100
103
|
private setOrderStyles;
|
|
104
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterPaneComponent, never>;
|
|
105
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SplitterPaneComponent, "kendo-splitter-pane", ["kendoSplitterPane"], { "order": "order"; "size": "size"; "min": "min"; "max": "max"; "resizable": "resizable"; "collapsible": "collapsible"; "scrollable": "scrollable"; "collapsed": "collapsed"; "orientation": "orientation"; "containsSplitter": "containsSplitter"; "overlayContent": "overlayContent"; }, { "sizeChange": "sizeChange"; "collapsedChange": "collapsedChange"; }, never, ["*"]>;
|
|
101
106
|
}
|
|
@@ -8,6 +8,7 @@ import { Orientation } from '../common/orientation';
|
|
|
8
8
|
import { SplitterPaneComponent } from './splitter-pane.component';
|
|
9
9
|
import { SplitterBarComponent } from './splitter-bar.component';
|
|
10
10
|
import { SplitterService } from './splitter.service';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
/**
|
|
12
13
|
* Represents the [Kendo UI Splitter component for Angular]({% slug overview_splitter %}).
|
|
13
14
|
*
|
|
@@ -61,12 +62,12 @@ export declare class SplitterComponent implements AfterContentInit {
|
|
|
61
62
|
* which are positioned inside the panes.
|
|
62
63
|
*/
|
|
63
64
|
layoutChange: EventEmitter<string>;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
get hostClasses(): boolean;
|
|
66
|
+
get horizontalHostClasses(): boolean;
|
|
67
|
+
get verticalHostClasses(): boolean;
|
|
68
|
+
get dir(): string;
|
|
68
69
|
ariaRole: string;
|
|
69
|
-
splitbars: QueryList<SplitterBarComponent
|
|
70
|
+
set splitbars(splitbars: QueryList<SplitterBarComponent>);
|
|
70
71
|
/**
|
|
71
72
|
* @hidden
|
|
72
73
|
*/
|
|
@@ -79,5 +80,7 @@ export declare class SplitterComponent implements AfterContentInit {
|
|
|
79
80
|
private reconfigure;
|
|
80
81
|
private unsubscribeChanges;
|
|
81
82
|
private configure;
|
|
82
|
-
private
|
|
83
|
+
private get direction();
|
|
84
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterComponent, [null, null, null, null, { optional: true; host: true; }]>;
|
|
85
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SplitterComponent, "kendo-splitter", ["kendoSplitter"], { "orientation": "orientation"; }, { "layoutChange": "layoutChange"; }, ["panes"], ["kendo-splitter-pane"]>;
|
|
83
86
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { EventEmitter, NgZone } from '@angular/core';
|
|
6
6
|
import { Orientation } from '../common/orientation';
|
|
7
7
|
import { SplitterPaneComponent } from './splitter-pane.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
/**
|
|
9
10
|
* @hidden
|
|
10
11
|
*/
|
|
@@ -50,4 +51,6 @@ export declare class SplitterService {
|
|
|
50
51
|
private isPercent;
|
|
51
52
|
private toPixels;
|
|
52
53
|
private emit;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterService, never>;
|
|
55
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SplitterService>;
|
|
53
56
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "./splitter/splitter-bar.component";
|
|
7
|
+
import * as i2 from "./splitter/splitter.component";
|
|
8
|
+
import * as i3 from "./splitter/splitter-pane.component";
|
|
9
|
+
import * as i4 from "@angular/common";
|
|
10
|
+
import * as i5 from "@progress/kendo-angular-common";
|
|
11
|
+
/**
|
|
12
|
+
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
13
|
+
* definition for the Splitter component.
|
|
14
|
+
*
|
|
15
|
+
* The module registers:
|
|
16
|
+
* - `SplitterComponent`—The `Splitter` component class.
|
|
17
|
+
* - `SplitterPaneComponent`—The `SplitterPane` component class.
|
|
18
|
+
*/
|
|
19
|
+
export declare class SplitterModule {
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterModule, never>;
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitterModule, [typeof i1.SplitterBarComponent, typeof i2.SplitterComponent, typeof i3.SplitterPaneComponent], [typeof i4.CommonModule, typeof i5.DraggableModule], [typeof i2.SplitterComponent, typeof i3.SplitterPaneComponent]>;
|
|
22
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SplitterModule>;
|
|
23
|
+
}
|
|
@@ -2,9 +2,15 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "./layouts/stack-layout.component";
|
|
7
|
+
import * as i2 from "@angular/common";
|
|
5
8
|
/**
|
|
6
9
|
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
7
10
|
* definition for the StackLayout component.
|
|
8
11
|
*/
|
|
9
12
|
export declare class StackLayoutModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StackLayoutModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StackLayoutModule, [typeof i1.StackLayoutComponent], [typeof i2.CommonModule], [typeof i1.StackLayoutComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StackLayoutModule>;
|
|
10
16
|
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
5
|
+
import { PreventableEvent } from '@progress/kendo-angular-common';
|
|
6
|
+
import { StepperComponent } from './../stepper.component';
|
|
7
7
|
/**
|
|
8
8
|
* Arguments for the `activate` event of the Stepper.
|
|
9
9
|
*/
|
|
@@ -24,4 +24,8 @@ export declare class StepperActivateEvent extends PreventableEvent {
|
|
|
24
24
|
* The Stepper that triggered the event.
|
|
25
25
|
*/
|
|
26
26
|
sender: StepperComponent;
|
|
27
|
+
/**
|
|
28
|
+
* @hidden
|
|
29
|
+
*/
|
|
30
|
+
constructor(args?: any);
|
|
27
31
|
}
|
|
@@ -2,17 +2,16 @@
|
|
|
2
2
|
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ElementRef, NgZone, OnDestroy, OnInit, Renderer2, TemplateRef } from "@angular/core";
|
|
5
|
+
import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2, TemplateRef } from "@angular/core";
|
|
6
6
|
import { StepperOrientation } from './models/orientation';
|
|
7
7
|
import { StepType } from './models/step-type';
|
|
8
|
-
import
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
12
|
export declare class StepperListComponent implements OnInit, OnDestroy {
|
|
13
13
|
private renderer;
|
|
14
14
|
private ngZone;
|
|
15
|
-
private service;
|
|
16
15
|
element: ElementRef;
|
|
17
16
|
linear: boolean;
|
|
18
17
|
stepType: StepType;
|
|
@@ -24,14 +23,18 @@ export declare class StepperListComponent implements OnInit, OnDestroy {
|
|
|
24
23
|
indicatorTemplate: TemplateRef<any>;
|
|
25
24
|
labelTemplate: TemplateRef<any>;
|
|
26
25
|
stepTemplate: TemplateRef<any>;
|
|
26
|
+
listKeydown: EventEmitter<any>;
|
|
27
|
+
listClick: EventEmitter<any>;
|
|
27
28
|
private domSubs;
|
|
28
|
-
constructor(renderer: Renderer2, ngZone: NgZone,
|
|
29
|
+
constructor(renderer: Renderer2, ngZone: NgZone, element: ElementRef);
|
|
29
30
|
ngOnInit(): void;
|
|
30
31
|
ngOnDestroy(): void;
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
get maxStepWidth(): number;
|
|
33
|
+
get maxStepHeight(): number;
|
|
33
34
|
private maxStepDimension;
|
|
34
35
|
private initDomEvents;
|
|
35
36
|
private clickHandler;
|
|
36
37
|
private getStepIndex;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperListComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperListComponent, "[kendoStepperList]", never, { "linear": "linear"; "stepType": "stepType"; "orientation": "orientation"; "currentStep": "currentStep"; "steps": "steps"; "successIcon": "successIcon"; "errorIcon": "errorIcon"; "indicatorTemplate": "indicatorTemplate"; "labelTemplate": "labelTemplate"; "stepTemplate": "stepTemplate"; }, { "listKeydown": "listKeydown"; "listClick": "listClick"; }, never, never>;
|
|
37
40
|
}
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
6
6
|
import { StepperMessages } from './messages';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* Custom component messages override default component messages
|
|
9
10
|
* ([see example]({% slug rtl_layout %})).
|
|
@@ -11,5 +12,7 @@ import { StepperMessages } from './messages';
|
|
|
11
12
|
export declare class StepperCustomMessagesComponent extends StepperMessages {
|
|
12
13
|
protected service: LocalizationService;
|
|
13
14
|
constructor(service: LocalizationService);
|
|
14
|
-
protected
|
|
15
|
+
protected get override(): boolean;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperCustomMessagesComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperCustomMessagesComponent, "kendo-stepper-messages", never, {}, {}, never, never>;
|
|
15
18
|
}
|
|
@@ -4,10 +4,13 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
6
6
|
import { StepperMessages } from './messages';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
9
10
|
*/
|
|
10
11
|
export declare class LocalizedStepperMessagesDirective extends StepperMessages {
|
|
11
12
|
protected service: LocalizationService;
|
|
12
13
|
constructor(service: LocalizationService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedStepperMessagesDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedStepperMessagesDirective, " [kendoStepperLocalizedMessages] ", never, {}, {}, never>;
|
|
13
16
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* @hidden
|
|
8
9
|
*/
|
|
@@ -11,4 +12,6 @@ export declare class StepperMessages extends ComponentMessages {
|
|
|
11
12
|
* The optional text.
|
|
12
13
|
*/
|
|
13
14
|
optional: string;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperMessages, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StepperMessages, "kendo-stepper-messages-base", never, { "optional": "optional"; }, {}, never>;
|
|
14
17
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -6,6 +6,7 @@ import { TemplateRef, OnInit, SimpleChanges, OnDestroy, OnChanges, NgZone, Eleme
|
|
|
6
6
|
import { StepType } from './models/step-type';
|
|
7
7
|
import { StepperService } from './stepper.service';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
9
10
|
/**
|
|
10
11
|
* @hidden
|
|
11
12
|
*/
|
|
@@ -27,25 +28,27 @@ export declare class StepperStepComponent implements OnInit, OnChanges, OnDestro
|
|
|
27
28
|
shouldCheckValidity: boolean;
|
|
28
29
|
private subs;
|
|
29
30
|
constructor(service: StepperService, localization: LocalizationService, ngZone: NgZone);
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
get errorStepClass(): boolean;
|
|
32
|
+
get successStepClass(): boolean;
|
|
32
33
|
ngOnInit(): void;
|
|
33
34
|
ngOnChanges(changes: SimpleChanges): void;
|
|
34
35
|
ngOnDestroy(): void;
|
|
35
36
|
onFocusedStepChange(): void;
|
|
36
37
|
onFocus(): void;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
38
|
+
get tabIndexAttr(): number;
|
|
39
|
+
get indicatorIconClasses(): string;
|
|
40
|
+
get showIndicatorIcon(): boolean;
|
|
41
|
+
get showLabelIcon(): boolean;
|
|
42
|
+
get showLabelText(): boolean;
|
|
43
|
+
get validationIconClasses(): string;
|
|
44
|
+
get indicatorText(): string;
|
|
44
45
|
updateStepValidity(): boolean;
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
get showIndicator(): boolean;
|
|
47
|
+
get showLabel(): boolean;
|
|
48
|
+
get optionalText(): string;
|
|
49
|
+
get transitionDuration(): number;
|
|
49
50
|
private _shouldCheckValidity;
|
|
50
51
|
private handleValidityChecks;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperStepComponent, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperStepComponent, "[kendoStepperStep]", never, { "step": "step"; "index": "index"; "current": "current"; "type": "type"; "successIcon": "successIcon"; "errorIcon": "errorIcon"; "indicatorTemplate": "indicatorTemplate"; "labelTemplate": "labelTemplate"; "stepTemplate": "stepTemplate"; }, {}, never, never>;
|
|
51
54
|
}
|
|
@@ -11,6 +11,7 @@ import { StepperLabelTemplateDirective } from './template-directives/label-templ
|
|
|
11
11
|
import { StepperActivateEvent } from './events/activate-event';
|
|
12
12
|
import { StepperIndicatorTemplateDirective } from './template-directives/indicator-template.directive';
|
|
13
13
|
import { StepperService } from './stepper.service';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
14
15
|
/**
|
|
15
16
|
* Represents the [Kendo UI Stepper component for Angular]({% slug overview_stepper %}).
|
|
16
17
|
*
|
|
@@ -36,7 +37,7 @@ export declare class StepperComponent implements OnChanges, OnDestroy {
|
|
|
36
37
|
private localization;
|
|
37
38
|
private stepperService;
|
|
38
39
|
hostClasses: boolean;
|
|
39
|
-
|
|
40
|
+
get linearClass(): boolean;
|
|
40
41
|
ariaRole: string;
|
|
41
42
|
direction: string;
|
|
42
43
|
displayStyle: string;
|
|
@@ -67,12 +68,14 @@ export declare class StepperComponent implements OnChanges, OnDestroy {
|
|
|
67
68
|
/**
|
|
68
69
|
* The index of the current step.
|
|
69
70
|
*/
|
|
70
|
-
currentStep: number;
|
|
71
|
+
set currentStep(value: number);
|
|
72
|
+
get currentStep(): number;
|
|
71
73
|
/**
|
|
72
74
|
* The collection of steps that will be rendered in the Stepper.
|
|
73
75
|
* ([see example]({% slug step_appearance_stepper %}))
|
|
74
76
|
*/
|
|
75
|
-
steps: any[];
|
|
77
|
+
set steps(steps: any[]);
|
|
78
|
+
get steps(): any[];
|
|
76
79
|
/**
|
|
77
80
|
* Specifies a custom icon that will be rendered inside the step
|
|
78
81
|
* for valid previous steps.
|
|
@@ -131,21 +134,31 @@ export declare class StepperComponent implements OnChanges, OnDestroy {
|
|
|
131
134
|
/**
|
|
132
135
|
* @hidden
|
|
133
136
|
*/
|
|
134
|
-
|
|
137
|
+
get progressAnimation(): any;
|
|
135
138
|
/**
|
|
136
139
|
* @hidden
|
|
137
140
|
*/
|
|
138
|
-
|
|
141
|
+
get animationDuration(): number;
|
|
139
142
|
/**
|
|
140
143
|
* @hidden
|
|
141
144
|
*/
|
|
142
|
-
|
|
145
|
+
get stepsListStyling(): Object;
|
|
143
146
|
/**
|
|
144
147
|
* @hidden
|
|
145
148
|
*/
|
|
146
|
-
|
|
147
|
-
|
|
149
|
+
get progressBarStyling(): Object;
|
|
150
|
+
/**
|
|
151
|
+
* @hidden
|
|
152
|
+
*/
|
|
153
|
+
onListKeydown(e: any): void;
|
|
154
|
+
/**
|
|
155
|
+
* @hidden
|
|
156
|
+
*/
|
|
157
|
+
onListClick(e: any): void;
|
|
158
|
+
/**
|
|
148
159
|
* @hidden
|
|
149
160
|
*/
|
|
150
|
-
|
|
161
|
+
get isHorizontal(): boolean;
|
|
162
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
163
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "kendo-stepper", ["kendoStepper"], { "stepType": "stepType"; "linear": "linear"; "orientation": "orientation"; "currentStep": "currentStep"; "steps": "steps"; "successIcon": "successIcon"; "errorIcon": "errorIcon"; "animation": "animation"; }, { "activate": "activate"; "currentStepChange": "currentStepChange"; }, ["stepTemplate", "labelTemplate", "indicatorTemplate"], never>;
|
|
151
164
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgZone, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
-
import
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* @hidden
|
|
10
10
|
*/
|
|
@@ -12,12 +12,12 @@ export declare class StepperService {
|
|
|
12
12
|
private localization;
|
|
13
13
|
private ngZone;
|
|
14
14
|
private changeDetector;
|
|
15
|
-
owner:
|
|
15
|
+
owner: any;
|
|
16
16
|
currentStep: number;
|
|
17
17
|
focusedStep: number;
|
|
18
18
|
triggerValidation: EventEmitter<any>;
|
|
19
19
|
focusedStepChange: EventEmitter<number>;
|
|
20
|
-
private
|
|
20
|
+
private get handlers();
|
|
21
21
|
constructor(localization: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef);
|
|
22
22
|
emit(event: string, eventArgs: any): boolean;
|
|
23
23
|
onActivate(currentIdx: number, originalEvent: any): void;
|
|
@@ -35,5 +35,7 @@ export declare class StepperService {
|
|
|
35
35
|
focusPrevStep(): void;
|
|
36
36
|
isStepDisabled(index: number): boolean;
|
|
37
37
|
isPrevOrNextStep(index: number): boolean;
|
|
38
|
-
|
|
38
|
+
get isHorizontal(): boolean;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperService, never>;
|
|
40
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StepperService>;
|
|
39
41
|
}
|
package/{dist/es2015/stepper → stepper}/template-directives/indicator-template.directive.d.ts
RENAMED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Represents a template that defines the content of the Step indicator.
|
|
8
9
|
* To define the template, nest an `<ng-template>` tag
|
|
@@ -11,4 +12,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
11
12
|
export declare class StepperIndicatorTemplateDirective {
|
|
12
13
|
templateRef: TemplateRef<any>;
|
|
13
14
|
constructor(templateRef: TemplateRef<any>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperIndicatorTemplateDirective, [{ optional: true; }]>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StepperIndicatorTemplateDirective, "[kendoStepperIndicatorTemplate]", never, {}, {}, never>;
|
|
14
17
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Represents a template that defines the content of the Step label.
|
|
8
9
|
* To define the template, nest an `<ng-template>` tag
|
|
@@ -11,4 +12,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
11
12
|
export declare class StepperLabelTemplateDirective {
|
|
12
13
|
templateRef: TemplateRef<any>;
|
|
13
14
|
constructor(templateRef: TemplateRef<any>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperLabelTemplateDirective, [{ optional: true; }]>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StepperLabelTemplateDirective, "[kendoStepperLabelTemplate]", never, {}, {}, never>;
|
|
14
17
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Represents a template that defines the content of the whole Step.
|
|
8
9
|
* To define the template, nest an `<ng-template>` tag
|
|
@@ -11,4 +12,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
11
12
|
export declare class StepperStepTemplateDirective {
|
|
12
13
|
templateRef: TemplateRef<any>;
|
|
13
14
|
constructor(templateRef: TemplateRef<any>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperStepTemplateDirective, [{ optional: true; }]>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StepperStepTemplateDirective, "[kendoStepperStepTemplate]", never, {}, {}, never>;
|
|
14
17
|
}
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "./stepper/step.component";
|
|
7
|
+
import * as i2 from "./stepper/list.component";
|
|
8
|
+
import * as i3 from "./stepper/localization/localized-messages.directive";
|
|
9
|
+
import * as i4 from "./stepper/stepper.component";
|
|
10
|
+
import * as i5 from "./stepper/localization/custom-messages.component";
|
|
11
|
+
import * as i6 from "./stepper/template-directives/step-template.directive";
|
|
12
|
+
import * as i7 from "./stepper/template-directives/label-template.directive";
|
|
13
|
+
import * as i8 from "./stepper/template-directives/indicator-template.directive";
|
|
14
|
+
import * as i9 from "@angular/common";
|
|
15
|
+
import * as i10 from "@progress/kendo-angular-progressbar";
|
|
16
|
+
/**
|
|
17
|
+
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
18
|
+
* definition for the Stepper component.
|
|
19
|
+
*/
|
|
20
|
+
export declare class StepperModule {
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperModule, never>;
|
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StepperModule, [typeof i1.StepperStepComponent, typeof i2.StepperListComponent, typeof i3.LocalizedStepperMessagesDirective, typeof i4.StepperComponent, typeof i5.StepperCustomMessagesComponent, typeof i6.StepperStepTemplateDirective, typeof i7.StepperLabelTemplateDirective, typeof i8.StepperIndicatorTemplateDirective], [typeof i9.CommonModule, typeof i10.ProgressBarModule], [typeof i4.StepperComponent, typeof i5.StepperCustomMessagesComponent, typeof i6.StepperStepTemplateDirective, typeof i7.StepperLabelTemplateDirective, typeof i8.StepperIndicatorTemplateDirective]>;
|
|
23
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StepperModule>;
|
|
24
|
+
}
|
|
File without changes
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Represents the content template of the Kendo UI TabStrip.
|
|
8
9
|
* To define the template, nest a `<ng-template>` tag with the `kendoTabContent` inside the component tag.
|
|
@@ -36,4 +37,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
36
37
|
export declare class TabContentDirective {
|
|
37
38
|
templateRef: TemplateRef<any>;
|
|
38
39
|
constructor(templateRef: TemplateRef<any>);
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabContentDirective, never>;
|
|
41
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabContentDirective, "[kendoTabContent]", never, {}, {}, never>;
|
|
39
42
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Represents the title template of the Kendo UI TabStrip.
|
|
8
9
|
* To define the template, nest a `<ng-template>` tag with the `kendoTabTitle` directive inside the component tag.
|
|
@@ -41,4 +42,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
41
42
|
export declare class TabTitleDirective {
|
|
42
43
|
templateRef: TemplateRef<any>;
|
|
43
44
|
constructor(templateRef: TemplateRef<any>);
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabTitleDirective, never>;
|
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabTitleDirective, "[kendoTabTitle]", never, {}, {}, never>;
|
|
44
47
|
}
|