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