@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
|
@@ -6,7 +6,7 @@ export declare const ZdMonthProps: {
|
|
|
6
6
|
type: StringConstructor;
|
|
7
7
|
};
|
|
8
8
|
allowedDates: {
|
|
9
|
-
type: import("vue").PropType<
|
|
9
|
+
type: import("vue").PropType<((date: string) => boolean) | string[] | string>;
|
|
10
10
|
default: undefined;
|
|
11
11
|
};
|
|
12
12
|
appendIcon: {
|
|
@@ -206,6 +206,7 @@ export declare const ZdMonthProps: {
|
|
|
206
206
|
validations: {
|
|
207
207
|
type: (ObjectConstructor | StringConstructor)[];
|
|
208
208
|
default: {};
|
|
209
|
+
watch: boolean;
|
|
209
210
|
};
|
|
210
211
|
value: {
|
|
211
212
|
default: null;
|
|
@@ -223,16 +224,20 @@ export declare const ZdMonthProps: {
|
|
|
223
224
|
isArray(arg: any): arg is any[];
|
|
224
225
|
readonly prototype: any[];
|
|
225
226
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
226
|
-
from<
|
|
227
|
-
from<
|
|
228
|
-
from<
|
|
229
|
-
of<
|
|
227
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
228
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
229
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
230
|
+
of<T>(...items: T[]): T[];
|
|
231
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
232
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
230
233
|
readonly [Symbol.species]: ArrayConstructor;
|
|
231
234
|
})[];
|
|
232
235
|
default(): never[];
|
|
236
|
+
watch: boolean;
|
|
233
237
|
};
|
|
234
238
|
component: {
|
|
235
239
|
type: StringConstructor;
|
|
240
|
+
watch: boolean;
|
|
236
241
|
};
|
|
237
242
|
allowDuplicate: {
|
|
238
243
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -257,10 +262,12 @@ export declare const ZdMonthProps: {
|
|
|
257
262
|
directives: {
|
|
258
263
|
type: ObjectConstructor;
|
|
259
264
|
default(): {};
|
|
265
|
+
watch: boolean;
|
|
260
266
|
};
|
|
261
267
|
events: {
|
|
262
268
|
type: ObjectConstructor;
|
|
263
269
|
default(): {};
|
|
270
|
+
watch: boolean;
|
|
264
271
|
};
|
|
265
272
|
instanceObject: {
|
|
266
273
|
type: ObjectConstructor;
|
|
@@ -272,6 +279,7 @@ export declare const ZdMonthProps: {
|
|
|
272
279
|
keyMap: {
|
|
273
280
|
type: ObjectConstructor;
|
|
274
281
|
default(): {};
|
|
282
|
+
watch: boolean;
|
|
275
283
|
};
|
|
276
284
|
light: {
|
|
277
285
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -283,6 +291,7 @@ export declare const ZdMonthProps: {
|
|
|
283
291
|
};
|
|
284
292
|
parent: {
|
|
285
293
|
type: ObjectConstructor;
|
|
294
|
+
watch: boolean;
|
|
286
295
|
};
|
|
287
296
|
tabStop: {
|
|
288
297
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -300,7 +309,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
300
309
|
type: StringConstructor;
|
|
301
310
|
};
|
|
302
311
|
allowedDates: {
|
|
303
|
-
type: import("vue").PropType<
|
|
312
|
+
type: import("vue").PropType<((date: string) => boolean) | string[] | string>;
|
|
304
313
|
default: undefined;
|
|
305
314
|
};
|
|
306
315
|
appendIcon: {
|
|
@@ -500,6 +509,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
500
509
|
validations: {
|
|
501
510
|
type: (ObjectConstructor | StringConstructor)[];
|
|
502
511
|
default: {};
|
|
512
|
+
watch: boolean;
|
|
503
513
|
};
|
|
504
514
|
value: {
|
|
505
515
|
default: null;
|
|
@@ -517,16 +527,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
517
527
|
isArray(arg: any): arg is any[];
|
|
518
528
|
readonly prototype: any[];
|
|
519
529
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
520
|
-
from<
|
|
521
|
-
from<
|
|
522
|
-
from<
|
|
523
|
-
of<
|
|
530
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
531
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
532
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
533
|
+
of<T>(...items: T[]): T[];
|
|
534
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
535
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
524
536
|
readonly [Symbol.species]: ArrayConstructor;
|
|
525
537
|
})[];
|
|
526
538
|
default(): never[];
|
|
539
|
+
watch: boolean;
|
|
527
540
|
};
|
|
528
541
|
component: {
|
|
529
542
|
type: StringConstructor;
|
|
543
|
+
watch: boolean;
|
|
530
544
|
};
|
|
531
545
|
allowDuplicate: {
|
|
532
546
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -551,10 +565,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
551
565
|
directives: {
|
|
552
566
|
type: ObjectConstructor;
|
|
553
567
|
default(): {};
|
|
568
|
+
watch: boolean;
|
|
554
569
|
};
|
|
555
570
|
events: {
|
|
556
571
|
type: ObjectConstructor;
|
|
557
572
|
default(): {};
|
|
573
|
+
watch: boolean;
|
|
558
574
|
};
|
|
559
575
|
instanceObject: {
|
|
560
576
|
type: ObjectConstructor;
|
|
@@ -566,6 +582,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
566
582
|
keyMap: {
|
|
567
583
|
type: ObjectConstructor;
|
|
568
584
|
default(): {};
|
|
585
|
+
watch: boolean;
|
|
569
586
|
};
|
|
570
587
|
light: {
|
|
571
588
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -577,6 +594,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
577
594
|
};
|
|
578
595
|
parent: {
|
|
579
596
|
type: ObjectConstructor;
|
|
597
|
+
watch: boolean;
|
|
580
598
|
};
|
|
581
599
|
tabStop: {
|
|
582
600
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -591,41 +609,42 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
591
609
|
displayFormat: string;
|
|
592
610
|
inputFormat?: string | undefined;
|
|
593
611
|
viewMode: string;
|
|
594
|
-
|
|
612
|
+
blur: (event: Event, element: any) => void;
|
|
613
|
+
focus: (event: Event, element: any) => void;
|
|
614
|
+
allowedDates?: ((date: string) => boolean) | string[] | undefined;
|
|
595
615
|
autocomplete: boolean;
|
|
596
616
|
showDatePicker: boolean;
|
|
597
|
-
firstDayOfWeek:
|
|
617
|
+
firstDayOfWeek: number | string;
|
|
598
618
|
fullWidth: boolean;
|
|
599
619
|
showWeek: boolean;
|
|
600
620
|
helperOptions?: string[] | undefined;
|
|
601
621
|
helperValue?: string | undefined;
|
|
602
622
|
max?: string | undefined;
|
|
603
623
|
min?: string | undefined;
|
|
604
|
-
width:
|
|
624
|
+
width: number | string;
|
|
605
625
|
inputMode?: string | undefined;
|
|
606
626
|
appendIconClick: (event: Event, element: any) => void;
|
|
607
627
|
formatter: (value: string) => string;
|
|
608
628
|
parser: (value: string) => any;
|
|
609
|
-
selectDate: (date: string, event?: Event
|
|
629
|
+
selectDate: (date: string, event?: Event, element?: any) => void;
|
|
610
630
|
value: string;
|
|
611
631
|
displayValue: string;
|
|
632
|
+
updateMask: () => any;
|
|
612
633
|
setDateValue: (displayValue: string) => void;
|
|
613
|
-
isValidDate: (value: string, format: string, strict?: boolean
|
|
614
|
-
isValidFormatDate: (value: string, format: string, strict?: boolean
|
|
634
|
+
isValidDate: (value: string, format: string, strict?: boolean) => boolean;
|
|
635
|
+
isValidFormatDate: (value: string, format: string, strict?: boolean) => boolean;
|
|
615
636
|
getNativeDate: () => Date | null;
|
|
616
637
|
setNativeDate: (date: Date) => void;
|
|
617
638
|
getAllowedDates: (date: Date) => boolean;
|
|
618
639
|
formatISODateValue: (value: string) => string;
|
|
619
640
|
parseISODateValue: (value: string) => any;
|
|
620
|
-
dateValidation: () =>
|
|
621
|
-
click: (event?: Event
|
|
622
|
-
blur: (event: Event, element: any) => void;
|
|
641
|
+
dateValidation: () => boolean | string;
|
|
642
|
+
click: (event?: Event, element?: any) => void;
|
|
623
643
|
onMounted: (element: any) => void;
|
|
624
|
-
focus: (event: Event, element: any) => void;
|
|
625
644
|
togglePicker: () => void;
|
|
626
645
|
iconClick: (event: Event, element: any) => void;
|
|
627
646
|
updateHelperHint: () => void;
|
|
628
|
-
change: (event?: Event
|
|
647
|
+
change: (event?: Event, element?: any) => void;
|
|
629
648
|
getMask: () => string;
|
|
630
649
|
appendIcon: string;
|
|
631
650
|
appendOuterIcon: string;
|
|
@@ -649,10 +668,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
649
668
|
disabled: boolean;
|
|
650
669
|
events: {
|
|
651
670
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
652
|
-
change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
653
|
-
input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
654
|
-
keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
655
|
-
keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
671
|
+
change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
672
|
+
input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
673
|
+
keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
674
|
+
keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
656
675
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
657
676
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
658
677
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -670,7 +689,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
670
689
|
placeholder: string;
|
|
671
690
|
readonly: boolean;
|
|
672
691
|
reverse: boolean;
|
|
673
|
-
rules: ((value?: any) =>
|
|
692
|
+
rules: ((value?: any) => boolean | string)[];
|
|
674
693
|
showBorder: boolean;
|
|
675
694
|
showHelper: boolean;
|
|
676
695
|
showLabel: boolean;
|
|
@@ -696,13 +715,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
696
715
|
} | undefined;
|
|
697
716
|
children?: {
|
|
698
717
|
[x: string]: any;
|
|
699
|
-
children?: any[] | undefined;
|
|
718
|
+
children?: /*elided*/ any[] | undefined;
|
|
700
719
|
component: string;
|
|
701
720
|
allowDuplicate?: boolean | undefined;
|
|
702
721
|
autofocus?: boolean | undefined;
|
|
703
722
|
componentId?: number | undefined;
|
|
704
723
|
cssClass?: string | undefined;
|
|
705
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
724
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
706
725
|
events?: {
|
|
707
726
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
708
727
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -738,25 +757,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
738
757
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
739
758
|
} | undefined;
|
|
740
759
|
} | undefined;
|
|
741
|
-
isVisible?:
|
|
760
|
+
isVisible?: boolean | string | undefined;
|
|
742
761
|
dark?: boolean | undefined;
|
|
743
762
|
light?: boolean | undefined;
|
|
744
763
|
theme?: string | undefined;
|
|
745
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
764
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
746
765
|
name: string;
|
|
747
766
|
parent?: {
|
|
748
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
749
|
-
getChildInstance: <
|
|
767
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
768
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
750
769
|
allowDuplicate: boolean;
|
|
751
770
|
autofocus: boolean;
|
|
752
771
|
children: {
|
|
753
772
|
[x: string]: any;
|
|
754
773
|
allowDuplicate?: boolean | undefined;
|
|
755
774
|
autofocus?: boolean | undefined;
|
|
756
|
-
children?: any[] | undefined;
|
|
775
|
+
children?: /*elided*/ any[] | undefined;
|
|
757
776
|
componentId?: number | undefined;
|
|
758
777
|
cssClass?: string | undefined;
|
|
759
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
778
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
760
779
|
events?: {
|
|
761
780
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
762
781
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -792,20 +811,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
792
811
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
793
812
|
} | undefined;
|
|
794
813
|
} | undefined;
|
|
795
|
-
isVisible?:
|
|
814
|
+
isVisible?: boolean | string | undefined;
|
|
796
815
|
dark?: boolean | undefined;
|
|
797
816
|
light?: boolean | undefined;
|
|
798
817
|
theme?: string | undefined;
|
|
799
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
818
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
800
819
|
name: string;
|
|
801
|
-
parent?: any | undefined;
|
|
820
|
+
parent?: /*elided*/ any | undefined;
|
|
802
821
|
tabStop?: boolean | undefined;
|
|
803
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
822
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
804
823
|
fillHeight?: boolean | undefined;
|
|
805
824
|
}[];
|
|
806
825
|
componentId: number;
|
|
807
826
|
cssClass: string;
|
|
808
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
827
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
809
828
|
events: {
|
|
810
829
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
811
830
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -841,19 +860,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
841
860
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
842
861
|
} | undefined;
|
|
843
862
|
};
|
|
844
|
-
isVisible:
|
|
863
|
+
isVisible: boolean | string;
|
|
845
864
|
dark: boolean;
|
|
846
865
|
light: boolean;
|
|
847
866
|
theme?: string | undefined;
|
|
848
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
867
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
849
868
|
name: string;
|
|
850
|
-
parent?: any | undefined;
|
|
869
|
+
parent?: /*elided*/ any | undefined;
|
|
851
870
|
tabStop: boolean;
|
|
852
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
871
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
853
872
|
fillHeight: boolean;
|
|
854
873
|
} | undefined;
|
|
855
874
|
tabStop?: boolean | undefined;
|
|
856
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
875
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
857
876
|
fillHeight?: boolean | undefined;
|
|
858
877
|
}[] | undefined;
|
|
859
878
|
component: string;
|
|
@@ -861,7 +880,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
861
880
|
autofocus?: boolean | undefined;
|
|
862
881
|
componentId?: number | undefined;
|
|
863
882
|
cssClass?: string | undefined;
|
|
864
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
883
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
865
884
|
events?: {
|
|
866
885
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
867
886
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -897,25 +916,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
897
916
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
898
917
|
} | undefined;
|
|
899
918
|
} | undefined;
|
|
900
|
-
isVisible?:
|
|
919
|
+
isVisible?: boolean | string | undefined;
|
|
901
920
|
dark?: boolean | undefined;
|
|
902
921
|
light?: boolean | undefined;
|
|
903
922
|
theme?: string | undefined;
|
|
904
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
923
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
905
924
|
name: string;
|
|
906
925
|
parent?: {
|
|
907
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
908
|
-
getChildInstance: <
|
|
926
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
927
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
909
928
|
allowDuplicate: boolean;
|
|
910
929
|
autofocus: boolean;
|
|
911
930
|
children: {
|
|
912
931
|
[x: string]: any;
|
|
913
932
|
allowDuplicate?: boolean | undefined;
|
|
914
933
|
autofocus?: boolean | undefined;
|
|
915
|
-
children?: any[] | undefined;
|
|
934
|
+
children?: /*elided*/ any[] | undefined;
|
|
916
935
|
componentId?: number | undefined;
|
|
917
936
|
cssClass?: string | undefined;
|
|
918
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
937
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
919
938
|
events?: {
|
|
920
939
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
921
940
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -951,20 +970,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
951
970
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
952
971
|
} | undefined;
|
|
953
972
|
} | undefined;
|
|
954
|
-
isVisible?:
|
|
973
|
+
isVisible?: boolean | string | undefined;
|
|
955
974
|
dark?: boolean | undefined;
|
|
956
975
|
light?: boolean | undefined;
|
|
957
976
|
theme?: string | undefined;
|
|
958
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
977
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
959
978
|
name: string;
|
|
960
|
-
parent?: any | undefined;
|
|
979
|
+
parent?: /*elided*/ any | undefined;
|
|
961
980
|
tabStop?: boolean | undefined;
|
|
962
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
981
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
963
982
|
fillHeight?: boolean | undefined;
|
|
964
983
|
}[];
|
|
965
984
|
componentId: number;
|
|
966
985
|
cssClass: string;
|
|
967
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
986
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
968
987
|
events: {
|
|
969
988
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
970
989
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1000,19 +1019,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1000
1019
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1001
1020
|
} | undefined;
|
|
1002
1021
|
};
|
|
1003
|
-
isVisible:
|
|
1022
|
+
isVisible: boolean | string;
|
|
1004
1023
|
dark: boolean;
|
|
1005
1024
|
light: boolean;
|
|
1006
1025
|
theme?: string | undefined;
|
|
1007
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1026
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1008
1027
|
name: string;
|
|
1009
|
-
parent?: any | undefined;
|
|
1028
|
+
parent?: /*elided*/ any | undefined;
|
|
1010
1029
|
tabStop: boolean;
|
|
1011
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1030
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1012
1031
|
fillHeight: boolean;
|
|
1013
1032
|
} | undefined;
|
|
1014
1033
|
tabStop?: boolean | undefined;
|
|
1015
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1034
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1016
1035
|
fillHeight?: boolean | undefined;
|
|
1017
1036
|
}[];
|
|
1018
1037
|
align?: string | undefined;
|
|
@@ -1025,7 +1044,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1025
1044
|
maxWidth: string | number;
|
|
1026
1045
|
events: {
|
|
1027
1046
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
|
|
1028
|
-
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent
|
|
1047
|
+
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent> | undefined;
|
|
1029
1048
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
1030
1049
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
1031
1050
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
@@ -1036,20 +1055,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1036
1055
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
1037
1056
|
};
|
|
1038
1057
|
submitFunction?: (() => void) | undefined;
|
|
1039
|
-
value: import("@zeedhi/core").IDictionary
|
|
1058
|
+
value: import("@zeedhi/core").IDictionary;
|
|
1040
1059
|
clearForm: () => void;
|
|
1041
1060
|
registerInput: (component: import("@zeedhi/common").Input) => void;
|
|
1042
1061
|
readonly childrenProps: {
|
|
1043
1062
|
[x: string]: any;
|
|
1044
1063
|
children?: {
|
|
1045
1064
|
[x: string]: any;
|
|
1046
|
-
children?: any[] | undefined;
|
|
1065
|
+
children?: /*elided*/ any[] | undefined;
|
|
1047
1066
|
component: string;
|
|
1048
1067
|
allowDuplicate?: boolean | undefined;
|
|
1049
1068
|
autofocus?: boolean | undefined;
|
|
1050
1069
|
componentId?: number | undefined;
|
|
1051
1070
|
cssClass?: string | undefined;
|
|
1052
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1071
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1053
1072
|
events?: {
|
|
1054
1073
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1055
1074
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1085,25 +1104,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1085
1104
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1086
1105
|
} | undefined;
|
|
1087
1106
|
} | undefined;
|
|
1088
|
-
isVisible?:
|
|
1107
|
+
isVisible?: boolean | string | undefined;
|
|
1089
1108
|
dark?: boolean | undefined;
|
|
1090
1109
|
light?: boolean | undefined;
|
|
1091
1110
|
theme?: string | undefined;
|
|
1092
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1111
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1093
1112
|
name: string;
|
|
1094
1113
|
parent?: {
|
|
1095
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1096
|
-
getChildInstance: <
|
|
1114
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1115
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1097
1116
|
allowDuplicate: boolean;
|
|
1098
1117
|
autofocus: boolean;
|
|
1099
1118
|
children: {
|
|
1100
1119
|
[x: string]: any;
|
|
1101
1120
|
allowDuplicate?: boolean | undefined;
|
|
1102
1121
|
autofocus?: boolean | undefined;
|
|
1103
|
-
children?: any[] | undefined;
|
|
1122
|
+
children?: /*elided*/ any[] | undefined;
|
|
1104
1123
|
componentId?: number | undefined;
|
|
1105
1124
|
cssClass?: string | undefined;
|
|
1106
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1125
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1107
1126
|
events?: {
|
|
1108
1127
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1109
1128
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1139,20 +1158,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1139
1158
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1140
1159
|
} | undefined;
|
|
1141
1160
|
} | undefined;
|
|
1142
|
-
isVisible?:
|
|
1161
|
+
isVisible?: boolean | string | undefined;
|
|
1143
1162
|
dark?: boolean | undefined;
|
|
1144
1163
|
light?: boolean | undefined;
|
|
1145
1164
|
theme?: string | undefined;
|
|
1146
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1165
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1147
1166
|
name: string;
|
|
1148
|
-
parent?: any | undefined;
|
|
1167
|
+
parent?: /*elided*/ any | undefined;
|
|
1149
1168
|
tabStop?: boolean | undefined;
|
|
1150
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1169
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1151
1170
|
fillHeight?: boolean | undefined;
|
|
1152
1171
|
}[];
|
|
1153
1172
|
componentId: number;
|
|
1154
1173
|
cssClass: string;
|
|
1155
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1174
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1156
1175
|
events: {
|
|
1157
1176
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1158
1177
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1188,26 +1207,26 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1188
1207
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1189
1208
|
} | undefined;
|
|
1190
1209
|
};
|
|
1191
|
-
isVisible:
|
|
1210
|
+
isVisible: boolean | string;
|
|
1192
1211
|
dark: boolean;
|
|
1193
1212
|
light: boolean;
|
|
1194
1213
|
theme?: string | undefined;
|
|
1195
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1214
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1196
1215
|
name: string;
|
|
1197
|
-
parent?: any | undefined;
|
|
1216
|
+
parent?: /*elided*/ any | undefined;
|
|
1198
1217
|
tabStop: boolean;
|
|
1199
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1218
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1200
1219
|
fillHeight: boolean;
|
|
1201
1220
|
} | undefined;
|
|
1202
1221
|
tabStop?: boolean | undefined;
|
|
1203
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1222
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1204
1223
|
fillHeight?: boolean | undefined;
|
|
1205
1224
|
}[] | undefined;
|
|
1206
1225
|
component: string;
|
|
1207
|
-
allowDuplicate?: boolean | undefined;
|
|
1208
|
-
autofocus?: boolean | undefined;
|
|
1209
|
-
componentId?: number | undefined;
|
|
1210
|
-
cssClass?: string | undefined;
|
|
1226
|
+
allowDuplicate?: boolean | undefined | undefined;
|
|
1227
|
+
autofocus?: boolean | undefined | undefined;
|
|
1228
|
+
componentId?: number | undefined | undefined;
|
|
1229
|
+
cssClass?: string | undefined | undefined;
|
|
1211
1230
|
cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1212
1231
|
events?: {
|
|
1213
1232
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
@@ -1244,25 +1263,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1244
1263
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1245
1264
|
} | undefined;
|
|
1246
1265
|
} | undefined;
|
|
1247
|
-
isVisible?: string | boolean | undefined;
|
|
1248
|
-
dark?: boolean | undefined;
|
|
1249
|
-
light?: boolean | undefined;
|
|
1250
|
-
theme?: string | undefined;
|
|
1266
|
+
isVisible?: string | boolean | undefined | undefined;
|
|
1267
|
+
dark?: boolean | undefined | undefined;
|
|
1268
|
+
light?: boolean | undefined | undefined;
|
|
1269
|
+
theme?: string | undefined | undefined;
|
|
1251
1270
|
keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
1252
1271
|
name: string;
|
|
1253
1272
|
parent?: {
|
|
1254
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1255
|
-
getChildInstance: <
|
|
1273
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1274
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1256
1275
|
allowDuplicate: boolean;
|
|
1257
1276
|
autofocus: boolean;
|
|
1258
1277
|
children: {
|
|
1259
1278
|
[x: string]: any;
|
|
1260
1279
|
allowDuplicate?: boolean | undefined;
|
|
1261
1280
|
autofocus?: boolean | undefined;
|
|
1262
|
-
children?: any[] | undefined;
|
|
1281
|
+
children?: /*elided*/ any[] | undefined;
|
|
1263
1282
|
componentId?: number | undefined;
|
|
1264
1283
|
cssClass?: string | undefined;
|
|
1265
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1284
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1266
1285
|
events?: {
|
|
1267
1286
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1268
1287
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1298,20 +1317,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1298
1317
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1299
1318
|
} | undefined;
|
|
1300
1319
|
} | undefined;
|
|
1301
|
-
isVisible?:
|
|
1320
|
+
isVisible?: boolean | string | undefined;
|
|
1302
1321
|
dark?: boolean | undefined;
|
|
1303
1322
|
light?: boolean | undefined;
|
|
1304
1323
|
theme?: string | undefined;
|
|
1305
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1324
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1306
1325
|
name: string;
|
|
1307
|
-
parent?: any | undefined;
|
|
1326
|
+
parent?: /*elided*/ any | undefined;
|
|
1308
1327
|
tabStop?: boolean | undefined;
|
|
1309
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1328
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1310
1329
|
fillHeight?: boolean | undefined;
|
|
1311
1330
|
}[];
|
|
1312
1331
|
componentId: number;
|
|
1313
1332
|
cssClass: string;
|
|
1314
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1333
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1315
1334
|
events: {
|
|
1316
1335
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1317
1336
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1347,20 +1366,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1347
1366
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1348
1367
|
} | undefined;
|
|
1349
1368
|
};
|
|
1350
|
-
isVisible:
|
|
1369
|
+
isVisible: boolean | string;
|
|
1351
1370
|
dark: boolean;
|
|
1352
1371
|
light: boolean;
|
|
1353
1372
|
theme?: string | undefined;
|
|
1354
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1373
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1355
1374
|
name: string;
|
|
1356
|
-
parent?: any | undefined;
|
|
1375
|
+
parent?: /*elided*/ any | undefined;
|
|
1357
1376
|
tabStop: boolean;
|
|
1358
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1377
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1359
1378
|
fillHeight: boolean;
|
|
1360
1379
|
} | undefined;
|
|
1361
|
-
tabStop?: boolean | undefined;
|
|
1380
|
+
tabStop?: boolean | undefined | undefined;
|
|
1362
1381
|
userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1363
|
-
fillHeight?: boolean | undefined;
|
|
1382
|
+
fillHeight?: boolean | undefined | undefined;
|
|
1364
1383
|
}[];
|
|
1365
1384
|
readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
|
|
1366
1385
|
validate: () => Promise<{
|
|
@@ -1415,18 +1434,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1415
1434
|
theme?: string | undefined;
|
|
1416
1435
|
fillHeight: boolean;
|
|
1417
1436
|
parent?: {
|
|
1418
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1419
|
-
getChildInstance: <
|
|
1437
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1438
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1420
1439
|
allowDuplicate: boolean;
|
|
1421
1440
|
autofocus: boolean;
|
|
1422
1441
|
children: {
|
|
1423
1442
|
[x: string]: any;
|
|
1424
1443
|
allowDuplicate?: boolean | undefined;
|
|
1425
1444
|
autofocus?: boolean | undefined;
|
|
1426
|
-
children?: any[] | undefined;
|
|
1445
|
+
children?: /*elided*/ any[] | undefined;
|
|
1427
1446
|
componentId?: number | undefined;
|
|
1428
1447
|
cssClass?: string | undefined;
|
|
1429
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1448
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1430
1449
|
events?: {
|
|
1431
1450
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1432
1451
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1462,20 +1481,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1462
1481
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1463
1482
|
} | undefined;
|
|
1464
1483
|
} | undefined;
|
|
1465
|
-
isVisible?:
|
|
1484
|
+
isVisible?: boolean | string | undefined;
|
|
1466
1485
|
dark?: boolean | undefined;
|
|
1467
1486
|
light?: boolean | undefined;
|
|
1468
1487
|
theme?: string | undefined;
|
|
1469
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1488
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1470
1489
|
name: string;
|
|
1471
|
-
parent?: any | undefined;
|
|
1490
|
+
parent?: /*elided*/ any | undefined;
|
|
1472
1491
|
tabStop?: boolean | undefined;
|
|
1473
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1492
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1474
1493
|
fillHeight?: boolean | undefined;
|
|
1475
1494
|
}[];
|
|
1476
1495
|
componentId: number;
|
|
1477
1496
|
cssClass: string;
|
|
1478
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1497
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1479
1498
|
events: {
|
|
1480
1499
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1481
1500
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1511,19 +1530,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1511
1530
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1512
1531
|
} | undefined;
|
|
1513
1532
|
};
|
|
1514
|
-
isVisible:
|
|
1533
|
+
isVisible: boolean | string;
|
|
1515
1534
|
dark: boolean;
|
|
1516
1535
|
light: boolean;
|
|
1517
1536
|
theme?: string | undefined;
|
|
1518
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1537
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1519
1538
|
name: string;
|
|
1520
|
-
parent?: any | undefined;
|
|
1539
|
+
parent?: /*elided*/ any | undefined;
|
|
1521
1540
|
tabStop: boolean;
|
|
1522
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1541
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1523
1542
|
fillHeight: boolean;
|
|
1524
1543
|
} | undefined;
|
|
1525
1544
|
componentId: number;
|
|
1526
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1545
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1527
1546
|
isFocused: boolean;
|
|
1528
1547
|
tabStop: boolean;
|
|
1529
1548
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1532,19 +1551,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1532
1551
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1533
1552
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1534
1553
|
removeChild: (name: string) => void;
|
|
1535
|
-
getChildInstance: <
|
|
1536
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1554
|
+
getChildInstance: <T>(name: string) => T;
|
|
1555
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1537
1556
|
onCreated: () => void;
|
|
1538
1557
|
onBeforeMount: () => void;
|
|
1539
1558
|
onBeforeDestroy: () => void;
|
|
1540
1559
|
onDestroyed: () => void;
|
|
1541
|
-
click: (event?: Event
|
|
1560
|
+
click: (event?: Event, element?: any) => void;
|
|
1542
1561
|
focus: (event: Event, element: any) => void;
|
|
1543
1562
|
blur: (event: Event, element: any) => void;
|
|
1544
|
-
mouseenter: (event?: Event
|
|
1545
|
-
mouseleave: (event?: Event
|
|
1546
|
-
mouseout: (event?: Event
|
|
1547
|
-
mouseover: (event?: Event
|
|
1563
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1564
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1565
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1566
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1548
1567
|
} | undefined;
|
|
1549
1568
|
grid: {
|
|
1550
1569
|
cols?: string | undefined;
|
|
@@ -1561,25 +1580,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1561
1580
|
'offset-xxl'?: string | undefined;
|
|
1562
1581
|
};
|
|
1563
1582
|
validate: () => Promise<string[]>;
|
|
1564
|
-
setViewValidate: (viewValidate: (silent?: boolean
|
|
1583
|
+
setViewValidate: (viewValidate: (silent?: boolean) => Promise<string[]>) => void;
|
|
1565
1584
|
setViewResetValidation: (viewResetValidation: () => void) => void;
|
|
1566
1585
|
resetValidation: () => void;
|
|
1567
|
-
addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any>
|
|
1586
|
+
addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any>) => void;
|
|
1568
1587
|
removeValidation: (name: string) => void;
|
|
1569
1588
|
clearValidations: () => void;
|
|
1570
1589
|
isValid: (value?: any) => boolean;
|
|
1571
|
-
input: (event?: Event
|
|
1572
|
-
keyup: (event?: Event
|
|
1573
|
-
keydown: (event?: Event
|
|
1590
|
+
input: (event?: Event, element?: any) => void;
|
|
1591
|
+
keyup: (event?: Event, element?: any) => void;
|
|
1592
|
+
keydown: (event?: Event, element?: any) => void;
|
|
1574
1593
|
children: {
|
|
1575
1594
|
[x: string]: any;
|
|
1576
|
-
children?: any[] | undefined;
|
|
1595
|
+
children?: /*elided*/ any[] | undefined;
|
|
1577
1596
|
component: string;
|
|
1578
1597
|
allowDuplicate?: boolean | undefined;
|
|
1579
1598
|
autofocus?: boolean | undefined;
|
|
1580
1599
|
componentId?: number | undefined;
|
|
1581
1600
|
cssClass?: string | undefined;
|
|
1582
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1601
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1583
1602
|
events?: {
|
|
1584
1603
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1585
1604
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1615,25 +1634,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1615
1634
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1616
1635
|
} | undefined;
|
|
1617
1636
|
} | undefined;
|
|
1618
|
-
isVisible?:
|
|
1637
|
+
isVisible?: boolean | string | undefined;
|
|
1619
1638
|
dark?: boolean | undefined;
|
|
1620
1639
|
light?: boolean | undefined;
|
|
1621
1640
|
theme?: string | undefined;
|
|
1622
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1641
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1623
1642
|
name: string;
|
|
1624
1643
|
parent?: {
|
|
1625
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1626
|
-
getChildInstance: <
|
|
1644
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1645
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1627
1646
|
allowDuplicate: boolean;
|
|
1628
1647
|
autofocus: boolean;
|
|
1629
1648
|
children: {
|
|
1630
1649
|
[x: string]: any;
|
|
1631
1650
|
allowDuplicate?: boolean | undefined;
|
|
1632
1651
|
autofocus?: boolean | undefined;
|
|
1633
|
-
children?: any[] | undefined;
|
|
1652
|
+
children?: /*elided*/ any[] | undefined;
|
|
1634
1653
|
componentId?: number | undefined;
|
|
1635
1654
|
cssClass?: string | undefined;
|
|
1636
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1655
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1637
1656
|
events?: {
|
|
1638
1657
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1639
1658
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1669,20 +1688,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1669
1688
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1670
1689
|
} | undefined;
|
|
1671
1690
|
} | undefined;
|
|
1672
|
-
isVisible?:
|
|
1691
|
+
isVisible?: boolean | string | undefined;
|
|
1673
1692
|
dark?: boolean | undefined;
|
|
1674
1693
|
light?: boolean | undefined;
|
|
1675
1694
|
theme?: string | undefined;
|
|
1676
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1695
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1677
1696
|
name: string;
|
|
1678
|
-
parent?: any | undefined;
|
|
1697
|
+
parent?: /*elided*/ any | undefined;
|
|
1679
1698
|
tabStop?: boolean | undefined;
|
|
1680
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1699
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1681
1700
|
fillHeight?: boolean | undefined;
|
|
1682
1701
|
}[];
|
|
1683
1702
|
componentId: number;
|
|
1684
1703
|
cssClass: string;
|
|
1685
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1704
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1686
1705
|
events: {
|
|
1687
1706
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1688
1707
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1718,19 +1737,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1718
1737
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1719
1738
|
} | undefined;
|
|
1720
1739
|
};
|
|
1721
|
-
isVisible:
|
|
1740
|
+
isVisible: boolean | string;
|
|
1722
1741
|
dark: boolean;
|
|
1723
1742
|
light: boolean;
|
|
1724
1743
|
theme?: string | undefined;
|
|
1725
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1744
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1726
1745
|
name: string;
|
|
1727
|
-
parent?: any | undefined;
|
|
1746
|
+
parent?: /*elided*/ any | undefined;
|
|
1728
1747
|
tabStop: boolean;
|
|
1729
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1748
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1730
1749
|
fillHeight: boolean;
|
|
1731
1750
|
} | undefined;
|
|
1732
1751
|
tabStop?: boolean | undefined;
|
|
1733
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1752
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1734
1753
|
fillHeight?: boolean | undefined;
|
|
1735
1754
|
}[];
|
|
1736
1755
|
component: string;
|
|
@@ -1770,18 +1789,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1770
1789
|
theme?: string | undefined;
|
|
1771
1790
|
fillHeight: boolean;
|
|
1772
1791
|
parent?: {
|
|
1773
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1774
|
-
getChildInstance: <
|
|
1792
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1793
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1775
1794
|
allowDuplicate: boolean;
|
|
1776
1795
|
autofocus: boolean;
|
|
1777
1796
|
children: {
|
|
1778
1797
|
[x: string]: any;
|
|
1779
1798
|
allowDuplicate?: boolean | undefined;
|
|
1780
1799
|
autofocus?: boolean | undefined;
|
|
1781
|
-
children?: any[] | undefined;
|
|
1800
|
+
children?: /*elided*/ any[] | undefined;
|
|
1782
1801
|
componentId?: number | undefined;
|
|
1783
1802
|
cssClass?: string | undefined;
|
|
1784
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1803
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1785
1804
|
events?: {
|
|
1786
1805
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1787
1806
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1817,20 +1836,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1817
1836
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1818
1837
|
} | undefined;
|
|
1819
1838
|
} | undefined;
|
|
1820
|
-
isVisible?:
|
|
1839
|
+
isVisible?: boolean | string | undefined;
|
|
1821
1840
|
dark?: boolean | undefined;
|
|
1822
1841
|
light?: boolean | undefined;
|
|
1823
1842
|
theme?: string | undefined;
|
|
1824
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1843
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1825
1844
|
name: string;
|
|
1826
|
-
parent?: any | undefined;
|
|
1845
|
+
parent?: /*elided*/ any | undefined;
|
|
1827
1846
|
tabStop?: boolean | undefined;
|
|
1828
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1847
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1829
1848
|
fillHeight?: boolean | undefined;
|
|
1830
1849
|
}[];
|
|
1831
1850
|
componentId: number;
|
|
1832
1851
|
cssClass: string;
|
|
1833
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1852
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1834
1853
|
events: {
|
|
1835
1854
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1836
1855
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1866,19 +1885,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1866
1885
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1867
1886
|
} | undefined;
|
|
1868
1887
|
};
|
|
1869
|
-
isVisible:
|
|
1888
|
+
isVisible: boolean | string;
|
|
1870
1889
|
dark: boolean;
|
|
1871
1890
|
light: boolean;
|
|
1872
1891
|
theme?: string | undefined;
|
|
1873
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1892
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1874
1893
|
name: string;
|
|
1875
|
-
parent?: any | undefined;
|
|
1894
|
+
parent?: /*elided*/ any | undefined;
|
|
1876
1895
|
tabStop: boolean;
|
|
1877
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1896
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1878
1897
|
fillHeight: boolean;
|
|
1879
1898
|
} | undefined;
|
|
1880
1899
|
componentId: number;
|
|
1881
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1900
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1882
1901
|
isFocused: boolean;
|
|
1883
1902
|
tabStop: boolean;
|
|
1884
1903
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1887,17 +1906,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1887
1906
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1888
1907
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1889
1908
|
removeChild: (name: string) => void;
|
|
1890
|
-
getChildInstance: <
|
|
1891
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1909
|
+
getChildInstance: <T>(name: string) => T;
|
|
1910
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1892
1911
|
onBeforeMount: () => void;
|
|
1893
1912
|
onBeforeDestroy: () => void;
|
|
1894
1913
|
onDestroyed: () => void;
|
|
1895
|
-
mouseenter: (event?: Event
|
|
1896
|
-
mouseleave: (event?: Event
|
|
1897
|
-
mouseout: (event?: Event
|
|
1898
|
-
mouseover: (event?: Event
|
|
1914
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1915
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1916
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1917
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1899
1918
|
};
|
|
1900
|
-
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance
|
|
1919
|
+
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
1901
1920
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1902
1921
|
dateFormat: {
|
|
1903
1922
|
type: StringConstructor;
|
|
@@ -1906,7 +1925,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1906
1925
|
type: StringConstructor;
|
|
1907
1926
|
};
|
|
1908
1927
|
allowedDates: {
|
|
1909
|
-
type: import("vue").PropType<
|
|
1928
|
+
type: import("vue").PropType<((date: string) => boolean) | string[] | string>;
|
|
1910
1929
|
default: undefined;
|
|
1911
1930
|
};
|
|
1912
1931
|
appendIcon: {
|
|
@@ -2106,6 +2125,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2106
2125
|
validations: {
|
|
2107
2126
|
type: (ObjectConstructor | StringConstructor)[];
|
|
2108
2127
|
default: {};
|
|
2128
|
+
watch: boolean;
|
|
2109
2129
|
};
|
|
2110
2130
|
value: {
|
|
2111
2131
|
default: null;
|
|
@@ -2123,16 +2143,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2123
2143
|
isArray(arg: any): arg is any[];
|
|
2124
2144
|
readonly prototype: any[];
|
|
2125
2145
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
2126
|
-
from<
|
|
2127
|
-
from<
|
|
2128
|
-
from<
|
|
2129
|
-
of<
|
|
2146
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
2147
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
2148
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
2149
|
+
of<T>(...items: T[]): T[];
|
|
2150
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
2151
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
2130
2152
|
readonly [Symbol.species]: ArrayConstructor;
|
|
2131
2153
|
})[];
|
|
2132
2154
|
default(): never[];
|
|
2155
|
+
watch: boolean;
|
|
2133
2156
|
};
|
|
2134
2157
|
component: {
|
|
2135
2158
|
type: StringConstructor;
|
|
2159
|
+
watch: boolean;
|
|
2136
2160
|
};
|
|
2137
2161
|
allowDuplicate: {
|
|
2138
2162
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -2157,10 +2181,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2157
2181
|
directives: {
|
|
2158
2182
|
type: ObjectConstructor;
|
|
2159
2183
|
default(): {};
|
|
2184
|
+
watch: boolean;
|
|
2160
2185
|
};
|
|
2161
2186
|
events: {
|
|
2162
2187
|
type: ObjectConstructor;
|
|
2163
2188
|
default(): {};
|
|
2189
|
+
watch: boolean;
|
|
2164
2190
|
};
|
|
2165
2191
|
instanceObject: {
|
|
2166
2192
|
type: ObjectConstructor;
|
|
@@ -2172,6 +2198,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2172
2198
|
keyMap: {
|
|
2173
2199
|
type: ObjectConstructor;
|
|
2174
2200
|
default(): {};
|
|
2201
|
+
watch: boolean;
|
|
2175
2202
|
};
|
|
2176
2203
|
light: {
|
|
2177
2204
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -2183,6 +2210,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2183
2210
|
};
|
|
2184
2211
|
parent: {
|
|
2185
2212
|
type: ObjectConstructor;
|
|
2213
|
+
watch: boolean;
|
|
2186
2214
|
};
|
|
2187
2215
|
tabStop: {
|
|
2188
2216
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -2193,6 +2221,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2193
2221
|
};
|
|
2194
2222
|
}>> & Readonly<{}>, {
|
|
2195
2223
|
reverse: string | boolean;
|
|
2224
|
+
label: string;
|
|
2196
2225
|
allowDuplicate: string | boolean;
|
|
2197
2226
|
type: string;
|
|
2198
2227
|
autofocus: string | boolean;
|
|
@@ -2208,8 +2237,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2208
2237
|
tabStop: string | boolean;
|
|
2209
2238
|
fillHeight: string | boolean;
|
|
2210
2239
|
value: null;
|
|
2211
|
-
label: string;
|
|
2212
2240
|
mask: string;
|
|
2241
|
+
placeholder: string;
|
|
2213
2242
|
color: string;
|
|
2214
2243
|
disabled: string | boolean;
|
|
2215
2244
|
width: string | number;
|
|
@@ -2227,7 +2256,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2227
2256
|
hint: string;
|
|
2228
2257
|
maxLength: string | number;
|
|
2229
2258
|
persistentHint: string | boolean;
|
|
2230
|
-
placeholder: string;
|
|
2231
2259
|
readonly: string | boolean;
|
|
2232
2260
|
autoHintDetails: string | boolean;
|
|
2233
2261
|
showBorder: string | boolean;
|