@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
|
@@ -96,6 +96,7 @@ export declare const ZdSwitchProps: {
|
|
|
96
96
|
validations: {
|
|
97
97
|
type: (ObjectConstructor | StringConstructor)[];
|
|
98
98
|
default: {};
|
|
99
|
+
watch: boolean;
|
|
99
100
|
};
|
|
100
101
|
value: {
|
|
101
102
|
default: null;
|
|
@@ -139,16 +140,20 @@ export declare const ZdSwitchProps: {
|
|
|
139
140
|
isArray(arg: any): arg is any[];
|
|
140
141
|
readonly prototype: any[];
|
|
141
142
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
142
|
-
from<
|
|
143
|
-
from<
|
|
144
|
-
from<
|
|
145
|
-
of<
|
|
143
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
144
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
145
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
146
|
+
of<T>(...items: T[]): T[];
|
|
147
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
148
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
146
149
|
readonly [Symbol.species]: ArrayConstructor;
|
|
147
150
|
})[];
|
|
148
151
|
default(): never[];
|
|
152
|
+
watch: boolean;
|
|
149
153
|
};
|
|
150
154
|
component: {
|
|
151
155
|
type: StringConstructor;
|
|
156
|
+
watch: boolean;
|
|
152
157
|
};
|
|
153
158
|
allowDuplicate: {
|
|
154
159
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -173,10 +178,12 @@ export declare const ZdSwitchProps: {
|
|
|
173
178
|
directives: {
|
|
174
179
|
type: ObjectConstructor;
|
|
175
180
|
default(): {};
|
|
181
|
+
watch: boolean;
|
|
176
182
|
};
|
|
177
183
|
events: {
|
|
178
184
|
type: ObjectConstructor;
|
|
179
185
|
default(): {};
|
|
186
|
+
watch: boolean;
|
|
180
187
|
};
|
|
181
188
|
instanceObject: {
|
|
182
189
|
type: ObjectConstructor;
|
|
@@ -188,6 +195,7 @@ export declare const ZdSwitchProps: {
|
|
|
188
195
|
keyMap: {
|
|
189
196
|
type: ObjectConstructor;
|
|
190
197
|
default(): {};
|
|
198
|
+
watch: boolean;
|
|
191
199
|
};
|
|
192
200
|
light: {
|
|
193
201
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -199,6 +207,7 @@ export declare const ZdSwitchProps: {
|
|
|
199
207
|
};
|
|
200
208
|
parent: {
|
|
201
209
|
type: ObjectConstructor;
|
|
210
|
+
watch: boolean;
|
|
202
211
|
};
|
|
203
212
|
tabStop: {
|
|
204
213
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -303,6 +312,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
303
312
|
validations: {
|
|
304
313
|
type: (ObjectConstructor | StringConstructor)[];
|
|
305
314
|
default: {};
|
|
315
|
+
watch: boolean;
|
|
306
316
|
};
|
|
307
317
|
value: {
|
|
308
318
|
default: null;
|
|
@@ -346,16 +356,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
346
356
|
isArray(arg: any): arg is any[];
|
|
347
357
|
readonly prototype: any[];
|
|
348
358
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
349
|
-
from<
|
|
350
|
-
from<
|
|
351
|
-
from<
|
|
352
|
-
of<
|
|
359
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
360
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
361
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
362
|
+
of<T>(...items: T[]): T[];
|
|
363
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
364
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
353
365
|
readonly [Symbol.species]: ArrayConstructor;
|
|
354
366
|
})[];
|
|
355
367
|
default(): never[];
|
|
368
|
+
watch: boolean;
|
|
356
369
|
};
|
|
357
370
|
component: {
|
|
358
371
|
type: StringConstructor;
|
|
372
|
+
watch: boolean;
|
|
359
373
|
};
|
|
360
374
|
allowDuplicate: {
|
|
361
375
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -380,10 +394,12 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
380
394
|
directives: {
|
|
381
395
|
type: ObjectConstructor;
|
|
382
396
|
default(): {};
|
|
397
|
+
watch: boolean;
|
|
383
398
|
};
|
|
384
399
|
events: {
|
|
385
400
|
type: ObjectConstructor;
|
|
386
401
|
default(): {};
|
|
402
|
+
watch: boolean;
|
|
387
403
|
};
|
|
388
404
|
instanceObject: {
|
|
389
405
|
type: ObjectConstructor;
|
|
@@ -395,6 +411,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
395
411
|
keyMap: {
|
|
396
412
|
type: ObjectConstructor;
|
|
397
413
|
default(): {};
|
|
414
|
+
watch: boolean;
|
|
398
415
|
};
|
|
399
416
|
light: {
|
|
400
417
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -406,6 +423,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
406
423
|
};
|
|
407
424
|
parent: {
|
|
408
425
|
type: ObjectConstructor;
|
|
426
|
+
watch: boolean;
|
|
409
427
|
};
|
|
410
428
|
tabStop: {
|
|
411
429
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -429,10 +447,10 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
429
447
|
disabled: boolean;
|
|
430
448
|
events: {
|
|
431
449
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
432
|
-
change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
433
|
-
input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
434
|
-
keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
435
|
-
keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
450
|
+
change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
451
|
+
input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
452
|
+
keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
453
|
+
keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
436
454
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
437
455
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
438
456
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -450,7 +468,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
450
468
|
placeholder: string;
|
|
451
469
|
readonly: boolean;
|
|
452
470
|
reverse: boolean;
|
|
453
|
-
rules: ((value?: any) =>
|
|
471
|
+
rules: ((value?: any) => boolean | string)[];
|
|
454
472
|
showBorder: boolean;
|
|
455
473
|
showHelper: boolean;
|
|
456
474
|
showLabel: boolean;
|
|
@@ -476,13 +494,13 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
476
494
|
} | undefined;
|
|
477
495
|
children?: {
|
|
478
496
|
[x: string]: any;
|
|
479
|
-
children?: any[] | undefined;
|
|
497
|
+
children?: /*elided*/ any[] | undefined;
|
|
480
498
|
component: string;
|
|
481
499
|
allowDuplicate?: boolean | undefined;
|
|
482
500
|
autofocus?: boolean | undefined;
|
|
483
501
|
componentId?: number | undefined;
|
|
484
502
|
cssClass?: string | undefined;
|
|
485
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
503
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
486
504
|
events?: {
|
|
487
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;
|
|
488
506
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -518,25 +536,25 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
518
536
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
519
537
|
} | undefined;
|
|
520
538
|
} | undefined;
|
|
521
|
-
isVisible?:
|
|
539
|
+
isVisible?: boolean | string | undefined;
|
|
522
540
|
dark?: boolean | undefined;
|
|
523
541
|
light?: boolean | undefined;
|
|
524
542
|
theme?: string | undefined;
|
|
525
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
543
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
526
544
|
name: string;
|
|
527
545
|
parent?: {
|
|
528
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
529
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
546
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
547
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
530
548
|
allowDuplicate: boolean;
|
|
531
549
|
autofocus: boolean;
|
|
532
550
|
children: {
|
|
533
551
|
[x: string]: any;
|
|
534
552
|
allowDuplicate?: boolean | undefined;
|
|
535
553
|
autofocus?: boolean | undefined;
|
|
536
|
-
children?: any[] | undefined;
|
|
554
|
+
children?: /*elided*/ any[] | undefined;
|
|
537
555
|
componentId?: number | undefined;
|
|
538
556
|
cssClass?: string | undefined;
|
|
539
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
557
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
540
558
|
events?: {
|
|
541
559
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
542
560
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -572,20 +590,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
572
590
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
573
591
|
} | undefined;
|
|
574
592
|
} | undefined;
|
|
575
|
-
isVisible?:
|
|
593
|
+
isVisible?: boolean | string | undefined;
|
|
576
594
|
dark?: boolean | undefined;
|
|
577
595
|
light?: boolean | undefined;
|
|
578
596
|
theme?: string | undefined;
|
|
579
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
597
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
580
598
|
name: string;
|
|
581
|
-
parent?: any | undefined;
|
|
599
|
+
parent?: /*elided*/ any | undefined;
|
|
582
600
|
tabStop?: boolean | undefined;
|
|
583
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
601
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
584
602
|
fillHeight?: boolean | undefined;
|
|
585
603
|
}[];
|
|
586
604
|
componentId: number;
|
|
587
605
|
cssClass: string;
|
|
588
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
606
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
589
607
|
events: {
|
|
590
608
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
591
609
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -621,19 +639,19 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
621
639
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
622
640
|
} | undefined;
|
|
623
641
|
};
|
|
624
|
-
isVisible:
|
|
642
|
+
isVisible: boolean | string;
|
|
625
643
|
dark: boolean;
|
|
626
644
|
light: boolean;
|
|
627
645
|
theme?: string | undefined;
|
|
628
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
646
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
629
647
|
name: string;
|
|
630
|
-
parent?: any | undefined;
|
|
648
|
+
parent?: /*elided*/ any | undefined;
|
|
631
649
|
tabStop: boolean;
|
|
632
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
650
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
633
651
|
fillHeight: boolean;
|
|
634
652
|
} | undefined;
|
|
635
653
|
tabStop?: boolean | undefined;
|
|
636
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
654
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
637
655
|
fillHeight?: boolean | undefined;
|
|
638
656
|
}[] | undefined;
|
|
639
657
|
component: string;
|
|
@@ -641,7 +659,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
641
659
|
autofocus?: boolean | undefined;
|
|
642
660
|
componentId?: number | undefined;
|
|
643
661
|
cssClass?: string | undefined;
|
|
644
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
662
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
645
663
|
events?: {
|
|
646
664
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
647
665
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -677,25 +695,25 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
677
695
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
678
696
|
} | undefined;
|
|
679
697
|
} | undefined;
|
|
680
|
-
isVisible?:
|
|
698
|
+
isVisible?: boolean | string | undefined;
|
|
681
699
|
dark?: boolean | undefined;
|
|
682
700
|
light?: boolean | undefined;
|
|
683
701
|
theme?: string | undefined;
|
|
684
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
702
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
685
703
|
name: string;
|
|
686
704
|
parent?: {
|
|
687
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
688
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
705
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
706
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
689
707
|
allowDuplicate: boolean;
|
|
690
708
|
autofocus: boolean;
|
|
691
709
|
children: {
|
|
692
710
|
[x: string]: any;
|
|
693
711
|
allowDuplicate?: boolean | undefined;
|
|
694
712
|
autofocus?: boolean | undefined;
|
|
695
|
-
children?: any[] | undefined;
|
|
713
|
+
children?: /*elided*/ any[] | undefined;
|
|
696
714
|
componentId?: number | undefined;
|
|
697
715
|
cssClass?: string | undefined;
|
|
698
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
716
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
699
717
|
events?: {
|
|
700
718
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
701
719
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -731,20 +749,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
731
749
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
732
750
|
} | undefined;
|
|
733
751
|
} | undefined;
|
|
734
|
-
isVisible?:
|
|
752
|
+
isVisible?: boolean | string | undefined;
|
|
735
753
|
dark?: boolean | undefined;
|
|
736
754
|
light?: boolean | undefined;
|
|
737
755
|
theme?: string | undefined;
|
|
738
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
756
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
739
757
|
name: string;
|
|
740
|
-
parent?: any | undefined;
|
|
758
|
+
parent?: /*elided*/ any | undefined;
|
|
741
759
|
tabStop?: boolean | undefined;
|
|
742
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
760
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
743
761
|
fillHeight?: boolean | undefined;
|
|
744
762
|
}[];
|
|
745
763
|
componentId: number;
|
|
746
764
|
cssClass: string;
|
|
747
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
765
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
748
766
|
events: {
|
|
749
767
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
750
768
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -780,19 +798,19 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
780
798
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
781
799
|
} | undefined;
|
|
782
800
|
};
|
|
783
|
-
isVisible:
|
|
801
|
+
isVisible: boolean | string;
|
|
784
802
|
dark: boolean;
|
|
785
803
|
light: boolean;
|
|
786
804
|
theme?: string | undefined;
|
|
787
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
805
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
788
806
|
name: string;
|
|
789
|
-
parent?: any | undefined;
|
|
807
|
+
parent?: /*elided*/ any | undefined;
|
|
790
808
|
tabStop: boolean;
|
|
791
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
809
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
792
810
|
fillHeight: boolean;
|
|
793
811
|
} | undefined;
|
|
794
812
|
tabStop?: boolean | undefined;
|
|
795
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
813
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
796
814
|
fillHeight?: boolean | undefined;
|
|
797
815
|
}[];
|
|
798
816
|
align?: string | undefined;
|
|
@@ -805,7 +823,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
805
823
|
maxWidth: string | number;
|
|
806
824
|
events: {
|
|
807
825
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
|
|
808
|
-
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent
|
|
826
|
+
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent> | undefined;
|
|
809
827
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
810
828
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
811
829
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
@@ -816,20 +834,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
816
834
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
817
835
|
};
|
|
818
836
|
submitFunction?: (() => void) | undefined;
|
|
819
|
-
value: import("@zeedhi/core").IDictionary
|
|
837
|
+
value: import("@zeedhi/core").IDictionary;
|
|
820
838
|
clearForm: () => void;
|
|
821
839
|
registerInput: (component: import("@zeedhi/common").Input) => void;
|
|
822
840
|
readonly childrenProps: {
|
|
823
841
|
[x: string]: any;
|
|
824
842
|
children?: {
|
|
825
843
|
[x: string]: any;
|
|
826
|
-
children?: any[] | undefined;
|
|
844
|
+
children?: /*elided*/ any[] | undefined;
|
|
827
845
|
component: string;
|
|
828
846
|
allowDuplicate?: boolean | undefined;
|
|
829
847
|
autofocus?: boolean | undefined;
|
|
830
848
|
componentId?: number | undefined;
|
|
831
849
|
cssClass?: string | undefined;
|
|
832
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
850
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
833
851
|
events?: {
|
|
834
852
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
835
853
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -865,25 +883,25 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
865
883
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
866
884
|
} | undefined;
|
|
867
885
|
} | undefined;
|
|
868
|
-
isVisible?:
|
|
886
|
+
isVisible?: boolean | string | undefined;
|
|
869
887
|
dark?: boolean | undefined;
|
|
870
888
|
light?: boolean | undefined;
|
|
871
889
|
theme?: string | undefined;
|
|
872
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
890
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
873
891
|
name: string;
|
|
874
892
|
parent?: {
|
|
875
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
876
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
893
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
894
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
877
895
|
allowDuplicate: boolean;
|
|
878
896
|
autofocus: boolean;
|
|
879
897
|
children: {
|
|
880
898
|
[x: string]: any;
|
|
881
899
|
allowDuplicate?: boolean | undefined;
|
|
882
900
|
autofocus?: boolean | undefined;
|
|
883
|
-
children?: any[] | undefined;
|
|
901
|
+
children?: /*elided*/ any[] | undefined;
|
|
884
902
|
componentId?: number | undefined;
|
|
885
903
|
cssClass?: string | undefined;
|
|
886
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
904
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
887
905
|
events?: {
|
|
888
906
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
889
907
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -919,20 +937,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
919
937
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
920
938
|
} | undefined;
|
|
921
939
|
} | undefined;
|
|
922
|
-
isVisible?:
|
|
940
|
+
isVisible?: boolean | string | undefined;
|
|
923
941
|
dark?: boolean | undefined;
|
|
924
942
|
light?: boolean | undefined;
|
|
925
943
|
theme?: string | undefined;
|
|
926
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
944
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
927
945
|
name: string;
|
|
928
|
-
parent?: any | undefined;
|
|
946
|
+
parent?: /*elided*/ any | undefined;
|
|
929
947
|
tabStop?: boolean | undefined;
|
|
930
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
948
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
931
949
|
fillHeight?: boolean | undefined;
|
|
932
950
|
}[];
|
|
933
951
|
componentId: number;
|
|
934
952
|
cssClass: string;
|
|
935
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
953
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
936
954
|
events: {
|
|
937
955
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
938
956
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -968,26 +986,26 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
968
986
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
969
987
|
} | undefined;
|
|
970
988
|
};
|
|
971
|
-
isVisible:
|
|
989
|
+
isVisible: boolean | string;
|
|
972
990
|
dark: boolean;
|
|
973
991
|
light: boolean;
|
|
974
992
|
theme?: string | undefined;
|
|
975
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
993
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
976
994
|
name: string;
|
|
977
|
-
parent?: any | undefined;
|
|
995
|
+
parent?: /*elided*/ any | undefined;
|
|
978
996
|
tabStop: boolean;
|
|
979
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
997
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
980
998
|
fillHeight: boolean;
|
|
981
999
|
} | undefined;
|
|
982
1000
|
tabStop?: boolean | undefined;
|
|
983
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1001
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
984
1002
|
fillHeight?: boolean | undefined;
|
|
985
1003
|
}[] | undefined;
|
|
986
1004
|
component: string;
|
|
987
|
-
allowDuplicate?: boolean | undefined;
|
|
988
|
-
autofocus?: boolean | undefined;
|
|
989
|
-
componentId?: number | undefined;
|
|
990
|
-
cssClass?: string | undefined;
|
|
1005
|
+
allowDuplicate?: boolean | undefined | undefined;
|
|
1006
|
+
autofocus?: boolean | undefined | undefined;
|
|
1007
|
+
componentId?: number | undefined | undefined;
|
|
1008
|
+
cssClass?: string | undefined | undefined;
|
|
991
1009
|
cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
|
|
992
1010
|
events?: {
|
|
993
1011
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
@@ -1024,25 +1042,25 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1024
1042
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1025
1043
|
} | undefined;
|
|
1026
1044
|
} | undefined;
|
|
1027
|
-
isVisible?: string | boolean | undefined;
|
|
1028
|
-
dark?: boolean | undefined;
|
|
1029
|
-
light?: boolean | undefined;
|
|
1030
|
-
theme?: string | undefined;
|
|
1045
|
+
isVisible?: string | boolean | undefined | undefined;
|
|
1046
|
+
dark?: boolean | undefined | undefined;
|
|
1047
|
+
light?: boolean | undefined | undefined;
|
|
1048
|
+
theme?: string | undefined | undefined;
|
|
1031
1049
|
keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
1032
1050
|
name: string;
|
|
1033
1051
|
parent?: {
|
|
1034
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1035
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1052
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1053
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1036
1054
|
allowDuplicate: boolean;
|
|
1037
1055
|
autofocus: boolean;
|
|
1038
1056
|
children: {
|
|
1039
1057
|
[x: string]: any;
|
|
1040
1058
|
allowDuplicate?: boolean | undefined;
|
|
1041
1059
|
autofocus?: boolean | undefined;
|
|
1042
|
-
children?: any[] | undefined;
|
|
1060
|
+
children?: /*elided*/ any[] | undefined;
|
|
1043
1061
|
componentId?: number | undefined;
|
|
1044
1062
|
cssClass?: string | undefined;
|
|
1045
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1063
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1046
1064
|
events?: {
|
|
1047
1065
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1048
1066
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1078,20 +1096,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1078
1096
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1079
1097
|
} | undefined;
|
|
1080
1098
|
} | undefined;
|
|
1081
|
-
isVisible?:
|
|
1099
|
+
isVisible?: boolean | string | undefined;
|
|
1082
1100
|
dark?: boolean | undefined;
|
|
1083
1101
|
light?: boolean | undefined;
|
|
1084
1102
|
theme?: string | undefined;
|
|
1085
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1103
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1086
1104
|
name: string;
|
|
1087
|
-
parent?: any | undefined;
|
|
1105
|
+
parent?: /*elided*/ any | undefined;
|
|
1088
1106
|
tabStop?: boolean | undefined;
|
|
1089
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1107
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1090
1108
|
fillHeight?: boolean | undefined;
|
|
1091
1109
|
}[];
|
|
1092
1110
|
componentId: number;
|
|
1093
1111
|
cssClass: string;
|
|
1094
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1112
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1095
1113
|
events: {
|
|
1096
1114
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1097
1115
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1127,20 +1145,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1127
1145
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1128
1146
|
} | undefined;
|
|
1129
1147
|
};
|
|
1130
|
-
isVisible:
|
|
1148
|
+
isVisible: boolean | string;
|
|
1131
1149
|
dark: boolean;
|
|
1132
1150
|
light: boolean;
|
|
1133
1151
|
theme?: string | undefined;
|
|
1134
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1152
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1135
1153
|
name: string;
|
|
1136
|
-
parent?: any | undefined;
|
|
1154
|
+
parent?: /*elided*/ any | undefined;
|
|
1137
1155
|
tabStop: boolean;
|
|
1138
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1156
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1139
1157
|
fillHeight: boolean;
|
|
1140
1158
|
} | undefined;
|
|
1141
|
-
tabStop?: boolean | undefined;
|
|
1159
|
+
tabStop?: boolean | undefined | undefined;
|
|
1142
1160
|
userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1143
|
-
fillHeight?: boolean | undefined;
|
|
1161
|
+
fillHeight?: boolean | undefined | undefined;
|
|
1144
1162
|
}[];
|
|
1145
1163
|
readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
|
|
1146
1164
|
validate: () => Promise<{
|
|
@@ -1195,18 +1213,18 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1195
1213
|
theme?: string | undefined;
|
|
1196
1214
|
fillHeight: boolean;
|
|
1197
1215
|
parent?: {
|
|
1198
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1199
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1216
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1217
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1200
1218
|
allowDuplicate: boolean;
|
|
1201
1219
|
autofocus: boolean;
|
|
1202
1220
|
children: {
|
|
1203
1221
|
[x: string]: any;
|
|
1204
1222
|
allowDuplicate?: boolean | undefined;
|
|
1205
1223
|
autofocus?: boolean | undefined;
|
|
1206
|
-
children?: any[] | undefined;
|
|
1224
|
+
children?: /*elided*/ any[] | undefined;
|
|
1207
1225
|
componentId?: number | undefined;
|
|
1208
1226
|
cssClass?: string | undefined;
|
|
1209
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1227
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1210
1228
|
events?: {
|
|
1211
1229
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1212
1230
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1242,20 +1260,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1242
1260
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1243
1261
|
} | undefined;
|
|
1244
1262
|
} | undefined;
|
|
1245
|
-
isVisible?:
|
|
1263
|
+
isVisible?: boolean | string | undefined;
|
|
1246
1264
|
dark?: boolean | undefined;
|
|
1247
1265
|
light?: boolean | undefined;
|
|
1248
1266
|
theme?: string | undefined;
|
|
1249
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1267
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1250
1268
|
name: string;
|
|
1251
|
-
parent?: any | undefined;
|
|
1269
|
+
parent?: /*elided*/ any | undefined;
|
|
1252
1270
|
tabStop?: boolean | undefined;
|
|
1253
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1271
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1254
1272
|
fillHeight?: boolean | undefined;
|
|
1255
1273
|
}[];
|
|
1256
1274
|
componentId: number;
|
|
1257
1275
|
cssClass: string;
|
|
1258
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1276
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1259
1277
|
events: {
|
|
1260
1278
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1261
1279
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1291,19 +1309,19 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1291
1309
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1292
1310
|
} | undefined;
|
|
1293
1311
|
};
|
|
1294
|
-
isVisible:
|
|
1312
|
+
isVisible: boolean | string;
|
|
1295
1313
|
dark: boolean;
|
|
1296
1314
|
light: boolean;
|
|
1297
1315
|
theme?: string | undefined;
|
|
1298
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1316
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1299
1317
|
name: string;
|
|
1300
|
-
parent?: any | undefined;
|
|
1318
|
+
parent?: /*elided*/ any | undefined;
|
|
1301
1319
|
tabStop: boolean;
|
|
1302
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1320
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1303
1321
|
fillHeight: boolean;
|
|
1304
1322
|
} | undefined;
|
|
1305
1323
|
componentId: number;
|
|
1306
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1324
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1307
1325
|
isFocused: boolean;
|
|
1308
1326
|
tabStop: boolean;
|
|
1309
1327
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1312,19 +1330,19 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1312
1330
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1313
1331
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1314
1332
|
removeChild: (name: string) => void;
|
|
1315
|
-
getChildInstance: <
|
|
1316
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1333
|
+
getChildInstance: <T>(name: string) => T;
|
|
1334
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1317
1335
|
onCreated: () => void;
|
|
1318
1336
|
onBeforeMount: () => void;
|
|
1319
1337
|
onBeforeDestroy: () => void;
|
|
1320
1338
|
onDestroyed: () => void;
|
|
1321
|
-
click: (event?: Event
|
|
1339
|
+
click: (event?: Event, element?: any) => void;
|
|
1322
1340
|
focus: (event: Event, element: any) => void;
|
|
1323
1341
|
blur: (event: Event, element: any) => void;
|
|
1324
|
-
mouseenter: (event?: Event
|
|
1325
|
-
mouseleave: (event?: Event
|
|
1326
|
-
mouseout: (event?: Event
|
|
1327
|
-
mouseover: (event?: Event
|
|
1342
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1343
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1344
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1345
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1328
1346
|
} | undefined;
|
|
1329
1347
|
grid: {
|
|
1330
1348
|
cols?: string | undefined;
|
|
@@ -1342,10 +1360,10 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1342
1360
|
};
|
|
1343
1361
|
onCreated: () => void;
|
|
1344
1362
|
validate: () => Promise<string[]>;
|
|
1345
|
-
setViewValidate: (viewValidate: (silent?: boolean
|
|
1363
|
+
setViewValidate: (viewValidate: (silent?: boolean) => Promise<string[]>) => void;
|
|
1346
1364
|
setViewResetValidation: (viewResetValidation: () => void) => void;
|
|
1347
1365
|
resetValidation: () => void;
|
|
1348
|
-
addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any>
|
|
1366
|
+
addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any>) => void;
|
|
1349
1367
|
removeValidation: (name: string) => void;
|
|
1350
1368
|
clearValidations: () => void;
|
|
1351
1369
|
value: any;
|
|
@@ -1353,19 +1371,19 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1353
1371
|
formatter: (value: any) => any;
|
|
1354
1372
|
parser: (value: any) => any;
|
|
1355
1373
|
isValid: (value?: any) => boolean;
|
|
1356
|
-
change: (event?: Event
|
|
1357
|
-
input: (event?: Event
|
|
1358
|
-
keyup: (event?: Event
|
|
1359
|
-
keydown: (event?: Event
|
|
1374
|
+
change: (event?: Event, element?: any) => void;
|
|
1375
|
+
input: (event?: Event, element?: any) => void;
|
|
1376
|
+
keyup: (event?: Event, element?: any) => void;
|
|
1377
|
+
keydown: (event?: Event, element?: any) => void;
|
|
1360
1378
|
children: {
|
|
1361
1379
|
[x: string]: any;
|
|
1362
|
-
children?: any[] | undefined;
|
|
1380
|
+
children?: /*elided*/ any[] | undefined;
|
|
1363
1381
|
component: string;
|
|
1364
1382
|
allowDuplicate?: boolean | undefined;
|
|
1365
1383
|
autofocus?: boolean | undefined;
|
|
1366
1384
|
componentId?: number | undefined;
|
|
1367
1385
|
cssClass?: string | undefined;
|
|
1368
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1386
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1369
1387
|
events?: {
|
|
1370
1388
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1371
1389
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1401,25 +1419,25 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1401
1419
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1402
1420
|
} | undefined;
|
|
1403
1421
|
} | undefined;
|
|
1404
|
-
isVisible?:
|
|
1422
|
+
isVisible?: boolean | string | undefined;
|
|
1405
1423
|
dark?: boolean | undefined;
|
|
1406
1424
|
light?: boolean | undefined;
|
|
1407
1425
|
theme?: string | undefined;
|
|
1408
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1426
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1409
1427
|
name: string;
|
|
1410
1428
|
parent?: {
|
|
1411
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1412
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1429
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1430
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1413
1431
|
allowDuplicate: boolean;
|
|
1414
1432
|
autofocus: boolean;
|
|
1415
1433
|
children: {
|
|
1416
1434
|
[x: string]: any;
|
|
1417
1435
|
allowDuplicate?: boolean | undefined;
|
|
1418
1436
|
autofocus?: boolean | undefined;
|
|
1419
|
-
children?: any[] | undefined;
|
|
1437
|
+
children?: /*elided*/ any[] | undefined;
|
|
1420
1438
|
componentId?: number | undefined;
|
|
1421
1439
|
cssClass?: string | undefined;
|
|
1422
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1440
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1423
1441
|
events?: {
|
|
1424
1442
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1425
1443
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1455,20 +1473,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1455
1473
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1456
1474
|
} | undefined;
|
|
1457
1475
|
} | undefined;
|
|
1458
|
-
isVisible?:
|
|
1476
|
+
isVisible?: boolean | string | undefined;
|
|
1459
1477
|
dark?: boolean | undefined;
|
|
1460
1478
|
light?: boolean | undefined;
|
|
1461
1479
|
theme?: string | undefined;
|
|
1462
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1480
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1463
1481
|
name: string;
|
|
1464
|
-
parent?: any | undefined;
|
|
1482
|
+
parent?: /*elided*/ any | undefined;
|
|
1465
1483
|
tabStop?: boolean | undefined;
|
|
1466
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1484
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1467
1485
|
fillHeight?: boolean | undefined;
|
|
1468
1486
|
}[];
|
|
1469
1487
|
componentId: number;
|
|
1470
1488
|
cssClass: string;
|
|
1471
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1489
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1472
1490
|
events: {
|
|
1473
1491
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1474
1492
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1504,19 +1522,19 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1504
1522
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1505
1523
|
} | undefined;
|
|
1506
1524
|
};
|
|
1507
|
-
isVisible:
|
|
1525
|
+
isVisible: boolean | string;
|
|
1508
1526
|
dark: boolean;
|
|
1509
1527
|
light: boolean;
|
|
1510
1528
|
theme?: string | undefined;
|
|
1511
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1529
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1512
1530
|
name: string;
|
|
1513
|
-
parent?: any | undefined;
|
|
1531
|
+
parent?: /*elided*/ any | undefined;
|
|
1514
1532
|
tabStop: boolean;
|
|
1515
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1533
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1516
1534
|
fillHeight: boolean;
|
|
1517
1535
|
} | undefined;
|
|
1518
1536
|
tabStop?: boolean | undefined;
|
|
1519
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1537
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1520
1538
|
fillHeight?: boolean | undefined;
|
|
1521
1539
|
}[];
|
|
1522
1540
|
component: string;
|
|
@@ -1556,18 +1574,18 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1556
1574
|
theme?: string | undefined;
|
|
1557
1575
|
fillHeight: boolean;
|
|
1558
1576
|
parent?: {
|
|
1559
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1560
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1577
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1578
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1561
1579
|
allowDuplicate: boolean;
|
|
1562
1580
|
autofocus: boolean;
|
|
1563
1581
|
children: {
|
|
1564
1582
|
[x: string]: any;
|
|
1565
1583
|
allowDuplicate?: boolean | undefined;
|
|
1566
1584
|
autofocus?: boolean | undefined;
|
|
1567
|
-
children?: any[] | undefined;
|
|
1585
|
+
children?: /*elided*/ any[] | undefined;
|
|
1568
1586
|
componentId?: number | undefined;
|
|
1569
1587
|
cssClass?: string | undefined;
|
|
1570
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1588
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1571
1589
|
events?: {
|
|
1572
1590
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1573
1591
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1603,20 +1621,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1603
1621
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1604
1622
|
} | undefined;
|
|
1605
1623
|
} | undefined;
|
|
1606
|
-
isVisible?:
|
|
1624
|
+
isVisible?: boolean | string | undefined;
|
|
1607
1625
|
dark?: boolean | undefined;
|
|
1608
1626
|
light?: boolean | undefined;
|
|
1609
1627
|
theme?: string | undefined;
|
|
1610
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1628
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1611
1629
|
name: string;
|
|
1612
|
-
parent?: any | undefined;
|
|
1630
|
+
parent?: /*elided*/ any | undefined;
|
|
1613
1631
|
tabStop?: boolean | undefined;
|
|
1614
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1632
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1615
1633
|
fillHeight?: boolean | undefined;
|
|
1616
1634
|
}[];
|
|
1617
1635
|
componentId: number;
|
|
1618
1636
|
cssClass: string;
|
|
1619
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1637
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1620
1638
|
events: {
|
|
1621
1639
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1622
1640
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1652,19 +1670,19 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1652
1670
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1653
1671
|
} | undefined;
|
|
1654
1672
|
};
|
|
1655
|
-
isVisible:
|
|
1673
|
+
isVisible: boolean | string;
|
|
1656
1674
|
dark: boolean;
|
|
1657
1675
|
light: boolean;
|
|
1658
1676
|
theme?: string | undefined;
|
|
1659
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1677
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1660
1678
|
name: string;
|
|
1661
|
-
parent?: any | undefined;
|
|
1679
|
+
parent?: /*elided*/ any | undefined;
|
|
1662
1680
|
tabStop: boolean;
|
|
1663
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1681
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1664
1682
|
fillHeight: boolean;
|
|
1665
1683
|
} | undefined;
|
|
1666
1684
|
componentId: number;
|
|
1667
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1685
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1668
1686
|
isFocused: boolean;
|
|
1669
1687
|
tabStop: boolean;
|
|
1670
1688
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1673,21 +1691,21 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1673
1691
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1674
1692
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1675
1693
|
removeChild: (name: string) => void;
|
|
1676
|
-
getChildInstance: <
|
|
1677
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1694
|
+
getChildInstance: <T>(name: string) => T;
|
|
1695
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1678
1696
|
onBeforeMount: () => void;
|
|
1679
1697
|
onMounted: (element: any) => void;
|
|
1680
1698
|
onBeforeDestroy: () => void;
|
|
1681
1699
|
onDestroyed: () => void;
|
|
1682
|
-
click: (event?: Event
|
|
1700
|
+
click: (event?: Event, element?: any) => void;
|
|
1683
1701
|
focus: (event: Event, element: any) => void;
|
|
1684
1702
|
blur: (event: Event, element: any) => void;
|
|
1685
|
-
mouseenter: (event?: Event
|
|
1686
|
-
mouseleave: (event?: Event
|
|
1687
|
-
mouseout: (event?: Event
|
|
1688
|
-
mouseover: (event?: Event
|
|
1703
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1704
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1705
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1706
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1689
1707
|
};
|
|
1690
|
-
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance
|
|
1708
|
+
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
1691
1709
|
click: (event: Event) => void;
|
|
1692
1710
|
focus: (event: Event) => void;
|
|
1693
1711
|
blur: (event: Event) => void;
|
|
@@ -1789,6 +1807,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1789
1807
|
validations: {
|
|
1790
1808
|
type: (ObjectConstructor | StringConstructor)[];
|
|
1791
1809
|
default: {};
|
|
1810
|
+
watch: boolean;
|
|
1792
1811
|
};
|
|
1793
1812
|
value: {
|
|
1794
1813
|
default: null;
|
|
@@ -1832,16 +1851,20 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1832
1851
|
isArray(arg: any): arg is any[];
|
|
1833
1852
|
readonly prototype: any[];
|
|
1834
1853
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
1835
|
-
from<
|
|
1836
|
-
from<
|
|
1837
|
-
from<
|
|
1838
|
-
of<
|
|
1854
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
1855
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
1856
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
1857
|
+
of<T>(...items: T[]): T[];
|
|
1858
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
1859
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
1839
1860
|
readonly [Symbol.species]: ArrayConstructor;
|
|
1840
1861
|
})[];
|
|
1841
1862
|
default(): never[];
|
|
1863
|
+
watch: boolean;
|
|
1842
1864
|
};
|
|
1843
1865
|
component: {
|
|
1844
1866
|
type: StringConstructor;
|
|
1867
|
+
watch: boolean;
|
|
1845
1868
|
};
|
|
1846
1869
|
allowDuplicate: {
|
|
1847
1870
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -1866,10 +1889,12 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1866
1889
|
directives: {
|
|
1867
1890
|
type: ObjectConstructor;
|
|
1868
1891
|
default(): {};
|
|
1892
|
+
watch: boolean;
|
|
1869
1893
|
};
|
|
1870
1894
|
events: {
|
|
1871
1895
|
type: ObjectConstructor;
|
|
1872
1896
|
default(): {};
|
|
1897
|
+
watch: boolean;
|
|
1873
1898
|
};
|
|
1874
1899
|
instanceObject: {
|
|
1875
1900
|
type: ObjectConstructor;
|
|
@@ -1881,6 +1906,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1881
1906
|
keyMap: {
|
|
1882
1907
|
type: ObjectConstructor;
|
|
1883
1908
|
default(): {};
|
|
1909
|
+
watch: boolean;
|
|
1884
1910
|
};
|
|
1885
1911
|
light: {
|
|
1886
1912
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -1892,6 +1918,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1892
1918
|
};
|
|
1893
1919
|
parent: {
|
|
1894
1920
|
type: ObjectConstructor;
|
|
1921
|
+
watch: boolean;
|
|
1895
1922
|
};
|
|
1896
1923
|
tabStop: {
|
|
1897
1924
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -1902,6 +1929,7 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1902
1929
|
};
|
|
1903
1930
|
}>> & Readonly<{}>, {
|
|
1904
1931
|
reverse: string | boolean;
|
|
1932
|
+
label: string;
|
|
1905
1933
|
allowDuplicate: string | boolean;
|
|
1906
1934
|
autofocus: string | boolean;
|
|
1907
1935
|
children: string | import("@zeedhi/common").IComponentRender[];
|
|
@@ -1916,8 +1944,8 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1916
1944
|
tabStop: string | boolean;
|
|
1917
1945
|
fillHeight: string | boolean;
|
|
1918
1946
|
value: null;
|
|
1919
|
-
label: string;
|
|
1920
1947
|
mask: string;
|
|
1948
|
+
placeholder: string;
|
|
1921
1949
|
color: string;
|
|
1922
1950
|
disabled: string | boolean;
|
|
1923
1951
|
dense: string | boolean;
|
|
@@ -1932,7 +1960,6 @@ declare const switchComponent: import("vue").DefineComponent<import("vue").Extra
|
|
|
1932
1960
|
hint: string;
|
|
1933
1961
|
maxLength: string | number;
|
|
1934
1962
|
persistentHint: string | boolean;
|
|
1935
|
-
placeholder: string;
|
|
1936
1963
|
readonly: string | boolean;
|
|
1937
1964
|
autoHintDetails: string | boolean;
|
|
1938
1965
|
showBorder: string | boolean;
|