@alauda/ui 6.5.9-beta.22 → 6.5.9-beta.24
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 +1 -1
- package/accordion/accordion.component.d.ts +1 -1
- package/anchor/anchor.component.d.ts +2 -2
- package/anchor/anchor.directive.d.ts +2 -2
- package/autocomplete/autocomplete.directive.d.ts +2 -2
- package/autocomplete/suggestion/suggestion.component.d.ts +1 -1
- package/back-top/back-top.component.d.ts +1 -1
- package/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/button/button.component.d.ts +1 -1
- package/card/card.component.d.ts +1 -1
- package/card/helper-directives.d.ts +1 -1
- package/checkbox/checkbox-group/checkbox-group.component.d.ts +1 -1
- package/checkbox/checkbox.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/range-picker/range-picker.component.d.ts +1 -1
- package/date-picker/trigger/trigger.component.d.ts +1 -1
- package/dialog/dialog-content/dialog-close.directive.d.ts +1 -1
- package/dialog/dialog-content/dialog-header.component.d.ts +1 -1
- package/dialog/dialog.component.d.ts +0 -6
- package/dialog/dialog.service.d.ts +0 -2
- package/drawer/component/drawer.component.d.ts +1 -1
- 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/menu/menu.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/{esm2020 → esm2022}/accordion/accordion.module.mjs +11 -11
- package/esm2022/anchor/anchor.component.mjs +141 -0
- package/esm2022/anchor/anchor.directive.mjs +198 -0
- package/{esm2020 → esm2022}/anchor/anchor.module.mjs +11 -11
- 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/{esm2020 → esm2022}/autocomplete/autocomplete.module.mjs +17 -17
- 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/{esm2020 → esm2022}/back-top/back-top.module.mjs +5 -5
- package/esm2022/breadcrumb/breadcrumb-item.component.mjs +33 -0
- package/esm2022/breadcrumb/breadcrumb.component.mjs +56 -0
- package/{esm2020 → esm2022}/breadcrumb/breadcrumb.module.mjs +5 -5
- package/{esm2020 → esm2022}/button/button-group/button-group.component.mjs +4 -4
- package/esm2022/button/button.component.mjs +124 -0
- package/{esm2020 → esm2022}/button/button.module.mjs +5 -5
- package/esm2022/card/card.component.mjs +14 -0
- package/{esm2020 → esm2022}/card/card.module.mjs +13 -13
- 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/{esm2020 → esm2022}/checkbox/checkbox.module.mjs +5 -5
- package/esm2022/color-picker/color-picker.component.mjs +28 -0
- package/{esm2020 → esm2022}/color-picker/color-picker.module.mjs +5 -5
- 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/{esm2020 → esm2022}/date-picker/date-picker.module.mjs +35 -35
- 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/esm2022/dialog/dialog-config.mjs +14 -0
- package/esm2022/dialog/dialog-content/dialog-close.directive.mjs +42 -0
- package/{esm2020 → esm2022}/dialog/dialog-content/dialog-content.component.mjs +5 -5
- 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/{esm2020 → esm2022}/dialog/dialog.module.mjs +22 -22
- package/esm2022/dialog/dialog.service.mjs +124 -0
- package/esm2022/drawer/component/drawer.component.mjs +248 -0
- package/{esm2020 → esm2022}/drawer/component/helper-directives.mjs +10 -10
- package/{esm2020 → esm2022}/drawer/drawer.module.mjs +11 -11
- 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 +50 -0
- package/esm2022/dropdown/dropdown.directive.mjs +83 -0
- package/{esm2020 → esm2022}/dropdown/dropdown.module.mjs +21 -21
- 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 +34 -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/{esm2020 → esm2022}/form/form.module.mjs +17 -17
- 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/{esm2020 → esm2022}/icon/icon.module.mjs +5 -5
- package/{esm2020 → esm2022}/inline-alert/helper-directives.mjs +4 -4
- package/esm2022/inline-alert/inline-alert.component.mjs +54 -0
- package/{esm2020 → esm2022}/inline-alert/inline-alert.module.mjs +5 -5
- 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/{esm2020 → esm2022}/input/input.module.mjs +33 -33
- 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/{esm2020 → esm2022}/message/message.module.mjs +5 -5
- 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/{esm2020 → esm2022}/notification/notification.module.mjs +5 -5
- 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/{esm2020 → esm2022}/paginator/paginator.module.mjs +5 -5
- 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/{esm2020 → esm2022}/radio/radio.component.mjs +5 -5
- package/{esm2020 → esm2022}/radio/radio.module.mjs +5 -5
- package/{esm2020 → esm2022}/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +13 -14
- 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/{esm2020 → esm2022}/select/select.module.mjs +29 -29
- 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-header.component.mjs +74 -0
- package/esm2022/sort/sort.directive.mjs +73 -0
- package/{esm2020 → esm2022}/sort/sort.module.mjs +5 -5
- package/esm2022/status-bar/status-bar.component.mjs +28 -0
- package/{esm2020 → esm2022}/status-bar/status-bar.module.mjs +5 -5
- package/esm2022/steps/steps.component.mjs +180 -0
- package/{esm2020 → esm2022}/steps/steps.module.mjs +5 -5
- package/esm2022/switch/switch.component.mjs +43 -0
- package/{esm2020 → esm2022}/switch/switch.module.mjs +5 -5
- package/esm2022/table/table-cell-def.directive.mjs +25 -0
- package/esm2022/table/table-cell.component.mjs +115 -0
- package/{esm2020 → esm2022}/table/table-cell.directive.mjs +5 -5
- package/esm2022/table/table-column-def.directive.mjs +31 -0
- package/esm2022/table/table-header-cell-def.directive.mjs +25 -0
- package/{esm2020 → esm2022}/table/table-header-cell.directive.mjs +4 -4
- package/esm2022/table/table-header-row-def.directive.mjs +33 -0
- package/{esm2020 → esm2022}/table/table-header-row.component.mjs +4 -4
- 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/{esm2020 → esm2022}/table/table.module.mjs +35 -35
- package/{esm2020 → esm2022}/table-of-contents/table-of-contents.module.mjs +5 -5
- 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/{esm2020 → esm2022}/tabs/tabs.module.mjs +34 -34
- package/esm2022/tag/check-tag/check-tag.component.mjs +31 -0
- package/esm2022/tag/tag.component.mjs +63 -0
- package/{esm2020 → esm2022}/tag/tag.module.mjs +5 -5
- package/{esm2020 → esm2022}/theme/theme.module.mjs +5 -5
- 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/{esm2020 → esm2022}/time-picker/time-picker.module.mjs +23 -23
- 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/{esm2020 → esm2022}/tooltip/tooltip.module.mjs +8 -8
- package/{esm2020 → esm2022}/tree-select/tree-node-placeholder.component.mjs +4 -4
- package/esm2022/tree-select/tree-select.component.mjs +350 -0
- package/{esm2020 → esm2022}/tree-select/tree-select.module.mjs +9 -9
- package/esm2022/utils/bem.mjs +44 -0
- package/{fesm2020 → fesm2022}/alauda-ui.mjs +2204 -1887
- package/fesm2022/alauda-ui.mjs.map +1 -0
- package/form/common-form.d.ts +1 -1
- package/form/form-item/form-item.component.d.ts +1 -1
- package/form/form.directive.d.ts +1 -1
- package/form/helper-directives.d.ts +1 -1
- package/icon/icon.component.d.ts +1 -1
- package/inline-alert/inline-alert.component.d.ts +1 -1
- package/input/autosize.directive.d.ts +1 -1
- package/input/input.component.d.ts +1 -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 +1 -1
- package/package.json +11 -17
- package/paginator/paginator.component.d.ts +1 -1
- package/radio/base-radio.d.ts +1 -1
- package/radio/radio-group/radio-group.component.d.ts +1 -1
- package/scrolling/fixed-size-table-virtual-scroll.directive.d.ts +1 -1
- package/scrolling/virtual-for-of.directive.d.ts +1 -1
- package/select/base-select.d.ts +1 -1
- package/select/multi-select/multi-select.component.d.ts +1 -1
- package/select/option/option.component.d.ts +1 -1
- package/select/validators.d.ts +1 -1
- package/sort/sort-header.component.d.ts +1 -1
- package/sort/sort.directive.d.ts +1 -1
- package/status-bar/status-bar.component.d.ts +1 -1
- package/steps/steps.component.d.ts +1 -1
- package/switch/switch.component.d.ts +1 -1
- package/table/table-cell.component.d.ts +2 -2
- package/table/table-cell.directive.d.ts +1 -1
- package/table/table-column-def.directive.d.ts +1 -1
- package/table/table-header-row-def.directive.d.ts +1 -1
- package/table/table-row-def.directive.d.ts +1 -1
- package/table/table-row.component.d.ts +1 -1
- package/table/table-scroll.directive.d.ts +2 -2
- package/table/table.component.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 +2 -2
- package/tabs/tab-group.component.d.ts +1 -1
- package/tabs/tab-header-active-indicator.component.d.ts +1 -1
- package/tabs/tab-header.component.d.ts +1 -1
- package/tabs/tab.component.d.ts +1 -1
- package/tag/check-tag/check-tag.component.d.ts +1 -1
- package/tag/tag.component.d.ts +1 -1
- package/theme/_var.scss +1 -1
- package/time-picker/component.d.ts +1 -1
- package/time-picker/panel/panel.component.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.directive.d.ts +1 -1
- package/tree-select/tree-select.component.d.ts +2 -2
- package/esm2020/accordion/accordion-item/accordion-item.component.mjs +0 -71
- package/esm2020/accordion/accordion.component.mjs +0 -27
- package/esm2020/anchor/anchor.component.mjs +0 -137
- package/esm2020/anchor/anchor.directive.mjs +0 -182
- package/esm2020/autocomplete/autocomplete.component.mjs +0 -64
- package/esm2020/autocomplete/autocomplete.directive.mjs +0 -277
- 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 -65
- package/esm2020/breadcrumb/breadcrumb-item.component.mjs +0 -32
- package/esm2020/breadcrumb/breadcrumb.component.mjs +0 -57
- package/esm2020/button/button.component.mjs +0 -121
- package/esm2020/card/card.component.mjs +0 -16
- package/esm2020/card/helper-directives.mjs +0 -48
- package/esm2020/checkbox/checkbox-group/checkbox-group.component.mjs +0 -61
- package/esm2020/checkbox/checkbox.component.mjs +0 -112
- package/esm2020/color-picker/color-picker.component.mjs +0 -28
- 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 -99
- package/esm2020/date-picker/calendar/panel/picker-panel.mjs +0 -151
- package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +0 -207
- package/esm2020/date-picker/calendar/util.mjs +0 -145
- package/esm2020/date-picker/date-picker/date-picker.component.mjs +0 -110
- 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-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 -155
- package/esm2020/dialog/dialog.service.mjs +0 -134
- package/esm2020/drawer/component/drawer.component.mjs +0 -229
- 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 -51
- package/esm2020/dropdown/dropdown.directive.mjs +0 -81
- package/esm2020/dropdown/menu/menu-content.directive.mjs +0 -51
- package/esm2020/dropdown/menu/menu.component.mjs +0 -33
- 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 -84
- package/esm2020/form/form-item/form-item.component.mjs +0 -108
- package/esm2020/form/form.directive.mjs +0 -69
- 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 -73
- package/esm2020/icon/icon.component.mjs +0 -65
- package/esm2020/inline-alert/inline-alert.component.mjs +0 -53
- package/esm2020/input/autosize.directive.mjs +0 -54
- 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 -57
- 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 -255
- 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 -16
- package/esm2020/notification/notification-wrapper.component.mjs +0 -16
- package/esm2020/notification/notification.component.mjs +0 -103
- package/esm2020/paginator/paginator-intl.mjs +0 -26
- package/esm2020/paginator/paginator.component.mjs +0 -117
- package/esm2020/radio/base-radio.mjs +0 -67
- package/esm2020/radio/radio-button/radio-button.component.mjs +0 -41
- package/esm2020/radio/radio-group/radio-group.component.mjs +0 -73
- package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +0 -119
- package/esm2020/scrolling/fixed-size-virtual-scroll.directive.mjs +0 -27
- package/esm2020/scrolling/virtual-scroll-viewport.component.mjs +0 -26
- package/esm2020/select/base-select.mjs +0 -334
- package/esm2020/select/multi-select/multi-select.component.mjs +0 -310
- 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 -107
- package/esm2020/select/validators.mjs +0 -75
- package/esm2020/shared/click-outside.directive.mjs +0 -28
- package/esm2020/sort/sort-header.component.mjs +0 -68
- package/esm2020/sort/sort.directive.mjs +0 -74
- package/esm2020/status-bar/status-bar.component.mjs +0 -29
- package/esm2020/steps/steps.component.mjs +0 -180
- package/esm2020/switch/switch.component.mjs +0 -46
- package/esm2020/table/table-cell-def.directive.mjs +0 -25
- package/esm2020/table/table-cell.component.mjs +0 -121
- package/esm2020/table/table-column-def.directive.mjs +0 -31
- package/esm2020/table/table-header-cell-def.directive.mjs +0 -25
- package/esm2020/table/table-header-row-def.directive.mjs +0 -35
- package/esm2020/table/table-placeholder.directive.mjs +0 -30
- package/esm2020/table/table-row-def.directive.mjs +0 -37
- package/esm2020/table/table-row.component.mjs +0 -42
- package/esm2020/table/table-scroll.directive.mjs +0 -133
- package/esm2020/table/table.component.mjs +0 -76
- 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 -147
- package/esm2020/tabs/tab-context.service.mjs +0 -28
- package/esm2020/tabs/tab-group.component.mjs +0 -246
- package/esm2020/tabs/tab-header-active-indicator.component.mjs +0 -44
- package/esm2020/tabs/tab-header.component.mjs +0 -264
- package/esm2020/tabs/tab.component.mjs +0 -71
- package/esm2020/tag/check-tag/check-tag.component.mjs +0 -33
- package/esm2020/tag/tag.component.mjs +0 -65
- 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 -228
- package/esm2020/tooltip/base-tooltip.mjs +0 -318
- 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 -23
- package/esm2020/tooltip/tooltip.component.mjs +0 -107
- package/esm2020/tooltip/tooltip.directive.mjs +0 -47
- package/esm2020/tree-select/tree-select.component.mjs +0 -339
- package/esm2020/utils/bem.mjs +0 -43
- package/fesm2015/alauda-ui.mjs +0 -11686
- package/fesm2015/alauda-ui.mjs.map +0 -1
- package/fesm2020/alauda-ui.mjs.map +0 -1
- /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/alauda-ui.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/button.types.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/calendar/constant.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-animations.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-errors.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}/tabs/tabs.types.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}/types.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/animations.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/async.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/coercion.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
|
@@ -18,5 +18,5 @@ export declare class AccordionItemComponent extends CdkAccordionItem implements
|
|
|
18
18
|
constructor(accordion: AccordionComponent, cdr: ChangeDetectorRef, uniqueSelectionDispatcher: UniqueSelectionDispatcher);
|
|
19
19
|
ngAfterContentInit(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "aui-accordion-item", never, { "background": "background"; }, {}, ["_lazyContentTpl"], ["[auiAccordionItemHeader]", "*"], false, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "aui-accordion-item", never, { "background": { "alias": "background"; "required": false; }; }, {}, ["_lazyContentTpl"], ["[auiAccordionItemHeader]", "*"], false, never>;
|
|
22
22
|
}
|
|
@@ -6,5 +6,5 @@ export declare class AccordionComponent extends CdkAccordion {
|
|
|
6
6
|
depth: number;
|
|
7
7
|
constructor(parent: AccordionComponent);
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, [{ optional: true; skipSelf: true; }]>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "aui-accordion", never, { "background": "background"; }, {}, never, ["*"], false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "aui-accordion", never, { "background": { "alias": "background"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
10
10
|
}
|
|
@@ -17,7 +17,7 @@ export declare class AnchorTreeComponent extends AnchorDirectiveChild implements
|
|
|
17
17
|
onItemClick(e: Event, item: AnchorTreeItem): void;
|
|
18
18
|
trackById(_index: number, item: AnchorTreeItem): string;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnchorTreeComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnchorTreeComponent, "aui-anchor-tree", never, { "treeItems": "treeItems"; "activeId": "activeId"; }, { "activeIdChange": "activeIdChange"; }, never, never, false, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnchorTreeComponent, "aui-anchor-tree", never, { "treeItems": { "alias": "treeItems"; "required": false; }; "activeId": { "alias": "activeId"; "required": false; }; }, { "activeIdChange": "activeIdChange"; }, never, never, false, never>;
|
|
21
21
|
}
|
|
22
22
|
export declare class AnchorComponent extends AnchorDirectiveChild implements AfterViewInit, OnDestroy {
|
|
23
23
|
protected injector: Injector;
|
|
@@ -33,5 +33,5 @@ export declare class AnchorComponent extends AnchorDirectiveChild implements Aft
|
|
|
33
33
|
ngAfterViewInit(): void;
|
|
34
34
|
ngOnDestroy(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnchorComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnchorComponent, "aui-anchor", never, { "items": "items"; "treeItems": "treeItems"; "activeId": "activeId"; }, {}, never, never, false, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnchorComponent, "aui-anchor", never, { "items": { "alias": "items"; "required": false; }; "treeItems": { "alias": "treeItems"; "required": false; }; "activeId": { "alias": "activeId"; "required": false; }; }, {}, never, never, false, never>;
|
|
37
37
|
}
|
|
@@ -30,7 +30,7 @@ export declare class AnchorLabelDirective extends AnchorDirectiveChild implement
|
|
|
30
30
|
ngOnInit(): void;
|
|
31
31
|
ngAfterContentChecked(): void;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnchorLabelDirective, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AnchorLabelDirective, "[auiAnchorLabel]", never, { "label": "auiAnchorLabel"; "labelContext": "auiAnchorLabelContext"; "id": "id"; "level": "level"; }, { "labelChange": "labelChange"; }, never, never, false, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AnchorLabelDirective, "[auiAnchorLabel]", never, { "label": { "alias": "auiAnchorLabel"; "required": false; }; "labelContext": { "alias": "auiAnchorLabelContext"; "required": false; }; "id": { "alias": "id"; "required": false; }; "level": { "alias": "level"; "required": false; }; }, { "labelChange": "labelChange"; }, never, never, false, never>;
|
|
34
34
|
}
|
|
35
35
|
export declare class AnchorDirective implements AfterContentInit, OnDestroy {
|
|
36
36
|
private readonly cfr;
|
|
@@ -53,5 +53,5 @@ export declare class AnchorDirective implements AfterContentInit, OnDestroy {
|
|
|
53
53
|
ngOnDestroy(): void;
|
|
54
54
|
adaptAnchorPosition(containerEl: HTMLElement, anchorEl: HTMLElement): void;
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnchorDirective, [null, null, null, null, { optional: true; }]>;
|
|
56
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AnchorDirective, "[auiAnchor]", never, { "auiAnchor": "auiAnchor"; "adaptPosition": "adaptPosition"; "padding": "padding"; "minTop": "minTop"; "injectId": "injectId"; }, {}, ["anchorLabels"], never, false, never>;
|
|
56
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AnchorDirective, "[auiAnchor]", never, { "auiAnchor": { "alias": "auiAnchor"; "required": false; }; "adaptPosition": { "alias": "adaptPosition"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "minTop": { "alias": "minTop"; "required": false; }; "injectId": { "alias": "injectId"; "required": false; }; }, {}, ["anchorLabels"], never, false, never>;
|
|
57
57
|
}
|
|
@@ -43,10 +43,10 @@ export declare class AutoCompleteDirective extends BaseTooltip<AutoCompleteConte
|
|
|
43
43
|
protected selectFocusedOption(): void;
|
|
44
44
|
private _filterFn;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteDirective, [null, null, null, null, null, null, { optional: true; host: true; }]>;
|
|
46
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoCompleteDirective, "input[auiAutocomplete],textarea[auiAutocomplete]", ["auiAutocomplete"], { "class": "auiAutocompleteClass"; "autocomplete": "auiAutocomplete"; "filterFn": "filterFn"; "defaultFirstSuggestion": "auiAutocompleteDefaultFirstSuggestion"; "suggestionTrigger": "auiAutocompleteTrigger"; "autoPatch": "auiAutocompleteAutoPatch"; }, { "visibleChange": "auiAutocompleteVisibleChange"; "selected": "auiAutocompleteSelected"; }, never, never, false, never>;
|
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoCompleteDirective, "input[auiAutocomplete],textarea[auiAutocomplete]", ["auiAutocomplete"], { "class": { "alias": "auiAutocompleteClass"; "required": false; }; "autocomplete": { "alias": "auiAutocomplete"; "required": false; }; "filterFn": { "alias": "filterFn"; "required": false; }; "defaultFirstSuggestion": { "alias": "auiAutocompleteDefaultFirstSuggestion"; "required": false; }; "suggestionTrigger": { "alias": "auiAutocompleteTrigger"; "required": false; }; "autoPatch": { "alias": "auiAutocompleteAutoPatch"; "required": false; }; }, { "visibleChange": "auiAutocompleteVisibleChange"; "selected": "auiAutocompleteSelected"; }, never, never, false, never>;
|
|
47
47
|
}
|
|
48
48
|
export declare class CustomAutoCompleteDirective extends AutoCompleteDirective {
|
|
49
49
|
innerSelector: string;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomAutoCompleteDirective, never>;
|
|
51
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomAutoCompleteDirective, "[auiAutocomplete]:not(input):not(textarea)", ["auiAutocomplete"], { "class": "auiAutocompleteClass"; "innerSelector": "auiAutocompleteInnerSelector"; }, {}, never, never, false, never>;
|
|
51
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomAutoCompleteDirective, "[auiAutocomplete]:not(input):not(textarea)", ["auiAutocomplete"], { "class": { "alias": "auiAutocompleteClass"; "required": false; }; "innerSelector": { "alias": "auiAutocompleteInnerSelector"; "required": false; }; }, {}, never, never, false, never>;
|
|
52
52
|
}
|
|
@@ -24,5 +24,5 @@ export declare class SuggestionComponent {
|
|
|
24
24
|
focus(): void;
|
|
25
25
|
blur(): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuggestionComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuggestionComponent, "aui-suggestion", never, { "value": "value"; "disabled": "disabled"; }, {}, never, ["*"], false, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuggestionComponent, "aui-suggestion", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
28
28
|
}
|
|
@@ -20,6 +20,6 @@ export declare class BackTopComponent {
|
|
|
20
20
|
handleClick(event: Event): void;
|
|
21
21
|
getTarget(target: TargetType): Element | Window;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackTopComponent, [{ optional: true; }]>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BackTopComponent, "aui-back-top", never, { "visibilityHeight": "visibilityHeight"; "target": "target"; }, { "click": "click"; }, never, never, false, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BackTopComponent, "aui-back-top", never, { "visibilityHeight": { "alias": "visibilityHeight"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, { "click": "click"; }, never, never, false, never>;
|
|
24
24
|
}
|
|
25
25
|
export {};
|
|
@@ -11,5 +11,5 @@ export declare class BreadcrumbComponent implements AfterContentInit {
|
|
|
11
11
|
private _separatorIcon;
|
|
12
12
|
ngAfterContentInit(): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "aui-breadcrumb", never, { "separator": "separator"; "separatorIcon": "separatorIcon"; }, {}, ["items"], ["*"], false, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "aui-breadcrumb", never, { "separator": { "alias": "separator"; "required": false; }; "separatorIcon": { "alias": "separatorIcon"; "required": false; }; }, {}, ["items"], ["*"], false, never>;
|
|
15
15
|
}
|
|
@@ -29,5 +29,5 @@ export declare class ButtonComponent implements OnDestroy {
|
|
|
29
29
|
ngOnDestroy(): void;
|
|
30
30
|
private switchAssertClass;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[aui-button]", never, { "type": "aui-button"; "size": "size"; "plain": "plain"; "loading": "loading"; "round": "round"; "square": "square"; }, {}, never, ["*"], false, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[aui-button]", never, { "type": { "alias": "aui-button"; "required": false; }; "size": { "alias": "size"; "required": false; }; "plain": { "alias": "plain"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "round": { "alias": "round"; "required": false; }; "square": { "alias": "square"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
33
33
|
}
|
package/card/card.component.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class CardComponent {
|
|
3
3
|
divider: boolean;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "aui-card", never, { "divider": "divider"; }, {}, never, ["[auiCardHeader]", "*", "[auiCardFooter]"], false, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "aui-card", never, { "divider": { "alias": "divider"; "required": false; }; }, {}, never, ["[auiCardHeader]", "*", "[auiCardFooter]"], false, never>;
|
|
6
6
|
}
|
|
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class CardHeaderDirective {
|
|
3
3
|
size: 'default' | 'secondary';
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderDirective, "[auiCardHeader]", never, { "size": "size"; }, {}, never, never, false, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderDirective, "[auiCardHeader]", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
6
6
|
}
|
|
7
7
|
export declare class CardFooterDirective {
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterDirective, never>;
|
|
@@ -12,5 +12,5 @@ export declare class CheckboxGroupComponent<T> extends CommonFormControl<T[]> {
|
|
|
12
12
|
onCheckboxChange(checkbox: CheckboxComponent<T>): void;
|
|
13
13
|
onCheckboxBlur(): void;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupComponent<any>, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent<any>, "aui-checkbox-group", never, { "direction": "direction"; "trackFn": "trackFn"; }, {}, ["checkboxes"], ["*"], false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent<any>, "aui-checkbox-group", never, { "direction": { "alias": "direction"; "required": false; }; "trackFn": { "alias": "trackFn"; "required": false; }; }, {}, ["checkboxes"], ["*"], false, never>;
|
|
16
16
|
}
|
|
@@ -24,5 +24,5 @@ export declare class CheckboxComponent<T> extends CommonFormControl<boolean> imp
|
|
|
24
24
|
onClick(): void;
|
|
25
25
|
onBlur(): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent<any>, [null, { optional: true; }, null]>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent<any>, "aui-checkbox", never, { "name": "name"; "type": "type"; "label": "label"; "indeterminate": "indeterminate"; }, {}, never, ["*"], false, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent<any>, "aui-checkbox", never, { "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
28
28
|
}
|
|
@@ -38,5 +38,5 @@ export declare class DatePickerPanelComponent extends CommonFormControl<Dayjs> {
|
|
|
38
38
|
timeDateChange(time: TimePickerModel): void;
|
|
39
39
|
setToday(): void;
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerPanelComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerPanelComponent, "aui-date-picker-panel", never, { "clearable": "clearable"; "clearText": "clearText"; "type": "type"; "showTime": "showTime"; "disabledDate": "disabledDate"; "disabledTime": "disabledTime"; "weekStartDay": "weekStartDay"; "showFooter": "showFooter"; "footerTemplate": "footerTemplate"; "extraFooter": "extraFooter"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "confirm": "confirm"; "clear": "clear"; }, never, never, false, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerPanelComponent, "aui-date-picker-panel", never, { "clearable": { "alias": "clearable"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "type": { "alias": "type"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "disabledDate": { "alias": "disabledDate"; "required": false; }; "disabledTime": { "alias": "disabledTime"; "required": false; }; "weekStartDay": { "alias": "weekStartDay"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "extraFooter": { "alias": "extraFooter"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; }, { "confirm": "confirm"; "clear": "clear"; }, never, never, false, never>;
|
|
42
42
|
}
|
|
@@ -7,5 +7,5 @@ export declare class CalendarFooterComponent {
|
|
|
7
7
|
confirm: EventEmitter<void>;
|
|
8
8
|
clear: EventEmitter<void>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarFooterComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarFooterComponent, "aui-calendar-footer", never, { "clearable": "clearable"; "clearText": "clearText"; "customAction": "customAction"; }, { "confirm": "confirm"; "clear": "clear"; }, never, ["*"], false, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarFooterComponent, "aui-calendar-footer", never, { "clearable": { "alias": "clearable"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "customAction": { "alias": "customAction"; "required": false; }; }, { "confirm": "confirm"; "clear": "clear"; }, never, ["*"], false, never>;
|
|
11
11
|
}
|
|
@@ -19,5 +19,5 @@ export declare class CalendarHeaderComponent {
|
|
|
19
19
|
navHead(range: DateNavRange, value: number): void;
|
|
20
20
|
clickNav: (range: DateNavRange) => void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarHeaderComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarHeaderComponent, "aui-calendar-header", never, { "dateNavRange": "dateNavRange"; "anchor": "anchor"; "maxAvail": "maxAvail"; "minAvail": "minAvail"; }, { "navRangeChange": "navRangeChange"; "anchorChange": "anchorChange"; }, never, never, false, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarHeaderComponent, "aui-calendar-header", never, { "dateNavRange": { "alias": "dateNavRange"; "required": false; }; "anchor": { "alias": "anchor"; "required": false; }; "maxAvail": { "alias": "maxAvail"; "required": false; }; "minAvail": { "alias": "minAvail"; "required": false; }; }, { "navRangeChange": "navRangeChange"; "anchorChange": "anchorChange"; }, never, never, false, never>;
|
|
23
23
|
}
|
|
@@ -31,5 +31,5 @@ export declare class PickerPanelComponent implements OnChanges {
|
|
|
31
31
|
selectValue(value: Dayjs): void;
|
|
32
32
|
trackByFn(): DateNavRange;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<PickerPanelComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PickerPanelComponent, "aui-picker-panel", never, { "navRange": "navRange"; "type": "type"; "anchor": "anchor"; "matchDates": "matchDates"; "disabledDate": "disabledDate"; "weekStartDay": "weekStartDay"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "select": "select"; "hovered": "hovered"; }, never, never, false, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PickerPanelComponent, "aui-picker-panel", never, { "navRange": { "alias": "navRange"; "required": false; }; "type": { "alias": "type"; "required": false; }; "anchor": { "alias": "anchor"; "required": false; }; "matchDates": { "alias": "matchDates"; "required": false; }; "disabledDate": { "alias": "disabledDate"; "required": false; }; "weekStartDay": { "alias": "weekStartDay"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; }, { "select": "select"; "hovered": "hovered"; }, never, never, false, never>;
|
|
35
35
|
}
|
|
@@ -47,5 +47,5 @@ export declare class DateRangePickerPanelComponent extends CommonFormControl<Day
|
|
|
47
47
|
timeChange(time: TimePickerModel): void;
|
|
48
48
|
syncTime(): void;
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerPanelComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerPanelComponent, "aui-date-range-picker-panel", never, { "clearable": "clearable"; "clearText": "clearText"; "showTime": "showTime"; "showFooter": "showFooter"; "disabledDate": "disabledDate"; "disabledTime": "disabledTime"; "weekStartDay": "weekStartDay"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "clear": "clear"; "confirm": "confirm"; }, never, never, false, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerPanelComponent, "aui-date-range-picker-panel", never, { "clearable": { "alias": "clearable"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "disabledDate": { "alias": "disabledDate"; "required": false; }; "disabledTime": { "alias": "disabledTime"; "required": false; }; "weekStartDay": { "alias": "weekStartDay"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; }, { "clear": "clear"; "confirm": "confirm"; }, never, never, false, never>;
|
|
51
51
|
}
|
|
@@ -30,5 +30,5 @@ export declare class DatePickerComponent extends CommonFormControl<ConfigType, D
|
|
|
30
30
|
clearValue(): void;
|
|
31
31
|
tooltipVisibleChange(visible: boolean): void;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "aui-date-picker", never, { "clearable": "clearable"; "clearText": "clearText"; "format": "format"; "showTime": "showTime"; "type": "type"; "size": "size"; "disabledDate": "disabledDate"; "disabledTime": "disabledTime"; "minDate": "minDate"; "maxDate": "maxDate"; "weekStartDay": "weekStartDay"; "showFooter": "showFooter"; "footerTemplate": "footerTemplate"; "extraFooter": "extraFooter"; "placeholder": "placeholder"; }, { "visibleChange": "visibleChange"; }, never, never, false, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "aui-date-picker", never, { "clearable": { "alias": "clearable"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "format": { "alias": "format"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabledDate": { "alias": "disabledDate"; "required": false; }; "disabledTime": { "alias": "disabledTime"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "weekStartDay": { "alias": "weekStartDay"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "extraFooter": { "alias": "extraFooter"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "visibleChange": "visibleChange"; }, never, never, false, never>;
|
|
34
34
|
}
|
|
@@ -26,5 +26,5 @@ export declare class RangePickerComponent extends CommonFormControl<ConfigType[]
|
|
|
26
26
|
clearValue(): void;
|
|
27
27
|
tooltipVisibleChange(visible: boolean): void;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<RangePickerComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RangePickerComponent, "aui-range-picker", never, { "clearable": "clearable"; "clearText": "clearText"; "format": "format"; "showFooter": "showFooter"; "showTime": "showTime"; "disabledDate": "disabledDate"; "minDate": "minDate"; "maxDate": "maxDate"; "disabledTime": "disabledTime"; "weekStartDay": "weekStartDay"; "size": "size"; }, { "visibleChange": "visibleChange"; }, never, never, false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RangePickerComponent, "aui-range-picker", never, { "clearable": { "alias": "clearable"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "format": { "alias": "format"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "disabledDate": { "alias": "disabledDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "disabledTime": { "alias": "disabledTime"; "required": false; }; "weekStartDay": { "alias": "weekStartDay"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "visibleChange": "visibleChange"; }, never, never, false, never>;
|
|
30
30
|
}
|
|
@@ -27,5 +27,5 @@ export declare class DatePickerTriggerComponent {
|
|
|
27
27
|
constructor();
|
|
28
28
|
focusInput(): void;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerTriggerComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerTriggerComponent, "aui-date-picker-trigger", never, { "format": "format"; "size": "size"; "isRange": "isRange"; "value": "value"; "clearable": "clearable"; "placeholder": "placeholder"; "startPlaceholder": "startPlaceholder"; "endPlaceholder": "endPlaceholder"; "disabled": "disabled"; }, { "blur": "blur"; "clear": "clear"; }, never, never, false, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerTriggerComponent, "aui-date-picker-trigger", never, { "format": { "alias": "format"; "required": false; }; "size": { "alias": "size"; "required": false; }; "isRange": { "alias": "isRange"; "required": false; }; "value": { "alias": "value"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "startPlaceholder": { "alias": "startPlaceholder"; "required": false; }; "endPlaceholder": { "alias": "endPlaceholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "blur": "blur"; "clear": "clear"; }, never, never, false, never>;
|
|
31
31
|
}
|
|
@@ -11,5 +11,5 @@ export declare class DialogCloseDirective implements OnInit {
|
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
closeDialog(): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogCloseDirective, [{ optional: true; }, null, null]>;
|
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DialogCloseDirective, "button[auiDialogClose]", ["auiDialogClose"], { "result": "auiDialogClose"; }, {}, never, never, false, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DialogCloseDirective, "button[auiDialogClose]", ["auiDialogClose"], { "result": { "alias": "auiDialogClose"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
15
|
}
|
|
@@ -14,5 +14,5 @@ export declare class DialogHeaderComponent implements OnInit {
|
|
|
14
14
|
constructor(dialogRef: DialogRef<any>, elementRef: ElementRef, dialogService: DialogService);
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogHeaderComponent, [{ optional: true; }, null, null]>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogHeaderComponent, "aui-dialog-header", never, { "divider": "divider"; "closeable": "closeable"; "result": "result"; }, {}, never, ["*"], false, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogHeaderComponent, "aui-dialog-header", never, { "divider": { "alias": "divider"; "required": false; }; "closeable": { "alias": "closeable"; "required": false; }; "result": { "alias": "result"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
18
18
|
}
|
|
@@ -11,7 +11,6 @@ export declare class DialogComponent {
|
|
|
11
11
|
portalOutlet: CdkPortalOutlet;
|
|
12
12
|
bem: Bem;
|
|
13
13
|
config: DialogConfig;
|
|
14
|
-
hidden: boolean;
|
|
15
14
|
state: 'void' | 'enter' | 'exit';
|
|
16
15
|
animationStateChanged: EventEmitter<AnimationEvent>;
|
|
17
16
|
elementFocusedBeforeModalWasOpened: HTMLElement;
|
|
@@ -20,11 +19,6 @@ export declare class DialogComponent {
|
|
|
20
19
|
set id(value: string);
|
|
21
20
|
private readonly _id;
|
|
22
21
|
get rootClass(): string;
|
|
23
|
-
get customStyle(): {
|
|
24
|
-
opacity: number;
|
|
25
|
-
} | {
|
|
26
|
-
opacity?: undefined;
|
|
27
|
-
};
|
|
28
22
|
get zoomClassMap(): {
|
|
29
23
|
enter: string;
|
|
30
24
|
enterActive: string;
|
|
@@ -19,8 +19,6 @@ export declare class DialogService {
|
|
|
19
19
|
open<T, D = any, R = any>(compOrTempRef: ComponentType<T> | TemplateRef<T>, config?: DialogConfig<D>): DialogRef<T, R>;
|
|
20
20
|
confirm<T = unknown, R = unknown>(config: ConfirmDialogConfig<T, R>): Promise<T>;
|
|
21
21
|
closeAll(): void;
|
|
22
|
-
private hiddenPrevDialog;
|
|
23
|
-
private showPrevDialog;
|
|
24
22
|
private createOverlay;
|
|
25
23
|
private getOverlayConfig;
|
|
26
24
|
private attachDialog;
|
|
@@ -59,5 +59,5 @@ export declare class DrawerComponent<T = ComponentType<unknown>, R = unknown, D
|
|
|
59
59
|
maskClick(): void;
|
|
60
60
|
ngOnDestroy(): void;
|
|
61
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawerComponent<any, any, any>, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerComponent<any, any, any>, "aui-drawer", never, { "title": "title"; "footer": "footer"; "size": "size"; "offsetY": "offsetY"; "visible": "visible"; "content": "content"; "hideOnClickOutside": "hideOnClickOutside"; "showClose": "showClose"; "drawerClass": "drawerClass"; "mask": "mask"; "maskClosable": "maskClosable"; "divider": "divider"; "width": "width"; }, { "drawerViewInit": "drawerViewInit"; "close": "close"; }, ["titleTemplate", "contentTemplate", "footerTemplate"], never, false, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerComponent<any, any, any>, "aui-drawer", never, { "title": { "alias": "title"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "size": { "alias": "size"; "required": false; }; "offsetY": { "alias": "offsetY"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "content": { "alias": "content"; "required": false; }; "hideOnClickOutside": { "alias": "hideOnClickOutside"; "required": false; }; "showClose": { "alias": "showClose"; "required": false; }; "drawerClass": { "alias": "drawerClass"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "maskClosable": { "alias": "maskClosable"; "required": false; }; "divider": { "alias": "divider"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "drawerViewInit": "drawerViewInit"; "close": "close"; }, ["titleTemplate", "contentTemplate", "footerTemplate"], never, false, never>;
|
|
63
63
|
}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class DropdownActiveDirective extends TooltipActiveDirective {
|
|
4
4
|
customClass: string | string[];
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownActiveDirective, never>;
|
|
6
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownActiveDirective, "[auiDropdownActive]", never, { "customClass": "auiDropdownActive"; }, {}, never, never, false, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownActiveDirective, "[auiDropdownActive]", never, { "customClass": { "alias": "auiDropdownActive"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
7
|
}
|
|
@@ -17,5 +17,5 @@ export declare class DropdownButtonComponent {
|
|
|
17
17
|
get disableTrigger(): boolean;
|
|
18
18
|
private _disabled;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownButtonComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownButtonComponent, "aui-dropdown-button", never, { "type": "type"; "plain": "plain"; "size": "size"; "loading": "loading"; "disabled": "disabled"; }, { "buttonClick": "buttonClick"; }, ["menu"], ["*"], false, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownButtonComponent, "aui-dropdown-button", never, { "type": { "alias": "type"; "required": false; }; "plain": { "alias": "plain"; "required": false; }; "size": { "alias": "size"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "buttonClick": "buttonClick"; }, ["menu"], ["*"], false, never>;
|
|
21
21
|
}
|
|
@@ -13,5 +13,5 @@ export declare class DropdownDirective extends BaseTooltip implements OnInit {
|
|
|
13
13
|
constructor(overlay: Overlay, viewContainerRef: ViewContainerRef, elRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef, ngZone: NgZone);
|
|
14
14
|
ngOnInit(): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[auiDropdown]", ["auiDropdown"], { "class": "auiDropdownClass"; "disabled": "auiDropdownDisabled"; "position": "auiDropdownPosition"; "trigger": "auiDropdownTrigger"; "menu": "auiDropdown"; "lazyContentContext": "auiDropdownContext"; "hideOnClick": "auiDropdownHideOnClick"; }, { "visibleChange": "auiDropdownVisibleChange"; }, never, never, false, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[auiDropdown]", ["auiDropdown"], { "class": { "alias": "auiDropdownClass"; "required": false; }; "disabled": { "alias": "auiDropdownDisabled"; "required": false; }; "position": { "alias": "auiDropdownPosition"; "required": false; }; "trigger": { "alias": "auiDropdownTrigger"; "required": false; }; "menu": { "alias": "auiDropdown"; "required": false; }; "lazyContentContext": { "alias": "auiDropdownContext"; "required": false; }; "hideOnClick": { "alias": "auiDropdownHideOnClick"; "required": false; }; }, { "visibleChange": "auiDropdownVisibleChange"; }, never, never, false, never>;
|
|
17
17
|
}
|
|
@@ -12,5 +12,5 @@ export declare class MenuComponent {
|
|
|
12
12
|
menuItems: QueryList<MenuItemComponent>;
|
|
13
13
|
get hasEnabledItem(): boolean;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "aui-menu", never, { "size": "size"; }, {}, ["lazyContent", "menuItems"], ["*"], false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "aui-menu", never, { "size": { "alias": "size"; "required": false; }; }, {}, ["lazyContent", "menuItems"], ["*"], false, never>;
|
|
16
16
|
}
|
|
@@ -11,5 +11,5 @@ export declare class MenuItemComponent {
|
|
|
11
11
|
actived: boolean;
|
|
12
12
|
get className(): string;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemComponent, "aui-menu-item", never, { "disabled": "disabled"; "divide": "divide"; "type": "type"; "actived": "actived"; }, {}, never, ["*"], false, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemComponent, "aui-menu-item", never, { "disabled": { "alias": "disabled"; "required": false; }; "divide": { "alias": "divide"; "required": false; }; "type": { "alias": "type"; "required": false; }; "actived": { "alias": "actived"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
15
15
|
}
|
|
@@ -12,5 +12,5 @@ export declare class SubmenuComponent extends MenuItemComponent {
|
|
|
12
12
|
menuItems: QueryList<MenuItemComponent>;
|
|
13
13
|
get hasEnabledItem(): boolean;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubmenuComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubmenuComponent, "aui-submenu", never, { "trigger": "trigger"; "size": "size"; "disabled": "disabled"; }, {}, ["menuItems"], ["*", "aui-menu-item"], false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubmenuComponent, "aui-submenu", never, { "trigger": { "alias": "trigger"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["menuItems"], ["*", "aui-menu-item"], false, never>;
|
|
16
16
|
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { animate, state, style, transition, trigger, } from '@angular/animations';
|
|
2
|
+
import { CdkAccordionItem } from '@angular/cdk/accordion';
|
|
3
|
+
import { ChangeDetectionStrategy, Component, ContentChild, Directive, Input, TemplateRef, ViewEncapsulation, } from '@angular/core';
|
|
4
|
+
import { filter, startWith, take } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../accordion.component";
|
|
7
|
+
import * as i2 from "@angular/cdk/collections";
|
|
8
|
+
import * as i3 from "@angular/common";
|
|
9
|
+
import * as i4 from "../../icon/icon.component";
|
|
10
|
+
export class AccordionItemHeaderDirective {
|
|
11
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionItemHeaderDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
12
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: AccordionItemHeaderDirective, selector: "[auiAccordionItemHeader]", ngImport: i0 });
|
|
13
|
+
}
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionItemHeaderDirective, decorators: [{
|
|
15
|
+
type: Directive,
|
|
16
|
+
args: [{
|
|
17
|
+
selector: '[auiAccordionItemHeader]',
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
export class AccordionItemContentDirective {
|
|
21
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionItemContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
22
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.4", type: AccordionItemContentDirective, selector: "[auiAccordionContent]", ngImport: i0 });
|
|
23
|
+
}
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionItemContentDirective, decorators: [{
|
|
25
|
+
type: Directive,
|
|
26
|
+
args: [{
|
|
27
|
+
selector: '[auiAccordionContent]',
|
|
28
|
+
}]
|
|
29
|
+
}] });
|
|
30
|
+
export class AccordionItemComponent extends CdkAccordionItem {
|
|
31
|
+
background = true;
|
|
32
|
+
_lazyContentTpl;
|
|
33
|
+
lazyContentTpl;
|
|
34
|
+
constructor(accordion, cdr, uniqueSelectionDispatcher) {
|
|
35
|
+
super(accordion, cdr, uniqueSelectionDispatcher);
|
|
36
|
+
}
|
|
37
|
+
ngAfterContentInit() {
|
|
38
|
+
if (this._lazyContentTpl) {
|
|
39
|
+
this.opened
|
|
40
|
+
.pipe(startWith(null), filter(() => !!this.expanded), take(1))
|
|
41
|
+
.subscribe(() => {
|
|
42
|
+
this.lazyContentTpl = this._lazyContentTpl;
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionItemComponent, deps: [{ token: i1.AccordionComponent }, { token: i0.ChangeDetectorRef }, { token: i2.UniqueSelectionDispatcher }], target: i0.ɵɵFactoryTarget.Component });
|
|
47
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: AccordionItemComponent, selector: "aui-accordion-item", inputs: { background: "background" }, queries: [{ propertyName: "_lazyContentTpl", first: true, predicate: AccordionItemContentDirective, descendants: true, read: TemplateRef, static: true }], usesInheritance: true, ngImport: i0, template: "<div class=\"aui-accordion-item\">\n <div class=\"aui-accordion-item__header\">\n <button\n type=\"button\"\n class=\"aui-accordion-item__expand-button\"\n [class.isExpanded]=\"expanded\"\n [disabled]=\"disabled\"\n (click)=\"toggle()\"\n >\n <aui-icon icon=\"angle_right\"></aui-icon>\n </button>\n <div\n class=\"aui-accordion-item__header-content\"\n [class.aui-accordion-item__header-content--expanded]=\"expanded\"\n >\n <ng-content select=\"[auiAccordionItemHeader]\"></ng-content>\n </div>\n </div>\n <div\n *ngIf=\"expanded\"\n class=\"aui-accordion-item__body\"\n [id]=\"id\"\n [@expand]=\"expanded ? 'expanded' : 'collapsed'\"\n >\n <div\n class=\"aui-accordion-item__content\"\n [class.hasBackground]=\"background\"\n >\n <ng-content></ng-content>\n <ng-template [ngTemplateOutlet]=\"lazyContentTpl\"></ng-template>\n </div>\n </div>\n</div>\n", styles: [".aui-accordion-item{display:block;padding:20px;border:1px solid rgb(var(--aui-color-n-7));border-radius:var(--aui-border-radius-l);background-color:rgb(var(--aui-color-n-10))}.aui-accordion-item__expand-button{display:inline-flex;justify-content:center;align-items:center;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m);color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));border-radius:50%;border:none;cursor:pointer;transition:transform .1s ease-in-out}.aui-accordion-item__expand-button aui-icon{display:flex;justify-content:center;align-items:center;width:var(--aui-icon-size-s);height:var(--aui-icon-size-s);font-size:var(--aui-icon-size-s)}.aui-accordion-item__expand-button:hover{background-color:rgb(var(--aui-color-p-7))}.aui-accordion-item__expand-button:active{background-color:rgb(var(--aui-color-p-5))}.aui-accordion-item__expand-button.isExpanded{transform:rotate(90deg);color:#fff;background-color:rgb(var(--aui-color-primary))}.aui-accordion-item__expand-button.isExpanded:hover{background-color:rgb(var(--aui-color-p-1))}.aui-accordion-item__expand-button.isExpanded:active{background-color:rgb(var(--aui-color-p-0))}.aui-accordion-item__expand-button[disabled],.aui-accordion-item__expand-button.isExpanded[disabled]{background-color:rgb(var(--aui-color-n-8));color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-accordion-item__expand-button:first-child{margin-right:20px}.aui-accordion-item__expand-button:last-child{margin-left:20px}.aui-accordion-item__header{display:inline-flex;align-items:center;width:100%;font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m);font-weight:var(--aui-font-weight-normal);color:rgb(var(--aui-color-main-text))}.aui-accordion-item__header-content{max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aui-accordion-item__body{border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-accordion-item__content{margin-top:16px;border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-accordion-item__content.hasBackground{padding:16px;background-color:rgb(var(--aui-color-n-9))}aui-accordion-item+aui-accordion-item .aui-accordion-item{margin-top:var(--aui-spacing-m)}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i4.IconComponent, selector: "aui-icon", inputs: ["icon", "light", "dark", "link", "margin", "size", "color", "background", "backgroundColor"] }], viewProviders: [AccordionItemComponent], animations: [
|
|
48
|
+
trigger('expand', [
|
|
49
|
+
state('*', style({ height: 0 })),
|
|
50
|
+
state('expanded', style({ height: '*' })),
|
|
51
|
+
transition('* <=> expanded', [animate('0.1s ease-in-out')]),
|
|
52
|
+
]),
|
|
53
|
+
], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
54
|
+
}
|
|
55
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionItemComponent, decorators: [{
|
|
56
|
+
type: Component,
|
|
57
|
+
args: [{ selector: 'aui-accordion-item', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, preserveWhitespaces: false, animations: [
|
|
58
|
+
trigger('expand', [
|
|
59
|
+
state('*', style({ height: 0 })),
|
|
60
|
+
state('expanded', style({ height: '*' })),
|
|
61
|
+
transition('* <=> expanded', [animate('0.1s ease-in-out')]),
|
|
62
|
+
]),
|
|
63
|
+
], viewProviders: [AccordionItemComponent], template: "<div class=\"aui-accordion-item\">\n <div class=\"aui-accordion-item__header\">\n <button\n type=\"button\"\n class=\"aui-accordion-item__expand-button\"\n [class.isExpanded]=\"expanded\"\n [disabled]=\"disabled\"\n (click)=\"toggle()\"\n >\n <aui-icon icon=\"angle_right\"></aui-icon>\n </button>\n <div\n class=\"aui-accordion-item__header-content\"\n [class.aui-accordion-item__header-content--expanded]=\"expanded\"\n >\n <ng-content select=\"[auiAccordionItemHeader]\"></ng-content>\n </div>\n </div>\n <div\n *ngIf=\"expanded\"\n class=\"aui-accordion-item__body\"\n [id]=\"id\"\n [@expand]=\"expanded ? 'expanded' : 'collapsed'\"\n >\n <div\n class=\"aui-accordion-item__content\"\n [class.hasBackground]=\"background\"\n >\n <ng-content></ng-content>\n <ng-template [ngTemplateOutlet]=\"lazyContentTpl\"></ng-template>\n </div>\n </div>\n</div>\n", styles: [".aui-accordion-item{display:block;padding:20px;border:1px solid rgb(var(--aui-color-n-7));border-radius:var(--aui-border-radius-l);background-color:rgb(var(--aui-color-n-10))}.aui-accordion-item__expand-button{display:inline-flex;justify-content:center;align-items:center;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m);color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));border-radius:50%;border:none;cursor:pointer;transition:transform .1s ease-in-out}.aui-accordion-item__expand-button aui-icon{display:flex;justify-content:center;align-items:center;width:var(--aui-icon-size-s);height:var(--aui-icon-size-s);font-size:var(--aui-icon-size-s)}.aui-accordion-item__expand-button:hover{background-color:rgb(var(--aui-color-p-7))}.aui-accordion-item__expand-button:active{background-color:rgb(var(--aui-color-p-5))}.aui-accordion-item__expand-button.isExpanded{transform:rotate(90deg);color:#fff;background-color:rgb(var(--aui-color-primary))}.aui-accordion-item__expand-button.isExpanded:hover{background-color:rgb(var(--aui-color-p-1))}.aui-accordion-item__expand-button.isExpanded:active{background-color:rgb(var(--aui-color-p-0))}.aui-accordion-item__expand-button[disabled],.aui-accordion-item__expand-button.isExpanded[disabled]{background-color:rgb(var(--aui-color-n-8));color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-accordion-item__expand-button:first-child{margin-right:20px}.aui-accordion-item__expand-button:last-child{margin-left:20px}.aui-accordion-item__header{display:inline-flex;align-items:center;width:100%;font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m);font-weight:var(--aui-font-weight-normal);color:rgb(var(--aui-color-main-text))}.aui-accordion-item__header-content{max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aui-accordion-item__body{border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-accordion-item__content{margin-top:16px;border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-accordion-item__content.hasBackground{padding:16px;background-color:rgb(var(--aui-color-n-9))}aui-accordion-item+aui-accordion-item .aui-accordion-item{margin-top:var(--aui-spacing-m)}\n"] }]
|
|
64
|
+
}], ctorParameters: function () { return [{ type: i1.AccordionComponent }, { type: i0.ChangeDetectorRef }, { type: i2.UniqueSelectionDispatcher }]; }, propDecorators: { background: [{
|
|
65
|
+
type: Input
|
|
66
|
+
}], _lazyContentTpl: [{
|
|
67
|
+
type: ContentChild,
|
|
68
|
+
args: [AccordionItemContentDirective, {
|
|
69
|
+
read: TemplateRef,
|
|
70
|
+
static: true,
|
|
71
|
+
}]
|
|
72
|
+
}] } });
|
|
73
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLWl0ZW0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2FjY29yZGlvbi9hY2NvcmRpb24taXRlbS9hY2NvcmRpb24taXRlbS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9zcmMvYWNjb3JkaW9uL2FjY29yZGlvbi1pdGVtL2FjY29yZGlvbi1pdGVtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxPQUFPLEVBQ1AsS0FBSyxFQUNMLEtBQUssRUFDTCxVQUFVLEVBQ1YsT0FBTyxHQUNSLE1BQU0scUJBQXFCLENBQUM7QUFDN0IsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFMUQsT0FBTyxFQUVMLHVCQUF1QixFQUV2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLFNBQVMsRUFDVCxLQUFLLEVBQ0wsV0FBVyxFQUNYLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxJQUFJLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7OztBQU8vQyxNQUFNLE9BQU8sNEJBQTRCO3VHQUE1Qiw0QkFBNEI7MkZBQTVCLDRCQUE0Qjs7MkZBQTVCLDRCQUE0QjtrQkFIeEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsMEJBQTBCO2lCQUNyQzs7QUFLRCxNQUFNLE9BQU8sNkJBQTZCO3VHQUE3Qiw2QkFBNkI7MkZBQTdCLDZCQUE2Qjs7MkZBQTdCLDZCQUE2QjtrQkFIekMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsdUJBQXVCO2lCQUNsQzs7QUFrQkQsTUFBTSxPQUFPLHNCQUNYLFNBQVEsZ0JBQWdCO0lBSXhCLFVBQVUsR0FBRyxJQUFJLENBQUM7SUFNbEIsZUFBZSxDQUF1QjtJQUV0QyxjQUFjLENBQXVCO0lBR3JDLFlBQ0UsU0FBNkIsRUFDN0IsR0FBc0IsRUFDdEIseUJBQW9EO1FBRXBELEtBQUssQ0FBQyxTQUFTLEVBQUUsR0FBRyxFQUFFLHlCQUF5QixDQUFDLENBQUM7SUFDbkQsQ0FBQztJQUVELGtCQUFrQjtRQUNoQixJQUFJLElBQUksQ0FBQyxlQUFlLEVBQUU7WUFFeEIsSUFBSSxDQUFDLE1BQU07aUJBQ1IsSUFBSSxDQUNILFNBQVMsQ0FBQyxJQUFZLENBQUMsRUFDdkIsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQzdCLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FDUjtpQkFDQSxTQUFTLENBQUMsR0FBRyxFQUFFO2dCQUNkLElBQUksQ0FBQyxjQUFjLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQztZQUM3QyxDQUFDLENBQUMsQ0FBQztTQUNOO0lBQ0gsQ0FBQzt1R0FyQ1Usc0JBQXNCOzJGQUF0QixzQkFBc0IsNklBT25CLDZCQUE2QiwyQkFDbkMsV0FBVyxrRUN4RHJCLHE4QkFpQ0EscW9GRGFpQixDQUFDLHNCQUFzQixDQUFDLGNBUDNCO1lBQ1YsT0FBTyxDQUFDLFFBQVEsRUFBRTtnQkFDaEIsS0FBSyxDQUFDLEdBQUcsRUFBRSxLQUFLLENBQUMsRUFBRSxNQUFNLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQztnQkFDaEMsS0FBSyxDQUFDLFVBQVUsRUFBRSxLQUFLLENBQUMsRUFBRSxNQUFNLEVBQUUsR0FBRyxFQUFFLENBQUMsQ0FBQztnQkFDekMsVUFBVSxDQUFDLGdCQUFnQixFQUFFLENBQUMsT0FBTyxDQUFDLGtCQUFrQixDQUFDLENBQUMsQ0FBQzthQUM1RCxDQUFDO1NBQ0g7OzJGQUdVLHNCQUFzQjtrQkFoQmxDLFNBQVM7K0JBQ0Usb0JBQW9CLG1CQUdiLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksdUJBQ2hCLEtBQUssY0FDZDt3QkFDVixPQUFPLENBQUMsUUFBUSxFQUFFOzRCQUNoQixLQUFLLENBQUMsR0FBRyxFQUFFLEtBQUssQ0FBQyxFQUFFLE1BQU0sRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDOzRCQUNoQyxLQUFLLENBQUMsVUFBVSxFQUFFLEtBQUssQ0FBQyxFQUFFLE1BQU0sRUFBRSxHQUFHLEVBQUUsQ0FBQyxDQUFDOzRCQUN6QyxVQUFVLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQyxPQUFPLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxDQUFDO3lCQUM1RCxDQUFDO3FCQUNILGlCQUNjLHdCQUF3QjtpTEFPdkMsVUFBVTtzQkFEVCxLQUFLO2dCQU9OLGVBQWU7c0JBSmQsWUFBWTt1QkFBQyw2QkFBNkIsRUFBRTt3QkFDM0MsSUFBSSxFQUFFLFdBQVc7d0JBQ2pCLE1BQU0sRUFBRSxJQUFJO3FCQUNiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgYW5pbWF0ZSxcbiAgc3RhdGUsXG4gIHN0eWxlLFxuICB0cmFuc2l0aW9uLFxuICB0cmlnZ2VyLFxufSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcbmltcG9ydCB7IENka0FjY29yZGlvbkl0ZW0gfSBmcm9tICdAYW5ndWxhci9jZGsvYWNjb3JkaW9uJztcbmltcG9ydCB7IFVuaXF1ZVNlbGVjdGlvbkRpc3BhdGNoZXIgfSBmcm9tICdAYW5ndWxhci9jZGsvY29sbGVjdGlvbnMnO1xuaW1wb3J0IHtcbiAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBDb21wb25lbnQsXG4gIENvbnRlbnRDaGlsZCxcbiAgRGlyZWN0aXZlLFxuICBJbnB1dCxcbiAgVGVtcGxhdGVSZWYsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGZpbHRlciwgc3RhcnRXaXRoLCB0YWtlIH0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB7IEFjY29yZGlvbkNvbXBvbmVudCB9IGZyb20gJy4uL2FjY29yZGlvbi5jb21wb25lbnQnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpQWNjb3JkaW9uSXRlbUhlYWRlcl0nLFxufSlcbmV4cG9ydCBjbGFzcyBBY2NvcmRpb25JdGVtSGVhZGVyRGlyZWN0aXZlIHt9XG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpQWNjb3JkaW9uQ29udGVudF0nLFxufSlcbmV4cG9ydCBjbGFzcyBBY2NvcmRpb25JdGVtQ29udGVudERpcmVjdGl2ZSB7fVxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXVpLWFjY29yZGlvbi1pdGVtJyxcbiAgdGVtcGxhdGVVcmw6ICdhY2NvcmRpb24taXRlbS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWydhY2NvcmRpb24taXRlbS5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJlc2VydmVXaGl0ZXNwYWNlczogZmFsc2UsXG4gIGFuaW1hdGlvbnM6IFtcbiAgICB0cmlnZ2VyKCdleHBhbmQnLCBbXG4gICAgICBzdGF0ZSgnKicsIHN0eWxlKHsgaGVpZ2h0OiAwIH0pKSxcbiAgICAgIHN0YXRlKCdleHBhbmRlZCcsIHN0eWxlKHsgaGVpZ2h0OiAnKicgfSkpLFxuICAgICAgdHJhbnNpdGlvbignKiA8PT4gZXhwYW5kZWQnLCBbYW5pbWF0ZSgnMC4xcyBlYXNlLWluLW91dCcpXSksXG4gICAgXSksXG4gIF0sXG4gIHZpZXdQcm92aWRlcnM6IFtBY2NvcmRpb25JdGVtQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgQWNjb3JkaW9uSXRlbUNvbXBvbmVudFxuICBleHRlbmRzIENka0FjY29yZGlvbkl0ZW1cbiAgaW1wbGVtZW50cyBBZnRlckNvbnRlbnRJbml0XG57XG4gIEBJbnB1dCgpXG4gIGJhY2tncm91bmQgPSB0cnVlO1xuXG4gIEBDb250ZW50Q2hpbGQoQWNjb3JkaW9uSXRlbUNvbnRlbnREaXJlY3RpdmUsIHtcbiAgICByZWFkOiBUZW1wbGF0ZVJlZixcbiAgICBzdGF0aWM6IHRydWUsXG4gIH0pXG4gIF9sYXp5Q29udGVudFRwbDogVGVtcGxhdGVSZWY8dW5rbm93bj47XG5cbiAgbGF6eUNvbnRlbnRUcGw6IFRlbXBsYXRlUmVmPHVua25vd24+O1xuXG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tdXNlbGVzcy1jb25zdHJ1Y3RvclxuICBjb25zdHJ1Y3RvcihcbiAgICBhY2NvcmRpb246IEFjY29yZGlvbkNvbXBvbmVudCxcbiAgICBjZHI6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHVuaXF1ZVNlbGVjdGlvbkRpc3BhdGNoZXI6IFVuaXF1ZVNlbGVjdGlvbkRpc3BhdGNoZXIsXG4gICkge1xuICAgIHN1cGVyKGFjY29yZGlvbiwgY2RyLCB1bmlxdWVTZWxlY3Rpb25EaXNwYXRjaGVyKTtcbiAgfVxuXG4gIG5nQWZ0ZXJDb250ZW50SW5pdCgpIHtcbiAgICBpZiAodGhpcy5fbGF6eUNvbnRlbnRUcGwpIHtcbiAgICAgIC8vIFJlbmRlciB0aGUgY29udGVudCBhcyBzb29uIGFzIHRoZSBhY2NvcmRpb24gYmVjb21lcyBvcGVuLlxuICAgICAgdGhpcy5vcGVuZWRcbiAgICAgICAgLnBpcGUoXG4gICAgICAgICAgc3RhcnRXaXRoKG51bGwgYXMgdm9pZCksXG4gICAgICAgICAgZmlsdGVyKCgpID0+ICEhdGhpcy5leHBhbmRlZCksXG4gICAgICAgICAgdGFrZSgxKSxcbiAgICAgICAgKVxuICAgICAgICAuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgICAgICB0aGlzLmxhenlDb250ZW50VHBsID0gdGhpcy5fbGF6eUNvbnRlbnRUcGw7XG4gICAgICAgIH0pO1xuICAgIH1cbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImF1aS1hY2NvcmRpb24taXRlbVwiPlxuICA8ZGl2IGNsYXNzPVwiYXVpLWFjY29yZGlvbi1pdGVtX19oZWFkZXJcIj5cbiAgICA8YnV0dG9uXG4gICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgIGNsYXNzPVwiYXVpLWFjY29yZGlvbi1pdGVtX19leHBhbmQtYnV0dG9uXCJcbiAgICAgIFtjbGFzcy5pc0V4cGFuZGVkXT1cImV4cGFuZGVkXCJcbiAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXG4gICAgICAoY2xpY2spPVwidG9nZ2xlKClcIlxuICAgID5cbiAgICAgIDxhdWktaWNvbiBpY29uPVwiYW5nbGVfcmlnaHRcIj48L2F1aS1pY29uPlxuICAgIDwvYnV0dG9uPlxuICAgIDxkaXZcbiAgICAgIGNsYXNzPVwiYXVpLWFjY29yZGlvbi1pdGVtX19oZWFkZXItY29udGVudFwiXG4gICAgICBbY2xhc3MuYXVpLWFjY29yZGlvbi1pdGVtX19oZWFkZXItY29udGVudC0tZXhwYW5kZWRdPVwiZXhwYW5kZWRcIlxuICAgID5cbiAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIlthdWlBY2NvcmRpb25JdGVtSGVhZGVyXVwiPjwvbmctY29udGVudD5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG4gIDxkaXZcbiAgICAqbmdJZj1cImV4cGFuZGVkXCJcbiAgICBjbGFzcz1cImF1aS1hY2NvcmRpb24taXRlbV9fYm9keVwiXG4gICAgW2lkXT1cImlkXCJcbiAgICBbQGV4cGFuZF09XCJleHBhbmRlZCA/ICdleHBhbmRlZCcgOiAnY29sbGFwc2VkJ1wiXG4gID5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cImF1aS1hY2NvcmRpb24taXRlbV9fY29udGVudFwiXG4gICAgICBbY2xhc3MuaGFzQmFja2dyb3VuZF09XCJiYWNrZ3JvdW5kXCJcbiAgICA+XG4gICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgICA8bmctdGVtcGxhdGUgW25nVGVtcGxhdGVPdXRsZXRdPVwibGF6eUNvbnRlbnRUcGxcIj48L25nLXRlbXBsYXRlPlxuICAgIDwvZGl2PlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { CdkAccordion } from '@angular/cdk/accordion';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, HostBinding, Input, Optional, SkipSelf, ViewEncapsulation, } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class AccordionComponent extends CdkAccordion {
|
|
5
|
+
parent;
|
|
6
|
+
background = true;
|
|
7
|
+
depth;
|
|
8
|
+
constructor(parent) {
|
|
9
|
+
super();
|
|
10
|
+
this.parent = parent;
|
|
11
|
+
this.depth = parent ? parent.depth + 1 : 0;
|
|
12
|
+
}
|
|
13
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionComponent, deps: [{ token: AccordionComponent, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: AccordionComponent, selector: "aui-accordion", inputs: { background: "background" }, host: { properties: { "attr.accordion-depth": "this.depth" } }, usesInheritance: true, ngImport: i0, template: "<div\n class=\"aui-accordion\"\n [class.hasBg]=\"background\"\n>\n <ng-content></ng-content>\n</div>\n", styles: [".aui-accordion.hasBg{padding:12px;border-radius:var(--aui-border-radius-l);background-color:rgb(var(--aui-color-n-9))}aui-accordion+aui-accordion .aui-accordion{margin-top:var(--aui-spacing-xl)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
15
|
+
}
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionComponent, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{ selector: 'aui-accordion', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, preserveWhitespaces: false, template: "<div\n class=\"aui-accordion\"\n [class.hasBg]=\"background\"\n>\n <ng-content></ng-content>\n</div>\n", styles: [".aui-accordion.hasBg{padding:12px;border-radius:var(--aui-border-radius-l);background-color:rgb(var(--aui-color-n-9))}aui-accordion+aui-accordion .aui-accordion{margin-top:var(--aui-spacing-xl)}\n"] }]
|
|
19
|
+
}], ctorParameters: function () { return [{ type: AccordionComponent, decorators: [{
|
|
20
|
+
type: SkipSelf
|
|
21
|
+
}, {
|
|
22
|
+
type: Optional
|
|
23
|
+
}] }]; }, propDecorators: { background: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], depth: [{
|
|
26
|
+
type: HostBinding,
|
|
27
|
+
args: ['attr.accordion-depth']
|
|
28
|
+
}] } });
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hY2NvcmRpb24vYWNjb3JkaW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uL3NyYy9hY2NvcmRpb24vYWNjb3JkaW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN0RCxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxXQUFXLEVBQ1gsS0FBSyxFQUNMLFFBQVEsRUFDUixRQUFRLEVBQ1IsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDOztBQVV2QixNQUFNLE9BQU8sa0JBQW1CLFNBQVEsWUFBWTtJQVV6QztJQVJULFVBQVUsR0FBRyxJQUFJLENBQUM7SUFHbEIsS0FBSyxDQUFTO0lBRWQsWUFHUyxNQUEwQjtRQUVqQyxLQUFLLEVBQUUsQ0FBQztRQUZELFdBQU0sR0FBTixNQUFNLENBQW9CO1FBR2pDLElBQUksQ0FBQyxLQUFLLEdBQUcsTUFBTSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQzdDLENBQUM7dUdBZFUsa0JBQWtCOzJGQUFsQixrQkFBa0Isa0xDbkIvQiwyR0FNQTs7MkZEYWEsa0JBQWtCO2tCQVI5QixTQUFTOytCQUNFLGVBQWUsaUJBR1YsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSx1QkFDMUIsS0FBSzs7MEJBVXZCLFFBQVE7OzBCQUNSLFFBQVE7NENBUFgsVUFBVTtzQkFEVCxLQUFLO2dCQUlOLEtBQUs7c0JBREosV0FBVzt1QkFBQyxzQkFBc0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDZGtBY2NvcmRpb24gfSBmcm9tICdAYW5ndWxhci9jZGsvYWNjb3JkaW9uJztcbmltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgT3B0aW9uYWwsXG4gIFNraXBTZWxmLFxuICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F1aS1hY2NvcmRpb24nLFxuICB0ZW1wbGF0ZVVybDogJy4vYWNjb3JkaW9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYWNjb3JkaW9uLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcmVzZXJ2ZVdoaXRlc3BhY2VzOiBmYWxzZSxcbn0pXG5leHBvcnQgY2xhc3MgQWNjb3JkaW9uQ29tcG9uZW50IGV4dGVuZHMgQ2RrQWNjb3JkaW9uIHtcbiAgQElucHV0KClcbiAgYmFja2dyb3VuZCA9IHRydWU7XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLmFjY29yZGlvbi1kZXB0aCcpXG4gIGRlcHRoOiBudW1iZXI7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgQFNraXBTZWxmKClcbiAgICBAT3B0aW9uYWwoKVxuICAgIHB1YmxpYyBwYXJlbnQ6IEFjY29yZGlvbkNvbXBvbmVudCxcbiAgKSB7XG4gICAgc3VwZXIoKTtcbiAgICB0aGlzLmRlcHRoID0gcGFyZW50ID8gcGFyZW50LmRlcHRoICsgMSA6IDA7XG4gIH1cbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJhdWktYWNjb3JkaW9uXCJcbiAgW2NsYXNzLmhhc0JnXT1cImJhY2tncm91bmRcIlxuPlxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -7,17 +7,17 @@ import { AccordionItemComponent, AccordionItemContentDirective, AccordionItemHea
|
|
|
7
7
|
import { AccordionComponent } from './accordion.component';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export class AccordionModule {
|
|
10
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
11
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.4", ngImport: i0, type: AccordionModule, declarations: [AccordionComponent,
|
|
12
|
+
AccordionItemComponent,
|
|
13
|
+
AccordionItemHeaderDirective,
|
|
14
|
+
AccordionItemContentDirective], imports: [CommonModule, CdkAccordionModule, IconModule, ButtonModule], exports: [AccordionComponent,
|
|
15
|
+
AccordionItemComponent,
|
|
16
|
+
AccordionItemHeaderDirective,
|
|
17
|
+
AccordionItemContentDirective] });
|
|
18
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionModule, imports: [CommonModule, CdkAccordionModule, IconModule, ButtonModule] });
|
|
10
19
|
}
|
|
11
|
-
|
|
12
|
-
AccordionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: AccordionModule, declarations: [AccordionComponent,
|
|
13
|
-
AccordionItemComponent,
|
|
14
|
-
AccordionItemHeaderDirective,
|
|
15
|
-
AccordionItemContentDirective], imports: [CommonModule, CdkAccordionModule, IconModule, ButtonModule], exports: [AccordionComponent,
|
|
16
|
-
AccordionItemComponent,
|
|
17
|
-
AccordionItemHeaderDirective,
|
|
18
|
-
AccordionItemContentDirective] });
|
|
19
|
-
AccordionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccordionModule, imports: [CommonModule, CdkAccordionModule, IconModule, ButtonModule] });
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AccordionModule, decorators: [{
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: AccordionModule, decorators: [{
|
|
21
21
|
type: NgModule,
|
|
22
22
|
args: [{
|
|
23
23
|
declarations: [
|
|
@@ -36,4 +36,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
36
36
|
providers: [],
|
|
37
37
|
}]
|
|
38
38
|
}] });
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9hY2NvcmRpb24vYWNjb3JkaW9uLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUM1RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sV0FBVyxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxTQUFTLENBQUM7QUFFckMsT0FBTyxFQUNMLHNCQUFzQixFQUN0Qiw2QkFBNkIsRUFDN0IsNEJBQTRCLEdBQzdCLE1BQU0sMkNBQTJDLENBQUM7QUFDbkQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7O0FBa0IzRCxNQUFNLE9BQU8sZUFBZTt1R0FBZixlQUFlO3dHQUFmLGVBQWUsaUJBZHhCLGtCQUFrQjtZQUNsQixzQkFBc0I7WUFDdEIsNEJBQTRCO1lBQzVCLDZCQUE2QixhQUVyQixZQUFZLEVBQUUsa0JBQWtCLEVBQUUsVUFBVSxFQUFFLFlBQVksYUFFbEUsa0JBQWtCO1lBQ2xCLHNCQUFzQjtZQUN0Qiw0QkFBNEI7WUFDNUIsNkJBQTZCO3dHQUlwQixlQUFlLFlBVGhCLFlBQVksRUFBRSxrQkFBa0IsRUFBRSxVQUFVLEVBQUUsWUFBWTs7MkZBU3pELGVBQWU7a0JBaEIzQixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixrQkFBa0I7d0JBQ2xCLHNCQUFzQjt3QkFDdEIsNEJBQTRCO3dCQUM1Qiw2QkFBNkI7cUJBQzlCO29CQUNELE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxrQkFBa0IsRUFBRSxVQUFVLEVBQUUsWUFBWSxDQUFDO29CQUNyRSxPQUFPLEVBQUU7d0JBQ1Asa0JBQWtCO3dCQUNsQixzQkFBc0I7d0JBQ3RCLDRCQUE0Qjt3QkFDNUIsNkJBQTZCO3FCQUM5QjtvQkFDRCxTQUFTLEVBQUUsRUFBRTtpQkFDZCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka0FjY29yZGlvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9hY2NvcmRpb24nO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEJ1dHRvbk1vZHVsZSB9IGZyb20gJy4uL2J1dHRvbic7XG5pbXBvcnQgeyBJY29uTW9kdWxlIH0gZnJvbSAnLi4vaWNvbic7XG5cbmltcG9ydCB7XG4gIEFjY29yZGlvbkl0ZW1Db21wb25lbnQsXG4gIEFjY29yZGlvbkl0ZW1Db250ZW50RGlyZWN0aXZlLFxuICBBY2NvcmRpb25JdGVtSGVhZGVyRGlyZWN0aXZlLFxufSBmcm9tICcuL2FjY29yZGlvbi1pdGVtL2FjY29yZGlvbi1pdGVtLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBY2NvcmRpb25Db21wb25lbnQgfSBmcm9tICcuL2FjY29yZGlvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBBY2NvcmRpb25Db21wb25lbnQsXG4gICAgQWNjb3JkaW9uSXRlbUNvbXBvbmVudCxcbiAgICBBY2NvcmRpb25JdGVtSGVhZGVyRGlyZWN0aXZlLFxuICAgIEFjY29yZGlvbkl0ZW1Db250ZW50RGlyZWN0aXZlLFxuICBdLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBDZGtBY2NvcmRpb25Nb2R1bGUsIEljb25Nb2R1bGUsIEJ1dHRvbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFtcbiAgICBBY2NvcmRpb25Db21wb25lbnQsXG4gICAgQWNjb3JkaW9uSXRlbUNvbXBvbmVudCxcbiAgICBBY2NvcmRpb25JdGVtSGVhZGVyRGlyZWN0aXZlLFxuICAgIEFjY29yZGlvbkl0ZW1Db250ZW50RGlyZWN0aXZlLFxuICBdLFxuICBwcm92aWRlcnM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBBY2NvcmRpb25Nb2R1bGUge31cbiJdfQ==
|