@alauda/ui 6.2.2-beta.2 → 6.2.2-beta.20
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/.changeset/README.md +8 -0
- package/accordion/accordion-item/accordion-item.component.d.ts +7 -0
- package/accordion/accordion.component.d.ts +3 -0
- package/accordion/accordion.module.d.ts +10 -0
- package/alauda-ui.d.ts +1 -21
- package/anchor/anchor.component.d.ts +7 -2
- package/anchor/anchor.directive.d.ts +7 -0
- package/anchor/anchor.module.d.ts +7 -0
- package/autocomplete/autocomplete-placeholder.component.d.ts +3 -0
- package/autocomplete/autocomplete.component.d.ts +3 -0
- package/autocomplete/autocomplete.directive.d.ts +5 -0
- package/autocomplete/autocomplete.module.d.ts +13 -0
- package/autocomplete/helper-directives.d.ts +3 -0
- package/autocomplete/suggestion/suggestion.component.d.ts +3 -0
- package/autocomplete/suggestion-group/suggestion-group.component.d.ts +3 -0
- package/back-top/back-top.component.d.ts +3 -0
- package/back-top/back-top.module.d.ts +7 -0
- package/breadcrumb/breadcrumb-item.component.d.ts +3 -0
- package/breadcrumb/breadcrumb.component.d.ts +3 -0
- package/breadcrumb/breadcrumb.module.d.ts +8 -0
- package/button/button-group/button-group.component.d.ts +3 -0
- package/button/button.component.d.ts +9 -38
- package/button/button.module.d.ts +8 -0
- package/card/card.component.d.ts +3 -0
- package/card/card.module.d.ts +8 -0
- package/card/helper-directives.d.ts +7 -0
- package/card/section.component.d.ts +3 -0
- package/checkbox/checkbox-group/checkbox-group.component.d.ts +3 -0
- package/checkbox/checkbox.component.d.ts +3 -0
- package/checkbox/checkbox.module.d.ts +8 -0
- package/color-picker/color-picker.component.d.ts +3 -0
- package/color-picker/color-picker.module.d.ts +7 -0
- package/date-picker/calendar/date-picker-panel/component.d.ts +3 -0
- package/date-picker/calendar/footer/component.d.ts +3 -0
- package/date-picker/calendar/header/component.d.ts +3 -0
- package/date-picker/calendar/panel/picker-panel.d.ts +3 -0
- package/date-picker/calendar/range-picker-panel/component.d.ts +3 -0
- package/date-picker/date-picker/date-picker.component.d.ts +3 -0
- package/date-picker/date-picker.module.d.ts +20 -0
- package/date-picker/public-api.d.ts +1 -0
- package/date-picker/range-picker/range-picker.component.d.ts +3 -0
- package/date-picker/trigger/trigger.component.d.ts +3 -0
- package/dialog/confirm-dialog/confirm-dialog.component.d.ts +3 -0
- package/dialog/dialog-content/dialog-close.directive.d.ts +3 -0
- package/dialog/dialog-content/dialog-content.component.d.ts +3 -0
- package/dialog/dialog-content/dialog-footer.component.d.ts +3 -0
- package/dialog/dialog-content/dialog-header.component.d.ts +3 -0
- package/dialog/dialog.component.d.ts +3 -0
- package/dialog/dialog.module.d.ts +15 -0
- package/dialog/dialog.service.d.ts +3 -0
- package/dialog/public-api.d.ts +1 -0
- package/drawer/component/drawer.component.d.ts +5 -2
- package/drawer/component/helper-directives.d.ts +7 -4
- package/drawer/drawer.module.d.ts +10 -0
- package/drawer/drawer.service.d.ts +3 -0
- package/dropdown/dropdown-active.directive.d.ts +3 -0
- package/dropdown/dropdown-button/dropdown-button.component.d.ts +3 -0
- package/dropdown/dropdown.directive.d.ts +3 -0
- package/dropdown/dropdown.module.d.ts +17 -0
- package/dropdown/helper-directives.d.ts +3 -0
- package/dropdown/menu/menu-content.directive.d.ts +3 -0
- package/dropdown/menu/menu.component.d.ts +3 -0
- package/dropdown/menu-group/menu-group.component.d.ts +3 -0
- package/dropdown/menu-item/menu-item.component.d.ts +3 -0
- package/dropdown/public-api.d.ts +1 -0
- package/dropdown/submenu/submenu.component.d.ts +3 -0
- package/esm2020/accordion/accordion-item/accordion-item.component.mjs +73 -0
- package/esm2020/accordion/accordion.component.mjs +27 -0
- package/esm2020/accordion/accordion.module.mjs +39 -0
- package/{esm2015/accordion/public-api.js → esm2020/accordion/public-api.mjs} +0 -0
- package/esm2020/alauda-ui.mjs +5 -0
- package/esm2020/anchor/anchor.component.mjs +139 -0
- package/esm2020/anchor/anchor.directive.mjs +184 -0
- package/esm2020/anchor/anchor.module.mjs +36 -0
- package/{esm2015/anchor/public-api.js → esm2020/anchor/public-api.mjs} +0 -0
- package/{esm2015/anchor/types.js → esm2020/anchor/types.mjs} +0 -0
- package/{esm2015/anchor/utils.js → esm2020/anchor/utils.mjs} +0 -0
- package/esm2020/autocomplete/autocomplete-placeholder.component.mjs +17 -0
- package/esm2020/autocomplete/autocomplete.component.mjs +41 -0
- package/esm2020/autocomplete/autocomplete.directive.mjs +272 -0
- package/esm2020/autocomplete/autocomplete.module.mjs +53 -0
- package/{esm2015/autocomplete/autocomplete.types.js → esm2020/autocomplete/autocomplete.types.mjs} +0 -0
- package/esm2020/autocomplete/helper-directives.mjs +17 -0
- package/{esm2015/autocomplete/public-api.js → esm2020/autocomplete/public-api.mjs} +0 -0
- package/esm2020/autocomplete/suggestion/suggestion.component.mjs +78 -0
- package/esm2020/autocomplete/suggestion-group/suggestion-group.component.mjs +23 -0
- package/esm2020/back-top/back-top.component.mjs +68 -0
- package/esm2020/back-top/back-top.module.mjs +19 -0
- package/{esm2015/back-top/public-api.js → esm2020/back-top/public-api.mjs} +0 -0
- package/esm2020/breadcrumb/breadcrumb-item.component.mjs +32 -0
- package/esm2020/breadcrumb/breadcrumb.component.mjs +57 -0
- package/esm2020/breadcrumb/breadcrumb.module.mjs +20 -0
- package/{esm2015/breadcrumb/public-api.js → esm2020/breadcrumb/public-api.mjs} +0 -0
- package/esm2020/button/button-group/button-group.component.mjs +11 -0
- package/esm2020/button/button.component.mjs +122 -0
- package/esm2020/button/button.module.mjs +20 -0
- package/{esm2015/button/button.types.js → esm2020/button/button.types.mjs} +0 -0
- package/{esm2015/button/public-api.js → esm2020/button/public-api.mjs} +0 -0
- package/esm2020/card/card.component.mjs +16 -0
- package/esm2020/card/card.module.mjs +40 -0
- package/esm2020/card/helper-directives.mjs +43 -0
- package/{esm2015/card/public-api.js → esm2020/card/public-api.mjs} +0 -0
- package/esm2020/card/section.component.mjs +11 -0
- package/esm2020/checkbox/checkbox-group/checkbox-group.component.mjs +64 -0
- package/esm2020/checkbox/checkbox.component.mjs +114 -0
- package/esm2020/checkbox/checkbox.module.mjs +20 -0
- package/{esm2015/checkbox/public-api.js → esm2020/checkbox/public-api.mjs} +0 -0
- package/esm2020/color-picker/color-picker.component.mjs +32 -0
- package/esm2020/color-picker/color-picker.module.mjs +19 -0
- package/{esm2015/color-picker/public-api.js → esm2020/color-picker/public-api.mjs} +0 -0
- package/{esm2015/date-picker/calendar/constant.js → esm2020/date-picker/calendar/constant.mjs} +0 -0
- package/esm2020/date-picker/calendar/date-picker-panel/component.mjs +128 -0
- package/esm2020/date-picker/calendar/footer/component.mjs +29 -0
- package/esm2020/date-picker/calendar/header/component.mjs +105 -0
- package/esm2020/date-picker/calendar/panel/picker-panel.mjs +149 -0
- package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +209 -0
- package/{esm2015/date-picker/calendar/util.js → esm2020/date-picker/calendar/util.mjs} +0 -0
- package/esm2020/date-picker/date-picker/date-picker.component.mjs +104 -0
- package/esm2020/date-picker/date-picker.module.mjs +84 -0
- package/{esm2015/date-picker/date-picker.type.js → esm2020/date-picker/date-picker.type.mjs} +0 -0
- package/esm2020/date-picker/public-api.mjs +12 -0
- package/esm2020/date-picker/range-picker/range-picker.component.mjs +80 -0
- package/esm2020/date-picker/trigger/trigger.component.mjs +69 -0
- package/{esm2015/dialog/confirm-dialog/confirm-dialog-config.js → esm2020/dialog/confirm-dialog/confirm-dialog-config.mjs} +0 -0
- package/esm2020/dialog/confirm-dialog/confirm-dialog.component.mjs +86 -0
- package/{esm2015/dialog/dialog-config.js → esm2020/dialog/dialog-config.mjs} +0 -0
- package/esm2020/dialog/dialog-content/dialog-close.directive.mjs +38 -0
- package/esm2020/dialog/dialog-content/dialog-content.component.mjs +20 -0
- package/esm2020/dialog/dialog-content/dialog-footer.component.mjs +15 -0
- package/esm2020/dialog/dialog-content/dialog-header.component.mjs +39 -0
- package/{esm2015/dialog/dialog-ref.js → esm2020/dialog/dialog-ref.mjs} +0 -0
- package/esm2020/dialog/dialog.component.mjs +59 -0
- package/esm2020/dialog/dialog.module.mjs +68 -0
- package/esm2020/dialog/dialog.service.mjs +128 -0
- package/{esm2015/dialog/dialog.types.js → esm2020/dialog/dialog.types.mjs} +0 -0
- package/esm2020/dialog/public-api.mjs +12 -0
- package/{esm2015/dialog/utils/errors.js → esm2020/dialog/utils/errors.mjs} +0 -0
- package/esm2020/dialog/utils/index.mjs +11 -0
- package/{esm2015/drawer/component/drawer-ref.js → esm2020/drawer/component/drawer-ref.mjs} +0 -0
- package/esm2020/drawer/component/drawer.component.mjs +231 -0
- package/esm2020/drawer/component/helper-directives.mjs +37 -0
- package/esm2020/drawer/drawer.module.mjs +37 -0
- package/esm2020/drawer/drawer.service.mjs +45 -0
- package/{esm2015/drawer/public-api.js → esm2020/drawer/public-api.mjs} +0 -0
- package/esm2020/dropdown/dropdown-active.directive.mjs +21 -0
- package/esm2020/dropdown/dropdown-button/dropdown-button.component.mjs +51 -0
- package/esm2020/dropdown/dropdown.directive.mjs +83 -0
- package/esm2020/dropdown/dropdown.module.mjs +65 -0
- package/{esm2015/dropdown/dropdown.types.js → esm2020/dropdown/dropdown.types.mjs} +0 -0
- package/esm2020/dropdown/helper-directives.mjs +17 -0
- package/esm2020/dropdown/menu/menu-content.directive.mjs +51 -0
- package/esm2020/dropdown/menu/menu.component.mjs +33 -0
- package/esm2020/dropdown/menu-group/menu-group.component.mjs +11 -0
- package/esm2020/dropdown/menu-item/menu-item.component.mjs +37 -0
- package/esm2020/dropdown/public-api.mjs +12 -0
- package/esm2020/dropdown/submenu/submenu.component.mjs +40 -0
- package/esm2020/form/common-form.mjs +92 -0
- package/esm2020/form/form-item/form-item.component.mjs +106 -0
- package/esm2020/form/form.directive.mjs +70 -0
- package/esm2020/form/form.module.mjs +48 -0
- package/{esm2015/form/form.types.js → esm2020/form/form.types.mjs} +0 -0
- package/esm2020/form/helper-directives.mjs +81 -0
- package/{esm2015/form/public-api.js → esm2020/form/public-api.mjs} +0 -0
- package/esm2020/i18n/i18n.module.mjs +16 -0
- package/esm2020/i18n/i18n.pipe.mjs +20 -0
- package/esm2020/i18n/i18n.service.mjs +44 -0
- package/{esm2015/i18n/i18n.type.js → esm2020/i18n/i18n.type.mjs} +0 -0
- package/{esm2015/i18n/language/en.js → esm2020/i18n/language/en.mjs} +0 -0
- package/{esm2015/i18n/language/zh.js → esm2020/i18n/language/zh.mjs} +0 -0
- package/{esm2015/i18n/public-api.js → esm2020/i18n/public-api.mjs} +0 -0
- package/esm2020/icon/icon-register.service.mjs +70 -0
- package/esm2020/icon/icon.component.mjs +65 -0
- package/esm2020/icon/icon.module.mjs +21 -0
- package/{esm2015/icon/icons.js → esm2020/icon/icons.mjs} +0 -0
- package/{esm2015/icon/public-api.js → esm2020/icon/public-api.mjs} +0 -0
- package/{esm2015/icon/utils.js → esm2020/icon/utils.mjs} +0 -0
- package/esm2020/inline-alert/helper-directives.mjs +14 -0
- package/esm2020/inline-alert/inline-alert.component.mjs +55 -0
- package/esm2020/inline-alert/inline-alert.module.mjs +20 -0
- package/{esm2015/inline-alert/inline-alert.types.js → esm2020/inline-alert/inline-alert.types.mjs} +0 -0
- package/{esm2015/inline-alert/public-api.js → esm2020/inline-alert/public-api.mjs} +0 -0
- package/esm2020/input/autosize.directive.mjs +60 -0
- package/esm2020/input/helper-directives.mjs +43 -0
- package/esm2020/input/input-group/input-group.component.mjs +39 -0
- package/esm2020/input/input.component.mjs +61 -0
- package/esm2020/input/input.module.mjs +91 -0
- package/esm2020/input/number-input/number-input.component.mjs +94 -0
- package/esm2020/input/public-api.mjs +9 -0
- package/esm2020/input/search/search.component.mjs +81 -0
- package/esm2020/input/tags-input/tags-input.component.mjs +265 -0
- package/{esm2015/input/tags-input/with-max-row-count.js → esm2020/input/tags-input/with-max-row-count.mjs} +0 -0
- package/{esm2015/input/utils/index.js → esm2020/input/utils/index.mjs} +0 -0
- package/esm2020/message/base-message.mjs +90 -0
- package/{esm2015/message/message-animations.js → esm2020/message/message-animations.mjs} +0 -0
- package/esm2020/message/message-wrapper.component.mjs +14 -0
- package/esm2020/message/message.component.mjs +70 -0
- package/{esm2015/message/message.config.js → esm2020/message/message.config.mjs} +0 -0
- package/esm2020/message/message.module.mjs +23 -0
- package/esm2020/message/message.service.mjs +26 -0
- package/{esm2015/message/public-api.js → esm2020/message/public-api.mjs} +0 -0
- package/esm2020/notification/notification-wrapper.component.mjs +16 -0
- package/esm2020/notification/notification.component.mjs +107 -0
- package/{esm2015/notification/notification.config.js → esm2020/notification/notification.config.mjs} +0 -0
- package/esm2020/notification/notification.module.mjs +24 -0
- package/esm2020/notification/notification.service.mjs +26 -0
- package/{esm2015/notification/public-api.js → esm2020/notification/public-api.mjs} +0 -0
- package/esm2020/paginator/paginator-intl.mjs +36 -0
- package/esm2020/paginator/paginator.component.mjs +125 -0
- package/esm2020/paginator/paginator.module.mjs +24 -0
- package/{esm2015/paginator/public-api.js → esm2020/paginator/public-api.mjs} +0 -0
- package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
- package/esm2020/radio/base-radio.mjs +69 -0
- package/{esm2015/radio/public-api.js → esm2020/radio/public-api.mjs} +0 -0
- package/esm2020/radio/radio-button/radio-button.component.mjs +42 -0
- package/esm2020/radio/radio-group/radio-group.component.mjs +80 -0
- package/esm2020/radio/radio.component.mjs +24 -0
- package/esm2020/radio/radio.module.mjs +21 -0
- package/{esm2015/radio/radio.types.js → esm2020/radio/radio.types.mjs} +0 -0
- package/esm2020/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +84 -0
- package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +122 -0
- package/esm2020/scrolling/fixed-size-virtual-scroll.directive.mjs +28 -0
- package/esm2020/scrolling/public-api.mjs +7 -0
- package/esm2020/scrolling/scrolling.module.mjs +30 -0
- package/esm2020/scrolling/virtual-for-of.directive.mjs +36 -0
- package/esm2020/scrolling/virtual-scroll-viewport.component.mjs +26 -0
- package/esm2020/select/base-select.mjs +339 -0
- package/esm2020/select/helper-directives.mjs +29 -0
- package/esm2020/select/multi-select/multi-select.component.mjs +292 -0
- package/esm2020/select/option/option.component.mjs +110 -0
- package/esm2020/select/option-group/option-group.component.mjs +23 -0
- package/esm2020/select/option-placeholder.component.mjs +17 -0
- package/{esm2015/select/public-api.js → esm2020/select/public-api.mjs} +0 -0
- package/esm2020/select/select.component.mjs +107 -0
- package/esm2020/select/select.module.mjs +80 -0
- package/{esm2015/select/select.types.js → esm2020/select/select.types.mjs} +0 -0
- package/esm2020/select/validators.mjs +79 -0
- package/esm2020/shared/click-outside.directive.mjs +28 -0
- package/esm2020/shared/shared.module.mjs +16 -0
- package/{esm2015/sort/public-api.js → esm2020/sort/public-api.mjs} +0 -0
- package/{esm2015/sort/sort-errors.js → esm2020/sort/sort-errors.mjs} +0 -0
- package/esm2020/sort/sort-header.component.mjs +72 -0
- package/esm2020/sort/sort.directive.mjs +75 -0
- package/esm2020/sort/sort.module.mjs +19 -0
- package/{esm2015/sort/sort.types.js → esm2020/sort/sort.types.mjs} +0 -0
- package/{esm2015/status-bar/public-api.js → esm2020/status-bar/public-api.mjs} +0 -0
- package/esm2020/status-bar/status-bar.component.mjs +29 -0
- package/esm2020/status-bar/status-bar.module.mjs +19 -0
- package/{esm2015/status-bar/status-bar.types.js → esm2020/status-bar/status-bar.types.mjs} +0 -0
- package/{esm2015/steps/public-api.js → esm2020/steps/public-api.mjs} +0 -0
- package/esm2020/steps/steps.component.mjs +183 -0
- package/esm2020/steps/steps.module.mjs +19 -0
- package/{esm2015/steps/types.js → esm2020/steps/types.mjs} +0 -0
- package/{esm2015/switch/public-api.js → esm2020/switch/public-api.mjs} +0 -0
- package/esm2020/switch/switch.component.mjs +49 -0
- package/esm2020/switch/switch.module.mjs +18 -0
- package/esm2020/table/public-api.mjs +15 -0
- package/esm2020/table/table-cell-def.directive.mjs +29 -0
- package/esm2020/table/table-cell.component.mjs +121 -0
- package/esm2020/table/table-cell.directive.mjs +27 -0
- package/esm2020/table/table-column-def.directive.mjs +37 -0
- package/esm2020/table/table-header-cell-def.directive.mjs +29 -0
- package/esm2020/table/table-header-cell.directive.mjs +27 -0
- package/esm2020/table/table-header-row-def.directive.mjs +39 -0
- package/esm2020/table/table-header-row.component.mjs +25 -0
- package/esm2020/table/table-placeholder.directive.mjs +30 -0
- package/esm2020/table/table-row-def.directive.mjs +42 -0
- package/esm2020/table/table-row.component.mjs +43 -0
- package/esm2020/table/table-scroll.directive.mjs +91 -0
- package/esm2020/table/table.component.mjs +81 -0
- package/esm2020/table/table.module.mjs +96 -0
- package/{esm2015/table-of-contents/public-api.js → esm2020/table-of-contents/public-api.mjs} +0 -0
- package/esm2020/table-of-contents/table-of-contents.module.mjs +20 -0
- package/esm2020/table-of-contents/toc-container.directive.mjs +110 -0
- package/esm2020/table-of-contents/toc-content.directive.mjs +35 -0
- package/esm2020/table-of-contents/toc-link.directive.mjs +47 -0
- package/esm2020/tabs/public-api.mjs +9 -0
- package/esm2020/tabs/tab-body.component.mjs +165 -0
- package/esm2020/tabs/tab-context.service.mjs +32 -0
- package/esm2020/tabs/tab-group.component.mjs +291 -0
- package/esm2020/tabs/tab-header-active-indicator.component.mjs +53 -0
- package/esm2020/tabs/tab-header.component.mjs +365 -0
- package/esm2020/tabs/tab.component.mjs +85 -0
- package/esm2020/tabs/tabs.module.mjs +88 -0
- package/{esm2015/tabs/tabs.types.js → esm2020/tabs/tabs.types.mjs} +0 -0
- package/esm2020/tag/check-tag/check-tag.component.mjs +33 -0
- package/{esm2015/tag/public-api.js → esm2020/tag/public-api.mjs} +0 -0
- package/esm2020/tag/tag.component.mjs +64 -0
- package/esm2020/tag/tag.module.mjs +20 -0
- package/{esm2015/tag/tag.types.js → esm2020/tag/tag.types.mjs} +0 -0
- package/esm2020/theme/public-api.mjs +6 -0
- package/esm2020/theme/theme.module.mjs +18 -0
- package/esm2020/theme/theme.pipe.mjs +70 -0
- package/esm2020/theme/theme.service.mjs +53 -0
- package/{esm2015/theme/theme.types.js → esm2020/theme/theme.types.mjs} +0 -0
- package/esm2020/theme/utils.mjs +10 -0
- package/esm2020/time-picker/component.mjs +173 -0
- package/esm2020/time-picker/constant.mjs +5 -0
- package/esm2020/time-picker/panel/panel.component.mjs +224 -0
- package/{esm2015/time-picker/public-api.js → esm2020/time-picker/public-api.mjs} +0 -0
- package/esm2020/time-picker/time-picker.module.mjs +58 -0
- package/esm2020/time-picker/time-picker.type.mjs +13 -0
- package/esm2020/tooltip/base-tooltip.mjs +244 -0
- package/esm2020/tooltip/public-api.mjs +9 -0
- package/esm2020/tooltip/tooltip-active.directive.mjs +44 -0
- package/esm2020/tooltip/tooltip-copy.directive.mjs +78 -0
- package/esm2020/tooltip/tooltip-intl.mjs +28 -0
- package/esm2020/tooltip/tooltip.component.mjs +49 -0
- package/esm2020/tooltip/tooltip.directive.mjs +52 -0
- package/esm2020/tooltip/tooltip.module.mjs +33 -0
- package/{esm2015/tooltip/tooltip.types.js → esm2020/tooltip/tooltip.types.mjs} +0 -0
- package/{esm2015/tooltip/utils/index.js → esm2020/tooltip/utils/index.mjs} +0 -0
- package/esm2020/tree-select/public-api.mjs +5 -0
- package/esm2020/tree-select/tree-node-placeholder.component.mjs +17 -0
- package/esm2020/tree-select/tree-select.component.mjs +343 -0
- package/esm2020/tree-select/tree-select.module.mjs +34 -0
- package/{esm2015/tree-select/tree-select.types.js → esm2020/tree-select/tree-select.types.mjs} +0 -0
- package/{esm2015/types.js → esm2020/types.mjs} +0 -0
- package/{esm2015/utils/async.js → esm2020/utils/async.mjs} +0 -0
- package/{esm2015/utils/bem.js → esm2020/utils/bem.mjs} +0 -0
- package/esm2020/utils/coercion.mjs +16 -0
- package/esm2020/utils/fn.mjs +8 -0
- package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
- package/{esm2015/utils/observe-dom.js → esm2020/utils/observe-dom.mjs} +0 -0
- package/{esm2015/utils/scroll-into-view.js → esm2020/utils/scroll-into-view.mjs} +0 -0
- package/{esm2015/utils/watch-content-exist.js → esm2020/utils/watch-content-exist.mjs} +0 -0
- package/fesm2015/alauda-ui.mjs +11582 -0
- package/fesm2015/alauda-ui.mjs.map +1 -0
- package/fesm2020/alauda-ui.mjs +11507 -0
- package/fesm2020/alauda-ui.mjs.map +1 -0
- package/form/common-form.d.ts +3 -0
- package/form/form-item/form-item.component.d.ts +3 -0
- package/form/form.directive.d.ts +3 -0
- package/form/form.module.d.ts +8 -0
- package/form/helper-directives.d.ts +11 -0
- package/i18n/i18n.module.d.ts +5 -0
- package/i18n/i18n.pipe.d.ts +3 -0
- package/i18n/i18n.service.d.ts +5 -1
- package/icon/icon-register.service.d.ts +3 -0
- package/icon/icon.component.d.ts +3 -0
- package/icon/icon.module.d.ts +7 -0
- package/inline-alert/helper-directives.d.ts +3 -0
- package/inline-alert/inline-alert.component.d.ts +3 -0
- package/inline-alert/inline-alert.module.d.ts +8 -0
- package/input/autosize.directive.d.ts +3 -0
- package/input/helper-directives.d.ts +9 -0
- package/input/input-group/input-group.component.d.ts +3 -0
- package/input/input.component.d.ts +7 -21
- package/input/input.module.d.ts +17 -0
- package/input/number-input/number-input.component.d.ts +3 -0
- package/input/public-api.d.ts +2 -0
- package/input/search/search.component.d.ts +3 -0
- package/input/tags-input/tags-input.component.d.ts +5 -2
- package/message/message-wrapper.component.d.ts +3 -0
- package/message/message.component.d.ts +3 -0
- package/message/message.module.d.ts +9 -0
- package/message/message.service.d.ts +3 -0
- package/notification/notification-wrapper.component.d.ts +3 -0
- package/notification/notification.component.d.ts +5 -3
- package/notification/notification.module.d.ts +10 -0
- package/notification/notification.service.d.ts +3 -0
- package/package.json +27 -18
- package/paginator/paginator-intl.d.ts +3 -0
- package/paginator/paginator.component.d.ts +3 -0
- package/paginator/paginator.module.d.ts +10 -0
- package/radio/base-radio.d.ts +3 -0
- package/radio/radio-button/radio-button.component.d.ts +3 -0
- package/radio/radio-group/radio-group.component.d.ts +3 -0
- package/radio/radio.component.d.ts +3 -0
- package/radio/radio.module.d.ts +9 -0
- package/scrolling/fixed-size-table-virtual-scroll-strategy.d.ts +3 -0
- package/scrolling/fixed-size-table-virtual-scroll.directive.d.ts +3 -0
- package/scrolling/fixed-size-virtual-scroll.directive.d.ts +3 -0
- package/scrolling/public-api.d.ts +1 -0
- package/scrolling/scrolling.module.d.ts +8 -0
- package/scrolling/virtual-for-of.directive.d.ts +3 -0
- package/scrolling/virtual-scroll-viewport.component.d.ts +3 -0
- package/select/base-select.d.ts +10 -29
- package/select/helper-directives.d.ts +5 -0
- package/select/multi-select/multi-select.component.d.ts +4 -0
- package/select/option/option.component.d.ts +3 -0
- package/select/option-group/option-group.component.d.ts +3 -0
- package/select/option-placeholder.component.d.ts +3 -0
- package/select/select.component.d.ts +3 -0
- package/select/select.module.d.ts +17 -0
- package/select/validators.d.ts +3 -0
- package/shared/click-outside.directive.d.ts +3 -0
- package/shared/shared.module.d.ts +5 -0
- package/sort/sort-header.component.d.ts +3 -0
- package/sort/sort.directive.d.ts +3 -0
- package/sort/sort.module.d.ts +7 -0
- package/src/accordion/README.md +13 -0
- package/src/anchor/README.md +23 -0
- package/src/dropdown/README.md +57 -0
- package/src/form/README.md +32 -0
- package/src/icon/README.md +28 -0
- package/src/inline-alert/README.md +16 -0
- package/src/input/number-input/README.md +15 -0
- package/src/select/README.md +57 -0
- package/src/sort/README.md +13 -0
- package/src/table/README.md +8 -0
- package/src/table-of-contents/README.md +79 -0
- package/src/tag/README.md +32 -0
- package/src/tree-select/README.md +34 -0
- package/status-bar/status-bar.component.d.ts +3 -0
- package/status-bar/status-bar.module.d.ts +7 -0
- package/steps/steps.component.d.ts +4 -1
- package/steps/steps.module.d.ts +7 -0
- package/switch/switch.component.d.ts +3 -0
- package/switch/switch.module.d.ts +6 -0
- package/table/public-api.d.ts +2 -0
- package/table/table-cell-def.directive.d.ts +3 -0
- package/table/table-cell.component.d.ts +5 -0
- package/table/table-cell.directive.d.ts +3 -0
- package/table/table-column-def.directive.d.ts +3 -0
- package/table/table-header-cell-def.directive.d.ts +3 -0
- package/table/table-header-cell.directive.d.ts +3 -0
- package/table/table-header-row-def.directive.d.ts +4 -1
- package/table/table-header-row.component.d.ts +3 -0
- package/table/table-placeholder.directive.d.ts +5 -0
- package/table/table-row-def.directive.d.ts +5 -2
- package/table/table-row.component.d.ts +3 -0
- package/table/table-scroll.directive.d.ts +5 -0
- package/table/table.component.d.ts +3 -0
- package/table/table.module.d.ts +20 -0
- package/table-of-contents/table-of-contents.module.d.ts +8 -0
- package/table-of-contents/toc-container.directive.d.ts +3 -0
- package/table-of-contents/toc-content.directive.d.ts +3 -0
- package/table-of-contents/toc-link.directive.d.ts +3 -0
- package/tabs/public-api.d.ts +0 -1
- package/tabs/tab-body.component.d.ts +61 -2
- package/tabs/tab-context.service.d.ts +4 -1
- package/tabs/tab-group.component.d.ts +7 -12
- package/tabs/tab-header-active-indicator.component.d.ts +3 -0
- package/tabs/tab-header.component.d.ts +4 -1
- package/tabs/tab.component.d.ts +4 -1
- package/tabs/tabs.module.d.ts +16 -0
- package/tag/check-tag/check-tag.component.d.ts +3 -0
- package/tag/tag.component.d.ts +3 -0
- package/tag/tag.module.d.ts +8 -0
- package/theme/_mixin.scss +1 -1
- package/theme/_var.scss +5 -3
- package/theme/public-api.d.ts +2 -1
- package/theme/style.css +86 -80
- package/theme/theme.module.d.ts +6 -0
- package/theme/theme.pipe.d.ts +29 -0
- package/theme/theme.service.d.ts +3 -0
- package/theme/utils.d.ts +3 -0
- package/time-picker/component.d.ts +3 -0
- package/time-picker/panel/panel.component.d.ts +3 -0
- package/time-picker/time-picker.module.d.ts +15 -0
- package/tooltip/base-tooltip.d.ts +3 -0
- package/tooltip/public-api.d.ts +1 -0
- package/tooltip/tooltip-active.directive.d.ts +3 -0
- package/tooltip/tooltip-copy.directive.d.ts +3 -0
- package/tooltip/tooltip-intl.d.ts +3 -0
- package/tooltip/tooltip.component.d.ts +3 -0
- package/tooltip/tooltip.directive.d.ts +3 -0
- package/tooltip/tooltip.module.d.ts +10 -0
- package/tree-select/public-api.d.ts +0 -1
- package/tree-select/tree-node-placeholder.component.d.ts +3 -0
- package/tree-select/tree-select.component.d.ts +36 -2
- package/tree-select/tree-select.module.d.ts +10 -0
- package/utils/coercion.d.ts +1 -1
- package/utils/fn.d.ts +1 -1
- package/utils/observe-dom.d.ts +0 -1
- package/accordion/accordion-item/accordion-item.component.ngfactory.d.ts +0 -1
- package/accordion/accordion-item/accordion-item.component.scss.ngstyle.d.ts +0 -1
- package/accordion/accordion.component.ngfactory.d.ts +0 -1
- package/accordion/accordion.component.scss.ngstyle.d.ts +0 -1
- package/accordion/accordion.module.ngfactory.d.ts +0 -3
- package/alauda-ui.metadata.json +0 -1
- package/anchor/anchor.component.ngfactory.d.ts +0 -1
- package/anchor/anchor.component.scss.ngstyle.d.ts +0 -1
- package/anchor/anchor.module.ngfactory.d.ts +0 -3
- package/autocomplete/autocomplete-placeholder.component.ngfactory.d.ts +0 -1
- package/autocomplete/autocomplete.component.ngfactory.d.ts +0 -1
- package/autocomplete/autocomplete.component.scss.ngstyle.d.ts +0 -1
- package/autocomplete/autocomplete.module.ngfactory.d.ts +0 -3
- package/autocomplete/suggestion/suggestion.component.ngfactory.d.ts +0 -1
- package/autocomplete/suggestion/suggestion.component.scss.ngstyle.d.ts +0 -1
- package/autocomplete/suggestion-group/suggestion-group.component.ngfactory.d.ts +0 -1
- package/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.d.ts +0 -1
- package/back-top/back-top.component.ngfactory.d.ts +0 -1
- package/back-top/back-top.component.scss.ngstyle.d.ts +0 -1
- package/back-top/back-top.module.ngfactory.d.ts +0 -3
- package/breadcrumb/breadcrumb-item.component.ngfactory.d.ts +0 -1
- package/breadcrumb/breadcrumb-item.component.scss.ngstyle.d.ts +0 -1
- package/breadcrumb/breadcrumb.component.ngfactory.d.ts +0 -1
- package/breadcrumb/breadcrumb.component.scss.ngstyle.d.ts +0 -1
- package/breadcrumb/breadcrumb.module.ngfactory.d.ts +0 -3
- package/bundles/alauda-ui.umd.js +0 -12806
- package/bundles/alauda-ui.umd.js.map +0 -1
- package/bundles/alauda-ui.umd.min.js +0 -2
- package/bundles/alauda-ui.umd.min.js.map +0 -1
- package/button/button-group/button-group.component.ngfactory.d.ts +0 -1
- package/button/button-group/button-group.component.scss.ngstyle.d.ts +0 -1
- package/button/button.component.ngfactory.d.ts +0 -1
- package/button/button.component.scss.ngstyle.d.ts +0 -1
- package/button/button.module.ngfactory.d.ts +0 -3
- package/card/card.component.ngfactory.d.ts +0 -1
- package/card/card.component.scss.ngstyle.d.ts +0 -1
- package/card/card.module.ngfactory.d.ts +0 -3
- package/card/section.component.ngfactory.d.ts +0 -1
- package/card/section.component.scss.ngstyle.d.ts +0 -1
- package/checkbox/checkbox-group/checkbox-group.component.ngfactory.d.ts +0 -1
- package/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.d.ts +0 -1
- package/checkbox/checkbox.component.ngfactory.d.ts +0 -1
- package/checkbox/checkbox.component.scss.ngstyle.d.ts +0 -1
- package/checkbox/checkbox.module.ngfactory.d.ts +0 -3
- package/color-picker/color-picker.component.ngfactory.d.ts +0 -1
- package/color-picker/color-picker.component.scss.ngstyle.d.ts +0 -1
- package/color-picker/color-picker.module.ngfactory.d.ts +0 -3
- package/date-picker/calendar/date-picker-panel/component.ngfactory.d.ts +0 -1
- package/date-picker/calendar/date-picker-panel/style.scss.ngstyle.d.ts +0 -1
- package/date-picker/calendar/footer/component.ngfactory.d.ts +0 -1
- package/date-picker/calendar/footer/style.scss.ngstyle.d.ts +0 -1
- package/date-picker/calendar/header/component.ngfactory.d.ts +0 -1
- package/date-picker/calendar/header/style.scss.ngstyle.d.ts +0 -1
- package/date-picker/calendar/panel/picker-panel.ngfactory.d.ts +0 -1
- package/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.d.ts +0 -1
- package/date-picker/calendar/range-picker-panel/component.ngfactory.d.ts +0 -1
- package/date-picker/calendar/range-picker-panel/style.scss.ngstyle.d.ts +0 -1
- package/date-picker/date-picker/date-picker.component.ngfactory.d.ts +0 -1
- package/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.d.ts +0 -1
- package/date-picker/date-picker.module.ngfactory.d.ts +0 -3
- package/date-picker/range-picker/range-picker.component.ngfactory.d.ts +0 -1
- package/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.d.ts +0 -1
- package/date-picker/trigger/trigger.component.ngfactory.d.ts +0 -1
- package/date-picker/trigger/trigger.style.scss.shim.ngstyle.d.ts +0 -1
- package/dialog/confirm-dialog/confirm-dialog.component.ngfactory.d.ts +0 -1
- package/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.d.ts +0 -1
- package/dialog/dialog-content/dialog-content.component.ngfactory.d.ts +0 -1
- package/dialog/dialog-content/dialog-footer.component.ngfactory.d.ts +0 -1
- package/dialog/dialog-content/dialog-header.component.ngfactory.d.ts +0 -1
- package/dialog/dialog.component.ngfactory.d.ts +0 -1
- package/dialog/dialog.component.scss.ngstyle.d.ts +0 -1
- package/dialog/dialog.module.ngfactory.d.ts +0 -3
- package/drawer/component/drawer.component.ngfactory.d.ts +0 -1
- package/drawer/component/drawer.component.scss.ngstyle.d.ts +0 -1
- package/drawer/drawer.module.ngfactory.d.ts +0 -3
- package/dropdown/dropdown-button/dropdown-button.component.ngfactory.d.ts +0 -1
- package/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.d.ts +0 -1
- package/dropdown/dropdown.module.ngfactory.d.ts +0 -3
- package/dropdown/menu/menu.component.ngfactory.d.ts +0 -1
- package/dropdown/menu/menu.component.scss.ngstyle.d.ts +0 -1
- package/dropdown/menu-group/menu-group.component.ngfactory.d.ts +0 -1
- package/dropdown/menu-group/menu-group.component.scss.ngstyle.d.ts +0 -1
- package/dropdown/menu-item/menu-item.component.ngfactory.d.ts +0 -1
- package/dropdown/menu-item/menu-item.component.scss.ngstyle.d.ts +0 -1
- package/dropdown/submenu/submenu.component.ngfactory.d.ts +0 -1
- package/dropdown/submenu/submenu.component.scss.ngstyle.d.ts +0 -1
- package/esm2015/accordion/accordion-item/accordion-item.component.js +0 -68
- package/esm2015/accordion/accordion-item/accordion-item.component.ngfactory.js +0 -28
- package/esm2015/accordion/accordion-item/accordion-item.component.ngsummary.json +0 -1
- package/esm2015/accordion/accordion-item/accordion-item.component.scss.ngstyle.js +0 -9
- package/esm2015/accordion/accordion.component.js +0 -28
- package/esm2015/accordion/accordion.component.ngfactory.js +0 -17
- package/esm2015/accordion/accordion.component.ngsummary.json +0 -1
- package/esm2015/accordion/accordion.component.scss.ngstyle.js +0 -9
- package/esm2015/accordion/accordion.module.js +0 -28
- package/esm2015/accordion/accordion.module.ngfactory.js +0 -18
- package/esm2015/accordion/accordion.module.ngsummary.json +0 -1
- package/esm2015/accordion/public-api.ngsummary.json +0 -1
- package/esm2015/alauda-ui.js +0 -26
- package/esm2015/alauda-ui.ngsummary.json +0 -1
- package/esm2015/anchor/anchor.component.js +0 -146
- package/esm2015/anchor/anchor.component.ngfactory.js +0 -40
- package/esm2015/anchor/anchor.component.ngsummary.json +0 -1
- package/esm2015/anchor/anchor.component.scss.ngstyle.js +0 -9
- package/esm2015/anchor/anchor.directive.js +0 -174
- package/esm2015/anchor/anchor.directive.ngsummary.json +0 -1
- package/esm2015/anchor/anchor.module.js +0 -25
- package/esm2015/anchor/anchor.module.ngfactory.js +0 -13
- package/esm2015/anchor/anchor.module.ngsummary.json +0 -1
- package/esm2015/anchor/public-api.ngsummary.json +0 -1
- package/esm2015/anchor/types.ngsummary.json +0 -1
- package/esm2015/anchor/utils.ngsummary.json +0 -1
- package/esm2015/autocomplete/autocomplete-placeholder.component.js +0 -13
- package/esm2015/autocomplete/autocomplete-placeholder.component.ngfactory.js +0 -16
- package/esm2015/autocomplete/autocomplete-placeholder.component.ngsummary.json +0 -1
- package/esm2015/autocomplete/autocomplete.component.js +0 -40
- package/esm2015/autocomplete/autocomplete.component.ngfactory.js +0 -22
- package/esm2015/autocomplete/autocomplete.component.ngsummary.json +0 -1
- package/esm2015/autocomplete/autocomplete.component.scss.ngstyle.js +0 -9
- package/esm2015/autocomplete/autocomplete.directive.js +0 -253
- package/esm2015/autocomplete/autocomplete.directive.ngsummary.json +0 -1
- package/esm2015/autocomplete/autocomplete.module.js +0 -36
- package/esm2015/autocomplete/autocomplete.module.ngfactory.js +0 -20
- package/esm2015/autocomplete/autocomplete.module.ngsummary.json +0 -1
- package/esm2015/autocomplete/autocomplete.types.ngsummary.json +0 -1
- package/esm2015/autocomplete/helper-directives.js +0 -13
- package/esm2015/autocomplete/helper-directives.ngsummary.json +0 -1
- package/esm2015/autocomplete/public-api.ngsummary.json +0 -1
- package/esm2015/autocomplete/suggestion/suggestion.component.js +0 -79
- package/esm2015/autocomplete/suggestion/suggestion.component.ngfactory.js +0 -22
- package/esm2015/autocomplete/suggestion/suggestion.component.ngsummary.json +0 -1
- package/esm2015/autocomplete/suggestion/suggestion.component.scss.ngstyle.js +0 -9
- package/esm2015/autocomplete/suggestion-group/suggestion-group.component.js +0 -25
- package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngfactory.js +0 -18
- package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngsummary.json +0 -1
- package/esm2015/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.js +0 -9
- package/esm2015/back-top/back-top.component.js +0 -75
- package/esm2015/back-top/back-top.component.ngfactory.js +0 -25
- package/esm2015/back-top/back-top.component.ngsummary.json +0 -1
- package/esm2015/back-top/back-top.component.scss.ngstyle.js +0 -9
- package/esm2015/back-top/back-top.module.js +0 -14
- package/esm2015/back-top/back-top.module.ngfactory.js +0 -16
- package/esm2015/back-top/back-top.module.ngsummary.json +0 -1
- package/esm2015/back-top/public-api.ngsummary.json +0 -1
- package/esm2015/breadcrumb/breadcrumb-item.component.js +0 -36
- package/esm2015/breadcrumb/breadcrumb-item.component.ngfactory.js +0 -23
- package/esm2015/breadcrumb/breadcrumb-item.component.ngsummary.json +0 -1
- package/esm2015/breadcrumb/breadcrumb-item.component.scss.ngstyle.js +0 -9
- package/esm2015/breadcrumb/breadcrumb.component.js +0 -58
- package/esm2015/breadcrumb/breadcrumb.component.ngfactory.js +0 -17
- package/esm2015/breadcrumb/breadcrumb.component.ngsummary.json +0 -1
- package/esm2015/breadcrumb/breadcrumb.component.scss.ngstyle.js +0 -9
- package/esm2015/breadcrumb/breadcrumb.module.js +0 -15
- package/esm2015/breadcrumb/breadcrumb.module.ngfactory.js +0 -16
- package/esm2015/breadcrumb/breadcrumb.module.ngsummary.json +0 -1
- package/esm2015/breadcrumb/public-api.ngsummary.json +0 -1
- package/esm2015/button/button-group/button-group.component.js +0 -14
- package/esm2015/button/button-group/button-group.component.ngfactory.js +0 -17
- package/esm2015/button/button-group/button-group.component.ngsummary.json +0 -1
- package/esm2015/button/button-group/button-group.component.scss.ngstyle.js +0 -9
- package/esm2015/button/button.component.js +0 -124
- package/esm2015/button/button.component.ngfactory.js +0 -23
- package/esm2015/button/button.component.ngsummary.json +0 -1
- package/esm2015/button/button.component.scss.ngstyle.js +0 -9
- package/esm2015/button/button.module.js +0 -15
- package/esm2015/button/button.module.ngfactory.js +0 -16
- package/esm2015/button/button.module.ngsummary.json +0 -1
- package/esm2015/button/button.types.ngsummary.json +0 -1
- package/esm2015/button/public-api.ngsummary.json +0 -1
- package/esm2015/card/card.component.js +0 -20
- package/esm2015/card/card.component.ngfactory.js +0 -17
- package/esm2015/card/card.component.ngsummary.json +0 -1
- package/esm2015/card/card.component.scss.ngstyle.js +0 -9
- package/esm2015/card/card.module.js +0 -27
- package/esm2015/card/card.module.ngfactory.js +0 -12
- package/esm2015/card/card.module.ngsummary.json +0 -1
- package/esm2015/card/helper-directives.js +0 -33
- package/esm2015/card/helper-directives.ngsummary.json +0 -1
- package/esm2015/card/public-api.ngsummary.json +0 -1
- package/esm2015/card/section.component.js +0 -14
- package/esm2015/card/section.component.ngfactory.js +0 -17
- package/esm2015/card/section.component.ngsummary.json +0 -1
- package/esm2015/card/section.component.scss.ngstyle.js +0 -9
- package/esm2015/checkbox/checkbox-group/checkbox-group.component.js +0 -60
- package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngfactory.js +0 -18
- package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngsummary.json +0 -1
- package/esm2015/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.js +0 -9
- package/esm2015/checkbox/checkbox.component.js +0 -105
- package/esm2015/checkbox/checkbox.component.ngfactory.js +0 -30
- package/esm2015/checkbox/checkbox.component.ngsummary.json +0 -1
- package/esm2015/checkbox/checkbox.component.scss.ngstyle.js +0 -9
- package/esm2015/checkbox/checkbox.module.js +0 -15
- package/esm2015/checkbox/checkbox.module.ngfactory.js +0 -16
- package/esm2015/checkbox/checkbox.module.ngsummary.json +0 -1
- package/esm2015/checkbox/public-api.ngsummary.json +0 -1
- package/esm2015/color-picker/color-picker.component.js +0 -29
- package/esm2015/color-picker/color-picker.component.ngfactory.js +0 -22
- package/esm2015/color-picker/color-picker.component.ngsummary.json +0 -1
- package/esm2015/color-picker/color-picker.component.scss.ngstyle.js +0 -9
- package/esm2015/color-picker/color-picker.module.js +0 -14
- package/esm2015/color-picker/color-picker.module.ngfactory.js +0 -13
- package/esm2015/color-picker/color-picker.module.ngsummary.json +0 -1
- package/esm2015/color-picker/public-api.ngsummary.json +0 -1
- package/esm2015/date-picker/calendar/constant.ngsummary.json +0 -1
- package/esm2015/date-picker/calendar/date-picker-panel/component.js +0 -106
- package/esm2015/date-picker/calendar/date-picker-panel/component.ngfactory.js +0 -65
- package/esm2015/date-picker/calendar/date-picker-panel/component.ngsummary.json +0 -1
- package/esm2015/date-picker/calendar/date-picker-panel/style.scss.ngstyle.js +0 -9
- package/esm2015/date-picker/calendar/footer/component.js +0 -25
- package/esm2015/date-picker/calendar/footer/component.ngfactory.js +0 -32
- package/esm2015/date-picker/calendar/footer/component.ngsummary.json +0 -1
- package/esm2015/date-picker/calendar/footer/style.scss.ngstyle.js +0 -9
- package/esm2015/date-picker/calendar/header/component.js +0 -100
- package/esm2015/date-picker/calendar/header/component.ngfactory.js +0 -58
- package/esm2015/date-picker/calendar/header/component.ngsummary.json +0 -1
- package/esm2015/date-picker/calendar/header/style.scss.ngstyle.js +0 -9
- package/esm2015/date-picker/calendar/panel/picker-panel.js +0 -144
- package/esm2015/date-picker/calendar/panel/picker-panel.ngfactory.js +0 -34
- package/esm2015/date-picker/calendar/panel/picker-panel.ngsummary.json +0 -1
- package/esm2015/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.js +0 -9
- package/esm2015/date-picker/calendar/range-picker-panel/component.js +0 -193
- package/esm2015/date-picker/calendar/range-picker-panel/component.ngfactory.js +0 -76
- package/esm2015/date-picker/calendar/range-picker-panel/component.ngsummary.json +0 -1
- package/esm2015/date-picker/calendar/range-picker-panel/style.scss.ngstyle.js +0 -9
- package/esm2015/date-picker/calendar/util.ngsummary.json +0 -1
- package/esm2015/date-picker/date-picker/date-picker.component.js +0 -84
- package/esm2015/date-picker/date-picker/date-picker.component.ngfactory.js +0 -49
- package/esm2015/date-picker/date-picker/date-picker.component.ngsummary.json +0 -1
- package/esm2015/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.js +0 -9
- package/esm2015/date-picker/date-picker.module.js +0 -47
- package/esm2015/date-picker/date-picker.module.ngfactory.js +0 -31
- package/esm2015/date-picker/date-picker.module.ngsummary.json +0 -1
- package/esm2015/date-picker/date-picker.type.ngsummary.json +0 -1
- package/esm2015/date-picker/public-api.js +0 -11
- package/esm2015/date-picker/public-api.ngsummary.json +0 -1
- package/esm2015/date-picker/range-picker/range-picker.component.js +0 -66
- package/esm2015/date-picker/range-picker/range-picker.component.ngfactory.js +0 -49
- package/esm2015/date-picker/range-picker/range-picker.component.ngsummary.json +0 -1
- package/esm2015/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.js +0 -9
- package/esm2015/date-picker/trigger/trigger.component.js +0 -61
- package/esm2015/date-picker/trigger/trigger.component.ngfactory.js +0 -66
- package/esm2015/date-picker/trigger/trigger.component.ngsummary.json +0 -1
- package/esm2015/date-picker/trigger/trigger.style.scss.shim.ngstyle.js +0 -9
- package/esm2015/dialog/confirm-dialog/confirm-dialog-config.ngsummary.json +0 -1
- package/esm2015/dialog/confirm-dialog/confirm-dialog.component.js +0 -95
- package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngfactory.js +0 -32
- package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngsummary.json +0 -1
- package/esm2015/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.js +0 -9
- package/esm2015/dialog/dialog-config.ngsummary.json +0 -1
- package/esm2015/dialog/dialog-content/dialog-close.directive.js +0 -35
- package/esm2015/dialog/dialog-content/dialog-close.directive.ngsummary.json +0 -1
- package/esm2015/dialog/dialog-content/dialog-content.component.js +0 -27
- package/esm2015/dialog/dialog-content/dialog-content.component.ngfactory.js +0 -18
- package/esm2015/dialog/dialog-content/dialog-content.component.ngsummary.json +0 -1
- package/esm2015/dialog/dialog-content/dialog-footer.component.js +0 -17
- package/esm2015/dialog/dialog-content/dialog-footer.component.ngfactory.js +0 -16
- package/esm2015/dialog/dialog-content/dialog-footer.component.ngsummary.json +0 -1
- package/esm2015/dialog/dialog-content/dialog-header.component.js +0 -41
- package/esm2015/dialog/dialog-content/dialog-header.component.ngfactory.js +0 -26
- package/esm2015/dialog/dialog-content/dialog-header.component.ngsummary.json +0 -1
- package/esm2015/dialog/dialog-ref.ngsummary.json +0 -1
- package/esm2015/dialog/dialog.component.js +0 -64
- package/esm2015/dialog/dialog.component.ngfactory.js +0 -20
- package/esm2015/dialog/dialog.component.ngsummary.json +0 -1
- package/esm2015/dialog/dialog.component.scss.ngstyle.js +0 -9
- package/esm2015/dialog/dialog.module.js +0 -44
- package/esm2015/dialog/dialog.module.ngfactory.js +0 -25
- package/esm2015/dialog/dialog.module.ngsummary.json +0 -1
- package/esm2015/dialog/dialog.service.js +0 -132
- package/esm2015/dialog/dialog.service.ngsummary.json +0 -1
- package/esm2015/dialog/dialog.types.ngsummary.json +0 -1
- package/esm2015/dialog/public-api.js +0 -11
- package/esm2015/dialog/public-api.ngsummary.json +0 -1
- package/esm2015/dialog/utils/errors.ngsummary.json +0 -1
- package/esm2015/dialog/utils/index.js +0 -11
- package/esm2015/dialog/utils/index.ngsummary.json +0 -1
- package/esm2015/drawer/component/drawer-ref.ngsummary.json +0 -1
- package/esm2015/drawer/component/drawer.component.js +0 -210
- package/esm2015/drawer/component/drawer.component.ngfactory.js +0 -42
- package/esm2015/drawer/component/drawer.component.ngsummary.json +0 -1
- package/esm2015/drawer/component/drawer.component.scss.ngstyle.js +0 -9
- package/esm2015/drawer/component/helper-directives.js +0 -27
- package/esm2015/drawer/component/helper-directives.ngsummary.json +0 -1
- package/esm2015/drawer/drawer.module.js +0 -26
- package/esm2015/drawer/drawer.module.ngfactory.js +0 -23
- package/esm2015/drawer/drawer.module.ngsummary.json +0 -1
- package/esm2015/drawer/drawer.service.js +0 -46
- package/esm2015/drawer/drawer.service.ngsummary.json +0 -1
- package/esm2015/drawer/public-api.ngsummary.json +0 -1
- package/esm2015/dropdown/dropdown-active.directive.js +0 -13
- package/esm2015/dropdown/dropdown-active.directive.ngsummary.json +0 -1
- package/esm2015/dropdown/dropdown-button/dropdown-button.component.js +0 -46
- package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngfactory.js +0 -29
- package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngsummary.json +0 -1
- package/esm2015/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.js +0 -9
- package/esm2015/dropdown/dropdown.directive.js +0 -73
- package/esm2015/dropdown/dropdown.directive.ngsummary.json +0 -1
- package/esm2015/dropdown/dropdown.module.js +0 -44
- package/esm2015/dropdown/dropdown.module.ngfactory.js +0 -25
- package/esm2015/dropdown/dropdown.module.ngsummary.json +0 -1
- package/esm2015/dropdown/dropdown.types.ngsummary.json +0 -1
- package/esm2015/dropdown/helper-directives.js +0 -13
- package/esm2015/dropdown/helper-directives.ngsummary.json +0 -1
- package/esm2015/dropdown/menu/menu-content.directive.js +0 -54
- package/esm2015/dropdown/menu/menu-content.directive.ngsummary.json +0 -1
- package/esm2015/dropdown/menu/menu.component.js +0 -32
- package/esm2015/dropdown/menu/menu.component.ngfactory.js +0 -18
- package/esm2015/dropdown/menu/menu.component.ngsummary.json +0 -1
- package/esm2015/dropdown/menu/menu.component.scss.ngstyle.js +0 -9
- package/esm2015/dropdown/menu-group/menu-group.component.js +0 -14
- package/esm2015/dropdown/menu-group/menu-group.component.ngfactory.js +0 -17
- package/esm2015/dropdown/menu-group/menu-group.component.ngsummary.json +0 -1
- package/esm2015/dropdown/menu-group/menu-group.component.scss.ngstyle.js +0 -9
- package/esm2015/dropdown/menu-item/menu-item.component.js +0 -38
- package/esm2015/dropdown/menu-item/menu-item.component.ngfactory.js +0 -17
- package/esm2015/dropdown/menu-item/menu-item.component.ngsummary.json +0 -1
- package/esm2015/dropdown/menu-item/menu-item.component.scss.ngstyle.js +0 -9
- package/esm2015/dropdown/public-api.js +0 -11
- package/esm2015/dropdown/public-api.ngsummary.json +0 -1
- package/esm2015/dropdown/submenu/submenu.component.js +0 -37
- package/esm2015/dropdown/submenu/submenu.component.ngfactory.js +0 -29
- package/esm2015/dropdown/submenu/submenu.component.ngsummary.json +0 -1
- package/esm2015/dropdown/submenu/submenu.component.scss.ngstyle.js +0 -9
- package/esm2015/form/common-form.js +0 -89
- package/esm2015/form/common-form.ngsummary.json +0 -1
- package/esm2015/form/form-item/form-item.component.js +0 -93
- package/esm2015/form/form-item/form-item.component.ngfactory.js +0 -23
- package/esm2015/form/form-item/form-item.component.ngsummary.json +0 -1
- package/esm2015/form/form-item/form-item.component.scss.ngstyle.js +0 -9
- package/esm2015/form/form.directive.js +0 -58
- package/esm2015/form/form.directive.ngsummary.json +0 -1
- package/esm2015/form/form.module.js +0 -31
- package/esm2015/form/form.module.ngfactory.js +0 -12
- package/esm2015/form/form.module.ngsummary.json +0 -1
- package/esm2015/form/form.types.ngsummary.json +0 -1
- package/esm2015/form/helper-directives.js +0 -66
- package/esm2015/form/helper-directives.ngsummary.json +0 -1
- package/esm2015/form/public-api.ngsummary.json +0 -1
- package/esm2015/i18n/i18n.module.js +0 -11
- package/esm2015/i18n/i18n.module.ngfactory.js +0 -11
- package/esm2015/i18n/i18n.module.ngsummary.json +0 -1
- package/esm2015/i18n/i18n.pipe.js +0 -19
- package/esm2015/i18n/i18n.pipe.ngsummary.json +0 -1
- package/esm2015/i18n/i18n.service.js +0 -43
- package/esm2015/i18n/i18n.service.ngsummary.json +0 -1
- package/esm2015/i18n/i18n.type.ngsummary.json +0 -1
- package/esm2015/i18n/language/en.ngsummary.json +0 -1
- package/esm2015/i18n/language/zh.ngsummary.json +0 -1
- package/esm2015/i18n/public-api.ngsummary.json +0 -1
- package/esm2015/icon/icon-register.service.js +0 -63
- package/esm2015/icon/icon-register.service.ngsummary.json +0 -1
- package/esm2015/icon/icon.component.js +0 -62
- package/esm2015/icon/icon.component.ngfactory.js +0 -25
- package/esm2015/icon/icon.component.ngsummary.json +0 -1
- package/esm2015/icon/icon.component.scss.ngstyle.js +0 -9
- package/esm2015/icon/icon.module.js +0 -16
- package/esm2015/icon/icon.module.ngfactory.js +0 -15
- package/esm2015/icon/icon.module.ngsummary.json +0 -1
- package/esm2015/icon/icons.ngsummary.json +0 -1
- package/esm2015/icon/public-api.ngsummary.json +0 -1
- package/esm2015/icon/utils.ngsummary.json +0 -1
- package/esm2015/inline-alert/helper-directives.js +0 -10
- package/esm2015/inline-alert/helper-directives.ngsummary.json +0 -1
- package/esm2015/inline-alert/inline-alert.component.js +0 -51
- package/esm2015/inline-alert/inline-alert.component.ngfactory.js +0 -29
- package/esm2015/inline-alert/inline-alert.component.ngsummary.json +0 -1
- package/esm2015/inline-alert/inline-alert.component.scss.ngstyle.js +0 -9
- package/esm2015/inline-alert/inline-alert.module.js +0 -15
- package/esm2015/inline-alert/inline-alert.module.ngfactory.js +0 -16
- package/esm2015/inline-alert/inline-alert.module.ngsummary.json +0 -1
- package/esm2015/inline-alert/inline-alert.types.ngsummary.json +0 -1
- package/esm2015/inline-alert/public-api.ngsummary.json +0 -1
- package/esm2015/input/autosize.directive.js +0 -61
- package/esm2015/input/autosize.directive.ngsummary.json +0 -1
- package/esm2015/input/helper-directives.js +0 -30
- package/esm2015/input/helper-directives.ngsummary.json +0 -1
- package/esm2015/input/input-group/input-group.component.js +0 -33
- package/esm2015/input/input-group/input-group.component.ngfactory.js +0 -22
- package/esm2015/input/input-group/input-group.component.ngsummary.json +0 -1
- package/esm2015/input/input-group/input-group.component.scss.ngstyle.js +0 -9
- package/esm2015/input/input.component.js +0 -69
- package/esm2015/input/input.component.ngfactory.js +0 -17
- package/esm2015/input/input.component.ngsummary.json +0 -1
- package/esm2015/input/input.component.scss.ngstyle.js +0 -9
- package/esm2015/input/input.module.js +0 -54
- package/esm2015/input/input.module.ngfactory.js +0 -20
- package/esm2015/input/input.module.ngsummary.json +0 -1
- package/esm2015/input/number-input/number-input.component.js +0 -83
- package/esm2015/input/number-input/number-input.component.ngfactory.js +0 -51
- package/esm2015/input/number-input/number-input.component.ngsummary.json +0 -1
- package/esm2015/input/number-input/number-input.component.scss.ngstyle.js +0 -9
- package/esm2015/input/public-api.js +0 -7
- package/esm2015/input/public-api.ngsummary.json +0 -1
- package/esm2015/input/search/search.component.js +0 -72
- package/esm2015/input/search/search.component.ngfactory.js +0 -51
- package/esm2015/input/search/search.component.ngsummary.json +0 -1
- package/esm2015/input/search/search.component.scss.ngstyle.js +0 -9
- package/esm2015/input/tags-input/tags-input.component.js +0 -252
- package/esm2015/input/tags-input/tags-input.component.ngfactory.js +0 -45
- package/esm2015/input/tags-input/tags-input.component.ngsummary.json +0 -1
- package/esm2015/input/tags-input/tags-input.component.scss.ngstyle.js +0 -9
- package/esm2015/input/tags-input/with-max-row-count.ngsummary.json +0 -1
- package/esm2015/input/utils/index.ngsummary.json +0 -1
- package/esm2015/message/base-message.js +0 -87
- package/esm2015/message/base-message.ngsummary.json +0 -1
- package/esm2015/message/message-animations.ngsummary.json +0 -1
- package/esm2015/message/message-wrapper.component.js +0 -20
- package/esm2015/message/message-wrapper.component.ngfactory.js +0 -17
- package/esm2015/message/message-wrapper.component.ngsummary.json +0 -1
- package/esm2015/message/message-wrapper.component.scss.ngstyle.js +0 -9
- package/esm2015/message/message.component.js +0 -77
- package/esm2015/message/message.component.ngfactory.js +0 -23
- package/esm2015/message/message.component.ngsummary.json +0 -1
- package/esm2015/message/message.component.scss.ngstyle.js +0 -9
- package/esm2015/message/message.config.ngsummary.json +0 -1
- package/esm2015/message/message.module.js +0 -18
- package/esm2015/message/message.module.ngfactory.js +0 -25
- package/esm2015/message/message.module.ngsummary.json +0 -1
- package/esm2015/message/message.service.js +0 -22
- package/esm2015/message/message.service.ngsummary.json +0 -1
- package/esm2015/message/public-api.ngsummary.json +0 -1
- package/esm2015/notification/notification-wrapper.component.js +0 -22
- package/esm2015/notification/notification-wrapper.component.ngfactory.js +0 -17
- package/esm2015/notification/notification-wrapper.component.ngsummary.json +0 -1
- package/esm2015/notification/notification-wrapper.component.scss.ngstyle.js +0 -9
- package/esm2015/notification/notification.component.js +0 -106
- package/esm2015/notification/notification.component.ngfactory.js +0 -42
- package/esm2015/notification/notification.component.ngsummary.json +0 -1
- package/esm2015/notification/notification.component.scss.ngstyle.js +0 -9
- package/esm2015/notification/notification.config.ngsummary.json +0 -1
- package/esm2015/notification/notification.module.js +0 -19
- package/esm2015/notification/notification.module.ngfactory.js +0 -25
- package/esm2015/notification/notification.module.ngsummary.json +0 -1
- package/esm2015/notification/notification.service.js +0 -22
- package/esm2015/notification/notification.service.ngsummary.json +0 -1
- package/esm2015/notification/public-api.ngsummary.json +0 -1
- package/esm2015/paginator/paginator-intl.js +0 -33
- package/esm2015/paginator/paginator-intl.ngsummary.json +0 -1
- package/esm2015/paginator/paginator.component.js +0 -118
- package/esm2015/paginator/paginator.component.ngfactory.js +0 -73
- package/esm2015/paginator/paginator.component.ngsummary.json +0 -1
- package/esm2015/paginator/paginator.component.scss.ngstyle.js +0 -9
- package/esm2015/paginator/paginator.module.js +0 -19
- package/esm2015/paginator/paginator.module.ngfactory.js +0 -32
- package/esm2015/paginator/paginator.module.ngsummary.json +0 -1
- package/esm2015/paginator/public-api.ngsummary.json +0 -1
- package/esm2015/public-api.ngsummary.json +0 -1
- package/esm2015/radio/base-radio.js +0 -69
- package/esm2015/radio/base-radio.ngsummary.json +0 -1
- package/esm2015/radio/public-api.ngsummary.json +0 -1
- package/esm2015/radio/radio-button/radio-button.component.js +0 -48
- package/esm2015/radio/radio-button/radio-button.component.ngfactory.js +0 -30
- package/esm2015/radio/radio-button/radio-button.component.ngsummary.json +0 -1
- package/esm2015/radio/radio-button/radio-button.component.scss.ngstyle.js +0 -9
- package/esm2015/radio/radio-group/radio-group.component.js +0 -75
- package/esm2015/radio/radio-group/radio-group.component.ngfactory.js +0 -18
- package/esm2015/radio/radio-group/radio-group.component.ngsummary.json +0 -1
- package/esm2015/radio/radio-group/radio-group.component.scss.ngstyle.js +0 -9
- package/esm2015/radio/radio.component.js +0 -31
- package/esm2015/radio/radio.component.ngfactory.js +0 -26
- package/esm2015/radio/radio.component.ngsummary.json +0 -1
- package/esm2015/radio/radio.component.scss.ngstyle.js +0 -9
- package/esm2015/radio/radio.module.js +0 -16
- package/esm2015/radio/radio.module.ngfactory.js +0 -16
- package/esm2015/radio/radio.module.ngsummary.json +0 -1
- package/esm2015/radio/radio.types.ngsummary.json +0 -1
- package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.js +0 -81
- package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.ngsummary.json +0 -1
- package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.js +0 -108
- package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.ngsummary.json +0 -1
- package/esm2015/scrolling/fixed-size-virtual-scroll.directive.js +0 -20
- package/esm2015/scrolling/fixed-size-virtual-scroll.directive.ngsummary.json +0 -1
- package/esm2015/scrolling/public-api.js +0 -6
- package/esm2015/scrolling/public-api.ngsummary.json +0 -1
- package/esm2015/scrolling/scrolling.module.js +0 -21
- package/esm2015/scrolling/scrolling.module.ngfactory.js +0 -11
- package/esm2015/scrolling/scrolling.module.ngsummary.json +0 -1
- package/esm2015/scrolling/virtual-for-of.directive.js +0 -30
- package/esm2015/scrolling/virtual-for-of.directive.ngsummary.json +0 -1
- package/esm2015/scrolling/virtual-scroll-viewport.component.js +0 -26
- package/esm2015/scrolling/virtual-scroll-viewport.component.ngfactory.js +0 -19
- package/esm2015/scrolling/virtual-scroll-viewport.component.ngsummary.json +0 -1
- package/esm2015/scrolling/virtual-scroll-viewport.component.scss.ngstyle.js +0 -9
- package/esm2015/select/base-select.js +0 -311
- package/esm2015/select/base-select.ngsummary.json +0 -1
- package/esm2015/select/helper-directives.js +0 -22
- package/esm2015/select/helper-directives.ngsummary.json +0 -1
- package/esm2015/select/multi-select/multi-select.component.js +0 -276
- package/esm2015/select/multi-select/multi-select.component.ngfactory.js +0 -76
- package/esm2015/select/multi-select/multi-select.component.ngsummary.json +0 -1
- package/esm2015/select/multi-select/multi-select.component.scss.ngstyle.js +0 -9
- package/esm2015/select/option/option.component.js +0 -107
- package/esm2015/select/option/option.component.ngfactory.js +0 -26
- package/esm2015/select/option/option.component.ngsummary.json +0 -1
- package/esm2015/select/option/option.component.scss.ngstyle.js +0 -9
- package/esm2015/select/option-group/option-group.component.js +0 -25
- package/esm2015/select/option-group/option-group.component.ngfactory.js +0 -18
- package/esm2015/select/option-group/option-group.component.ngsummary.json +0 -1
- package/esm2015/select/option-group/option-group.component.scss.ngstyle.js +0 -9
- package/esm2015/select/option-placeholder.component.js +0 -13
- package/esm2015/select/option-placeholder.component.ngfactory.js +0 -16
- package/esm2015/select/option-placeholder.component.ngsummary.json +0 -1
- package/esm2015/select/public-api.ngsummary.json +0 -1
- package/esm2015/select/select.component.js +0 -95
- package/esm2015/select/select.component.ngfactory.js +0 -63
- package/esm2015/select/select.component.ngsummary.json +0 -1
- package/esm2015/select/select.component.scss.ngstyle.js +0 -9
- package/esm2015/select/select.module.js +0 -49
- package/esm2015/select/select.module.ngfactory.js +0 -30
- package/esm2015/select/select.module.ngsummary.json +0 -1
- package/esm2015/select/select.types.ngsummary.json +0 -1
- package/esm2015/select/validators.js +0 -72
- package/esm2015/select/validators.ngsummary.json +0 -1
- package/esm2015/shared/click-outside.directive.js +0 -26
- package/esm2015/shared/click-outside.directive.ngsummary.json +0 -1
- package/esm2015/shared/shared.module.js +0 -11
- package/esm2015/shared/shared.module.ngfactory.js +0 -11
- package/esm2015/shared/shared.module.ngsummary.json +0 -1
- package/esm2015/sort/public-api.ngsummary.json +0 -1
- package/esm2015/sort/sort-errors.ngsummary.json +0 -1
- package/esm2015/sort/sort-header.component.js +0 -76
- package/esm2015/sort/sort-header.component.ngfactory.js +0 -22
- package/esm2015/sort/sort-header.component.ngsummary.json +0 -1
- package/esm2015/sort/sort-header.component.scss.ngstyle.js +0 -9
- package/esm2015/sort/sort.directive.js +0 -69
- package/esm2015/sort/sort.directive.ngsummary.json +0 -1
- package/esm2015/sort/sort.module.js +0 -14
- package/esm2015/sort/sort.module.ngfactory.js +0 -12
- package/esm2015/sort/sort.module.ngsummary.json +0 -1
- package/esm2015/sort/sort.types.ngsummary.json +0 -1
- package/esm2015/status-bar/public-api.ngsummary.json +0 -1
- package/esm2015/status-bar/status-bar.component.js +0 -28
- package/esm2015/status-bar/status-bar.component.ngfactory.js +0 -26
- package/esm2015/status-bar/status-bar.component.ngsummary.json +0 -1
- package/esm2015/status-bar/status-bar.component.scss.ngstyle.js +0 -9
- package/esm2015/status-bar/status-bar.module.js +0 -14
- package/esm2015/status-bar/status-bar.module.ngfactory.js +0 -20
- package/esm2015/status-bar/status-bar.module.ngsummary.json +0 -1
- package/esm2015/status-bar/status-bar.types.ngsummary.json +0 -1
- package/esm2015/steps/public-api.ngsummary.json +0 -1
- package/esm2015/steps/steps.component.js +0 -179
- package/esm2015/steps/steps.component.ngfactory.js +0 -34
- package/esm2015/steps/steps.component.ngsummary.json +0 -1
- package/esm2015/steps/steps.component.scss.ngstyle.js +0 -9
- package/esm2015/steps/steps.module.js +0 -14
- package/esm2015/steps/steps.module.ngfactory.js +0 -16
- package/esm2015/steps/steps.module.ngsummary.json +0 -1
- package/esm2015/steps/types.ngsummary.json +0 -1
- package/esm2015/switch/public-api.ngsummary.json +0 -1
- package/esm2015/switch/switch.component.js +0 -47
- package/esm2015/switch/switch.component.ngfactory.js +0 -25
- package/esm2015/switch/switch.component.ngsummary.json +0 -1
- package/esm2015/switch/switch.component.scss.ngstyle.js +0 -9
- package/esm2015/switch/switch.module.js +0 -13
- package/esm2015/switch/switch.module.ngfactory.js +0 -12
- package/esm2015/switch/switch.module.ngsummary.json +0 -1
- package/esm2015/table/public-api.js +0 -13
- package/esm2015/table/public-api.ngsummary.json +0 -1
- package/esm2015/table/table-cell-def.directive.js +0 -20
- package/esm2015/table/table-cell-def.directive.ngsummary.json +0 -1
- package/esm2015/table/table-cell.component.js +0 -82
- package/esm2015/table/table-cell.component.ngfactory.js +0 -32
- package/esm2015/table/table-cell.component.ngsummary.json +0 -1
- package/esm2015/table/table-cell.directive.js +0 -26
- package/esm2015/table/table-cell.directive.ngsummary.json +0 -1
- package/esm2015/table/table-column-def.directive.js +0 -29
- package/esm2015/table/table-column-def.directive.ngsummary.json +0 -1
- package/esm2015/table/table-header-cell-def.directive.js +0 -20
- package/esm2015/table/table-header-cell-def.directive.ngsummary.json +0 -1
- package/esm2015/table/table-header-cell.directive.js +0 -26
- package/esm2015/table/table-header-cell.directive.ngsummary.json +0 -1
- package/esm2015/table/table-header-row-def.directive.js +0 -24
- package/esm2015/table/table-header-row-def.directive.ngsummary.json +0 -1
- package/esm2015/table/table-header-row.component.js +0 -20
- package/esm2015/table/table-header-row.component.ngfactory.js +0 -17
- package/esm2015/table/table-header-row.component.ngsummary.json +0 -1
- package/esm2015/table/table-placeholder.directive.js +0 -30
- package/esm2015/table/table-placeholder.directive.ngsummary.json +0 -1
- package/esm2015/table/table-row-def.directive.js +0 -25
- package/esm2015/table/table-row-def.directive.ngsummary.json +0 -1
- package/esm2015/table/table-row.component.js +0 -37
- package/esm2015/table/table-row.component.ngfactory.js +0 -17
- package/esm2015/table/table-row.component.ngsummary.json +0 -1
- package/esm2015/table/table-scroll.directive.js +0 -84
- package/esm2015/table/table-scroll.directive.ngsummary.json +0 -1
- package/esm2015/table/table-scroll.scss.ngstyle.js +0 -9
- package/esm2015/table/table.component.js +0 -69
- package/esm2015/table/table.component.ngfactory.js +0 -25
- package/esm2015/table/table.component.ngsummary.json +0 -1
- package/esm2015/table/table.component.scss.ngstyle.js +0 -9
- package/esm2015/table/table.module.js +0 -61
- package/esm2015/table/table.module.ngfactory.js +0 -20
- package/esm2015/table/table.module.ngsummary.json +0 -1
- package/esm2015/table-of-contents/public-api.ngsummary.json +0 -1
- package/esm2015/table-of-contents/table-of-contents.module.js +0 -15
- package/esm2015/table-of-contents/table-of-contents.module.ngfactory.js +0 -12
- package/esm2015/table-of-contents/table-of-contents.module.ngsummary.json +0 -1
- package/esm2015/table-of-contents/toc-container.directive.js +0 -109
- package/esm2015/table-of-contents/toc-container.directive.ngsummary.json +0 -1
- package/esm2015/table-of-contents/toc-content.directive.js +0 -32
- package/esm2015/table-of-contents/toc-content.directive.ngsummary.json +0 -1
- package/esm2015/table-of-contents/toc-link.directive.js +0 -43
- package/esm2015/table-of-contents/toc-link.directive.ngsummary.json +0 -1
- package/esm2015/tabs/public-api.js +0 -10
- package/esm2015/tabs/public-api.ngsummary.json +0 -1
- package/esm2015/tabs/tab-body.component.js +0 -35
- package/esm2015/tabs/tab-body.component.ngfactory.js +0 -18
- package/esm2015/tabs/tab-body.component.ngsummary.json +0 -1
- package/esm2015/tabs/tab-context.service.js +0 -28
- package/esm2015/tabs/tab-context.service.ngsummary.json +0 -1
- package/esm2015/tabs/tab-directives.js +0 -142
- package/esm2015/tabs/tab-directives.ngsummary.json +0 -1
- package/esm2015/tabs/tab-group.component.js +0 -277
- package/esm2015/tabs/tab-group.component.ngfactory.js +0 -56
- package/esm2015/tabs/tab-group.component.ngsummary.json +0 -1
- package/esm2015/tabs/tab-group.component.scss.ngstyle.js +0 -9
- package/esm2015/tabs/tab-header-active-indicator.component.js +0 -59
- package/esm2015/tabs/tab-header-active-indicator.component.ngfactory.js +0 -17
- package/esm2015/tabs/tab-header-active-indicator.component.ngsummary.json +0 -1
- package/esm2015/tabs/tab-header.component.js +0 -348
- package/esm2015/tabs/tab-header.component.ngfactory.js +0 -44
- package/esm2015/tabs/tab-header.component.ngsummary.json +0 -1
- package/esm2015/tabs/tab-header.component.scss.ngstyle.js +0 -9
- package/esm2015/tabs/tab.component.js +0 -82
- package/esm2015/tabs/tab.component.ngfactory.js +0 -18
- package/esm2015/tabs/tab.component.ngsummary.json +0 -1
- package/esm2015/tabs/tabs.module.js +0 -53
- package/esm2015/tabs/tabs.module.ngfactory.js +0 -22
- package/esm2015/tabs/tabs.module.ngsummary.json +0 -1
- package/esm2015/tabs/tabs.types.ngsummary.json +0 -1
- package/esm2015/tag/check-tag/check-tag.component.js +0 -34
- package/esm2015/tag/check-tag/check-tag.component.ngfactory.js +0 -27
- package/esm2015/tag/check-tag/check-tag.component.ngsummary.json +0 -1
- package/esm2015/tag/check-tag/check-tag.component.scss.ngstyle.js +0 -9
- package/esm2015/tag/public-api.ngsummary.json +0 -1
- package/esm2015/tag/tag.component.js +0 -57
- package/esm2015/tag/tag.component.ngfactory.js +0 -26
- package/esm2015/tag/tag.component.ngsummary.json +0 -1
- package/esm2015/tag/tag.component.scss.ngstyle.js +0 -9
- package/esm2015/tag/tag.module.js +0 -15
- package/esm2015/tag/tag.module.ngfactory.js +0 -16
- package/esm2015/tag/tag.module.ngsummary.json +0 -1
- package/esm2015/tag/tag.types.ngsummary.json +0 -1
- package/esm2015/theme/color.pipe.js +0 -26
- package/esm2015/theme/color.pipe.ngsummary.json +0 -1
- package/esm2015/theme/public-api.js +0 -5
- package/esm2015/theme/public-api.ngsummary.json +0 -1
- package/esm2015/theme/theme-picker.pipe.js +0 -36
- package/esm2015/theme/theme-picker.pipe.ngsummary.json +0 -1
- package/esm2015/theme/theme.module.js +0 -14
- package/esm2015/theme/theme.module.ngfactory.js +0 -12
- package/esm2015/theme/theme.module.ngsummary.json +0 -1
- package/esm2015/theme/theme.service.js +0 -52
- package/esm2015/theme/theme.service.ngsummary.json +0 -1
- package/esm2015/theme/theme.types.ngsummary.json +0 -1
- package/esm2015/time-picker/component.js +0 -149
- package/esm2015/time-picker/component.ngfactory.js +0 -82
- package/esm2015/time-picker/component.ngsummary.json +0 -1
- package/esm2015/time-picker/constant.js +0 -9
- package/esm2015/time-picker/constant.ngsummary.json +0 -1
- package/esm2015/time-picker/panel/panel.component.js +0 -211
- package/esm2015/time-picker/panel/panel.component.ngfactory.js +0 -49
- package/esm2015/time-picker/panel/panel.component.ngsummary.json +0 -1
- package/esm2015/time-picker/panel/panel.style.scss.ngstyle.js +0 -9
- package/esm2015/time-picker/public-api.ngsummary.json +0 -1
- package/esm2015/time-picker/style.scss.ngstyle.js +0 -9
- package/esm2015/time-picker/time-picker.module.js +0 -33
- package/esm2015/time-picker/time-picker.module.ngfactory.js +0 -30
- package/esm2015/time-picker/time-picker.module.ngsummary.json +0 -1
- package/esm2015/time-picker/time-picker.type.js +0 -13
- package/esm2015/time-picker/time-picker.type.ngsummary.json +0 -1
- package/esm2015/tooltip/base-tooltip.js +0 -255
- package/esm2015/tooltip/base-tooltip.ngsummary.json +0 -1
- package/esm2015/tooltip/public-api.js +0 -8
- package/esm2015/tooltip/public-api.ngsummary.json +0 -1
- package/esm2015/tooltip/tooltip-active.directive.js +0 -44
- package/esm2015/tooltip/tooltip-active.directive.ngsummary.json +0 -1
- package/esm2015/tooltip/tooltip-copy.directive.js +0 -80
- package/esm2015/tooltip/tooltip-copy.directive.ngsummary.json +0 -1
- package/esm2015/tooltip/tooltip-intl.js +0 -25
- package/esm2015/tooltip/tooltip-intl.ngsummary.json +0 -1
- package/esm2015/tooltip/tooltip.component.js +0 -55
- package/esm2015/tooltip/tooltip.component.ngfactory.js +0 -25
- package/esm2015/tooltip/tooltip.component.ngsummary.json +0 -1
- package/esm2015/tooltip/tooltip.component.scss.ngstyle.js +0 -9
- package/esm2015/tooltip/tooltip.directive.js +0 -45
- package/esm2015/tooltip/tooltip.directive.ngsummary.json +0 -1
- package/esm2015/tooltip/tooltip.module.js +0 -25
- package/esm2015/tooltip/tooltip.module.ngfactory.js +0 -19
- package/esm2015/tooltip/tooltip.module.ngsummary.json +0 -1
- package/esm2015/tooltip/tooltip.types.ngsummary.json +0 -1
- package/esm2015/tooltip/utils/index.ngsummary.json +0 -1
- package/esm2015/tree-select/public-api.js +0 -6
- package/esm2015/tree-select/public-api.ngsummary.json +0 -1
- package/esm2015/tree-select/tree-node/tree-node.component.js +0 -127
- package/esm2015/tree-select/tree-node/tree-node.component.ngfactory.js +0 -32
- package/esm2015/tree-select/tree-node/tree-node.component.ngsummary.json +0 -1
- package/esm2015/tree-select/tree-node/tree-node.component.scss.ngstyle.js +0 -9
- package/esm2015/tree-select/tree-node-placeholder.component.js +0 -13
- package/esm2015/tree-select/tree-node-placeholder.component.ngfactory.js +0 -16
- package/esm2015/tree-select/tree-node-placeholder.component.ngsummary.json +0 -1
- package/esm2015/tree-select/tree-select.component.js +0 -204
- package/esm2015/tree-select/tree-select.component.ngfactory.js +0 -56
- package/esm2015/tree-select/tree-select.component.ngsummary.json +0 -1
- package/esm2015/tree-select/tree-select.component.scss.ngstyle.js +0 -9
- package/esm2015/tree-select/tree-select.module.js +0 -26
- package/esm2015/tree-select/tree-select.module.ngfactory.js +0 -29
- package/esm2015/tree-select/tree-select.module.ngsummary.json +0 -1
- package/esm2015/tree-select/tree-select.types.ngsummary.json +0 -1
- package/esm2015/types.ngsummary.json +0 -1
- package/esm2015/utils/async.ngsummary.json +0 -1
- package/esm2015/utils/bem.ngsummary.json +0 -1
- package/esm2015/utils/coercion.js +0 -16
- package/esm2015/utils/coercion.ngsummary.json +0 -1
- package/esm2015/utils/fn.js +0 -8
- package/esm2015/utils/fn.ngsummary.json +0 -1
- package/esm2015/utils/index.ngsummary.json +0 -1
- package/esm2015/utils/observe-dom.ngsummary.json +0 -1
- package/esm2015/utils/scroll-into-view.ngsummary.json +0 -1
- package/esm2015/utils/watch-content-exist.ngsummary.json +0 -1
- package/fesm2015/alauda-ui.js +0 -10759
- package/fesm2015/alauda-ui.js.map +0 -1
- package/form/form-item/form-item.component.ngfactory.d.ts +0 -1
- package/form/form-item/form-item.component.scss.ngstyle.d.ts +0 -1
- package/form/form.module.ngfactory.d.ts +0 -3
- package/i18n/i18n.module.ngfactory.d.ts +0 -3
- package/icon/icon.component.ngfactory.d.ts +0 -1
- package/icon/icon.component.scss.ngstyle.d.ts +0 -1
- package/icon/icon.module.ngfactory.d.ts +0 -3
- package/inline-alert/inline-alert.component.ngfactory.d.ts +0 -1
- package/inline-alert/inline-alert.component.scss.ngstyle.d.ts +0 -1
- package/inline-alert/inline-alert.module.ngfactory.d.ts +0 -3
- package/input/input-group/input-group.component.ngfactory.d.ts +0 -1
- package/input/input-group/input-group.component.scss.ngstyle.d.ts +0 -1
- package/input/input.component.ngfactory.d.ts +0 -1
- package/input/input.component.scss.ngstyle.d.ts +0 -1
- package/input/input.module.ngfactory.d.ts +0 -3
- package/input/number-input/number-input.component.ngfactory.d.ts +0 -1
- package/input/number-input/number-input.component.scss.ngstyle.d.ts +0 -1
- package/input/search/search.component.ngfactory.d.ts +0 -1
- package/input/search/search.component.scss.ngstyle.d.ts +0 -1
- package/input/tags-input/tags-input.component.ngfactory.d.ts +0 -1
- package/input/tags-input/tags-input.component.scss.ngstyle.d.ts +0 -1
- package/message/message-wrapper.component.ngfactory.d.ts +0 -1
- package/message/message-wrapper.component.scss.ngstyle.d.ts +0 -1
- package/message/message.component.ngfactory.d.ts +0 -1
- package/message/message.component.scss.ngstyle.d.ts +0 -1
- package/message/message.module.ngfactory.d.ts +0 -3
- package/notification/notification-wrapper.component.ngfactory.d.ts +0 -1
- package/notification/notification-wrapper.component.scss.ngstyle.d.ts +0 -1
- package/notification/notification.component.ngfactory.d.ts +0 -1
- package/notification/notification.component.scss.ngstyle.d.ts +0 -1
- package/notification/notification.module.ngfactory.d.ts +0 -3
- package/paginator/paginator.component.ngfactory.d.ts +0 -1
- package/paginator/paginator.component.scss.ngstyle.d.ts +0 -1
- package/paginator/paginator.module.ngfactory.d.ts +0 -3
- package/radio/radio-button/radio-button.component.ngfactory.d.ts +0 -1
- package/radio/radio-button/radio-button.component.scss.ngstyle.d.ts +0 -1
- package/radio/radio-group/radio-group.component.ngfactory.d.ts +0 -1
- package/radio/radio-group/radio-group.component.scss.ngstyle.d.ts +0 -1
- package/radio/radio.component.ngfactory.d.ts +0 -1
- package/radio/radio.component.scss.ngstyle.d.ts +0 -1
- package/radio/radio.module.ngfactory.d.ts +0 -3
- package/scrolling/scrolling.module.ngfactory.d.ts +0 -3
- package/scrolling/virtual-scroll-viewport.component.ngfactory.d.ts +0 -1
- package/scrolling/virtual-scroll-viewport.component.scss.ngstyle.d.ts +0 -1
- package/select/multi-select/multi-select.component.ngfactory.d.ts +0 -1
- package/select/multi-select/multi-select.component.scss.ngstyle.d.ts +0 -1
- package/select/option/option.component.ngfactory.d.ts +0 -1
- package/select/option/option.component.scss.ngstyle.d.ts +0 -1
- package/select/option-group/option-group.component.ngfactory.d.ts +0 -1
- package/select/option-group/option-group.component.scss.ngstyle.d.ts +0 -1
- package/select/option-placeholder.component.ngfactory.d.ts +0 -1
- package/select/select.component.ngfactory.d.ts +0 -1
- package/select/select.component.scss.ngstyle.d.ts +0 -1
- package/select/select.module.ngfactory.d.ts +0 -3
- package/shared/shared.module.ngfactory.d.ts +0 -3
- package/sort/sort-header.component.ngfactory.d.ts +0 -1
- package/sort/sort-header.component.scss.ngstyle.d.ts +0 -1
- package/sort/sort.module.ngfactory.d.ts +0 -3
- package/status-bar/status-bar.component.ngfactory.d.ts +0 -1
- package/status-bar/status-bar.component.scss.ngstyle.d.ts +0 -1
- package/status-bar/status-bar.module.ngfactory.d.ts +0 -3
- package/steps/steps.component.ngfactory.d.ts +0 -1
- package/steps/steps.component.scss.ngstyle.d.ts +0 -1
- package/steps/steps.module.ngfactory.d.ts +0 -3
- package/switch/switch.component.ngfactory.d.ts +0 -1
- package/switch/switch.component.scss.ngstyle.d.ts +0 -1
- package/switch/switch.module.ngfactory.d.ts +0 -3
- package/table/table-cell.component.ngfactory.d.ts +0 -1
- package/table/table-header-row.component.ngfactory.d.ts +0 -1
- package/table/table-row.component.ngfactory.d.ts +0 -1
- package/table/table-scroll.scss.ngstyle.d.ts +0 -1
- package/table/table.component.ngfactory.d.ts +0 -1
- package/table/table.component.scss.ngstyle.d.ts +0 -1
- package/table/table.module.ngfactory.d.ts +0 -3
- package/table-of-contents/table-of-contents.module.ngfactory.d.ts +0 -3
- package/tabs/tab-body.component.ngfactory.d.ts +0 -1
- package/tabs/tab-directives.d.ts +0 -47
- package/tabs/tab-group.component.ngfactory.d.ts +0 -1
- package/tabs/tab-group.component.scss.ngstyle.d.ts +0 -1
- package/tabs/tab-header-active-indicator.component.ngfactory.d.ts +0 -1
- package/tabs/tab-header.component.ngfactory.d.ts +0 -1
- package/tabs/tab-header.component.scss.ngstyle.d.ts +0 -1
- package/tabs/tab.component.ngfactory.d.ts +0 -1
- package/tabs/tabs.module.ngfactory.d.ts +0 -3
- package/tag/check-tag/check-tag.component.ngfactory.d.ts +0 -1
- package/tag/check-tag/check-tag.component.scss.ngstyle.d.ts +0 -1
- package/tag/tag.component.ngfactory.d.ts +0 -1
- package/tag/tag.component.scss.ngstyle.d.ts +0 -1
- package/tag/tag.module.ngfactory.d.ts +0 -3
- package/theme/color.pipe.d.ts +0 -10
- package/theme/theme-picker.pipe.d.ts +0 -10
- package/theme/theme.module.ngfactory.d.ts +0 -3
- package/time-picker/component.ngfactory.d.ts +0 -1
- package/time-picker/panel/panel.component.ngfactory.d.ts +0 -1
- package/time-picker/panel/panel.style.scss.ngstyle.d.ts +0 -1
- package/time-picker/style.scss.ngstyle.d.ts +0 -1
- package/time-picker/time-picker.module.ngfactory.d.ts +0 -3
- package/tooltip/tooltip.component.ngfactory.d.ts +0 -1
- package/tooltip/tooltip.component.scss.ngstyle.d.ts +0 -1
- package/tooltip/tooltip.module.ngfactory.d.ts +0 -3
- package/tree-select/tree-node/tree-node.component.d.ts +0 -34
- package/tree-select/tree-node/tree-node.component.ngfactory.d.ts +0 -1
- package/tree-select/tree-node/tree-node.component.scss.ngstyle.d.ts +0 -1
- package/tree-select/tree-node-placeholder.component.ngfactory.d.ts +0 -1
- package/tree-select/tree-select.component.ngfactory.d.ts +0 -1
- package/tree-select/tree-select.component.scss.ngstyle.d.ts +0 -1
- package/tree-select/tree-select.module.ngfactory.d.ts +0 -3
- package/tsconfig.lib.tsbuildinfo +0 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { CdkPortalOutlet, TemplatePortal } from '@angular/cdk/portal';
|
|
2
|
-
import { OnDestroy } from '@angular/core';
|
|
1
|
+
import { CdkPortal, CdkPortalOutlet, TemplatePortal } from '@angular/cdk/portal';
|
|
2
|
+
import { ComponentFactoryResolver, ElementRef, OnDestroy, OnInit, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class TabBodyComponent implements OnDestroy {
|
|
5
6
|
private _content;
|
|
6
7
|
content$: BehaviorSubject<TemplatePortal<any>>;
|
|
@@ -10,4 +11,62 @@ export declare class TabBodyComponent implements OnDestroy {
|
|
|
10
11
|
get content(): TemplatePortal;
|
|
11
12
|
set content(content: TemplatePortal);
|
|
12
13
|
ngOnDestroy(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabBodyComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabBodyComponent, "aui-tab-body", never, { "content": "content"; }, {}, never, never>;
|
|
16
|
+
}
|
|
17
|
+
/** Used to flag tab labels for use with the portal directive */
|
|
18
|
+
export declare class TabLabelDirective extends CdkPortal {
|
|
19
|
+
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelDirective, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabLabelDirective, "[auiTabLabel]", never, {}, {}, never>;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Lazy load the embedded template for a tab content.
|
|
25
|
+
*/
|
|
26
|
+
export declare class TabContentDirective {
|
|
27
|
+
template: TemplateRef<any>;
|
|
28
|
+
constructor(template: TemplateRef<any>);
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabContentDirective, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabContentDirective, "[auiTabContent]", never, {}, {}, never>;
|
|
31
|
+
}
|
|
32
|
+
/** Used to project additional template from host to the tab header. */
|
|
33
|
+
export declare class TabHeaderAddonDirective extends CdkPortal {
|
|
34
|
+
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabHeaderAddonDirective, never>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabHeaderAddonDirective, "[auiTabHeaderAddon]", never, {}, {}, never>;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Used in the `aui-tab-group` view to display tab labels.
|
|
40
|
+
*/
|
|
41
|
+
export declare class TabLabelWrapperDirective {
|
|
42
|
+
elementRef: ElementRef<HTMLElement>;
|
|
43
|
+
private _disabled;
|
|
44
|
+
/** Whether or not the tab is disabled */
|
|
45
|
+
get disabled(): boolean | '';
|
|
46
|
+
set disabled(value: boolean | '');
|
|
47
|
+
getOffsetLeft(): number;
|
|
48
|
+
getOffsetWidth(): number;
|
|
49
|
+
/** Sets focus on the wrapper element */
|
|
50
|
+
focus(): void;
|
|
51
|
+
constructor(elementRef: ElementRef<HTMLElement>);
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelWrapperDirective, never>;
|
|
53
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabLabelWrapperDirective, "[auiTabLabelWrapper]", never, { "disabled": "disabled"; }, {}, never>;
|
|
54
|
+
}
|
|
55
|
+
export declare class TabTitleDirective extends CdkPortal {
|
|
56
|
+
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabTitleDirective, never>;
|
|
58
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabTitleDirective, "[auiTabTitle]", never, {}, {}, never>;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* The portal host directive for the contents of the tab.
|
|
62
|
+
*/
|
|
63
|
+
export declare class TabBodyPortalDirective extends CdkPortalOutlet implements OnInit, OnDestroy {
|
|
64
|
+
private readonly _host;
|
|
65
|
+
private _hostSubscription;
|
|
66
|
+
constructor(componentFactoryResolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef, _host: TabBodyComponent);
|
|
67
|
+
/** Set initial visibility or set up subscription for changing visibility. */
|
|
68
|
+
ngOnInit(): void;
|
|
69
|
+
ngOnDestroy(): void;
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabBodyPortalDirective, never>;
|
|
71
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabBodyPortalDirective, "[auiTabBodyHost]", never, {}, {}, never>;
|
|
13
72
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TabContextService {
|
|
3
|
-
|
|
4
|
+
readonly _parent: TabContextService;
|
|
4
5
|
private readonly active$$;
|
|
5
6
|
/**
|
|
6
7
|
* Whether the tab is currently active.
|
|
@@ -9,4 +10,6 @@ export declare class TabContextService {
|
|
|
9
10
|
set isActive(isActive: boolean);
|
|
10
11
|
readonly active$: Observable<boolean>;
|
|
11
12
|
constructor(_parent: TabContextService);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabContextService, [{ optional: true; skipSelf: true; }]>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TabContextService>;
|
|
12
15
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { AfterContentChecked, AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { Bem } from '../utils';
|
|
4
|
-
import { TabHeaderAddonDirective, TabTitleDirective } from './tab-
|
|
4
|
+
import { TabHeaderAddonDirective, TabTitleDirective } from './tab-body.component';
|
|
5
5
|
import { TabHeaderComponent } from './tab-header.component';
|
|
6
6
|
import { TabComponent } from './tab.component';
|
|
7
|
-
import { TabType } from './tabs.types';
|
|
7
|
+
import { TabSize, TabType } from './tabs.types';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
/** A simple change event emitted on focus or selection changes. */
|
|
9
10
|
export declare class TabChangeEvent {
|
|
10
11
|
/** Index of the currently-selected tab. */
|
|
@@ -44,16 +45,8 @@ export declare class TabGroupComponent implements OnChanges, AfterContentChecked
|
|
|
44
45
|
get type(): TabType;
|
|
45
46
|
set type(type: TabType);
|
|
46
47
|
title: string | TemplateRef<unknown>;
|
|
47
|
-
get size():
|
|
48
|
-
|
|
49
|
-
readonly Medium: "medium";
|
|
50
|
-
readonly Large: "large";
|
|
51
|
-
}>;
|
|
52
|
-
set size(val: import("../types").ValueOf<{
|
|
53
|
-
readonly Small: "small";
|
|
54
|
-
readonly Medium: "medium";
|
|
55
|
-
readonly Large: "large";
|
|
56
|
-
}>);
|
|
48
|
+
get size(): TabSize;
|
|
49
|
+
set size(val: TabSize);
|
|
57
50
|
get lazy(): boolean;
|
|
58
51
|
set lazy(lazy: boolean);
|
|
59
52
|
/** Output to enable support for two-way binding on `[(selectedIndex)]` */
|
|
@@ -94,4 +87,6 @@ export declare class TabGroupComponent implements OnChanges, AfterContentChecked
|
|
|
94
87
|
private _subscribeToTabLabels;
|
|
95
88
|
/** Retrieves the tabindex for the tab. */
|
|
96
89
|
_getTabIndex(tab: TabComponent, idx: number): number | null;
|
|
90
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent, never>;
|
|
91
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "aui-tab-group", ["auiTabGroup"], { "selectedIndex": "selectedIndex"; "tab": "tab"; "type": "type"; "title": "title"; "size": "size"; "lazy": "lazy"; }, { "selectedIndexChange": "selectedIndexChange"; "tabChange": "tabChange"; "selectedTabChange": "selectedTabChange"; "focusChange": "focusChange"; }, ["_headerAddon", "_tabTitle", "_tabs"], never>;
|
|
97
92
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, NgZone } from '@angular/core';
|
|
2
2
|
import { Bem } from '../utils';
|
|
3
3
|
import { TabType } from './tabs.types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class TabHeaderActiveIndicatorComponent {
|
|
5
6
|
private readonly _elementRef;
|
|
6
7
|
private readonly _ngZone;
|
|
@@ -19,4 +20,6 @@ export declare class TabHeaderActiveIndicatorComponent {
|
|
|
19
20
|
*/
|
|
20
21
|
private _setStyles;
|
|
21
22
|
private _getElementPosition;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabHeaderActiveIndicatorComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabHeaderActiveIndicatorComponent, "aui-tab-header-active-indicator", never, { "type": "type"; }, {}, never, never>;
|
|
22
25
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ViewportRuler } from '@angular/cdk/scrolling';
|
|
2
2
|
import { AfterContentChecked, AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, QueryList } from '@angular/core';
|
|
3
3
|
import { Bem } from '../utils';
|
|
4
|
-
import { TabHeaderAddonDirective, TabLabelWrapperDirective, TabTitleDirective } from './tab-
|
|
4
|
+
import { TabHeaderAddonDirective, TabLabelWrapperDirective, TabTitleDirective } from './tab-body.component';
|
|
5
5
|
import { TabHeaderActiveIndicatorComponent } from './tab-header-active-indicator.component';
|
|
6
6
|
import { TabSize, TabType } from './tabs.types';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* The directions that scrolling can go in when the header's tabs exceed the header width. 'After'
|
|
9
10
|
* will scroll the header towards the end of the tabs list and 'before' will scroll towards the
|
|
@@ -138,4 +139,6 @@ export declare class TabHeaderComponent implements OnDestroy, AfterContentChecke
|
|
|
138
139
|
/** Tells the active indicator to align itself to the current label wrapper */
|
|
139
140
|
_alignActiveIndicatorToSelectedTab(): void;
|
|
140
141
|
constructor(_changeDetectorRef: ChangeDetectorRef, _viewportRuler: ViewportRuler);
|
|
142
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabHeaderComponent, never>;
|
|
143
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabHeaderComponent, "aui-tab-header", never, { "type": "type"; "size": "size"; "selectedIndex": "selectedIndex"; }, { "selectFocusedIndex": "selectFocusedIndex"; "indexFocused": "indexFocused"; }, ["_headerAddon", "_title", "_labelWrappers"], ["*"]>;
|
|
141
144
|
}
|
package/tabs/tab.component.d.ts
CHANGED
|
@@ -2,7 +2,8 @@ import { TemplatePortal } from '@angular/cdk/portal';
|
|
|
2
2
|
import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
4
|
import { TabContextService } from './tab-context.service';
|
|
5
|
-
import { TabLabelDirective } from './tab-
|
|
5
|
+
import { TabLabelDirective } from './tab-body.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class TabComponent implements AfterContentInit, OnDestroy, OnChanges {
|
|
7
8
|
private readonly _viewContainerRef;
|
|
8
9
|
readonly tabContext: TabContextService;
|
|
@@ -43,4 +44,6 @@ export declare class TabComponent implements AfterContentInit, OnDestroy, OnChan
|
|
|
43
44
|
ngAfterContentInit(): void;
|
|
44
45
|
ngOnDestroy(): void;
|
|
45
46
|
ngOnChanges(changes: SimpleChanges): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "aui-tab", ["auiTab"], { "name": "name"; "textLabel": "label"; "closeable": "closeable"; "disabled": "disabled"; }, { "close": "close"; }, ["templateLabel", "_explicitContent"], ["*"]>;
|
|
46
49
|
}
|
package/tabs/tabs.module.d.ts
CHANGED
|
@@ -1,2 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tab-group.component";
|
|
3
|
+
import * as i2 from "./tab.component";
|
|
4
|
+
import * as i3 from "./tab-body.component";
|
|
5
|
+
import * as i4 from "./tab-header.component";
|
|
6
|
+
import * as i5 from "./tab-header-active-indicator.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/cdk/portal";
|
|
10
|
+
import * as i9 from "../button/button.module";
|
|
11
|
+
import * as i10 from "../icon/icon.module";
|
|
12
|
+
import * as i11 from "@angular/cdk/a11y";
|
|
13
|
+
import * as i12 from "@angular/cdk/observers";
|
|
1
14
|
export declare class TabsModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabsModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, [typeof i1.TabGroupComponent, typeof i2.TabComponent, typeof i3.TabLabelDirective, typeof i3.TabContentDirective, typeof i3.TabHeaderAddonDirective, typeof i3.TabTitleDirective, typeof i4.TabHeaderComponent, typeof i3.TabBodyComponent, typeof i3.TabBodyPortalDirective, typeof i3.TabLabelWrapperDirective, typeof i5.TabHeaderActiveIndicatorComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.PortalModule, typeof i9.ButtonModule, typeof i10.IconModule, typeof i11.A11yModule, typeof i12.ObserversModule], [typeof i1.TabGroupComponent, typeof i2.TabComponent, typeof i3.TabLabelDirective, typeof i3.TabContentDirective, typeof i3.TabHeaderAddonDirective, typeof i3.TabTitleDirective, typeof i3.TabLabelWrapperDirective, typeof i4.TabHeaderComponent]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
|
|
2
18
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ComponentSize } from '../../types';
|
|
3
3
|
import { Bem } from '../../utils';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CheckTagComponent {
|
|
5
6
|
bem: Bem;
|
|
6
7
|
hovered: boolean;
|
|
@@ -9,4 +10,6 @@ export declare class CheckTagComponent {
|
|
|
9
10
|
round: boolean;
|
|
10
11
|
checkedChange: EventEmitter<boolean>;
|
|
11
12
|
get rootClass(): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckTagComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckTagComponent, "aui-check-tag", never, { "checked": "checked"; "size": "size"; "round": "round"; }, { "checkedChange": "checkedChange"; }, never, ["*"]>;
|
|
12
15
|
}
|
package/tag/tag.component.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { ComponentSize } from '../types';
|
|
3
3
|
import { Bem } from '../utils';
|
|
4
4
|
import { TagType } from './tag.types';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class TagComponent {
|
|
6
7
|
bem: Bem;
|
|
7
8
|
type: TagType;
|
|
@@ -21,4 +22,6 @@ export declare class TagComponent {
|
|
|
21
22
|
'border-color': string;
|
|
22
23
|
'background-color': string;
|
|
23
24
|
};
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "aui-tag", never, { "type": "type"; "size": "size"; "closeable": "closeable"; "border": "border"; "solid": "solid"; "invalid": "invalid"; "round": "round"; "color": "color"; "allowClick": "allowClick"; }, { "close": "close"; }, never, ["*"]>;
|
|
24
27
|
}
|
package/tag/tag.module.d.ts
CHANGED
|
@@ -1,2 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tag.component";
|
|
3
|
+
import * as i2 from "./check-tag/check-tag.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "../icon/icon.module";
|
|
1
6
|
export declare class TagModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TagModule, [typeof i1.TagComponent, typeof i2.CheckTagComponent], [typeof i3.CommonModule, typeof i4.IconModule], [typeof i1.TagComponent, typeof i2.CheckTagComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TagModule>;
|
|
2
10
|
}
|
package/theme/_mixin.scss
CHANGED
package/theme/_var.scss
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
1
2
|
@import 'base-var';
|
|
2
3
|
|
|
3
4
|
// Button
|
|
@@ -351,6 +352,7 @@ $date-picker-row-gap: 8px;
|
|
|
351
352
|
$date-picker-cell-size: 24px;
|
|
352
353
|
$range-picker-body-width: 524px;
|
|
353
354
|
$range-picker-panel-spacing: 32px;
|
|
354
|
-
$range-picker-header-width: (
|
|
355
|
-
|
|
356
|
-
|
|
355
|
+
$range-picker-header-width: math.div(
|
|
356
|
+
($range-picker-body-width - $range-picker-panel-spacing),
|
|
357
|
+
2
|
|
358
|
+
);
|
package/theme/public-api.d.ts
CHANGED
package/theme/style.css
CHANGED
|
@@ -55,9 +55,12 @@
|
|
|
55
55
|
--aui-color-n-8: 237, 239, 242;
|
|
56
56
|
--aui-color-n-9: 247, 249, 252;
|
|
57
57
|
--aui-color-n-10: 255, 255, 255;
|
|
58
|
-
--aui-color-main-bg: var(--aui-color-n-9);
|
|
59
|
-
--aui-color-popper-bg: var(--aui-color-n-10);
|
|
60
58
|
--aui-color-origin-shadow: var(--aui-color-n-1);
|
|
59
|
+
--aui-color-popper-bg: var(--aui-color-n-10);
|
|
60
|
+
--aui-color-button-bg: var(--aui-color-n-9);
|
|
61
|
+
--aui-color-main-bg: var(--aui-color-n-9);
|
|
62
|
+
--aui-color-divider: var(--aui-color-n-8);
|
|
63
|
+
--aui-color-border: var(--aui-color-n-7);
|
|
61
64
|
}
|
|
62
65
|
|
|
63
66
|
html[aui-theme-mode=light] {
|
|
@@ -101,102 +104,111 @@ html[aui-theme-mode=light] {
|
|
|
101
104
|
--aui-color-n-8: 237, 239, 242;
|
|
102
105
|
--aui-color-n-9: 247, 249, 252;
|
|
103
106
|
--aui-color-n-10: 255, 255, 255;
|
|
104
|
-
--aui-color-main-bg: var(--aui-color-n-9);
|
|
105
|
-
--aui-color-popper-bg: var(--aui-color-n-10);
|
|
106
107
|
--aui-color-origin-shadow: var(--aui-color-n-1);
|
|
108
|
+
--aui-color-popper-bg: var(--aui-color-n-10);
|
|
109
|
+
--aui-color-button-bg: var(--aui-color-n-9);
|
|
110
|
+
--aui-color-main-bg: var(--aui-color-n-9);
|
|
111
|
+
--aui-color-divider: var(--aui-color-n-8);
|
|
112
|
+
--aui-color-border: var(--aui-color-n-7);
|
|
107
113
|
}
|
|
108
114
|
|
|
109
115
|
@media (prefers-color-scheme: dark) {
|
|
110
116
|
html[aui-theme-mode=system] {
|
|
111
117
|
--aui-color-blue: 61, 142, 255;
|
|
112
|
-
--aui-color-b-0: 54, 116,
|
|
118
|
+
--aui-color-b-0: 54, 116, 204;
|
|
113
119
|
--aui-color-b-1: 109, 170, 255;
|
|
114
|
-
--aui-color-b-2:
|
|
115
|
-
--aui-color-b-3: 50, 101,
|
|
116
|
-
--aui-color-b-4:
|
|
117
|
-
--aui-color-b-5:
|
|
118
|
-
--aui-color-b-6:
|
|
119
|
-
--aui-color-b-7:
|
|
120
|
+
--aui-color-b-2: 53, 111, 193;
|
|
121
|
+
--aui-color-b-3: 50, 101, 173;
|
|
122
|
+
--aui-color-b-4: 47, 85, 143;
|
|
123
|
+
--aui-color-b-5: 40, 54, 81;
|
|
124
|
+
--aui-color-b-6: 42, 64, 102;
|
|
125
|
+
--aui-color-b-7: 44, 74, 122;
|
|
120
126
|
--aui-color-green: 17, 182, 113;
|
|
121
|
-
--aui-color-g-0: 21, 146,
|
|
127
|
+
--aui-color-g-0: 21, 146, 97;
|
|
122
128
|
--aui-color-g-1: 76, 200, 148;
|
|
123
|
-
--aui-color-g-2:
|
|
124
|
-
--aui-color-g-4:
|
|
125
|
-
--aui-color-g-6:
|
|
126
|
-
--aui-color-g-7:
|
|
129
|
+
--aui-color-g-2: 22, 139, 93;
|
|
130
|
+
--aui-color-g-4: 27, 103, 78;
|
|
131
|
+
--aui-color-g-6: 31, 74, 66;
|
|
132
|
+
--aui-color-g-7: 28, 88, 72;
|
|
127
133
|
--aui-color-yellow: 237, 172, 44;
|
|
128
|
-
--aui-color-y-0: 186, 138,
|
|
134
|
+
--aui-color-y-0: 186, 138, 45;
|
|
129
135
|
--aui-color-y-1: 241, 192, 96;
|
|
130
|
-
--aui-color-y-2:
|
|
131
|
-
--aui-color-y-4:
|
|
132
|
-
--aui-color-y-6:
|
|
133
|
-
--aui-color-y-7:
|
|
136
|
+
--aui-color-y-2: 176, 132, 45;
|
|
137
|
+
--aui-color-y-4: 126, 98, 47;
|
|
138
|
+
--aui-color-y-6: 86, 72, 49;
|
|
139
|
+
--aui-color-y-7: 105, 85, 48;
|
|
134
140
|
--aui-color-red: 226, 50, 79;
|
|
135
|
-
--aui-color-r-0: 178, 47,
|
|
141
|
+
--aui-color-r-0: 178, 47, 72;
|
|
136
142
|
--aui-color-r-1: 233, 101, 123;
|
|
137
|
-
--aui-color-r-2:
|
|
138
|
-
--aui-color-r-4:
|
|
139
|
-
--aui-color-r-6:
|
|
140
|
-
--aui-color-r-7:
|
|
141
|
-
--aui-color-n-1:
|
|
142
|
-
--aui-color-n-2:
|
|
143
|
-
--aui-color-n-3:
|
|
144
|
-
--aui-color-n-4:
|
|
145
|
-
--aui-color-n-5:
|
|
146
|
-
--aui-color-n-6:
|
|
147
|
-
--aui-color-n-7:
|
|
148
|
-
--aui-color-n-8:
|
|
149
|
-
--aui-color-n-9:
|
|
150
|
-
--aui-color-n-10:
|
|
151
|
-
--aui-color-
|
|
152
|
-
--aui-color-popper-bg:
|
|
153
|
-
--aui-color-
|
|
143
|
+
--aui-color-r-2: 168, 46, 70;
|
|
144
|
+
--aui-color-r-4: 121, 43, 63;
|
|
145
|
+
--aui-color-r-6: 83, 41, 57;
|
|
146
|
+
--aui-color-r-7: 101, 42, 60;
|
|
147
|
+
--aui-color-n-1: 243, 244, 248;
|
|
148
|
+
--aui-color-n-2: 200, 201, 205;
|
|
149
|
+
--aui-color-n-3: 184, 186, 194;
|
|
150
|
+
--aui-color-n-4: 152, 154, 162;
|
|
151
|
+
--aui-color-n-5: 144, 147, 159;
|
|
152
|
+
--aui-color-n-6: 120, 123, 135;
|
|
153
|
+
--aui-color-n-7: 92, 95, 107;
|
|
154
|
+
--aui-color-n-8: 67, 70, 82;
|
|
155
|
+
--aui-color-n-9: 24, 27, 39;
|
|
156
|
+
--aui-color-n-10: 36, 39, 51;
|
|
157
|
+
--aui-color-origin-shadow: var(--aui-color-n-9);
|
|
158
|
+
--aui-color-popper-bg: 56, 59, 71;
|
|
159
|
+
--aui-color-button-bg: 56, 59, 71;
|
|
160
|
+
--aui-color-main-bg: var(--aui-color-n-9);
|
|
161
|
+
--aui-color-divider: var(--aui-color-n-8);
|
|
162
|
+
--aui-color-border: var(--aui-color-n-7);
|
|
154
163
|
}
|
|
155
164
|
}
|
|
156
165
|
html[aui-theme-mode=dark] {
|
|
157
166
|
--aui-color-blue: 61, 142, 255;
|
|
158
|
-
--aui-color-b-0: 54, 116,
|
|
167
|
+
--aui-color-b-0: 54, 116, 204;
|
|
159
168
|
--aui-color-b-1: 109, 170, 255;
|
|
160
|
-
--aui-color-b-2:
|
|
161
|
-
--aui-color-b-3: 50, 101,
|
|
162
|
-
--aui-color-b-4:
|
|
163
|
-
--aui-color-b-5:
|
|
164
|
-
--aui-color-b-6:
|
|
165
|
-
--aui-color-b-7:
|
|
169
|
+
--aui-color-b-2: 53, 111, 193;
|
|
170
|
+
--aui-color-b-3: 50, 101, 173;
|
|
171
|
+
--aui-color-b-4: 47, 85, 143;
|
|
172
|
+
--aui-color-b-5: 40, 54, 81;
|
|
173
|
+
--aui-color-b-6: 42, 64, 102;
|
|
174
|
+
--aui-color-b-7: 44, 74, 122;
|
|
166
175
|
--aui-color-green: 17, 182, 113;
|
|
167
|
-
--aui-color-g-0: 21, 146,
|
|
176
|
+
--aui-color-g-0: 21, 146, 97;
|
|
168
177
|
--aui-color-g-1: 76, 200, 148;
|
|
169
|
-
--aui-color-g-2:
|
|
170
|
-
--aui-color-g-4:
|
|
171
|
-
--aui-color-g-6:
|
|
172
|
-
--aui-color-g-7:
|
|
178
|
+
--aui-color-g-2: 22, 139, 93;
|
|
179
|
+
--aui-color-g-4: 27, 103, 78;
|
|
180
|
+
--aui-color-g-6: 31, 74, 66;
|
|
181
|
+
--aui-color-g-7: 28, 88, 72;
|
|
173
182
|
--aui-color-yellow: 237, 172, 44;
|
|
174
|
-
--aui-color-y-0: 186, 138,
|
|
183
|
+
--aui-color-y-0: 186, 138, 45;
|
|
175
184
|
--aui-color-y-1: 241, 192, 96;
|
|
176
|
-
--aui-color-y-2:
|
|
177
|
-
--aui-color-y-4:
|
|
178
|
-
--aui-color-y-6:
|
|
179
|
-
--aui-color-y-7:
|
|
185
|
+
--aui-color-y-2: 176, 132, 45;
|
|
186
|
+
--aui-color-y-4: 126, 98, 47;
|
|
187
|
+
--aui-color-y-6: 86, 72, 49;
|
|
188
|
+
--aui-color-y-7: 105, 85, 48;
|
|
180
189
|
--aui-color-red: 226, 50, 79;
|
|
181
|
-
--aui-color-r-0: 178, 47,
|
|
190
|
+
--aui-color-r-0: 178, 47, 72;
|
|
182
191
|
--aui-color-r-1: 233, 101, 123;
|
|
183
|
-
--aui-color-r-2:
|
|
184
|
-
--aui-color-r-4:
|
|
185
|
-
--aui-color-r-6:
|
|
186
|
-
--aui-color-r-7:
|
|
187
|
-
--aui-color-n-1:
|
|
188
|
-
--aui-color-n-2:
|
|
189
|
-
--aui-color-n-3:
|
|
190
|
-
--aui-color-n-4:
|
|
191
|
-
--aui-color-n-5:
|
|
192
|
-
--aui-color-n-6:
|
|
193
|
-
--aui-color-n-7:
|
|
194
|
-
--aui-color-n-8:
|
|
195
|
-
--aui-color-n-9:
|
|
196
|
-
--aui-color-n-10:
|
|
197
|
-
--aui-color-
|
|
198
|
-
--aui-color-popper-bg:
|
|
199
|
-
--aui-color-
|
|
192
|
+
--aui-color-r-2: 168, 46, 70;
|
|
193
|
+
--aui-color-r-4: 121, 43, 63;
|
|
194
|
+
--aui-color-r-6: 83, 41, 57;
|
|
195
|
+
--aui-color-r-7: 101, 42, 60;
|
|
196
|
+
--aui-color-n-1: 243, 244, 248;
|
|
197
|
+
--aui-color-n-2: 200, 201, 205;
|
|
198
|
+
--aui-color-n-3: 184, 186, 194;
|
|
199
|
+
--aui-color-n-4: 152, 154, 162;
|
|
200
|
+
--aui-color-n-5: 144, 147, 159;
|
|
201
|
+
--aui-color-n-6: 120, 123, 135;
|
|
202
|
+
--aui-color-n-7: 92, 95, 107;
|
|
203
|
+
--aui-color-n-8: 67, 70, 82;
|
|
204
|
+
--aui-color-n-9: 24, 27, 39;
|
|
205
|
+
--aui-color-n-10: 36, 39, 51;
|
|
206
|
+
--aui-color-origin-shadow: var(--aui-color-n-9);
|
|
207
|
+
--aui-color-popper-bg: 56, 59, 71;
|
|
208
|
+
--aui-color-button-bg: 56, 59, 71;
|
|
209
|
+
--aui-color-main-bg: var(--aui-color-n-9);
|
|
210
|
+
--aui-color-divider: var(--aui-color-n-8);
|
|
211
|
+
--aui-color-border: var(--aui-color-n-7);
|
|
200
212
|
}
|
|
201
213
|
|
|
202
214
|
:root {
|
|
@@ -238,12 +250,6 @@ html[aui-theme-mode=dark] {
|
|
|
238
250
|
--aui-icon-size-s: 12px;
|
|
239
251
|
--aui-border-radius-l: 4px;
|
|
240
252
|
--aui-border-radius-m: 2px;
|
|
241
|
-
--aui-page-header-height: 60px;
|
|
242
|
-
--aui-page-toolbar-height: 44px;
|
|
243
|
-
--aui-page-snackbar-height: 60px;
|
|
244
|
-
--aui-page-sider-width: 260px;
|
|
245
|
-
--aui-page-padding-m: 20px;
|
|
246
|
-
--aui-page-padding-s: 16px;
|
|
247
253
|
--aui-form-item-width-l: 732px;
|
|
248
254
|
--aui-form-item-width-m: 436px;
|
|
249
255
|
--aui-form-item-width-s: 140px;
|
package/theme/theme.module.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./theme.pipe";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
export declare class ThemeModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeModule, [typeof i1.ThemePickerPipe, typeof i1.RgbColorPipe, typeof i1.RgbaColorPipe, typeof i1.CssVarPipe], [typeof i2.CommonModule], [typeof i1.ThemePickerPipe, typeof i1.RgbColorPipe, typeof i1.RgbaColorPipe, typeof i1.CssVarPipe]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeModule>;
|
|
2
8
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, PipeTransform } from '@angular/core';
|
|
2
|
+
import { ThemeService } from './theme.service';
|
|
3
|
+
import { ThemeSet } from './theme.types';
|
|
4
|
+
import { cssVar, rgbColor, rgbaColor } from './utils';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class RgbColorPipe implements PipeTransform {
|
|
7
|
+
transform: typeof rgbColor;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RgbColorPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RgbColorPipe, "auiRgbColor">;
|
|
10
|
+
}
|
|
11
|
+
export declare class RgbaColorPipe implements PipeTransform {
|
|
12
|
+
transform: typeof rgbaColor;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RgbaColorPipe, never>;
|
|
14
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RgbaColorPipe, "auiRgbaColor">;
|
|
15
|
+
}
|
|
16
|
+
export declare class CssVarPipe implements PipeTransform {
|
|
17
|
+
transform: typeof cssVar;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CssVarPipe, never>;
|
|
19
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CssVarPipe, "auiCssVar">;
|
|
20
|
+
}
|
|
21
|
+
export declare class ThemePickerPipe<T> implements PipeTransform, OnDestroy {
|
|
22
|
+
private currentTheme;
|
|
23
|
+
private readonly destroy$$;
|
|
24
|
+
constructor(themeService: ThemeService, cdr: ChangeDetectorRef);
|
|
25
|
+
transform(v: ThemeSet<T>): T;
|
|
26
|
+
ngOnDestroy(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemePickerPipe<any>, never>;
|
|
28
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ThemePickerPipe<any>, "auiThemePicker">;
|
|
29
|
+
}
|
package/theme/theme.service.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Theme, ThemeMode } from './theme.types';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ThemeService {
|
|
3
4
|
private readonly htmlEl;
|
|
4
5
|
private browserTheme;
|
|
@@ -9,4 +10,6 @@ export declare class ThemeService {
|
|
|
9
10
|
setThemeMode(mode: ThemeMode): void;
|
|
10
11
|
currentTheme(): Theme;
|
|
11
12
|
private themeChanged;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
|
|
12
15
|
}
|
package/theme/utils.d.ts
ADDED
|
@@ -4,6 +4,7 @@ import { CommonFormControl } from '../form/common-form';
|
|
|
4
4
|
import { TooltipDirective } from '../tooltip/public-api';
|
|
5
5
|
import { ComponentSize } from '../types';
|
|
6
6
|
import { TimePickerDataLike, TimePickerModel } from './time-picker.type';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TimePickerComponent extends CommonFormControl<TimePickerDataLike, TimePickerModel> {
|
|
8
9
|
format: string;
|
|
9
10
|
size: ComponentSize;
|
|
@@ -32,4 +33,6 @@ export declare class TimePickerComponent extends CommonFormControl<TimePickerDat
|
|
|
32
33
|
closePanel(): void;
|
|
33
34
|
clearValue(event: Event): void;
|
|
34
35
|
submit(close?: boolean, value?: Dayjs): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "aui-time-picker", never, { "format": "format"; "size": "size"; "placeholder": "placeholder"; "clearable": "clearable"; "showIcon": "showIcon"; "disableHours": "disableHours"; "disableMinutes": "disableMinutes"; "disableSeconds": "disableSeconds"; "hourStep": "hourStep"; "minuteStep": "minuteStep"; "secondStep": "secondStep"; "footerTemplate": "footerTemplate"; }, { "open": "open"; "close": "close"; }, never, never>;
|
|
35
38
|
}
|
|
@@ -2,6 +2,7 @@ import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, SimpleChanges,
|
|
|
2
2
|
import dayjs, { Dayjs } from 'dayjs';
|
|
3
3
|
import { CommonFormControl } from '../../form/common-form';
|
|
4
4
|
import { TimePickerControlType } from '../time-picker.type';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class TimePickerPanelComponent extends CommonFormControl<Dayjs> implements OnChanges {
|
|
6
7
|
protected cdr: ChangeDetectorRef;
|
|
7
8
|
set format(value: string);
|
|
@@ -49,4 +50,6 @@ export declare class TimePickerPanelComponent extends CommonFormControl<Dayjs> i
|
|
|
49
50
|
getControlTypeConfig(type: TimePickerControlType): number[];
|
|
50
51
|
selectNow(): void;
|
|
51
52
|
trackBy(_index: number, content: number): number;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerPanelComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerPanelComponent, "aui-time-picker-panel", never, { "format": "format"; "hourStep": "hourStep"; "minuteStep": "minuteStep"; "secondStep": "secondStep"; "footerTemplate": "footerTemplate"; "disableHours": "disableHours"; "disableMinutes": "disableMinutes"; "disableSeconds": "disableSeconds"; }, { "confirm": "confirm"; }, never, never>;
|
|
52
55
|
}
|
|
@@ -1,2 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./component";
|
|
3
|
+
import * as i2 from "./panel/panel.component";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/cdk/portal";
|
|
6
|
+
import * as i5 from "@angular/cdk/overlay";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "../input/input.module";
|
|
9
|
+
import * as i8 from "../tooltip/tooltip.module";
|
|
10
|
+
import * as i9 from "../icon/icon.module";
|
|
11
|
+
import * as i10 from "../button/button.module";
|
|
12
|
+
import * as i11 from "../i18n/i18n.module";
|
|
1
13
|
export declare class TimePickerModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TimePickerModule, [typeof i1.TimePickerComponent, typeof i2.TimePickerPanelComponent], [typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.PortalModule, typeof i5.OverlayModule, typeof i6.CommonModule, typeof i7.InputModule, typeof i8.TooltipModule, typeof i9.IconModule, typeof i10.ButtonModule, typeof i11.I18nModule], [typeof i1.TimePickerComponent, typeof i2.TimePickerPanelComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TimePickerModule>;
|
|
2
17
|
}
|
|
@@ -4,6 +4,7 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnD
|
|
|
4
4
|
import { ReplaySubject } from 'rxjs';
|
|
5
5
|
import { TooltipComponent } from './tooltip.component';
|
|
6
6
|
import { TooltipTrigger, TooltipType } from './tooltip.types';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export interface TooltipInterface {
|
|
8
9
|
content: string | TemplateRef<any>;
|
|
9
10
|
context: any;
|
|
@@ -74,4 +75,6 @@ export declare class BaseTooltip<T = any> implements TooltipInterface, AfterView
|
|
|
74
75
|
protected onBodyClick(event: Event): void;
|
|
75
76
|
protected onFocus(): void;
|
|
76
77
|
protected onBlur(): void;
|
|
78
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseTooltip<any>, never>;
|
|
79
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseTooltip<any>, never, never, {}, {}, never>;
|
|
77
80
|
}
|
package/tooltip/public-api.d.ts
CHANGED