@alauda/ui 6.5.10-beta.2 → 6.5.10-beta.3
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 +3 -3
- package/accordion/accordion.component.d.ts +1 -1
- package/alauda-ui.d.ts +5 -0
- 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 +10 -1
- package/card/card.component.d.ts +1 -1
- package/card/helper-directives.d.ts +6 -3
- 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/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/esm2020/alauda-ui.mjs +5 -0
- package/esm2020/anchor/anchor.component.mjs +138 -0
- package/esm2020/anchor/anchor.directive.mjs +182 -0
- package/esm2020/anchor/anchor.module.mjs +36 -0
- package/{esm2022 → esm2020}/autocomplete/autocomplete-placeholder.component.mjs +4 -4
- package/esm2020/autocomplete/autocomplete.component.mjs +64 -0
- package/esm2020/autocomplete/autocomplete.directive.mjs +278 -0
- package/esm2020/autocomplete/autocomplete.module.mjs +53 -0
- package/{esm2022 → esm2020}/autocomplete/helper-directives.mjs +4 -4
- package/esm2020/autocomplete/suggestion/suggestion.component.mjs +79 -0
- package/esm2020/autocomplete/suggestion-group/suggestion-group.component.mjs +23 -0
- package/esm2020/back-top/back-top.component.mjs +67 -0
- package/esm2020/back-top/back-top.module.mjs +19 -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/{esm2022 → esm2020}/button/button-group/button-group.component.mjs +4 -4
- package/esm2020/button/button.component.mjs +122 -0
- package/esm2020/button/button.module.mjs +20 -0
- package/esm2020/button/button.types.mjs +22 -0
- package/esm2020/card/card.component.mjs +16 -0
- package/esm2020/card/card.module.mjs +40 -0
- package/esm2020/card/helper-directives.mjs +50 -0
- package/{esm2022 → esm2020}/card/section.component.mjs +4 -4
- package/esm2020/checkbox/checkbox-group/checkbox-group.component.mjs +61 -0
- package/esm2020/checkbox/checkbox.component.mjs +112 -0
- package/esm2020/checkbox/checkbox.module.mjs +20 -0
- package/esm2020/color-picker/color-picker.component.mjs +28 -0
- package/esm2020/color-picker/color-picker.module.mjs +19 -0
- package/esm2020/date-picker/calendar/constant.mjs +32 -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 +103 -0
- package/esm2020/date-picker/calendar/panel/picker-panel.mjs +155 -0
- package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +209 -0
- package/esm2020/date-picker/calendar/util.mjs +146 -0
- package/esm2020/date-picker/date-picker/date-picker.component.mjs +110 -0
- package/esm2020/date-picker/date-picker.module.mjs +84 -0
- package/esm2020/date-picker/range-picker/range-picker.component.mjs +86 -0
- package/esm2020/date-picker/trigger/trigger.component.mjs +69 -0
- package/esm2020/dialog/confirm-dialog/confirm-dialog-config.mjs +12 -0
- package/esm2020/dialog/confirm-dialog/confirm-dialog.component.mjs +85 -0
- package/{esm2022 → esm2020}/dialog/dialog-animations.mjs +2 -1
- package/esm2020/dialog/dialog-config.mjs +15 -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/esm2020/dialog/dialog-ref.mjs +48 -0
- package/esm2020/dialog/dialog.component.mjs +148 -0
- package/esm2020/dialog/dialog.module.mjs +68 -0
- package/esm2020/dialog/dialog.service.mjs +121 -0
- package/esm2020/drawer/component/drawer.component.mjs +232 -0
- package/esm2020/drawer/component/helper-directives.mjs +37 -0
- package/esm2020/drawer/drawer.module.mjs +37 -0
- package/esm2020/drawer/drawer.service.mjs +44 -0
- package/esm2020/dropdown/dropdown-active.directive.mjs +21 -0
- package/esm2020/dropdown/dropdown-button/dropdown-button.component.mjs +57 -0
- package/esm2020/dropdown/dropdown.directive.mjs +81 -0
- package/esm2020/dropdown/dropdown.module.mjs +65 -0
- package/{esm2022 → esm2020}/dropdown/helper-directives.mjs +4 -4
- package/esm2020/dropdown/menu/menu-content.directive.mjs +51 -0
- package/esm2020/dropdown/menu/menu.component.mjs +26 -0
- package/{esm2022 → esm2020}/dropdown/menu-group/menu-group.component.mjs +4 -4
- package/esm2020/dropdown/menu-item/menu-item.component.mjs +37 -0
- package/esm2020/dropdown/submenu/submenu.component.mjs +40 -0
- package/esm2020/form/common-form.mjs +91 -0
- package/esm2020/form/form-item/form-item.component.mjs +108 -0
- package/esm2020/form/form.directive.mjs +69 -0
- package/esm2020/form/form.module.mjs +48 -0
- package/esm2020/form/helper-directives.mjs +80 -0
- package/{esm2022 → esm2020}/i18n/i18n.module.mjs +5 -5
- package/esm2020/i18n/i18n.pipe.mjs +20 -0
- package/esm2020/i18n/i18n.service.mjs +43 -0
- package/esm2020/icon/icon-register.service.mjs +74 -0
- package/esm2020/icon/icon.component.mjs +65 -0
- package/esm2020/icon/icon.module.mjs +21 -0
- package/{esm2022 → esm2020}/inline-alert/helper-directives.mjs +4 -4
- package/esm2020/inline-alert/inline-alert.component.mjs +53 -0
- package/esm2020/inline-alert/inline-alert.module.mjs +20 -0
- package/esm2020/input/autosize.directive.mjs +59 -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 +87 -0
- package/esm2020/input/number-input/number-input.component.mjs +112 -0
- package/esm2020/input/search/search.component.mjs +88 -0
- package/esm2020/input/tags-input/tags-input.component.mjs +260 -0
- package/esm2020/message/base-message.mjs +90 -0
- package/esm2020/message/message-wrapper.component.mjs +14 -0
- package/esm2020/message/message.component.mjs +70 -0
- package/esm2020/message/message.config.mjs +21 -0
- package/esm2020/message/message.module.mjs +23 -0
- package/{esm2022 → esm2020}/message/message.service.mjs +4 -4
- package/esm2020/notification/notification-wrapper.component.mjs +16 -0
- package/esm2020/notification/notification.component.mjs +107 -0
- package/esm2020/notification/notification.module.mjs +24 -0
- package/{esm2022 → esm2020}/notification/notification.service.mjs +4 -4
- package/esm2020/paginator/paginator-intl.mjs +37 -0
- package/esm2020/paginator/paginator.component.mjs +125 -0
- package/esm2020/paginator/paginator.module.mjs +24 -0
- package/esm2020/radio/base-radio.mjs +67 -0
- package/esm2020/radio/radio-button/radio-button.component.mjs +42 -0
- package/esm2020/radio/radio-group/radio-group.component.mjs +76 -0
- package/esm2020/radio/radio.component.mjs +24 -0
- package/esm2020/radio/radio.module.mjs +21 -0
- package/esm2020/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +83 -0
- package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +121 -0
- package/esm2020/scrolling/fixed-size-virtual-scroll.directive.mjs +28 -0
- package/{esm2022 → esm2020}/scrolling/scrolling.module.mjs +9 -9
- package/{esm2022 → esm2020}/scrolling/virtual-for-of.directive.mjs +4 -4
- package/esm2020/scrolling/virtual-scroll-viewport.component.mjs +26 -0
- package/esm2020/select/base-select.mjs +337 -0
- package/{esm2022 → esm2020}/select/helper-directives.mjs +7 -7
- package/esm2020/select/multi-select/multi-select.component.mjs +313 -0
- package/esm2020/select/option/option.component.mjs +112 -0
- package/esm2020/select/option-group/option-group.component.mjs +23 -0
- package/{esm2022 → esm2020}/select/option-placeholder.component.mjs +4 -4
- package/esm2020/select/select.component.mjs +108 -0
- package/esm2020/select/select.module.mjs +80 -0
- package/esm2020/select/validators.mjs +79 -0
- package/esm2020/shared/click-outside.directive.mjs +28 -0
- package/{esm2022 → esm2020}/shared/shared.module.mjs +5 -5
- package/esm2020/sort/sort-errors.mjs +17 -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/esm2020/status-bar/status-bar.component.mjs +29 -0
- package/esm2020/status-bar/status-bar.module.mjs +19 -0
- package/esm2020/steps/steps.component.mjs +184 -0
- package/esm2020/steps/steps.module.mjs +19 -0
- package/esm2020/switch/switch.component.mjs +46 -0
- package/esm2020/switch/switch.module.mjs +18 -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 +31 -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 +134 -0
- package/esm2020/table/table.component.mjs +79 -0
- package/esm2020/table/table.module.mjs +96 -0
- package/esm2020/table-of-contents/table-of-contents.module.mjs +20 -0
- package/esm2020/table-of-contents/toc-container.directive.mjs +109 -0
- package/esm2020/table-of-contents/toc-content.directive.mjs +35 -0
- package/esm2020/table-of-contents/toc-link.directive.mjs +44 -0
- package/esm2020/tabs/tab-body.component.mjs +165 -0
- package/esm2020/tabs/tab-context.service.mjs +31 -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 +367 -0
- package/esm2020/tabs/tab.component.mjs +85 -0
- package/esm2020/tabs/tabs.module.mjs +88 -0
- package/esm2020/tabs/tabs.types.mjs +13 -0
- package/esm2020/tag/check-tag/check-tag.component.mjs +33 -0
- package/esm2020/tag/tag.component.mjs +66 -0
- package/esm2020/tag/tag.module.mjs +20 -0
- package/esm2020/theme/theme.module.mjs +18 -0
- package/esm2020/theme/theme.pipe.mjs +69 -0
- package/esm2020/theme/theme.service.mjs +52 -0
- package/esm2020/time-picker/component.mjs +179 -0
- package/esm2020/time-picker/panel/panel.component.mjs +230 -0
- package/esm2020/time-picker/time-picker.module.mjs +58 -0
- package/esm2020/tooltip/base-tooltip.mjs +322 -0
- package/esm2020/tooltip/tooltip-active.directive.mjs +49 -0
- package/esm2020/tooltip/tooltip-copy.directive.mjs +82 -0
- package/esm2020/tooltip/tooltip-intl.mjs +29 -0
- package/esm2020/tooltip/tooltip.component.mjs +107 -0
- package/esm2020/tooltip/tooltip.directive.mjs +47 -0
- package/esm2020/tooltip/tooltip.module.mjs +33 -0
- package/{esm2022 → esm2020}/tree-select/tree-node-placeholder.component.mjs +4 -4
- package/esm2020/tree-select/tree-select.component.mjs +340 -0
- package/esm2020/tree-select/tree-select.module.mjs +34 -0
- package/esm2020/types.mjs +11 -0
- package/esm2020/utils/bem.mjs +44 -0
- package/esm2020/utils/coercion.mjs +17 -0
- package/fesm2015/alauda-ui.mjs +12051 -0
- package/fesm2015/alauda-ui.mjs.map +1 -0
- package/{fesm2022 → fesm2020}/alauda-ui.mjs +2863 -2810
- package/fesm2020/alauda-ui.mjs.map +1 -0
- package/form/common-form.d.ts +8 -1
- 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 +4 -1
- 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 +4 -1
- 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 +4 -4
- package/message/message-wrapper.component.d.ts +1 -1
- package/message/message.component.d.ts +1 -1
- package/message/message.config.d.ts +20 -0
- package/notification/notification-wrapper.component.d.ts +1 -1
- package/notification/notification.component.d.ts +5 -1
- package/notification/notification.config.d.ts +1 -1
- package/package.json +19 -13
- package/paginator/paginator-intl.d.ts +9 -0
- package/paginator/paginator.component.d.ts +15 -1
- 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 +4 -1
- 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 +4 -1
- 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 +4 -0
- 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/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 +16 -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 +94 -0
- package/src/tag/README.md +32 -0
- package/src/tree-select/README.md +34 -0
- 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 +4 -1
- package/steps/types.d.ts +6 -3
- package/switch/switch.component.d.ts +1 -1
- package/table/table-cell-def.directive.d.ts +5 -1
- package/table/table-cell.component.d.ts +2 -2
- package/table/table-cell.directive.d.ts +2 -1
- package/table/table-column-def.directive.d.ts +5 -1
- package/table/table-header-cell-def.directive.d.ts +5 -1
- package/table/table-header-cell.directive.d.ts +2 -1
- package/table/table-header-row-def.directive.d.ts +5 -1
- package/table/table-header-row.component.d.ts +2 -1
- package/table/table-placeholder.directive.d.ts +2 -2
- package/table/table-row-def.directive.d.ts +6 -1
- package/table/table-row.component.d.ts +2 -1
- 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 +23 -7
- package/tabs/tab-context.service.d.ts +3 -0
- package/tabs/tab-group.component.d.ts +29 -1
- package/tabs/tab-header-active-indicator.component.d.ts +10 -1
- package/tabs/tab-header.component.d.ts +85 -2
- package/tabs/tab.component.d.ts +19 -1
- package/tabs/tabs.types.d.ts +5 -2
- 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 +1 -5
- 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 +4 -0
- 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 +5 -2
- package/utils/operators.d.ts +1 -1
- package/esm2022/accordion/accordion-item/accordion-item.component.mjs +0 -73
- package/esm2022/accordion/accordion.component.mjs +0 -29
- package/esm2022/accordion/accordion.module.mjs +0 -39
- package/esm2022/alauda-ui.mjs +0 -2
- package/esm2022/anchor/anchor.component.mjs +0 -141
- package/esm2022/anchor/anchor.directive.mjs +0 -198
- package/esm2022/anchor/anchor.module.mjs +0 -35
- package/esm2022/autocomplete/autocomplete.component.mjs +0 -72
- package/esm2022/autocomplete/autocomplete.directive.mjs +0 -278
- package/esm2022/autocomplete/autocomplete.module.mjs +0 -53
- package/esm2022/autocomplete/suggestion/suggestion.component.mjs +0 -85
- package/esm2022/autocomplete/suggestion-group/suggestion-group.component.mjs +0 -25
- package/esm2022/back-top/back-top.component.mjs +0 -68
- package/esm2022/back-top/back-top.module.mjs +0 -19
- package/esm2022/breadcrumb/breadcrumb-item.component.mjs +0 -33
- package/esm2022/breadcrumb/breadcrumb.component.mjs +0 -56
- package/esm2022/breadcrumb/breadcrumb.module.mjs +0 -20
- package/esm2022/button/button.component.mjs +0 -124
- package/esm2022/button/button.module.mjs +0 -20
- package/esm2022/button/button.types.mjs +0 -13
- package/esm2022/card/card.component.mjs +0 -14
- package/esm2022/card/card.module.mjs +0 -40
- package/esm2022/card/helper-directives.mjs +0 -45
- package/esm2022/checkbox/checkbox-group/checkbox-group.component.mjs +0 -60
- package/esm2022/checkbox/checkbox.component.mjs +0 -116
- package/esm2022/checkbox/checkbox.module.mjs +0 -20
- package/esm2022/color-picker/color-picker.component.mjs +0 -28
- package/esm2022/color-picker/color-picker.module.mjs +0 -19
- package/esm2022/date-picker/calendar/constant.mjs +0 -31
- package/esm2022/date-picker/calendar/date-picker-panel/component.mjs +0 -137
- package/esm2022/date-picker/calendar/footer/component.mjs +0 -29
- package/esm2022/date-picker/calendar/header/component.mjs +0 -99
- package/esm2022/date-picker/calendar/panel/picker-panel.mjs +0 -158
- package/esm2022/date-picker/calendar/range-picker-panel/component.mjs +0 -210
- package/esm2022/date-picker/calendar/util.mjs +0 -152
- package/esm2022/date-picker/date-picker/date-picker.component.mjs +0 -115
- package/esm2022/date-picker/date-picker.module.mjs +0 -82
- package/esm2022/date-picker/range-picker/range-picker.component.mjs +0 -88
- package/esm2022/date-picker/trigger/trigger.component.mjs +0 -76
- package/esm2022/dialog/confirm-dialog/confirm-dialog-config.mjs +0 -13
- package/esm2022/dialog/confirm-dialog/confirm-dialog.component.mjs +0 -88
- package/esm2022/dialog/dialog-config.mjs +0 -14
- package/esm2022/dialog/dialog-content/dialog-close.directive.mjs +0 -42
- package/esm2022/dialog/dialog-content/dialog-content.component.mjs +0 -19
- package/esm2022/dialog/dialog-content/dialog-footer.component.mjs +0 -13
- package/esm2022/dialog/dialog-content/dialog-header.component.mjs +0 -42
- package/esm2022/dialog/dialog-ref.mjs +0 -52
- package/esm2022/dialog/dialog.component.mjs +0 -154
- package/esm2022/dialog/dialog.module.mjs +0 -65
- package/esm2022/dialog/dialog.service.mjs +0 -124
- package/esm2022/drawer/component/drawer.component.mjs +0 -248
- package/esm2022/drawer/component/helper-directives.mjs +0 -33
- package/esm2022/drawer/drawer.module.mjs +0 -36
- package/esm2022/drawer/drawer.service.mjs +0 -47
- package/esm2022/dropdown/dropdown-active.directive.mjs +0 -18
- package/esm2022/dropdown/dropdown-button/dropdown-button.component.mjs +0 -58
- package/esm2022/dropdown/dropdown.directive.mjs +0 -83
- package/esm2022/dropdown/dropdown.module.mjs +0 -65
- package/esm2022/dropdown/menu/menu-content.directive.mjs +0 -59
- package/esm2022/dropdown/menu/menu.component.mjs +0 -26
- package/esm2022/dropdown/menu-item/menu-item.component.mjs +0 -35
- package/esm2022/dropdown/submenu/submenu.component.mjs +0 -38
- package/esm2022/form/common-form.mjs +0 -88
- package/esm2022/form/form-item/form-item.component.mjs +0 -121
- package/esm2022/form/form.directive.mjs +0 -70
- package/esm2022/form/form.module.mjs +0 -48
- package/esm2022/form/helper-directives.mjs +0 -78
- package/esm2022/i18n/i18n.pipe.mjs +0 -21
- package/esm2022/i18n/i18n.service.mjs +0 -46
- package/esm2022/icon/icon-register.service.mjs +0 -75
- package/esm2022/icon/icon.component.mjs +0 -74
- package/esm2022/icon/icon.module.mjs +0 -21
- package/esm2022/inline-alert/inline-alert.component.mjs +0 -54
- package/esm2022/inline-alert/inline-alert.module.mjs +0 -20
- package/esm2022/input/autosize.directive.mjs +0 -56
- package/esm2022/input/helper-directives.mjs +0 -43
- package/esm2022/input/input-group/input-group.component.mjs +0 -46
- package/esm2022/input/input.component.mjs +0 -59
- package/esm2022/input/input.module.mjs +0 -85
- package/esm2022/input/number-input/number-input.component.mjs +0 -115
- package/esm2022/input/search/search.component.mjs +0 -87
- package/esm2022/input/tags-input/tags-input.component.mjs +0 -264
- package/esm2022/message/base-message.mjs +0 -99
- package/esm2022/message/message-wrapper.component.mjs +0 -15
- package/esm2022/message/message.component.mjs +0 -77
- package/esm2022/message/message.config.mjs +0 -20
- package/esm2022/message/message.module.mjs +0 -22
- package/esm2022/notification/notification-wrapper.component.mjs +0 -17
- package/esm2022/notification/notification.component.mjs +0 -106
- package/esm2022/notification/notification.module.mjs +0 -23
- package/esm2022/paginator/paginator-intl.mjs +0 -24
- package/esm2022/paginator/paginator.component.mjs +0 -124
- package/esm2022/paginator/paginator.module.mjs +0 -24
- package/esm2022/radio/base-radio.mjs +0 -72
- package/esm2022/radio/radio-button/radio-button.component.mjs +0 -41
- package/esm2022/radio/radio-group/radio-group.component.mjs +0 -70
- package/esm2022/radio/radio.component.mjs +0 -23
- package/esm2022/radio/radio.module.mjs +0 -21
- package/esm2022/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +0 -80
- package/esm2022/scrolling/fixed-size-table-virtual-scroll.directive.mjs +0 -119
- package/esm2022/scrolling/fixed-size-virtual-scroll.directive.mjs +0 -27
- package/esm2022/scrolling/virtual-scroll-viewport.component.mjs +0 -26
- package/esm2022/select/base-select.mjs +0 -345
- package/esm2022/select/multi-select/multi-select.component.mjs +0 -318
- package/esm2022/select/option/option.component.mjs +0 -119
- package/esm2022/select/option-group/option-group.component.mjs +0 -25
- package/esm2022/select/select.component.mjs +0 -107
- package/esm2022/select/select.module.mjs +0 -78
- package/esm2022/select/validators.mjs +0 -78
- package/esm2022/shared/click-outside.directive.mjs +0 -29
- package/esm2022/sort/sort-errors.mjs +0 -13
- package/esm2022/sort/sort-header.component.mjs +0 -74
- package/esm2022/sort/sort.directive.mjs +0 -73
- package/esm2022/sort/sort.module.mjs +0 -19
- package/esm2022/status-bar/status-bar.component.mjs +0 -28
- package/esm2022/status-bar/status-bar.module.mjs +0 -19
- package/esm2022/steps/steps.component.mjs +0 -180
- package/esm2022/steps/steps.module.mjs +0 -19
- package/esm2022/switch/switch.component.mjs +0 -43
- package/esm2022/switch/switch.module.mjs +0 -18
- package/esm2022/table/table-cell-def.directive.mjs +0 -25
- package/esm2022/table/table-cell.component.mjs +0 -115
- package/esm2022/table/table-cell.directive.mjs +0 -29
- package/esm2022/table/table-column-def.directive.mjs +0 -31
- package/esm2022/table/table-header-cell-def.directive.mjs +0 -25
- package/esm2022/table/table-header-cell.directive.mjs +0 -25
- package/esm2022/table/table-header-row-def.directive.mjs +0 -33
- package/esm2022/table/table-header-row.component.mjs +0 -24
- package/esm2022/table/table-placeholder.directive.mjs +0 -33
- package/esm2022/table/table-row-def.directive.mjs +0 -34
- package/esm2022/table/table-row.component.mjs +0 -43
- package/esm2022/table/table-scroll.directive.mjs +0 -133
- package/esm2022/table/table.component.mjs +0 -79
- package/esm2022/table/table.module.mjs +0 -96
- package/esm2022/table-of-contents/table-of-contents.module.mjs +0 -20
- package/esm2022/table-of-contents/toc-container.directive.mjs +0 -111
- package/esm2022/table-of-contents/toc-content.directive.mjs +0 -39
- package/esm2022/table-of-contents/toc-link.directive.mjs +0 -48
- package/esm2022/tabs/tab-body.component.mjs +0 -151
- package/esm2022/tabs/tab-context.service.mjs +0 -30
- package/esm2022/tabs/tab-group.component.mjs +0 -256
- package/esm2022/tabs/tab-header-active-indicator.component.mjs +0 -46
- package/esm2022/tabs/tab-header.component.mjs +0 -276
- package/esm2022/tabs/tab.component.mjs +0 -77
- package/esm2022/tabs/tabs.module.mjs +0 -86
- package/esm2022/tabs/tabs.types.mjs +0 -10
- package/esm2022/tag/check-tag/check-tag.component.mjs +0 -31
- package/esm2022/tag/tag.component.mjs +0 -63
- package/esm2022/tag/tag.module.mjs +0 -20
- package/esm2022/theme/theme.module.mjs +0 -18
- package/esm2022/theme/theme.pipe.mjs +0 -64
- package/esm2022/theme/theme.service.mjs +0 -55
- package/esm2022/time-picker/component.mjs +0 -181
- package/esm2022/time-picker/panel/panel.component.mjs +0 -240
- package/esm2022/time-picker/time-picker.module.mjs +0 -56
- package/esm2022/tooltip/base-tooltip.mjs +0 -329
- package/esm2022/tooltip/tooltip-active.directive.mjs +0 -51
- package/esm2022/tooltip/tooltip-copy.directive.mjs +0 -87
- package/esm2022/tooltip/tooltip-intl.mjs +0 -21
- package/esm2022/tooltip/tooltip.component.mjs +0 -120
- package/esm2022/tooltip/tooltip.directive.mjs +0 -44
- package/esm2022/tooltip/tooltip.module.mjs +0 -32
- package/esm2022/tree-select/tree-select.component.mjs +0 -350
- package/esm2022/tree-select/tree-select.module.mjs +0 -34
- package/esm2022/types.mjs +0 -8
- package/esm2022/utils/bem.mjs +0 -44
- package/esm2022/utils/coercion.mjs +0 -13
- package/fesm2022/alauda-ui.mjs.map +0 -1
- /package/{esm2022 → esm2020}/accordion/index.mjs +0 -0
- /package/{esm2022 → esm2020}/anchor/index.mjs +0 -0
- /package/{esm2022 → esm2020}/anchor/types.mjs +0 -0
- /package/{esm2022 → esm2020}/anchor/utils.mjs +0 -0
- /package/{esm2022 → esm2020}/autocomplete/autocomplete.types.mjs +0 -0
- /package/{esm2022 → esm2020}/autocomplete/index.mjs +0 -0
- /package/{esm2022 → esm2020}/back-top/index.mjs +0 -0
- /package/{esm2022 → esm2020}/breadcrumb/index.mjs +0 -0
- /package/{esm2022 → esm2020}/button/index.mjs +0 -0
- /package/{esm2022 → esm2020}/card/index.mjs +0 -0
- /package/{esm2022 → esm2020}/checkbox/index.mjs +0 -0
- /package/{esm2022 → esm2020}/color-picker/index.mjs +0 -0
- /package/{esm2022 → esm2020}/core/animation/animation-consts.mjs +0 -0
- /package/{esm2022 → esm2020}/date-picker/date-picker.type.mjs +0 -0
- /package/{esm2022 → esm2020}/date-picker/index.mjs +0 -0
- /package/{esm2022 → esm2020}/dialog/dialog.types.mjs +0 -0
- /package/{esm2022 → esm2020}/dialog/index.mjs +0 -0
- /package/{esm2022 → esm2020}/dialog/utils/errors.mjs +0 -0
- /package/{esm2022 → esm2020}/dialog/utils/index.mjs +0 -0
- /package/{esm2022 → esm2020}/drawer/component/drawer-ref.mjs +0 -0
- /package/{esm2022 → esm2020}/drawer/index.mjs +0 -0
- /package/{esm2022 → esm2020}/dropdown/dropdown.types.mjs +0 -0
- /package/{esm2022 → esm2020}/dropdown/index.mjs +0 -0
- /package/{esm2022 → esm2020}/form/form.types.mjs +0 -0
- /package/{esm2022 → esm2020}/form/index.mjs +0 -0
- /package/{esm2022 → esm2020}/i18n/i18n.type.mjs +0 -0
- /package/{esm2022 → esm2020}/i18n/index.mjs +0 -0
- /package/{esm2022 → esm2020}/i18n/language/en.mjs +0 -0
- /package/{esm2022 → esm2020}/i18n/language/zh.mjs +0 -0
- /package/{esm2022 → esm2020}/icon/icons.mjs +0 -0
- /package/{esm2022 → esm2020}/icon/index.mjs +0 -0
- /package/{esm2022 → esm2020}/icon/utils.mjs +0 -0
- /package/{esm2022 → esm2020}/index.mjs +0 -0
- /package/{esm2022 → esm2020}/inline-alert/index.mjs +0 -0
- /package/{esm2022 → esm2020}/inline-alert/inline-alert.types.mjs +0 -0
- /package/{esm2022 → esm2020}/input/index.mjs +0 -0
- /package/{esm2022 → esm2020}/input/tags-input/with-max-row-count.mjs +0 -0
- /package/{esm2022 → esm2020}/input/utils/index.mjs +0 -0
- /package/{esm2022 → esm2020}/message/index.mjs +0 -0
- /package/{esm2022 → esm2020}/message/message-animations.mjs +0 -0
- /package/{esm2022 → esm2020}/notification/index.mjs +0 -0
- /package/{esm2022 → esm2020}/notification/notification.config.mjs +0 -0
- /package/{esm2022 → esm2020}/paginator/index.mjs +0 -0
- /package/{esm2022 → esm2020}/radio/index.mjs +0 -0
- /package/{esm2022 → esm2020}/radio/radio.types.mjs +0 -0
- /package/{esm2022 → esm2020}/scrolling/index.mjs +0 -0
- /package/{esm2022 → esm2020}/select/index.mjs +0 -0
- /package/{esm2022 → esm2020}/select/select.types.mjs +0 -0
- /package/{esm2022 → esm2020}/sort/index.mjs +0 -0
- /package/{esm2022 → esm2020}/sort/sort.types.mjs +0 -0
- /package/{esm2022 → esm2020}/status-bar/index.mjs +0 -0
- /package/{esm2022 → esm2020}/status-bar/status-bar.types.mjs +0 -0
- /package/{esm2022 → esm2020}/steps/index.mjs +0 -0
- /package/{esm2022 → esm2020}/steps/types.mjs +0 -0
- /package/{esm2022 → esm2020}/switch/index.mjs +0 -0
- /package/{esm2022 → esm2020}/table/index.mjs +0 -0
- /package/{esm2022 → esm2020}/table-of-contents/index.mjs +0 -0
- /package/{esm2022 → esm2020}/tabs/index.mjs +0 -0
- /package/{esm2022 → esm2020}/tag/index.mjs +0 -0
- /package/{esm2022 → esm2020}/tag/tag.types.mjs +0 -0
- /package/{esm2022 → esm2020}/theme/index.mjs +0 -0
- /package/{esm2022 → esm2020}/theme/theme.types.mjs +0 -0
- /package/{esm2022 → esm2020}/theme/utils.mjs +0 -0
- /package/{esm2022 → esm2020}/time-picker/constant.mjs +0 -0
- /package/{esm2022 → esm2020}/time-picker/index.mjs +0 -0
- /package/{esm2022 → esm2020}/time-picker/time-picker.type.mjs +0 -0
- /package/{esm2022 → esm2020}/tooltip/index.mjs +0 -0
- /package/{esm2022 → esm2020}/tooltip/tooltip.types.mjs +0 -0
- /package/{esm2022 → esm2020}/tooltip/utils/index.mjs +0 -0
- /package/{esm2022 → esm2020}/tree-select/index.mjs +0 -0
- /package/{esm2022 → esm2020}/tree-select/tree-select.types.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/animations.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/async.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/fn.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/index.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/observe-dom.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/operators.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/scroll-into-view.mjs +0 -0
- /package/{esm2022 → esm2020}/utils/watch-content-exist.mjs +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { style, transition, trigger, state, animate, } from '@angular/animations';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation, } from '@angular/core';
|
|
3
|
+
import { Subject, combineLatest, map, startWith, BehaviorSubject, } from 'rxjs';
|
|
4
|
+
import { buildBem, publishRef } from '../utils';
|
|
5
|
+
import { TooltipType } from './tooltip.types';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/common";
|
|
8
|
+
export class TooltipComponent {
|
|
9
|
+
constructor(elRef, cdr) {
|
|
10
|
+
this.elRef = elRef;
|
|
11
|
+
this.cdr = cdr;
|
|
12
|
+
this.bem = buildBem('aui-tooltip');
|
|
13
|
+
this.showHide = 'hide';
|
|
14
|
+
this.disableAnimation = true;
|
|
15
|
+
this.hover$ = new Subject();
|
|
16
|
+
this.destroy$ = new Subject();
|
|
17
|
+
this.animating$$ = new BehaviorSubject(false);
|
|
18
|
+
this.hide$ = new Subject();
|
|
19
|
+
this.beforeHide$ = new Subject();
|
|
20
|
+
this.beforeShow$ = new Subject();
|
|
21
|
+
}
|
|
22
|
+
ngOnDestroy() {
|
|
23
|
+
this.destroy$.next(null);
|
|
24
|
+
this.destroy$.complete();
|
|
25
|
+
}
|
|
26
|
+
setupInputs(inputs) {
|
|
27
|
+
Object.assign(this, inputs);
|
|
28
|
+
this.text$ = this.inputContent$.pipe(map(val => {
|
|
29
|
+
if (typeof val === 'string') {
|
|
30
|
+
return val;
|
|
31
|
+
}
|
|
32
|
+
return '';
|
|
33
|
+
}), publishRef());
|
|
34
|
+
this.template$ = this.inputContent$.pipe(map(val => {
|
|
35
|
+
if (typeof val !== 'string') {
|
|
36
|
+
return val;
|
|
37
|
+
}
|
|
38
|
+
return null;
|
|
39
|
+
}), publishRef());
|
|
40
|
+
this.class$ = combineLatest([
|
|
41
|
+
this.inputPosition$.pipe(startWith('top')),
|
|
42
|
+
this.inputType$.pipe(startWith(TooltipType.Default)),
|
|
43
|
+
this.inputClass$.pipe(startWith('')),
|
|
44
|
+
]).pipe(map(([inputPosition, inputType, inputClass]) => {
|
|
45
|
+
const b = this.bem.block();
|
|
46
|
+
const dir = inputPosition.split(' ')[0];
|
|
47
|
+
return inputType === TooltipType.Plain
|
|
48
|
+
? `${b}--${dir} ${inputClass}`
|
|
49
|
+
: `${b} ${b}--${inputType} ${b}--${dir} ${inputClass}`;
|
|
50
|
+
}), publishRef());
|
|
51
|
+
this.context$ = this.inputContext$.pipe(publishRef());
|
|
52
|
+
}
|
|
53
|
+
onAnimation(event) {
|
|
54
|
+
const { phaseName, toState } = event;
|
|
55
|
+
this.animating$$.next(phaseName === 'start');
|
|
56
|
+
if (toState === 'hide' && phaseName === 'done') {
|
|
57
|
+
this.hide$.next(true);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
show() {
|
|
61
|
+
this.beforeShow$.next(null);
|
|
62
|
+
this.showHide = 'show';
|
|
63
|
+
this.cdr.markForCheck();
|
|
64
|
+
}
|
|
65
|
+
hide() {
|
|
66
|
+
this.beforeHide$.next(null);
|
|
67
|
+
this.showHide = 'hide';
|
|
68
|
+
this.cdr.markForCheck();
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
TooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
72
|
+
TooltipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: TooltipComponent, selector: "aui-tooltip", ngImport: i0, template: "<div\n *ngIf=\"inputContent$ | async\"\n [class]=\"class$ | async\"\n (mouseenter)=\"hover$.next(true)\"\n (mouseleave)=\"hover$.next(false)\"\n [@.disabled]=\"disableAnimation\"\n [@showHide]=\"showHide\"\n (@showHide.start)=\"onAnimation($event)\"\n (@showHide.done)=\"onAnimation($event)\"\n>\n {{ text$ | async }}\n <ng-container\n *ngIf=\"template$ | async\"\n [ngTemplateOutlet]=\"template$ | async\"\n [ngTemplateOutletContext]=\"context$ | async\"\n ></ng-container>\n</div>\n", styles: [".aui-tooltip{position:relative;padding:var(--aui-spacing-xl);border-radius:var(--aui-border-radius-m);font-size:var(--aui-font-size-s);line-height:var(--aui-line-height-s);font-weight:var(--aui-font-weight-normal);max-width:400px;word-wrap:break-word}:root .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.2)}html[aui-theme-mode=light] .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.2)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.75)}}html[aui-theme-mode=dark] .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.75)}.aui-tooltip--default{padding:var(--aui-spacing-m) var(--aui-spacing-xl)}:root .aui-tooltip--default{color:rgb(var(--aui-color-n-10));background-color:rgb(var(--aui-color-n-1))}html[aui-theme-mode=light] .aui-tooltip--default{color:rgb(var(--aui-color-n-10));background-color:rgb(var(--aui-color-n-1))}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-tooltip--default{color:rgb(var(--aui-color-n-1));background-color:rgb(var(--aui-color-popper-bg))}}html[aui-theme-mode=dark] .aui-tooltip--default{color:rgb(var(--aui-color-n-1));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--primary{color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--success{color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--warning{color:rgb(var(--aui-color-yellow));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--error{color:rgb(var(--aui-color-red));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--info{color:rgb(var(--aui-color-n-1));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--top,.aui-tooltip--bottom{margin:var(--aui-spacing-s) 0}.aui-tooltip--start,.aui-tooltip--end{margin:0 var(--aui-spacing-s)}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "async": i1.AsyncPipe }, animations: [
|
|
73
|
+
trigger('showHide', [
|
|
74
|
+
state('show', style({
|
|
75
|
+
opacity: 1,
|
|
76
|
+
transform: 'scale(1)',
|
|
77
|
+
})),
|
|
78
|
+
state('hide,void', style({
|
|
79
|
+
opacity: 0,
|
|
80
|
+
transform: 'scale(0)',
|
|
81
|
+
})),
|
|
82
|
+
transition('* => show', [animate('160ms cubic-bezier(0, 0, 0.2, 1)')]),
|
|
83
|
+
transition('* => hide', [
|
|
84
|
+
animate('160ms cubic-bezier(0.38, 0, 0.24, 1)'),
|
|
85
|
+
]),
|
|
86
|
+
]),
|
|
87
|
+
], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
88
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipComponent, decorators: [{
|
|
89
|
+
type: Component,
|
|
90
|
+
args: [{ selector: 'aui-tooltip', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, preserveWhitespaces: false, animations: [
|
|
91
|
+
trigger('showHide', [
|
|
92
|
+
state('show', style({
|
|
93
|
+
opacity: 1,
|
|
94
|
+
transform: 'scale(1)',
|
|
95
|
+
})),
|
|
96
|
+
state('hide,void', style({
|
|
97
|
+
opacity: 0,
|
|
98
|
+
transform: 'scale(0)',
|
|
99
|
+
})),
|
|
100
|
+
transition('* => show', [animate('160ms cubic-bezier(0, 0, 0.2, 1)')]),
|
|
101
|
+
transition('* => hide', [
|
|
102
|
+
animate('160ms cubic-bezier(0.38, 0, 0.24, 1)'),
|
|
103
|
+
]),
|
|
104
|
+
]),
|
|
105
|
+
], template: "<div\n *ngIf=\"inputContent$ | async\"\n [class]=\"class$ | async\"\n (mouseenter)=\"hover$.next(true)\"\n (mouseleave)=\"hover$.next(false)\"\n [@.disabled]=\"disableAnimation\"\n [@showHide]=\"showHide\"\n (@showHide.start)=\"onAnimation($event)\"\n (@showHide.done)=\"onAnimation($event)\"\n>\n {{ text$ | async }}\n <ng-container\n *ngIf=\"template$ | async\"\n [ngTemplateOutlet]=\"template$ | async\"\n [ngTemplateOutletContext]=\"context$ | async\"\n ></ng-container>\n</div>\n", styles: [".aui-tooltip{position:relative;padding:var(--aui-spacing-xl);border-radius:var(--aui-border-radius-m);font-size:var(--aui-font-size-s);line-height:var(--aui-line-height-s);font-weight:var(--aui-font-weight-normal);max-width:400px;word-wrap:break-word}:root .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.2)}html[aui-theme-mode=light] .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.2)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.75)}}html[aui-theme-mode=dark] .aui-tooltip{box-shadow:0 2px 8px 0 rgba(var(--aui-color-origin-shadow),.75)}.aui-tooltip--default{padding:var(--aui-spacing-m) var(--aui-spacing-xl)}:root .aui-tooltip--default{color:rgb(var(--aui-color-n-10));background-color:rgb(var(--aui-color-n-1))}html[aui-theme-mode=light] .aui-tooltip--default{color:rgb(var(--aui-color-n-10));background-color:rgb(var(--aui-color-n-1))}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-tooltip--default{color:rgb(var(--aui-color-n-1));background-color:rgb(var(--aui-color-popper-bg))}}html[aui-theme-mode=dark] .aui-tooltip--default{color:rgb(var(--aui-color-n-1));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--primary{color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--success{color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--warning{color:rgb(var(--aui-color-yellow));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--error{color:rgb(var(--aui-color-red));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--info{color:rgb(var(--aui-color-n-1));background-color:rgb(var(--aui-color-popper-bg))}.aui-tooltip--top,.aui-tooltip--bottom{margin:var(--aui-spacing-s) 0}.aui-tooltip--start,.aui-tooltip--end{margin:0 var(--aui-spacing-s)}\n"] }]
|
|
106
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; } });
|
|
107
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdG9vbHRpcC90b29sdGlwLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uL3NyYy90b29sdGlwL3Rvb2x0aXAuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLEtBQUssRUFDTCxVQUFVLEVBQ1YsT0FBTyxFQUVQLEtBQUssRUFDTCxPQUFPLEdBQ1IsTUFBTSxxQkFBcUIsQ0FBQztBQUM3QixPQUFPLEVBQ0wsdUJBQXVCLEVBRXZCLFNBQVMsRUFJVCxpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUVMLE9BQU8sRUFDUCxhQUFhLEVBQ2IsR0FBRyxFQUNILFNBQVMsRUFDVCxlQUFlLEdBQ2hCLE1BQU0sTUFBTSxDQUFDO0FBRWQsT0FBTyxFQUFPLFFBQVEsRUFBRSxVQUFVLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFFckQsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7QUFnQzlDLE1BQU0sT0FBTyxnQkFBZ0I7SUF5QjNCLFlBQ1MsS0FBOEIsRUFDOUIsR0FBc0I7UUFEdEIsVUFBSyxHQUFMLEtBQUssQ0FBeUI7UUFDOUIsUUFBRyxHQUFILEdBQUcsQ0FBbUI7UUF4Qi9CLFFBQUcsR0FBUSxRQUFRLENBQUMsYUFBYSxDQUFDLENBQUM7UUFDbkMsYUFBUSxHQUFvQixNQUFNLENBQUM7UUFDbkMscUJBQWdCLEdBQUcsSUFBSSxDQUFDO1FBYXhCLFdBQU0sR0FBRyxJQUFJLE9BQU8sRUFBVyxDQUFDO1FBQ2hDLGFBQVEsR0FBRyxJQUFJLE9BQU8sRUFBRSxDQUFDO1FBQ3pCLGdCQUFXLEdBQUcsSUFBSSxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDekMsVUFBSyxHQUFHLElBQUksT0FBTyxFQUFFLENBQUM7UUFDdEIsZ0JBQVcsR0FBRyxJQUFJLE9BQU8sRUFB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a0NBQWtDLENBQUMsQ0FBQyxDQUFDOzRCQUN0RSxVQUFVLENBQUMsV0FBVyxFQUFFO2dDQUN0QixPQUFPLENBQUMsc0NBQXNDLENBQUM7NkJBQ2hELENBQUM7eUJBQ0gsQ0FBQztxQkFDSCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIHN0eWxlLFxuICB0cmFuc2l0aW9uLFxuICB0cmlnZ2VyLFxuICBBbmltYXRpb25FdmVudCxcbiAgc3RhdGUsXG4gIGFuaW1hdGUsXG59IGZyb20gJ0Bhbmd1bGFyL2FuaW1hdGlvbnMnO1xuaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIE9uRGVzdHJveSxcbiAgVGVtcGxhdGVSZWYsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7XG4gIE9ic2VydmFibGUsXG4gIFN1YmplY3QsXG4gIGNvbWJpbmVMYXRlc3QsXG4gIG1hcCxcbiAgc3RhcnRXaXRoLFxuICBCZWhhdmlvclN1YmplY3QsXG59IGZyb20gJ3J4anMnO1xuXG5pbXBvcnQgeyBCZW0sIGJ1aWxkQmVtLCBwdWJsaXNoUmVmIH0gZnJvbSAnLi4vdXRpbHMnO1xuXG5pbXBvcnQgeyBUb29sdGlwVHlwZSB9IGZyb20gJy4vdG9vbHRpcC50eXBlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F1aS10b29sdGlwJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3Rvb2x0aXAuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi90b29sdGlwLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcmVzZXJ2ZVdoaXRlc3BhY2VzOiBmYWxzZSxcbiAgYW5pbWF0aW9uczogW1xuICAgIHRyaWdnZXIoJ3Nob3dIaWRlJywgW1xuICAgICAgc3RhdGUoXG4gICAgICAgICdzaG93JyxcbiAgICAgICAgc3R5bGUoe1xuICAgICAgICAgIG9wYWNpdHk6IDEsXG4gICAgICAgICAgdHJhbnNmb3JtOiAnc2NhbGUoMSknLFxuICAgICAgICB9KSxcbiAgICAgICksXG4gICAgICBzdGF0ZShcbiAgICAgICAgJ2hpZGUsdm9pZCcsXG4gICAgICAgIHN0eWxlKHtcbiAgICAgICAgICBvcGFjaXR5OiAwLFxuICAgICAgICAgIHRyYW5zZm9ybTogJ3NjYWxlKDApJyxcbiAgICAgICAgfSksXG4gICAgICApLFxuICAgICAgdHJhbnNpdGlvbignKiA9PiBzaG93JywgW2FuaW1hdGUoJzE2MG1zIGN1YmljLWJlemllcigwLCAwLCAwLjIsIDEpJyldKSxcbiAgICAgIHRyYW5zaXRpb24oJyogPT4gaGlkZScsIFtcbiAgICAgICAgYW5pbWF0ZSgnMTYwbXMgY3ViaWMtYmV6aWVyKDAuMzgsIDAsIDAuMjQsIDEpJyksXG4gICAgICBdKSxcbiAgICBdKSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVG9vbHRpcENvbXBvbmVudCBpbXBsZW1lbnRzIE9uRGVzdHJveSB7XG4gIHRleHQ6IHN0cmluZztcbiAgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT47XG4gIGJlbTogQmVtID0gYnVpbGRCZW0oJ2F1aS10b29sdGlwJyk7XG4gIHNob3dIaWRlOiAnc2hvdycgfCAnaGlkZScgPSAnaGlkZSc7XG4gIGRpc2FibGVBbmltYXRpb24gPSB0cnVlO1xuXG4gIGlucHV0Q29udGVudCQ6IE9ic2VydmFibGU8c3RyaW5nIHwgVGVtcGxhdGVSZWY8YW55Pj47XG4gIGlucHV0VHlwZSQ6IE9ic2VydmFibGU8VG9vbHRpcFR5cGU+O1xuICBpbnB1dFBvc2l0aW9uJDogT2JzZXJ2YWJsZTxzdHJpbmc+O1xuICBpbnB1dENsYXNzJDogT2JzZXJ2YWJsZTxzdHJpbmc+O1xuICBpbnB1dENvbnRleHQkOiBPYnNlcnZhYmxlPGFueT47XG5cbiAgdGV4dCQ6IE9ic2VydmFibGU8c3RyaW5nPjtcbiAgdGVtcGxhdGUkOiBPYnNlcnZhYmxlPFRlbXBsYXRlUmVmPGFueT4+O1xuICBjbGFzcyQ6IE9ic2VydmFibGU8c3RyaW5nPjtcbiAgY29udGV4dCQ6IE9ic2VydmFibGU8YW55PjtcblxuICBob3ZlciQgPSBuZXcgU3ViamVjdDxib29sZWFuPigpO1xuICBkZXN0cm95JCA9IG5ldyBTdWJqZWN0KCk7XG4gIGFuaW1hdGluZyQkID0gbmV3IEJlaGF2aW9yU3ViamVjdChmYWxzZSk7XG4gIGhpZGUkID0gbmV3IFN1YmplY3QoKTtcbiAgYmVmb3JlSGlkZSQgPSBuZXcgU3ViamVjdCgpO1xuICBiZWZvcmVTaG93JCA9IG5ldyBTdWJqZWN0KCk7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHVibGljIGVsUmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PixcbiAgICBwdWJsaWMgY2RyOiBDaGFuZ2VEZXRlY3RvclJlZixcbiAgKSB7fVxuXG4gIG5nT25EZXN0cm95KCkge1xuICAgIHRoaXMuZGVzdHJveSQubmV4dChudWxsKTtcbiAgICB0aGlzLmRlc3Ryb3kkLmNvbXBsZXRlKCk7XG4gIH1cblxuICBzZXR1cElucHV0cyhpbnB1dHM6IHtcbiAgICBpbnB1dENvbnRlbnQkOiBPYnNlcnZhYmxlPHN0cmluZyB8IFRlbXBsYXRlUmVmPGFueT4+O1xuICAgIGlucHV0VHlwZSQ6IE9ic2VydmFibGU8VG9vbHRpcFR5cGU+O1xuICAgIGlucHV0UG9zaXRpb24kOiBPYnNlcnZhYmxlPHN0cmluZz47XG4gICAgaW5wdXRDbGFzcyQ6IE9ic2VydmFibGU8c3RyaW5nPjtcbiAgICBpbnB1dENvbnRleHQkOiBPYnNlcnZhYmxlPGFueT47XG4gICAgZGlzYWJsZUFuaW1hdGlvbj86IGJvb2xlYW47XG4gIH0pIHtcbiAgICBPYmplY3QuYXNzaWduKHRoaXMsIGlucHV0cyk7XG4gICAgdGhpcy50ZXh0JCA9IHRoaXMuaW5wdXRDb250ZW50JC5waXBlKFxuICAgICAgbWFwKHZhbCA9PiB7XG4gICAgICAgIGlmICh0eXBlb2YgdmFsID09PSAnc3RyaW5nJykge1xuICAgICAgICAgIHJldHVybiB2YWw7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuICcnO1xuICAgICAgfSksXG4gICAgICBwdWJsaXNoUmVmKCksXG4gICAgKTtcbiAgICB0aGlzLnRlbXBsYXRlJCA9IHRoaXMuaW5wdXRDb250ZW50JC5waXBlKFxuICAgICAgbWFwKHZhbCA9PiB7XG4gICAgICAgIGlmICh0eXBlb2YgdmFsICE9PSAnc3RyaW5nJykge1xuICAgICAgICAgIHJldHVybiB2YWw7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIG51bGw7XG4gICAgICB9KSxcbiAgICAgIHB1Ymxpc2hSZWYoKSxcbiAgICApO1xuICAgIHRoaXMuY2xhc3MkID0gY29tYmluZUxhdGVzdChbXG4gICAgICB0aGlzLmlucHV0UG9zaXRpb24kLnBpcGUoc3RhcnRXaXRoKCd0b3AnKSksXG4gICAgICB0aGlzLmlucHV0VHlwZSQucGlwZShzdGFydFdpdGgoVG9vbHRpcFR5cGUuRGVmYXVsdCkpLFxuICAgICAgdGhpcy5pbnB1dENsYXNzJC5waXBlKHN0YXJ0V2l0aCgnJykpLFxuICAgIF0pLnBpcGUoXG4gICAgICBtYXAoKFtpbnB1dFBvc2l0aW9uLCBpbnB1dFR5cGUsIGlucHV0Q2xhc3NdKSA9PiB7XG4gICAgICAgIGNvbnN0IGIgPSB0aGlzLmJlbS5ibG9jaygpO1xuICAgICAgICBjb25zdCBkaXIgPSBpbnB1dFBvc2l0aW9uLnNwbGl0KCcgJylbMF07XG4gICAgICAgIHJldHVybiBpbnB1dFR5cGUgPT09IFRvb2x0aXBUeXBlLlBsYWluXG4gICAgICAgICAgPyBgJHtifS0tJHtkaXJ9ICR7aW5wdXRDbGFzc31gXG4gICAgICAgICAgOiBgJHtifSAke2J9LS0ke2lucHV0VHlwZX0gJHtifS0tJHtkaXJ9ICR7aW5wdXRDbGFzc31gO1xuICAgICAgfSksXG4gICAgICBwdWJsaXNoUmVmKCksXG4gICAgKTtcbiAgICB0aGlzLmNvbnRleHQkID0gdGhpcy5pbnB1dENvbnRleHQkLnBpcGUocHVibGlzaFJlZigpKTtcbiAgfVxuXG4gIG9uQW5pbWF0aW9uKGV2ZW50OiBBbmltYXRpb25FdmVudCkge1xuICAgIGNvbnN0IHsgcGhhc2VOYW1lLCB0b1N0YXRlIH0gPSBldmVudDtcbiAgICB0aGlzLmFuaW1hdGluZyQkLm5leHQocGhhc2VOYW1lID09PSAnc3RhcnQnKTtcbiAgICBpZiAodG9TdGF0ZSA9PT0gJ2hpZGUnICYmIHBoYXNlTmFtZSA9PT0gJ2RvbmUnKSB7XG4gICAgICB0aGlzLmhpZGUkLm5leHQodHJ1ZSk7XG4gICAgfVxuICB9XG5cbiAgc2hvdygpIHtcbiAgICB0aGlzLmJlZm9yZVNob3ckLm5leHQobnVsbCk7XG4gICAgdGhpcy5zaG93SGlkZSA9ICdzaG93JztcbiAgICB0aGlzLmNkci5tYXJrRm9yQ2hlY2soKTtcbiAgfVxuXG4gIGhpZGUoKSB7XG4gICAgdGhpcy5iZWZvcmVIaWRlJC5uZXh0KG51bGwpO1xuICAgIHRoaXMuc2hvd0hpZGUgPSAnaGlkZSc7XG4gICAgdGhpcy5jZHIubWFya0ZvckNoZWNrKCk7XG4gIH1cbn1cbiIsIjxkaXZcbiAgKm5nSWY9XCJpbnB1dENvbnRlbnQkIHwgYXN5bmNcIlxuICBbY2xhc3NdPVwiY2xhc3MkIHwgYXN5bmNcIlxuICAobW91c2VlbnRlcik9XCJob3ZlciQubmV4dCh0cnVlKVwiXG4gIChtb3VzZWxlYXZlKT1cImhvdmVyJC5uZXh0KGZhbHNlKVwiXG4gIFtALmRpc2FibGVkXT1cImRpc2FibGVBbmltYXRpb25cIlxuICBbQHNob3dIaWRlXT1cInNob3dIaWRlXCJcbiAgKEBzaG93SGlkZS5zdGFydCk9XCJvbkFuaW1hdGlvbigkZXZlbnQpXCJcbiAgKEBzaG93SGlkZS5kb25lKT1cIm9uQW5pbWF0aW9uKCRldmVudClcIlxuPlxuICB7eyB0ZXh0JCB8IGFzeW5jIH19XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cInRlbXBsYXRlJCB8IGFzeW5jXCJcbiAgICBbbmdUZW1wbGF0ZU91dGxldF09XCJ0ZW1wbGF0ZSQgfCBhc3luY1wiXG4gICAgW25nVGVtcGxhdGVPdXRsZXRDb250ZXh0XT1cImNvbnRleHQkIHwgYXN5bmNcIlxuICA+PC9uZy1jb250YWluZXI+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Directive, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import { BaseTooltip } from './base-tooltip';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class TooltipDirective extends BaseTooltip {
|
|
5
|
+
constructor() {
|
|
6
|
+
super(...arguments);
|
|
7
|
+
this.visibleChange = new EventEmitter();
|
|
8
|
+
this.disableAnimation = false;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
TooltipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
12
|
+
TooltipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: TooltipDirective, selector: "[auiTooltip]", inputs: { content: ["auiTooltip", "content"], context: ["auiTooltipContext", "context"], class: ["auiTooltipClass", "class"], type: ["auiTooltipType", "type"], position: ["auiTooltipPosition", "position"], trigger: ["auiTooltipTrigger", "trigger"], disabled: ["auiTooltipDisabled", "disabled"], hideOnClick: ["auiTooltipHideOnClick", "hideOnClick"], disableAnimation: ["auiDisableAnimation", "disableAnimation"] }, outputs: { visibleChange: "auiTooltipVisibleChange" }, providers: [
|
|
13
|
+
{
|
|
14
|
+
provide: BaseTooltip,
|
|
15
|
+
useExisting: TooltipDirective,
|
|
16
|
+
},
|
|
17
|
+
], exportAs: ["auiTooltip"], usesInheritance: true, ngImport: i0 });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipDirective, decorators: [{
|
|
19
|
+
type: Directive,
|
|
20
|
+
args: [{
|
|
21
|
+
selector: '[auiTooltip]',
|
|
22
|
+
providers: [
|
|
23
|
+
{
|
|
24
|
+
provide: BaseTooltip,
|
|
25
|
+
useExisting: TooltipDirective,
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
exportAs: 'auiTooltip',
|
|
29
|
+
inputs: [
|
|
30
|
+
'content:auiTooltip',
|
|
31
|
+
'context:auiTooltipContext',
|
|
32
|
+
'class:auiTooltipClass',
|
|
33
|
+
'type:auiTooltipType',
|
|
34
|
+
'position:auiTooltipPosition',
|
|
35
|
+
'trigger:auiTooltipTrigger',
|
|
36
|
+
'disabled:auiTooltipDisabled',
|
|
37
|
+
'hideOnClick:auiTooltipHideOnClick',
|
|
38
|
+
],
|
|
39
|
+
}]
|
|
40
|
+
}], propDecorators: { visibleChange: [{
|
|
41
|
+
type: Output,
|
|
42
|
+
args: ['auiTooltipVisibleChange']
|
|
43
|
+
}], disableAnimation: [{
|
|
44
|
+
type: Input,
|
|
45
|
+
args: ['auiDisableAnimation']
|
|
46
|
+
}] } });
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdG9vbHRpcC90b29sdGlwLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXZFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFzQjdDLE1BQU0sT0FBTyxnQkFBaUIsU0FBUSxXQUFXO0lBcEJqRDs7UUFzQlcsa0JBQWEsR0FBRyxJQUFJLFlBQVksRUFBVyxDQUFDO1FBRzVDLHFCQUFnQixHQUFHLEtBQUssQ0FBQztLQUNuQzs7NkdBTlksZ0JBQWdCO2lHQUFoQixnQkFBZ0IsNmZBbEJoQjtRQUNUO1lBQ0UsT0FBTyxFQUFFLFdBQVc7WUFDcEIsV0FBVyxFQUFFLGdCQUFnQjtTQUM5QjtLQUNGOzJGQWFVLGdCQUFnQjtrQkFwQjVCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGNBQWM7b0JBQ3hCLFNBQVMsRUFBRTt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsV0FBVzs0QkFDcEIsV0FBVyxrQkFBa0I7eUJBQzlCO3FCQUNGO29CQUNELFFBQVEsRUFBRSxZQUFZO29CQUN0QixNQUFNLEVBQUU7d0JBQ04sb0JBQW9CO3dCQUNwQiwyQkFBMkI7d0JBQzNCLHVCQUF1Qjt3QkFDdkIscUJBQXFCO3dCQUNyQiw2QkFBNkI7d0JBQzdCLDJCQUEyQjt3QkFDM0IsNkJBQTZCO3dCQUM3QixtQ0FBbUM7cUJBQ3BDO2lCQUNGOzhCQUdVLGFBQWE7c0JBRHJCLE1BQU07dUJBQUMseUJBQXlCO2dCQUl4QixnQkFBZ0I7c0JBRHhCLEtBQUs7dUJBQUMscUJBQXFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgQmFzZVRvb2x0aXAgfSBmcm9tICcuL2Jhc2UtdG9vbHRpcCc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1thdWlUb29sdGlwXScsXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IEJhc2VUb29sdGlwLFxuICAgICAgdXNlRXhpc3Rpbmc6IFRvb2x0aXBEaXJlY3RpdmUsXG4gICAgfSxcbiAgXSxcbiAgZXhwb3J0QXM6ICdhdWlUb29sdGlwJyxcbiAgaW5wdXRzOiBbXG4gICAgJ2NvbnRlbnQ6YXVpVG9vbHRpcCcsXG4gICAgJ2NvbnRleHQ6YXVpVG9vbHRpcENvbnRleHQnLFxuICAgICdjbGFzczphdWlUb29sdGlwQ2xhc3MnLFxuICAgICd0eXBlOmF1aVRvb2x0aXBUeXBlJyxcbiAgICAncG9zaXRpb246YXVpVG9vbHRpcFBvc2l0aW9uJyxcbiAgICAndHJpZ2dlcjphdWlUb29sdGlwVHJpZ2dlcicsXG4gICAgJ2Rpc2FibGVkOmF1aVRvb2x0aXBEaXNhYmxlZCcsXG4gICAgJ2hpZGVPbkNsaWNrOmF1aVRvb2x0aXBIaWRlT25DbGljaycsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFRvb2x0aXBEaXJlY3RpdmUgZXh0ZW5kcyBCYXNlVG9vbHRpcCB7XG4gIEBPdXRwdXQoJ2F1aVRvb2x0aXBWaXNpYmxlQ2hhbmdlJylcbiAgb3ZlcnJpZGUgdmlzaWJsZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcblxuICBASW5wdXQoJ2F1aURpc2FibGVBbmltYXRpb24nKVxuICBvdmVycmlkZSBkaXNhYmxlQW5pbWF0aW9uID0gZmFsc2U7XG59XG4iXX0=
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OverlayModule } from '@angular/cdk/overlay';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { NgModule } from '@angular/core';
|
|
4
|
+
import { TooltipActiveDirective } from './tooltip-active.directive';
|
|
5
|
+
import { TooltipCopyDirective } from './tooltip-copy.directive';
|
|
6
|
+
import { TOOLTIP_COPY_INTL_INTL_PROVIDER } from './tooltip-intl';
|
|
7
|
+
import { TooltipComponent } from './tooltip.component';
|
|
8
|
+
import { TooltipDirective } from './tooltip.directive';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export class TooltipModule {
|
|
11
|
+
}
|
|
12
|
+
TooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
13
|
+
TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipModule, declarations: [TooltipDirective,
|
|
14
|
+
TooltipComponent,
|
|
15
|
+
TooltipActiveDirective,
|
|
16
|
+
TooltipCopyDirective], imports: [CommonModule, OverlayModule], exports: [TooltipDirective, TooltipActiveDirective, TooltipCopyDirective] });
|
|
17
|
+
TooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipModule, providers: [TOOLTIP_COPY_INTL_INTL_PROVIDER], imports: [[CommonModule, OverlayModule]] });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TooltipModule, decorators: [{
|
|
19
|
+
type: NgModule,
|
|
20
|
+
args: [{
|
|
21
|
+
imports: [CommonModule, OverlayModule],
|
|
22
|
+
declarations: [
|
|
23
|
+
TooltipDirective,
|
|
24
|
+
TooltipComponent,
|
|
25
|
+
TooltipActiveDirective,
|
|
26
|
+
TooltipCopyDirective,
|
|
27
|
+
],
|
|
28
|
+
entryComponents: [TooltipComponent],
|
|
29
|
+
exports: [TooltipDirective, TooltipActiveDirective, TooltipCopyDirective],
|
|
30
|
+
providers: [TOOLTIP_COPY_INTL_INTL_PROVIDER],
|
|
31
|
+
}]
|
|
32
|
+
}] });
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdG9vbHRpcC90b29sdGlwLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDckQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDcEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDaEUsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDakUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdkQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUJBQXFCLENBQUM7O0FBY3ZELE1BQU0sT0FBTyxhQUFhOzswR0FBYixhQUFhOzJHQUFiLGFBQWEsaUJBVHRCLGdCQUFnQjtRQUNoQixnQkFBZ0I7UUFDaEIsc0JBQXNCO1FBQ3RCLG9CQUFvQixhQUxaLFlBQVksRUFBRSxhQUFhLGFBUTNCLGdCQUFnQixFQUFFLHNCQUFzQixFQUFFLG9CQUFvQjsyR0FHN0QsYUFBYSxhQUZiLENBQUMsK0JBQStCLENBQUMsWUFUbkMsQ0FBQyxZQUFZLEVBQUUsYUFBYSxDQUFDOzJGQVczQixhQUFhO2tCQVp6QixRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxhQUFhLENBQUM7b0JBQ3RDLFlBQVksRUFBRTt3QkFDWixnQkFBZ0I7d0JBQ2hCLGdCQUFnQjt3QkFDaEIsc0JBQXNCO3dCQUN0QixvQkFBb0I7cUJBQ3JCO29CQUNELGVBQWUsRUFBRSxDQUFDLGdCQUFnQixDQUFDO29CQUNuQyxPQUFPLEVBQUUsQ0FBQyxnQkFBZ0IsRUFBRSxzQkFBc0IsRUFBRSxvQkFBb0IsQ0FBQztvQkFDekUsU0FBUyxFQUFFLENBQUMsK0JBQStCLENBQUM7aUJBQzdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT3ZlcmxheU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9vdmVybGF5JztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBUb29sdGlwQWN0aXZlRGlyZWN0aXZlIH0gZnJvbSAnLi90b29sdGlwLWFjdGl2ZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVG9vbHRpcENvcHlEaXJlY3RpdmUgfSBmcm9tICcuL3Rvb2x0aXAtY29weS5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVE9PTFRJUF9DT1BZX0lOVExfSU5UTF9QUk9WSURFUiB9IGZyb20gJy4vdG9vbHRpcC1pbnRsJztcbmltcG9ydCB7IFRvb2x0aXBDb21wb25lbnQgfSBmcm9tICcuL3Rvb2x0aXAuY29tcG9uZW50JztcbmltcG9ydCB7IFRvb2x0aXBEaXJlY3RpdmUgfSBmcm9tICcuL3Rvb2x0aXAuZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgT3ZlcmxheU1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1xuICAgIFRvb2x0aXBEaXJlY3RpdmUsXG4gICAgVG9vbHRpcENvbXBvbmVudCxcbiAgICBUb29sdGlwQWN0aXZlRGlyZWN0aXZlLFxuICAgIFRvb2x0aXBDb3B5RGlyZWN0aXZlLFxuICBdLFxuICBlbnRyeUNvbXBvbmVudHM6IFtUb29sdGlwQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW1Rvb2x0aXBEaXJlY3RpdmUsIFRvb2x0aXBBY3RpdmVEaXJlY3RpdmUsIFRvb2x0aXBDb3B5RGlyZWN0aXZlXSxcbiAgcHJvdmlkZXJzOiBbVE9PTFRJUF9DT1BZX0lOVExfSU5UTF9QUk9WSURFUl0sXG59KVxuZXhwb3J0IGNsYXNzIFRvb2x0aXBNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, ViewEncapsulation, } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class TreeNodePlaceholderComponent {
|
|
4
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.4", ngImport: i0, type: TreeNodePlaceholderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.4", type: TreeNodePlaceholderComponent, selector: "aui-tree-node-placeholder", ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
6
4
|
}
|
|
7
|
-
i0.ɵɵ
|
|
5
|
+
TreeNodePlaceholderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TreeNodePlaceholderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
TreeNodePlaceholderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: TreeNodePlaceholderComponent, selector: "aui-tree-node-placeholder", ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TreeNodePlaceholderComponent, decorators: [{
|
|
8
8
|
type: Component,
|
|
9
9
|
args: [{
|
|
10
10
|
selector: 'aui-tree-node-placeholder',
|
|
@@ -14,4 +14,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.4", ngImpor
|
|
|
14
14
|
preserveWhitespaces: false,
|
|
15
15
|
}]
|
|
16
16
|
}] });
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJlZS1ub2RlLXBsYWNlaG9sZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90cmVlLXNlbGVjdC90cmVlLW5vZGUtcGxhY2Vob2xkZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQzs7QUFTdkIsTUFBTSxPQUFPLDRCQUE0Qjs7eUhBQTVCLDRCQUE0Qjs2R0FBNUIsNEJBQTRCLGlFQUw3QiwyQkFBMkI7MkZBSzFCLDRCQUE0QjtrQkFQeEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7b0JBQ3JDLG1CQUFtQixFQUFFLEtBQUs7aUJBQzNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhdWktdHJlZS1ub2RlLXBsYWNlaG9sZGVyJyxcbiAgdGVtcGxhdGU6IGA8bmctY29udGVudD48L25nLWNvbnRlbnQ+YCxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIHByZXNlcnZlV2hpdGVzcGFjZXM6IGZhbHNlLFxufSlcbmV4cG9ydCBjbGFzcyBUcmVlTm9kZVBsYWNlaG9sZGVyQ29tcG9uZW50IHt9XG4iXX0=
|