@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
|
@@ -7,17 +7,17 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
currentColumn: {
|
|
8
8
|
children: {
|
|
9
9
|
[x: string]: any;
|
|
10
|
-
conditions?: import("@zeedhi/core").IDictionary
|
|
10
|
+
conditions?: import("@zeedhi/core").IDictionary | undefined;
|
|
11
11
|
allowDuplicate?: boolean | undefined;
|
|
12
12
|
autofocus?: boolean | undefined;
|
|
13
13
|
children?: {
|
|
14
14
|
[x: string]: any;
|
|
15
15
|
allowDuplicate?: boolean | undefined;
|
|
16
16
|
autofocus?: boolean | undefined;
|
|
17
|
-
children?: any[] | undefined;
|
|
17
|
+
children?: /*elided*/ any[] | undefined;
|
|
18
18
|
componentId?: number | undefined;
|
|
19
19
|
cssClass?: string | undefined;
|
|
20
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
20
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
21
21
|
events?: {
|
|
22
22
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
23
23
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -53,21 +53,21 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
53
53
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
54
54
|
} | undefined;
|
|
55
55
|
} | undefined;
|
|
56
|
-
isVisible?:
|
|
56
|
+
isVisible?: boolean | string | undefined;
|
|
57
57
|
dark?: boolean | undefined;
|
|
58
58
|
light?: boolean | undefined;
|
|
59
59
|
theme?: string | undefined;
|
|
60
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
60
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
61
61
|
name: string;
|
|
62
62
|
parent?: {
|
|
63
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
64
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
63
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
64
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
65
65
|
allowDuplicate: boolean;
|
|
66
66
|
autofocus: boolean;
|
|
67
|
-
children: any[];
|
|
67
|
+
children: /*elided*/ any[];
|
|
68
68
|
componentId: number;
|
|
69
69
|
cssClass: string;
|
|
70
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
70
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
71
71
|
events: {
|
|
72
72
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
73
73
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -103,24 +103,24 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
103
103
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
104
104
|
} | undefined;
|
|
105
105
|
};
|
|
106
|
-
isVisible:
|
|
106
|
+
isVisible: boolean | string;
|
|
107
107
|
dark: boolean;
|
|
108
108
|
light: boolean;
|
|
109
109
|
theme?: string | undefined;
|
|
110
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
110
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
111
111
|
name: string;
|
|
112
|
-
parent?: any | undefined;
|
|
112
|
+
parent?: /*elided*/ any | undefined;
|
|
113
113
|
tabStop: boolean;
|
|
114
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
114
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
115
115
|
fillHeight: boolean;
|
|
116
116
|
} | undefined;
|
|
117
117
|
tabStop?: boolean | undefined;
|
|
118
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
118
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
119
119
|
fillHeight?: boolean | undefined;
|
|
120
120
|
}[] | undefined;
|
|
121
121
|
componentId?: number | undefined;
|
|
122
122
|
cssClass?: string | undefined;
|
|
123
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
123
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
124
124
|
events?: {
|
|
125
125
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
126
126
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -156,21 +156,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
156
156
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
157
157
|
} | undefined;
|
|
158
158
|
} | undefined;
|
|
159
|
-
isVisible?:
|
|
159
|
+
isVisible?: boolean | string | undefined;
|
|
160
160
|
dark?: boolean | undefined;
|
|
161
161
|
light?: boolean | undefined;
|
|
162
162
|
theme?: string | undefined;
|
|
163
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
163
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
164
164
|
name: string;
|
|
165
165
|
parent?: {
|
|
166
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
167
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
166
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
167
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
168
168
|
allowDuplicate: boolean;
|
|
169
169
|
autofocus: boolean;
|
|
170
|
-
children:
|
|
170
|
+
children: {
|
|
171
|
+
[x: string]: any;
|
|
172
|
+
allowDuplicate?: boolean | undefined;
|
|
173
|
+
autofocus?: boolean | undefined;
|
|
174
|
+
children?: /*elided*/ any[] | undefined;
|
|
175
|
+
componentId?: number | undefined;
|
|
176
|
+
cssClass?: string | undefined;
|
|
177
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
178
|
+
events?: {
|
|
179
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
180
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
181
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
182
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
183
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
184
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
185
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
186
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
187
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
188
|
+
} | undefined;
|
|
189
|
+
directives?: {
|
|
190
|
+
[x: string]: {
|
|
191
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
192
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
193
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
194
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
195
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
196
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
197
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
198
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
199
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
200
|
+
} | undefined;
|
|
201
|
+
touch?: {
|
|
202
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
203
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
204
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
205
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
206
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
207
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
208
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
209
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
210
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
211
|
+
} | undefined;
|
|
212
|
+
} | undefined;
|
|
213
|
+
isVisible?: boolean | string | undefined;
|
|
214
|
+
dark?: boolean | undefined;
|
|
215
|
+
light?: boolean | undefined;
|
|
216
|
+
theme?: string | undefined;
|
|
217
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
218
|
+
name: string;
|
|
219
|
+
parent?: /*elided*/ any | undefined;
|
|
220
|
+
tabStop?: boolean | undefined;
|
|
221
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
222
|
+
fillHeight?: boolean | undefined;
|
|
223
|
+
}[];
|
|
171
224
|
componentId: number;
|
|
172
225
|
cssClass: string;
|
|
173
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
226
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
174
227
|
events: {
|
|
175
228
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
176
229
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -206,33 +259,33 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
206
259
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
207
260
|
} | undefined;
|
|
208
261
|
};
|
|
209
|
-
isVisible:
|
|
262
|
+
isVisible: boolean | string;
|
|
210
263
|
dark: boolean;
|
|
211
264
|
light: boolean;
|
|
212
265
|
theme?: string | undefined;
|
|
213
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
266
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
214
267
|
name: string;
|
|
215
|
-
parent?: any | undefined;
|
|
268
|
+
parent?: /*elided*/ any | undefined;
|
|
216
269
|
tabStop: boolean;
|
|
217
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
270
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
218
271
|
fillHeight: boolean;
|
|
219
272
|
} | undefined;
|
|
220
273
|
tabStop?: boolean | undefined;
|
|
221
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
274
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
222
275
|
fillHeight?: boolean | undefined;
|
|
223
276
|
}[];
|
|
224
277
|
readonly childrenProps: {
|
|
225
278
|
[x: string]: any;
|
|
226
|
-
allowDuplicate?: boolean | undefined;
|
|
227
|
-
autofocus?: boolean | undefined;
|
|
279
|
+
allowDuplicate?: boolean | undefined | undefined;
|
|
280
|
+
autofocus?: boolean | undefined | undefined;
|
|
228
281
|
children?: {
|
|
229
282
|
[x: string]: any;
|
|
230
283
|
allowDuplicate?: boolean | undefined;
|
|
231
284
|
autofocus?: boolean | undefined;
|
|
232
|
-
children?: any[] | undefined;
|
|
285
|
+
children?: /*elided*/ any[] | undefined;
|
|
233
286
|
componentId?: number | undefined;
|
|
234
287
|
cssClass?: string | undefined;
|
|
235
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
288
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
236
289
|
events?: {
|
|
237
290
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
238
291
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -268,21 +321,21 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
268
321
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
269
322
|
} | undefined;
|
|
270
323
|
} | undefined;
|
|
271
|
-
isVisible?:
|
|
324
|
+
isVisible?: boolean | string | undefined;
|
|
272
325
|
dark?: boolean | undefined;
|
|
273
326
|
light?: boolean | undefined;
|
|
274
327
|
theme?: string | undefined;
|
|
275
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
328
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
276
329
|
name: string;
|
|
277
330
|
parent?: {
|
|
278
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
279
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
331
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
332
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
280
333
|
allowDuplicate: boolean;
|
|
281
334
|
autofocus: boolean;
|
|
282
|
-
children: any[];
|
|
335
|
+
children: /*elided*/ any[];
|
|
283
336
|
componentId: number;
|
|
284
337
|
cssClass: string;
|
|
285
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
338
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
286
339
|
events: {
|
|
287
340
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
288
341
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -318,23 +371,23 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
318
371
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
319
372
|
} | undefined;
|
|
320
373
|
};
|
|
321
|
-
isVisible:
|
|
374
|
+
isVisible: boolean | string;
|
|
322
375
|
dark: boolean;
|
|
323
376
|
light: boolean;
|
|
324
377
|
theme?: string | undefined;
|
|
325
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
378
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
326
379
|
name: string;
|
|
327
|
-
parent?: any | undefined;
|
|
380
|
+
parent?: /*elided*/ any | undefined;
|
|
328
381
|
tabStop: boolean;
|
|
329
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
382
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
330
383
|
fillHeight: boolean;
|
|
331
384
|
} | undefined;
|
|
332
385
|
tabStop?: boolean | undefined;
|
|
333
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
386
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
334
387
|
fillHeight?: boolean | undefined;
|
|
335
388
|
}[] | undefined;
|
|
336
|
-
componentId?: number | undefined;
|
|
337
|
-
cssClass?: string | undefined;
|
|
389
|
+
componentId?: number | undefined | undefined;
|
|
390
|
+
cssClass?: string | undefined | undefined;
|
|
338
391
|
cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
|
|
339
392
|
events?: {
|
|
340
393
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
@@ -371,21 +424,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
371
424
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
372
425
|
} | undefined;
|
|
373
426
|
} | undefined;
|
|
374
|
-
isVisible?: string | boolean | undefined;
|
|
375
|
-
dark?: boolean | undefined;
|
|
376
|
-
light?: boolean | undefined;
|
|
377
|
-
theme?: string | undefined;
|
|
427
|
+
isVisible?: string | boolean | undefined | undefined;
|
|
428
|
+
dark?: boolean | undefined | undefined;
|
|
429
|
+
light?: boolean | undefined | undefined;
|
|
430
|
+
theme?: string | undefined | undefined;
|
|
378
431
|
keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
379
432
|
name: string;
|
|
380
433
|
parent?: {
|
|
381
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
382
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
434
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
435
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
383
436
|
allowDuplicate: boolean;
|
|
384
437
|
autofocus: boolean;
|
|
385
|
-
children:
|
|
438
|
+
children: {
|
|
439
|
+
[x: string]: any;
|
|
440
|
+
allowDuplicate?: boolean | undefined;
|
|
441
|
+
autofocus?: boolean | undefined;
|
|
442
|
+
children?: /*elided*/ any[] | undefined;
|
|
443
|
+
componentId?: number | undefined;
|
|
444
|
+
cssClass?: string | undefined;
|
|
445
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
446
|
+
events?: {
|
|
447
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
448
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
449
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
450
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
451
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
452
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
453
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
454
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
455
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
456
|
+
} | undefined;
|
|
457
|
+
directives?: {
|
|
458
|
+
[x: string]: {
|
|
459
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
460
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
461
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
462
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
463
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
464
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
465
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
466
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
467
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
468
|
+
} | undefined;
|
|
469
|
+
touch?: {
|
|
470
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
471
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
472
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
473
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
474
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
475
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
476
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
477
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
478
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
479
|
+
} | undefined;
|
|
480
|
+
} | undefined;
|
|
481
|
+
isVisible?: boolean | string | undefined;
|
|
482
|
+
dark?: boolean | undefined;
|
|
483
|
+
light?: boolean | undefined;
|
|
484
|
+
theme?: string | undefined;
|
|
485
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
486
|
+
name: string;
|
|
487
|
+
parent?: /*elided*/ any | undefined;
|
|
488
|
+
tabStop?: boolean | undefined;
|
|
489
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
490
|
+
fillHeight?: boolean | undefined;
|
|
491
|
+
}[];
|
|
386
492
|
componentId: number;
|
|
387
493
|
cssClass: string;
|
|
388
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
494
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
389
495
|
events: {
|
|
390
496
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
391
497
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -421,20 +527,20 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
421
527
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
422
528
|
} | undefined;
|
|
423
529
|
};
|
|
424
|
-
isVisible:
|
|
530
|
+
isVisible: boolean | string;
|
|
425
531
|
dark: boolean;
|
|
426
532
|
light: boolean;
|
|
427
533
|
theme?: string | undefined;
|
|
428
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
534
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
429
535
|
name: string;
|
|
430
|
-
parent?: any | undefined;
|
|
536
|
+
parent?: /*elided*/ any | undefined;
|
|
431
537
|
tabStop: boolean;
|
|
432
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
538
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
433
539
|
fillHeight: boolean;
|
|
434
540
|
} | undefined;
|
|
435
|
-
tabStop?: boolean | undefined;
|
|
541
|
+
tabStop?: boolean | undefined | undefined;
|
|
436
542
|
userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
|
|
437
|
-
fillHeight?: boolean | undefined;
|
|
543
|
+
fillHeight?: boolean | undefined | undefined;
|
|
438
544
|
}[];
|
|
439
545
|
getColumnWithoutConditions: (component: any) => any;
|
|
440
546
|
checkOutValues: (component: any, row: import("@zeedhi/core").IDictionary<any>, newRow: import("@zeedhi/core").IDictionary<any>) => void;
|
|
@@ -444,25 +550,25 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
444
550
|
maxWidth?: string | undefined;
|
|
445
551
|
minWidth?: string | undefined;
|
|
446
552
|
mask: string;
|
|
447
|
-
type?: "
|
|
553
|
+
type?: import("@zeedhi/common").ColumnType | undefined;
|
|
448
554
|
actionFixed: boolean;
|
|
449
555
|
fixed: boolean;
|
|
450
556
|
sortable: boolean;
|
|
451
557
|
loading: boolean;
|
|
452
558
|
componentProps: any;
|
|
453
|
-
style: import("@zeedhi/core").IDictionary
|
|
559
|
+
style: import("@zeedhi/core").IDictionary;
|
|
454
560
|
xlsType: string;
|
|
455
561
|
lookupData: any;
|
|
456
562
|
lookupDataCount: number;
|
|
457
563
|
overflow: string | number;
|
|
458
|
-
conditions: import("@zeedhi/core").IDictionary
|
|
564
|
+
conditions: import("@zeedhi/core").IDictionary;
|
|
459
565
|
helperText: string;
|
|
460
566
|
storeData: boolean;
|
|
461
567
|
setViewGetWidth: (viewGetWidth: () => number) => void;
|
|
462
|
-
setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary
|
|
568
|
+
setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary) => void;
|
|
463
569
|
getWidth: () => number;
|
|
464
|
-
formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary
|
|
465
|
-
formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary
|
|
570
|
+
formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary) => any;
|
|
571
|
+
formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary) => any;
|
|
466
572
|
getLookupData: (lookupColumn: string, value: any) => any;
|
|
467
573
|
initialize: () => void;
|
|
468
574
|
clearLookupData: () => void;
|
|
@@ -514,14 +620,67 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
514
620
|
theme?: string | undefined;
|
|
515
621
|
fillHeight: boolean;
|
|
516
622
|
parent?: {
|
|
517
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
518
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
623
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
624
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
519
625
|
allowDuplicate: boolean;
|
|
520
626
|
autofocus: boolean;
|
|
521
|
-
children:
|
|
627
|
+
children: {
|
|
628
|
+
[x: string]: any;
|
|
629
|
+
allowDuplicate?: boolean | undefined;
|
|
630
|
+
autofocus?: boolean | undefined;
|
|
631
|
+
children?: /*elided*/ any[] | undefined;
|
|
632
|
+
componentId?: number | undefined;
|
|
633
|
+
cssClass?: string | undefined;
|
|
634
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
635
|
+
events?: {
|
|
636
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
637
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
638
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
639
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
640
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
641
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
642
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
643
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
644
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
645
|
+
} | undefined;
|
|
646
|
+
directives?: {
|
|
647
|
+
[x: string]: {
|
|
648
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
649
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
650
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
651
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
652
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
653
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
654
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
655
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
656
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
657
|
+
} | undefined;
|
|
658
|
+
touch?: {
|
|
659
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
660
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
661
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
662
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
663
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
664
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
665
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
666
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
667
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
668
|
+
} | undefined;
|
|
669
|
+
} | undefined;
|
|
670
|
+
isVisible?: boolean | string | undefined;
|
|
671
|
+
dark?: boolean | undefined;
|
|
672
|
+
light?: boolean | undefined;
|
|
673
|
+
theme?: string | undefined;
|
|
674
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
675
|
+
name: string;
|
|
676
|
+
parent?: /*elided*/ any | undefined;
|
|
677
|
+
tabStop?: boolean | undefined;
|
|
678
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
679
|
+
fillHeight?: boolean | undefined;
|
|
680
|
+
}[];
|
|
522
681
|
componentId: number;
|
|
523
682
|
cssClass: string;
|
|
524
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
683
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
525
684
|
events: {
|
|
526
685
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
527
686
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -557,19 +716,19 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
557
716
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
558
717
|
} | undefined;
|
|
559
718
|
};
|
|
560
|
-
isVisible:
|
|
719
|
+
isVisible: boolean | string;
|
|
561
720
|
dark: boolean;
|
|
562
721
|
light: boolean;
|
|
563
722
|
theme?: string | undefined;
|
|
564
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
723
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
565
724
|
name: string;
|
|
566
|
-
parent?: any | undefined;
|
|
725
|
+
parent?: /*elided*/ any | undefined;
|
|
567
726
|
tabStop: boolean;
|
|
568
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
727
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
569
728
|
fillHeight: boolean;
|
|
570
729
|
} | undefined;
|
|
571
730
|
componentId: number;
|
|
572
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
731
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
573
732
|
isFocused: boolean;
|
|
574
733
|
tabStop: boolean;
|
|
575
734
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -578,35 +737,35 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
578
737
|
callEvent: (eventName: string, args: any) => boolean;
|
|
579
738
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
580
739
|
removeChild: (name: string) => void;
|
|
581
|
-
getChildInstance: <
|
|
582
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
740
|
+
getChildInstance: <T>(name: string) => T;
|
|
741
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
583
742
|
onCreated: () => void;
|
|
584
743
|
onBeforeMount: () => void;
|
|
585
744
|
onMounted: (element: any) => void;
|
|
586
745
|
onDestroyed: () => void;
|
|
587
|
-
click: (event?: Event
|
|
746
|
+
click: (event?: Event, element?: any) => void;
|
|
588
747
|
focus: (event: Event, element: any) => void;
|
|
589
748
|
blur: (event: Event, element: any) => void;
|
|
590
|
-
mouseenter: (event?: Event
|
|
591
|
-
mouseleave: (event?: Event
|
|
592
|
-
mouseout: (event?: Event
|
|
593
|
-
mouseover: (event?: Event
|
|
749
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
750
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
751
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
752
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
594
753
|
} | null;
|
|
595
754
|
dense: boolean;
|
|
596
755
|
disableSelection?: ((args: {
|
|
597
756
|
row: import("@zeedhi/core").IDictionary<any>;
|
|
598
|
-
component: import("@zeedhi/common").IGrid
|
|
757
|
+
component: import("@zeedhi/common").IGrid;
|
|
599
758
|
}) => boolean) | undefined;
|
|
600
759
|
dragColumns: boolean;
|
|
601
760
|
errorSlot: {
|
|
602
761
|
[x: string]: any;
|
|
603
|
-
children?: any[] | undefined;
|
|
762
|
+
children?: /*elided*/ any[] | undefined;
|
|
604
763
|
component: string;
|
|
605
764
|
allowDuplicate?: boolean | undefined;
|
|
606
765
|
autofocus?: boolean | undefined;
|
|
607
766
|
componentId?: number | undefined;
|
|
608
767
|
cssClass?: string | undefined;
|
|
609
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
768
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
610
769
|
events?: {
|
|
611
770
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
612
771
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -642,21 +801,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
642
801
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
643
802
|
} | undefined;
|
|
644
803
|
} | undefined;
|
|
645
|
-
isVisible?:
|
|
804
|
+
isVisible?: boolean | string | undefined;
|
|
646
805
|
dark?: boolean | undefined;
|
|
647
806
|
light?: boolean | undefined;
|
|
648
807
|
theme?: string | undefined;
|
|
649
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
808
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
650
809
|
name: string;
|
|
651
810
|
parent?: {
|
|
652
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
653
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
811
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
812
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
654
813
|
allowDuplicate: boolean;
|
|
655
814
|
autofocus: boolean;
|
|
656
|
-
children:
|
|
815
|
+
children: {
|
|
816
|
+
[x: string]: any;
|
|
817
|
+
allowDuplicate?: boolean | undefined;
|
|
818
|
+
autofocus?: boolean | undefined;
|
|
819
|
+
children?: /*elided*/ any[] | undefined;
|
|
820
|
+
componentId?: number | undefined;
|
|
821
|
+
cssClass?: string | undefined;
|
|
822
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
823
|
+
events?: {
|
|
824
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
825
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
826
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
827
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
828
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
829
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
830
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
831
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
832
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
833
|
+
} | undefined;
|
|
834
|
+
directives?: {
|
|
835
|
+
[x: string]: {
|
|
836
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
837
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
838
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
839
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
840
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
841
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
842
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
843
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
844
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
845
|
+
} | undefined;
|
|
846
|
+
touch?: {
|
|
847
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
848
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
849
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
850
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
851
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
852
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
853
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
854
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
855
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
856
|
+
} | undefined;
|
|
857
|
+
} | undefined;
|
|
858
|
+
isVisible?: boolean | string | undefined;
|
|
859
|
+
dark?: boolean | undefined;
|
|
860
|
+
light?: boolean | undefined;
|
|
861
|
+
theme?: string | undefined;
|
|
862
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
863
|
+
name: string;
|
|
864
|
+
parent?: /*elided*/ any | undefined;
|
|
865
|
+
tabStop?: boolean | undefined;
|
|
866
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
867
|
+
fillHeight?: boolean | undefined;
|
|
868
|
+
}[];
|
|
657
869
|
componentId: number;
|
|
658
870
|
cssClass: string;
|
|
659
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
871
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
660
872
|
events: {
|
|
661
873
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
662
874
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -692,30 +904,30 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
692
904
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
693
905
|
} | undefined;
|
|
694
906
|
};
|
|
695
|
-
isVisible:
|
|
907
|
+
isVisible: boolean | string;
|
|
696
908
|
dark: boolean;
|
|
697
909
|
light: boolean;
|
|
698
910
|
theme?: string | undefined;
|
|
699
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
911
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
700
912
|
name: string;
|
|
701
|
-
parent?: any | undefined;
|
|
913
|
+
parent?: /*elided*/ any | undefined;
|
|
702
914
|
tabStop: boolean;
|
|
703
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
915
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
704
916
|
fillHeight: boolean;
|
|
705
917
|
} | undefined;
|
|
706
918
|
tabStop?: boolean | undefined;
|
|
707
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
919
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
708
920
|
fillHeight?: boolean | undefined;
|
|
709
921
|
}[];
|
|
710
922
|
events: {
|
|
711
923
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined)[] | undefined;
|
|
712
|
-
cellClick?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent
|
|
713
|
-
rowClick?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent
|
|
714
|
-
selected?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent
|
|
715
|
-
selectedAll?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent
|
|
716
|
-
unselected?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent
|
|
717
|
-
unselectedAll?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent
|
|
718
|
-
changeLayout?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent
|
|
924
|
+
cellClick?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined;
|
|
925
|
+
rowClick?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined;
|
|
926
|
+
selected?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined;
|
|
927
|
+
selectedAll?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined;
|
|
928
|
+
unselected?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined;
|
|
929
|
+
unselectedAll?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined;
|
|
930
|
+
changeLayout?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent> | undefined;
|
|
719
931
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent>> | undefined;
|
|
720
932
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent>> | undefined;
|
|
721
933
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any> | import("@zeedhi/common").IGridEvent>> | undefined;
|
|
@@ -727,13 +939,13 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
727
939
|
};
|
|
728
940
|
footerSlot: {
|
|
729
941
|
[x: string]: any;
|
|
730
|
-
children?: any[] | undefined;
|
|
942
|
+
children?: /*elided*/ any[] | undefined;
|
|
731
943
|
component: string;
|
|
732
944
|
allowDuplicate?: boolean | undefined;
|
|
733
945
|
autofocus?: boolean | undefined;
|
|
734
946
|
componentId?: number | undefined;
|
|
735
947
|
cssClass?: string | undefined;
|
|
736
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
948
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
737
949
|
events?: {
|
|
738
950
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
739
951
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -769,21 +981,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
769
981
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
770
982
|
} | undefined;
|
|
771
983
|
} | undefined;
|
|
772
|
-
isVisible?:
|
|
984
|
+
isVisible?: boolean | string | undefined;
|
|
773
985
|
dark?: boolean | undefined;
|
|
774
986
|
light?: boolean | undefined;
|
|
775
987
|
theme?: string | undefined;
|
|
776
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
988
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
777
989
|
name: string;
|
|
778
990
|
parent?: {
|
|
779
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
780
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
991
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
992
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
781
993
|
allowDuplicate: boolean;
|
|
782
994
|
autofocus: boolean;
|
|
783
|
-
children:
|
|
995
|
+
children: {
|
|
996
|
+
[x: string]: any;
|
|
997
|
+
allowDuplicate?: boolean | undefined;
|
|
998
|
+
autofocus?: boolean | undefined;
|
|
999
|
+
children?: /*elided*/ any[] | undefined;
|
|
1000
|
+
componentId?: number | undefined;
|
|
1001
|
+
cssClass?: string | undefined;
|
|
1002
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1003
|
+
events?: {
|
|
1004
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1005
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1006
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1007
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1008
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1009
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1010
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1011
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1012
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1013
|
+
} | undefined;
|
|
1014
|
+
directives?: {
|
|
1015
|
+
[x: string]: {
|
|
1016
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1017
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1018
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1019
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1020
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1021
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1022
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1023
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1024
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1025
|
+
} | undefined;
|
|
1026
|
+
touch?: {
|
|
1027
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1028
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1029
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1030
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1031
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1032
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1033
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1034
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1035
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1036
|
+
} | undefined;
|
|
1037
|
+
} | undefined;
|
|
1038
|
+
isVisible?: boolean | string | undefined;
|
|
1039
|
+
dark?: boolean | undefined;
|
|
1040
|
+
light?: boolean | undefined;
|
|
1041
|
+
theme?: string | undefined;
|
|
1042
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1043
|
+
name: string;
|
|
1044
|
+
parent?: /*elided*/ any | undefined;
|
|
1045
|
+
tabStop?: boolean | undefined;
|
|
1046
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1047
|
+
fillHeight?: boolean | undefined;
|
|
1048
|
+
}[];
|
|
784
1049
|
componentId: number;
|
|
785
1050
|
cssClass: string;
|
|
786
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1051
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
787
1052
|
events: {
|
|
788
1053
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
789
1054
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -819,38 +1084,38 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
819
1084
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
820
1085
|
} | undefined;
|
|
821
1086
|
};
|
|
822
|
-
isVisible:
|
|
1087
|
+
isVisible: boolean | string;
|
|
823
1088
|
dark: boolean;
|
|
824
1089
|
light: boolean;
|
|
825
1090
|
theme?: string | undefined;
|
|
826
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1091
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
827
1092
|
name: string;
|
|
828
|
-
parent?: any | undefined;
|
|
1093
|
+
parent?: /*elided*/ any | undefined;
|
|
829
1094
|
tabStop: boolean;
|
|
830
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1095
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
831
1096
|
fillHeight: boolean;
|
|
832
1097
|
} | undefined;
|
|
833
1098
|
tabStop?: boolean | undefined;
|
|
834
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1099
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
835
1100
|
fillHeight?: boolean | undefined;
|
|
836
1101
|
}[];
|
|
837
1102
|
headerBackground: string;
|
|
838
1103
|
headerCellTextColor: string;
|
|
839
|
-
height:
|
|
1104
|
+
height: number | string;
|
|
840
1105
|
loadingText: string;
|
|
841
|
-
maxHeight:
|
|
842
|
-
maxWidth:
|
|
843
|
-
minHeight:
|
|
844
|
-
minWidth:
|
|
1106
|
+
maxHeight: number | string;
|
|
1107
|
+
maxWidth: number | string;
|
|
1108
|
+
minHeight: number | string;
|
|
1109
|
+
minWidth: number | string;
|
|
845
1110
|
noDataSlot: {
|
|
846
1111
|
[x: string]: any;
|
|
847
|
-
children?: any[] | undefined;
|
|
1112
|
+
children?: /*elided*/ any[] | undefined;
|
|
848
1113
|
component: string;
|
|
849
1114
|
allowDuplicate?: boolean | undefined;
|
|
850
1115
|
autofocus?: boolean | undefined;
|
|
851
1116
|
componentId?: number | undefined;
|
|
852
1117
|
cssClass?: string | undefined;
|
|
853
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1118
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
854
1119
|
events?: {
|
|
855
1120
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
856
1121
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -886,21 +1151,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
886
1151
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
887
1152
|
} | undefined;
|
|
888
1153
|
} | undefined;
|
|
889
|
-
isVisible?:
|
|
1154
|
+
isVisible?: boolean | string | undefined;
|
|
890
1155
|
dark?: boolean | undefined;
|
|
891
1156
|
light?: boolean | undefined;
|
|
892
1157
|
theme?: string | undefined;
|
|
893
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1158
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
894
1159
|
name: string;
|
|
895
1160
|
parent?: {
|
|
896
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
897
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1161
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1162
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
898
1163
|
allowDuplicate: boolean;
|
|
899
1164
|
autofocus: boolean;
|
|
900
|
-
children:
|
|
1165
|
+
children: {
|
|
1166
|
+
[x: string]: any;
|
|
1167
|
+
allowDuplicate?: boolean | undefined;
|
|
1168
|
+
autofocus?: boolean | undefined;
|
|
1169
|
+
children?: /*elided*/ any[] | undefined;
|
|
1170
|
+
componentId?: number | undefined;
|
|
1171
|
+
cssClass?: string | undefined;
|
|
1172
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1173
|
+
events?: {
|
|
1174
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1175
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1176
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1177
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1178
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1179
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1180
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1181
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1182
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1183
|
+
} | undefined;
|
|
1184
|
+
directives?: {
|
|
1185
|
+
[x: string]: {
|
|
1186
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1187
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1188
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1189
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1190
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1191
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1192
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1193
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1194
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1195
|
+
} | undefined;
|
|
1196
|
+
touch?: {
|
|
1197
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1198
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1199
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1200
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1201
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1202
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1203
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1204
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1205
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1206
|
+
} | undefined;
|
|
1207
|
+
} | undefined;
|
|
1208
|
+
isVisible?: boolean | string | undefined;
|
|
1209
|
+
dark?: boolean | undefined;
|
|
1210
|
+
light?: boolean | undefined;
|
|
1211
|
+
theme?: string | undefined;
|
|
1212
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1213
|
+
name: string;
|
|
1214
|
+
parent?: /*elided*/ any | undefined;
|
|
1215
|
+
tabStop?: boolean | undefined;
|
|
1216
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1217
|
+
fillHeight?: boolean | undefined;
|
|
1218
|
+
}[];
|
|
901
1219
|
componentId: number;
|
|
902
1220
|
cssClass: string;
|
|
903
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1221
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
904
1222
|
events: {
|
|
905
1223
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
906
1224
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -936,31 +1254,31 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
936
1254
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
937
1255
|
} | undefined;
|
|
938
1256
|
};
|
|
939
|
-
isVisible:
|
|
1257
|
+
isVisible: boolean | string;
|
|
940
1258
|
dark: boolean;
|
|
941
1259
|
light: boolean;
|
|
942
1260
|
theme?: string | undefined;
|
|
943
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1261
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
944
1262
|
name: string;
|
|
945
|
-
parent?: any | undefined;
|
|
1263
|
+
parent?: /*elided*/ any | undefined;
|
|
946
1264
|
tabStop: boolean;
|
|
947
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1265
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
948
1266
|
fillHeight: boolean;
|
|
949
1267
|
} | undefined;
|
|
950
1268
|
tabStop?: boolean | undefined;
|
|
951
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1269
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
952
1270
|
fillHeight?: boolean | undefined;
|
|
953
1271
|
}[];
|
|
954
1272
|
noDataText: string;
|
|
955
1273
|
noResultSlot: {
|
|
956
1274
|
[x: string]: any;
|
|
957
|
-
children?: any[] | undefined;
|
|
1275
|
+
children?: /*elided*/ any[] | undefined;
|
|
958
1276
|
component: string;
|
|
959
1277
|
allowDuplicate?: boolean | undefined;
|
|
960
1278
|
autofocus?: boolean | undefined;
|
|
961
1279
|
componentId?: number | undefined;
|
|
962
1280
|
cssClass?: string | undefined;
|
|
963
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1281
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
964
1282
|
events?: {
|
|
965
1283
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
966
1284
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -996,21 +1314,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
996
1314
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
997
1315
|
} | undefined;
|
|
998
1316
|
} | undefined;
|
|
999
|
-
isVisible?:
|
|
1317
|
+
isVisible?: boolean | string | undefined;
|
|
1000
1318
|
dark?: boolean | undefined;
|
|
1001
1319
|
light?: boolean | undefined;
|
|
1002
1320
|
theme?: string | undefined;
|
|
1003
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1321
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1004
1322
|
name: string;
|
|
1005
1323
|
parent?: {
|
|
1006
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1007
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1324
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1325
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1008
1326
|
allowDuplicate: boolean;
|
|
1009
1327
|
autofocus: boolean;
|
|
1010
|
-
children:
|
|
1328
|
+
children: {
|
|
1329
|
+
[x: string]: any;
|
|
1330
|
+
allowDuplicate?: boolean | undefined;
|
|
1331
|
+
autofocus?: boolean | undefined;
|
|
1332
|
+
children?: /*elided*/ any[] | undefined;
|
|
1333
|
+
componentId?: number | undefined;
|
|
1334
|
+
cssClass?: string | undefined;
|
|
1335
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1336
|
+
events?: {
|
|
1337
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1338
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1339
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1340
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1341
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1342
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1343
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1344
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1345
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1346
|
+
} | undefined;
|
|
1347
|
+
directives?: {
|
|
1348
|
+
[x: string]: {
|
|
1349
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1350
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1351
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1352
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1353
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1354
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1355
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1356
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1357
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1358
|
+
} | undefined;
|
|
1359
|
+
touch?: {
|
|
1360
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1361
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1362
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1363
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1364
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1365
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1366
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1367
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1368
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1369
|
+
} | undefined;
|
|
1370
|
+
} | undefined;
|
|
1371
|
+
isVisible?: boolean | string | undefined;
|
|
1372
|
+
dark?: boolean | undefined;
|
|
1373
|
+
light?: boolean | undefined;
|
|
1374
|
+
theme?: string | undefined;
|
|
1375
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1376
|
+
name: string;
|
|
1377
|
+
parent?: /*elided*/ any | undefined;
|
|
1378
|
+
tabStop?: boolean | undefined;
|
|
1379
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1380
|
+
fillHeight?: boolean | undefined;
|
|
1381
|
+
}[];
|
|
1011
1382
|
componentId: number;
|
|
1012
1383
|
cssClass: string;
|
|
1013
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1384
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1014
1385
|
events: {
|
|
1015
1386
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1016
1387
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1046,27 +1417,27 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1046
1417
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1047
1418
|
} | undefined;
|
|
1048
1419
|
};
|
|
1049
|
-
isVisible:
|
|
1420
|
+
isVisible: boolean | string;
|
|
1050
1421
|
dark: boolean;
|
|
1051
1422
|
light: boolean;
|
|
1052
1423
|
theme?: string | undefined;
|
|
1053
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1424
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1054
1425
|
name: string;
|
|
1055
|
-
parent?: any | undefined;
|
|
1426
|
+
parent?: /*elided*/ any | undefined;
|
|
1056
1427
|
tabStop: boolean;
|
|
1057
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1428
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1058
1429
|
fillHeight: boolean;
|
|
1059
1430
|
} | undefined;
|
|
1060
1431
|
tabStop?: boolean | undefined;
|
|
1061
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1432
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1062
1433
|
fillHeight?: boolean | undefined;
|
|
1063
1434
|
}[];
|
|
1064
1435
|
noResultsText: string;
|
|
1065
1436
|
resizeColumns: boolean;
|
|
1066
|
-
rowStyleConditions?: ((row: import("@zeedhi/core").IDictionary
|
|
1437
|
+
rowStyleConditions?: ((row: import("@zeedhi/core").IDictionary) => import("@zeedhi/core").IDictionary) | undefined;
|
|
1067
1438
|
selectable: boolean;
|
|
1068
1439
|
selectAllPages: boolean;
|
|
1069
|
-
selectedRows: import("@zeedhi/core").IDictionary
|
|
1440
|
+
selectedRows: import("@zeedhi/core").IDictionary[];
|
|
1070
1441
|
selectionState: {
|
|
1071
1442
|
allSelected: boolean;
|
|
1072
1443
|
except: import("@zeedhi/core").IDictionary<any>[];
|
|
@@ -1076,13 +1447,13 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1076
1447
|
showSelectAll: boolean;
|
|
1077
1448
|
toolbarSlot: {
|
|
1078
1449
|
[x: string]: any;
|
|
1079
|
-
children?: any[] | undefined;
|
|
1450
|
+
children?: /*elided*/ any[] | undefined;
|
|
1080
1451
|
component: string;
|
|
1081
1452
|
allowDuplicate?: boolean | undefined;
|
|
1082
1453
|
autofocus?: boolean | undefined;
|
|
1083
1454
|
componentId?: number | undefined;
|
|
1084
1455
|
cssClass?: string | undefined;
|
|
1085
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1456
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1086
1457
|
events?: {
|
|
1087
1458
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1088
1459
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1118,21 +1489,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1118
1489
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1119
1490
|
} | undefined;
|
|
1120
1491
|
} | undefined;
|
|
1121
|
-
isVisible?:
|
|
1492
|
+
isVisible?: boolean | string | undefined;
|
|
1122
1493
|
dark?: boolean | undefined;
|
|
1123
1494
|
light?: boolean | undefined;
|
|
1124
1495
|
theme?: string | undefined;
|
|
1125
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1496
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1126
1497
|
name: string;
|
|
1127
1498
|
parent?: {
|
|
1128
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1129
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1499
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1500
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1130
1501
|
allowDuplicate: boolean;
|
|
1131
1502
|
autofocus: boolean;
|
|
1132
|
-
children:
|
|
1503
|
+
children: {
|
|
1504
|
+
[x: string]: any;
|
|
1505
|
+
allowDuplicate?: boolean | undefined;
|
|
1506
|
+
autofocus?: boolean | undefined;
|
|
1507
|
+
children?: /*elided*/ any[] | undefined;
|
|
1508
|
+
componentId?: number | undefined;
|
|
1509
|
+
cssClass?: string | undefined;
|
|
1510
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1511
|
+
events?: {
|
|
1512
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1513
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1514
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1515
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1516
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1517
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1518
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1519
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1520
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1521
|
+
} | undefined;
|
|
1522
|
+
directives?: {
|
|
1523
|
+
[x: string]: {
|
|
1524
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1525
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1526
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1527
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1528
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1529
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1530
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1531
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1532
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1533
|
+
} | undefined;
|
|
1534
|
+
touch?: {
|
|
1535
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1536
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1537
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1538
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1539
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1540
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1541
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1542
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1543
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1544
|
+
} | undefined;
|
|
1545
|
+
} | undefined;
|
|
1546
|
+
isVisible?: boolean | string | undefined;
|
|
1547
|
+
dark?: boolean | undefined;
|
|
1548
|
+
light?: boolean | undefined;
|
|
1549
|
+
theme?: string | undefined;
|
|
1550
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1551
|
+
name: string;
|
|
1552
|
+
parent?: /*elided*/ any | undefined;
|
|
1553
|
+
tabStop?: boolean | undefined;
|
|
1554
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1555
|
+
fillHeight?: boolean | undefined;
|
|
1556
|
+
}[];
|
|
1133
1557
|
componentId: number;
|
|
1134
1558
|
cssClass: string;
|
|
1135
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1559
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1136
1560
|
events: {
|
|
1137
1561
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1138
1562
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1168,40 +1592,40 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1168
1592
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1169
1593
|
} | undefined;
|
|
1170
1594
|
};
|
|
1171
|
-
isVisible:
|
|
1595
|
+
isVisible: boolean | string;
|
|
1172
1596
|
dark: boolean;
|
|
1173
1597
|
light: boolean;
|
|
1174
1598
|
theme?: string | undefined;
|
|
1175
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1599
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1176
1600
|
name: string;
|
|
1177
|
-
parent?: any | undefined;
|
|
1601
|
+
parent?: /*elided*/ any | undefined;
|
|
1178
1602
|
tabStop: boolean;
|
|
1179
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1603
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1180
1604
|
fillHeight: boolean;
|
|
1181
1605
|
} | undefined;
|
|
1182
1606
|
tabStop?: boolean | undefined;
|
|
1183
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1607
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1184
1608
|
fillHeight?: boolean | undefined;
|
|
1185
1609
|
}[];
|
|
1186
|
-
width:
|
|
1610
|
+
width: number | string;
|
|
1187
1611
|
getConditionalProps: ({ row, column }: {
|
|
1188
|
-
row: import("@zeedhi/core").IDictionary
|
|
1612
|
+
row: import("@zeedhi/core").IDictionary;
|
|
1189
1613
|
column: import("@zeedhi/common").GridColumn;
|
|
1190
1614
|
}) => Partial<import("@zeedhi/common").IComponentRender>;
|
|
1191
1615
|
columns: {
|
|
1192
1616
|
children: {
|
|
1193
1617
|
[x: string]: any;
|
|
1194
|
-
conditions?: import("@zeedhi/core").IDictionary
|
|
1618
|
+
conditions?: import("@zeedhi/core").IDictionary | undefined;
|
|
1195
1619
|
allowDuplicate?: boolean | undefined;
|
|
1196
1620
|
autofocus?: boolean | undefined;
|
|
1197
1621
|
children?: {
|
|
1198
1622
|
[x: string]: any;
|
|
1199
1623
|
allowDuplicate?: boolean | undefined;
|
|
1200
1624
|
autofocus?: boolean | undefined;
|
|
1201
|
-
children?: any[] | undefined;
|
|
1625
|
+
children?: /*elided*/ any[] | undefined;
|
|
1202
1626
|
componentId?: number | undefined;
|
|
1203
1627
|
cssClass?: string | undefined;
|
|
1204
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1628
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1205
1629
|
events?: {
|
|
1206
1630
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1207
1631
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1237,21 +1661,21 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1237
1661
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1238
1662
|
} | undefined;
|
|
1239
1663
|
} | undefined;
|
|
1240
|
-
isVisible?:
|
|
1664
|
+
isVisible?: boolean | string | undefined;
|
|
1241
1665
|
dark?: boolean | undefined;
|
|
1242
1666
|
light?: boolean | undefined;
|
|
1243
1667
|
theme?: string | undefined;
|
|
1244
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1668
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1245
1669
|
name: string;
|
|
1246
1670
|
parent?: {
|
|
1247
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1248
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1671
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1672
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1249
1673
|
allowDuplicate: boolean;
|
|
1250
1674
|
autofocus: boolean;
|
|
1251
|
-
children: any[];
|
|
1675
|
+
children: /*elided*/ any[];
|
|
1252
1676
|
componentId: number;
|
|
1253
1677
|
cssClass: string;
|
|
1254
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1678
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1255
1679
|
events: {
|
|
1256
1680
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1257
1681
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1287,24 +1711,24 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1287
1711
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1288
1712
|
} | undefined;
|
|
1289
1713
|
};
|
|
1290
|
-
isVisible:
|
|
1714
|
+
isVisible: boolean | string;
|
|
1291
1715
|
dark: boolean;
|
|
1292
1716
|
light: boolean;
|
|
1293
1717
|
theme?: string | undefined;
|
|
1294
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1718
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1295
1719
|
name: string;
|
|
1296
|
-
parent?: any | undefined;
|
|
1720
|
+
parent?: /*elided*/ any | undefined;
|
|
1297
1721
|
tabStop: boolean;
|
|
1298
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1722
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1299
1723
|
fillHeight: boolean;
|
|
1300
1724
|
} | undefined;
|
|
1301
1725
|
tabStop?: boolean | undefined;
|
|
1302
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1726
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1303
1727
|
fillHeight?: boolean | undefined;
|
|
1304
1728
|
}[] | undefined;
|
|
1305
1729
|
componentId?: number | undefined;
|
|
1306
1730
|
cssClass?: string | undefined;
|
|
1307
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1731
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1308
1732
|
events?: {
|
|
1309
1733
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1310
1734
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1340,21 +1764,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1340
1764
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1341
1765
|
} | undefined;
|
|
1342
1766
|
} | undefined;
|
|
1343
|
-
isVisible?:
|
|
1767
|
+
isVisible?: boolean | string | undefined;
|
|
1344
1768
|
dark?: boolean | undefined;
|
|
1345
1769
|
light?: boolean | undefined;
|
|
1346
1770
|
theme?: string | undefined;
|
|
1347
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1771
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1348
1772
|
name: string;
|
|
1349
1773
|
parent?: {
|
|
1350
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1351
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1774
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1775
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1352
1776
|
allowDuplicate: boolean;
|
|
1353
1777
|
autofocus: boolean;
|
|
1354
|
-
children:
|
|
1778
|
+
children: {
|
|
1779
|
+
[x: string]: any;
|
|
1780
|
+
allowDuplicate?: boolean | undefined;
|
|
1781
|
+
autofocus?: boolean | undefined;
|
|
1782
|
+
children?: /*elided*/ any[] | undefined;
|
|
1783
|
+
componentId?: number | undefined;
|
|
1784
|
+
cssClass?: string | undefined;
|
|
1785
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1786
|
+
events?: {
|
|
1787
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1788
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1789
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1790
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1791
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1792
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1793
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1794
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1795
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1796
|
+
} | undefined;
|
|
1797
|
+
directives?: {
|
|
1798
|
+
[x: string]: {
|
|
1799
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1800
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1801
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1802
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1803
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1804
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1805
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1806
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1807
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1808
|
+
} | undefined;
|
|
1809
|
+
touch?: {
|
|
1810
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1811
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1812
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1813
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1814
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1815
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1816
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1817
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1818
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1819
|
+
} | undefined;
|
|
1820
|
+
} | undefined;
|
|
1821
|
+
isVisible?: boolean | string | undefined;
|
|
1822
|
+
dark?: boolean | undefined;
|
|
1823
|
+
light?: boolean | undefined;
|
|
1824
|
+
theme?: string | undefined;
|
|
1825
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1826
|
+
name: string;
|
|
1827
|
+
parent?: /*elided*/ any | undefined;
|
|
1828
|
+
tabStop?: boolean | undefined;
|
|
1829
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1830
|
+
fillHeight?: boolean | undefined;
|
|
1831
|
+
}[];
|
|
1355
1832
|
componentId: number;
|
|
1356
1833
|
cssClass: string;
|
|
1357
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1834
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1358
1835
|
events: {
|
|
1359
1836
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1360
1837
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1390,33 +1867,33 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1390
1867
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1391
1868
|
} | undefined;
|
|
1392
1869
|
};
|
|
1393
|
-
isVisible:
|
|
1870
|
+
isVisible: boolean | string;
|
|
1394
1871
|
dark: boolean;
|
|
1395
1872
|
light: boolean;
|
|
1396
1873
|
theme?: string | undefined;
|
|
1397
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1874
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1398
1875
|
name: string;
|
|
1399
|
-
parent?: any | undefined;
|
|
1876
|
+
parent?: /*elided*/ any | undefined;
|
|
1400
1877
|
tabStop: boolean;
|
|
1401
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1878
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1402
1879
|
fillHeight: boolean;
|
|
1403
1880
|
} | undefined;
|
|
1404
1881
|
tabStop?: boolean | undefined;
|
|
1405
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1882
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1406
1883
|
fillHeight?: boolean | undefined;
|
|
1407
1884
|
}[];
|
|
1408
1885
|
readonly childrenProps: {
|
|
1409
1886
|
[x: string]: any;
|
|
1410
|
-
allowDuplicate?: boolean | undefined;
|
|
1411
|
-
autofocus?: boolean | undefined;
|
|
1887
|
+
allowDuplicate?: boolean | undefined | undefined;
|
|
1888
|
+
autofocus?: boolean | undefined | undefined;
|
|
1412
1889
|
children?: {
|
|
1413
1890
|
[x: string]: any;
|
|
1414
1891
|
allowDuplicate?: boolean | undefined;
|
|
1415
1892
|
autofocus?: boolean | undefined;
|
|
1416
|
-
children?: any[] | undefined;
|
|
1893
|
+
children?: /*elided*/ any[] | undefined;
|
|
1417
1894
|
componentId?: number | undefined;
|
|
1418
1895
|
cssClass?: string | undefined;
|
|
1419
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1896
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1420
1897
|
events?: {
|
|
1421
1898
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1422
1899
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1452,21 +1929,21 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1452
1929
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1453
1930
|
} | undefined;
|
|
1454
1931
|
} | undefined;
|
|
1455
|
-
isVisible?:
|
|
1932
|
+
isVisible?: boolean | string | undefined;
|
|
1456
1933
|
dark?: boolean | undefined;
|
|
1457
1934
|
light?: boolean | undefined;
|
|
1458
1935
|
theme?: string | undefined;
|
|
1459
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1936
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1460
1937
|
name: string;
|
|
1461
1938
|
parent?: {
|
|
1462
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1463
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1939
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1940
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1464
1941
|
allowDuplicate: boolean;
|
|
1465
1942
|
autofocus: boolean;
|
|
1466
|
-
children: any[];
|
|
1943
|
+
children: /*elided*/ any[];
|
|
1467
1944
|
componentId: number;
|
|
1468
1945
|
cssClass: string;
|
|
1469
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1946
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1470
1947
|
events: {
|
|
1471
1948
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1472
1949
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1502,23 +1979,23 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1502
1979
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1503
1980
|
} | undefined;
|
|
1504
1981
|
};
|
|
1505
|
-
isVisible:
|
|
1982
|
+
isVisible: boolean | string;
|
|
1506
1983
|
dark: boolean;
|
|
1507
1984
|
light: boolean;
|
|
1508
1985
|
theme?: string | undefined;
|
|
1509
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1986
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1510
1987
|
name: string;
|
|
1511
|
-
parent?: any | undefined;
|
|
1988
|
+
parent?: /*elided*/ any | undefined;
|
|
1512
1989
|
tabStop: boolean;
|
|
1513
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1990
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1514
1991
|
fillHeight: boolean;
|
|
1515
1992
|
} | undefined;
|
|
1516
1993
|
tabStop?: boolean | undefined;
|
|
1517
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1994
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1518
1995
|
fillHeight?: boolean | undefined;
|
|
1519
1996
|
}[] | undefined;
|
|
1520
|
-
componentId?: number | undefined;
|
|
1521
|
-
cssClass?: string | undefined;
|
|
1997
|
+
componentId?: number | undefined | undefined;
|
|
1998
|
+
cssClass?: string | undefined | undefined;
|
|
1522
1999
|
cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1523
2000
|
events?: {
|
|
1524
2001
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
@@ -1555,21 +2032,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1555
2032
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1556
2033
|
} | undefined;
|
|
1557
2034
|
} | undefined;
|
|
1558
|
-
isVisible?: string | boolean | undefined;
|
|
1559
|
-
dark?: boolean | undefined;
|
|
1560
|
-
light?: boolean | undefined;
|
|
1561
|
-
theme?: string | undefined;
|
|
2035
|
+
isVisible?: string | boolean | undefined | undefined;
|
|
2036
|
+
dark?: boolean | undefined | undefined;
|
|
2037
|
+
light?: boolean | undefined | undefined;
|
|
2038
|
+
theme?: string | undefined | undefined;
|
|
1562
2039
|
keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
1563
2040
|
name: string;
|
|
1564
2041
|
parent?: {
|
|
1565
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1566
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2042
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2043
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1567
2044
|
allowDuplicate: boolean;
|
|
1568
2045
|
autofocus: boolean;
|
|
1569
|
-
children:
|
|
2046
|
+
children: {
|
|
2047
|
+
[x: string]: any;
|
|
2048
|
+
allowDuplicate?: boolean | undefined;
|
|
2049
|
+
autofocus?: boolean | undefined;
|
|
2050
|
+
children?: /*elided*/ any[] | undefined;
|
|
2051
|
+
componentId?: number | undefined;
|
|
2052
|
+
cssClass?: string | undefined;
|
|
2053
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2054
|
+
events?: {
|
|
2055
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2056
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2057
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2058
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2059
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2060
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2061
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2062
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2063
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2064
|
+
} | undefined;
|
|
2065
|
+
directives?: {
|
|
2066
|
+
[x: string]: {
|
|
2067
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2068
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2069
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2070
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2071
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2072
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2073
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2074
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2075
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2076
|
+
} | undefined;
|
|
2077
|
+
touch?: {
|
|
2078
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2079
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2080
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2081
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2082
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2083
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2084
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2085
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2086
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2087
|
+
} | undefined;
|
|
2088
|
+
} | undefined;
|
|
2089
|
+
isVisible?: boolean | string | undefined;
|
|
2090
|
+
dark?: boolean | undefined;
|
|
2091
|
+
light?: boolean | undefined;
|
|
2092
|
+
theme?: string | undefined;
|
|
2093
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2094
|
+
name: string;
|
|
2095
|
+
parent?: /*elided*/ any | undefined;
|
|
2096
|
+
tabStop?: boolean | undefined;
|
|
2097
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2098
|
+
fillHeight?: boolean | undefined;
|
|
2099
|
+
}[];
|
|
1570
2100
|
componentId: number;
|
|
1571
2101
|
cssClass: string;
|
|
1572
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2102
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1573
2103
|
events: {
|
|
1574
2104
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1575
2105
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1605,20 +2135,20 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1605
2135
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1606
2136
|
} | undefined;
|
|
1607
2137
|
};
|
|
1608
|
-
isVisible:
|
|
2138
|
+
isVisible: boolean | string;
|
|
1609
2139
|
dark: boolean;
|
|
1610
2140
|
light: boolean;
|
|
1611
2141
|
theme?: string | undefined;
|
|
1612
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2142
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1613
2143
|
name: string;
|
|
1614
|
-
parent?: any | undefined;
|
|
2144
|
+
parent?: /*elided*/ any | undefined;
|
|
1615
2145
|
tabStop: boolean;
|
|
1616
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2146
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1617
2147
|
fillHeight: boolean;
|
|
1618
2148
|
} | undefined;
|
|
1619
|
-
tabStop?: boolean | undefined;
|
|
2149
|
+
tabStop?: boolean | undefined | undefined;
|
|
1620
2150
|
userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1621
|
-
fillHeight?: boolean | undefined;
|
|
2151
|
+
fillHeight?: boolean | undefined | undefined;
|
|
1622
2152
|
}[];
|
|
1623
2153
|
getColumnWithoutConditions: (component: any) => any;
|
|
1624
2154
|
checkOutValues: (component: any, row: import("@zeedhi/core").IDictionary<any>, newRow: import("@zeedhi/core").IDictionary<any>) => void;
|
|
@@ -1628,25 +2158,25 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1628
2158
|
maxWidth?: string | undefined;
|
|
1629
2159
|
minWidth?: string | undefined;
|
|
1630
2160
|
mask: string;
|
|
1631
|
-
type?: "
|
|
2161
|
+
type?: import("@zeedhi/common").ColumnType | undefined;
|
|
1632
2162
|
actionFixed: boolean;
|
|
1633
2163
|
fixed: boolean;
|
|
1634
2164
|
sortable: boolean;
|
|
1635
2165
|
loading: boolean;
|
|
1636
2166
|
componentProps: any;
|
|
1637
|
-
style: import("@zeedhi/core").IDictionary
|
|
2167
|
+
style: import("@zeedhi/core").IDictionary;
|
|
1638
2168
|
xlsType: string;
|
|
1639
2169
|
lookupData: any;
|
|
1640
2170
|
lookupDataCount: number;
|
|
1641
2171
|
overflow: string | number;
|
|
1642
|
-
conditions: import("@zeedhi/core").IDictionary
|
|
2172
|
+
conditions: import("@zeedhi/core").IDictionary;
|
|
1643
2173
|
helperText: string;
|
|
1644
2174
|
storeData: boolean;
|
|
1645
2175
|
setViewGetWidth: (viewGetWidth: () => number) => void;
|
|
1646
|
-
setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary
|
|
2176
|
+
setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary) => void;
|
|
1647
2177
|
getWidth: () => number;
|
|
1648
|
-
formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary
|
|
1649
|
-
formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary
|
|
2178
|
+
formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary) => any;
|
|
2179
|
+
formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary) => any;
|
|
1650
2180
|
getLookupData: (lookupColumn: string, value: any) => any;
|
|
1651
2181
|
initialize: () => void;
|
|
1652
2182
|
clearLookupData: () => void;
|
|
@@ -1698,14 +2228,67 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1698
2228
|
theme?: string | undefined;
|
|
1699
2229
|
fillHeight: boolean;
|
|
1700
2230
|
parent?: {
|
|
1701
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1702
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2231
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2232
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1703
2233
|
allowDuplicate: boolean;
|
|
1704
2234
|
autofocus: boolean;
|
|
1705
|
-
children:
|
|
2235
|
+
children: {
|
|
2236
|
+
[x: string]: any;
|
|
2237
|
+
allowDuplicate?: boolean | undefined;
|
|
2238
|
+
autofocus?: boolean | undefined;
|
|
2239
|
+
children?: /*elided*/ any[] | undefined;
|
|
2240
|
+
componentId?: number | undefined;
|
|
2241
|
+
cssClass?: string | undefined;
|
|
2242
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2243
|
+
events?: {
|
|
2244
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2245
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2246
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2247
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2248
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2249
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2250
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2251
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2252
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2253
|
+
} | undefined;
|
|
2254
|
+
directives?: {
|
|
2255
|
+
[x: string]: {
|
|
2256
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2257
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2258
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2259
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2260
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2261
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2262
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2263
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2264
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2265
|
+
} | undefined;
|
|
2266
|
+
touch?: {
|
|
2267
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2268
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2269
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2270
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2271
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2272
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2273
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2274
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2275
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2276
|
+
} | undefined;
|
|
2277
|
+
} | undefined;
|
|
2278
|
+
isVisible?: boolean | string | undefined;
|
|
2279
|
+
dark?: boolean | undefined;
|
|
2280
|
+
light?: boolean | undefined;
|
|
2281
|
+
theme?: string | undefined;
|
|
2282
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2283
|
+
name: string;
|
|
2284
|
+
parent?: /*elided*/ any | undefined;
|
|
2285
|
+
tabStop?: boolean | undefined;
|
|
2286
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2287
|
+
fillHeight?: boolean | undefined;
|
|
2288
|
+
}[];
|
|
1706
2289
|
componentId: number;
|
|
1707
2290
|
cssClass: string;
|
|
1708
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2291
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1709
2292
|
events: {
|
|
1710
2293
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1711
2294
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1741,19 +2324,19 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1741
2324
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1742
2325
|
} | undefined;
|
|
1743
2326
|
};
|
|
1744
|
-
isVisible:
|
|
2327
|
+
isVisible: boolean | string;
|
|
1745
2328
|
dark: boolean;
|
|
1746
2329
|
light: boolean;
|
|
1747
2330
|
theme?: string | undefined;
|
|
1748
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2331
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1749
2332
|
name: string;
|
|
1750
|
-
parent?: any | undefined;
|
|
2333
|
+
parent?: /*elided*/ any | undefined;
|
|
1751
2334
|
tabStop: boolean;
|
|
1752
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2335
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1753
2336
|
fillHeight: boolean;
|
|
1754
2337
|
} | undefined;
|
|
1755
2338
|
componentId: number;
|
|
1756
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2339
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1757
2340
|
isFocused: boolean;
|
|
1758
2341
|
tabStop: boolean;
|
|
1759
2342
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1762,19 +2345,19 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1762
2345
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1763
2346
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1764
2347
|
removeChild: (name: string) => void;
|
|
1765
|
-
getChildInstance: <
|
|
1766
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
2348
|
+
getChildInstance: <T>(name: string) => T;
|
|
2349
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1767
2350
|
onCreated: () => void;
|
|
1768
2351
|
onBeforeMount: () => void;
|
|
1769
2352
|
onMounted: (element: any) => void;
|
|
1770
2353
|
onDestroyed: () => void;
|
|
1771
|
-
click: (event?: Event
|
|
2354
|
+
click: (event?: Event, element?: any) => void;
|
|
1772
2355
|
focus: (event: Event, element: any) => void;
|
|
1773
2356
|
blur: (event: Event, element: any) => void;
|
|
1774
|
-
mouseenter: (event?: Event
|
|
1775
|
-
mouseleave: (event?: Event
|
|
1776
|
-
mouseout: (event?: Event
|
|
1777
|
-
mouseover: (event?: Event
|
|
2357
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
2358
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
2359
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
2360
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1778
2361
|
}[];
|
|
1779
2362
|
datasource: {
|
|
1780
2363
|
data: import("@zeedhi/core").IDictionary<any>[];
|
|
@@ -1796,7 +2379,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1796
2379
|
onChangeCurrentRow?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
1797
2380
|
onChangePagination?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
1798
2381
|
};
|
|
1799
|
-
initialize: () => void |
|
|
2382
|
+
initialize: () => Promise<void> | void;
|
|
1800
2383
|
destroy: () => void;
|
|
1801
2384
|
currentRow: import("@zeedhi/core").IDictionary<any>;
|
|
1802
2385
|
limit: number;
|
|
@@ -1805,16 +2388,16 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1805
2388
|
get: () => Promise<any>;
|
|
1806
2389
|
post: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
|
|
1807
2390
|
put: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
|
|
1808
|
-
delete: (row?: import("@zeedhi/core").IDictionary<any>
|
|
2391
|
+
delete: (row?: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
|
|
1809
2392
|
updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
|
|
1810
|
-
getLoadedData: () => import("@zeedhi/core").IDictionary
|
|
2393
|
+
getLoadedData: () => import("@zeedhi/core").IDictionary[];
|
|
1811
2394
|
setSearch: (search: string) => Promise<any>;
|
|
1812
2395
|
addFilter: (column: string, value: any) => Promise<any>;
|
|
1813
2396
|
removeFilter: (column: string) => Promise<any>;
|
|
1814
2397
|
setFilter: (filter: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
|
|
1815
2398
|
clearFilter: () => Promise<any>;
|
|
1816
|
-
setLimit: (limit: number, replaceUrl?: boolean
|
|
1817
|
-
setPage: (page: number, replaceUrl?: boolean
|
|
2399
|
+
setLimit: (limit: number, replaceUrl?: boolean) => Promise<any>;
|
|
2400
|
+
setPage: (page: number, replaceUrl?: boolean) => Promise<any>;
|
|
1818
2401
|
addOrder: (column: string, value: import("@zeedhi/core").Order) => Promise<any>;
|
|
1819
2402
|
removeOrder: (column: string) => Promise<any>;
|
|
1820
2403
|
setOrder: (order: string[]) => Promise<any>;
|
|
@@ -1831,13 +2414,13 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1831
2414
|
virtualScroll: boolean;
|
|
1832
2415
|
virtualScrollCache: number;
|
|
1833
2416
|
searchVisibleOnly: boolean;
|
|
1834
|
-
changeLayout: (event?: Event
|
|
1835
|
-
setCurrentRow: (row: import("@zeedhi/core").IDictionary
|
|
2417
|
+
changeLayout: (event?: Event, element?: any) => void;
|
|
2418
|
+
setCurrentRow: (row: import("@zeedhi/core").IDictionary) => void;
|
|
1836
2419
|
setOrder: (order: string[]) => Promise<any>;
|
|
1837
2420
|
reload: () => Promise<any>;
|
|
1838
|
-
getRowKey: (row: import("@zeedhi/core").IDictionary
|
|
1839
|
-
delete: (row: import("@zeedhi/core").IDictionary
|
|
1840
|
-
getData: () => import("@zeedhi/core").IDictionary
|
|
2421
|
+
getRowKey: (row: import("@zeedhi/core").IDictionary) => string | number;
|
|
2422
|
+
delete: (row: import("@zeedhi/core").IDictionary) => Promise<any>;
|
|
2423
|
+
getData: () => import("@zeedhi/core").IDictionary[];
|
|
1841
2424
|
callEvent: (event: string, params: any) => boolean;
|
|
1842
2425
|
getCurrentRowIndex: () => number;
|
|
1843
2426
|
getPage: () => number;
|
|
@@ -1845,18 +2428,18 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1845
2428
|
getLastPage: () => number;
|
|
1846
2429
|
getColumn: (name: string) => import("@zeedhi/common").GridColumn;
|
|
1847
2430
|
createColumn: (column: import("@zeedhi/common").IColumn) => import("@zeedhi/common").GridColumn;
|
|
1848
|
-
updateData: (data: import("@zeedhi/core").IDictionary
|
|
1849
|
-
changeData: (data?: import("@zeedhi/core").IDictionary
|
|
1850
|
-
findRow: (key: string | number) => import("@zeedhi/core").IDictionary
|
|
2431
|
+
updateData: (data: import("@zeedhi/core").IDictionary[]) => Promise<any>;
|
|
2432
|
+
changeData: (data?: import("@zeedhi/core").IDictionary[]) => void;
|
|
2433
|
+
findRow: (key: string | number) => import("@zeedhi/core").IDictionary | undefined;
|
|
1851
2434
|
children: {
|
|
1852
2435
|
[x: string]: any;
|
|
1853
|
-
children?: any[] | undefined;
|
|
2436
|
+
children?: /*elided*/ any[] | undefined;
|
|
1854
2437
|
component: string;
|
|
1855
2438
|
allowDuplicate?: boolean | undefined;
|
|
1856
2439
|
autofocus?: boolean | undefined;
|
|
1857
2440
|
componentId?: number | undefined;
|
|
1858
2441
|
cssClass?: string | undefined;
|
|
1859
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2442
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1860
2443
|
events?: {
|
|
1861
2444
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1862
2445
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1892,21 +2475,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1892
2475
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1893
2476
|
} | undefined;
|
|
1894
2477
|
} | undefined;
|
|
1895
|
-
isVisible?:
|
|
2478
|
+
isVisible?: boolean | string | undefined;
|
|
1896
2479
|
dark?: boolean | undefined;
|
|
1897
2480
|
light?: boolean | undefined;
|
|
1898
2481
|
theme?: string | undefined;
|
|
1899
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2482
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1900
2483
|
name: string;
|
|
1901
2484
|
parent?: {
|
|
1902
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1903
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2485
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2486
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1904
2487
|
allowDuplicate: boolean;
|
|
1905
2488
|
autofocus: boolean;
|
|
1906
|
-
children:
|
|
2489
|
+
children: {
|
|
2490
|
+
[x: string]: any;
|
|
2491
|
+
allowDuplicate?: boolean | undefined;
|
|
2492
|
+
autofocus?: boolean | undefined;
|
|
2493
|
+
children?: /*elided*/ any[] | undefined;
|
|
2494
|
+
componentId?: number | undefined;
|
|
2495
|
+
cssClass?: string | undefined;
|
|
2496
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2497
|
+
events?: {
|
|
2498
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2499
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2500
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2501
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2502
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2503
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2504
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2505
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2506
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
directives?: {
|
|
2509
|
+
[x: string]: {
|
|
2510
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2511
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2512
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2513
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2514
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2515
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2516
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2517
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2518
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2519
|
+
} | undefined;
|
|
2520
|
+
touch?: {
|
|
2521
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2522
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2523
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2524
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2525
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2526
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2527
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2528
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2529
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2530
|
+
} | undefined;
|
|
2531
|
+
} | undefined;
|
|
2532
|
+
isVisible?: boolean | string | undefined;
|
|
2533
|
+
dark?: boolean | undefined;
|
|
2534
|
+
light?: boolean | undefined;
|
|
2535
|
+
theme?: string | undefined;
|
|
2536
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2537
|
+
name: string;
|
|
2538
|
+
parent?: /*elided*/ any | undefined;
|
|
2539
|
+
tabStop?: boolean | undefined;
|
|
2540
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2541
|
+
fillHeight?: boolean | undefined;
|
|
2542
|
+
}[];
|
|
1907
2543
|
componentId: number;
|
|
1908
2544
|
cssClass: string;
|
|
1909
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2545
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1910
2546
|
events: {
|
|
1911
2547
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1912
2548
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1942,29 +2578,29 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1942
2578
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1943
2579
|
} | undefined;
|
|
1944
2580
|
};
|
|
1945
|
-
isVisible:
|
|
2581
|
+
isVisible: boolean | string;
|
|
1946
2582
|
dark: boolean;
|
|
1947
2583
|
light: boolean;
|
|
1948
2584
|
theme?: string | undefined;
|
|
1949
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2585
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1950
2586
|
name: string;
|
|
1951
|
-
parent?: any | undefined;
|
|
2587
|
+
parent?: /*elided*/ any | undefined;
|
|
1952
2588
|
tabStop: boolean;
|
|
1953
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2589
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1954
2590
|
fillHeight: boolean;
|
|
1955
2591
|
} | undefined;
|
|
1956
2592
|
tabStop?: boolean | undefined;
|
|
1957
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2593
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1958
2594
|
fillHeight?: boolean | undefined;
|
|
1959
2595
|
}[];
|
|
1960
2596
|
component: string;
|
|
1961
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1962
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2597
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2598
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1963
2599
|
allowDuplicate: boolean;
|
|
1964
2600
|
autofocus: boolean;
|
|
1965
2601
|
componentId: number;
|
|
1966
2602
|
cssClass: string;
|
|
1967
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2603
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1968
2604
|
directives: {
|
|
1969
2605
|
[x: string]: {
|
|
1970
2606
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
@@ -1989,21 +2625,74 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
1989
2625
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1990
2626
|
} | undefined;
|
|
1991
2627
|
};
|
|
1992
|
-
isVisible:
|
|
2628
|
+
isVisible: boolean | string;
|
|
1993
2629
|
dark: boolean;
|
|
1994
2630
|
light: boolean;
|
|
1995
2631
|
theme?: string | undefined;
|
|
1996
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2632
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1997
2633
|
name: string;
|
|
1998
2634
|
parent?: {
|
|
1999
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2000
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2635
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2636
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2001
2637
|
allowDuplicate: boolean;
|
|
2002
2638
|
autofocus: boolean;
|
|
2003
|
-
children:
|
|
2639
|
+
children: {
|
|
2640
|
+
[x: string]: any;
|
|
2641
|
+
allowDuplicate?: boolean | undefined;
|
|
2642
|
+
autofocus?: boolean | undefined;
|
|
2643
|
+
children?: /*elided*/ any[] | undefined;
|
|
2644
|
+
componentId?: number | undefined;
|
|
2645
|
+
cssClass?: string | undefined;
|
|
2646
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2647
|
+
events?: {
|
|
2648
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2649
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2650
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2651
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2652
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2653
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2654
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2655
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2656
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2657
|
+
} | undefined;
|
|
2658
|
+
directives?: {
|
|
2659
|
+
[x: string]: {
|
|
2660
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2661
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2662
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2663
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2664
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2665
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2666
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2667
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2668
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2669
|
+
} | undefined;
|
|
2670
|
+
touch?: {
|
|
2671
|
+
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2672
|
+
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2673
|
+
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2674
|
+
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2675
|
+
onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2676
|
+
onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2677
|
+
onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2678
|
+
onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2679
|
+
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2680
|
+
} | undefined;
|
|
2681
|
+
} | undefined;
|
|
2682
|
+
isVisible?: boolean | string | undefined;
|
|
2683
|
+
dark?: boolean | undefined;
|
|
2684
|
+
light?: boolean | undefined;
|
|
2685
|
+
theme?: string | undefined;
|
|
2686
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2687
|
+
name: string;
|
|
2688
|
+
parent?: /*elided*/ any | undefined;
|
|
2689
|
+
tabStop?: boolean | undefined;
|
|
2690
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2691
|
+
fillHeight?: boolean | undefined;
|
|
2692
|
+
}[];
|
|
2004
2693
|
componentId: number;
|
|
2005
2694
|
cssClass: string;
|
|
2006
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2695
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2007
2696
|
events: {
|
|
2008
2697
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2009
2698
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2039,40 +2728,40 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
2039
2728
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2040
2729
|
} | undefined;
|
|
2041
2730
|
};
|
|
2042
|
-
isVisible:
|
|
2731
|
+
isVisible: boolean | string;
|
|
2043
2732
|
dark: boolean;
|
|
2044
2733
|
light: boolean;
|
|
2045
2734
|
theme?: string | undefined;
|
|
2046
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2735
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2047
2736
|
name: string;
|
|
2048
|
-
parent?: any | undefined;
|
|
2737
|
+
parent?: /*elided*/ any | undefined;
|
|
2049
2738
|
tabStop: boolean;
|
|
2050
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2739
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2051
2740
|
fillHeight: boolean;
|
|
2052
2741
|
} | undefined;
|
|
2053
2742
|
tabStop: boolean;
|
|
2054
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2743
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2055
2744
|
fillHeight: boolean;
|
|
2056
|
-
reapplyConditions: (row: import("@zeedhi/core").IDictionary<any>, columns?: import("@zeedhi/common").Column[]
|
|
2745
|
+
reapplyConditions: (row: import("@zeedhi/core").IDictionary<any>, columns?: import("@zeedhi/common").Column[]) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
|
|
2057
2746
|
getAppliedConditions: (args: {
|
|
2058
|
-
row: import("@zeedhi/core").IDictionary
|
|
2747
|
+
row: import("@zeedhi/core").IDictionary;
|
|
2059
2748
|
column: import("@zeedhi/common").Column;
|
|
2060
|
-
path?: string
|
|
2749
|
+
path?: string;
|
|
2061
2750
|
}) => Partial<import("@zeedhi/common").IComponentRender>;
|
|
2062
2751
|
changeOrder: (sortBy: {
|
|
2063
2752
|
key: string;
|
|
2064
|
-
order: "
|
|
2753
|
+
order: "asc" | "desc";
|
|
2065
2754
|
}[]) => Promise<void>;
|
|
2066
|
-
selectCell: (row: import("@zeedhi/core").IDictionary
|
|
2067
|
-
reapplyRowStyleConditions: (row: import("@zeedhi/core").IDictionary
|
|
2068
|
-
getRowStyleConditions: (row: import("@zeedhi/core").IDictionary
|
|
2755
|
+
selectCell: (row: import("@zeedhi/core").IDictionary, column: import("@zeedhi/common").GridColumn) => void;
|
|
2756
|
+
reapplyRowStyleConditions: (row: import("@zeedhi/core").IDictionary) => import("@zeedhi/core").IDictionary;
|
|
2757
|
+
getRowStyleConditions: (row: import("@zeedhi/core").IDictionary) => import("@zeedhi/core").IDictionary;
|
|
2069
2758
|
deleteRows: () => Promise<any[]>;
|
|
2070
2759
|
selectAll: (isSelected: boolean) => void;
|
|
2071
|
-
toggleRow: (row: import("@zeedhi/core").IDictionary
|
|
2072
|
-
selectRow: (row: import("@zeedhi/core").IDictionary
|
|
2073
|
-
callDisableSelection: (row: import("@zeedhi/core").IDictionary
|
|
2074
|
-
selectClick: (row: import("@zeedhi/core").IDictionary<any>, isSelected: boolean, event: Event, element?: HTMLElement
|
|
2075
|
-
selectAllClick: (isSelected: boolean, event: Event, element?: HTMLElement
|
|
2760
|
+
toggleRow: (row: import("@zeedhi/core").IDictionary) => void;
|
|
2761
|
+
selectRow: (row: import("@zeedhi/core").IDictionary, select: boolean) => void;
|
|
2762
|
+
callDisableSelection: (row: import("@zeedhi/core").IDictionary) => boolean;
|
|
2763
|
+
selectClick: (row: import("@zeedhi/core").IDictionary<any>, isSelected: boolean, event: Event, element?: HTMLElement) => void;
|
|
2764
|
+
selectAllClick: (isSelected: boolean, event: Event, element?: HTMLElement) => void;
|
|
2076
2765
|
navigateDatasource: (direction: import("@zeedhi/common").VerticalDirection) => void;
|
|
2077
2766
|
navigatePageUp: () => void;
|
|
2078
2767
|
navigatePageDown: () => void;
|
|
@@ -2080,8 +2769,8 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
2080
2769
|
navigateRight: ({ event }: import("@zeedhi/core").IEventParam<any>) => void;
|
|
2081
2770
|
navigateUp: () => void;
|
|
2082
2771
|
navigateDown: () => void;
|
|
2083
|
-
setViewNavigate: (viewNavigate: (direction: import("@zeedhi/common").Direction, event?: Event
|
|
2084
|
-
getActionComponent: (actionComponent: import("@zeedhi/common").IComponent, column: import("@zeedhi/common").GridColumn, row: import("@zeedhi/core").IDictionary
|
|
2772
|
+
setViewNavigate: (viewNavigate: (direction: import("@zeedhi/common").Direction, event?: Event) => void) => void;
|
|
2773
|
+
getActionComponent: (actionComponent: import("@zeedhi/common").IComponent, column: import("@zeedhi/common").GridColumn, row: import("@zeedhi/core").IDictionary, parentPath?: string) => import("@zeedhi/common").IComponent;
|
|
2085
2774
|
};
|
|
2086
2775
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2087
2776
|
export default _default;
|