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
|
@@ -56,5 +56,6 @@ export declare class ThySkeletonRectangle implements OnInit, OnChanges {
|
|
|
56
56
|
ngOnChanges(changes: SimpleChanges): void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySkeletonRectangle, [{ optional: true; }, { optional: true; }]>;
|
|
58
58
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySkeletonRectangle, "thy-skeleton-rectangle", never, { "thyAnimated": { "alias": "thyAnimated"; "required": false; }; "thyAnimatedInterval": { "alias": "thyAnimatedInterval"; "required": false; }; "thyBorderRadius": { "alias": "thyBorderRadius"; "required": false; }; "thyRowWidth": { "alias": "thyRowWidth"; "required": false; }; "thyRowHeight": { "alias": "thyRowHeight"; "required": false; }; "thyPrimaryColor": { "alias": "thyPrimaryColor"; "required": false; }; "thySecondaryColor": { "alias": "thySecondaryColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
59
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
59
60
|
}
|
|
60
61
|
export {};
|
|
@@ -24,4 +24,5 @@ export declare class ThySkeleton {
|
|
|
24
24
|
thySecondaryColor: string;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySkeleton, never>;
|
|
26
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySkeleton, "thy-skeleton", never, { "thyAnimated": { "alias": "thyAnimated"; "required": false; }; "thyAnimatedInterval": { "alias": "thyAnimatedInterval"; "required": false; }; "thyPrimaryColor": { "alias": "thyPrimaryColor"; "required": false; }; "thySecondaryColor": { "alias": "thySecondaryColor"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
27
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
27
28
|
}
|
|
@@ -53,4 +53,5 @@ export declare class ThySkeletonBulletList {
|
|
|
53
53
|
constructor();
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySkeletonBulletList, never>;
|
|
55
55
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySkeletonBulletList, "thy-skeleton-bullet-list", never, { "thyRowWidth": { "alias": "thyRowWidth"; "required": false; }; "thyRowHeight": { "alias": "thyRowHeight"; "required": false; }; "thyBorderRadius": { "alias": "thyBorderRadius"; "required": false; }; "thyAnimated": { "alias": "thyAnimated"; "required": false; }; "thyAnimatedInterval": { "alias": "thyAnimatedInterval"; "required": false; }; "thyPrimaryColor": { "alias": "thyPrimaryColor"; "required": false; }; "thySecondaryColor": { "alias": "thySecondaryColor"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyRowCount": { "alias": "thyRowCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
56
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
56
57
|
}
|
|
@@ -42,4 +42,5 @@ export declare class ThySkeletonList {
|
|
|
42
42
|
get thyRowCount(): number | string;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySkeletonList, never>;
|
|
44
44
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySkeletonList, "thy-skeleton-list", never, { "thyRowWidth": { "alias": "thyRowWidth"; "required": false; }; "thyRowHeight": { "alias": "thyRowHeight"; "required": false; }; "thyBorderRadius": { "alias": "thyBorderRadius"; "required": false; }; "thyAnimated": { "alias": "thyAnimated"; "required": false; }; "thyAnimatedInterval": { "alias": "thyAnimatedInterval"; "required": false; }; "thyPrimaryColor": { "alias": "thyPrimaryColor"; "required": false; }; "thySecondaryColor": { "alias": "thySecondaryColor"; "required": false; }; "thyRowCount": { "alias": "thyRowCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
45
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
45
46
|
}
|
|
@@ -50,4 +50,5 @@ export declare class ThySkeletonParagraph {
|
|
|
50
50
|
get thyRowCount(): number | string;
|
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySkeletonParagraph, never>;
|
|
52
52
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySkeletonParagraph, "thy-skeleton-paragraph", never, { "thyFirstWidth": { "alias": "thyFirstWidth"; "required": false; }; "thyLastWidth": { "alias": "thyLastWidth"; "required": false; }; "thyRowWidth": { "alias": "thyRowWidth"; "required": false; }; "thyRowHeight": { "alias": "thyRowHeight"; "required": false; }; "thyBorderRadius": { "alias": "thyBorderRadius"; "required": false; }; "thyAnimated": { "alias": "thyAnimated"; "required": false; }; "thyAnimatedInterval": { "alias": "thyAnimatedInterval"; "required": false; }; "thyPrimaryColor": { "alias": "thyPrimaryColor"; "required": false; }; "thySecondaryColor": { "alias": "thySecondaryColor"; "required": false; }; "thyRowCount": { "alias": "thyRowCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
53
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
53
54
|
}
|
|
@@ -11,8 +11,9 @@ export declare class ThySlideBodySection implements OnInit {
|
|
|
11
11
|
* 是否有分割线
|
|
12
12
|
* @default false
|
|
13
13
|
*/
|
|
14
|
-
set thyDividerBorder(value:
|
|
14
|
+
set thyDividerBorder(value: boolean);
|
|
15
15
|
ngOnInit(): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySlideBodySection, never>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySlideBodySection, "thy-slide-body-section", never, { "thyDividerBorder": { "alias": "thyDividerBorder"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
18
|
+
static ngAcceptInputType_thyDividerBorder: unknown;
|
|
18
19
|
}
|
|
@@ -20,8 +20,8 @@ export declare class ThySlider extends TabIndexDisabledControlValueAccessorMixin
|
|
|
20
20
|
/**
|
|
21
21
|
* 是否禁用
|
|
22
22
|
*/
|
|
23
|
-
get thyDisabled(): boolean;
|
|
24
23
|
set thyDisabled(value: boolean);
|
|
24
|
+
get thyDisabled(): boolean;
|
|
25
25
|
disabled: boolean;
|
|
26
26
|
_thySlider: boolean;
|
|
27
27
|
_pointer: boolean;
|
|
@@ -104,4 +104,9 @@ export declare class ThySlider extends TabIndexDisabledControlValueAccessorMixin
|
|
|
104
104
|
private getDecimals;
|
|
105
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySlider, never>;
|
|
106
106
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySlider, "thy-slider", never, { "thyVertical": { "alias": "thyVertical"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyMax": { "alias": "thyMax"; "required": false; }; "thyMin": { "alias": "thyMin"; "required": false; }; "thyStep": { "alias": "thyStep"; "required": false; }; "thyType": { "alias": "thyType"; "required": false; }; "thyColor": { "alias": "thyColor"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; }, { "thyAfterChange": "thyAfterChange"; }, never, never, true, never>;
|
|
107
|
+
static ngAcceptInputType_thyVertical: unknown;
|
|
108
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
109
|
+
static ngAcceptInputType_thyMax: unknown;
|
|
110
|
+
static ngAcceptInputType_thyMin: unknown;
|
|
111
|
+
static ngAcceptInputType_thyStep: unknown;
|
|
107
112
|
}
|
|
@@ -42,5 +42,6 @@ export declare class ThySpace extends _MixinBase implements OnInit, AfterContent
|
|
|
42
42
|
ngAfterContentInit(): void;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySpace, never>;
|
|
44
44
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySpace, "thy-space", never, { "thySize": { "alias": "thySize"; "required": false; }; "thyVertical": { "alias": "thyVertical"; "required": false; }; "thyAlign": { "alias": "thyAlign"; "required": false; }; }, {}, ["items"], ["*"], true, never>;
|
|
45
|
+
static ngAcceptInputType_thyVertical: unknown;
|
|
45
46
|
}
|
|
46
47
|
export {};
|
|
@@ -12,4 +12,7 @@ export declare class ThyStepHeader {
|
|
|
12
12
|
thyStepHeader: boolean;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyStepHeader, never>;
|
|
14
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyStepHeader, "thy-step-header", never, { "label": { "alias": "label"; "required": false; }; "index": { "alias": "index"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
static ngAcceptInputType_index: unknown;
|
|
16
|
+
static ngAcceptInputType_selected: unknown;
|
|
17
|
+
static ngAcceptInputType_active: unknown;
|
|
15
18
|
}
|
|
@@ -34,4 +34,6 @@ export declare class ThyStepper implements IThyStepperComponent {
|
|
|
34
34
|
previous(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyStepper, never>;
|
|
36
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyStepper, "thy-stepper", never, { "thySelectedIndex": { "alias": "thySelectedIndex"; "required": false; }; "thySelected": { "alias": "thySelected"; "required": false; }; "thyShowStepHeader": { "alias": "thyShowStepHeader"; "required": false; }; }, { "selectionChange": "selectionChange"; }, ["steps"], never, true, never>;
|
|
37
|
+
static ngAcceptInputType_thySelectedIndex: unknown;
|
|
38
|
+
static ngAcceptInputType_thyShowStepHeader: unknown;
|
|
37
39
|
}
|
|
@@ -41,8 +41,8 @@ export declare class ThySwitch extends TabIndexDisabledControlValueAccessorMixin
|
|
|
41
41
|
/**
|
|
42
42
|
* 是否属于禁用状态
|
|
43
43
|
*/
|
|
44
|
-
get thyDisabled(): boolean;
|
|
45
44
|
set thyDisabled(value: boolean);
|
|
45
|
+
get thyDisabled(): boolean;
|
|
46
46
|
/**
|
|
47
47
|
* 是否加载中
|
|
48
48
|
*/
|
|
@@ -65,4 +65,6 @@ export declare class ThySwitch extends TabIndexDisabledControlValueAccessorMixin
|
|
|
65
65
|
setLoadingCircle(): void;
|
|
66
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThySwitch, never>;
|
|
67
67
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThySwitch, "thy-switch", never, { "thyType": { "alias": "thyType"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyLoading": { "alias": "thyLoading"; "required": false; }; }, { "thyChange": "thyChange"; }, never, never, true, never>;
|
|
68
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
69
|
+
static ngAcceptInputType_thyLoading: unknown;
|
|
68
70
|
}
|
|
@@ -90,12 +90,12 @@ export declare class ThyTableColumnComponent implements OnInit {
|
|
|
90
90
|
* 当前列是否是操作列,设置为 true 时会追加 thy-operation-links 样式类,文字居中
|
|
91
91
|
* @default false
|
|
92
92
|
*/
|
|
93
|
-
operational: boolean
|
|
93
|
+
operational: boolean;
|
|
94
94
|
/**
|
|
95
95
|
* 当前列是否是次要列,设置为 true 时会追加 thy-table-column-secondary 样式类,文字颜色为 $gray-600
|
|
96
96
|
* @default false
|
|
97
97
|
*/
|
|
98
|
-
secondary: boolean
|
|
98
|
+
secondary: boolean;
|
|
99
99
|
/**
|
|
100
100
|
* 列排序修改事件
|
|
101
101
|
*/
|
|
@@ -113,4 +113,9 @@ export declare class ThyTableColumnComponent implements OnInit {
|
|
|
113
113
|
private _generateKey;
|
|
114
114
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTableColumnComponent, [null, { optional: true; }]>;
|
|
115
115
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTableColumnComponent, "thy-table-column", never, { "model": { "alias": "thyModelKey"; "required": false; }; "title": { "alias": "thyTitle"; "required": false; }; "type": { "alias": "thyType"; "required": false; }; "thyWidth": { "alias": "thyWidth"; "required": false; }; "thyMinWidth": { "alias": "thyMinWidth"; "required": false; }; "className": { "alias": "thyClassName"; "required": false; }; "headerClassName": { "alias": "thyHeaderClassName"; "required": false; }; "disabled": { "alias": "thyDisabled"; "required": false; }; "selections": { "alias": "thySelections"; "required": false; }; "defaultText": { "alias": "thyDefaultText"; "required": false; }; "expand": { "alias": "thyExpand"; "required": false; }; "thySortable": { "alias": "thySortable"; "required": false; }; "sortDirection": { "alias": "thySortDirection"; "required": false; }; "fixed": { "alias": "thyFixed"; "required": false; }; "operational": { "alias": "thyOperational"; "required": false; }; "secondary": { "alias": "thySecondary"; "required": false; }; }, { "sortChange": "thySortChange"; }, ["headerTemplateRef", "cellTemplateRef", "templateRef"], ["*"], true, never>;
|
|
116
|
+
static ngAcceptInputType_disabled: unknown;
|
|
117
|
+
static ngAcceptInputType_expand: unknown;
|
|
118
|
+
static ngAcceptInputType_thySortable: unknown;
|
|
119
|
+
static ngAcceptInputType_operational: unknown;
|
|
120
|
+
static ngAcceptInputType_secondary: unknown;
|
|
116
121
|
}
|
|
@@ -89,4 +89,6 @@ export declare class ThyTableSkeleton implements AfterViewInit {
|
|
|
89
89
|
ngAfterViewInit(): void;
|
|
90
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTableSkeleton, never>;
|
|
91
91
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTableSkeleton, "thy-table-skeleton", never, { "thyBorderRadius": { "alias": "thyBorderRadius"; "required": false; }; "thyRowHeight": { "alias": "thyRowHeight"; "required": false; }; "thyAnimated": { "alias": "thyAnimated"; "required": false; }; "thyAnimatedInterval": { "alias": "thyAnimatedInterval"; "required": false; }; "thyPrimaryColor": { "alias": "thyPrimaryColor"; "required": false; }; "thySecondaryColor": { "alias": "thySecondaryColor"; "required": false; }; "thyRowCount": { "alias": "thyRowCount"; "required": false; }; "thyHeadless": { "alias": "thyHeadless"; "required": false; }; "thyTheme": { "alias": "thyTheme"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyMinWidth": { "alias": "thyMinWidth"; "required": false; }; "thyColumns": { "alias": "thyColumns"; "required": false; }; }, {}, never, never, true, never>;
|
|
92
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
93
|
+
static ngAcceptInputType_thyHeadless: unknown;
|
|
92
94
|
}
|
|
@@ -316,5 +316,19 @@ export declare class ThyTable extends _MixinBase implements OnInit, OnChanges, A
|
|
|
316
316
|
ngOnDestroy(): void;
|
|
317
317
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTable, never>;
|
|
318
318
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTable, "thy-table", never, { "thyMode": { "alias": "thyMode"; "required": false; }; "thyGroupBy": { "alias": "thyGroupBy"; "required": false; }; "thyRowKey": { "alias": "thyRowKey"; "required": false; }; "thyGroups": { "alias": "thyGroups"; "required": false; }; "thyModel": { "alias": "thyModel"; "required": false; }; "thyTheme": { "alias": "thyTheme"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyMinWidth": { "alias": "thyMinWidth"; "required": false; }; "thyLayoutFixed": { "alias": "thyLayoutFixed"; "required": false; }; "thyHeaderFixed": { "alias": "thyHeaderFixed"; "required": false; }; "thyHeight": { "alias": "thyHeight"; "required": false; }; "thyClassName": { "alias": "thyClassName"; "required": false; }; "thyRowClassName": { "alias": "thyRowClassName"; "required": false; }; "thyLoadingDone": { "alias": "thyLoadingDone"; "required": false; }; "thyLoadingText": { "alias": "thyLoadingText"; "required": false; }; "thyEmptyOptions": { "alias": "thyEmptyOptions"; "required": false; }; "thyDraggable": { "alias": "thyDraggable"; "required": false; }; "thyPageIndex": { "alias": "thyPageIndex"; "required": false; }; "thyPageSize": { "alias": "thyPageSize"; "required": false; }; "thyPageTotal": { "alias": "thyPageTotal"; "required": false; }; "thyWholeRowSelect": { "alias": "thyWholeRowSelect"; "required": false; }; "thyHeadless": { "alias": "thyHeadless"; "required": false; }; "thyShowHeader": { "alias": "thyShowHeader"; "required": false; }; "showTotal": { "alias": "thyShowTotal"; "required": false; }; "showSizeChanger": { "alias": "thyShowSizeChanger"; "required": false; }; "pageSizeOptions": { "alias": "thyPageSizeOptions"; "required": false; }; "thyIndent": { "alias": "thyIndent"; "required": false; }; "thyChildrenKey": { "alias": "thyChildrenKey"; "required": false; }; "thyHoverDisplayOperation": { "alias": "thyHoverDisplayOperation"; "required": false; }; "thyDragDisabledPredicate": { "alias": "thyDragDisabledPredicate"; "required": false; }; "thyColumnSkeletonTypes": { "alias": "thyColumnSkeletonTypes"; "required": false; }; }, { "thyOnSwitchChange": "thyOnSwitchChange"; "thyOnPageChange": "thyOnPageChange"; "thyOnPageIndexChange": "thyOnPageIndexChange"; "thyOnPageSizeChange": "thyOnPageSizeChange"; "thyOnMultiSelectChange": "thyOnMultiSelectChange"; "thyOnRadioSelectChange": "thyOnRadioSelectChange"; "thyOnDraggableChange": "thyOnDraggableChange"; "thyOnRowClick": "thyOnRowClick"; "thySortChange": "thySortChange"; "thyOnRowContextMenu": "thyOnRowContextMenu"; }, ["emptyTemplate", "groupTemplate", "listOfColumnComponents"], ["*"], true, never>;
|
|
319
|
+
static ngAcceptInputType_thyLayoutFixed: unknown;
|
|
320
|
+
static ngAcceptInputType_thyHeaderFixed: unknown;
|
|
321
|
+
static ngAcceptInputType_thyLoadingDone: unknown;
|
|
322
|
+
static ngAcceptInputType_thyDraggable: unknown;
|
|
323
|
+
static ngAcceptInputType_thyPageIndex: unknown;
|
|
324
|
+
static ngAcceptInputType_thyPageSize: unknown;
|
|
325
|
+
static ngAcceptInputType_thyPageTotal: unknown;
|
|
326
|
+
static ngAcceptInputType_thyWholeRowSelect: unknown;
|
|
327
|
+
static ngAcceptInputType_thyHeadless: unknown;
|
|
328
|
+
static ngAcceptInputType_thyShowHeader: unknown;
|
|
329
|
+
static ngAcceptInputType_showTotal: unknown;
|
|
330
|
+
static ngAcceptInputType_showSizeChanger: unknown;
|
|
331
|
+
static ngAcceptInputType_thyIndent: unknown;
|
|
332
|
+
static ngAcceptInputType_thyHoverDisplayOperation: unknown;
|
|
319
333
|
}
|
|
320
334
|
export {};
|
package/tabs/tab.component.d.ts
CHANGED
|
@@ -28,4 +28,5 @@ export declare class ThyTab implements OnInit {
|
|
|
28
28
|
ngOnInit(): void;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTab, never>;
|
|
30
30
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTab, "thy-tab", never, { "thyTitle": { "alias": "thyTitle"; "required": false; }; "id": { "alias": "id"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, {}, ["titleTemplateRef"], ["*"], true, never>;
|
|
31
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
31
32
|
}
|
package/tabs/tabs.component.d.ts
CHANGED
|
@@ -63,5 +63,7 @@ export declare class ThyTabs extends _MixinBase implements OnInit, OnChanges, Af
|
|
|
63
63
|
tabTrackBy(index: number, item: ThyTab): number;
|
|
64
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTabs, never>;
|
|
65
65
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTabs, "thy-tabs", never, { "thyType": { "alias": "thyType"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyActiveTab": { "alias": "thyActiveTab"; "required": false; }; "thyExtra": { "alias": "thyExtra"; "required": false; }; "thyPosition": { "alias": "thyPosition"; "required": false; }; "thyAnimated": { "alias": "thyAnimated"; "required": false; }; "thyResponsive": { "alias": "thyResponsive"; "required": false; }; }, { "thyActiveTabChange": "thyActiveTabChange"; }, ["tabs"], never, true, never>;
|
|
66
|
+
static ngAcceptInputType_thyAnimated: unknown;
|
|
67
|
+
static ngAcceptInputType_thyResponsive: unknown;
|
|
66
68
|
}
|
|
67
69
|
export {};
|
package/tag/tag.component.d.ts
CHANGED
|
@@ -48,4 +48,5 @@ export declare class ThyTag implements OnInit, OnChanges {
|
|
|
48
48
|
private setColor;
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTag, never>;
|
|
50
50
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTag, "thy-tag,[thyTag]", never, { "thyTag": { "alias": "thyTag"; "required": false; }; "thyShape": { "alias": "thyShape"; "required": false; }; "thyColor": { "alias": "thyColor"; "required": false; }; "thyTheme": { "alias": "thyTheme"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyHoverable": { "alias": "thyHoverable"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
51
|
+
static ngAcceptInputType_thyHoverable: unknown;
|
|
51
52
|
}
|
|
@@ -109,4 +109,6 @@ export declare class ThyTimePanel implements OnInit, OnDestroy, ControlValueAcce
|
|
|
109
109
|
ngOnDestroy(): void;
|
|
110
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTimePanel, never>;
|
|
111
111
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTimePanel, "thy-time-picker-panel", never, { "thyFormat": { "alias": "thyFormat"; "required": false; }; "thyHourStep": { "alias": "thyHourStep"; "required": false; }; "thyMinuteStep": { "alias": "thyMinuteStep"; "required": false; }; "thySecondStep": { "alias": "thySecondStep"; "required": false; }; "thyShowSelectNow": { "alias": "thyShowSelectNow"; "required": false; }; "thyShowOperations": { "alias": "thyShowOperations"; "required": false; }; }, { "thyPickChange": "thyPickChange"; "thyClosePanel": "thyClosePanel"; }, never, never, true, never>;
|
|
112
|
+
static ngAcceptInputType_thyShowSelectNow: unknown;
|
|
113
|
+
static ngAcceptInputType_thyShowOperations: unknown;
|
|
112
114
|
}
|
|
@@ -74,7 +74,7 @@ export declare class ThyTimePicker implements OnInit, AfterViewInit, ControlValu
|
|
|
74
74
|
* @type boolean
|
|
75
75
|
* @default false
|
|
76
76
|
*/
|
|
77
|
-
|
|
77
|
+
thyReadonly: boolean;
|
|
78
78
|
/**
|
|
79
79
|
* 展示选择此刻
|
|
80
80
|
* @type boolean
|
|
@@ -94,7 +94,6 @@ export declare class ThyTimePicker implements OnInit, AfterViewInit, ControlValu
|
|
|
94
94
|
overlayPositions: import("@angular/cdk/overlay").ConnectionPositionPair[];
|
|
95
95
|
format: string;
|
|
96
96
|
disabled: boolean;
|
|
97
|
-
readonly: boolean;
|
|
98
97
|
showText: string;
|
|
99
98
|
openState: boolean;
|
|
100
99
|
value: Date;
|
|
@@ -135,4 +134,9 @@ export declare class ThyTimePicker implements OnInit, AfterViewInit, ControlValu
|
|
|
135
134
|
private disabledUserOperation;
|
|
136
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTimePicker, never>;
|
|
137
136
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTimePicker, "thy-time-picker", never, { "thySize": { "alias": "thySize"; "required": false; }; "thyPlaceholder": { "alias": "thyPlaceholder"; "required": false; }; "thyPlacement": { "alias": "thyPlacement"; "required": false; }; "thyFormat": { "alias": "thyFormat"; "required": false; }; "thyHourStep": { "alias": "thyHourStep"; "required": false; }; "thyMinuteStep": { "alias": "thyMinuteStep"; "required": false; }; "thySecondStep": { "alias": "thySecondStep"; "required": false; }; "thyPopupClass": { "alias": "thyPopupClass"; "required": false; }; "thyBackdrop": { "alias": "thyBackdrop"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyReadonly": { "alias": "thyReadonly"; "required": false; }; "thyShowSelectNow": { "alias": "thyShowSelectNow"; "required": false; }; "thyAllowClear": { "alias": "thyAllowClear"; "required": false; }; }, { "thyOpenChange": "thyOpenChange"; }, never, never, true, never>;
|
|
137
|
+
static ngAcceptInputType_thyBackdrop: unknown;
|
|
138
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
139
|
+
static ngAcceptInputType_thyReadonly: unknown;
|
|
140
|
+
static ngAcceptInputType_thyShowSelectNow: unknown;
|
|
141
|
+
static ngAcceptInputType_thyAllowClear: unknown;
|
|
138
142
|
}
|
|
@@ -49,4 +49,5 @@ export declare class ThyTimeline implements OnInit, AfterContentInit, OnChanges,
|
|
|
49
49
|
private updateChildren;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTimeline, never>;
|
|
51
51
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTimeline, "thy-timeline", never, { "thyReverse": { "alias": "thyReverse"; "required": false; }; "thyMode": { "alias": "thyMode"; "required": false; }; "thyDirection": { "alias": "thyDirection"; "required": false; }; }, {}, ["listOfItems"], ["*"], true, never>;
|
|
52
|
+
static ngAcceptInputType_thyReverse: unknown;
|
|
52
53
|
}
|
|
@@ -77,4 +77,9 @@ export declare class ThyTooltipDirective extends ThyOverlayDirectiveBase impleme
|
|
|
77
77
|
ngOnDestroy(): void;
|
|
78
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTooltipDirective, never>;
|
|
79
79
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyTooltipDirective, "[thyTooltip],[thy-tooltip]", ["thyTooltip"], { "content": { "alias": "thyTooltip"; "required": false; }; "placement": { "alias": "thyTooltipPlacement"; "required": false; }; "thyTooltipClass": { "alias": "thyTooltipClass"; "required": false; }; "showDelay": { "alias": "thyTooltipShowDelay"; "required": false; }; "hideDelay": { "alias": "thyTooltipHideDelay"; "required": false; }; "thyTooltipTrigger": { "alias": "thyTooltipTrigger"; "required": false; }; "thyTooltipDisabled": { "alias": "thyTooltipDisabled"; "required": false; }; "data": { "alias": "thyTooltipTemplateContext"; "required": false; }; "tooltipOffset": { "alias": "thyTooltipOffset"; "required": false; }; "tooltipPin": { "alias": "thyTooltipPin"; "required": false; }; }, {}, never, never, true, never>;
|
|
80
|
+
static ngAcceptInputType_showDelay: unknown;
|
|
81
|
+
static ngAcceptInputType_hideDelay: unknown;
|
|
82
|
+
static ngAcceptInputType_thyTooltipDisabled: unknown;
|
|
83
|
+
static ngAcceptInputType_tooltipOffset: unknown;
|
|
84
|
+
static ngAcceptInputType_tooltipPin: unknown;
|
|
80
85
|
}
|
|
@@ -99,4 +99,11 @@ export declare class ThyTreeNodeComponent implements OnDestroy, OnInit, OnChange
|
|
|
99
99
|
ngOnDestroy(): void;
|
|
100
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTreeNodeComponent, never>;
|
|
101
101
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTreeNodeComponent, "thy-tree-node", never, { "node": { "alias": "node"; "required": false; }; "thyAsync": { "alias": "thyAsync"; "required": false; }; "thyMultiple": { "alias": "thyMultiple"; "required": false; }; "thyDraggable": { "alias": "thyDraggable"; "required": false; }; "thyCheckable": { "alias": "thyCheckable"; "required": false; }; "thyClickBehavior": { "alias": "thyClickBehavior"; "required": false; }; "thyTitleTruncate": { "alias": "thyTitleTruncate"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "emptyChildrenTemplateRef": { "alias": "emptyChildrenTemplateRef"; "required": false; }; "thyItemSize": { "alias": "thyItemSize"; "required": false; }; "thyIndent": { "alias": "thyIndent"; "required": false; }; }, { "thyOnClick": "thyOnClick"; "thyDblClick": "thyDblClick"; "thyOnExpandChange": "thyOnExpandChange"; "thyOnCheckboxChange": "thyOnCheckboxChange"; }, ["childrenTreeTemplateRef"], never, true, never>;
|
|
102
|
+
static ngAcceptInputType_thyAsync: unknown;
|
|
103
|
+
static ngAcceptInputType_thyMultiple: unknown;
|
|
104
|
+
static ngAcceptInputType_thyDraggable: unknown;
|
|
105
|
+
static ngAcceptInputType_thyCheckable: unknown;
|
|
106
|
+
static ngAcceptInputType_thyTitleTruncate: unknown;
|
|
107
|
+
static ngAcceptInputType_thyItemSize: unknown;
|
|
108
|
+
static ngAcceptInputType_thyIndent: unknown;
|
|
102
109
|
}
|
package/tree/tree.component.d.ts
CHANGED
|
@@ -205,5 +205,13 @@ export declare class ThyTree implements ControlValueAccessor, OnInit, OnChanges,
|
|
|
205
205
|
ngOnDestroy(): void;
|
|
206
206
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTree, never>;
|
|
207
207
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTree, "thy-tree", never, { "thyNodes": { "alias": "thyNodes"; "required": false; }; "thyShowExpand": { "alias": "thyShowExpand"; "required": false; }; "thyMultiple": { "alias": "thyMultiple"; "required": false; }; "thyDraggable": { "alias": "thyDraggable"; "required": false; }; "thyCheckable": { "alias": "thyCheckable"; "required": false; }; "thyClickBehavior": { "alias": "thyClickBehavior"; "required": false; }; "thyCheckStateResolve": { "alias": "thyCheckStateResolve"; "required": false; }; "thyAsync": { "alias": "thyAsync"; "required": false; }; "thyType": { "alias": "thyType"; "required": false; }; "thyIcons": { "alias": "thyIcons"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyVirtualScroll": { "alias": "thyVirtualScroll"; "required": false; }; "thyItemSize": { "alias": "thyItemSize"; "required": false; }; "thyTitleTruncate": { "alias": "thyTitleTruncate"; "required": false; }; "thySelectedKeys": { "alias": "thySelectedKeys"; "required": false; }; "thyIndent": { "alias": "thyIndent"; "required": false; }; "thyBeforeDragStart": { "alias": "thyBeforeDragStart"; "required": false; }; "thyBeforeDragDrop": { "alias": "thyBeforeDragDrop"; "required": false; }; }, { "viewport": "viewport"; "thyOnClick": "thyOnClick"; "thyOnCheckboxChange": "thyOnCheckboxChange"; "thyOnExpandChange": "thyOnExpandChange"; "thyOnDragDrop": "thyOnDragDrop"; "thyDblClick": "thyDblClick"; }, ["templateRef", "emptyChildrenTemplate"], never, true, never>;
|
|
208
|
+
static ngAcceptInputType_thyMultiple: unknown;
|
|
209
|
+
static ngAcceptInputType_thyDraggable: unknown;
|
|
210
|
+
static ngAcceptInputType_thyCheckable: unknown;
|
|
211
|
+
static ngAcceptInputType_thyAsync: unknown;
|
|
212
|
+
static ngAcceptInputType_thyVirtualScroll: unknown;
|
|
213
|
+
static ngAcceptInputType_thyItemSize: unknown;
|
|
214
|
+
static ngAcceptInputType_thyTitleTruncate: unknown;
|
|
215
|
+
static ngAcceptInputType_thyIndent: unknown;
|
|
208
216
|
}
|
|
209
217
|
export {};
|
|
@@ -176,6 +176,13 @@ export declare class ThyTreeSelect extends TabIndexDisabledControlValueAccessorM
|
|
|
176
176
|
getNodeChildren(node: ThyTreeSelectNode): Observable<ThyTreeSelectNode>;
|
|
177
177
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyTreeSelect, never>;
|
|
178
178
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyTreeSelect, "thy-tree-select", never, { "thyTreeNodes": { "alias": "thyTreeNodes"; "required": false; }; "thyVirtualScroll": { "alias": "thyVirtualScroll"; "required": false; }; "thyPrimaryKey": { "alias": "thyPrimaryKey"; "required": false; }; "thyShowKey": { "alias": "thyShowKey"; "required": false; }; "thyChildCountKey": { "alias": "thyChildCountKey"; "required": false; }; "thyAllowClear": { "alias": "thyAllowClear"; "required": false; }; "thyMultiple": { "alias": "thyMultiple"; "required": false; }; "thyDisable": { "alias": "thyDisable"; "required": false; }; "thyPlaceholder": { "alias": "thyPlaceholder"; "required": false; }; "thySize": { "alias": "thySize"; "required": false; }; "thyEmptyOptionsText": { "alias": "thyEmptyOptionsText"; "required": false; }; "thyHiddenNodeKey": { "alias": "thyHiddenNodeKey"; "required": false; }; "thyDisableNodeKey": { "alias": "thyDisableNodeKey"; "required": false; }; "thyAsyncNode": { "alias": "thyAsyncNode"; "required": false; }; "thyShowWholeName": { "alias": "thyShowWholeName"; "required": false; }; "thyShowSearch": { "alias": "thyShowSearch"; "required": false; }; "thyIconType": { "alias": "thyIconType"; "required": false; }; "thyHiddenNodeFn": { "alias": "thyHiddenNodeFn"; "required": false; }; "thyDisableNodeFn": { "alias": "thyDisableNodeFn"; "required": false; }; "thyGetNodeChildren": { "alias": "thyGetNodeChildren"; "required": false; }; }, { "thyExpandStatusChange": "thyExpandStatusChange"; }, ["thyTreeSelectTriggerDisplayRef", "treeNodeTemplateRef"], never, true, never>;
|
|
179
|
+
static ngAcceptInputType_thyVirtualScroll: unknown;
|
|
180
|
+
static ngAcceptInputType_thyAllowClear: unknown;
|
|
181
|
+
static ngAcceptInputType_thyMultiple: unknown;
|
|
182
|
+
static ngAcceptInputType_thyDisable: unknown;
|
|
183
|
+
static ngAcceptInputType_thyAsyncNode: unknown;
|
|
184
|
+
static ngAcceptInputType_thyShowWholeName: unknown;
|
|
185
|
+
static ngAcceptInputType_thyShowSearch: unknown;
|
|
179
186
|
}
|
|
180
187
|
/**
|
|
181
188
|
* @private
|
|
@@ -23,4 +23,5 @@ export declare class FileSelectBaseDirective {
|
|
|
23
23
|
selectFiles(event: Event, files: File[], eventEmitter: EventEmitter<ThyFileSelectEvent>): void;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileSelectBaseDirective, never>;
|
|
25
25
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FileSelectBaseDirective, never, never, { "thySizeThreshold": { "alias": "thySizeThreshold"; "required": false; }; "thySizeExceedsHandler": { "alias": "thySizeExceedsHandler"; "required": false; }; "thyAcceptType": { "alias": "thyAcceptType"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
static ngAcceptInputType_thySizeThreshold: unknown;
|
|
26
27
|
}
|
|
@@ -38,4 +38,7 @@ export declare class ThyFileSelect extends FileSelectBaseDirective implements On
|
|
|
38
38
|
ngOnDestroy(): void;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyFileSelect, never>;
|
|
40
40
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyFileSelect, "[thyFileSelect],thy-file-select", never, { "thyMultiple": { "alias": "thyMultiple"; "required": false; }; "thyAcceptFolder": { "alias": "thyAcceptFolder"; "required": false; }; "thyAcceptType": { "alias": "thyAcceptType"; "required": false; }; "thySizeThreshold": { "alias": "thySizeThreshold"; "required": false; }; }, { "thyOnFileSelect": "thyOnFileSelect"; }, never, ["*"], true, never>;
|
|
41
|
+
static ngAcceptInputType_thyMultiple: unknown;
|
|
42
|
+
static ngAcceptInputType_thyAcceptFolder: unknown;
|
|
43
|
+
static ngAcceptInputType_thySizeThreshold: unknown;
|
|
41
44
|
}
|
package/vote/vote.component.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ export declare class ThyVote implements OnInit {
|
|
|
13
13
|
_type: ThyVoteType;
|
|
14
14
|
_layout: ThyVoteLayout;
|
|
15
15
|
_initialized: boolean;
|
|
16
|
-
_isRound: boolean;
|
|
17
16
|
private hostRenderer;
|
|
18
17
|
class: boolean;
|
|
19
18
|
_hasVoted: boolean;
|
|
@@ -31,7 +30,7 @@ export declare class ThyVote implements OnInit {
|
|
|
31
30
|
* 是否是偏圆型
|
|
32
31
|
* @default false
|
|
33
32
|
*/
|
|
34
|
-
|
|
33
|
+
thyRound: boolean;
|
|
35
34
|
/**
|
|
36
35
|
* 布局: horizontal | vertical
|
|
37
36
|
* @default horizontal
|
|
@@ -67,4 +66,7 @@ export declare class ThyVote implements OnInit {
|
|
|
67
66
|
_setClassesByType(): void;
|
|
68
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyVote, never>;
|
|
69
68
|
static ɵcmp: i0.ɵɵComponentDeclaration<ThyVote, "thy-vote,[thyVote]", never, { "thySize": { "alias": "thySize"; "required": false; }; "thyVote": { "alias": "thyVote"; "required": false; }; "thyRound": { "alias": "thyRound"; "required": false; }; "thyLayout": { "alias": "thyLayout"; "required": false; }; "thyVoteCount": { "alias": "thyVoteCount"; "required": false; }; "thyIcon": { "alias": "thyIcon"; "required": false; }; "thyHasVoted": { "alias": "thyHasVoted"; "required": false; }; "thyDisabled": { "alias": "thyDisabled"; "required": false; }; }, {}, ["voteIcon"], never, true, never>;
|
|
69
|
+
static ngAcceptInputType_thyRound: unknown;
|
|
70
|
+
static ngAcceptInputType_thyHasVoted: unknown;
|
|
71
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
70
72
|
}
|
|
@@ -43,5 +43,6 @@ export declare class ThyWatermarkDirective extends _MixinBase implements OnInit,
|
|
|
43
43
|
ngOnDestroy(): void;
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThyWatermarkDirective, never>;
|
|
45
45
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ThyWatermarkDirective, "[thyWatermark]", never, { "thyDisabled": { "alias": "thyDisabled"; "required": false; }; "thyWatermark": { "alias": "thyWatermark"; "required": false; }; "thyCanvasConfig": { "alias": "thyCanvasConfig"; "required": false; }; }, {}, never, never, true, never>;
|
|
46
|
+
static ngAcceptInputType_thyDisabled: unknown;
|
|
46
47
|
}
|
|
47
48
|
export {};
|