@zeedhi/vuetify 3.0.11 → 3.2.0
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/dist/zd-vuetify.css +49 -59
- package/dist/zd-vuetify.min.css +1 -1
- package/dist/zd-vuetify.min.js +14 -16
- package/dist/zd-vuetify.mjs +1278 -922
- package/environments.json +16 -0
- package/package.json +3 -3
- package/src/components/index.ts +3 -1
- package/src/components/zd-alert/ZdAlert.ts +1 -1
- package/src/components/zd-badge/ZdBadge.ts +1 -1
- package/src/components/zd-breadcrumbs/ZdBreadcrumbs.ts +2 -1
- package/src/components/zd-button/ZdButton.ts +1 -1
- package/src/components/zd-button-group/ZdButtonGroup.ts +1 -1
- package/src/components/zd-card/ZdCard.ts +1 -1
- package/src/components/zd-card/ZdCard.vue +2 -2
- package/src/components/zd-carousel/ZdCarousel.ts +3 -1
- package/src/components/zd-checkbox/ZdCheckbox.ts +1 -1
- package/src/components/zd-checkbox/ZdCheckbox.vue +4 -0
- package/src/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts +3 -1
- package/src/components/zd-chip/ZdChip.ts +1 -1
- package/src/components/zd-code-viewer/ZdCodeViewer.ts +1 -1
- package/src/components/zd-col/ZdCol.ts +1 -1
- package/src/components/zd-collapse-card/ZdCollapseCard.ts +3 -1
- package/src/components/zd-component/ZdComponent.ts +23 -1
- package/src/components/zd-component/ZdComponentRender.ts +2 -0
- package/src/components/zd-container/ZdContainer.ts +1 -1
- package/src/components/zd-currency/ZdCurrency.ts +1 -1
- package/src/components/zd-date-input/ZdDateInput.ts +2 -1
- package/src/components/zd-date-range/ZdDateRange.ts +1 -1
- package/src/components/zd-divider/ZdDivider.ts +1 -1
- package/src/components/zd-dropdown/ZdDropdown.ts +2 -1
- package/src/components/zd-dropdown/ZdDropdown.vue +1 -1
- package/src/components/zd-footer/ZdFooter.ts +1 -1
- package/src/components/zd-form/ZdForm.ts +2 -1
- package/src/components/zd-frame/ZdFrame.ts +3 -1
- package/src/components/zd-frame-page/ZdFramePage.ts +1 -1
- package/src/components/zd-frame-page/ZdFramePage.vue +1 -1
- package/src/components/zd-grid/ZdGrid.ts +10 -2
- package/src/components/zd-grid/ZdGrid.vue +1 -1
- package/src/components/zd-grid/cell/ZdGridCellContent.vue +5 -7
- package/src/components/zd-grid/column-header/ZdGridColumnHeader.vue +4 -7
- package/src/components/zd-grid-editable/ZdGridEditable.ts +25 -15
- package/src/components/zd-grid-editable/cell/ZdGridEditableCell.vue +1 -0
- package/src/components/zd-header/ZdHeader.ts +4 -1
- package/src/components/zd-icon/ZdIcon.ts +1 -1
- package/src/components/zd-image/ZdImage.ts +1 -1
- package/src/components/zd-increment/ZdIncrement.ts +1 -1
- package/src/components/zd-input/ZdInput.ts +10 -3
- package/src/components/zd-iterable/ZdIterable.ts +2 -0
- package/src/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts +6 -1
- package/src/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts +1 -1
- package/src/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts +2 -1
- package/src/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts +8 -3
- package/src/components/zd-iterable/zd-search/ZdSearch.ts +1 -1
- package/src/components/zd-iterable-component-render/ZdIterableComponentRender.ts +12 -1
- package/src/components/zd-layout/ZdLayout.ts +1 -1
- package/src/components/zd-list/ZdList.scss +3 -0
- package/src/components/zd-list/ZdList.ts +2 -1
- package/src/components/zd-list/ZdListGroup.ts +2 -1
- package/src/components/zd-list/ZdListGroup.vue +14 -16
- package/src/components/zd-list/ZdListItem.ts +1 -1
- package/src/components/zd-loading/ZdLoading.ts +1 -1
- package/src/components/zd-loading/ZdLoading.vue +30 -53
- package/src/components/zd-login/ZdLogin.ts +3 -1
- package/src/components/zd-login/ZdLoginButton.ts +1 -1
- package/src/components/zd-main/ZdMain.ts +1 -1
- package/src/components/zd-master-detail/ZdMasterDetail.ts +1 -1
- package/src/components/zd-menu/ZdMenu.ts +9 -4
- package/src/components/zd-menu/ZdMenu.vue +6 -5
- package/src/components/zd-menu/ZdMenuButton.ts +1 -1
- package/src/components/zd-menu/ZdMenuGroup.ts +2 -1
- package/src/components/zd-menu/ZdMenuLink.ts +1 -1
- package/src/components/zd-menu/ZdMenuSeparator.ts +1 -1
- package/src/components/zd-modal/ZdModal.ts +1 -21
- package/src/components/zd-modal/ZdModal.vue +18 -77
- package/src/components/zd-modal/ZdModalCard.ts +100 -0
- package/src/components/zd-modal/ZdModalCard.vue +47 -0
- package/src/components/zd-modal/ZdModalCloseButton.ts +1 -1
- package/src/components/zd-month/ZdMonth.ts +1 -1
- package/src/components/zd-number-input/ZdNumberInput.ts +1 -1
- package/src/components/zd-password/ZdPassword.ts +1 -1
- package/src/components/zd-progress/ZdProgress.ts +2 -1
- package/src/components/zd-radio/ZdRadio.ts +2 -1
- package/src/components/zd-row/ZdRow.ts +1 -1
- package/src/components/zd-select/ZdSelect.ts +28 -3
- package/src/components/zd-select/ZdSelect.vue +5 -8
- package/src/components/zd-select-multiple/ZdSelectMultiple.ts +27 -4
- package/src/components/zd-select-multiple/ZdSelectMultiple.vue +11 -2
- package/src/components/zd-svg-map/ZdSvgMap.ts +1 -1
- package/src/components/zd-switch/ZdSwitch.ts +1 -1
- package/src/components/zd-table/ZdTable.ts +1 -1
- package/src/components/zd-tabs/ZdTab.ts +1 -1
- package/src/components/zd-tabs/ZdTabItem.vue +3 -0
- package/src/components/zd-tabs/ZdTabs.ts +4 -3
- package/src/components/zd-tabs/ZdTabs.vue +14 -5
- package/src/components/zd-tag/ZdTag.ts +1 -1
- package/src/components/zd-text/ZdText.ts +1 -1
- package/src/components/zd-text-input/ZdTextInput.ts +7 -1
- package/src/components/zd-text-input/ZdTextInput.vue +3 -3
- package/src/components/zd-textarea/ZdTextarea.ts +5 -1
- package/src/components/zd-textarea/ZdTextarea.vue +6 -2
- package/src/components/zd-time/ZdTime.ts +1 -1
- package/src/components/zd-tooltip/ZdTooltip.ts +1 -1
- package/src/components/zd-tooltip/ZdTooltip.vue +2 -1
- package/src/components/zd-tooltip-overflow/ZdTooltipOverflow.vue +45 -0
- package/src/components/zd-tree/ZdTree.ts +5 -1
- package/src/components/zd-tree-grid/ZdTreeGrid.ts +2 -1
- package/src/composables/columnDrag.ts +9 -11
- package/src/composables/gridColumns.ts +11 -6
- package/src/composables/tableNavigation.ts +5 -1
- package/src/composables/useTooltipManager.ts +24 -0
- package/src/directives/index.ts +1 -0
- package/src/directives/v-tooltip-overflow.ts +97 -0
- package/src/index.ts +11 -0
- package/src/styles/_zd-input.scss +3 -2
- package/src/utils/fillHeight.ts +3 -2
- package/src/utils/index.ts +1 -0
- package/src/utils/plugins/getIconPlugin.ts +4 -3
- package/src/utils/tooltip-overflow/index.ts +2 -0
- package/src/utils/tooltip-overflow/install.ts +27 -0
- package/src/utils/tooltip-overflow/uninstall.ts +32 -0
- package/types/components/zd-alert/ZdAlert.d.ts +158 -80
- package/types/components/zd-badge/ZdBadge.d.ts +76 -52
- package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +81 -54
- package/types/components/zd-button/ZdButton.d.ts +92 -68
- package/types/components/zd-button-group/ZdButtonGroup.d.ts +59 -44
- package/types/components/zd-card/ZdCard.d.ts +87 -63
- package/types/components/zd-carousel/ZdCarousel.d.ts +229 -225
- package/types/components/zd-checkbox/ZdCheckbox.d.ts +41 -14
- package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +202 -169
- package/types/components/zd-chip/ZdChip.d.ts +87 -63
- package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +96 -66
- package/types/components/zd-col/ZdCol.d.ts +76 -52
- package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +195 -111
- package/types/components/zd-component/ZdComponent.d.ts +12 -5
- package/types/components/zd-component/ZdComponentRender.d.ts +12 -4
- package/types/components/zd-container/ZdContainer.d.ts +79 -55
- package/types/components/zd-currency/ZdCurrency.d.ts +192 -165
- package/types/components/zd-date-input/ZdDateInput.d.ts +62 -29
- package/types/components/zd-date-range/ZdDateRange.d.ts +206 -176
- package/types/components/zd-dialog/ZdDialog.d.ts +36 -12
- package/types/components/zd-divider/ZdDivider.d.ts +76 -52
- package/types/components/zd-dropdown/ZdDropdown.d.ts +90 -72
- package/types/components/zd-footer/ZdFooter.d.ts +204 -142
- package/types/components/zd-form/ZdForm.d.ts +12 -4
- package/types/components/zd-frame/ZdFrame.d.ts +13 -4
- package/types/components/zd-frame-page/ZdFramePage.d.ts +84 -57
- package/types/components/zd-grid/ZdGrid.d.ts +2646 -2673
- package/types/components/zd-grid/cell/ZdGridAction.d.ts +2 -2
- package/types/components/zd-grid/cell/ZdGridCell.d.ts +4 -4
- package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +4 -4
- package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +2 -2
- package/types/components/zd-grid/composables/grid-instance.d.ts +983 -294
- package/types/components/zd-grid/footer/ZdGridFooter.d.ts +983 -294
- package/types/components/zd-grid/row/ZdGridRow.d.ts +6 -6
- package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +983 -294
- package/types/components/zd-grid-editable/ZdGridEditable.d.ts +3684 -4887
- package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +71 -71
- package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +6 -6
- package/types/components/zd-header/ZdHeader.d.ts +230 -172
- package/types/components/zd-icon/ZdIcon.d.ts +39 -15
- package/types/components/zd-image/ZdImage.d.ts +73 -52
- package/types/components/zd-increment/ZdIncrement.d.ts +192 -165
- package/types/components/zd-input/ZdInput.d.ts +15 -6
- package/types/components/zd-iterable/ZdIterable.d.ts +26 -12
- package/types/components/zd-iterable/ZdIterableNoData.d.ts +983 -294
- package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +422 -139
- package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +410 -121
- package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +938 -266
- package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +422 -130
- package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +50 -23
- package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +437 -293
- package/types/components/zd-layout/ZdLayout.d.ts +75 -54
- package/types/components/zd-list/ZdList.d.ts +336 -97
- package/types/components/zd-list/ZdListGroup.d.ts +361 -122
- package/types/components/zd-list/ZdListItem.d.ts +200 -70
- package/types/components/zd-loading/ZdLoading.d.ts +35 -14
- package/types/components/zd-login/ZdLogin.d.ts +119 -89
- package/types/components/zd-login/ZdLoginButton.d.ts +170 -146
- package/types/components/zd-main/ZdMain.d.ts +73 -52
- package/types/components/zd-master-detail/ZdMasterDetail.d.ts +94 -70
- package/types/components/zd-menu/ZdMenu.d.ts +578 -535
- package/types/components/zd-menu/ZdMenuButton.d.ts +85 -61
- package/types/components/zd-menu/ZdMenuGroup.d.ts +811 -778
- package/types/components/zd-menu/ZdMenuLink.d.ts +1327 -1303
- package/types/components/zd-menu/ZdMenuSeparator.d.ts +76 -52
- package/types/components/zd-modal/ZdModal.d.ts +0 -2
- package/types/components/zd-modal/ZdModalCard.d.ts +125 -0
- package/types/components/zd-modal/ZdModalCloseButton.d.ts +85 -61
- package/types/components/zd-month/ZdMonth.d.ts +204 -176
- package/types/components/zd-number-input/ZdNumberInput.d.ts +192 -165
- package/types/components/zd-password/ZdPassword.d.ts +192 -165
- package/types/components/zd-progress/ZdProgress.d.ts +111 -84
- package/types/components/zd-radio/ZdRadio.d.ts +44 -14
- package/types/components/zd-row/ZdRow.d.ts +76 -52
- package/types/components/zd-select/ZdSelect.d.ts +17 -5
- package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +17 -5
- package/types/components/zd-svg-map/ZdSvgMap.d.ts +37 -13
- package/types/components/zd-switch/ZdSwitch.d.ts +191 -164
- package/types/components/zd-table/ZdTable.d.ts +319 -118
- package/types/components/zd-tabs/ZdTab.d.ts +121 -44
- package/types/components/zd-tabs/ZdTabItem.d.ts +36 -12
- package/types/components/zd-tabs/ZdTabs.d.ts +268 -82
- package/types/components/zd-tag/ZdTag.d.ts +76 -52
- package/types/components/zd-text/ZdText.d.ts +96 -66
- package/types/components/zd-text-input/ZdTextInput.d.ts +41 -14
- package/types/components/zd-textarea/ZdTextarea.d.ts +55 -15
- package/types/components/zd-time/ZdTime.d.ts +201 -174
- package/types/components/zd-toggleable/ZdToggleable.d.ts +13 -4
- package/types/components/zd-tooltip/ZdTooltip.d.ts +82 -58
- package/types/components/zd-tree/ZdTree.d.ts +208 -172
- package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +3 -3
- package/types/components/zd-tree/ZdTreeCheckbox.d.ts +5 -5
- package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +1215 -1199
- package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +4 -4
- package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +6 -6
- package/types/composables/cellSelection.d.ts +2 -264
- package/types/composables/gridColumns.d.ts +88 -35
- package/types/composables/gridSorting.d.ts +1 -1
- package/types/composables/tableNavigation.d.ts +3 -2
- package/types/composables/useTooltipManager.d.ts +13 -0
- package/types/directives/index.d.ts +1 -0
- package/types/directives/v-tooltip-overflow.d.ts +12 -0
- package/types/index.d.ts +1 -0
- package/types/utils/fillHeight.d.ts +1 -1
- package/types/utils/index.d.ts +1 -0
- package/types/utils/tooltip-overflow/index.d.ts +2 -0
- package/types/utils/tooltip-overflow/install.d.ts +13 -0
- package/types/utils/tooltip-overflow/uninstall.d.ts +14 -0
- package/src/components/tooltip-overflow/ZdTooltipOverflow.ts +0 -63
- package/src/components/tooltip-overflow/ZdTooltipOverflow.vue +0 -63
- package/types/components/tek-grid/TekGrid.d.ts +0 -7258
- package/types/components/tek-grid/TekGrid.ts.d.ts +0 -7258
- package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +0 -129
- package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +0 -129
- package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +0 -225
- package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +0 -225
- package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +0 -2432
- package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +0 -2432
- package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +0 -65
- package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +0 -9
- package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +0 -2920
- package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +0 -2920
- package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +0 -32
- package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +0 -32
- package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +0 -1892
- package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +0 -1892
- package/types/components/tek-grid/row/TekGridFooterRow.d.ts +0 -90
- package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +0 -90
- package/types/components/tek-grid/row/TekGridGroupRow.d.ts +0 -87
- package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +0 -87
- package/types/components/tooltip-overflow/ZdTooltipOverflow.ts.d.ts +0 -50
- package/types/components/zd-activator-wrapper/ZdActivatorWrapper.ts.d.ts +0 -25
- package/types/components/zd-alert/ZdAlert.ts.d.ts +0 -884
- package/types/components/zd-badge/ZdBadge.ts.d.ts +0 -624
- package/types/components/zd-breadcrumbs/ZdBreadcrumbs.ts.d.ts +0 -697
- package/types/components/zd-button/ZdButton.ts.d.ts +0 -1158
- package/types/components/zd-button-group/ZdButtonGroup.ts.d.ts +0 -785
- package/types/components/zd-card/ZdCard.ts.d.ts +0 -1028
- package/types/components/zd-carousel/ZdCarousel.ts.d.ts +0 -2007
- package/types/components/zd-checkbox/ZdCheckbox.ts.d.ts +0 -642
- package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts.d.ts +0 -2010
- package/types/components/zd-chip/ZdChip.ts.d.ts +0 -1256
- package/types/components/zd-code-viewer/ZdCodeViewer.ts.d.ts +0 -791
- package/types/components/zd-col/ZdCol.ts.d.ts +0 -741
- package/types/components/zd-collapse-card/ZdCollapseCard.ts.d.ts +0 -1583
- package/types/components/zd-container/ZdContainer.ts.d.ts +0 -722
- package/types/components/zd-currency/ZdCurrency.ts.d.ts +0 -2024
- package/types/components/zd-date-input/ZdDateInput.ts.d.ts +0 -960
- package/types/components/zd-dialog/ZdDialog.ts.d.ts +0 -262
- package/types/components/zd-divider/ZdDivider.ts.d.ts +0 -623
- package/types/components/zd-dropdown/ZdDropdown.ts.d.ts +0 -836
- package/types/components/zd-footer/ZdFooter.ts.d.ts +0 -1262
- package/types/components/zd-form/ZdForm.ts.d.ts +0 -118
- package/types/components/zd-frame/ZdFrame.ts.d.ts +0 -138
- package/types/components/zd-frame-page/ZdFramePage.ts.d.ts +0 -805
- package/types/components/zd-grid/ZdGrid.ts.d.ts +0 -7304
- package/types/components/zd-grid/cell/ZdGridAction.ts.d.ts +0 -14
- package/types/components/zd-grid/cell/ZdGridCell.ts.d.ts +0 -68
- package/types/components/zd-grid/cell/ZdGridCellContent.ts.d.ts +0 -58
- package/types/components/zd-grid/cell/ZdGridCheckbox.ts.d.ts +0 -53
- package/types/components/zd-grid/column-header/ZdGridColumnHeader.ts.d.ts +0 -112
- package/types/components/zd-grid/column-header/ZdGridHeaderIcon.ts.d.ts +0 -46
- package/types/components/zd-grid/column-header/ZdGridHeaderRow.ts.d.ts +0 -165
- package/types/components/zd-grid/column-header/ZdGridSort.ts.d.ts +0 -47
- package/types/components/zd-grid/footer/ZdGridFooter.ts.d.ts +0 -2087
- package/types/components/zd-grid/helper/ZdGridHelper.ts.d.ts +0 -16
- package/types/components/zd-grid/row/TableRow.ts.d.ts +0 -34
- package/types/components/zd-grid/row/ZdGridRow.ts.d.ts +0 -105
- package/types/components/zd-grid/toolbar/ZdGridToolbar.ts.d.ts +0 -2086
- package/types/components/zd-grid-editable/ZdGridEditable.ts.d.ts +0 -8663
- package/types/components/zd-grid-editable/cell/ZdGridEditableCell.ts.d.ts +0 -637
- package/types/components/zd-grid-editable/row/ZdGridEditableRow.ts.d.ts +0 -126
- package/types/components/zd-header/ZdHeader.ts.d.ts +0 -1320
- package/types/components/zd-icon/ZdIcon.ts.d.ts +0 -383
- package/types/components/zd-image/ZdImage.ts.d.ts +0 -753
- package/types/components/zd-increment/ZdIncrement.ts.d.ts +0 -2069
- package/types/components/zd-iterable/ZdIterableNoData.ts.d.ts +0 -2089
- package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts.d.ts +0 -1645
- package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts.d.ts +0 -1081
- package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts.d.ts +0 -2763
- package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts.d.ts +0 -1627
- package/types/components/zd-iterable/zd-search/ZdSearch.ts.d.ts +0 -766
- package/types/components/zd-iterable-component-render/ZdIterableComponentRender.ts.d.ts +0 -2484
- package/types/components/zd-layout/ZdLayout.ts.d.ts +0 -647
- package/types/components/zd-list/ZdList.ts.d.ts +0 -1140
- package/types/components/zd-list/ZdListGroup.ts.d.ts +0 -1332
- package/types/components/zd-list/ZdListItem.ts.d.ts +0 -848
- package/types/components/zd-loading/ZdLoading.ts.d.ts +0 -350
- package/types/components/zd-login/ZdLogin.ts.d.ts +0 -1072
- package/types/components/zd-login/ZdLoginButton.ts.d.ts +0 -1910
- package/types/components/zd-main/ZdMain.ts.d.ts +0 -619
- package/types/components/zd-master-detail/ZdMasterDetail.ts.d.ts +0 -684
- package/types/components/zd-menu/ZdMenu.ts.d.ts +0 -4484
- package/types/components/zd-menu/ZdMenuButton.ts.d.ts +0 -1142
- package/types/components/zd-menu/ZdMenuGroup.ts.d.ts +0 -6286
- package/types/components/zd-menu/ZdMenuLink.ts.d.ts +0 -10437
- package/types/components/zd-menu/ZdMenuSeparator.ts.d.ts +0 -600
- package/types/components/zd-modal/ZdModal.ts.d.ts +0 -10
- package/types/components/zd-modal/ZdModalCloseButton.ts.d.ts +0 -1137
- package/types/components/zd-month/ZdMonth.ts.d.ts +0 -2217
- package/types/components/zd-number-input/ZdNumberInput.ts.d.ts +0 -2021
- package/types/components/zd-password/ZdPassword.ts.d.ts +0 -2014
- package/types/components/zd-progress/ZdProgress.ts.d.ts +0 -859
- package/types/components/zd-radio/ZdRadio.ts.d.ts +0 -682
- package/types/components/zd-row/ZdRow.ts.d.ts +0 -734
- package/types/components/zd-select/ZdSelect.ts.d.ts +0 -313
- package/types/components/zd-select-multiple/ZdSelectMultiple.ts.d.ts +0 -333
- package/types/components/zd-svg-map/ZdSvgMap.ts.d.ts +0 -414
- package/types/components/zd-switch/ZdSwitch.ts.d.ts +0 -1918
- package/types/components/zd-table/ZdTable.ts.d.ts +0 -1092
- package/types/components/zd-tabs/ZdTab.ts.d.ts +0 -674
- package/types/components/zd-tabs/ZdTabItem.ts.d.ts +0 -268
- package/types/components/zd-tabs/ZdTabs.ts.d.ts +0 -929
- package/types/components/zd-tag/ZdTag.ts.d.ts +0 -613
- package/types/components/zd-text/ZdText.ts.d.ts +0 -670
- package/types/components/zd-text-input/ZdTextInput.ts.d.ts +0 -746
- package/types/components/zd-textarea/ZdTextarea.ts.d.ts +0 -877
- package/types/components/zd-time/ZdTime.ts.d.ts +0 -2224
- package/types/components/zd-tooltip/ZdTooltip.ts.d.ts +0 -781
- package/types/components/zd-tree/ZdTree.ts.d.ts +0 -1878
- package/types/components/zd-tree/ZdTreeAfterTitle.ts.d.ts +0 -26
- package/types/components/zd-tree/ZdTreeCheckbox.ts.d.ts +0 -74
- package/types/components/zd-tree-grid/ZdTreeGrid.ts.d.ts +0 -4178
- package/types/components/zd-tree-grid/cell/ZdTreeGridCell.ts.d.ts +0 -92
- package/types/components/zd-tree-grid/row/ZdTreeGridRow.ts.d.ts +0 -124
- package/types/composables/useTableLayout.d.ts +0 -25
- package/types/utils/isArrayOperation.d.ts +0 -2
|
@@ -12,10 +12,12 @@ export declare const ZdTextProps: {
|
|
|
12
12
|
isArray(arg: any): arg is any[];
|
|
13
13
|
readonly prototype: any[];
|
|
14
14
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
15
|
-
from<
|
|
16
|
-
from<
|
|
17
|
-
from<
|
|
18
|
-
of<
|
|
15
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
16
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
17
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
18
|
+
of<T>(...items: T[]): T[];
|
|
19
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
20
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
19
21
|
readonly [Symbol.species]: ArrayConstructor;
|
|
20
22
|
})[];
|
|
21
23
|
default: string;
|
|
@@ -33,16 +35,20 @@ export declare const ZdTextProps: {
|
|
|
33
35
|
isArray(arg: any): arg is any[];
|
|
34
36
|
readonly prototype: any[];
|
|
35
37
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
36
|
-
from<
|
|
37
|
-
from<
|
|
38
|
-
from<
|
|
39
|
-
of<
|
|
38
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
39
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
40
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
41
|
+
of<T>(...items: T[]): T[];
|
|
42
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
43
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
40
44
|
readonly [Symbol.species]: ArrayConstructor;
|
|
41
45
|
})[];
|
|
42
46
|
default(): never[];
|
|
47
|
+
watch: boolean;
|
|
43
48
|
};
|
|
44
49
|
component: {
|
|
45
50
|
type: StringConstructor;
|
|
51
|
+
watch: boolean;
|
|
46
52
|
};
|
|
47
53
|
allowDuplicate: {
|
|
48
54
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -67,10 +73,12 @@ export declare const ZdTextProps: {
|
|
|
67
73
|
directives: {
|
|
68
74
|
type: ObjectConstructor;
|
|
69
75
|
default(): {};
|
|
76
|
+
watch: boolean;
|
|
70
77
|
};
|
|
71
78
|
events: {
|
|
72
79
|
type: ObjectConstructor;
|
|
73
80
|
default(): {};
|
|
81
|
+
watch: boolean;
|
|
74
82
|
};
|
|
75
83
|
instanceObject: {
|
|
76
84
|
type: ObjectConstructor;
|
|
@@ -82,6 +90,7 @@ export declare const ZdTextProps: {
|
|
|
82
90
|
keyMap: {
|
|
83
91
|
type: ObjectConstructor;
|
|
84
92
|
default(): {};
|
|
93
|
+
watch: boolean;
|
|
85
94
|
};
|
|
86
95
|
light: {
|
|
87
96
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -93,6 +102,7 @@ export declare const ZdTextProps: {
|
|
|
93
102
|
};
|
|
94
103
|
parent: {
|
|
95
104
|
type: ObjectConstructor;
|
|
105
|
+
watch: boolean;
|
|
96
106
|
};
|
|
97
107
|
tabStop: {
|
|
98
108
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -116,10 +126,12 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
116
126
|
isArray(arg: any): arg is any[];
|
|
117
127
|
readonly prototype: any[];
|
|
118
128
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
119
|
-
from<
|
|
120
|
-
from<
|
|
121
|
-
from<
|
|
122
|
-
of<
|
|
129
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
130
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
131
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
132
|
+
of<T>(...items: T[]): T[];
|
|
133
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
134
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
123
135
|
readonly [Symbol.species]: ArrayConstructor;
|
|
124
136
|
})[];
|
|
125
137
|
default: string;
|
|
@@ -137,16 +149,20 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
137
149
|
isArray(arg: any): arg is any[];
|
|
138
150
|
readonly prototype: any[];
|
|
139
151
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
140
|
-
from<
|
|
141
|
-
from<
|
|
142
|
-
from<
|
|
143
|
-
of<
|
|
152
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
153
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
154
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
155
|
+
of<T>(...items: T[]): T[];
|
|
156
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
157
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
144
158
|
readonly [Symbol.species]: ArrayConstructor;
|
|
145
159
|
})[];
|
|
146
160
|
default(): never[];
|
|
161
|
+
watch: boolean;
|
|
147
162
|
};
|
|
148
163
|
component: {
|
|
149
164
|
type: StringConstructor;
|
|
165
|
+
watch: boolean;
|
|
150
166
|
};
|
|
151
167
|
allowDuplicate: {
|
|
152
168
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -171,10 +187,12 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
171
187
|
directives: {
|
|
172
188
|
type: ObjectConstructor;
|
|
173
189
|
default(): {};
|
|
190
|
+
watch: boolean;
|
|
174
191
|
};
|
|
175
192
|
events: {
|
|
176
193
|
type: ObjectConstructor;
|
|
177
194
|
default(): {};
|
|
195
|
+
watch: boolean;
|
|
178
196
|
};
|
|
179
197
|
instanceObject: {
|
|
180
198
|
type: ObjectConstructor;
|
|
@@ -186,6 +204,7 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
186
204
|
keyMap: {
|
|
187
205
|
type: ObjectConstructor;
|
|
188
206
|
default(): {};
|
|
207
|
+
watch: boolean;
|
|
189
208
|
};
|
|
190
209
|
light: {
|
|
191
210
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -197,6 +216,7 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
197
216
|
};
|
|
198
217
|
parent: {
|
|
199
218
|
type: ObjectConstructor;
|
|
219
|
+
watch: boolean;
|
|
200
220
|
};
|
|
201
221
|
tabStop: {
|
|
202
222
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -207,18 +227,18 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
207
227
|
};
|
|
208
228
|
}>, {
|
|
209
229
|
instance: {
|
|
210
|
-
tag?: string | undefined;
|
|
230
|
+
tag?: string | undefined | undefined;
|
|
211
231
|
text: string | string[];
|
|
212
232
|
compile: boolean;
|
|
213
233
|
children: {
|
|
214
234
|
[x: string]: any;
|
|
215
|
-
children?: any[] | undefined;
|
|
235
|
+
children?: /*elided*/ any[] | undefined;
|
|
216
236
|
component: string;
|
|
217
237
|
allowDuplicate?: boolean | undefined;
|
|
218
238
|
autofocus?: boolean | undefined;
|
|
219
239
|
componentId?: number | undefined;
|
|
220
240
|
cssClass?: string | undefined;
|
|
221
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
241
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
222
242
|
events?: {
|
|
223
243
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
224
244
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -254,25 +274,25 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
254
274
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
255
275
|
} | undefined;
|
|
256
276
|
} | undefined;
|
|
257
|
-
isVisible?:
|
|
277
|
+
isVisible?: boolean | string | undefined;
|
|
258
278
|
dark?: boolean | undefined;
|
|
259
279
|
light?: boolean | undefined;
|
|
260
280
|
theme?: string | undefined;
|
|
261
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
281
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
262
282
|
name: string;
|
|
263
283
|
parent?: {
|
|
264
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
265
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
284
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
285
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
266
286
|
allowDuplicate: boolean;
|
|
267
287
|
autofocus: boolean;
|
|
268
288
|
children: {
|
|
269
289
|
[x: string]: any;
|
|
270
290
|
allowDuplicate?: boolean | undefined;
|
|
271
291
|
autofocus?: boolean | undefined;
|
|
272
|
-
children?: any[] | undefined;
|
|
292
|
+
children?: /*elided*/ any[] | undefined;
|
|
273
293
|
componentId?: number | undefined;
|
|
274
294
|
cssClass?: string | undefined;
|
|
275
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
295
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
276
296
|
events?: {
|
|
277
297
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
278
298
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -308,20 +328,20 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
308
328
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
309
329
|
} | undefined;
|
|
310
330
|
} | undefined;
|
|
311
|
-
isVisible?:
|
|
331
|
+
isVisible?: boolean | string | undefined;
|
|
312
332
|
dark?: boolean | undefined;
|
|
313
333
|
light?: boolean | undefined;
|
|
314
334
|
theme?: string | undefined;
|
|
315
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
335
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
316
336
|
name: string;
|
|
317
|
-
parent?: any | undefined;
|
|
337
|
+
parent?: /*elided*/ any | undefined;
|
|
318
338
|
tabStop?: boolean | undefined;
|
|
319
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
339
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
320
340
|
fillHeight?: boolean | undefined;
|
|
321
341
|
}[];
|
|
322
342
|
componentId: number;
|
|
323
343
|
cssClass: string;
|
|
324
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
344
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
325
345
|
events: {
|
|
326
346
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
327
347
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -357,19 +377,19 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
357
377
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
358
378
|
} | undefined;
|
|
359
379
|
};
|
|
360
|
-
isVisible:
|
|
380
|
+
isVisible: boolean | string;
|
|
361
381
|
dark: boolean;
|
|
362
382
|
light: boolean;
|
|
363
383
|
theme?: string | undefined;
|
|
364
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
384
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
365
385
|
name: string;
|
|
366
|
-
parent?: any | undefined;
|
|
386
|
+
parent?: /*elided*/ any | undefined;
|
|
367
387
|
tabStop: boolean;
|
|
368
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
388
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
369
389
|
fillHeight: boolean;
|
|
370
390
|
} | undefined;
|
|
371
391
|
tabStop?: boolean | undefined;
|
|
372
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
392
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
373
393
|
fillHeight?: boolean | undefined;
|
|
374
394
|
}[];
|
|
375
395
|
component: string;
|
|
@@ -420,18 +440,18 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
420
440
|
theme?: string | undefined;
|
|
421
441
|
fillHeight: boolean;
|
|
422
442
|
parent?: {
|
|
423
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
424
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
443
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
444
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
425
445
|
allowDuplicate: boolean;
|
|
426
446
|
autofocus: boolean;
|
|
427
447
|
children: {
|
|
428
448
|
[x: string]: any;
|
|
429
449
|
allowDuplicate?: boolean | undefined;
|
|
430
450
|
autofocus?: boolean | undefined;
|
|
431
|
-
children?: any[] | undefined;
|
|
451
|
+
children?: /*elided*/ any[] | undefined;
|
|
432
452
|
componentId?: number | undefined;
|
|
433
453
|
cssClass?: string | undefined;
|
|
434
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
454
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
435
455
|
events?: {
|
|
436
456
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
437
457
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -467,20 +487,20 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
467
487
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
468
488
|
} | undefined;
|
|
469
489
|
} | undefined;
|
|
470
|
-
isVisible?:
|
|
490
|
+
isVisible?: boolean | string | undefined;
|
|
471
491
|
dark?: boolean | undefined;
|
|
472
492
|
light?: boolean | undefined;
|
|
473
493
|
theme?: string | undefined;
|
|
474
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
494
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
475
495
|
name: string;
|
|
476
|
-
parent?: any | undefined;
|
|
496
|
+
parent?: /*elided*/ any | undefined;
|
|
477
497
|
tabStop?: boolean | undefined;
|
|
478
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
498
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
479
499
|
fillHeight?: boolean | undefined;
|
|
480
500
|
}[];
|
|
481
501
|
componentId: number;
|
|
482
502
|
cssClass: string;
|
|
483
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
503
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
484
504
|
events: {
|
|
485
505
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
486
506
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -516,19 +536,19 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
516
536
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
517
537
|
} | undefined;
|
|
518
538
|
};
|
|
519
|
-
isVisible:
|
|
539
|
+
isVisible: boolean | string;
|
|
520
540
|
dark: boolean;
|
|
521
541
|
light: boolean;
|
|
522
542
|
theme?: string | undefined;
|
|
523
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
543
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
524
544
|
name: string;
|
|
525
|
-
parent?: any | undefined;
|
|
545
|
+
parent?: /*elided*/ any | undefined;
|
|
526
546
|
tabStop: boolean;
|
|
527
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
547
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
528
548
|
fillHeight: boolean;
|
|
529
549
|
} | undefined;
|
|
530
550
|
componentId: number;
|
|
531
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
551
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
532
552
|
isFocused: boolean;
|
|
533
553
|
tabStop: boolean;
|
|
534
554
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -537,22 +557,22 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
537
557
|
callEvent: (eventName: string, args: any) => boolean;
|
|
538
558
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
539
559
|
removeChild: (name: string) => void;
|
|
540
|
-
getChildInstance: <
|
|
541
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
560
|
+
getChildInstance: <T>(name: string) => T;
|
|
561
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
542
562
|
onCreated: () => void;
|
|
543
563
|
onBeforeMount: () => void;
|
|
544
564
|
onMounted: (element: any) => void;
|
|
545
565
|
onBeforeDestroy: () => void;
|
|
546
566
|
onDestroyed: () => void;
|
|
547
|
-
click: (event?: Event
|
|
567
|
+
click: (event?: Event, element?: any) => void;
|
|
548
568
|
focus: (event: Event, element: any) => void;
|
|
549
569
|
blur: (event: Event, element: any) => void;
|
|
550
|
-
mouseenter: (event?: Event
|
|
551
|
-
mouseleave: (event?: Event
|
|
552
|
-
mouseout: (event?: Event
|
|
553
|
-
mouseover: (event?: Event
|
|
570
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
571
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
572
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
573
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
554
574
|
};
|
|
555
|
-
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance
|
|
575
|
+
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
556
576
|
click: (event: Event) => void;
|
|
557
577
|
mouseenter: (event: Event) => void;
|
|
558
578
|
mouseleave: (event: Event) => void;
|
|
@@ -570,10 +590,12 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
570
590
|
isArray(arg: any): arg is any[];
|
|
571
591
|
readonly prototype: any[];
|
|
572
592
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
573
|
-
from<
|
|
574
|
-
from<
|
|
575
|
-
from<
|
|
576
|
-
of<
|
|
593
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
594
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
595
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
596
|
+
of<T>(...items: T[]): T[];
|
|
597
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
598
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
577
599
|
readonly [Symbol.species]: ArrayConstructor;
|
|
578
600
|
})[];
|
|
579
601
|
default: string;
|
|
@@ -591,16 +613,20 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
591
613
|
isArray(arg: any): arg is any[];
|
|
592
614
|
readonly prototype: any[];
|
|
593
615
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
594
|
-
from<
|
|
595
|
-
from<
|
|
596
|
-
from<
|
|
597
|
-
of<
|
|
616
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
617
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
618
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
619
|
+
of<T>(...items: T[]): T[];
|
|
620
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
621
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
598
622
|
readonly [Symbol.species]: ArrayConstructor;
|
|
599
623
|
})[];
|
|
600
624
|
default(): never[];
|
|
625
|
+
watch: boolean;
|
|
601
626
|
};
|
|
602
627
|
component: {
|
|
603
628
|
type: StringConstructor;
|
|
629
|
+
watch: boolean;
|
|
604
630
|
};
|
|
605
631
|
allowDuplicate: {
|
|
606
632
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -625,10 +651,12 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
625
651
|
directives: {
|
|
626
652
|
type: ObjectConstructor;
|
|
627
653
|
default(): {};
|
|
654
|
+
watch: boolean;
|
|
628
655
|
};
|
|
629
656
|
events: {
|
|
630
657
|
type: ObjectConstructor;
|
|
631
658
|
default(): {};
|
|
659
|
+
watch: boolean;
|
|
632
660
|
};
|
|
633
661
|
instanceObject: {
|
|
634
662
|
type: ObjectConstructor;
|
|
@@ -640,6 +668,7 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
640
668
|
keyMap: {
|
|
641
669
|
type: ObjectConstructor;
|
|
642
670
|
default(): {};
|
|
671
|
+
watch: boolean;
|
|
643
672
|
};
|
|
644
673
|
light: {
|
|
645
674
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -651,6 +680,7 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
651
680
|
};
|
|
652
681
|
parent: {
|
|
653
682
|
type: ObjectConstructor;
|
|
683
|
+
watch: boolean;
|
|
654
684
|
};
|
|
655
685
|
tabStop: {
|
|
656
686
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -673,7 +703,7 @@ declare const textComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
673
703
|
light: string | boolean;
|
|
674
704
|
tabStop: string | boolean;
|
|
675
705
|
text: string | string[];
|
|
676
|
-
tag: string;
|
|
677
706
|
compile: string | boolean;
|
|
707
|
+
tag: string;
|
|
678
708
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
679
709
|
export default textComponent;
|
|
@@ -153,6 +153,7 @@ export declare const ZdTextInputProps: {
|
|
|
153
153
|
validations: {
|
|
154
154
|
type: (ObjectConstructor | StringConstructor)[];
|
|
155
155
|
default: {};
|
|
156
|
+
watch: boolean;
|
|
156
157
|
};
|
|
157
158
|
value: {
|
|
158
159
|
default: null;
|
|
@@ -170,16 +171,20 @@ export declare const ZdTextInputProps: {
|
|
|
170
171
|
isArray(arg: any): arg is any[];
|
|
171
172
|
readonly prototype: any[];
|
|
172
173
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
173
|
-
from<
|
|
174
|
-
from<
|
|
175
|
-
from<
|
|
176
|
-
of<
|
|
174
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
175
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
176
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
177
|
+
of<T>(...items: T[]): T[];
|
|
178
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
179
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
177
180
|
readonly [Symbol.species]: ArrayConstructor;
|
|
178
181
|
})[];
|
|
179
182
|
default(): never[];
|
|
183
|
+
watch: boolean;
|
|
180
184
|
};
|
|
181
185
|
component: {
|
|
182
186
|
type: StringConstructor;
|
|
187
|
+
watch: boolean;
|
|
183
188
|
};
|
|
184
189
|
allowDuplicate: {
|
|
185
190
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -204,10 +209,12 @@ export declare const ZdTextInputProps: {
|
|
|
204
209
|
directives: {
|
|
205
210
|
type: ObjectConstructor;
|
|
206
211
|
default(): {};
|
|
212
|
+
watch: boolean;
|
|
207
213
|
};
|
|
208
214
|
events: {
|
|
209
215
|
type: ObjectConstructor;
|
|
210
216
|
default(): {};
|
|
217
|
+
watch: boolean;
|
|
211
218
|
};
|
|
212
219
|
instanceObject: {
|
|
213
220
|
type: ObjectConstructor;
|
|
@@ -219,6 +226,7 @@ export declare const ZdTextInputProps: {
|
|
|
219
226
|
keyMap: {
|
|
220
227
|
type: ObjectConstructor;
|
|
221
228
|
default(): {};
|
|
229
|
+
watch: boolean;
|
|
222
230
|
};
|
|
223
231
|
light: {
|
|
224
232
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -230,6 +238,7 @@ export declare const ZdTextInputProps: {
|
|
|
230
238
|
};
|
|
231
239
|
parent: {
|
|
232
240
|
type: ObjectConstructor;
|
|
241
|
+
watch: boolean;
|
|
233
242
|
};
|
|
234
243
|
tabStop: {
|
|
235
244
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -392,6 +401,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
392
401
|
validations: {
|
|
393
402
|
type: (ObjectConstructor | StringConstructor)[];
|
|
394
403
|
default: {};
|
|
404
|
+
watch: boolean;
|
|
395
405
|
};
|
|
396
406
|
value: {
|
|
397
407
|
default: null;
|
|
@@ -409,16 +419,20 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
409
419
|
isArray(arg: any): arg is any[];
|
|
410
420
|
readonly prototype: any[];
|
|
411
421
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
412
|
-
from<
|
|
413
|
-
from<
|
|
414
|
-
from<
|
|
415
|
-
of<
|
|
422
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
423
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
424
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
425
|
+
of<T>(...items: T[]): T[];
|
|
426
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
427
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
416
428
|
readonly [Symbol.species]: ArrayConstructor;
|
|
417
429
|
})[];
|
|
418
430
|
default(): never[];
|
|
431
|
+
watch: boolean;
|
|
419
432
|
};
|
|
420
433
|
component: {
|
|
421
434
|
type: StringConstructor;
|
|
435
|
+
watch: boolean;
|
|
422
436
|
};
|
|
423
437
|
allowDuplicate: {
|
|
424
438
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -443,10 +457,12 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
443
457
|
directives: {
|
|
444
458
|
type: ObjectConstructor;
|
|
445
459
|
default(): {};
|
|
460
|
+
watch: boolean;
|
|
446
461
|
};
|
|
447
462
|
events: {
|
|
448
463
|
type: ObjectConstructor;
|
|
449
464
|
default(): {};
|
|
465
|
+
watch: boolean;
|
|
450
466
|
};
|
|
451
467
|
instanceObject: {
|
|
452
468
|
type: ObjectConstructor;
|
|
@@ -458,6 +474,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
458
474
|
keyMap: {
|
|
459
475
|
type: ObjectConstructor;
|
|
460
476
|
default(): {};
|
|
477
|
+
watch: boolean;
|
|
461
478
|
};
|
|
462
479
|
light: {
|
|
463
480
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -469,6 +486,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
469
486
|
};
|
|
470
487
|
parent: {
|
|
471
488
|
type: ObjectConstructor;
|
|
489
|
+
watch: boolean;
|
|
472
490
|
};
|
|
473
491
|
tabStop: {
|
|
474
492
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -630,6 +648,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
630
648
|
validations: {
|
|
631
649
|
type: (ObjectConstructor | StringConstructor)[];
|
|
632
650
|
default: {};
|
|
651
|
+
watch: boolean;
|
|
633
652
|
};
|
|
634
653
|
value: {
|
|
635
654
|
default: null;
|
|
@@ -647,16 +666,20 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
647
666
|
isArray(arg: any): arg is any[];
|
|
648
667
|
readonly prototype: any[];
|
|
649
668
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
650
|
-
from<
|
|
651
|
-
from<
|
|
652
|
-
from<
|
|
653
|
-
of<
|
|
669
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
670
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
671
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
672
|
+
of<T>(...items: T[]): T[];
|
|
673
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
674
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
654
675
|
readonly [Symbol.species]: ArrayConstructor;
|
|
655
676
|
})[];
|
|
656
677
|
default(): never[];
|
|
678
|
+
watch: boolean;
|
|
657
679
|
};
|
|
658
680
|
component: {
|
|
659
681
|
type: StringConstructor;
|
|
682
|
+
watch: boolean;
|
|
660
683
|
};
|
|
661
684
|
allowDuplicate: {
|
|
662
685
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -681,10 +704,12 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
681
704
|
directives: {
|
|
682
705
|
type: ObjectConstructor;
|
|
683
706
|
default(): {};
|
|
707
|
+
watch: boolean;
|
|
684
708
|
};
|
|
685
709
|
events: {
|
|
686
710
|
type: ObjectConstructor;
|
|
687
711
|
default(): {};
|
|
712
|
+
watch: boolean;
|
|
688
713
|
};
|
|
689
714
|
instanceObject: {
|
|
690
715
|
type: ObjectConstructor;
|
|
@@ -696,6 +721,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
696
721
|
keyMap: {
|
|
697
722
|
type: ObjectConstructor;
|
|
698
723
|
default(): {};
|
|
724
|
+
watch: boolean;
|
|
699
725
|
};
|
|
700
726
|
light: {
|
|
701
727
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -707,6 +733,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
707
733
|
};
|
|
708
734
|
parent: {
|
|
709
735
|
type: ObjectConstructor;
|
|
736
|
+
watch: boolean;
|
|
710
737
|
};
|
|
711
738
|
tabStop: {
|
|
712
739
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -717,6 +744,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
717
744
|
};
|
|
718
745
|
}>> & Readonly<{}>, {
|
|
719
746
|
reverse: string | boolean;
|
|
747
|
+
label: string;
|
|
720
748
|
allowDuplicate: string | boolean;
|
|
721
749
|
type: string;
|
|
722
750
|
autofocus: string | boolean;
|
|
@@ -732,8 +760,8 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
732
760
|
tabStop: string | boolean;
|
|
733
761
|
fillHeight: string | boolean;
|
|
734
762
|
value: null;
|
|
735
|
-
label: string;
|
|
736
763
|
mask: string;
|
|
764
|
+
placeholder: string;
|
|
737
765
|
color: string;
|
|
738
766
|
disabled: string | boolean;
|
|
739
767
|
appendIcon: string;
|
|
@@ -750,7 +778,6 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
750
778
|
hint: string;
|
|
751
779
|
maxLength: string | number;
|
|
752
780
|
persistentHint: string | boolean;
|
|
753
|
-
placeholder: string;
|
|
754
781
|
readonly: string | boolean;
|
|
755
782
|
autoHintDetails: string | boolean;
|
|
756
783
|
showBorder: string | boolean;
|