@alauda/ui 6.5.10-beta.4 → 6.5.10-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accordion/accordion-item/accordion-item.component.d.ts +3 -3
- package/accordion/accordion.component.d.ts +1 -1
- package/anchor/anchor.component.d.ts +2 -2
- package/anchor/anchor.directive.d.ts +3 -3
- package/autocomplete/autocomplete-placeholder.component.d.ts +1 -1
- package/autocomplete/autocomplete.component.d.ts +1 -1
- package/autocomplete/autocomplete.directive.d.ts +2 -2
- package/autocomplete/autocomplete.types.d.ts +1 -1
- package/autocomplete/helper-directives.d.ts +1 -1
- package/autocomplete/suggestion/suggestion.component.d.ts +1 -1
- package/autocomplete/suggestion-group/suggestion-group.component.d.ts +1 -1
- package/back-top/back-top.component.d.ts +2 -2
- package/breadcrumb/breadcrumb-item.component.d.ts +1 -1
- package/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/button/button-group/button-group.component.d.ts +1 -1
- package/button/button.component.d.ts +1 -1
- package/button/button.types.d.ts +1 -10
- package/card/card.component.d.ts +1 -1
- package/card/helper-directives.d.ts +3 -6
- package/card/section.component.d.ts +1 -1
- package/checkbox/checkbox-group/checkbox-group.component.d.ts +1 -1
- package/checkbox/checkbox.component.d.ts +1 -1
- package/color-picker/color-picker.component.d.ts +1 -1
- package/date-picker/calendar/date-picker-panel/component.d.ts +1 -1
- package/date-picker/calendar/footer/component.d.ts +1 -1
- package/date-picker/calendar/header/component.d.ts +1 -1
- package/date-picker/calendar/panel/picker-panel.d.ts +1 -1
- package/date-picker/calendar/range-picker-panel/component.d.ts +1 -1
- package/date-picker/date-picker/date-picker.component.d.ts +1 -1
- package/date-picker/date-picker.type.d.ts +2 -2
- package/date-picker/range-picker/range-picker.component.d.ts +1 -1
- package/date-picker/trigger/trigger.component.d.ts +1 -1
- package/dialog/confirm-dialog/confirm-dialog.component.d.ts +1 -1
- package/dialog/dialog-content/dialog-close.directive.d.ts +1 -1
- package/dialog/dialog-content/dialog-content.component.d.ts +1 -1
- package/dialog/dialog-content/dialog-footer.component.d.ts +1 -1
- package/dialog/dialog-content/dialog-header.component.d.ts +1 -1
- package/dialog/dialog.component.d.ts +1 -1
- package/dialog/dialog.types.d.ts +3 -3
- package/drawer/component/drawer.component.d.ts +1 -1
- package/drawer/component/helper-directives.d.ts +3 -3
- package/dropdown/dropdown-active.directive.d.ts +1 -1
- package/dropdown/dropdown-button/dropdown-button.component.d.ts +1 -1
- package/dropdown/dropdown.directive.d.ts +1 -1
- package/dropdown/dropdown.types.d.ts +1 -1
- package/dropdown/helper-directives.d.ts +1 -1
- package/dropdown/menu/menu-content.directive.d.ts +1 -1
- package/dropdown/menu/menu.component.d.ts +1 -1
- package/dropdown/menu-group/menu-group.component.d.ts +1 -1
- package/dropdown/menu-item/menu-item.component.d.ts +1 -1
- package/dropdown/submenu/submenu.component.d.ts +1 -1
- package/esm2022/accordion/accordion-item/accordion-item.component.mjs +73 -0
- package/esm2022/accordion/accordion.component.mjs +29 -0
- package/esm2022/accordion/accordion.module.mjs +39 -0
- package/esm2022/alauda-ui.mjs +2 -0
- package/esm2022/anchor/anchor.component.mjs +141 -0
- package/esm2022/anchor/anchor.directive.mjs +198 -0
- package/esm2022/anchor/anchor.module.mjs +35 -0
- package/{esm2020 → esm2022}/autocomplete/autocomplete-placeholder.component.mjs +4 -4
- package/esm2022/autocomplete/autocomplete.component.mjs +72 -0
- package/esm2022/autocomplete/autocomplete.directive.mjs +278 -0
- package/esm2022/autocomplete/autocomplete.module.mjs +53 -0
- package/{esm2020 → esm2022}/autocomplete/helper-directives.mjs +4 -4
- package/esm2022/autocomplete/suggestion/suggestion.component.mjs +85 -0
- package/esm2022/autocomplete/suggestion-group/suggestion-group.component.mjs +25 -0
- package/esm2022/back-top/back-top.component.mjs +68 -0
- package/esm2022/back-top/back-top.module.mjs +19 -0
- package/esm2022/breadcrumb/breadcrumb-item.component.mjs +33 -0
- package/esm2022/breadcrumb/breadcrumb.component.mjs +56 -0
- package/esm2022/breadcrumb/breadcrumb.module.mjs +20 -0
- package/{esm2020 → esm2022}/button/button-group/button-group.component.mjs +4 -4
- package/esm2022/button/button.component.mjs +124 -0
- package/esm2022/button/button.module.mjs +20 -0
- package/esm2022/button/button.types.mjs +13 -0
- package/esm2022/card/card.component.mjs +14 -0
- package/esm2022/card/card.module.mjs +40 -0
- package/esm2022/card/helper-directives.mjs +45 -0
- package/{esm2020 → esm2022}/card/section.component.mjs +4 -4
- package/esm2022/checkbox/checkbox-group/checkbox-group.component.mjs +60 -0
- package/esm2022/checkbox/checkbox.component.mjs +116 -0
- package/esm2022/checkbox/checkbox.module.mjs +20 -0
- package/esm2022/color-picker/color-picker.component.mjs +28 -0
- package/esm2022/color-picker/color-picker.module.mjs +19 -0
- package/esm2022/date-picker/calendar/constant.mjs +31 -0
- package/esm2022/date-picker/calendar/date-picker-panel/component.mjs +137 -0
- package/esm2022/date-picker/calendar/footer/component.mjs +29 -0
- package/esm2022/date-picker/calendar/header/component.mjs +99 -0
- package/esm2022/date-picker/calendar/panel/picker-panel.mjs +158 -0
- package/esm2022/date-picker/calendar/range-picker-panel/component.mjs +210 -0
- package/esm2022/date-picker/calendar/util.mjs +152 -0
- package/esm2022/date-picker/date-picker/date-picker.component.mjs +115 -0
- package/esm2022/date-picker/date-picker.module.mjs +82 -0
- package/esm2022/date-picker/range-picker/range-picker.component.mjs +88 -0
- package/esm2022/date-picker/trigger/trigger.component.mjs +76 -0
- package/esm2022/dialog/confirm-dialog/confirm-dialog-config.mjs +13 -0
- package/esm2022/dialog/confirm-dialog/confirm-dialog.component.mjs +88 -0
- package/{esm2020 → esm2022}/dialog/dialog-animations.mjs +1 -2
- package/esm2022/dialog/dialog-config.mjs +14 -0
- package/esm2022/dialog/dialog-content/dialog-close.directive.mjs +42 -0
- package/esm2022/dialog/dialog-content/dialog-content.component.mjs +19 -0
- package/esm2022/dialog/dialog-content/dialog-footer.component.mjs +13 -0
- package/esm2022/dialog/dialog-content/dialog-header.component.mjs +42 -0
- package/esm2022/dialog/dialog-ref.mjs +52 -0
- package/esm2022/dialog/dialog.component.mjs +154 -0
- package/esm2022/dialog/dialog.module.mjs +65 -0
- package/esm2022/dialog/dialog.service.mjs +124 -0
- package/esm2022/drawer/component/drawer.component.mjs +248 -0
- package/esm2022/drawer/component/helper-directives.mjs +33 -0
- package/esm2022/drawer/drawer.module.mjs +36 -0
- package/esm2022/drawer/drawer.service.mjs +47 -0
- package/esm2022/dropdown/dropdown-active.directive.mjs +18 -0
- package/esm2022/dropdown/dropdown-button/dropdown-button.component.mjs +58 -0
- package/esm2022/dropdown/dropdown.directive.mjs +83 -0
- package/esm2022/dropdown/dropdown.module.mjs +65 -0
- package/{esm2020 → esm2022}/dropdown/helper-directives.mjs +4 -4
- package/esm2022/dropdown/menu/menu-content.directive.mjs +59 -0
- package/esm2022/dropdown/menu/menu.component.mjs +26 -0
- package/{esm2020 → esm2022}/dropdown/menu-group/menu-group.component.mjs +4 -4
- package/esm2022/dropdown/menu-item/menu-item.component.mjs +35 -0
- package/esm2022/dropdown/submenu/submenu.component.mjs +38 -0
- package/esm2022/form/common-form.mjs +88 -0
- package/esm2022/form/form-item/form-item.component.mjs +121 -0
- package/esm2022/form/form.directive.mjs +70 -0
- package/esm2022/form/form.module.mjs +48 -0
- package/esm2022/form/helper-directives.mjs +78 -0
- package/{esm2020 → esm2022}/i18n/i18n.module.mjs +5 -5
- package/esm2022/i18n/i18n.pipe.mjs +21 -0
- package/esm2022/i18n/i18n.service.mjs +46 -0
- package/esm2022/icon/icon-register.service.mjs +75 -0
- package/esm2022/icon/icon.component.mjs +74 -0
- package/esm2022/icon/icon.module.mjs +21 -0
- package/{esm2020 → esm2022}/inline-alert/helper-directives.mjs +4 -4
- package/esm2022/inline-alert/inline-alert.component.mjs +54 -0
- package/esm2022/inline-alert/inline-alert.module.mjs +20 -0
- package/esm2022/input/autosize.directive.mjs +56 -0
- package/esm2022/input/helper-directives.mjs +43 -0
- package/esm2022/input/input-group/input-group.component.mjs +46 -0
- package/esm2022/input/input.component.mjs +59 -0
- package/esm2022/input/input.module.mjs +85 -0
- package/esm2022/input/number-input/number-input.component.mjs +115 -0
- package/esm2022/input/search/search.component.mjs +87 -0
- package/esm2022/input/tags-input/tags-input.component.mjs +264 -0
- package/esm2022/message/base-message.mjs +99 -0
- package/esm2022/message/message-wrapper.component.mjs +15 -0
- package/esm2022/message/message.component.mjs +77 -0
- package/esm2022/message/message.config.mjs +20 -0
- package/esm2022/message/message.module.mjs +22 -0
- package/{esm2020 → esm2022}/message/message.service.mjs +4 -4
- package/esm2022/notification/notification-wrapper.component.mjs +17 -0
- package/esm2022/notification/notification.component.mjs +106 -0
- package/esm2022/notification/notification.module.mjs +23 -0
- package/{esm2020 → esm2022}/notification/notification.service.mjs +4 -4
- package/esm2022/paginator/paginator-intl.mjs +24 -0
- package/esm2022/paginator/paginator.component.mjs +124 -0
- package/esm2022/paginator/paginator.module.mjs +24 -0
- package/esm2022/radio/base-radio.mjs +72 -0
- package/esm2022/radio/radio-button/radio-button.component.mjs +41 -0
- package/esm2022/radio/radio-group/radio-group.component.mjs +70 -0
- package/esm2022/radio/radio.component.mjs +23 -0
- package/esm2022/radio/radio.module.mjs +21 -0
- package/esm2022/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +80 -0
- package/esm2022/scrolling/fixed-size-table-virtual-scroll.directive.mjs +119 -0
- package/esm2022/scrolling/fixed-size-virtual-scroll.directive.mjs +27 -0
- package/{esm2020 → esm2022}/scrolling/scrolling.module.mjs +9 -9
- package/{esm2020 → esm2022}/scrolling/virtual-for-of.directive.mjs +4 -4
- package/esm2022/scrolling/virtual-scroll-viewport.component.mjs +26 -0
- package/esm2022/select/base-select.mjs +345 -0
- package/{esm2020 → esm2022}/select/helper-directives.mjs +7 -7
- package/esm2022/select/multi-select/multi-select.component.mjs +318 -0
- package/esm2022/select/option/option.component.mjs +119 -0
- package/esm2022/select/option-group/option-group.component.mjs +25 -0
- package/{esm2020 → esm2022}/select/option-placeholder.component.mjs +4 -4
- package/esm2022/select/select.component.mjs +107 -0
- package/esm2022/select/select.module.mjs +78 -0
- package/esm2022/select/validators.mjs +78 -0
- package/esm2022/shared/click-outside.directive.mjs +29 -0
- package/{esm2020 → esm2022}/shared/shared.module.mjs +5 -5
- package/esm2022/sort/sort-errors.mjs +13 -0
- package/esm2022/sort/sort-header.component.mjs +74 -0
- package/esm2022/sort/sort.directive.mjs +73 -0
- package/esm2022/sort/sort.module.mjs +19 -0
- package/esm2022/status-bar/status-bar.component.mjs +28 -0
- package/esm2022/status-bar/status-bar.module.mjs +19 -0
- package/esm2022/steps/steps.component.mjs +180 -0
- package/esm2022/steps/steps.module.mjs +19 -0
- package/esm2022/switch/switch.component.mjs +43 -0
- package/esm2022/switch/switch.module.mjs +18 -0
- package/esm2022/table/table-cell-def.directive.mjs +25 -0
- package/esm2022/table/table-cell.component.mjs +115 -0
- package/esm2022/table/table-cell.directive.mjs +29 -0
- package/esm2022/table/table-column-def.directive.mjs +31 -0
- package/esm2022/table/table-header-cell-def.directive.mjs +25 -0
- package/esm2022/table/table-header-cell.directive.mjs +25 -0
- package/esm2022/table/table-header-row-def.directive.mjs +33 -0
- package/esm2022/table/table-header-row.component.mjs +24 -0
- package/esm2022/table/table-placeholder.directive.mjs +33 -0
- package/esm2022/table/table-row-def.directive.mjs +34 -0
- package/esm2022/table/table-row.component.mjs +43 -0
- package/esm2022/table/table-scroll.directive.mjs +133 -0
- package/esm2022/table/table.component.mjs +79 -0
- package/esm2022/table/table.module.mjs +96 -0
- package/esm2022/table-of-contents/table-of-contents.module.mjs +20 -0
- package/esm2022/table-of-contents/toc-container.directive.mjs +111 -0
- package/esm2022/table-of-contents/toc-content.directive.mjs +39 -0
- package/esm2022/table-of-contents/toc-link.directive.mjs +48 -0
- package/esm2022/tabs/tab-body.component.mjs +151 -0
- package/esm2022/tabs/tab-context.service.mjs +30 -0
- package/esm2022/tabs/tab-group.component.mjs +256 -0
- package/esm2022/tabs/tab-header-active-indicator.component.mjs +46 -0
- package/esm2022/tabs/tab-header.component.mjs +276 -0
- package/esm2022/tabs/tab.component.mjs +77 -0
- package/esm2022/tabs/tabs.module.mjs +86 -0
- package/esm2022/tabs/tabs.types.mjs +10 -0
- package/esm2022/tag/check-tag/check-tag.component.mjs +31 -0
- package/esm2022/tag/tag.component.mjs +63 -0
- package/esm2022/tag/tag.module.mjs +20 -0
- package/esm2022/theme/theme.module.mjs +18 -0
- package/esm2022/theme/theme.pipe.mjs +64 -0
- package/esm2022/theme/theme.service.mjs +55 -0
- package/esm2022/time-picker/component.mjs +181 -0
- package/esm2022/time-picker/panel/panel.component.mjs +240 -0
- package/esm2022/time-picker/time-picker.module.mjs +56 -0
- package/esm2022/tooltip/base-tooltip.mjs +329 -0
- package/esm2022/tooltip/tooltip-active.directive.mjs +51 -0
- package/esm2022/tooltip/tooltip-copy.directive.mjs +87 -0
- package/esm2022/tooltip/tooltip-intl.mjs +21 -0
- package/esm2022/tooltip/tooltip.component.mjs +120 -0
- package/esm2022/tooltip/tooltip.directive.mjs +44 -0
- package/esm2022/tooltip/tooltip.module.mjs +32 -0
- package/{esm2020 → esm2022}/tree-select/tree-node-placeholder.component.mjs +4 -4
- package/esm2022/tree-select/tree-select.component.mjs +350 -0
- package/esm2022/tree-select/tree-select.module.mjs +34 -0
- package/esm2022/types.mjs +8 -0
- package/esm2022/utils/bem.mjs +44 -0
- package/esm2022/utils/coercion.mjs +13 -0
- package/{fesm2020 → fesm2022}/alauda-ui.mjs +2818 -2871
- package/fesm2022/alauda-ui.mjs.map +1 -0
- package/form/common-form.d.ts +1 -8
- package/form/form-item/form-item.component.d.ts +1 -1
- package/form/form.directive.d.ts +1 -1
- package/form/form.types.d.ts +2 -2
- package/form/helper-directives.d.ts +5 -5
- package/i18n/i18n.pipe.d.ts +1 -1
- package/i18n/i18n.type.d.ts +1 -1
- package/icon/icon.component.d.ts +1 -1
- package/inline-alert/helper-directives.d.ts +1 -1
- package/inline-alert/inline-alert.component.d.ts +1 -1
- package/inline-alert/inline-alert.types.d.ts +1 -1
- package/input/autosize.directive.d.ts +1 -4
- package/input/helper-directives.d.ts +4 -4
- package/input/input-group/input-group.component.d.ts +1 -1
- package/input/input.component.d.ts +1 -4
- package/input/number-input/number-input.component.d.ts +1 -1
- package/input/search/search.component.d.ts +1 -1
- package/input/tags-input/tags-input.component.d.ts +3 -3
- package/message/message-wrapper.component.d.ts +1 -1
- package/message/message.component.d.ts +1 -1
- package/message/message.config.d.ts +0 -20
- package/notification/notification-wrapper.component.d.ts +1 -1
- package/notification/notification.component.d.ts +1 -5
- package/notification/notification.config.d.ts +1 -1
- package/package.json +14 -20
- package/paginator/paginator-intl.d.ts +0 -9
- package/paginator/paginator.component.d.ts +1 -15
- package/radio/base-radio.d.ts +1 -1
- package/radio/radio-button/radio-button.component.d.ts +1 -1
- package/radio/radio-group/radio-group.component.d.ts +1 -4
- package/radio/radio.component.d.ts +1 -1
- package/radio/radio.types.d.ts +1 -1
- package/scrolling/fixed-size-table-virtual-scroll.directive.d.ts +1 -1
- package/scrolling/fixed-size-virtual-scroll.directive.d.ts +1 -1
- package/scrolling/virtual-for-of.directive.d.ts +1 -1
- package/scrolling/virtual-scroll-viewport.component.d.ts +1 -1
- package/select/base-select.d.ts +1 -4
- package/select/helper-directives.d.ts +2 -2
- package/select/multi-select/multi-select.component.d.ts +1 -1
- package/select/option/option.component.d.ts +1 -1
- package/select/option-group/option-group.component.d.ts +1 -1
- package/select/option-placeholder.component.d.ts +1 -1
- package/select/select.component.d.ts +1 -1
- package/select/select.types.d.ts +3 -3
- package/select/validators.d.ts +1 -1
- package/shared/click-outside.directive.d.ts +1 -1
- package/sort/sort-errors.d.ts +0 -4
- package/sort/sort-header.component.d.ts +1 -1
- package/sort/sort.directive.d.ts +1 -1
- package/sort/sort.types.d.ts +2 -2
- package/status-bar/status-bar.component.d.ts +1 -1
- package/status-bar/status-bar.types.d.ts +2 -2
- package/steps/steps.component.d.ts +1 -4
- package/steps/types.d.ts +3 -6
- package/switch/switch.component.d.ts +1 -1
- package/table/table-cell-def.directive.d.ts +1 -5
- package/table/table-cell.component.d.ts +2 -2
- package/table/table-cell.directive.d.ts +1 -2
- package/table/table-column-def.directive.d.ts +1 -5
- package/table/table-header-cell-def.directive.d.ts +1 -5
- package/table/table-header-cell.directive.d.ts +1 -2
- package/table/table-header-row-def.directive.d.ts +1 -5
- package/table/table-header-row.component.d.ts +1 -2
- package/table/table-placeholder.directive.d.ts +2 -2
- package/table/table-row-def.directive.d.ts +1 -6
- package/table/table-row.component.d.ts +1 -2
- package/table/table-scroll.directive.d.ts +2 -2
- package/table/table.component.d.ts +1 -1
- package/table-of-contents/toc-container.directive.d.ts +1 -1
- package/table-of-contents/toc-content.directive.d.ts +1 -1
- package/table-of-contents/toc-link.directive.d.ts +1 -1
- package/tabs/tab-body.component.d.ts +7 -23
- package/tabs/tab-context.service.d.ts +0 -3
- package/tabs/tab-group.component.d.ts +1 -29
- package/tabs/tab-header-active-indicator.component.d.ts +1 -10
- package/tabs/tab-header.component.d.ts +2 -85
- package/tabs/tab.component.d.ts +1 -19
- package/tabs/tabs.types.d.ts +2 -5
- package/tag/check-tag/check-tag.component.d.ts +1 -1
- package/tag/tag.component.d.ts +1 -1
- package/tag/tag.types.d.ts +1 -1
- package/theme/style.css +5 -1
- package/theme/theme.pipe.d.ts +4 -4
- package/theme/theme.types.d.ts +3 -3
- package/time-picker/component.d.ts +1 -1
- package/time-picker/panel/panel.component.d.ts +1 -1
- package/time-picker/time-picker.type.d.ts +1 -1
- package/tooltip/base-tooltip.d.ts +1 -1
- package/tooltip/tooltip-active.directive.d.ts +1 -1
- package/tooltip/tooltip-copy.directive.d.ts +1 -1
- package/tooltip/tooltip-intl.d.ts +0 -4
- package/tooltip/tooltip.component.d.ts +1 -1
- package/tooltip/tooltip.directive.d.ts +1 -1
- package/tree-select/tree-node-placeholder.component.d.ts +1 -1
- package/tree-select/tree-select.component.d.ts +2 -2
- package/tree-select/tree-select.types.d.ts +1 -1
- package/types.d.ts +2 -5
- package/utils/operators.d.ts +1 -1
- package/.changeset/README.md +0 -8
- package/alauda-ui.d.ts +0 -5
- package/esm2020/accordion/accordion-item/accordion-item.component.mjs +0 -73
- package/esm2020/accordion/accordion.component.mjs +0 -27
- package/esm2020/accordion/accordion.module.mjs +0 -39
- package/esm2020/alauda-ui.mjs +0 -5
- package/esm2020/anchor/anchor.component.mjs +0 -138
- package/esm2020/anchor/anchor.directive.mjs +0 -182
- package/esm2020/anchor/anchor.module.mjs +0 -36
- package/esm2020/autocomplete/autocomplete.component.mjs +0 -64
- package/esm2020/autocomplete/autocomplete.directive.mjs +0 -278
- package/esm2020/autocomplete/autocomplete.module.mjs +0 -53
- package/esm2020/autocomplete/suggestion/suggestion.component.mjs +0 -79
- package/esm2020/autocomplete/suggestion-group/suggestion-group.component.mjs +0 -23
- package/esm2020/back-top/back-top.component.mjs +0 -67
- package/esm2020/back-top/back-top.module.mjs +0 -19
- package/esm2020/breadcrumb/breadcrumb-item.component.mjs +0 -32
- package/esm2020/breadcrumb/breadcrumb.component.mjs +0 -57
- package/esm2020/breadcrumb/breadcrumb.module.mjs +0 -20
- package/esm2020/button/button.component.mjs +0 -122
- package/esm2020/button/button.module.mjs +0 -20
- package/esm2020/button/button.types.mjs +0 -22
- package/esm2020/card/card.component.mjs +0 -16
- package/esm2020/card/card.module.mjs +0 -40
- package/esm2020/card/helper-directives.mjs +0 -50
- package/esm2020/checkbox/checkbox-group/checkbox-group.component.mjs +0 -61
- package/esm2020/checkbox/checkbox.component.mjs +0 -112
- package/esm2020/checkbox/checkbox.module.mjs +0 -20
- package/esm2020/color-picker/color-picker.component.mjs +0 -28
- package/esm2020/color-picker/color-picker.module.mjs +0 -19
- package/esm2020/date-picker/calendar/constant.mjs +0 -32
- package/esm2020/date-picker/calendar/date-picker-panel/component.mjs +0 -128
- package/esm2020/date-picker/calendar/footer/component.mjs +0 -29
- package/esm2020/date-picker/calendar/header/component.mjs +0 -103
- package/esm2020/date-picker/calendar/panel/picker-panel.mjs +0 -155
- package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +0 -209
- package/esm2020/date-picker/calendar/util.mjs +0 -146
- package/esm2020/date-picker/date-picker/date-picker.component.mjs +0 -110
- package/esm2020/date-picker/date-picker.module.mjs +0 -84
- package/esm2020/date-picker/range-picker/range-picker.component.mjs +0 -86
- package/esm2020/date-picker/trigger/trigger.component.mjs +0 -69
- package/esm2020/dialog/confirm-dialog/confirm-dialog-config.mjs +0 -12
- package/esm2020/dialog/confirm-dialog/confirm-dialog.component.mjs +0 -85
- package/esm2020/dialog/dialog-config.mjs +0 -15
- package/esm2020/dialog/dialog-content/dialog-close.directive.mjs +0 -38
- package/esm2020/dialog/dialog-content/dialog-content.component.mjs +0 -20
- package/esm2020/dialog/dialog-content/dialog-footer.component.mjs +0 -15
- package/esm2020/dialog/dialog-content/dialog-header.component.mjs +0 -39
- package/esm2020/dialog/dialog-ref.mjs +0 -48
- package/esm2020/dialog/dialog.component.mjs +0 -148
- package/esm2020/dialog/dialog.module.mjs +0 -68
- package/esm2020/dialog/dialog.service.mjs +0 -121
- package/esm2020/drawer/component/drawer.component.mjs +0 -232
- package/esm2020/drawer/component/helper-directives.mjs +0 -37
- package/esm2020/drawer/drawer.module.mjs +0 -37
- package/esm2020/drawer/drawer.service.mjs +0 -44
- package/esm2020/dropdown/dropdown-active.directive.mjs +0 -21
- package/esm2020/dropdown/dropdown-button/dropdown-button.component.mjs +0 -57
- package/esm2020/dropdown/dropdown.directive.mjs +0 -81
- package/esm2020/dropdown/dropdown.module.mjs +0 -65
- package/esm2020/dropdown/menu/menu-content.directive.mjs +0 -51
- package/esm2020/dropdown/menu/menu.component.mjs +0 -26
- package/esm2020/dropdown/menu-item/menu-item.component.mjs +0 -37
- package/esm2020/dropdown/submenu/submenu.component.mjs +0 -40
- package/esm2020/form/common-form.mjs +0 -91
- package/esm2020/form/form-item/form-item.component.mjs +0 -108
- package/esm2020/form/form.directive.mjs +0 -69
- package/esm2020/form/form.module.mjs +0 -48
- package/esm2020/form/helper-directives.mjs +0 -80
- package/esm2020/i18n/i18n.pipe.mjs +0 -20
- package/esm2020/i18n/i18n.service.mjs +0 -43
- package/esm2020/icon/icon-register.service.mjs +0 -74
- package/esm2020/icon/icon.component.mjs +0 -65
- package/esm2020/icon/icon.module.mjs +0 -21
- package/esm2020/inline-alert/inline-alert.component.mjs +0 -53
- package/esm2020/inline-alert/inline-alert.module.mjs +0 -20
- package/esm2020/input/autosize.directive.mjs +0 -59
- package/esm2020/input/helper-directives.mjs +0 -43
- package/esm2020/input/input-group/input-group.component.mjs +0 -39
- package/esm2020/input/input.component.mjs +0 -61
- package/esm2020/input/input.module.mjs +0 -87
- package/esm2020/input/number-input/number-input.component.mjs +0 -112
- package/esm2020/input/search/search.component.mjs +0 -88
- package/esm2020/input/tags-input/tags-input.component.mjs +0 -260
- package/esm2020/message/base-message.mjs +0 -90
- package/esm2020/message/message-wrapper.component.mjs +0 -14
- package/esm2020/message/message.component.mjs +0 -70
- package/esm2020/message/message.config.mjs +0 -21
- package/esm2020/message/message.module.mjs +0 -23
- package/esm2020/notification/notification-wrapper.component.mjs +0 -16
- package/esm2020/notification/notification.component.mjs +0 -107
- package/esm2020/notification/notification.module.mjs +0 -24
- package/esm2020/paginator/paginator-intl.mjs +0 -37
- package/esm2020/paginator/paginator.component.mjs +0 -125
- package/esm2020/paginator/paginator.module.mjs +0 -24
- package/esm2020/radio/base-radio.mjs +0 -67
- package/esm2020/radio/radio-button/radio-button.component.mjs +0 -42
- package/esm2020/radio/radio-group/radio-group.component.mjs +0 -76
- package/esm2020/radio/radio.component.mjs +0 -24
- package/esm2020/radio/radio.module.mjs +0 -21
- package/esm2020/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +0 -83
- package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +0 -121
- package/esm2020/scrolling/fixed-size-virtual-scroll.directive.mjs +0 -28
- package/esm2020/scrolling/virtual-scroll-viewport.component.mjs +0 -26
- package/esm2020/select/base-select.mjs +0 -337
- package/esm2020/select/multi-select/multi-select.component.mjs +0 -313
- package/esm2020/select/option/option.component.mjs +0 -112
- package/esm2020/select/option-group/option-group.component.mjs +0 -23
- package/esm2020/select/select.component.mjs +0 -108
- package/esm2020/select/select.module.mjs +0 -80
- package/esm2020/select/validators.mjs +0 -79
- package/esm2020/shared/click-outside.directive.mjs +0 -28
- package/esm2020/sort/sort-errors.mjs +0 -17
- package/esm2020/sort/sort-header.component.mjs +0 -72
- package/esm2020/sort/sort.directive.mjs +0 -75
- package/esm2020/sort/sort.module.mjs +0 -19
- package/esm2020/status-bar/status-bar.component.mjs +0 -29
- package/esm2020/status-bar/status-bar.module.mjs +0 -19
- package/esm2020/steps/steps.component.mjs +0 -184
- package/esm2020/steps/steps.module.mjs +0 -19
- package/esm2020/switch/switch.component.mjs +0 -46
- package/esm2020/switch/switch.module.mjs +0 -18
- package/esm2020/table/table-cell-def.directive.mjs +0 -29
- package/esm2020/table/table-cell.component.mjs +0 -121
- package/esm2020/table/table-cell.directive.mjs +0 -31
- package/esm2020/table/table-column-def.directive.mjs +0 -37
- package/esm2020/table/table-header-cell-def.directive.mjs +0 -29
- package/esm2020/table/table-header-cell.directive.mjs +0 -27
- package/esm2020/table/table-header-row-def.directive.mjs +0 -39
- package/esm2020/table/table-header-row.component.mjs +0 -25
- package/esm2020/table/table-placeholder.directive.mjs +0 -30
- package/esm2020/table/table-row-def.directive.mjs +0 -42
- package/esm2020/table/table-row.component.mjs +0 -43
- package/esm2020/table/table-scroll.directive.mjs +0 -134
- package/esm2020/table/table.component.mjs +0 -79
- package/esm2020/table/table.module.mjs +0 -96
- package/esm2020/table-of-contents/table-of-contents.module.mjs +0 -20
- package/esm2020/table-of-contents/toc-container.directive.mjs +0 -109
- package/esm2020/table-of-contents/toc-content.directive.mjs +0 -35
- package/esm2020/table-of-contents/toc-link.directive.mjs +0 -44
- package/esm2020/tabs/tab-body.component.mjs +0 -165
- package/esm2020/tabs/tab-context.service.mjs +0 -31
- package/esm2020/tabs/tab-group.component.mjs +0 -291
- package/esm2020/tabs/tab-header-active-indicator.component.mjs +0 -53
- package/esm2020/tabs/tab-header.component.mjs +0 -367
- package/esm2020/tabs/tab.component.mjs +0 -85
- package/esm2020/tabs/tabs.module.mjs +0 -88
- package/esm2020/tabs/tabs.types.mjs +0 -13
- package/esm2020/tag/check-tag/check-tag.component.mjs +0 -33
- package/esm2020/tag/tag.component.mjs +0 -66
- package/esm2020/tag/tag.module.mjs +0 -20
- package/esm2020/theme/theme.module.mjs +0 -18
- package/esm2020/theme/theme.pipe.mjs +0 -69
- package/esm2020/theme/theme.service.mjs +0 -52
- package/esm2020/time-picker/component.mjs +0 -179
- package/esm2020/time-picker/panel/panel.component.mjs +0 -230
- package/esm2020/time-picker/time-picker.module.mjs +0 -58
- package/esm2020/tooltip/base-tooltip.mjs +0 -322
- package/esm2020/tooltip/tooltip-active.directive.mjs +0 -49
- package/esm2020/tooltip/tooltip-copy.directive.mjs +0 -82
- package/esm2020/tooltip/tooltip-intl.mjs +0 -29
- package/esm2020/tooltip/tooltip.component.mjs +0 -107
- package/esm2020/tooltip/tooltip.directive.mjs +0 -47
- package/esm2020/tooltip/tooltip.module.mjs +0 -33
- package/esm2020/tree-select/tree-select.component.mjs +0 -340
- package/esm2020/tree-select/tree-select.module.mjs +0 -34
- package/esm2020/types.mjs +0 -11
- package/esm2020/utils/bem.mjs +0 -44
- package/esm2020/utils/coercion.mjs +0 -17
- package/fesm2015/alauda-ui.mjs +0 -12051
- package/fesm2015/alauda-ui.mjs.map +0 -1
- package/fesm2020/alauda-ui.mjs.map +0 -1
- package/src/accordion/README.md +0 -13
- package/src/anchor/README.md +0 -23
- package/src/dropdown/README.md +0 -57
- package/src/form/README.md +0 -32
- package/src/icon/README.md +0 -28
- package/src/inline-alert/README.md +0 -16
- package/src/input/number-input/README.md +0 -16
- package/src/select/README.md +0 -57
- package/src/sort/README.md +0 -13
- package/src/table/README.md +0 -8
- package/src/table-of-contents/README.md +0 -94
- package/src/tag/README.md +0 -32
- package/src/tree-select/README.md +0 -34
- /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/anchor/index.mjs +0 -0
- /package/{esm2020 → esm2022}/anchor/types.mjs +0 -0
- /package/{esm2020 → esm2022}/anchor/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/autocomplete/autocomplete.types.mjs +0 -0
- /package/{esm2020 → esm2022}/autocomplete/index.mjs +0 -0
- /package/{esm2020 → esm2022}/back-top/index.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/index.mjs +0 -0
- /package/{esm2020 → esm2022}/checkbox/index.mjs +0 -0
- /package/{esm2020 → esm2022}/color-picker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/animation/animation-consts.mjs +0 -0
- /package/{esm2020 → esm2022}/date-picker/date-picker.type.mjs +0 -0
- /package/{esm2020 → esm2022}/date-picker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dialog/dialog.types.mjs +0 -0
- /package/{esm2020 → esm2022}/dialog/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dialog/utils/errors.mjs +0 -0
- /package/{esm2020 → esm2022}/dialog/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/drawer/component/drawer-ref.mjs +0 -0
- /package/{esm2020 → esm2022}/drawer/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/dropdown.types.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form/form.types.mjs +0 -0
- /package/{esm2020 → esm2022}/form/index.mjs +0 -0
- /package/{esm2020 → esm2022}/i18n/i18n.type.mjs +0 -0
- /package/{esm2020 → esm2022}/i18n/index.mjs +0 -0
- /package/{esm2020 → esm2022}/i18n/language/en.mjs +0 -0
- /package/{esm2020 → esm2022}/i18n/language/zh.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/icons.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/inline-alert/index.mjs +0 -0
- /package/{esm2020 → esm2022}/inline-alert/inline-alert.types.mjs +0 -0
- /package/{esm2020 → esm2022}/input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input/tags-input/with-max-row-count.mjs +0 -0
- /package/{esm2020 → esm2022}/input/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/message/index.mjs +0 -0
- /package/{esm2020 → esm2022}/message/message-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/notification/index.mjs +0 -0
- /package/{esm2020 → esm2022}/notification/notification.config.mjs +0 -0
- /package/{esm2020 → esm2022}/paginator/index.mjs +0 -0
- /package/{esm2020 → esm2022}/radio/index.mjs +0 -0
- /package/{esm2020 → esm2022}/radio/radio.types.mjs +0 -0
- /package/{esm2020 → esm2022}/scrolling/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/select.types.mjs +0 -0
- /package/{esm2020 → esm2022}/sort/index.mjs +0 -0
- /package/{esm2020 → esm2022}/sort/sort.types.mjs +0 -0
- /package/{esm2020 → esm2022}/status-bar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/status-bar/status-bar.types.mjs +0 -0
- /package/{esm2020 → esm2022}/steps/index.mjs +0 -0
- /package/{esm2020 → esm2022}/steps/types.mjs +0 -0
- /package/{esm2020 → esm2022}/switch/index.mjs +0 -0
- /package/{esm2020 → esm2022}/table/index.mjs +0 -0
- /package/{esm2020 → esm2022}/table-of-contents/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tag/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tag/tag.types.mjs +0 -0
- /package/{esm2020 → esm2022}/theme/index.mjs +0 -0
- /package/{esm2020 → esm2022}/theme/theme.types.mjs +0 -0
- /package/{esm2020 → esm2022}/theme/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/time-picker/constant.mjs +0 -0
- /package/{esm2020 → esm2022}/time-picker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/time-picker/time-picker.type.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/tooltip.types.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tree-select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tree-select/tree-select.types.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/animations.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/async.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/fn.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/observe-dom.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/operators.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/scroll-into-view.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/watch-content-exist.mjs +0 -0
package/src/accordion/README.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Accordion (<aui-accordion>)
|
|
2
|
-
|
|
3
|
-
## Attributes
|
|
4
|
-
|
|
5
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
6
|
-
| ----- | -------------- | ------- | ------ |
|
|
7
|
-
| multi | 可同时展开多个 | boolean | false |
|
|
8
|
-
|
|
9
|
-
## Events
|
|
10
|
-
|
|
11
|
-
| 事件名称 | 说明 | 回调参数 |
|
|
12
|
-
| -------------- | ----------------------------------- | ------------------------------------- |
|
|
13
|
-
| expandedChange | auiAccordionItemHeader 被点击时触发 | boolean(当前 toggle 是否被打开的状态) |
|
package/src/anchor/README.md
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# Anchor Module
|
|
2
|
-
|
|
3
|
-
## AnchorDirective(`[auiAnchor]`)
|
|
4
|
-
|
|
5
|
-
### AnchorDirective Inputs
|
|
6
|
-
|
|
7
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
8
|
-
| ------------- | ---------------------------------------------------------------------------------------------------------- | ----------------------- | ----------- |
|
|
9
|
-
| auiAnchor | 滚动容器, 不传值默认取 `cdkScrollable` 或当前元素(如果可滚动)或 `window` | `HTMLElement` | `undefined` |
|
|
10
|
-
| adaptPosition | 是否自动调整当前元素 `paddingRight` 以保证与自动生成的锚点内容重叠 | `boolean` | `true` |
|
|
11
|
-
| padding | 自动调整 `paddingRight` 时自动保持与自动生成的锚点内容的距离 | `number` | `20` |
|
|
12
|
-
| minTop | 当滚动页面时自动生成的锚点内容距离页面顶部最小距离,默认取当前 `.aui-page__content` 元素的 `paddingTop` 值 | `number` | `20` |
|
|
13
|
-
| injectId | 是否自动在 `auiAnchorLabel` 元素上注入 id,将自动生成 `#` 可记录锚点 | `window === window.top` |
|
|
14
|
-
|
|
15
|
-
## AnchorLabelDirective(`[auiAnchorLabel]`)
|
|
16
|
-
|
|
17
|
-
### AnchorLabelDirective Inputs
|
|
18
|
-
|
|
19
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
20
|
-
| --------------------- | ------------------------------------------------------------- | ----------------------- | ----------- |
|
|
21
|
-
| auiAnchorLabel | 自动生成锚点时对应文本内容,默认取当前元素文本内容 | `string \| TemplateRef` | `undefined` |
|
|
22
|
-
| auiAnchorLabelContext | 使用 `TemplateRef` 类型 `auiAnchorLabel` 时的上下文 | `unknown` | `undefined` |
|
|
23
|
-
| level | 锚点层级,不写这个 `input` 默认是 `0`,写了不填内容默认是 `1` | `string \| TemplateRef` | `0` |
|
package/src/dropdown/README.md
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
# Dropdown Module
|
|
2
|
-
|
|
3
|
-
## Dropdown
|
|
4
|
-
|
|
5
|
-
### Dropdown Attributes
|
|
6
|
-
|
|
7
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
8
|
-
| ------------------- | ---------------- | ------------- | ------------ |
|
|
9
|
-
| auiDropdown | menu 模板 | MenuComponent | - |
|
|
10
|
-
| auiDropdownContext | template context | any | - |
|
|
11
|
-
| auiDropdownPosition | menu 弹出位置 | string | 'bottom end' |
|
|
12
|
-
| auiDropdownDisabled | 禁用 dropdown | boolean | false |
|
|
13
|
-
|
|
14
|
-
## Menu
|
|
15
|
-
|
|
16
|
-
### Menu Attributes
|
|
17
|
-
|
|
18
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
19
|
-
| ---- | --------- | ------------- | -------------------- |
|
|
20
|
-
| size | menu 大小 | ComponentSize | ComponentSize.Medium |
|
|
21
|
-
|
|
22
|
-
## MenuItem
|
|
23
|
-
|
|
24
|
-
### MenuItem Attributes
|
|
25
|
-
|
|
26
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
27
|
-
| -------- | -------------------- | ------- | ------ |
|
|
28
|
-
| disabled | 是否禁用 | boolean | false |
|
|
29
|
-
| divide | 是否在顶部显示分割线 | boolean | false |
|
|
30
|
-
|
|
31
|
-
## Submenu
|
|
32
|
-
|
|
33
|
-
### Submenu Attributes
|
|
34
|
-
|
|
35
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
36
|
-
| -------- | -------------------- | -------------- | -------------------- |
|
|
37
|
-
| disabled | 是否禁用 | boolean | false |
|
|
38
|
-
| trigger | 触发方式 | TooltipTrigger | TooltipTrigger.Hover |
|
|
39
|
-
| divide | 是否在顶部显示分割线 | boolean | false |
|
|
40
|
-
| size | menu 大小 | ComponentSize | ComponentSize.Medium |
|
|
41
|
-
|
|
42
|
-
## DropdownButton
|
|
43
|
-
|
|
44
|
-
### DropdownButton Attributes
|
|
45
|
-
|
|
46
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
47
|
-
| -------- | ------------------------ | ------------- | -------------------- |
|
|
48
|
-
| type | 按钮类型 | ButtonType | ButtonType.Default |
|
|
49
|
-
| size | 组件大小 | ComponentSize | ComponentSize.Medium |
|
|
50
|
-
| loading | 外部按钮是否显示 loading | boolean | false |
|
|
51
|
-
| disabled | 是否禁用外部按钮 | boolean | false |
|
|
52
|
-
|
|
53
|
-
### Events
|
|
54
|
-
|
|
55
|
-
| 事件名称 | 说明 | 回调参数 |
|
|
56
|
-
| ----------- | -------------- | -------- |
|
|
57
|
-
| buttonClick | 外部按钮被点击 | Event |
|
package/src/form/README.md
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Form Module
|
|
2
|
-
|
|
3
|
-
## FormItem
|
|
4
|
-
|
|
5
|
-
### FormItem Attributes
|
|
6
|
-
|
|
7
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
8
|
-
| ------------- | ------------------- | -------------- | ------ |
|
|
9
|
-
| labelWidth | 标签宽度 | string | auto |
|
|
10
|
-
| labelPosition | 标签位置 | left,right,top | right |
|
|
11
|
-
| emptyAddon | 添加 addon 占位元素 | boolean | false |
|
|
12
|
-
|
|
13
|
-
### FormItem Contents
|
|
14
|
-
|
|
15
|
-
| 选择器 | 说明 |
|
|
16
|
-
| ------------------------ | -------- |
|
|
17
|
-
| `label[rcFormItemLabel]` | 标签 |
|
|
18
|
-
| `[rcFormItemControl]` | 表单元素 |
|
|
19
|
-
| `[rcFormItemHint]` | 信息提示 |
|
|
20
|
-
| `[rcFormItemError]` | 错误提示 |
|
|
21
|
-
| `[rcFormItemAddon]` | 插件 |
|
|
22
|
-
|
|
23
|
-
## Form
|
|
24
|
-
|
|
25
|
-
### Form Attributes
|
|
26
|
-
|
|
27
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
28
|
-
| -------------------- | ------------------- | -------------- | ------ |
|
|
29
|
-
| auiFormLabelWidth | 标签宽度 | string | auto |
|
|
30
|
-
| auiFormLabelPosition | 标签位置 | left,right,top | right |
|
|
31
|
-
| auiFormEmptyAddon | 添加 addon 占位元素 | boolean | false |
|
|
32
|
-
| auiFormInline | 单行显示 | boolean | false |
|
package/src/icon/README.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# Icon
|
|
2
|
-
|
|
3
|
-
## Attributes
|
|
4
|
-
|
|
5
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
6
|
-
| ------ | ----------------------------------------- | -------------- | ------ |
|
|
7
|
-
| icon | icon 名称,用 `:` 将 namespace 和 id 隔开 | string | none |
|
|
8
|
-
| link | 外链 svg 地址 | string | - |
|
|
9
|
-
| margin | 在左、右方添加边距 | 'left'/'right' | - |
|
|
10
|
-
|
|
11
|
-
## IconRegistryService
|
|
12
|
-
|
|
13
|
-
| 名称 | 参数 | 说明 |
|
|
14
|
-
| -------------------------- | ----------- | --------------------------------------------------------------------- |
|
|
15
|
-
| registrySvgSymbolsByUrl | url: string | 异步加载 svg 文件,要注意预防脚本注入攻击,确保 url 和 响应是可信任的 |
|
|
16
|
-
| registrySvgSymbolsByString | str: string | 将 svg 字符串添加到文档,确保字符串是可信任的 |
|
|
17
|
-
|
|
18
|
-
## Read More
|
|
19
|
-
|
|
20
|
-
主要考虑了三种实现方式:`font icon`,`inline svg`,`svg symbols`。
|
|
21
|
-
|
|
22
|
-
- `font icon`:目前使用最广泛最成熟的方案,但因为[一些缺陷](https://css-tricks.com/icon-fonts-vs-svg/)业内开始不再推崇这种方式。针对 `aui-icon` 的使用场景主要缺陷是可能出现的渲染问题。
|
|
23
|
-
- `inline svg`:实现上比较麻烦,DOM 操作太多。
|
|
24
|
-
- `svg symbols`:具有 `inline svg` 的所有优点,使用简单优雅。缺陷是浏览器兼容性,IE 所有不支持外链 svg,所以需要将 svg 插入到文档中。
|
|
25
|
-
|
|
26
|
-
## 使用自定义图标
|
|
27
|
-
|
|
28
|
-
通过静态文件目录、webpack 打包等方式将 symbol svg 文件发布到线上,并在使用图标前(通常是 app 初始化时)通过 `IconRegistryService` 服务的 `registryByUrl()` 方法注册图标文件,参数为图标对应的 url,服务将自动加载图标并将其添加到文档中。之后在使用时将图标 ID 以 `{namespace}:{name}` 的格式传给 icon 组件即可。
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Inline Alert
|
|
2
|
-
|
|
3
|
-
## Attributes
|
|
4
|
-
|
|
5
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
6
|
-
| -------- | ---------- | --------------- | -------------------- |
|
|
7
|
-
| title | 标题 | string | - |
|
|
8
|
-
| content | 内容 | string | - |
|
|
9
|
-
| type | 类型 | InlineAlertType | InlineAlertType.Info |
|
|
10
|
-
| closable | 是否可关闭 | boolean | false |
|
|
11
|
-
|
|
12
|
-
## Events
|
|
13
|
-
|
|
14
|
-
| 事件名称 | 说明 | 回调参数 |
|
|
15
|
-
| -------- | ------------------------ | -------- |
|
|
16
|
-
| close | 关闭 Inline Alert 时触发 | - |
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Number-input (<aui-number-input>)
|
|
2
|
-
|
|
3
|
-
## Attributes
|
|
4
|
-
|
|
5
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
6
|
-
| ---------------- | ---------------------- | ------------- | ----------------------- |
|
|
7
|
-
| size | 尺寸 | ComponentSize | ComponentSize.Medium |
|
|
8
|
-
| disabled | 禁用 | boolean | false |
|
|
9
|
-
| min | 最小值 | number | - |
|
|
10
|
-
| max | 最大值 | number | Number.MAX_SAFE_INTEGER |
|
|
11
|
-
| step | 计数器步长 | number | 1 |
|
|
12
|
-
| precision | 数值精度 | number | 0 |
|
|
13
|
-
| controls | 是否使用控制按钮 | boolean | true |
|
|
14
|
-
| placeholder | 占位符 | string | '' |
|
|
15
|
-
| controlsPosition | 控制按钮位置(暂未实现) | string | - |
|
|
16
|
-
| clearable | 是否可以清空已输入的值 | boolean | false |
|
package/src/select/README.md
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
## Select
|
|
2
|
-
|
|
3
|
-
### Select Attributes
|
|
4
|
-
|
|
5
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
6
|
-
| ----------- | -------------------------------------------- | ------------------ | ----------------------- |
|
|
7
|
-
| size | 尺寸 | ComponentSize | ComponentSize.Medium |
|
|
8
|
-
| placeholder | 占位符 | string | - |
|
|
9
|
-
| disabled | 禁用 | boolean | false |
|
|
10
|
-
| loading | 加载状态 | boolean | false |
|
|
11
|
-
| value | 选中值 | T | - |
|
|
12
|
-
| filterable | 是否可过滤选项 | boolean | false |
|
|
13
|
-
| filterFn | 过滤函数 | OptionFilterMethod | Array.property.includes |
|
|
14
|
-
| allowCreate | 是否允许创建新值,需要和 filterable 一起打开 | boolean | false |
|
|
15
|
-
| clearable | 是否可清空选项 | boolean | false |
|
|
16
|
-
| trackFn | 返回 value 唯一标识符 | TrackFn | val => val |
|
|
17
|
-
|
|
18
|
-
### Select Events
|
|
19
|
-
|
|
20
|
-
| 时间名称 | 说明 | 回调参数 |
|
|
21
|
-
| ------------ | ------------ | ------------- |
|
|
22
|
-
| valueChange | 选中值变化 | value: T |
|
|
23
|
-
| filterChange | input 值变化 | value: string |
|
|
24
|
-
|
|
25
|
-
## MultiSelect
|
|
26
|
-
|
|
27
|
-
### MultiSelect Attributes
|
|
28
|
-
|
|
29
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
30
|
-
| ----------- | -------------------------------------------- | -------------- | ----------------------- |
|
|
31
|
-
| size | 尺寸 | ComponentSize | ComponentSize.Medium |
|
|
32
|
-
| placeholder | 占位符 | string | - |
|
|
33
|
-
| disabled | 禁用 | boolean | false |
|
|
34
|
-
| loading | 加载状态 | boolean | false |
|
|
35
|
-
| value | 选中值 | T[] | [] |
|
|
36
|
-
| filterable | 是否可过滤选项 | boolean | false |
|
|
37
|
-
| filterFn | 过滤函数 | OptionFilterFn | Array.property.includes |
|
|
38
|
-
| allowCreate | 是否允许创建新值,需要和 filterable 一起打开 | boolean | false |
|
|
39
|
-
| clearable | 是否可清空选项 | boolean | false |
|
|
40
|
-
| trackFn | 返回 value 唯一标识符 | TrackFn | val => val |
|
|
41
|
-
|
|
42
|
-
### MultiSelect Events
|
|
43
|
-
|
|
44
|
-
| 事件名称 | 说明 | 回调参数 |
|
|
45
|
-
| ------------ | ------------ | ------------- |
|
|
46
|
-
| valueChange | 选中值变化 | value: T |
|
|
47
|
-
| filterChange | input 值变化 | value: string |
|
|
48
|
-
|
|
49
|
-
## Option
|
|
50
|
-
|
|
51
|
-
### Option Attributes
|
|
52
|
-
|
|
53
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
54
|
-
| -------- | ------------------------ | ------- | ------ |
|
|
55
|
-
| label | 选中后 select 显示的文案 | string | - |
|
|
56
|
-
| value | 选中值 | T | - |
|
|
57
|
-
| disabled | 禁用 | boolean | false |
|
package/src/sort/README.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
### 设计
|
|
2
|
-
|
|
3
|
-
基于 angular/material 的 MatSort 及 MatSortHeader 原始代码修改,修改样式,移除 Alauda UI 不需要的功能,目的是保持组件尽可能简单,避免无关功能干扰开发,变更功能如下:
|
|
4
|
-
|
|
5
|
-
- sort disable 相关代码
|
|
6
|
-
- sort indicator 样式修改,并去除原有动画相关代码,原有动画仅适合箭头,Alauda UI 的设计并不适合添加动画
|
|
7
|
-
- 排序清除功能(asc -> desc -> no sort),Alauda UI 的设计并未考虑这块功能,考虑这块功能不是非常必要,而且会增加一个排序状态,操作稍显繁琐。
|
|
8
|
-
- 无障碍相关功能(后续结合实际情况考虑是否加入)
|
|
9
|
-
|
|
10
|
-
### 使用
|
|
11
|
-
|
|
12
|
-
- [material2 sort.md](https://github.com/angular/material2/blob/master/src/lib/sort/sort.md)
|
|
13
|
-
- [material2 document](https://material.angular.io/components/sort/overview)
|
package/src/table/README.md
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
## 设计
|
|
2
|
-
|
|
3
|
-
基于 angular/material 的 MatTable 修改,功能基本一致,仅移除 MatTableDataSource 相关代码`(MatTableDataSource和MatTable本身并无关系,而且功能并不适合基于服务端的排序及过滤,未来是否会抽取适合服务端的排序及过滤功能还需要考虑)`,样式按 Alauda UI 设计规范调整 。MatTable 相关组件基于 CdkTable 开发,未来 AuiTable 的功能变更会结合 CdkTable 来做。CdkTable 的[设计目标](https://docs.google.com/document/d/1ZyKhwrgqfTBAn7saTq2jPlep2_CwSw5DeoZ8UbaXrC0/preview)和 AuiTable 有很多共同点,可以作为一个后续功能迭代的基础。
|
|
4
|
-
|
|
5
|
-
## 使用
|
|
6
|
-
|
|
7
|
-
- [material2 table.md](https://github.com/angular/components/blob/master/src/cdk/table/table.md)
|
|
8
|
-
- [material2 document](https://material.angular.io/components/table/overview)
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
Features:
|
|
2
|
-
|
|
3
|
-
- Active link and content when content visible in scroll container.
|
|
4
|
-
- Smooth scroll to content when click link.
|
|
5
|
-
- Support programmable scroll to content.
|
|
6
|
-
- Support nested content.
|
|
7
|
-
|
|
8
|
-
Limit:
|
|
9
|
-
|
|
10
|
-
- container must scrollable.
|
|
11
|
-
- link active or fix position styles not included.
|
|
12
|
-
- if scroll to then end, scrollHeight - scrollTop === clientHeight, set last content active.
|
|
13
|
-
|
|
14
|
-
Simplest usage:
|
|
15
|
-
|
|
16
|
-
```html
|
|
17
|
-
<!-- links -->
|
|
18
|
-
<aside>
|
|
19
|
-
<a
|
|
20
|
-
auiTocLink="content1"
|
|
21
|
-
[for]="toc"
|
|
22
|
-
>content1</a
|
|
23
|
-
>
|
|
24
|
-
<a
|
|
25
|
-
auiTocLink="content2"
|
|
26
|
-
[for]="toc"
|
|
27
|
-
>content2</a
|
|
28
|
-
>
|
|
29
|
-
<a
|
|
30
|
-
auiTocLink="content3"
|
|
31
|
-
[for]="toc"
|
|
32
|
-
>content3</a
|
|
33
|
-
>
|
|
34
|
-
</aside>
|
|
35
|
-
<!-- scroll container -->
|
|
36
|
-
<article
|
|
37
|
-
auiTocContainer
|
|
38
|
-
#toc="auiTocContainer"
|
|
39
|
-
>
|
|
40
|
-
<section auiTocContent="content1">...</section>
|
|
41
|
-
<section auiTocContent="content2">...</section>
|
|
42
|
-
<section auiTocContent="content3">...</section>
|
|
43
|
-
</article>
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
Directives:
|
|
47
|
-
|
|
48
|
-
- `auiTocContainer`
|
|
49
|
-
|
|
50
|
-
```ts
|
|
51
|
-
@Output() activedChange: EventEmitter<string>;
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
emit when actived change, use this for self define links active.
|
|
55
|
-
|
|
56
|
-
```ts
|
|
57
|
-
scrollTo(content: string): void;
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
programmable scroll to content.
|
|
61
|
-
|
|
62
|
-
- `auiTocContent`
|
|
63
|
-
|
|
64
|
-
```ts
|
|
65
|
-
@Input('auiTocContent') auiTocContent: string;
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
set content name, must unique in same container.
|
|
69
|
-
|
|
70
|
-
```ts
|
|
71
|
-
@HostBinding('class.isActive') active: boolean;
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
you need define content `isActive` class for content styling when active.
|
|
75
|
-
|
|
76
|
-
- (Optional) `auiTocLink`
|
|
77
|
-
|
|
78
|
-
```ts
|
|
79
|
-
@Input() for: TocContainerDirective;
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
scroll container template reference variable
|
|
83
|
-
|
|
84
|
-
```ts
|
|
85
|
-
@Input('auiTocLink') auiTocLink: string;
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
link target content name.
|
|
89
|
-
|
|
90
|
-
```ts
|
|
91
|
-
@HostBinding('class.isActive') active: boolean;
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
you need define link `isActive` class for link styling when active.
|
package/src/tag/README.md
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
## Tag
|
|
2
|
-
|
|
3
|
-
### Tag Attributes
|
|
4
|
-
|
|
5
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
6
|
-
| --------- | ----------------------------------------------------------------- | ------------- | -------------------- |
|
|
7
|
-
| type | 主题 | TagType | TagType.Primary |
|
|
8
|
-
| size | 尺寸 | ComponentSize | ComponentSize.Medium |
|
|
9
|
-
| closeable | 是否可关闭 | boolean | false |
|
|
10
|
-
| solid | 是否实心 | boolean | false |
|
|
11
|
-
| color | 自定义颜色,可以 `,` 分隔两个色值,第一个值为主色,第二个为背景色 | string | - |
|
|
12
|
-
|
|
13
|
-
### Tag Events
|
|
14
|
-
|
|
15
|
-
| 事件名称 | 说明 | 回调参数 |
|
|
16
|
-
| -------- | --------------- | -------- |
|
|
17
|
-
| close | 关闭 tag 时触发 | - |
|
|
18
|
-
|
|
19
|
-
## CheckTag
|
|
20
|
-
|
|
21
|
-
### CheckTag Attributes
|
|
22
|
-
|
|
23
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
24
|
-
| ------- | -------- | ------------- | -------------------- |
|
|
25
|
-
| checked | 是否选中 | boolean | false |
|
|
26
|
-
| size | 尺寸 | ComponentSize | ComponentSize.medium |
|
|
27
|
-
|
|
28
|
-
### CheckTag Events
|
|
29
|
-
|
|
30
|
-
| 事件名称 | 说明 | 回调参数 |
|
|
31
|
-
| ------------- | --------------- | -------- |
|
|
32
|
-
| checkedChange | 点击 tag 时触发 | boolean |
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# TreeSelect Module
|
|
2
|
-
|
|
3
|
-
## TreeSelect
|
|
4
|
-
|
|
5
|
-
### TreeSelect Attributes
|
|
6
|
-
|
|
7
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
8
|
-
| ----------- | -------------- | ------------------ | ----------------------- |
|
|
9
|
-
| placeholder | 占位符 | string | - |
|
|
10
|
-
| disabled | 禁用 | boolean | false |
|
|
11
|
-
| loading | 加载状态 | boolean | false |
|
|
12
|
-
| value | 选中值 | any | - |
|
|
13
|
-
| filterable | 是否可过滤选项 | boolean | false |
|
|
14
|
-
| filterFn | 过滤函数 | OptionFilterMethod | Array.property.includes |
|
|
15
|
-
| clearable | 是否可清空选项 | boolean | false |
|
|
16
|
-
|
|
17
|
-
### TreeSelect Events
|
|
18
|
-
|
|
19
|
-
| 时间名称 | 说明 | 回调参数 |
|
|
20
|
-
| ------------ | ------------ | ------------- |
|
|
21
|
-
| valueChange | 选中值变化 | value: any |
|
|
22
|
-
| filterChange | input 值变化 | value: string |
|
|
23
|
-
|
|
24
|
-
## TreeNode
|
|
25
|
-
|
|
26
|
-
### TreeNode Attributes
|
|
27
|
-
|
|
28
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
29
|
-
| -------- | ------------------------ | ------- | ------ |
|
|
30
|
-
| label | 选中后 select 显示的文案 | string | - |
|
|
31
|
-
| value | 选中值 | any | - |
|
|
32
|
-
| disabled | 禁用 | boolean | false |
|
|
33
|
-
| expanded | 是否默认展开节点 | boolean | false |
|
|
34
|
-
| leafOnly | 只允许选择叶子节点 | boolean | false |
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|