ngx-tethys 17.0.1 → 17.0.2
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/CHANGELOG.md +9 -0
- package/action/action.component.d.ts +3 -0
- package/affix/affix.component.d.ts +2 -0
- package/alert/alert.component.d.ts +1 -0
- package/anchor/anchor.component.d.ts +3 -0
- package/arrow-switcher/arrow-switcher.component.d.ts +1 -0
- package/autocomplete/autocomplete.component.d.ts +2 -3
- package/autocomplete/autocomplete.trigger.directive.d.ts +3 -0
- package/avatar/avatar.component.d.ts +4 -0
- package/back-top/back-top.component.d.ts +1 -0
- package/badge/badge.component.d.ts +5 -0
- package/button/button-icon.component.d.ts +2 -0
- package/button/button.component.d.ts +2 -0
- package/card/card.component.d.ts +3 -0
- package/card/content.component.d.ts +2 -1
- package/carousel/carousel.component.d.ts +5 -0
- package/cascader/cascader-li.component.d.ts +9 -2
- package/cascader/cascader-search-option.component.d.ts +7 -2
- package/cascader/cascader.component.d.ts +23 -2
- package/cascader/styles/cascader.scss +1 -0
- package/cascader/types.d.ts +1 -0
- package/checkbox/checkbox.component.d.ts +1 -0
- package/collapse/collapse-item.component.d.ts +2 -0
- package/collapse/collapse.component.d.ts +1 -0
- package/color-picker/color-picker-panel.component.d.ts +1 -0
- package/color-picker/color-picker.component.d.ts +7 -1
- package/copy/copy.directive.d.ts +1 -0
- package/core/behaviors/decorators.d.ts +6 -0
- package/date-picker/abstract-picker.component.d.ts +8 -1
- package/date-picker/abstract-picker.directive.d.ts +4 -0
- package/date-picker/base-picker.component.d.ts +2 -0
- package/date-picker/lib/calendar/calendar-footer.component.d.ts +1 -0
- package/date-picker/lib/popups/inner-popup.component.d.ts +1 -0
- package/date-picker/picker.component.d.ts +1 -0
- package/date-range/date-range.component.d.ts +2 -0
- package/dialog/body/dialog-body.component.d.ts +2 -1
- package/dialog/footer/dialog-footer.component.d.ts +1 -0
- package/dialog/header/dialog-header.component.d.ts +1 -0
- package/divider/divider.component.d.ts +2 -0
- package/drag-drop/drag-handle.directive.d.ts +1 -0
- package/drag-drop/drag.directive.d.ts +1 -0
- package/drag-drop/drop-container.directive.d.ts +1 -0
- package/dropdown/dropdown-menu-item.directive.d.ts +3 -1
- package/dropdown/dropdown-menu.component.d.ts +1 -0
- package/dropdown/dropdown.directive.d.ts +3 -0
- package/empty/empty.component.d.ts +1 -0
- package/esm2022/action/action.component.mjs +9 -22
- package/esm2022/affix/affix.component.mjs +8 -15
- package/esm2022/alert/alert.component.mjs +5 -10
- package/esm2022/anchor/anchor.component.mjs +10 -20
- package/esm2022/arrow-switcher/arrow-switcher.component.mjs +5 -11
- package/esm2022/autocomplete/autocomplete.component.mjs +5 -23
- package/esm2022/autocomplete/autocomplete.trigger.directive.mjs +9 -20
- package/esm2022/avatar/avatar.component.mjs +14 -30
- package/esm2022/back-top/back-top.component.mjs +6 -10
- package/esm2022/badge/badge.component.mjs +15 -37
- package/esm2022/button/button-icon.component.mjs +9 -20
- package/esm2022/button/button.component.mjs +7 -16
- package/esm2022/card/card.component.mjs +6 -20
- package/esm2022/card/content.component.mjs +5 -6
- package/esm2022/carousel/carousel.component.mjs +13 -30
- package/esm2022/cascader/cascader-li.component.mjs +16 -31
- package/esm2022/cascader/cascader-search-option.component.mjs +12 -21
- package/esm2022/cascader/cascader.component.mjs +32 -52
- package/esm2022/cascader/types.mjs +1 -1
- package/esm2022/checkbox/checkbox.component.mjs +7 -13
- package/esm2022/collapse/collapse-item.component.mjs +8 -15
- package/esm2022/collapse/collapse.component.mjs +5 -10
- package/esm2022/color-picker/color-picker-panel.component.mjs +5 -10
- package/esm2022/color-picker/color-picker.component.mjs +17 -37
- package/esm2022/copy/copy.directive.mjs +5 -10
- package/esm2022/core/behaviors/decorators.mjs +7 -44
- package/esm2022/date-picker/abstract-picker.component.mjs +21 -45
- package/esm2022/date-picker/abstract-picker.directive.mjs +11 -27
- package/esm2022/date-picker/base-picker.component.mjs +8 -15
- package/esm2022/date-picker/lib/calendar/calendar-footer.component.mjs +5 -10
- package/esm2022/date-picker/lib/popups/inner-popup.component.mjs +7 -6
- package/esm2022/date-picker/picker.component.mjs +6 -10
- package/esm2022/date-range/date-range.component.mjs +7 -15
- package/esm2022/dialog/body/dialog-body.component.mjs +6 -6
- package/esm2022/dialog/footer/dialog-footer.component.mjs +6 -13
- package/esm2022/dialog/header/dialog-header.component.mjs +6 -10
- package/esm2022/divider/divider.component.mjs +7 -15
- package/esm2022/drag-drop/drag-handle.directive.mjs +5 -13
- package/esm2022/drag-drop/drag.directive.mjs +5 -11
- package/esm2022/drag-drop/drop-container.directive.mjs +5 -10
- package/esm2022/dropdown/dropdown-menu-item.directive.mjs +9 -19
- package/esm2022/dropdown/dropdown-menu.component.mjs +6 -9
- package/esm2022/dropdown/dropdown.directive.mjs +8 -22
- package/esm2022/empty/empty.component.mjs +7 -13
- package/esm2022/flexible-text/flexible-text.component.mjs +4 -11
- package/esm2022/form/form-group-error/form-group-error.component.mjs +5 -10
- package/esm2022/form/form-group-label.directive.mjs +6 -6
- package/esm2022/form/form-group.component.mjs +13 -17
- package/esm2022/icon/icon.component.mjs +6 -20
- package/esm2022/image/image.directive.mjs +7 -15
- package/esm2022/input/input-search.component.mjs +6 -11
- package/esm2022/input/input.component.mjs +7 -15
- package/esm2022/input-number/input-number.component.mjs +12 -25
- package/esm2022/layout/header.component.mjs +9 -19
- package/esm2022/layout/sidebar-header.component.mjs +5 -10
- package/esm2022/layout/sidebar.component.mjs +22 -45
- package/esm2022/list/list.component.mjs +5 -11
- package/esm2022/list/selection/selection-list.mjs +13 -10
- package/esm2022/loading/loading.component.mjs +9 -20
- package/esm2022/menu/group/menu-group.component.mjs +12 -38
- package/esm2022/menu/item/action/menu-item-action.component.mjs +5 -10
- package/esm2022/menu/item/name/menu-item-name.component.mjs +5 -10
- package/esm2022/menu/menu.component.mjs +5 -10
- package/esm2022/nav/icon-nav/icon-nav-link.directive.mjs +6 -6
- package/esm2022/nav/nav-ink-bar.directive.mjs +7 -15
- package/esm2022/nav/nav-item.directive.mjs +10 -20
- package/esm2022/nav/nav.component.mjs +12 -25
- package/esm2022/pagination/pagination.component.mjs +18 -68
- package/esm2022/popover/popover.directive.mjs +12 -33
- package/esm2022/progress/progress-circle.component.mjs +9 -20
- package/esm2022/progress/progress-strip.component.mjs +5 -11
- package/esm2022/progress/progress.component.mjs +11 -23
- package/esm2022/property/properties.component.mjs +5 -10
- package/esm2022/property/property-item.component.mjs +8 -15
- package/esm2022/property-operation/property-operation.component.mjs +16 -37
- package/esm2022/radio/group/radio-group.component.mjs +6 -21
- package/esm2022/rate/rate-item.component.mjs +5 -10
- package/esm2022/rate/rate.component.mjs +16 -25
- package/esm2022/resizable/resizable.directive.mjs +24 -55
- package/esm2022/resizable/resize-handle.component.mjs +6 -10
- package/esm2022/resizable/resize-handles.component.mjs +5 -10
- package/esm2022/segment/segment-item.component.mjs +5 -10
- package/esm2022/segment/segment.component.mjs +7 -16
- package/esm2022/select/custom-select/custom-select.component.mjs +30 -65
- package/esm2022/select/native-select/native-select.component.mjs +6 -10
- package/esm2022/shared/base-form-check.component.mjs +10 -20
- package/esm2022/shared/directives/thy-autofocus.directive.mjs +10 -15
- package/esm2022/shared/directives/thy-scroll.directive.mjs +6 -13
- package/esm2022/shared/directives/thy-show.mjs +5 -11
- package/esm2022/shared/option/group/option-group.component.mjs +5 -10
- package/esm2022/shared/option/list-option/list-option.component.mjs +6 -13
- package/esm2022/shared/option/option.component.mjs +5 -11
- package/esm2022/shared/select/select-control/select-control.component.mjs +17 -44
- package/esm2022/skeleton/skeleton-circle.component.mjs +6 -9
- package/esm2022/skeleton/skeleton-rectangle.component.mjs +6 -9
- package/esm2022/skeleton/skeleton.component.mjs +5 -10
- package/esm2022/skeleton/stylized/bullet-list.component.mjs +6 -9
- package/esm2022/skeleton/stylized/list.component.mjs +6 -9
- package/esm2022/skeleton/stylized/paragraph.component.mjs +6 -9
- package/esm2022/slide/slide-body/slide-body-section.component.mjs +6 -6
- package/esm2022/slider/slider.component.mjs +18 -35
- package/esm2022/space/space.component.mjs +6 -10
- package/esm2022/stepper/step-header.component.mjs +9 -20
- package/esm2022/stepper/stepper.component.mjs +7 -16
- package/esm2022/switch/switch.component.mjs +12 -17
- package/esm2022/table/table-column.component.mjs +9 -31
- package/esm2022/table/table-skeleton.component.mjs +8 -14
- package/esm2022/table/table.component.mjs +32 -83
- package/esm2022/tabs/tab.component.mjs +5 -10
- package/esm2022/tabs/tabs.component.mjs +8 -15
- package/esm2022/tag/tag.component.mjs +6 -10
- package/esm2022/time-picker/time-picker-panel.component.mjs +8 -15
- package/esm2022/time-picker/time-picker.component.mjs +20 -46
- package/esm2022/timeline/timeline.component.mjs +5 -10
- package/esm2022/tooltip/tooltip.directive.mjs +11 -34
- package/esm2022/tree/tree-node.component.mjs +17 -40
- package/esm2022/tree/tree.component.mjs +19 -47
- package/esm2022/tree-select/tree-select.component.mjs +18 -40
- package/esm2022/upload/file-select-base.mjs +7 -6
- package/esm2022/upload/file-select.component.mjs +11 -26
- package/esm2022/version.mjs +2 -2
- package/esm2022/vote/vote.component.mjs +11 -33
- package/esm2022/watermark/watermark.directive.mjs +6 -10
- package/fesm2022/ngx-tethys-action.mjs +9 -21
- package/fesm2022/ngx-tethys-action.mjs.map +1 -1
- package/fesm2022/ngx-tethys-affix.mjs +6 -14
- package/fesm2022/ngx-tethys-affix.mjs.map +1 -1
- package/fesm2022/ngx-tethys-alert.mjs +4 -9
- package/fesm2022/ngx-tethys-alert.mjs.map +1 -1
- package/fesm2022/ngx-tethys-anchor.mjs +8 -19
- package/fesm2022/ngx-tethys-anchor.mjs.map +1 -1
- package/fesm2022/ngx-tethys-arrow-switcher.mjs +4 -10
- package/fesm2022/ngx-tethys-arrow-switcher.mjs.map +1 -1
- package/fesm2022/ngx-tethys-autocomplete.mjs +14 -39
- package/fesm2022/ngx-tethys-autocomplete.mjs.map +1 -1
- package/fesm2022/ngx-tethys-avatar.mjs +14 -29
- package/fesm2022/ngx-tethys-avatar.mjs.map +1 -1
- package/fesm2022/ngx-tethys-back-top.mjs +5 -9
- package/fesm2022/ngx-tethys-back-top.mjs.map +1 -1
- package/fesm2022/ngx-tethys-badge.mjs +14 -36
- package/fesm2022/ngx-tethys-badge.mjs.map +1 -1
- package/fesm2022/ngx-tethys-button.mjs +13 -30
- package/fesm2022/ngx-tethys-button.mjs.map +1 -1
- package/fesm2022/ngx-tethys-card.mjs +8 -23
- package/fesm2022/ngx-tethys-card.mjs.map +1 -1
- package/fesm2022/ngx-tethys-carousel.mjs +12 -29
- package/fesm2022/ngx-tethys-carousel.mjs.map +1 -1
- package/fesm2022/ngx-tethys-cascader.mjs +55 -95
- package/fesm2022/ngx-tethys-cascader.mjs.map +1 -1
- package/fesm2022/ngx-tethys-checkbox.mjs +5 -12
- package/fesm2022/ngx-tethys-checkbox.mjs.map +1 -1
- package/fesm2022/ngx-tethys-collapse.mjs +10 -20
- package/fesm2022/ngx-tethys-collapse.mjs.map +1 -1
- package/fesm2022/ngx-tethys-color-picker.mjs +19 -42
- package/fesm2022/ngx-tethys-color-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-copy.mjs +4 -9
- package/fesm2022/ngx-tethys-copy.mjs.map +1 -1
- package/fesm2022/ngx-tethys-core.mjs +6 -43
- package/fesm2022/ngx-tethys-core.mjs.map +1 -1
- package/fesm2022/ngx-tethys-date-picker.mjs +45 -93
- package/fesm2022/ngx-tethys-date-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-date-range.mjs +6 -14
- package/fesm2022/ngx-tethys-date-range.mjs.map +1 -1
- package/fesm2022/ngx-tethys-dialog.mjs +13 -21
- package/fesm2022/ngx-tethys-dialog.mjs.map +1 -1
- package/fesm2022/ngx-tethys-divider.mjs +6 -14
- package/fesm2022/ngx-tethys-divider.mjs.map +1 -1
- package/fesm2022/ngx-tethys-drag-drop.mjs +10 -25
- package/fesm2022/ngx-tethys-drag-drop.mjs.map +1 -1
- package/fesm2022/ngx-tethys-dropdown.mjs +19 -42
- package/fesm2022/ngx-tethys-dropdown.mjs.map +1 -1
- package/fesm2022/ngx-tethys-empty.mjs +5 -12
- package/fesm2022/ngx-tethys-empty.mjs.map +1 -1
- package/fesm2022/ngx-tethys-flexible-text.mjs +3 -10
- package/fesm2022/ngx-tethys-flexible-text.mjs.map +1 -1
- package/fesm2022/ngx-tethys-form.mjs +19 -25
- package/fesm2022/ngx-tethys-form.mjs.map +1 -1
- package/fesm2022/ngx-tethys-icon.mjs +5 -19
- package/fesm2022/ngx-tethys-icon.mjs.map +1 -1
- package/fesm2022/ngx-tethys-image.mjs +7 -14
- package/fesm2022/ngx-tethys-image.mjs.map +1 -1
- package/fesm2022/ngx-tethys-input-number.mjs +11 -24
- package/fesm2022/ngx-tethys-input-number.mjs.map +1 -1
- package/fesm2022/ngx-tethys-input.mjs +10 -21
- package/fesm2022/ngx-tethys-input.mjs.map +1 -1
- package/fesm2022/ngx-tethys-layout.mjs +31 -64
- package/fesm2022/ngx-tethys-layout.mjs.map +1 -1
- package/fesm2022/ngx-tethys-list.mjs +16 -18
- package/fesm2022/ngx-tethys-list.mjs.map +1 -1
- package/fesm2022/ngx-tethys-loading.mjs +8 -19
- package/fesm2022/ngx-tethys-loading.mjs.map +1 -1
- package/fesm2022/ngx-tethys-menu.mjs +20 -55
- package/fesm2022/ngx-tethys-menu.mjs.map +1 -1
- package/fesm2022/ngx-tethys-nav.mjs +28 -55
- package/fesm2022/ngx-tethys-nav.mjs.map +1 -1
- package/fesm2022/ngx-tethys-pagination.mjs +17 -67
- package/fesm2022/ngx-tethys-pagination.mjs.map +1 -1
- package/fesm2022/ngx-tethys-popover.mjs +11 -32
- package/fesm2022/ngx-tethys-popover.mjs.map +1 -1
- package/fesm2022/ngx-tethys-progress.mjs +20 -45
- package/fesm2022/ngx-tethys-progress.mjs.map +1 -1
- package/fesm2022/ngx-tethys-property-operation.mjs +14 -36
- package/fesm2022/ngx-tethys-property-operation.mjs.map +1 -1
- package/fesm2022/ngx-tethys-property.mjs +10 -21
- package/fesm2022/ngx-tethys-property.mjs.map +1 -1
- package/fesm2022/ngx-tethys-radio.mjs +5 -19
- package/fesm2022/ngx-tethys-radio.mjs.map +1 -1
- package/fesm2022/ngx-tethys-rate.mjs +18 -30
- package/fesm2022/ngx-tethys-rate.mjs.map +1 -1
- package/fesm2022/ngx-tethys-resizable.mjs +29 -66
- package/fesm2022/ngx-tethys-resizable.mjs.map +1 -1
- package/fesm2022/ngx-tethys-segment.mjs +10 -21
- package/fesm2022/ngx-tethys-segment.mjs.map +1 -1
- package/fesm2022/ngx-tethys-select.mjs +32 -70
- package/fesm2022/ngx-tethys-select.mjs.map +1 -1
- package/fesm2022/ngx-tethys-shared.mjs +49 -105
- package/fesm2022/ngx-tethys-shared.mjs.map +1 -1
- package/fesm2022/ngx-tethys-skeleton.mjs +20 -38
- package/fesm2022/ngx-tethys-skeleton.mjs.map +1 -1
- package/fesm2022/ngx-tethys-slide.mjs +6 -5
- package/fesm2022/ngx-tethys-slide.mjs.map +1 -1
- package/fesm2022/ngx-tethys-slider.mjs +17 -34
- package/fesm2022/ngx-tethys-slider.mjs.map +1 -1
- package/fesm2022/ngx-tethys-space.mjs +5 -9
- package/fesm2022/ngx-tethys-space.mjs.map +1 -1
- package/fesm2022/ngx-tethys-stepper.mjs +13 -31
- package/fesm2022/ngx-tethys-stepper.mjs.map +1 -1
- package/fesm2022/ngx-tethys-switch.mjs +11 -16
- package/fesm2022/ngx-tethys-switch.mjs.map +1 -1
- package/fesm2022/ngx-tethys-table.mjs +43 -120
- package/fesm2022/ngx-tethys-table.mjs.map +1 -1
- package/fesm2022/ngx-tethys-tabs.mjs +10 -20
- package/fesm2022/ngx-tethys-tabs.mjs.map +1 -1
- package/fesm2022/ngx-tethys-tag.mjs +5 -9
- package/fesm2022/ngx-tethys-tag.mjs.map +1 -1
- package/fesm2022/ngx-tethys-time-picker.mjs +24 -55
- package/fesm2022/ngx-tethys-time-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-timeline.mjs +4 -9
- package/fesm2022/ngx-tethys-timeline.mjs.map +1 -1
- package/fesm2022/ngx-tethys-tooltip.mjs +10 -33
- package/fesm2022/ngx-tethys-tooltip.mjs.map +1 -1
- package/fesm2022/ngx-tethys-tree-select.mjs +17 -39
- package/fesm2022/ngx-tethys-tree-select.mjs.map +1 -1
- package/fesm2022/ngx-tethys-tree.mjs +33 -82
- package/fesm2022/ngx-tethys-tree.mjs.map +1 -1
- package/fesm2022/ngx-tethys-upload.mjs +15 -28
- package/fesm2022/ngx-tethys-upload.mjs.map +1 -1
- package/fesm2022/ngx-tethys-vote.mjs +10 -32
- package/fesm2022/ngx-tethys-vote.mjs.map +1 -1
- package/fesm2022/ngx-tethys-watermark.mjs +5 -9
- package/fesm2022/ngx-tethys-watermark.mjs.map +1 -1
- package/fesm2022/ngx-tethys.mjs +1 -1
- package/fesm2022/ngx-tethys.mjs.map +1 -1
- package/flexible-text/flexible-text.component.d.ts +1 -0
- package/form/form-group-error/form-group-error.component.d.ts +1 -0
- package/form/form-group-label.directive.d.ts +2 -1
- package/form/form-group.component.d.ts +5 -2
- package/icon/icon.component.d.ts +3 -0
- package/image/image.directive.d.ts +2 -0
- package/input/input-search.component.d.ts +1 -0
- package/input/input.component.d.ts +2 -0
- package/input-number/input-number.component.d.ts +4 -0
- package/layout/header.component.d.ts +5 -2
- package/layout/sidebar-header.component.d.ts +1 -0
- package/layout/sidebar.component.d.ts +14 -4
- package/list/list.component.d.ts +1 -0
- package/list/selection/selection-list.d.ts +4 -1
- package/loading/loading.component.d.ts +4 -2
- package/menu/group/menu-group.component.d.ts +6 -0
- package/menu/item/action/menu-item-action.component.d.ts +1 -0
- package/menu/item/name/menu-item-name.component.d.ts +1 -0
- package/menu/menu.component.d.ts +1 -0
- package/nav/icon-nav/icon-nav-link.directive.d.ts +2 -1
- package/nav/nav-ink-bar.directive.d.ts +2 -0
- package/nav/nav-item.directive.d.ts +3 -0
- package/nav/nav.component.d.ts +4 -0
- package/package.json +1 -1
- package/pagination/pagination.component.d.ts +11 -0
- package/popover/popover.directive.d.ts +5 -0
- package/progress/progress-circle.component.d.ts +3 -0
- package/progress/progress-strip.component.d.ts +1 -0
- package/progress/progress.component.d.ts +3 -0
- package/property/properties.component.d.ts +1 -0
- package/property/property-item.component.d.ts +2 -0
- package/property-operation/property-operation.component.d.ts +5 -0
- package/radio/group/radio-group.component.d.ts +2 -2
- package/rate/rate-item.component.d.ts +1 -0
- package/rate/rate.component.d.ts +5 -1
- package/resizable/resizable.directive.d.ts +10 -0
- package/resizable/resize-handle.component.d.ts +1 -0
- package/resizable/resize-handles.component.d.ts +1 -0
- package/schematics/version.d.ts +1 -1
- package/schematics/version.js +1 -1
- package/segment/segment-item.component.d.ts +1 -0
- package/segment/segment.component.d.ts +2 -0
- package/select/custom-select/custom-select.component.d.ts +12 -1
- package/select/native-select/native-select.component.d.ts +1 -0
- package/shared/base-form-check.component.d.ts +2 -0
- package/shared/directives/thy-autofocus.directive.d.ts +3 -1
- package/shared/directives/thy-scroll.directive.d.ts +1 -0
- package/shared/directives/thy-show.d.ts +1 -0
- package/shared/option/group/option-group.component.d.ts +1 -0
- package/shared/option/list-option/list-option.component.d.ts +1 -0
- package/shared/option/option.component.d.ts +1 -0
- package/shared/option/styles/select-dropdown.scss +1 -0
- package/shared/select/select-control/select-control.component.d.ts +7 -0
- package/skeleton/skeleton-circle.component.d.ts +1 -0
- package/skeleton/skeleton-rectangle.component.d.ts +1 -0
- package/skeleton/skeleton.component.d.ts +1 -0
- package/skeleton/stylized/bullet-list.component.d.ts +1 -0
- package/skeleton/stylized/list.component.d.ts +1 -0
- package/skeleton/stylized/paragraph.component.d.ts +1 -0
- package/slide/slide-body/slide-body-section.component.d.ts +2 -1
- package/slider/slider.component.d.ts +6 -1
- package/space/space.component.d.ts +1 -0
- package/stepper/step-header.component.d.ts +3 -0
- package/stepper/stepper.component.d.ts +2 -0
- package/switch/switch.component.d.ts +3 -1
- package/table/table-column.component.d.ts +7 -2
- package/table/table-skeleton.component.d.ts +2 -0
- package/table/table.component.d.ts +14 -0
- package/tabs/tab.component.d.ts +1 -0
- package/tabs/tabs.component.d.ts +2 -0
- package/tag/tag.component.d.ts +1 -0
- package/time-picker/time-picker-panel.component.d.ts +2 -0
- package/time-picker/time-picker.component.d.ts +6 -2
- package/timeline/timeline.component.d.ts +1 -0
- package/tooltip/tooltip.directive.d.ts +5 -0
- package/tree/tree-node.component.d.ts +7 -0
- package/tree/tree.component.d.ts +8 -0
- package/tree-select/tree-select.component.d.ts +7 -0
- package/upload/file-select-base.d.ts +1 -0
- package/upload/file-select.component.d.ts +3 -0
- package/vote/vote.component.d.ts +4 -2
- package/watermark/watermark.directive.d.ts +1 -0
|
@@ -70,5 +70,6 @@ export declare class ThyInputSearch extends _MixinBase implements ControlValueAc
|
|
|
70
70
|
ngOnDestroy(): void;
|
|
71
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyInputSearch, never>;
|
|
72
72
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyInputSearch, "thy-input-search", never, { "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "thyTheme": { "alias": "thyTheme"; "required": false; }; "thySearchFocus": { "alias": "thySearchFocus"; "required": false; }; "thyIconPosition": { "alias": "thyIconPosition"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; }, { "clear": "clear"; "thyClear": "thyClear"; }, never, never, true, never>;
|
|
73
|
+
static ngAcceptInputType_thySearchFocus: unknown;
|
|
73
74
|
}
|
|
74
75
|
export {};
|
|
@@ -79,4 +79,6 @@ export declare class ThyInput implements ControlValueAccessor, OnInit {
|
|
|
79
79
|
togglePasswordType(): void;
|
|
80
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyInput, never>;
|
|
81
81
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyInput, "thy-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyAutofocus": { "alias": "thyAutofocus"; "required": false; }; "thyType": { "alias": "thyType"; "required": false; }; "type": { "alias": "type"; "required": false; }; "thyLabelText": { "alias": "thyLabelText"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, { "focus": "focus"; "blur": "blur"; }, ["appendTemplate", "prependTemplate"], never, true, never>;
|
|
82
|
+
static ngAcceptInputType_thyAutofocus: unknown;
|
|
83
|
+
static ngAcceptInputType_readonly: unknown;
|
|
82
84
|
}
|
|
@@ -108,5 +108,9 @@ export declare class ThyInputNumber extends TabIndexDisabledControlValueAccessor
|
|
|
108
108
|
ngOnDestroy(): void;
|
|
109
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyInputNumber, never>;
|
|
110
110
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyInputNumber, "thy-input-number", never, { "thyAutoFocus": { "alias": "thyAutoFocus"; "required": false; }; "thyPlaceholder": { "alias": "thyPlaceholder"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyMax": { "alias": "thyMax"; "required": false; }; "thyMin": { "alias": "thyMin"; "required": false; }; "thyStep": { "alias": "thyStep"; "required": false; }; "thyStepDelay": { "alias": "thyStepDelay"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyPrecision": { "alias": "thyPrecision"; "required": false; }; "thySuffix": { "alias": "thySuffix"; "required": false; }; }, { "thyBlur": "thyBlur"; "thyFocus": "thyFocus"; }, never, never, true, never>;
|
|
111
|
+
static ngAcceptInputType_thyAutoFocus: unknown;
|
|
112
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
113
|
+
static ngAcceptInputType_thyStep: unknown;
|
|
114
|
+
static ngAcceptInputType_thyStepDelay: unknown;
|
|
111
115
|
}
|
|
112
116
|
export {};
|
|
@@ -20,14 +20,17 @@ export declare class ThyHeaderDirective {
|
|
|
20
20
|
/**
|
|
21
21
|
* 底部是否有分割线
|
|
22
22
|
*/
|
|
23
|
-
set thyDivided(value:
|
|
23
|
+
set thyDivided(value: boolean);
|
|
24
24
|
/**
|
|
25
25
|
* 底部是否有分割线,已废弃,请使用 thyDivided
|
|
26
26
|
* @deprecated please use thyDivided
|
|
27
27
|
*/
|
|
28
|
-
set thyHasBorder(value:
|
|
28
|
+
set thyHasBorder(value: boolean);
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyHeaderDirective, never>;
|
|
30
30
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyHeaderDirective, "[thyHeader]", never, { "thySize": { "alias": "thySize"; "required": false; }; "thyShadow": { "alias": "thyShadow"; "required": false; }; "thyDivided": { "alias": "thyDivided"; "required": false; }; "thyHasBorder": { "alias": "thyHasBorder"; "required": false; }; }, {}, never, never, true, never>;
|
|
31
|
+
static ngAcceptInputType_thyShadow: unknown;
|
|
32
|
+
static ngAcceptInputType_thyDivided: unknown;
|
|
33
|
+
static ngAcceptInputType_thyHasBorder: unknown;
|
|
31
34
|
}
|
|
32
35
|
/**
|
|
33
36
|
* 头部布局组件
|
|
@@ -13,6 +13,7 @@ export declare class ThySidebarHeaderDirective {
|
|
|
13
13
|
thyDivided: boolean | string;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySidebarHeaderDirective, never>;
|
|
15
15
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThySidebarHeaderDirective, "[thySidebarHeader]", never, { "thyDivided": { "alias": "thyDivided"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
|
+
static ngAcceptInputType_thyDivided: unknown;
|
|
16
17
|
}
|
|
17
18
|
/**
|
|
18
19
|
* 侧边栏头部布局组件
|
|
@@ -34,28 +34,32 @@ export declare class ThySidebarDirective implements OnInit {
|
|
|
34
34
|
* 是否和右侧 /左侧隔离,当为 true 时距右侧 /左侧会有 margin,同时边框会去掉
|
|
35
35
|
* @default false
|
|
36
36
|
*/
|
|
37
|
-
set thyIsolated(value:
|
|
37
|
+
set thyIsolated(value: boolean);
|
|
38
38
|
/**
|
|
39
39
|
* sidebar 是否有分割线。当`thyDirection`值为`left`时,控制右侧是否有分割线;当`thyDirection`值为`right`时,控制左侧是否有分割线。
|
|
40
40
|
* @default true
|
|
41
41
|
*/
|
|
42
|
-
set thyDivided(value:
|
|
42
|
+
set thyDivided(value: boolean);
|
|
43
43
|
/**
|
|
44
44
|
* 右侧是否有边框,已废弃,请使用 thyDivided
|
|
45
45
|
* @deprecated please use thyDivided
|
|
46
46
|
* @default true
|
|
47
47
|
*/
|
|
48
|
-
set thyHasBorderRight(value:
|
|
48
|
+
set thyHasBorderRight(value: boolean);
|
|
49
49
|
/**
|
|
50
50
|
* 左侧是否有边框,已废弃,请使用 thyDivided
|
|
51
51
|
* @deprecated please use thyDivided
|
|
52
52
|
* @default true
|
|
53
53
|
*/
|
|
54
|
-
set thyHasBorderLeft(value:
|
|
54
|
+
set thyHasBorderLeft(value: boolean);
|
|
55
55
|
constructor(thyLayoutDirective: ThyLayoutDirective);
|
|
56
56
|
ngOnInit(): void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySidebarDirective, [{ optional: true; host: true; }]>;
|
|
58
58
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThySidebarDirective, "[thySidebar]", never, { "thyDirection": { "alias": "thyDirection"; "required": false; }; "thyTheme": { "alias": "thyTheme"; "required": false; }; "thyWidth": { "alias": "thyWidth"; "required": false; }; "thyIsolated": { "alias": "thyIsolated"; "required": false; }; "thyDivided": { "alias": "thyDivided"; "required": false; }; "thyHasBorderRight": { "alias": "thyHasBorderRight"; "required": false; }; "thyHasBorderLeft": { "alias": "thyHasBorderLeft"; "required": false; }; }, {}, never, never, true, never>;
|
|
59
|
+
static ngAcceptInputType_thyIsolated: unknown;
|
|
60
|
+
static ngAcceptInputType_thyDivided: unknown;
|
|
61
|
+
static ngAcceptInputType_thyHasBorderRight: unknown;
|
|
62
|
+
static ngAcceptInputType_thyHasBorderLeft: unknown;
|
|
59
63
|
}
|
|
60
64
|
/**
|
|
61
65
|
* 侧边栏布局组件
|
|
@@ -142,4 +146,10 @@ export declare class ThySidebar implements OnInit, OnDestroy {
|
|
|
142
146
|
ngOnDestroy(): void;
|
|
143
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySidebar, never>;
|
|
144
148
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySidebar, "thy-sidebar", never, { "thyDraggable": { "alias": "thyDraggable"; "required": false; }; "thyDragMaxWidth": { "alias": "thyDragMaxWidth"; "required": false; }; "thyDragMinWidth": { "alias": "thyDragMinWidth"; "required": false; }; "thyTrigger": { "alias": "thyTrigger"; "required": false; }; "thyCollapsible": { "alias": "thyCollapsible"; "required": false; }; "thyCollapsed": { "alias": "thyCollapsed"; "required": false; }; "thyCollapsedWidth": { "alias": "thyCollapsedWidth"; "required": false; }; "thyDefaultWidth": { "alias": "thyDefaultWidth"; "required": false; }; }, { "thyCollapsedChange": "thyCollapsedChange"; "thyDragWidthChange": "thyDragWidthChange"; }, never, ["*"], true, [{ directive: typeof ThySidebarDirective; inputs: { "thyTheme": "thyTheme"; "thyDirection": "thyDirection"; "thyWidth": "thyWidth"; "thyIsolated": "thyIsolated"; "thyDivided": "thyDivided"; "thyHasBorderLeft": "thyHasBorderLeft"; "thyHasBorderRight": "thyHasBorderRight"; }; outputs: {}; }]>;
|
|
149
|
+
static ngAcceptInputType_thyDraggable: unknown;
|
|
150
|
+
static ngAcceptInputType_thyDragMaxWidth: unknown;
|
|
151
|
+
static ngAcceptInputType_thyDragMinWidth: unknown;
|
|
152
|
+
static ngAcceptInputType_thyCollapsible: unknown;
|
|
153
|
+
static ngAcceptInputType_thyCollapsed: unknown;
|
|
154
|
+
static ngAcceptInputType_thyCollapsedWidth: unknown;
|
|
145
155
|
}
|
package/list/list.component.d.ts
CHANGED
|
@@ -15,4 +15,5 @@ export declare class ThyList {
|
|
|
15
15
|
constructor();
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyList, never>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyList, "thy-list", never, { "thyDivided": { "alias": "thyDivided"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
18
|
+
static ngAcceptInputType_thyDivided: unknown;
|
|
18
19
|
}
|
|
@@ -35,7 +35,7 @@ export declare class ThySelectionList implements OnInit, OnDestroy, AfterContent
|
|
|
35
35
|
* 改变 grid item 的选择模式,使其支持多选
|
|
36
36
|
* @default true
|
|
37
37
|
*/
|
|
38
|
-
set thyMultiple(value:
|
|
38
|
+
set thyMultiple(value: boolean);
|
|
39
39
|
/**
|
|
40
40
|
* 绑定键盘事件的容器
|
|
41
41
|
* @type HTMLElement | ElementRef | string
|
|
@@ -122,4 +122,7 @@ export declare class ThySelectionList implements OnInit, OnDestroy, AfterContent
|
|
|
122
122
|
ngOnDestroy(): void;
|
|
123
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySelectionList, never>;
|
|
124
124
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySelectionList, "thy-selection-list,[thy-selection-list]", never, { "thyMultiple": { "alias": "thyMultiple"; "required": false; }; "thyBindKeyEventContainer": { "alias": "thyBindKeyEventContainer"; "required": false; }; "thyScrollContainer": { "alias": "thyScrollContainer"; "required": false; }; "thyBeforeKeydown": { "alias": "thyBeforeKeydown"; "required": false; }; "thyUniqueKey": { "alias": "thyUniqueKey"; "required": false; }; "thyCompareWith": { "alias": "thyCompareWith"; "required": false; }; "thyLayout": { "alias": "thyLayout"; "required": false; }; "thyAutoActiveFirstItem": { "alias": "thyAutoActiveFirstItem"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thySpaceKeyEnabled": { "alias": "thySpaceKeyEnabled"; "required": false; }; }, { "thySelectionChange": "thySelectionChange"; }, ["options"], ["*"], true, never>;
|
|
125
|
+
static ngAcceptInputType_thyMultiple: unknown;
|
|
126
|
+
static ngAcceptInputType_thyAutoActiveFirstItem: unknown;
|
|
127
|
+
static ngAcceptInputType_thySpaceKeyEnabled: unknown;
|
|
125
128
|
}
|
|
@@ -14,7 +14,7 @@ export declare class ThyLoading {
|
|
|
14
14
|
* 数据是否加载完成
|
|
15
15
|
* @default false
|
|
16
16
|
*/
|
|
17
|
-
set thyDone(value: boolean
|
|
17
|
+
set thyDone(value: boolean);
|
|
18
18
|
/**
|
|
19
19
|
* 自定义加载提示文案
|
|
20
20
|
*/
|
|
@@ -22,9 +22,11 @@ export declare class ThyLoading {
|
|
|
22
22
|
/**
|
|
23
23
|
* 加载时是否启用嵌套遮罩模式,不传或传 false,没有遮罩层,加载完成出现内容
|
|
24
24
|
*/
|
|
25
|
-
set thyIsMask(value: boolean
|
|
25
|
+
set thyIsMask(value: boolean);
|
|
26
26
|
loadingClassName: boolean;
|
|
27
27
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyLoading, never>;
|
|
29
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyLoading, "thy-loading", never, { "thyDone": { "alias": "thyDone"; "required": false; }; "thyTip": { "alias": "thyTip"; "required": false; }; "thyIsMask": { "alias": "thyIsMask"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
30
|
+
static ngAcceptInputType_thyDone: unknown;
|
|
31
|
+
static ngAcceptInputType_thyIsMask: unknown;
|
|
30
32
|
}
|
|
@@ -71,4 +71,10 @@ export declare class ThyMenuGroup implements OnInit {
|
|
|
71
71
|
onActionClick(event: Event): void;
|
|
72
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyMenuGroup, never>;
|
|
73
73
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyMenuGroup, "thy-menu-group,[thy-menu-group],[thyMenuGroup]", never, { "thyTitle": { "alias": "thyTitle"; "required": false; }; "thyExpand": { "alias": "thyExpand"; "required": false; }; "thyCollapsed": { "alias": "thyCollapsed"; "required": false; }; "thyCollapsible": { "alias": "thyCollapsible"; "required": false; }; "thyShowIcon": { "alias": "thyShowIcon"; "required": false; }; "thyIcon": { "alias": "thyIcon"; "required": false; }; "thyActionIcon": { "alias": "thyActionIcon"; "required": false; }; "thyShowAction": { "alias": "thyShowAction"; "required": false; }; "thyActionStopPropagation": { "alias": "thyActionStopPropagation"; "required": false; }; "thyActionMenu": { "alias": "thyActionMenu"; "required": false; }; }, { "thyOnActionClick": "thyOnActionClick"; "thyCollapsedChange": "thyCollapsedChange"; }, ["headerContentTemplateRef"], ["*"], true, never>;
|
|
74
|
+
static ngAcceptInputType_thyExpand: unknown;
|
|
75
|
+
static ngAcceptInputType_thyCollapsed: unknown;
|
|
76
|
+
static ngAcceptInputType_thyCollapsible: unknown;
|
|
77
|
+
static ngAcceptInputType_thyShowIcon: unknown;
|
|
78
|
+
static ngAcceptInputType_thyShowAction: unknown;
|
|
79
|
+
static ngAcceptInputType_thyActionStopPropagation: unknown;
|
|
74
80
|
}
|
|
@@ -27,4 +27,5 @@ export declare class ThyMenuItemAction implements OnDestroy {
|
|
|
27
27
|
ngOnDestroy(): void;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyMenuItemAction, never>;
|
|
29
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyMenuItemAction, "thy-menu-item-action,[thy-menu-item-action],[thyMenuItemAction]", never, { "thyActionMenu": { "alias": "thyActionMenu"; "required": false; }; "thyStopPropagation": { "alias": "thyStopPropagation"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
30
|
+
static ngAcceptInputType_thyStopPropagation: unknown;
|
|
30
31
|
}
|
|
@@ -14,4 +14,5 @@ export declare class ThyMenuItemName implements OnInit {
|
|
|
14
14
|
ngOnInit(): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyMenuItemName, never>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyMenuItemName, "thy-menu-item-name,[thy-menu-item-name],[thyMenuItemName]", never, { "thyOverflowEllipsis": { "alias": "thyOverflowEllipsis"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
17
|
+
static ngAcceptInputType_thyOverflowEllipsis: unknown;
|
|
17
18
|
}
|
package/menu/menu.component.d.ts
CHANGED
|
@@ -23,4 +23,5 @@ export declare class ThyMenu implements OnInit {
|
|
|
23
23
|
ngOnInit(): void;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyMenu, never>;
|
|
25
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyMenu, "thy-menu,[thy-menu],[thyMenu]", never, { "thyTheme": { "alias": "thyTheme"; "required": false; }; "thyCollapsed": { "alias": "thyCollapsed"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
26
|
+
static ngAcceptInputType_thyCollapsed: unknown;
|
|
26
27
|
}
|
|
@@ -7,7 +7,8 @@ export declare class ThyIconNavLink {
|
|
|
7
7
|
navLinkClass: boolean;
|
|
8
8
|
icon: string;
|
|
9
9
|
set thyIconNavLinkIcon(icon: string);
|
|
10
|
-
set thyIconNavLinkActive(active:
|
|
10
|
+
set thyIconNavLinkActive(active: boolean);
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyIconNavLink, never>;
|
|
12
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyIconNavLink, "[thyIconNavLink]", never, { "thyIconNavLinkIcon": { "alias": "thyIconNavLinkIcon"; "required": false; }; "thyIconNavLinkActive": { "alias": "thyIconNavLinkActive"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
13
|
+
static ngAcceptInputType_thyIconNavLinkActive: unknown;
|
|
13
14
|
}
|
|
@@ -21,4 +21,6 @@ export declare class ThyNavInkBarDirective {
|
|
|
21
21
|
hide(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyNavInkBarDirective, [null, null, { optional: true; }]>;
|
|
23
23
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyNavInkBarDirective, "thy-nav-ink-bar, [thyNavInkBar]", never, { "isVertical": { "alias": "isVertical"; "required": false; }; "showInkBar": { "alias": "showInkBar"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
static ngAcceptInputType_isVertical: unknown;
|
|
25
|
+
static ngAcceptInputType_showInkBar: unknown;
|
|
24
26
|
}
|
|
@@ -54,5 +54,8 @@ export declare class ThyNavItemDirective extends _MixinBase implements AfterView
|
|
|
54
54
|
ngOnDestroy(): void;
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyNavItemDirective, [null, { optional: true; }, null]>;
|
|
56
56
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyNavItemDirective, "[thyNavLink],[thyNavItem]", never, { "thyNavItemActive": { "alias": "thyNavItemActive"; "required": false; }; "thyNavLinkActive": { "alias": "thyNavLinkActive"; "required": false; }; "thyNavItemDisabled": { "alias": "thyNavItemDisabled"; "required": false; }; }, {}, ["links", "routers"], never, true, never>;
|
|
57
|
+
static ngAcceptInputType_thyNavItemActive: unknown;
|
|
58
|
+
static ngAcceptInputType_thyNavLinkActive: unknown;
|
|
59
|
+
static ngAcceptInputType_thyNavItemDisabled: unknown;
|
|
57
60
|
}
|
|
58
61
|
export {};
|
package/nav/nav.component.d.ts
CHANGED
|
@@ -125,5 +125,9 @@ export declare class ThyNav extends _MixinBase implements OnInit, AfterViewInit,
|
|
|
125
125
|
ngOnDestroy(): void;
|
|
126
126
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyNav, never>;
|
|
127
127
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyNav, "thy-nav", never, { "thyType": { "alias": "thyType"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyHorizontal": { "alias": "thyHorizontal"; "required": false; }; "thyVertical": { "alias": "thyVertical"; "required": false; }; "thyFill": { "alias": "thyFill"; "required": false; }; "thyResponsive": { "alias": "thyResponsive"; "required": false; }; "thyInsideClosable": { "alias": "thyInsideClosable"; "required": false; }; "thyExtra": { "alias": "thyExtra"; "required": false; }; }, {}, ["moreOperation", "morePopover", "extra", "links", "routers"], ["*"], true, never>;
|
|
128
|
+
static ngAcceptInputType_thyVertical: unknown;
|
|
129
|
+
static ngAcceptInputType_thyFill: unknown;
|
|
130
|
+
static ngAcceptInputType_thyResponsive: unknown;
|
|
131
|
+
static ngAcceptInputType_thyInsideClosable: unknown;
|
|
128
132
|
}
|
|
129
133
|
export {};
|
package/package.json
CHANGED
|
@@ -133,4 +133,15 @@ export declare class ThyPagination implements OnInit {
|
|
|
133
133
|
onPageSizeChange(event: number): void;
|
|
134
134
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyPagination, [{ optional: true; }, null]>;
|
|
135
135
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyPagination, "thy-pagination", never, { "thyPageIndex": { "alias": "thyPageIndex"; "required": false; }; "thyPageSize": { "alias": "thyPageSize"; "required": false; }; "thyTotal": { "alias": "thyTotal"; "required": false; }; "thyCustomPages": { "alias": "thyCustomPages"; "required": false; }; "disabled": { "alias": "thyDisabled"; "required": false; }; "showQuickJumper": { "alias": "thyShowQuickJumper"; "required": false; }; "showTotalPageCount": { "alias": "thyShowTotalPageCount"; "required": false; }; "size": { "alias": "thySize"; "required": false; }; "maxCount": { "alias": "thyMaxCount"; "required": false; }; "marginalCount": { "alias": "thyMarginalCount"; "required": false; }; "thyRangeCount": { "alias": "thyRangeCount"; "required": false; }; "showSizeChanger": { "alias": "thyShowSizeChanger"; "required": false; }; "pageSizeOptions": { "alias": "thyPageSizeOptions"; "required": false; }; "hideOnSinglePage": { "alias": "thyHideOnSinglePage"; "required": false; }; "showTotal": { "alias": "thyShowTotal"; "required": false; }; }, { "pageIndexChange": "thyPageIndexChange"; "pageChanged": "thyPageChanged"; "pageSizeChanged": "thyPageSizeChanged"; }, never, never, true, never>;
|
|
136
|
+
static ngAcceptInputType_thyPageIndex: unknown;
|
|
137
|
+
static ngAcceptInputType_thyPageSize: unknown;
|
|
138
|
+
static ngAcceptInputType_thyTotal: unknown;
|
|
139
|
+
static ngAcceptInputType_disabled: unknown;
|
|
140
|
+
static ngAcceptInputType_showQuickJumper: unknown;
|
|
141
|
+
static ngAcceptInputType_showTotalPageCount: unknown;
|
|
142
|
+
static ngAcceptInputType_maxCount: unknown;
|
|
143
|
+
static ngAcceptInputType_marginalCount: unknown;
|
|
144
|
+
static ngAcceptInputType_thyRangeCount: unknown;
|
|
145
|
+
static ngAcceptInputType_showSizeChanger: unknown;
|
|
146
|
+
static ngAcceptInputType_hideOnSinglePage: unknown;
|
|
136
147
|
}
|
|
@@ -65,4 +65,9 @@ export declare class ThyPopoverDirective extends ThyOverlayDirectiveBase impleme
|
|
|
65
65
|
ngOnDestroy(): void;
|
|
66
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyPopoverDirective, never>;
|
|
67
67
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyPopoverDirective, "[thyPopover]", never, { "content": { "alias": "thyPopover"; "required": false; }; "thyTrigger": { "alias": "thyTrigger"; "required": false; }; "thyPlacement": { "alias": "thyPlacement"; "required": false; }; "thyOffset": { "alias": "thyOffset"; "required": false; }; "thyConfig": { "alias": "thyConfig"; "required": false; }; "thyShowDelay": { "alias": "thyShowDelay"; "required": false; }; "thyHideDelay": { "alias": "thyHideDelay"; "required": false; }; "thyAutoAdaptive": { "alias": "thyAutoAdaptive"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
68
|
+
static ngAcceptInputType_thyOffset: unknown;
|
|
69
|
+
static ngAcceptInputType_thyShowDelay: unknown;
|
|
70
|
+
static ngAcceptInputType_thyHideDelay: unknown;
|
|
71
|
+
static ngAcceptInputType_thyAutoAdaptive: unknown;
|
|
72
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
68
73
|
}
|
|
@@ -29,4 +29,7 @@ export declare class ThyProgressCircle implements OnInit, OnChanges {
|
|
|
29
29
|
trackByFn(index: number): number;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyProgressCircle, never>;
|
|
31
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyProgressCircle, "thy-progress-circle", never, { "thyType": { "alias": "thyType"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyValue": { "alias": "thyValue"; "required": false; }; "thyMax": { "alias": "thyMax"; "required": false; }; "thyTips": { "alias": "thyTips"; "required": false; }; "thyShape": { "alias": "thyShape"; "required": false; }; "thyGapDegree": { "alias": "thyGapDegree"; "required": false; }; "thyGapPosition": { "alias": "thyGapPosition"; "required": false; }; "thyStrokeWidth": { "alias": "thyStrokeWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
32
|
+
static ngAcceptInputType_thyMax: unknown;
|
|
33
|
+
static ngAcceptInputType_thyGapDegree: unknown;
|
|
34
|
+
static ngAcceptInputType_thyStrokeWidth: unknown;
|
|
32
35
|
}
|
|
@@ -24,4 +24,5 @@ export declare class ThyProgressStrip {
|
|
|
24
24
|
recalculatePercentage(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyProgressStrip, never>;
|
|
26
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyProgressStrip, "thy-progress-bar", never, { "thyTips": { "alias": "thyTips"; "required": false; }; "thyType": { "alias": "thyType"; "required": false; }; "thyValue": { "alias": "thyValue"; "required": false; }; "thyColor": { "alias": "thyColor"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
27
|
+
static ngAcceptInputType_thyValue: unknown;
|
|
27
28
|
}
|
|
@@ -64,4 +64,7 @@ export declare class ThyProgress implements ThyParentProgress, OnInit, OnChanges
|
|
|
64
64
|
trackByFn(index: number): number;
|
|
65
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyProgress, never>;
|
|
66
66
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyProgress, "thy-progress", never, { "thyType": { "alias": "thyType"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyValue": { "alias": "thyValue"; "required": false; }; "thyMax": { "alias": "thyMax"; "required": false; }; "thyTips": { "alias": "thyTips"; "required": false; }; "thyShape": { "alias": "thyShape"; "required": false; }; "thyGapDegree": { "alias": "thyGapDegree"; "required": false; }; "thyGapPosition": { "alias": "thyGapPosition"; "required": false; }; "thyStrokeWidth": { "alias": "thyStrokeWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
67
|
+
static ngAcceptInputType_thyMax: unknown;
|
|
68
|
+
static ngAcceptInputType_thyGapDegree: unknown;
|
|
69
|
+
static ngAcceptInputType_thyStrokeWidth: unknown;
|
|
67
70
|
}
|
|
@@ -30,4 +30,5 @@ export declare class ThyProperties implements OnInit {
|
|
|
30
30
|
ngOnInit(): void;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyProperties, never>;
|
|
32
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyProperties, "thy-properties", never, { "thyLayout": { "alias": "thyLayout"; "required": false; }; "thyColumn": { "alias": "thyColumn"; "required": false; }; "thyEditTrigger": { "alias": "thyEditTrigger"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
33
|
+
static ngAcceptInputType_thyColumn: unknown;
|
|
33
34
|
}
|
|
@@ -85,4 +85,6 @@ export declare class ThyPropertyItem implements OnInit, OnChanges, OnDestroy {
|
|
|
85
85
|
ngOnDestroy(): void;
|
|
86
86
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyPropertyItem, never>;
|
|
87
87
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyPropertyItem, "thy-property-item", never, { "thyLabelText": { "alias": "thyLabelText"; "required": false; }; "thyEditable": { "alias": "thyEditable"; "required": false; }; "thySpan": { "alias": "thySpan"; "required": false; }; "thyOperationTrigger": { "alias": "thyOperationTrigger"; "required": false; }; }, { "thyEditingChange": "thyEditingChange"; }, ["label", "editor", "operation"], ["*"], true, never>;
|
|
88
|
+
static ngAcceptInputType_thyEditable: unknown;
|
|
89
|
+
static ngAcceptInputType_thySpan: unknown;
|
|
88
90
|
}
|
|
@@ -84,5 +84,10 @@ export declare class ThyPropertyOperation implements OnInit, AfterContentInit, O
|
|
|
84
84
|
remove($event: Event): void;
|
|
85
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyPropertyOperation, never>;
|
|
86
86
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyPropertyOperation, "thy-property-operation", never, { "thyLabelText": { "alias": "thyLabelText"; "required": false; }; "thyValue": { "alias": "thyValue"; "required": false; }; "thyLabelTextTranslateKey": { "alias": "thyLabelTextTranslateKey"; "required": false; }; "thyIcon": { "alias": "thyIcon"; "required": false; }; "thyShowClose": { "alias": "thyShowClose"; "required": false; }; "thyLabelHasValue": { "alias": "thyLabelHasValue"; "required": false; }; "thyLabelHideWhenHasValue": { "alias": "thyLabelHideWhenHasValue"; "required": false; }; "thyType": { "alias": "thyType"; "required": false; }; "active": { "alias": "thyActive"; "required": false; }; "disabled": { "alias": "thyDisabled"; "required": false; }; }, { "thyOnRemove": "thyOnRemove"; "thyClick": "thyClick"; }, ["operationIcon"], ["*"], true, never>;
|
|
87
|
+
static ngAcceptInputType_thyShowClose: unknown;
|
|
88
|
+
static ngAcceptInputType_thyLabelHasValue: unknown;
|
|
89
|
+
static ngAcceptInputType_thyLabelHideWhenHasValue: unknown;
|
|
90
|
+
static ngAcceptInputType_active: unknown;
|
|
91
|
+
static ngAcceptInputType_disabled: unknown;
|
|
87
92
|
}
|
|
88
93
|
export {};
|
|
@@ -14,7 +14,6 @@ export declare class ThyRadioGroup implements ControlValueAccessor, OnInit, OnCh
|
|
|
14
14
|
isButtonGroupOutline: boolean;
|
|
15
15
|
private _size;
|
|
16
16
|
private _layout;
|
|
17
|
-
private _disabled;
|
|
18
17
|
/**
|
|
19
18
|
* 大小
|
|
20
19
|
* @type sm | md | lg
|
|
@@ -29,7 +28,7 @@ export declare class ThyRadioGroup implements ControlValueAccessor, OnInit, OnCh
|
|
|
29
28
|
* 是否禁用单选组合框
|
|
30
29
|
* @default false
|
|
31
30
|
*/
|
|
32
|
-
|
|
31
|
+
thyDisabled: boolean;
|
|
33
32
|
onChange: (_: string) => void;
|
|
34
33
|
onTouched: () => void;
|
|
35
34
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
@@ -46,4 +45,5 @@ export declare class ThyRadioGroup implements ControlValueAccessor, OnInit, OnCh
|
|
|
46
45
|
private _setClasses;
|
|
47
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyRadioGroup, never>;
|
|
48
47
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyRadioGroup, "thy-radio-group", never, { "thySize": { "alias": "thySize"; "required": false; }; "thyLayout": { "alias": "thyLayout"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
48
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
49
49
|
}
|
|
@@ -15,4 +15,5 @@ export declare class ThyRateItem implements OnInit {
|
|
|
15
15
|
clickRateItem(isHalf: boolean): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyRateItem, never>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyRateItem, "thy-rate-item, [thy-rate-item]", never, { "allowHalf": { "alias": "allowHalf"; "required": false; }; "iconValue": { "alias": "iconValue"; "required": false; }; "iconTemplate": { "alias": "iconTemplate"; "required": false; }; }, { "itemHover": "itemHover"; "itemClick": "itemClick"; }, never, never, true, never>;
|
|
18
|
+
static ngAcceptInputType_allowHalf: unknown;
|
|
18
19
|
}
|
package/rate/rate.component.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export declare class ThyRate extends TabIndexDisabledControlValueAccessorMixin i
|
|
|
27
27
|
* 是否只读
|
|
28
28
|
* @default false
|
|
29
29
|
*/
|
|
30
|
-
get thyDisabled(): boolean;
|
|
31
30
|
set thyDisabled(value: boolean);
|
|
31
|
+
get thyDisabled(): boolean;
|
|
32
32
|
disabled: boolean;
|
|
33
33
|
/**
|
|
34
34
|
* 是否允许半选
|
|
@@ -72,4 +72,8 @@ export declare class ThyRate extends TabIndexDisabledControlValueAccessorMixin i
|
|
|
72
72
|
trackByFn(index: number, item: any): any;
|
|
73
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyRate, never>;
|
|
74
74
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyRate, "thy-rate", never, { "thyCount": { "alias": "thyCount"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyAllowHalf": { "alias": "thyAllowHalf"; "required": false; }; "thyAllowClear": { "alias": "thyAllowClear"; "required": false; }; "thyTooltips": { "alias": "thyTooltips"; "required": false; }; "thyIconTemplate": { "alias": "thyIconTemplate"; "required": false; }; }, { "thyItemHoverChange": "thyItemHoverChange"; }, never, never, true, never>;
|
|
75
|
+
static ngAcceptInputType_thyCount: unknown;
|
|
76
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
77
|
+
static ngAcceptInputType_thyAllowHalf: unknown;
|
|
78
|
+
static ngAcceptInputType_thyAllowClear: unknown;
|
|
75
79
|
}
|
|
@@ -92,5 +92,15 @@ export declare class ThyResizableDirective extends _MixinBase implements AfterVi
|
|
|
92
92
|
ngOnDestroy(): void;
|
|
93
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyResizableDirective, never>;
|
|
94
94
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyResizableDirective, "[thyResizable]", never, { "thyBounds": { "alias": "thyBounds"; "required": false; }; "thyMaxHeight": { "alias": "thyMaxHeight"; "required": false; }; "thyMaxWidth": { "alias": "thyMaxWidth"; "required": false; }; "thyMinHeight": { "alias": "thyMinHeight"; "required": false; }; "thyMinWidth": { "alias": "thyMinWidth"; "required": false; }; "thyGridColumnCount": { "alias": "thyGridColumnCount"; "required": false; }; "thyMaxColumn": { "alias": "thyMaxColumn"; "required": false; }; "thyMinColumn": { "alias": "thyMinColumn"; "required": false; }; "thyLockAspectRatio": { "alias": "thyLockAspectRatio"; "required": false; }; "thyPreview": { "alias": "thyPreview"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, { "thyResize": "thyResize"; "thyResizeStart": "thyResizeStart"; "thyResizeEnd": "thyResizeEnd"; }, never, never, true, never>;
|
|
95
|
+
static ngAcceptInputType_thyMaxHeight: unknown;
|
|
96
|
+
static ngAcceptInputType_thyMaxWidth: unknown;
|
|
97
|
+
static ngAcceptInputType_thyMinHeight: unknown;
|
|
98
|
+
static ngAcceptInputType_thyMinWidth: unknown;
|
|
99
|
+
static ngAcceptInputType_thyGridColumnCount: unknown;
|
|
100
|
+
static ngAcceptInputType_thyMaxColumn: unknown;
|
|
101
|
+
static ngAcceptInputType_thyMinColumn: unknown;
|
|
102
|
+
static ngAcceptInputType_thyLockAspectRatio: unknown;
|
|
103
|
+
static ngAcceptInputType_thyPreview: unknown;
|
|
104
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
95
105
|
}
|
|
96
106
|
export {};
|
|
@@ -36,5 +36,6 @@ export declare class ThyResizeHandle extends _MixinBase implements OnInit, OnDes
|
|
|
36
36
|
ngOnDestroy(): void;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyResizeHandle, never>;
|
|
38
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyResizeHandle, "thy-resize-handle, [thy-resize-handle]", ["thyResizeHandle"], { "thyDirection": { "alias": "thyDirection"; "required": false; }; "thyLine": { "alias": "thyLine"; "required": false; }; }, { "thyMouseDown": "thyMouseDown"; }, never, ["*"], true, never>;
|
|
39
|
+
static ngAcceptInputType_thyLine: unknown;
|
|
39
40
|
}
|
|
40
41
|
export {};
|
|
@@ -20,4 +20,5 @@ export declare class ThyResizeHandles implements OnChanges {
|
|
|
20
20
|
ngOnChanges(changes: SimpleChanges): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyResizeHandles, never>;
|
|
22
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyResizeHandles, "thy-resize-handles", ["thyResizeHandles"], { "thyDirections": { "alias": "thyDirections"; "required": false; }; "thyLine": { "alias": "thyLine"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
static ngAcceptInputType_thyLine: unknown;
|
|
23
24
|
}
|
package/schematics/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "17.0.
|
|
1
|
+
export declare const VERSION = "17.0.2";
|
package/schematics/version.js
CHANGED
|
@@ -35,4 +35,5 @@ export declare class ThySegmentItem implements AfterViewInit, OnDestroy {
|
|
|
35
35
|
ngOnDestroy(): void;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySegmentItem, [null, null, null, null, { optional: true; }]>;
|
|
37
37
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySegmentItem, "thy-segment-item,[thy-segment-item]", never, { "thyValue": { "alias": "thyValue"; "required": false; }; "thyIcon": { "alias": "thyIcon"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
38
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
38
39
|
}
|
|
@@ -52,4 +52,6 @@ export declare class ThySegment implements IThySegmentComponent, AfterContentIni
|
|
|
52
52
|
handleThumbAnimationDone(event: AnimationEvent): void;
|
|
53
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySegment, never>;
|
|
54
54
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySegment, "thy-segment", ["thySegment"], { "thySize": { "alias": "thySize"; "required": false; }; "thyMode": { "alias": "thyMode"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyActiveIndex": { "alias": "thyActiveIndex"; "required": false; }; }, { "thySelectChange": "thySelectChange"; }, ["options"], ["*"], true, never>;
|
|
55
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
56
|
+
static ngAcceptInputType_thyActiveIndex: unknown;
|
|
55
57
|
}
|
|
@@ -149,8 +149,8 @@ export declare class ThySelect extends TabIndexDisabledControlValueAccessorMixin
|
|
|
149
149
|
* 是否禁用
|
|
150
150
|
* @default false
|
|
151
151
|
*/
|
|
152
|
-
get thyDisabled(): boolean;
|
|
153
152
|
set thyDisabled(value: boolean);
|
|
153
|
+
get thyDisabled(): boolean;
|
|
154
154
|
/**
|
|
155
155
|
* 排序比较函数
|
|
156
156
|
*/
|
|
@@ -276,5 +276,16 @@ export declare class ThySelect extends TabIndexDisabledControlValueAccessorMixin
|
|
|
276
276
|
ngOnDestroy(): void;
|
|
277
277
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySelect, [null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
278
278
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySelect, "thy-select,thy-custom-select", ["thySelect"], { "thyDropdownWidthMode": { "alias": "thyDropdownWidthMode"; "required": false; }; "thyShowSearch": { "alias": "thyShowSearch"; "required": false; }; "thyPlaceHolder": { "alias": "thyPlaceHolder"; "required": false; }; "thyServerSearch": { "alias": "thyServerSearch"; "required": false; }; "thyLoadState": { "alias": "thyLoadState"; "required": false; }; "thyAutoActiveFirstItem": { "alias": "thyAutoActiveFirstItem"; "required": false; }; "thyMode": { "alias": "thyMode"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyEmptyStateText": { "alias": "thyEmptyStateText"; "required": false; }; "thyEmptySearchMessageText": { "alias": "thyEmptySearchMessageText"; "required": false; }; "thyEnableScrollLoad": { "alias": "thyEnableScrollLoad"; "required": false; }; "thyAllowClear": { "alias": "thyAllowClear"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thySortComparator": { "alias": "thySortComparator"; "required": false; }; "thyFooterTemplate": { "alias": "thyFooterTemplate"; "required": false; }; "thyPlacement": { "alias": "thyPlacement"; "required": false; }; "thyOrigin": { "alias": "thyOrigin"; "required": false; }; "thyFooterClass": { "alias": "thyFooterClass"; "required": false; }; "thyAutoExpand": { "alias": "thyAutoExpand"; "required": false; }; "thyHasBackdrop": { "alias": "thyHasBackdrop"; "required": false; }; "thyMaxTagCount": { "alias": "thyMaxTagCount"; "required": false; }; "thyBorderless": { "alias": "thyBorderless"; "required": false; }; "thyOptions": { "alias": "thyOptions"; "required": false; }; "thyPreset": { "alias": "thyPreset"; "required": false; }; }, { "thyOnSearch": "thyOnSearch"; "thyOnScrollToBottom": "thyOnScrollToBottom"; "thyOnExpandStatusChange": "thyOnExpandStatusChange"; }, ["selectedValueDisplayRef", "contentOptions", "contentGroups"], ["*"], true, never>;
|
|
279
|
+
static ngAcceptInputType_thyShowSearch: unknown;
|
|
280
|
+
static ngAcceptInputType_thyServerSearch: unknown;
|
|
281
|
+
static ngAcceptInputType_thyLoadState: unknown;
|
|
282
|
+
static ngAcceptInputType_thyAutoActiveFirstItem: unknown;
|
|
283
|
+
static ngAcceptInputType_thyEnableScrollLoad: unknown;
|
|
284
|
+
static ngAcceptInputType_thyAllowClear: unknown;
|
|
285
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
286
|
+
static ngAcceptInputType_thyAutoExpand: unknown;
|
|
287
|
+
static ngAcceptInputType_thyHasBackdrop: unknown;
|
|
288
|
+
static ngAcceptInputType_thyMaxTagCount: unknown;
|
|
289
|
+
static ngAcceptInputType_thyBorderless: unknown;
|
|
279
290
|
}
|
|
280
291
|
export {};
|
|
@@ -31,4 +31,5 @@ export declare class ThyNativeSelect extends TabIndexDisabledControlValueAccesso
|
|
|
31
31
|
clearSelectValue(event: Event): void;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyNativeSelect, never>;
|
|
33
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyNativeSelect, "thy-native-select", never, { "thySize": { "alias": "thySize"; "required": false; }; "name": { "alias": "name"; "required": false; }; "thyAllowClear": { "alias": "thyAllowClear"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
34
|
+
static ngAcceptInputType_thyAllowClear: unknown;
|
|
34
35
|
}
|
|
@@ -47,4 +47,6 @@ export declare class ThyFormCheckBaseComponent extends TabIndexDisabledControlVa
|
|
|
47
47
|
markForCheck(): void;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyFormCheckBaseComponent, never>;
|
|
49
49
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyFormCheckBaseComponent, never, never, { "thyInline": { "alias": "thyInline"; "required": false; }; "thyLabelText": { "alias": "thyLabelText"; "required": false; }; "thyLabelTextTranslateKey": { "alias": "thyLabelTextTranslateKey"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
50
|
+
static ngAcceptInputType_thyInline: unknown;
|
|
51
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
50
52
|
}
|
|
@@ -12,7 +12,7 @@ export declare class ThyAutofocusDirective {
|
|
|
12
12
|
* 是否自动聚焦
|
|
13
13
|
* @default false
|
|
14
14
|
*/
|
|
15
|
-
set thyAutofocus(value: boolean
|
|
15
|
+
set thyAutofocus(value: boolean);
|
|
16
16
|
/**
|
|
17
17
|
* 是否自动选择
|
|
18
18
|
* @default false
|
|
@@ -21,4 +21,6 @@ export declare class ThyAutofocusDirective {
|
|
|
21
21
|
constructor(elementRef: ElementRef, ngZone: NgZone);
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyAutofocusDirective, never>;
|
|
23
23
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyAutofocusDirective, "input[thyAutofocus],textarea[thyAutofocus]", never, { "thyAutofocus": { "alias": "thyAutofocus"; "required": false; }; "thyAutoSelect": { "alias": "thyAutoSelect"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
static ngAcceptInputType_thyAutofocus: unknown;
|
|
25
|
+
static ngAcceptInputType_thyAutoSelect: unknown;
|
|
24
26
|
}
|
|
@@ -38,4 +38,5 @@ export declare class ThyScrollDirective implements OnInit, OnDestroy {
|
|
|
38
38
|
getElementRef(): ElementRef<HTMLElement>;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyScrollDirective, never>;
|
|
40
40
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyScrollDirective, "[thyScroll]", never, { "thyEnable": { "alias": "thyEnable"; "required": false; }; }, { "thyOnScrolled": "thyOnScrolled"; }, never, never, true, never>;
|
|
41
|
+
static ngAcceptInputType_thyEnable: unknown;
|
|
41
42
|
}
|
|
@@ -16,4 +16,5 @@ export declare class ThyShowDirective implements OnDestroy {
|
|
|
16
16
|
ngOnDestroy(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyShowDirective, never>;
|
|
18
18
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyShowDirective, "[thyShow]", never, { "thyShow": { "alias": "thyShow"; "required": false; }; }, { "thyShowChange": "thyShowChange"; }, never, never, true, never>;
|
|
19
|
+
static ngAcceptInputType_thyShow: unknown;
|
|
19
20
|
}
|
|
@@ -22,4 +22,5 @@ export declare class ThySelectOptionGroup implements OnDestroy, AfterContentInit
|
|
|
22
22
|
ngOnDestroy(): void;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySelectOptionGroup, never>;
|
|
24
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySelectOptionGroup, "thy-option-group", never, { "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyGroupLabel": { "alias": "thyGroupLabel"; "required": false; }; }, {}, ["options"], ["*"], true, never>;
|
|
25
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
25
26
|
}
|
|
@@ -36,4 +36,5 @@ export declare class ThyListOption implements Highlightable {
|
|
|
36
36
|
getLabel(): string;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyListOption, [null, null, { optional: true; }]>;
|
|
38
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyListOption, "thy-list-option,[thy-list-option]", never, { "id": { "alias": "id"; "required": false; }; "thyValue": { "alias": "thyValue"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
39
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
39
40
|
}
|
|
@@ -55,4 +55,5 @@ export declare class ThyOption extends SelectOptionBase implements OnDestroy, Hi
|
|
|
55
55
|
ngOnDestroy(): void;
|
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyOption, [null, { optional: true; }, { optional: true; }, null]>;
|
|
57
57
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyOption, "thy-option", never, { "thyValue": { "alias": "thyValue"; "required": false; }; "thyRawValue": { "alias": "thyRawValue"; "required": false; }; "thyLabelText": { "alias": "thyLabelText"; "required": false; }; "thyShowOptionCustom": { "alias": "thyShowOptionCustom"; "required": false; }; "thySearchKey": { "alias": "thySearchKey"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, { "selectionChange": "selectionChange"; "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
|
|
58
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
58
59
|
}
|
|
@@ -70,4 +70,11 @@ export declare class ThySelectControl implements OnInit {
|
|
|
70
70
|
onBlur(event: Event): void;
|
|
71
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySelectControl, never>;
|
|
72
72
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySelectControl, "thy-select-control,[thySelectControl]", never, { "thyPanelOpened": { "alias": "thyPanelOpened"; "required": false; }; "thyIsMultiple": { "alias": "thyIsMultiple"; "required": false; }; "thyShowSearch": { "alias": "thyShowSearch"; "required": false; }; "thySelectedOptions": { "alias": "thySelectedOptions"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "customDisplayTemplate": { "alias": "customDisplayTemplate"; "required": false; }; "thyAllowClear": { "alias": "thyAllowClear"; "required": false; }; "thyPlaceholder": { "alias": "thyPlaceholder"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyMaxTagCount": { "alias": "thyMaxTagCount"; "required": false; }; "thyBorderless": { "alias": "thyBorderless"; "required": false; }; "thyPreset": { "alias": "thyPreset"; "required": false; }; }, { "thyOnSearch": "thyOnSearch"; "thyOnRemove": "thyOnRemove"; "thyOnClear": "thyOnClear"; "thyOnBlur": "thyOnBlur"; }, never, never, true, never>;
|
|
73
|
+
static ngAcceptInputType_thyPanelOpened: unknown;
|
|
74
|
+
static ngAcceptInputType_thyIsMultiple: unknown;
|
|
75
|
+
static ngAcceptInputType_thyShowSearch: unknown;
|
|
76
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
77
|
+
static ngAcceptInputType_thyAllowClear: unknown;
|
|
78
|
+
static ngAcceptInputType_thyMaxTagCount: unknown;
|
|
79
|
+
static ngAcceptInputType_thyBorderless: unknown;
|
|
73
80
|
}
|
|
@@ -46,5 +46,6 @@ export declare class ThySkeletonCircle implements OnInit, OnChanges {
|
|
|
46
46
|
ngOnChanges(changes: SimpleChanges): void;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySkeletonCircle, [{ optional: true; }, { optional: true; }]>;
|
|
48
48
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySkeletonCircle, "thy-skeleton-circle", never, { "thyAnimatedInterval": { "alias": "thyAnimatedInterval"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyPrimaryColor": { "alias": "thyPrimaryColor"; "required": false; }; "thySecondaryColor": { "alias": "thySecondaryColor"; "required": false; }; "thyAnimated": { "alias": "thyAnimated"; "required": false; }; }, {}, never, never, true, never>;
|
|
49
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
49
50
|
}
|
|
50
51
|
export {};
|