@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
|
@@ -21,13 +21,16 @@ export declare const ZdMenuGroupProps: {
|
|
|
21
21
|
isArray(arg: any): arg is any[];
|
|
22
22
|
readonly prototype: any[];
|
|
23
23
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
24
|
-
from<
|
|
25
|
-
from<
|
|
26
|
-
from<
|
|
27
|
-
of<
|
|
24
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
25
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
26
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
27
|
+
of<T>(...items: T[]): T[];
|
|
28
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
29
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
28
30
|
readonly [Symbol.species]: ArrayConstructor;
|
|
29
31
|
};
|
|
30
32
|
default: () => IMenuItem[];
|
|
33
|
+
watch: boolean;
|
|
31
34
|
};
|
|
32
35
|
menuLevel: {
|
|
33
36
|
type: NumberConstructor;
|
|
@@ -55,16 +58,20 @@ export declare const ZdMenuGroupProps: {
|
|
|
55
58
|
isArray(arg: any): arg is any[];
|
|
56
59
|
readonly prototype: any[];
|
|
57
60
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
58
|
-
from<
|
|
59
|
-
from<
|
|
60
|
-
from<
|
|
61
|
-
of<
|
|
61
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
62
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
63
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
64
|
+
of<T>(...items: T[]): T[];
|
|
65
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
66
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
62
67
|
readonly [Symbol.species]: ArrayConstructor;
|
|
63
68
|
})[];
|
|
64
69
|
default(): never[];
|
|
70
|
+
watch: boolean;
|
|
65
71
|
};
|
|
66
72
|
component: {
|
|
67
73
|
type: StringConstructor;
|
|
74
|
+
watch: boolean;
|
|
68
75
|
};
|
|
69
76
|
allowDuplicate: {
|
|
70
77
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -89,10 +96,12 @@ export declare const ZdMenuGroupProps: {
|
|
|
89
96
|
directives: {
|
|
90
97
|
type: ObjectConstructor;
|
|
91
98
|
default(): {};
|
|
99
|
+
watch: boolean;
|
|
92
100
|
};
|
|
93
101
|
events: {
|
|
94
102
|
type: ObjectConstructor;
|
|
95
103
|
default(): {};
|
|
104
|
+
watch: boolean;
|
|
96
105
|
};
|
|
97
106
|
instanceObject: {
|
|
98
107
|
type: ObjectConstructor;
|
|
@@ -104,6 +113,7 @@ export declare const ZdMenuGroupProps: {
|
|
|
104
113
|
keyMap: {
|
|
105
114
|
type: ObjectConstructor;
|
|
106
115
|
default(): {};
|
|
116
|
+
watch: boolean;
|
|
107
117
|
};
|
|
108
118
|
light: {
|
|
109
119
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -115,6 +125,7 @@ export declare const ZdMenuGroupProps: {
|
|
|
115
125
|
};
|
|
116
126
|
parent: {
|
|
117
127
|
type: ObjectConstructor;
|
|
128
|
+
watch: boolean;
|
|
118
129
|
};
|
|
119
130
|
tabStop: {
|
|
120
131
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -146,13 +157,16 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
146
157
|
isArray(arg: any): arg is any[];
|
|
147
158
|
readonly prototype: any[];
|
|
148
159
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
149
|
-
from<
|
|
150
|
-
from<
|
|
151
|
-
from<
|
|
152
|
-
of<
|
|
160
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
161
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
162
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
163
|
+
of<T>(...items: T[]): T[];
|
|
164
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
165
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
153
166
|
readonly [Symbol.species]: ArrayConstructor;
|
|
154
167
|
};
|
|
155
168
|
default: () => IMenuItem[];
|
|
169
|
+
watch: boolean;
|
|
156
170
|
};
|
|
157
171
|
menuLevel: {
|
|
158
172
|
type: NumberConstructor;
|
|
@@ -180,16 +194,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
180
194
|
isArray(arg: any): arg is any[];
|
|
181
195
|
readonly prototype: any[];
|
|
182
196
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
183
|
-
from<
|
|
184
|
-
from<
|
|
185
|
-
from<
|
|
186
|
-
of<
|
|
197
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
198
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
199
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
200
|
+
of<T>(...items: T[]): T[];
|
|
201
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
202
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
187
203
|
readonly [Symbol.species]: ArrayConstructor;
|
|
188
204
|
})[];
|
|
189
205
|
default(): never[];
|
|
206
|
+
watch: boolean;
|
|
190
207
|
};
|
|
191
208
|
component: {
|
|
192
209
|
type: StringConstructor;
|
|
210
|
+
watch: boolean;
|
|
193
211
|
};
|
|
194
212
|
allowDuplicate: {
|
|
195
213
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -214,10 +232,12 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
214
232
|
directives: {
|
|
215
233
|
type: ObjectConstructor;
|
|
216
234
|
default(): {};
|
|
235
|
+
watch: boolean;
|
|
217
236
|
};
|
|
218
237
|
events: {
|
|
219
238
|
type: ObjectConstructor;
|
|
220
239
|
default(): {};
|
|
240
|
+
watch: boolean;
|
|
221
241
|
};
|
|
222
242
|
instanceObject: {
|
|
223
243
|
type: ObjectConstructor;
|
|
@@ -229,6 +249,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
229
249
|
keyMap: {
|
|
230
250
|
type: ObjectConstructor;
|
|
231
251
|
default(): {};
|
|
252
|
+
watch: boolean;
|
|
232
253
|
};
|
|
233
254
|
light: {
|
|
234
255
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -240,6 +261,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
240
261
|
};
|
|
241
262
|
parent: {
|
|
242
263
|
type: ObjectConstructor;
|
|
264
|
+
watch: boolean;
|
|
243
265
|
};
|
|
244
266
|
tabStop: {
|
|
245
267
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -256,30 +278,30 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
256
278
|
[x: string]: any;
|
|
257
279
|
parentMenu?: {
|
|
258
280
|
[x: string]: any;
|
|
259
|
-
app?:
|
|
260
|
-
absolute?:
|
|
261
|
-
clipped?:
|
|
262
|
-
dense?:
|
|
263
|
-
fixed?:
|
|
264
|
-
floating?:
|
|
265
|
-
mini?:
|
|
266
|
-
miniWidth?:
|
|
267
|
-
temporary?:
|
|
268
|
-
items?: any[] | undefined;
|
|
281
|
+
app?: boolean | string | undefined;
|
|
282
|
+
absolute?: boolean | string | undefined;
|
|
283
|
+
clipped?: boolean | string | undefined;
|
|
284
|
+
dense?: boolean | string | undefined;
|
|
285
|
+
fixed?: boolean | string | undefined;
|
|
286
|
+
floating?: boolean | string | undefined;
|
|
287
|
+
mini?: boolean | string | undefined;
|
|
288
|
+
miniWidth?: number | string | undefined;
|
|
289
|
+
temporary?: boolean | string | undefined;
|
|
290
|
+
items?: /*elided*/ any[] | undefined;
|
|
269
291
|
itemsUrl?: string | undefined;
|
|
270
|
-
isLocal?:
|
|
271
|
-
closeToMini?:
|
|
272
|
-
showSearch?:
|
|
273
|
-
opened?:
|
|
292
|
+
isLocal?: boolean | string | undefined;
|
|
293
|
+
closeToMini?: boolean | string | undefined;
|
|
294
|
+
showSearch?: boolean | string | undefined;
|
|
295
|
+
opened?: boolean | string | undefined;
|
|
274
296
|
topSlot?: {
|
|
275
297
|
[x: string]: any;
|
|
276
|
-
children?: any[] | undefined;
|
|
298
|
+
children?: /*elided*/ any[] | undefined;
|
|
277
299
|
component: string;
|
|
278
300
|
allowDuplicate?: boolean | undefined;
|
|
279
301
|
autofocus?: boolean | undefined;
|
|
280
302
|
componentId?: number | undefined;
|
|
281
303
|
cssClass?: string | undefined;
|
|
282
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
304
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
283
305
|
events?: {
|
|
284
306
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
285
307
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -315,25 +337,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
315
337
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
316
338
|
} | undefined;
|
|
317
339
|
} | undefined;
|
|
318
|
-
isVisible?:
|
|
340
|
+
isVisible?: boolean | string | undefined;
|
|
319
341
|
dark?: boolean | undefined;
|
|
320
342
|
light?: boolean | undefined;
|
|
321
343
|
theme?: string | undefined;
|
|
322
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
344
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
323
345
|
name: string;
|
|
324
346
|
parent?: {
|
|
325
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
326
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
347
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
348
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
327
349
|
allowDuplicate: boolean;
|
|
328
350
|
autofocus: boolean;
|
|
329
351
|
children: {
|
|
330
352
|
[x: string]: any;
|
|
331
353
|
allowDuplicate?: boolean | undefined;
|
|
332
354
|
autofocus?: boolean | undefined;
|
|
333
|
-
children?: any[] | undefined;
|
|
355
|
+
children?: /*elided*/ any[] | undefined;
|
|
334
356
|
componentId?: number | undefined;
|
|
335
357
|
cssClass?: string | undefined;
|
|
336
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
358
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
337
359
|
events?: {
|
|
338
360
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
339
361
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -369,20 +391,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
369
391
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
370
392
|
} | undefined;
|
|
371
393
|
} | undefined;
|
|
372
|
-
isVisible?:
|
|
394
|
+
isVisible?: boolean | string | undefined;
|
|
373
395
|
dark?: boolean | undefined;
|
|
374
396
|
light?: boolean | undefined;
|
|
375
397
|
theme?: string | undefined;
|
|
376
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
398
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
377
399
|
name: string;
|
|
378
|
-
parent?: any | undefined;
|
|
400
|
+
parent?: /*elided*/ any | undefined;
|
|
379
401
|
tabStop?: boolean | undefined;
|
|
380
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
402
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
381
403
|
fillHeight?: boolean | undefined;
|
|
382
404
|
}[];
|
|
383
405
|
componentId: number;
|
|
384
406
|
cssClass: string;
|
|
385
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
407
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
386
408
|
events: {
|
|
387
409
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
388
410
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -418,35 +440,35 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
418
440
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
419
441
|
} | undefined;
|
|
420
442
|
};
|
|
421
|
-
isVisible:
|
|
443
|
+
isVisible: boolean | string;
|
|
422
444
|
dark: boolean;
|
|
423
445
|
light: boolean;
|
|
424
446
|
theme?: string | undefined;
|
|
425
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
447
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
426
448
|
name: string;
|
|
427
|
-
parent?: any | undefined;
|
|
449
|
+
parent?: /*elided*/ any | undefined;
|
|
428
450
|
tabStop: boolean;
|
|
429
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
451
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
430
452
|
fillHeight: boolean;
|
|
431
453
|
} | undefined;
|
|
432
454
|
tabStop?: boolean | undefined;
|
|
433
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
455
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
434
456
|
fillHeight?: boolean | undefined;
|
|
435
457
|
}[] | undefined;
|
|
436
|
-
width?:
|
|
437
|
-
mobileBreakpoint?:
|
|
458
|
+
width?: number | string | undefined;
|
|
459
|
+
mobileBreakpoint?: number | string | undefined;
|
|
438
460
|
cache?: boolean | undefined;
|
|
439
461
|
disableRouteWatcher?: boolean | undefined;
|
|
440
|
-
permanent?:
|
|
462
|
+
permanent?: boolean | string | undefined;
|
|
441
463
|
children?: {
|
|
442
464
|
[x: string]: any;
|
|
443
|
-
children?: any[] | undefined;
|
|
465
|
+
children?: /*elided*/ any[] | undefined;
|
|
444
466
|
component: string;
|
|
445
467
|
allowDuplicate?: boolean | undefined;
|
|
446
468
|
autofocus?: boolean | undefined;
|
|
447
469
|
componentId?: number | undefined;
|
|
448
470
|
cssClass?: string | undefined;
|
|
449
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
471
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
450
472
|
events?: {
|
|
451
473
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
452
474
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -482,25 +504,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
482
504
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
483
505
|
} | undefined;
|
|
484
506
|
} | undefined;
|
|
485
|
-
isVisible?:
|
|
507
|
+
isVisible?: boolean | string | undefined;
|
|
486
508
|
dark?: boolean | undefined;
|
|
487
509
|
light?: boolean | undefined;
|
|
488
510
|
theme?: string | undefined;
|
|
489
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
511
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
490
512
|
name: string;
|
|
491
513
|
parent?: {
|
|
492
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
493
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
514
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
515
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
494
516
|
allowDuplicate: boolean;
|
|
495
517
|
autofocus: boolean;
|
|
496
518
|
children: {
|
|
497
519
|
[x: string]: any;
|
|
498
520
|
allowDuplicate?: boolean | undefined;
|
|
499
521
|
autofocus?: boolean | undefined;
|
|
500
|
-
children?: any[] | undefined;
|
|
522
|
+
children?: /*elided*/ any[] | undefined;
|
|
501
523
|
componentId?: number | undefined;
|
|
502
524
|
cssClass?: string | undefined;
|
|
503
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
525
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
504
526
|
events?: {
|
|
505
527
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
506
528
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -536,20 +558,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
536
558
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
537
559
|
} | undefined;
|
|
538
560
|
} | undefined;
|
|
539
|
-
isVisible?:
|
|
561
|
+
isVisible?: boolean | string | undefined;
|
|
540
562
|
dark?: boolean | undefined;
|
|
541
563
|
light?: boolean | undefined;
|
|
542
564
|
theme?: string | undefined;
|
|
543
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
565
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
544
566
|
name: string;
|
|
545
|
-
parent?: any | undefined;
|
|
567
|
+
parent?: /*elided*/ any | undefined;
|
|
546
568
|
tabStop?: boolean | undefined;
|
|
547
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
569
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
548
570
|
fillHeight?: boolean | undefined;
|
|
549
571
|
}[];
|
|
550
572
|
componentId: number;
|
|
551
573
|
cssClass: string;
|
|
552
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
574
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
553
575
|
events: {
|
|
554
576
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
555
577
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -585,19 +607,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
585
607
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
586
608
|
} | undefined;
|
|
587
609
|
};
|
|
588
|
-
isVisible:
|
|
610
|
+
isVisible: boolean | string;
|
|
589
611
|
dark: boolean;
|
|
590
612
|
light: boolean;
|
|
591
613
|
theme?: string | undefined;
|
|
592
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
614
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
593
615
|
name: string;
|
|
594
|
-
parent?: any | undefined;
|
|
616
|
+
parent?: /*elided*/ any | undefined;
|
|
595
617
|
tabStop: boolean;
|
|
596
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
618
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
597
619
|
fillHeight: boolean;
|
|
598
620
|
} | undefined;
|
|
599
621
|
tabStop?: boolean | undefined;
|
|
600
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
622
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
601
623
|
fillHeight?: boolean | undefined;
|
|
602
624
|
}[] | undefined;
|
|
603
625
|
component: string;
|
|
@@ -605,7 +627,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
605
627
|
autofocus?: boolean | undefined;
|
|
606
628
|
componentId?: number | undefined;
|
|
607
629
|
cssClass?: string | undefined;
|
|
608
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
630
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
609
631
|
events?: {
|
|
610
632
|
[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
633
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -641,25 +663,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
641
663
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
642
664
|
} | undefined;
|
|
643
665
|
} | undefined;
|
|
644
|
-
isVisible?:
|
|
666
|
+
isVisible?: boolean | string | undefined;
|
|
645
667
|
dark?: boolean | undefined;
|
|
646
668
|
light?: boolean | undefined;
|
|
647
669
|
theme?: string | undefined;
|
|
648
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
670
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
649
671
|
name: string;
|
|
650
672
|
parent?: {
|
|
651
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
652
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
673
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
674
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
653
675
|
allowDuplicate: boolean;
|
|
654
676
|
autofocus: boolean;
|
|
655
677
|
children: {
|
|
656
678
|
[x: string]: any;
|
|
657
679
|
allowDuplicate?: boolean | undefined;
|
|
658
680
|
autofocus?: boolean | undefined;
|
|
659
|
-
children?: any[] | undefined;
|
|
681
|
+
children?: /*elided*/ any[] | undefined;
|
|
660
682
|
componentId?: number | undefined;
|
|
661
683
|
cssClass?: string | undefined;
|
|
662
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
684
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
663
685
|
events?: {
|
|
664
686
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
665
687
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -695,20 +717,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
695
717
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
696
718
|
} | undefined;
|
|
697
719
|
} | undefined;
|
|
698
|
-
isVisible?:
|
|
720
|
+
isVisible?: boolean | string | undefined;
|
|
699
721
|
dark?: boolean | undefined;
|
|
700
722
|
light?: boolean | undefined;
|
|
701
723
|
theme?: string | undefined;
|
|
702
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
724
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
703
725
|
name: string;
|
|
704
|
-
parent?: any | undefined;
|
|
726
|
+
parent?: /*elided*/ any | undefined;
|
|
705
727
|
tabStop?: boolean | undefined;
|
|
706
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
728
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
707
729
|
fillHeight?: boolean | undefined;
|
|
708
730
|
}[];
|
|
709
731
|
componentId: number;
|
|
710
732
|
cssClass: string;
|
|
711
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
733
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
712
734
|
events: {
|
|
713
735
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
714
736
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -744,52 +766,52 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
744
766
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
745
767
|
} | undefined;
|
|
746
768
|
};
|
|
747
|
-
isVisible:
|
|
769
|
+
isVisible: boolean | string;
|
|
748
770
|
dark: boolean;
|
|
749
771
|
light: boolean;
|
|
750
772
|
theme?: string | undefined;
|
|
751
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
773
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
752
774
|
name: string;
|
|
753
|
-
parent?: any | undefined;
|
|
775
|
+
parent?: /*elided*/ any | undefined;
|
|
754
776
|
tabStop: boolean;
|
|
755
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
777
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
756
778
|
fillHeight: boolean;
|
|
757
779
|
} | undefined;
|
|
758
780
|
tabStop?: boolean | undefined;
|
|
759
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
781
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
760
782
|
fillHeight?: boolean | undefined;
|
|
761
783
|
} | undefined;
|
|
762
784
|
parentGroup?: {
|
|
763
785
|
[x: string]: any;
|
|
764
|
-
items: any[];
|
|
765
|
-
opened?:
|
|
786
|
+
items: /*elided*/ any[];
|
|
787
|
+
opened?: boolean | string | undefined;
|
|
766
788
|
expandIcon?: string | undefined;
|
|
767
789
|
parentMenu?: {
|
|
768
790
|
[x: string]: any;
|
|
769
|
-
app?:
|
|
770
|
-
absolute?:
|
|
771
|
-
clipped?:
|
|
772
|
-
dense?:
|
|
773
|
-
fixed?:
|
|
774
|
-
floating?:
|
|
775
|
-
mini?:
|
|
776
|
-
miniWidth?:
|
|
777
|
-
temporary?:
|
|
778
|
-
items?: any[] | undefined;
|
|
791
|
+
app?: boolean | string | undefined;
|
|
792
|
+
absolute?: boolean | string | undefined;
|
|
793
|
+
clipped?: boolean | string | undefined;
|
|
794
|
+
dense?: boolean | string | undefined;
|
|
795
|
+
fixed?: boolean | string | undefined;
|
|
796
|
+
floating?: boolean | string | undefined;
|
|
797
|
+
mini?: boolean | string | undefined;
|
|
798
|
+
miniWidth?: number | string | undefined;
|
|
799
|
+
temporary?: boolean | string | undefined;
|
|
800
|
+
items?: /*elided*/ any[] | undefined;
|
|
779
801
|
itemsUrl?: string | undefined;
|
|
780
|
-
isLocal?:
|
|
781
|
-
closeToMini?:
|
|
782
|
-
showSearch?:
|
|
783
|
-
opened?:
|
|
802
|
+
isLocal?: boolean | string | undefined;
|
|
803
|
+
closeToMini?: boolean | string | undefined;
|
|
804
|
+
showSearch?: boolean | string | undefined;
|
|
805
|
+
opened?: boolean | string | undefined;
|
|
784
806
|
topSlot?: {
|
|
785
807
|
[x: string]: any;
|
|
786
|
-
children?: any[] | undefined;
|
|
808
|
+
children?: /*elided*/ any[] | undefined;
|
|
787
809
|
component: string;
|
|
788
810
|
allowDuplicate?: boolean | undefined;
|
|
789
811
|
autofocus?: boolean | undefined;
|
|
790
812
|
componentId?: number | undefined;
|
|
791
813
|
cssClass?: string | undefined;
|
|
792
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
814
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
793
815
|
events?: {
|
|
794
816
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
795
817
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -825,25 +847,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
825
847
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
826
848
|
} | undefined;
|
|
827
849
|
} | undefined;
|
|
828
|
-
isVisible?:
|
|
850
|
+
isVisible?: boolean | string | undefined;
|
|
829
851
|
dark?: boolean | undefined;
|
|
830
852
|
light?: boolean | undefined;
|
|
831
853
|
theme?: string | undefined;
|
|
832
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
854
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
833
855
|
name: string;
|
|
834
856
|
parent?: {
|
|
835
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
836
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
857
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
858
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
837
859
|
allowDuplicate: boolean;
|
|
838
860
|
autofocus: boolean;
|
|
839
861
|
children: {
|
|
840
862
|
[x: string]: any;
|
|
841
863
|
allowDuplicate?: boolean | undefined;
|
|
842
864
|
autofocus?: boolean | undefined;
|
|
843
|
-
children?: any[] | undefined;
|
|
865
|
+
children?: /*elided*/ any[] | undefined;
|
|
844
866
|
componentId?: number | undefined;
|
|
845
867
|
cssClass?: string | undefined;
|
|
846
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
868
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
847
869
|
events?: {
|
|
848
870
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
849
871
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -879,20 +901,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
879
901
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
880
902
|
} | undefined;
|
|
881
903
|
} | undefined;
|
|
882
|
-
isVisible?:
|
|
904
|
+
isVisible?: boolean | string | undefined;
|
|
883
905
|
dark?: boolean | undefined;
|
|
884
906
|
light?: boolean | undefined;
|
|
885
907
|
theme?: string | undefined;
|
|
886
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
908
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
887
909
|
name: string;
|
|
888
|
-
parent?: any | undefined;
|
|
910
|
+
parent?: /*elided*/ any | undefined;
|
|
889
911
|
tabStop?: boolean | undefined;
|
|
890
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
912
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
891
913
|
fillHeight?: boolean | undefined;
|
|
892
914
|
}[];
|
|
893
915
|
componentId: number;
|
|
894
916
|
cssClass: string;
|
|
895
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
917
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
896
918
|
events: {
|
|
897
919
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
898
920
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -928,35 +950,35 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
928
950
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
929
951
|
} | undefined;
|
|
930
952
|
};
|
|
931
|
-
isVisible:
|
|
953
|
+
isVisible: boolean | string;
|
|
932
954
|
dark: boolean;
|
|
933
955
|
light: boolean;
|
|
934
956
|
theme?: string | undefined;
|
|
935
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
957
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
936
958
|
name: string;
|
|
937
|
-
parent?: any | undefined;
|
|
959
|
+
parent?: /*elided*/ any | undefined;
|
|
938
960
|
tabStop: boolean;
|
|
939
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
961
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
940
962
|
fillHeight: boolean;
|
|
941
963
|
} | undefined;
|
|
942
964
|
tabStop?: boolean | undefined;
|
|
943
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
965
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
944
966
|
fillHeight?: boolean | undefined;
|
|
945
967
|
}[] | undefined;
|
|
946
|
-
width?:
|
|
947
|
-
mobileBreakpoint?:
|
|
968
|
+
width?: number | string | undefined;
|
|
969
|
+
mobileBreakpoint?: number | string | undefined;
|
|
948
970
|
cache?: boolean | undefined;
|
|
949
971
|
disableRouteWatcher?: boolean | undefined;
|
|
950
|
-
permanent?:
|
|
972
|
+
permanent?: boolean | string | undefined;
|
|
951
973
|
children?: {
|
|
952
974
|
[x: string]: any;
|
|
953
|
-
children?: any[] | undefined;
|
|
975
|
+
children?: /*elided*/ any[] | undefined;
|
|
954
976
|
component: string;
|
|
955
977
|
allowDuplicate?: boolean | undefined;
|
|
956
978
|
autofocus?: boolean | undefined;
|
|
957
979
|
componentId?: number | undefined;
|
|
958
980
|
cssClass?: string | undefined;
|
|
959
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
981
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
960
982
|
events?: {
|
|
961
983
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
962
984
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -992,25 +1014,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
992
1014
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
993
1015
|
} | undefined;
|
|
994
1016
|
} | undefined;
|
|
995
|
-
isVisible?:
|
|
1017
|
+
isVisible?: boolean | string | undefined;
|
|
996
1018
|
dark?: boolean | undefined;
|
|
997
1019
|
light?: boolean | undefined;
|
|
998
1020
|
theme?: string | undefined;
|
|
999
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1021
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1000
1022
|
name: string;
|
|
1001
1023
|
parent?: {
|
|
1002
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1003
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1024
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1025
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1004
1026
|
allowDuplicate: boolean;
|
|
1005
1027
|
autofocus: boolean;
|
|
1006
1028
|
children: {
|
|
1007
1029
|
[x: string]: any;
|
|
1008
1030
|
allowDuplicate?: boolean | undefined;
|
|
1009
1031
|
autofocus?: boolean | undefined;
|
|
1010
|
-
children?: any[] | undefined;
|
|
1032
|
+
children?: /*elided*/ any[] | undefined;
|
|
1011
1033
|
componentId?: number | undefined;
|
|
1012
1034
|
cssClass?: string | undefined;
|
|
1013
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1035
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1014
1036
|
events?: {
|
|
1015
1037
|
[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
1038
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1046,20 +1068,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1046
1068
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1047
1069
|
} | undefined;
|
|
1048
1070
|
} | undefined;
|
|
1049
|
-
isVisible?:
|
|
1071
|
+
isVisible?: boolean | string | undefined;
|
|
1050
1072
|
dark?: boolean | undefined;
|
|
1051
1073
|
light?: boolean | undefined;
|
|
1052
1074
|
theme?: string | undefined;
|
|
1053
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1075
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1054
1076
|
name: string;
|
|
1055
|
-
parent?: any | undefined;
|
|
1077
|
+
parent?: /*elided*/ any | undefined;
|
|
1056
1078
|
tabStop?: boolean | undefined;
|
|
1057
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1079
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1058
1080
|
fillHeight?: boolean | undefined;
|
|
1059
1081
|
}[];
|
|
1060
1082
|
componentId: number;
|
|
1061
1083
|
cssClass: string;
|
|
1062
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1084
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1063
1085
|
events: {
|
|
1064
1086
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1065
1087
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1095,19 +1117,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1095
1117
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1096
1118
|
} | undefined;
|
|
1097
1119
|
};
|
|
1098
|
-
isVisible:
|
|
1120
|
+
isVisible: boolean | string;
|
|
1099
1121
|
dark: boolean;
|
|
1100
1122
|
light: boolean;
|
|
1101
1123
|
theme?: string | undefined;
|
|
1102
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1124
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1103
1125
|
name: string;
|
|
1104
|
-
parent?: any | undefined;
|
|
1126
|
+
parent?: /*elided*/ any | undefined;
|
|
1105
1127
|
tabStop: boolean;
|
|
1106
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1128
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1107
1129
|
fillHeight: boolean;
|
|
1108
1130
|
} | undefined;
|
|
1109
1131
|
tabStop?: boolean | undefined;
|
|
1110
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1132
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1111
1133
|
fillHeight?: boolean | undefined;
|
|
1112
1134
|
}[] | undefined;
|
|
1113
1135
|
component: string;
|
|
@@ -1115,7 +1137,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1115
1137
|
autofocus?: boolean | undefined;
|
|
1116
1138
|
componentId?: number | undefined;
|
|
1117
1139
|
cssClass?: string | undefined;
|
|
1118
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1140
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1119
1141
|
events?: {
|
|
1120
1142
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1121
1143
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1151,25 +1173,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1151
1173
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1152
1174
|
} | undefined;
|
|
1153
1175
|
} | undefined;
|
|
1154
|
-
isVisible?:
|
|
1176
|
+
isVisible?: boolean | string | undefined;
|
|
1155
1177
|
dark?: boolean | undefined;
|
|
1156
1178
|
light?: boolean | undefined;
|
|
1157
1179
|
theme?: string | undefined;
|
|
1158
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1180
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1159
1181
|
name: string;
|
|
1160
1182
|
parent?: {
|
|
1161
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1162
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1183
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1184
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1163
1185
|
allowDuplicate: boolean;
|
|
1164
1186
|
autofocus: boolean;
|
|
1165
1187
|
children: {
|
|
1166
1188
|
[x: string]: any;
|
|
1167
1189
|
allowDuplicate?: boolean | undefined;
|
|
1168
1190
|
autofocus?: boolean | undefined;
|
|
1169
|
-
children?: any[] | undefined;
|
|
1191
|
+
children?: /*elided*/ any[] | undefined;
|
|
1170
1192
|
componentId?: number | undefined;
|
|
1171
1193
|
cssClass?: string | undefined;
|
|
1172
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1194
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1173
1195
|
events?: {
|
|
1174
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;
|
|
1175
1197
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1205,20 +1227,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1205
1227
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1206
1228
|
} | undefined;
|
|
1207
1229
|
} | undefined;
|
|
1208
|
-
isVisible?:
|
|
1230
|
+
isVisible?: boolean | string | undefined;
|
|
1209
1231
|
dark?: boolean | undefined;
|
|
1210
1232
|
light?: boolean | undefined;
|
|
1211
1233
|
theme?: string | undefined;
|
|
1212
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1234
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1213
1235
|
name: string;
|
|
1214
|
-
parent?: any | undefined;
|
|
1236
|
+
parent?: /*elided*/ any | undefined;
|
|
1215
1237
|
tabStop?: boolean | undefined;
|
|
1216
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1238
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1217
1239
|
fillHeight?: boolean | undefined;
|
|
1218
1240
|
}[];
|
|
1219
1241
|
componentId: number;
|
|
1220
1242
|
cssClass: string;
|
|
1221
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1243
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1222
1244
|
events: {
|
|
1223
1245
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1224
1246
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1254,31 +1276,31 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1254
1276
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1255
1277
|
} | undefined;
|
|
1256
1278
|
};
|
|
1257
|
-
isVisible:
|
|
1279
|
+
isVisible: boolean | string;
|
|
1258
1280
|
dark: boolean;
|
|
1259
1281
|
light: boolean;
|
|
1260
1282
|
theme?: string | undefined;
|
|
1261
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1283
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1262
1284
|
name: string;
|
|
1263
|
-
parent?: any | undefined;
|
|
1285
|
+
parent?: /*elided*/ any | undefined;
|
|
1264
1286
|
tabStop: boolean;
|
|
1265
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1287
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1266
1288
|
fillHeight: boolean;
|
|
1267
1289
|
} | undefined;
|
|
1268
1290
|
tabStop?: boolean | undefined;
|
|
1269
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1291
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1270
1292
|
fillHeight?: boolean | undefined;
|
|
1271
1293
|
} | undefined;
|
|
1272
|
-
parentGroup?: any | undefined;
|
|
1294
|
+
parentGroup?: /*elided*/ any | undefined;
|
|
1273
1295
|
children?: {
|
|
1274
1296
|
[x: string]: any;
|
|
1275
|
-
children?: any[] | undefined;
|
|
1297
|
+
children?: /*elided*/ any[] | undefined;
|
|
1276
1298
|
component: string;
|
|
1277
1299
|
allowDuplicate?: boolean | undefined;
|
|
1278
1300
|
autofocus?: boolean | undefined;
|
|
1279
1301
|
componentId?: number | undefined;
|
|
1280
1302
|
cssClass?: string | undefined;
|
|
1281
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1303
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1282
1304
|
events?: {
|
|
1283
1305
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1284
1306
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1314,25 +1336,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1314
1336
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1315
1337
|
} | undefined;
|
|
1316
1338
|
} | undefined;
|
|
1317
|
-
isVisible?:
|
|
1339
|
+
isVisible?: boolean | string | undefined;
|
|
1318
1340
|
dark?: boolean | undefined;
|
|
1319
1341
|
light?: boolean | undefined;
|
|
1320
1342
|
theme?: string | undefined;
|
|
1321
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1343
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1322
1344
|
name: string;
|
|
1323
1345
|
parent?: {
|
|
1324
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1325
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1346
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1347
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1326
1348
|
allowDuplicate: boolean;
|
|
1327
1349
|
autofocus: boolean;
|
|
1328
1350
|
children: {
|
|
1329
1351
|
[x: string]: any;
|
|
1330
1352
|
allowDuplicate?: boolean | undefined;
|
|
1331
1353
|
autofocus?: boolean | undefined;
|
|
1332
|
-
children?: any[] | undefined;
|
|
1354
|
+
children?: /*elided*/ any[] | undefined;
|
|
1333
1355
|
componentId?: number | undefined;
|
|
1334
1356
|
cssClass?: string | undefined;
|
|
1335
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1357
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1336
1358
|
events?: {
|
|
1337
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;
|
|
1338
1360
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1368,20 +1390,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1368
1390
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1369
1391
|
} | undefined;
|
|
1370
1392
|
} | undefined;
|
|
1371
|
-
isVisible?:
|
|
1393
|
+
isVisible?: boolean | string | undefined;
|
|
1372
1394
|
dark?: boolean | undefined;
|
|
1373
1395
|
light?: boolean | undefined;
|
|
1374
1396
|
theme?: string | undefined;
|
|
1375
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1397
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1376
1398
|
name: string;
|
|
1377
|
-
parent?: any | undefined;
|
|
1399
|
+
parent?: /*elided*/ any | undefined;
|
|
1378
1400
|
tabStop?: boolean | undefined;
|
|
1379
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1401
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1380
1402
|
fillHeight?: boolean | undefined;
|
|
1381
1403
|
}[];
|
|
1382
1404
|
componentId: number;
|
|
1383
1405
|
cssClass: string;
|
|
1384
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1406
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1385
1407
|
events: {
|
|
1386
1408
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1387
1409
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1417,19 +1439,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1417
1439
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1418
1440
|
} | undefined;
|
|
1419
1441
|
};
|
|
1420
|
-
isVisible:
|
|
1442
|
+
isVisible: boolean | string;
|
|
1421
1443
|
dark: boolean;
|
|
1422
1444
|
light: boolean;
|
|
1423
1445
|
theme?: string | undefined;
|
|
1424
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1446
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1425
1447
|
name: string;
|
|
1426
|
-
parent?: any | undefined;
|
|
1448
|
+
parent?: /*elided*/ any | undefined;
|
|
1427
1449
|
tabStop: boolean;
|
|
1428
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1450
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1429
1451
|
fillHeight: boolean;
|
|
1430
1452
|
} | undefined;
|
|
1431
1453
|
tabStop?: boolean | undefined;
|
|
1432
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1454
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1433
1455
|
fillHeight?: boolean | undefined;
|
|
1434
1456
|
}[] | undefined;
|
|
1435
1457
|
component: string;
|
|
@@ -1437,7 +1459,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1437
1459
|
autofocus?: boolean | undefined;
|
|
1438
1460
|
componentId?: number | undefined;
|
|
1439
1461
|
cssClass?: string | undefined;
|
|
1440
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1462
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1441
1463
|
events?: {
|
|
1442
1464
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1443
1465
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1473,25 +1495,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1473
1495
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1474
1496
|
} | undefined;
|
|
1475
1497
|
} | undefined;
|
|
1476
|
-
isVisible?:
|
|
1498
|
+
isVisible?: boolean | string | undefined;
|
|
1477
1499
|
dark?: boolean | undefined;
|
|
1478
1500
|
light?: boolean | undefined;
|
|
1479
1501
|
theme?: string | undefined;
|
|
1480
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1502
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1481
1503
|
name: string;
|
|
1482
1504
|
parent?: {
|
|
1483
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1484
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1505
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1506
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1485
1507
|
allowDuplicate: boolean;
|
|
1486
1508
|
autofocus: boolean;
|
|
1487
1509
|
children: {
|
|
1488
1510
|
[x: string]: any;
|
|
1489
1511
|
allowDuplicate?: boolean | undefined;
|
|
1490
1512
|
autofocus?: boolean | undefined;
|
|
1491
|
-
children?: any[] | undefined;
|
|
1513
|
+
children?: /*elided*/ any[] | undefined;
|
|
1492
1514
|
componentId?: number | undefined;
|
|
1493
1515
|
cssClass?: string | undefined;
|
|
1494
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1516
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1495
1517
|
events?: {
|
|
1496
1518
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1497
1519
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1527,20 +1549,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1527
1549
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1528
1550
|
} | undefined;
|
|
1529
1551
|
} | undefined;
|
|
1530
|
-
isVisible?:
|
|
1552
|
+
isVisible?: boolean | string | undefined;
|
|
1531
1553
|
dark?: boolean | undefined;
|
|
1532
1554
|
light?: boolean | undefined;
|
|
1533
1555
|
theme?: string | undefined;
|
|
1534
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1556
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1535
1557
|
name: string;
|
|
1536
|
-
parent?: any | undefined;
|
|
1558
|
+
parent?: /*elided*/ any | undefined;
|
|
1537
1559
|
tabStop?: boolean | undefined;
|
|
1538
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1560
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1539
1561
|
fillHeight?: boolean | undefined;
|
|
1540
1562
|
}[];
|
|
1541
1563
|
componentId: number;
|
|
1542
1564
|
cssClass: string;
|
|
1543
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1565
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1544
1566
|
events: {
|
|
1545
1567
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1546
1568
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1576,32 +1598,32 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1576
1598
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1577
1599
|
} | undefined;
|
|
1578
1600
|
};
|
|
1579
|
-
isVisible:
|
|
1601
|
+
isVisible: boolean | string;
|
|
1580
1602
|
dark: boolean;
|
|
1581
1603
|
light: boolean;
|
|
1582
1604
|
theme?: string | undefined;
|
|
1583
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1605
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1584
1606
|
name: string;
|
|
1585
|
-
parent?: any | undefined;
|
|
1607
|
+
parent?: /*elided*/ any | undefined;
|
|
1586
1608
|
tabStop: boolean;
|
|
1587
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1609
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1588
1610
|
fillHeight: boolean;
|
|
1589
1611
|
} | undefined;
|
|
1590
1612
|
tabStop?: boolean | undefined;
|
|
1591
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1613
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1592
1614
|
fillHeight?: boolean | undefined;
|
|
1593
1615
|
label: string;
|
|
1594
1616
|
icon?: string | undefined;
|
|
1595
1617
|
} | undefined;
|
|
1596
1618
|
children?: {
|
|
1597
1619
|
[x: string]: any;
|
|
1598
|
-
children?: any[] | undefined;
|
|
1620
|
+
children?: /*elided*/ any[] | undefined;
|
|
1599
1621
|
component: string;
|
|
1600
1622
|
allowDuplicate?: boolean | undefined;
|
|
1601
1623
|
autofocus?: boolean | undefined;
|
|
1602
1624
|
componentId?: number | undefined;
|
|
1603
1625
|
cssClass?: string | undefined;
|
|
1604
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1626
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1605
1627
|
events?: {
|
|
1606
1628
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1607
1629
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1637,25 +1659,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1637
1659
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1638
1660
|
} | undefined;
|
|
1639
1661
|
} | undefined;
|
|
1640
|
-
isVisible?:
|
|
1662
|
+
isVisible?: boolean | string | undefined;
|
|
1641
1663
|
dark?: boolean | undefined;
|
|
1642
1664
|
light?: boolean | undefined;
|
|
1643
1665
|
theme?: string | undefined;
|
|
1644
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1666
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1645
1667
|
name: string;
|
|
1646
1668
|
parent?: {
|
|
1647
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1648
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1669
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1670
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1649
1671
|
allowDuplicate: boolean;
|
|
1650
1672
|
autofocus: boolean;
|
|
1651
1673
|
children: {
|
|
1652
1674
|
[x: string]: any;
|
|
1653
1675
|
allowDuplicate?: boolean | undefined;
|
|
1654
1676
|
autofocus?: boolean | undefined;
|
|
1655
|
-
children?: any[] | undefined;
|
|
1677
|
+
children?: /*elided*/ any[] | undefined;
|
|
1656
1678
|
componentId?: number | undefined;
|
|
1657
1679
|
cssClass?: string | undefined;
|
|
1658
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1680
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1659
1681
|
events?: {
|
|
1660
1682
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1661
1683
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1691,20 +1713,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1691
1713
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1692
1714
|
} | undefined;
|
|
1693
1715
|
} | undefined;
|
|
1694
|
-
isVisible?:
|
|
1716
|
+
isVisible?: boolean | string | undefined;
|
|
1695
1717
|
dark?: boolean | undefined;
|
|
1696
1718
|
light?: boolean | undefined;
|
|
1697
1719
|
theme?: string | undefined;
|
|
1698
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1720
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1699
1721
|
name: string;
|
|
1700
|
-
parent?: any | undefined;
|
|
1722
|
+
parent?: /*elided*/ any | undefined;
|
|
1701
1723
|
tabStop?: boolean | undefined;
|
|
1702
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1724
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1703
1725
|
fillHeight?: boolean | undefined;
|
|
1704
1726
|
}[];
|
|
1705
1727
|
componentId: number;
|
|
1706
1728
|
cssClass: string;
|
|
1707
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1729
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1708
1730
|
events: {
|
|
1709
1731
|
[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
1732
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1740,19 +1762,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1740
1762
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1741
1763
|
} | undefined;
|
|
1742
1764
|
};
|
|
1743
|
-
isVisible:
|
|
1765
|
+
isVisible: boolean | string;
|
|
1744
1766
|
dark: boolean;
|
|
1745
1767
|
light: boolean;
|
|
1746
1768
|
theme?: string | undefined;
|
|
1747
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1769
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1748
1770
|
name: string;
|
|
1749
|
-
parent?: any | undefined;
|
|
1771
|
+
parent?: /*elided*/ any | undefined;
|
|
1750
1772
|
tabStop: boolean;
|
|
1751
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1773
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1752
1774
|
fillHeight: boolean;
|
|
1753
1775
|
} | undefined;
|
|
1754
1776
|
tabStop?: boolean | undefined;
|
|
1755
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1777
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1756
1778
|
fillHeight?: boolean | undefined;
|
|
1757
1779
|
}[] | undefined;
|
|
1758
1780
|
component: string;
|
|
@@ -1760,7 +1782,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1760
1782
|
autofocus?: boolean | undefined;
|
|
1761
1783
|
componentId?: number | undefined;
|
|
1762
1784
|
cssClass?: string | undefined;
|
|
1763
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1785
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1764
1786
|
events?: {
|
|
1765
1787
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1766
1788
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1796,25 +1818,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1796
1818
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1797
1819
|
} | undefined;
|
|
1798
1820
|
} | undefined;
|
|
1799
|
-
isVisible?:
|
|
1821
|
+
isVisible?: boolean | string | undefined;
|
|
1800
1822
|
dark?: boolean | undefined;
|
|
1801
1823
|
light?: boolean | undefined;
|
|
1802
1824
|
theme?: string | undefined;
|
|
1803
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1825
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1804
1826
|
name: string;
|
|
1805
1827
|
parent?: {
|
|
1806
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1807
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1828
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1829
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1808
1830
|
allowDuplicate: boolean;
|
|
1809
1831
|
autofocus: boolean;
|
|
1810
1832
|
children: {
|
|
1811
1833
|
[x: string]: any;
|
|
1812
1834
|
allowDuplicate?: boolean | undefined;
|
|
1813
1835
|
autofocus?: boolean | undefined;
|
|
1814
|
-
children?: any[] | undefined;
|
|
1836
|
+
children?: /*elided*/ any[] | undefined;
|
|
1815
1837
|
componentId?: number | undefined;
|
|
1816
1838
|
cssClass?: string | undefined;
|
|
1817
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1839
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1818
1840
|
events?: {
|
|
1819
1841
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1820
1842
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1850,20 +1872,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1850
1872
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1851
1873
|
} | undefined;
|
|
1852
1874
|
} | undefined;
|
|
1853
|
-
isVisible?:
|
|
1875
|
+
isVisible?: boolean | string | undefined;
|
|
1854
1876
|
dark?: boolean | undefined;
|
|
1855
1877
|
light?: boolean | undefined;
|
|
1856
1878
|
theme?: string | undefined;
|
|
1857
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1879
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1858
1880
|
name: string;
|
|
1859
|
-
parent?: any | undefined;
|
|
1881
|
+
parent?: /*elided*/ any | undefined;
|
|
1860
1882
|
tabStop?: boolean | undefined;
|
|
1861
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1883
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1862
1884
|
fillHeight?: boolean | undefined;
|
|
1863
1885
|
}[];
|
|
1864
1886
|
componentId: number;
|
|
1865
1887
|
cssClass: string;
|
|
1866
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1888
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1867
1889
|
events: {
|
|
1868
1890
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1869
1891
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1899,51 +1921,51 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1899
1921
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1900
1922
|
} | undefined;
|
|
1901
1923
|
};
|
|
1902
|
-
isVisible:
|
|
1924
|
+
isVisible: boolean | string;
|
|
1903
1925
|
dark: boolean;
|
|
1904
1926
|
light: boolean;
|
|
1905
1927
|
theme?: string | undefined;
|
|
1906
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1928
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1907
1929
|
name: string;
|
|
1908
|
-
parent?: any | undefined;
|
|
1930
|
+
parent?: /*elided*/ any | undefined;
|
|
1909
1931
|
tabStop: boolean;
|
|
1910
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1932
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1911
1933
|
fillHeight: boolean;
|
|
1912
1934
|
} | undefined;
|
|
1913
1935
|
tabStop?: boolean | undefined;
|
|
1914
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1936
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1915
1937
|
fillHeight?: boolean | undefined;
|
|
1916
1938
|
}[];
|
|
1917
|
-
opened:
|
|
1939
|
+
opened: boolean | string;
|
|
1918
1940
|
parentMenu?: {
|
|
1919
|
-
app:
|
|
1920
|
-
absolute:
|
|
1921
|
-
clipped:
|
|
1922
|
-
fixed:
|
|
1923
|
-
floating:
|
|
1924
|
-
permanent:
|
|
1925
|
-
dense:
|
|
1926
|
-
mini:
|
|
1927
|
-
miniWidth:
|
|
1941
|
+
app: boolean | string;
|
|
1942
|
+
absolute: boolean | string;
|
|
1943
|
+
clipped: boolean | string;
|
|
1944
|
+
fixed: boolean | string;
|
|
1945
|
+
floating: boolean | string;
|
|
1946
|
+
permanent: boolean | string;
|
|
1947
|
+
dense: boolean | string;
|
|
1948
|
+
mini: boolean | string;
|
|
1949
|
+
miniWidth: number | string;
|
|
1928
1950
|
miniState: boolean;
|
|
1929
|
-
temporary:
|
|
1930
|
-
closeToMini:
|
|
1931
|
-
showSearch:
|
|
1932
|
-
isLocal:
|
|
1951
|
+
temporary: boolean | string;
|
|
1952
|
+
closeToMini: boolean | string;
|
|
1953
|
+
showSearch: boolean | string;
|
|
1954
|
+
isLocal: boolean | string;
|
|
1933
1955
|
drawer: boolean;
|
|
1934
1956
|
openedInitialValue?: boolean | undefined;
|
|
1935
1957
|
mouseOver: boolean;
|
|
1936
|
-
width:
|
|
1937
|
-
mobileBreakpoint:
|
|
1958
|
+
width: number | string;
|
|
1959
|
+
mobileBreakpoint: number | string;
|
|
1938
1960
|
topSlot: {
|
|
1939
1961
|
[x: string]: any;
|
|
1940
|
-
children?: any[] | undefined;
|
|
1962
|
+
children?: /*elided*/ any[] | undefined;
|
|
1941
1963
|
component: string;
|
|
1942
1964
|
allowDuplicate?: boolean | undefined;
|
|
1943
1965
|
autofocus?: boolean | undefined;
|
|
1944
1966
|
componentId?: number | undefined;
|
|
1945
1967
|
cssClass?: string | undefined;
|
|
1946
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1968
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1947
1969
|
events?: {
|
|
1948
1970
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1949
1971
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1979,25 +2001,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
1979
2001
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1980
2002
|
} | undefined;
|
|
1981
2003
|
} | undefined;
|
|
1982
|
-
isVisible?:
|
|
2004
|
+
isVisible?: boolean | string | undefined;
|
|
1983
2005
|
dark?: boolean | undefined;
|
|
1984
2006
|
light?: boolean | undefined;
|
|
1985
2007
|
theme?: string | undefined;
|
|
1986
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2008
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1987
2009
|
name: string;
|
|
1988
2010
|
parent?: {
|
|
1989
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1990
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2011
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2012
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1991
2013
|
allowDuplicate: boolean;
|
|
1992
2014
|
autofocus: boolean;
|
|
1993
2015
|
children: {
|
|
1994
2016
|
[x: string]: any;
|
|
1995
2017
|
allowDuplicate?: boolean | undefined;
|
|
1996
2018
|
autofocus?: boolean | undefined;
|
|
1997
|
-
children?: any[] | undefined;
|
|
2019
|
+
children?: /*elided*/ any[] | undefined;
|
|
1998
2020
|
componentId?: number | undefined;
|
|
1999
2021
|
cssClass?: string | undefined;
|
|
2000
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2022
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2001
2023
|
events?: {
|
|
2002
2024
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2003
2025
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2033,20 +2055,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2033
2055
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2034
2056
|
} | undefined;
|
|
2035
2057
|
} | undefined;
|
|
2036
|
-
isVisible?:
|
|
2058
|
+
isVisible?: boolean | string | undefined;
|
|
2037
2059
|
dark?: boolean | undefined;
|
|
2038
2060
|
light?: boolean | undefined;
|
|
2039
2061
|
theme?: string | undefined;
|
|
2040
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2062
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2041
2063
|
name: string;
|
|
2042
|
-
parent?: any | undefined;
|
|
2064
|
+
parent?: /*elided*/ any | undefined;
|
|
2043
2065
|
tabStop?: boolean | undefined;
|
|
2044
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2066
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2045
2067
|
fillHeight?: boolean | undefined;
|
|
2046
2068
|
}[];
|
|
2047
2069
|
componentId: number;
|
|
2048
2070
|
cssClass: string;
|
|
2049
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2071
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2050
2072
|
events: {
|
|
2051
2073
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2052
2074
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2082,19 +2104,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2082
2104
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2083
2105
|
} | undefined;
|
|
2084
2106
|
};
|
|
2085
|
-
isVisible:
|
|
2107
|
+
isVisible: boolean | string;
|
|
2086
2108
|
dark: boolean;
|
|
2087
2109
|
light: boolean;
|
|
2088
2110
|
theme?: string | undefined;
|
|
2089
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2111
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2090
2112
|
name: string;
|
|
2091
|
-
parent?: any | undefined;
|
|
2113
|
+
parent?: /*elided*/ any | undefined;
|
|
2092
2114
|
tabStop: boolean;
|
|
2093
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2115
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2094
2116
|
fillHeight: boolean;
|
|
2095
2117
|
} | undefined;
|
|
2096
2118
|
tabStop?: boolean | undefined;
|
|
2097
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2119
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2098
2120
|
fillHeight?: boolean | undefined;
|
|
2099
2121
|
}[];
|
|
2100
2122
|
showTooltip: boolean;
|
|
@@ -2105,30 +2127,30 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2105
2127
|
[x: string]: any;
|
|
2106
2128
|
parentMenu?: {
|
|
2107
2129
|
[x: string]: any;
|
|
2108
|
-
app?:
|
|
2109
|
-
absolute?:
|
|
2110
|
-
clipped?:
|
|
2111
|
-
dense?:
|
|
2112
|
-
fixed?:
|
|
2113
|
-
floating?:
|
|
2114
|
-
mini?:
|
|
2115
|
-
miniWidth?:
|
|
2116
|
-
temporary?:
|
|
2117
|
-
items?: any[] | undefined;
|
|
2130
|
+
app?: boolean | string | undefined;
|
|
2131
|
+
absolute?: boolean | string | undefined;
|
|
2132
|
+
clipped?: boolean | string | undefined;
|
|
2133
|
+
dense?: boolean | string | undefined;
|
|
2134
|
+
fixed?: boolean | string | undefined;
|
|
2135
|
+
floating?: boolean | string | undefined;
|
|
2136
|
+
mini?: boolean | string | undefined;
|
|
2137
|
+
miniWidth?: number | string | undefined;
|
|
2138
|
+
temporary?: boolean | string | undefined;
|
|
2139
|
+
items?: /*elided*/ any[] | undefined;
|
|
2118
2140
|
itemsUrl?: string | undefined;
|
|
2119
|
-
isLocal?:
|
|
2120
|
-
closeToMini?:
|
|
2121
|
-
showSearch?:
|
|
2122
|
-
opened?:
|
|
2141
|
+
isLocal?: boolean | string | undefined;
|
|
2142
|
+
closeToMini?: boolean | string | undefined;
|
|
2143
|
+
showSearch?: boolean | string | undefined;
|
|
2144
|
+
opened?: boolean | string | undefined;
|
|
2123
2145
|
topSlot?: {
|
|
2124
2146
|
[x: string]: any;
|
|
2125
|
-
children?: any[] | undefined;
|
|
2147
|
+
children?: /*elided*/ any[] | undefined;
|
|
2126
2148
|
component: string;
|
|
2127
2149
|
allowDuplicate?: boolean | undefined;
|
|
2128
2150
|
autofocus?: boolean | undefined;
|
|
2129
2151
|
componentId?: number | undefined;
|
|
2130
2152
|
cssClass?: string | undefined;
|
|
2131
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2153
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2132
2154
|
events?: {
|
|
2133
2155
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2134
2156
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2164,25 +2186,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2164
2186
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2165
2187
|
} | undefined;
|
|
2166
2188
|
} | undefined;
|
|
2167
|
-
isVisible?:
|
|
2189
|
+
isVisible?: boolean | string | undefined;
|
|
2168
2190
|
dark?: boolean | undefined;
|
|
2169
2191
|
light?: boolean | undefined;
|
|
2170
2192
|
theme?: string | undefined;
|
|
2171
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2193
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2172
2194
|
name: string;
|
|
2173
2195
|
parent?: {
|
|
2174
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2175
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2196
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2197
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2176
2198
|
allowDuplicate: boolean;
|
|
2177
2199
|
autofocus: boolean;
|
|
2178
2200
|
children: {
|
|
2179
2201
|
[x: string]: any;
|
|
2180
2202
|
allowDuplicate?: boolean | undefined;
|
|
2181
2203
|
autofocus?: boolean | undefined;
|
|
2182
|
-
children?: any[] | undefined;
|
|
2204
|
+
children?: /*elided*/ any[] | undefined;
|
|
2183
2205
|
componentId?: number | undefined;
|
|
2184
2206
|
cssClass?: string | undefined;
|
|
2185
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2207
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2186
2208
|
events?: {
|
|
2187
2209
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2188
2210
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2218,20 +2240,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2218
2240
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2219
2241
|
} | undefined;
|
|
2220
2242
|
} | undefined;
|
|
2221
|
-
isVisible?:
|
|
2243
|
+
isVisible?: boolean | string | undefined;
|
|
2222
2244
|
dark?: boolean | undefined;
|
|
2223
2245
|
light?: boolean | undefined;
|
|
2224
2246
|
theme?: string | undefined;
|
|
2225
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2247
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2226
2248
|
name: string;
|
|
2227
|
-
parent?: any | undefined;
|
|
2249
|
+
parent?: /*elided*/ any | undefined;
|
|
2228
2250
|
tabStop?: boolean | undefined;
|
|
2229
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2251
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2230
2252
|
fillHeight?: boolean | undefined;
|
|
2231
2253
|
}[];
|
|
2232
2254
|
componentId: number;
|
|
2233
2255
|
cssClass: string;
|
|
2234
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2256
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2235
2257
|
events: {
|
|
2236
2258
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2237
2259
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2267,35 +2289,35 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2267
2289
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2268
2290
|
} | undefined;
|
|
2269
2291
|
};
|
|
2270
|
-
isVisible:
|
|
2292
|
+
isVisible: boolean | string;
|
|
2271
2293
|
dark: boolean;
|
|
2272
2294
|
light: boolean;
|
|
2273
2295
|
theme?: string | undefined;
|
|
2274
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2296
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2275
2297
|
name: string;
|
|
2276
|
-
parent?: any | undefined;
|
|
2298
|
+
parent?: /*elided*/ any | undefined;
|
|
2277
2299
|
tabStop: boolean;
|
|
2278
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2300
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2279
2301
|
fillHeight: boolean;
|
|
2280
2302
|
} | undefined;
|
|
2281
2303
|
tabStop?: boolean | undefined;
|
|
2282
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2304
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2283
2305
|
fillHeight?: boolean | undefined;
|
|
2284
2306
|
}[] | undefined;
|
|
2285
|
-
width?:
|
|
2286
|
-
mobileBreakpoint?:
|
|
2307
|
+
width?: number | string | undefined;
|
|
2308
|
+
mobileBreakpoint?: number | string | undefined;
|
|
2287
2309
|
cache?: boolean | undefined;
|
|
2288
2310
|
disableRouteWatcher?: boolean | undefined;
|
|
2289
|
-
permanent?:
|
|
2311
|
+
permanent?: boolean | string | undefined;
|
|
2290
2312
|
children?: {
|
|
2291
2313
|
[x: string]: any;
|
|
2292
|
-
children?: any[] | undefined;
|
|
2314
|
+
children?: /*elided*/ any[] | undefined;
|
|
2293
2315
|
component: string;
|
|
2294
2316
|
allowDuplicate?: boolean | undefined;
|
|
2295
2317
|
autofocus?: boolean | undefined;
|
|
2296
2318
|
componentId?: number | undefined;
|
|
2297
2319
|
cssClass?: string | undefined;
|
|
2298
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2320
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2299
2321
|
events?: {
|
|
2300
2322
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2301
2323
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2331,25 +2353,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2331
2353
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2332
2354
|
} | undefined;
|
|
2333
2355
|
} | undefined;
|
|
2334
|
-
isVisible?:
|
|
2356
|
+
isVisible?: boolean | string | undefined;
|
|
2335
2357
|
dark?: boolean | undefined;
|
|
2336
2358
|
light?: boolean | undefined;
|
|
2337
2359
|
theme?: string | undefined;
|
|
2338
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2360
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2339
2361
|
name: string;
|
|
2340
2362
|
parent?: {
|
|
2341
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2342
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2363
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2364
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2343
2365
|
allowDuplicate: boolean;
|
|
2344
2366
|
autofocus: boolean;
|
|
2345
2367
|
children: {
|
|
2346
2368
|
[x: string]: any;
|
|
2347
2369
|
allowDuplicate?: boolean | undefined;
|
|
2348
2370
|
autofocus?: boolean | undefined;
|
|
2349
|
-
children?: any[] | undefined;
|
|
2371
|
+
children?: /*elided*/ any[] | undefined;
|
|
2350
2372
|
componentId?: number | undefined;
|
|
2351
2373
|
cssClass?: string | undefined;
|
|
2352
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2374
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2353
2375
|
events?: {
|
|
2354
2376
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2355
2377
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2385,20 +2407,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2385
2407
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2386
2408
|
} | undefined;
|
|
2387
2409
|
} | undefined;
|
|
2388
|
-
isVisible?:
|
|
2410
|
+
isVisible?: boolean | string | undefined;
|
|
2389
2411
|
dark?: boolean | undefined;
|
|
2390
2412
|
light?: boolean | undefined;
|
|
2391
2413
|
theme?: string | undefined;
|
|
2392
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2414
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2393
2415
|
name: string;
|
|
2394
|
-
parent?: any | undefined;
|
|
2416
|
+
parent?: /*elided*/ any | undefined;
|
|
2395
2417
|
tabStop?: boolean | undefined;
|
|
2396
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2418
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2397
2419
|
fillHeight?: boolean | undefined;
|
|
2398
2420
|
}[];
|
|
2399
2421
|
componentId: number;
|
|
2400
2422
|
cssClass: string;
|
|
2401
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2423
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2402
2424
|
events: {
|
|
2403
2425
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2404
2426
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2434,19 +2456,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2434
2456
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2435
2457
|
} | undefined;
|
|
2436
2458
|
};
|
|
2437
|
-
isVisible:
|
|
2459
|
+
isVisible: boolean | string;
|
|
2438
2460
|
dark: boolean;
|
|
2439
2461
|
light: boolean;
|
|
2440
2462
|
theme?: string | undefined;
|
|
2441
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2463
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2442
2464
|
name: string;
|
|
2443
|
-
parent?: any | undefined;
|
|
2465
|
+
parent?: /*elided*/ any | undefined;
|
|
2444
2466
|
tabStop: boolean;
|
|
2445
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2467
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2446
2468
|
fillHeight: boolean;
|
|
2447
2469
|
} | undefined;
|
|
2448
2470
|
tabStop?: boolean | undefined;
|
|
2449
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2471
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2450
2472
|
fillHeight?: boolean | undefined;
|
|
2451
2473
|
}[] | undefined;
|
|
2452
2474
|
component: string;
|
|
@@ -2454,7 +2476,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2454
2476
|
autofocus?: boolean | undefined;
|
|
2455
2477
|
componentId?: number | undefined;
|
|
2456
2478
|
cssClass?: string | undefined;
|
|
2457
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2479
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2458
2480
|
events?: {
|
|
2459
2481
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2460
2482
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2490,25 +2512,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2490
2512
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2491
2513
|
} | undefined;
|
|
2492
2514
|
} | undefined;
|
|
2493
|
-
isVisible?:
|
|
2515
|
+
isVisible?: boolean | string | undefined;
|
|
2494
2516
|
dark?: boolean | undefined;
|
|
2495
2517
|
light?: boolean | undefined;
|
|
2496
2518
|
theme?: string | undefined;
|
|
2497
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2519
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2498
2520
|
name: string;
|
|
2499
2521
|
parent?: {
|
|
2500
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2501
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2522
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2523
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2502
2524
|
allowDuplicate: boolean;
|
|
2503
2525
|
autofocus: boolean;
|
|
2504
2526
|
children: {
|
|
2505
2527
|
[x: string]: any;
|
|
2506
2528
|
allowDuplicate?: boolean | undefined;
|
|
2507
2529
|
autofocus?: boolean | undefined;
|
|
2508
|
-
children?: any[] | undefined;
|
|
2530
|
+
children?: /*elided*/ any[] | undefined;
|
|
2509
2531
|
componentId?: number | undefined;
|
|
2510
2532
|
cssClass?: string | undefined;
|
|
2511
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2533
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2512
2534
|
events?: {
|
|
2513
2535
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2514
2536
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2544,20 +2566,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2544
2566
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2545
2567
|
} | undefined;
|
|
2546
2568
|
} | undefined;
|
|
2547
|
-
isVisible?:
|
|
2569
|
+
isVisible?: boolean | string | undefined;
|
|
2548
2570
|
dark?: boolean | undefined;
|
|
2549
2571
|
light?: boolean | undefined;
|
|
2550
2572
|
theme?: string | undefined;
|
|
2551
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2573
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2552
2574
|
name: string;
|
|
2553
|
-
parent?: any | undefined;
|
|
2575
|
+
parent?: /*elided*/ any | undefined;
|
|
2554
2576
|
tabStop?: boolean | undefined;
|
|
2555
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2577
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2556
2578
|
fillHeight?: boolean | undefined;
|
|
2557
2579
|
}[];
|
|
2558
2580
|
componentId: number;
|
|
2559
2581
|
cssClass: string;
|
|
2560
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2582
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2561
2583
|
events: {
|
|
2562
2584
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2563
2585
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2593,52 +2615,52 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2593
2615
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2594
2616
|
} | undefined;
|
|
2595
2617
|
};
|
|
2596
|
-
isVisible:
|
|
2618
|
+
isVisible: boolean | string;
|
|
2597
2619
|
dark: boolean;
|
|
2598
2620
|
light: boolean;
|
|
2599
2621
|
theme?: string | undefined;
|
|
2600
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2622
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2601
2623
|
name: string;
|
|
2602
|
-
parent?: any | undefined;
|
|
2624
|
+
parent?: /*elided*/ any | undefined;
|
|
2603
2625
|
tabStop: boolean;
|
|
2604
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2626
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2605
2627
|
fillHeight: boolean;
|
|
2606
2628
|
} | undefined;
|
|
2607
2629
|
tabStop?: boolean | undefined;
|
|
2608
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2630
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2609
2631
|
fillHeight?: boolean | undefined;
|
|
2610
2632
|
} | undefined;
|
|
2611
2633
|
parentGroup?: {
|
|
2612
2634
|
[x: string]: any;
|
|
2613
|
-
items: any[];
|
|
2614
|
-
opened?:
|
|
2635
|
+
items: /*elided*/ any[];
|
|
2636
|
+
opened?: boolean | string | undefined;
|
|
2615
2637
|
expandIcon?: string | undefined;
|
|
2616
2638
|
parentMenu?: {
|
|
2617
2639
|
[x: string]: any;
|
|
2618
|
-
app?:
|
|
2619
|
-
absolute?:
|
|
2620
|
-
clipped?:
|
|
2621
|
-
dense?:
|
|
2622
|
-
fixed?:
|
|
2623
|
-
floating?:
|
|
2624
|
-
mini?:
|
|
2625
|
-
miniWidth?:
|
|
2626
|
-
temporary?:
|
|
2627
|
-
items?: any[] | undefined;
|
|
2640
|
+
app?: boolean | string | undefined;
|
|
2641
|
+
absolute?: boolean | string | undefined;
|
|
2642
|
+
clipped?: boolean | string | undefined;
|
|
2643
|
+
dense?: boolean | string | undefined;
|
|
2644
|
+
fixed?: boolean | string | undefined;
|
|
2645
|
+
floating?: boolean | string | undefined;
|
|
2646
|
+
mini?: boolean | string | undefined;
|
|
2647
|
+
miniWidth?: number | string | undefined;
|
|
2648
|
+
temporary?: boolean | string | undefined;
|
|
2649
|
+
items?: /*elided*/ any[] | undefined;
|
|
2628
2650
|
itemsUrl?: string | undefined;
|
|
2629
|
-
isLocal?:
|
|
2630
|
-
closeToMini?:
|
|
2631
|
-
showSearch?:
|
|
2632
|
-
opened?:
|
|
2651
|
+
isLocal?: boolean | string | undefined;
|
|
2652
|
+
closeToMini?: boolean | string | undefined;
|
|
2653
|
+
showSearch?: boolean | string | undefined;
|
|
2654
|
+
opened?: boolean | string | undefined;
|
|
2633
2655
|
topSlot?: {
|
|
2634
2656
|
[x: string]: any;
|
|
2635
|
-
children?: any[] | undefined;
|
|
2657
|
+
children?: /*elided*/ any[] | undefined;
|
|
2636
2658
|
component: string;
|
|
2637
2659
|
allowDuplicate?: boolean | undefined;
|
|
2638
2660
|
autofocus?: boolean | undefined;
|
|
2639
2661
|
componentId?: number | undefined;
|
|
2640
2662
|
cssClass?: string | undefined;
|
|
2641
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2663
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2642
2664
|
events?: {
|
|
2643
2665
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2644
2666
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2674,25 +2696,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2674
2696
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2675
2697
|
} | undefined;
|
|
2676
2698
|
} | undefined;
|
|
2677
|
-
isVisible?:
|
|
2699
|
+
isVisible?: boolean | string | undefined;
|
|
2678
2700
|
dark?: boolean | undefined;
|
|
2679
2701
|
light?: boolean | undefined;
|
|
2680
2702
|
theme?: string | undefined;
|
|
2681
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2703
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2682
2704
|
name: string;
|
|
2683
2705
|
parent?: {
|
|
2684
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2685
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2706
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2707
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2686
2708
|
allowDuplicate: boolean;
|
|
2687
2709
|
autofocus: boolean;
|
|
2688
2710
|
children: {
|
|
2689
2711
|
[x: string]: any;
|
|
2690
2712
|
allowDuplicate?: boolean | undefined;
|
|
2691
2713
|
autofocus?: boolean | undefined;
|
|
2692
|
-
children?: any[] | undefined;
|
|
2714
|
+
children?: /*elided*/ any[] | undefined;
|
|
2693
2715
|
componentId?: number | undefined;
|
|
2694
2716
|
cssClass?: string | undefined;
|
|
2695
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2717
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2696
2718
|
events?: {
|
|
2697
2719
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2698
2720
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2728,20 +2750,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2728
2750
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2729
2751
|
} | undefined;
|
|
2730
2752
|
} | undefined;
|
|
2731
|
-
isVisible?:
|
|
2753
|
+
isVisible?: boolean | string | undefined;
|
|
2732
2754
|
dark?: boolean | undefined;
|
|
2733
2755
|
light?: boolean | undefined;
|
|
2734
2756
|
theme?: string | undefined;
|
|
2735
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2757
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2736
2758
|
name: string;
|
|
2737
|
-
parent?: any | undefined;
|
|
2759
|
+
parent?: /*elided*/ any | undefined;
|
|
2738
2760
|
tabStop?: boolean | undefined;
|
|
2739
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2761
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2740
2762
|
fillHeight?: boolean | undefined;
|
|
2741
2763
|
}[];
|
|
2742
2764
|
componentId: number;
|
|
2743
2765
|
cssClass: string;
|
|
2744
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2766
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2745
2767
|
events: {
|
|
2746
2768
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2747
2769
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2777,35 +2799,35 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2777
2799
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2778
2800
|
} | undefined;
|
|
2779
2801
|
};
|
|
2780
|
-
isVisible:
|
|
2802
|
+
isVisible: boolean | string;
|
|
2781
2803
|
dark: boolean;
|
|
2782
2804
|
light: boolean;
|
|
2783
2805
|
theme?: string | undefined;
|
|
2784
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2806
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2785
2807
|
name: string;
|
|
2786
|
-
parent?: any | undefined;
|
|
2808
|
+
parent?: /*elided*/ any | undefined;
|
|
2787
2809
|
tabStop: boolean;
|
|
2788
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2810
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2789
2811
|
fillHeight: boolean;
|
|
2790
2812
|
} | undefined;
|
|
2791
2813
|
tabStop?: boolean | undefined;
|
|
2792
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2814
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2793
2815
|
fillHeight?: boolean | undefined;
|
|
2794
2816
|
}[] | undefined;
|
|
2795
|
-
width?:
|
|
2796
|
-
mobileBreakpoint?:
|
|
2817
|
+
width?: number | string | undefined;
|
|
2818
|
+
mobileBreakpoint?: number | string | undefined;
|
|
2797
2819
|
cache?: boolean | undefined;
|
|
2798
2820
|
disableRouteWatcher?: boolean | undefined;
|
|
2799
|
-
permanent?:
|
|
2821
|
+
permanent?: boolean | string | undefined;
|
|
2800
2822
|
children?: {
|
|
2801
2823
|
[x: string]: any;
|
|
2802
|
-
children?: any[] | undefined;
|
|
2824
|
+
children?: /*elided*/ any[] | undefined;
|
|
2803
2825
|
component: string;
|
|
2804
2826
|
allowDuplicate?: boolean | undefined;
|
|
2805
2827
|
autofocus?: boolean | undefined;
|
|
2806
2828
|
componentId?: number | undefined;
|
|
2807
2829
|
cssClass?: string | undefined;
|
|
2808
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2830
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2809
2831
|
events?: {
|
|
2810
2832
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2811
2833
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2841,25 +2863,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2841
2863
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2842
2864
|
} | undefined;
|
|
2843
2865
|
} | undefined;
|
|
2844
|
-
isVisible?:
|
|
2866
|
+
isVisible?: boolean | string | undefined;
|
|
2845
2867
|
dark?: boolean | undefined;
|
|
2846
2868
|
light?: boolean | undefined;
|
|
2847
2869
|
theme?: string | undefined;
|
|
2848
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2870
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2849
2871
|
name: string;
|
|
2850
2872
|
parent?: {
|
|
2851
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2852
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2873
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2874
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2853
2875
|
allowDuplicate: boolean;
|
|
2854
2876
|
autofocus: boolean;
|
|
2855
2877
|
children: {
|
|
2856
2878
|
[x: string]: any;
|
|
2857
2879
|
allowDuplicate?: boolean | undefined;
|
|
2858
2880
|
autofocus?: boolean | undefined;
|
|
2859
|
-
children?: any[] | undefined;
|
|
2881
|
+
children?: /*elided*/ any[] | undefined;
|
|
2860
2882
|
componentId?: number | undefined;
|
|
2861
2883
|
cssClass?: string | undefined;
|
|
2862
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2884
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2863
2885
|
events?: {
|
|
2864
2886
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2865
2887
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2895,20 +2917,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2895
2917
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2896
2918
|
} | undefined;
|
|
2897
2919
|
} | undefined;
|
|
2898
|
-
isVisible?:
|
|
2920
|
+
isVisible?: boolean | string | undefined;
|
|
2899
2921
|
dark?: boolean | undefined;
|
|
2900
2922
|
light?: boolean | undefined;
|
|
2901
2923
|
theme?: string | undefined;
|
|
2902
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2924
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2903
2925
|
name: string;
|
|
2904
|
-
parent?: any | undefined;
|
|
2926
|
+
parent?: /*elided*/ any | undefined;
|
|
2905
2927
|
tabStop?: boolean | undefined;
|
|
2906
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2928
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2907
2929
|
fillHeight?: boolean | undefined;
|
|
2908
2930
|
}[];
|
|
2909
2931
|
componentId: number;
|
|
2910
2932
|
cssClass: string;
|
|
2911
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2933
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2912
2934
|
events: {
|
|
2913
2935
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2914
2936
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -2944,19 +2966,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2944
2966
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
2945
2967
|
} | undefined;
|
|
2946
2968
|
};
|
|
2947
|
-
isVisible:
|
|
2969
|
+
isVisible: boolean | string;
|
|
2948
2970
|
dark: boolean;
|
|
2949
2971
|
light: boolean;
|
|
2950
2972
|
theme?: string | undefined;
|
|
2951
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2973
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2952
2974
|
name: string;
|
|
2953
|
-
parent?: any | undefined;
|
|
2975
|
+
parent?: /*elided*/ any | undefined;
|
|
2954
2976
|
tabStop: boolean;
|
|
2955
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2977
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2956
2978
|
fillHeight: boolean;
|
|
2957
2979
|
} | undefined;
|
|
2958
2980
|
tabStop?: boolean | undefined;
|
|
2959
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2981
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2960
2982
|
fillHeight?: boolean | undefined;
|
|
2961
2983
|
}[] | undefined;
|
|
2962
2984
|
component: string;
|
|
@@ -2964,7 +2986,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
2964
2986
|
autofocus?: boolean | undefined;
|
|
2965
2987
|
componentId?: number | undefined;
|
|
2966
2988
|
cssClass?: string | undefined;
|
|
2967
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2989
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2968
2990
|
events?: {
|
|
2969
2991
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
2970
2992
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3000,25 +3022,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3000
3022
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3001
3023
|
} | undefined;
|
|
3002
3024
|
} | undefined;
|
|
3003
|
-
isVisible?:
|
|
3025
|
+
isVisible?: boolean | string | undefined;
|
|
3004
3026
|
dark?: boolean | undefined;
|
|
3005
3027
|
light?: boolean | undefined;
|
|
3006
3028
|
theme?: string | undefined;
|
|
3007
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3029
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3008
3030
|
name: string;
|
|
3009
3031
|
parent?: {
|
|
3010
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3011
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3032
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3033
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3012
3034
|
allowDuplicate: boolean;
|
|
3013
3035
|
autofocus: boolean;
|
|
3014
3036
|
children: {
|
|
3015
3037
|
[x: string]: any;
|
|
3016
3038
|
allowDuplicate?: boolean | undefined;
|
|
3017
3039
|
autofocus?: boolean | undefined;
|
|
3018
|
-
children?: any[] | undefined;
|
|
3040
|
+
children?: /*elided*/ any[] | undefined;
|
|
3019
3041
|
componentId?: number | undefined;
|
|
3020
3042
|
cssClass?: string | undefined;
|
|
3021
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3043
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3022
3044
|
events?: {
|
|
3023
3045
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3024
3046
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3054,20 +3076,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3054
3076
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3055
3077
|
} | undefined;
|
|
3056
3078
|
} | undefined;
|
|
3057
|
-
isVisible?:
|
|
3079
|
+
isVisible?: boolean | string | undefined;
|
|
3058
3080
|
dark?: boolean | undefined;
|
|
3059
3081
|
light?: boolean | undefined;
|
|
3060
3082
|
theme?: string | undefined;
|
|
3061
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3083
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3062
3084
|
name: string;
|
|
3063
|
-
parent?: any | undefined;
|
|
3085
|
+
parent?: /*elided*/ any | undefined;
|
|
3064
3086
|
tabStop?: boolean | undefined;
|
|
3065
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3087
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3066
3088
|
fillHeight?: boolean | undefined;
|
|
3067
3089
|
}[];
|
|
3068
3090
|
componentId: number;
|
|
3069
3091
|
cssClass: string;
|
|
3070
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3092
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3071
3093
|
events: {
|
|
3072
3094
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3073
3095
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3103,31 +3125,31 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3103
3125
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3104
3126
|
} | undefined;
|
|
3105
3127
|
};
|
|
3106
|
-
isVisible:
|
|
3128
|
+
isVisible: boolean | string;
|
|
3107
3129
|
dark: boolean;
|
|
3108
3130
|
light: boolean;
|
|
3109
3131
|
theme?: string | undefined;
|
|
3110
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3132
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3111
3133
|
name: string;
|
|
3112
|
-
parent?: any | undefined;
|
|
3134
|
+
parent?: /*elided*/ any | undefined;
|
|
3113
3135
|
tabStop: boolean;
|
|
3114
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3136
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3115
3137
|
fillHeight: boolean;
|
|
3116
3138
|
} | undefined;
|
|
3117
3139
|
tabStop?: boolean | undefined;
|
|
3118
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3140
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3119
3141
|
fillHeight?: boolean | undefined;
|
|
3120
3142
|
} | undefined;
|
|
3121
|
-
parentGroup?: any | undefined;
|
|
3143
|
+
parentGroup?: /*elided*/ any | undefined;
|
|
3122
3144
|
children?: {
|
|
3123
3145
|
[x: string]: any;
|
|
3124
|
-
children?: any[] | undefined;
|
|
3146
|
+
children?: /*elided*/ any[] | undefined;
|
|
3125
3147
|
component: string;
|
|
3126
3148
|
allowDuplicate?: boolean | undefined;
|
|
3127
3149
|
autofocus?: boolean | undefined;
|
|
3128
3150
|
componentId?: number | undefined;
|
|
3129
3151
|
cssClass?: string | undefined;
|
|
3130
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3152
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3131
3153
|
events?: {
|
|
3132
3154
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3133
3155
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3163,25 +3185,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3163
3185
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3164
3186
|
} | undefined;
|
|
3165
3187
|
} | undefined;
|
|
3166
|
-
isVisible?:
|
|
3188
|
+
isVisible?: boolean | string | undefined;
|
|
3167
3189
|
dark?: boolean | undefined;
|
|
3168
3190
|
light?: boolean | undefined;
|
|
3169
3191
|
theme?: string | undefined;
|
|
3170
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3192
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3171
3193
|
name: string;
|
|
3172
3194
|
parent?: {
|
|
3173
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3174
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3195
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3196
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3175
3197
|
allowDuplicate: boolean;
|
|
3176
3198
|
autofocus: boolean;
|
|
3177
3199
|
children: {
|
|
3178
3200
|
[x: string]: any;
|
|
3179
3201
|
allowDuplicate?: boolean | undefined;
|
|
3180
3202
|
autofocus?: boolean | undefined;
|
|
3181
|
-
children?: any[] | undefined;
|
|
3203
|
+
children?: /*elided*/ any[] | undefined;
|
|
3182
3204
|
componentId?: number | undefined;
|
|
3183
3205
|
cssClass?: string | undefined;
|
|
3184
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3206
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3185
3207
|
events?: {
|
|
3186
3208
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3187
3209
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3217,20 +3239,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3217
3239
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3218
3240
|
} | undefined;
|
|
3219
3241
|
} | undefined;
|
|
3220
|
-
isVisible?:
|
|
3242
|
+
isVisible?: boolean | string | undefined;
|
|
3221
3243
|
dark?: boolean | undefined;
|
|
3222
3244
|
light?: boolean | undefined;
|
|
3223
3245
|
theme?: string | undefined;
|
|
3224
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3246
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3225
3247
|
name: string;
|
|
3226
|
-
parent?: any | undefined;
|
|
3248
|
+
parent?: /*elided*/ any | undefined;
|
|
3227
3249
|
tabStop?: boolean | undefined;
|
|
3228
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3250
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3229
3251
|
fillHeight?: boolean | undefined;
|
|
3230
3252
|
}[];
|
|
3231
3253
|
componentId: number;
|
|
3232
3254
|
cssClass: string;
|
|
3233
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3255
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3234
3256
|
events: {
|
|
3235
3257
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3236
3258
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3266,19 +3288,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3266
3288
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3267
3289
|
} | undefined;
|
|
3268
3290
|
};
|
|
3269
|
-
isVisible:
|
|
3291
|
+
isVisible: boolean | string;
|
|
3270
3292
|
dark: boolean;
|
|
3271
3293
|
light: boolean;
|
|
3272
3294
|
theme?: string | undefined;
|
|
3273
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3295
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3274
3296
|
name: string;
|
|
3275
|
-
parent?: any | undefined;
|
|
3297
|
+
parent?: /*elided*/ any | undefined;
|
|
3276
3298
|
tabStop: boolean;
|
|
3277
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3299
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3278
3300
|
fillHeight: boolean;
|
|
3279
3301
|
} | undefined;
|
|
3280
3302
|
tabStop?: boolean | undefined;
|
|
3281
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3303
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3282
3304
|
fillHeight?: boolean | undefined;
|
|
3283
3305
|
}[] | undefined;
|
|
3284
3306
|
component: string;
|
|
@@ -3286,7 +3308,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3286
3308
|
autofocus?: boolean | undefined;
|
|
3287
3309
|
componentId?: number | undefined;
|
|
3288
3310
|
cssClass?: string | undefined;
|
|
3289
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3311
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3290
3312
|
events?: {
|
|
3291
3313
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3292
3314
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3322,25 +3344,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3322
3344
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3323
3345
|
} | undefined;
|
|
3324
3346
|
} | undefined;
|
|
3325
|
-
isVisible?:
|
|
3347
|
+
isVisible?: boolean | string | undefined;
|
|
3326
3348
|
dark?: boolean | undefined;
|
|
3327
3349
|
light?: boolean | undefined;
|
|
3328
3350
|
theme?: string | undefined;
|
|
3329
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3351
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3330
3352
|
name: string;
|
|
3331
3353
|
parent?: {
|
|
3332
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3333
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3354
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3355
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3334
3356
|
allowDuplicate: boolean;
|
|
3335
3357
|
autofocus: boolean;
|
|
3336
3358
|
children: {
|
|
3337
3359
|
[x: string]: any;
|
|
3338
3360
|
allowDuplicate?: boolean | undefined;
|
|
3339
3361
|
autofocus?: boolean | undefined;
|
|
3340
|
-
children?: any[] | undefined;
|
|
3362
|
+
children?: /*elided*/ any[] | undefined;
|
|
3341
3363
|
componentId?: number | undefined;
|
|
3342
3364
|
cssClass?: string | undefined;
|
|
3343
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3365
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3344
3366
|
events?: {
|
|
3345
3367
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3346
3368
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3376,20 +3398,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3376
3398
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3377
3399
|
} | undefined;
|
|
3378
3400
|
} | undefined;
|
|
3379
|
-
isVisible?:
|
|
3401
|
+
isVisible?: boolean | string | undefined;
|
|
3380
3402
|
dark?: boolean | undefined;
|
|
3381
3403
|
light?: boolean | undefined;
|
|
3382
3404
|
theme?: string | undefined;
|
|
3383
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3405
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3384
3406
|
name: string;
|
|
3385
|
-
parent?: any | undefined;
|
|
3407
|
+
parent?: /*elided*/ any | undefined;
|
|
3386
3408
|
tabStop?: boolean | undefined;
|
|
3387
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3409
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3388
3410
|
fillHeight?: boolean | undefined;
|
|
3389
3411
|
}[];
|
|
3390
3412
|
componentId: number;
|
|
3391
3413
|
cssClass: string;
|
|
3392
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3414
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3393
3415
|
events: {
|
|
3394
3416
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3395
3417
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3425,32 +3447,32 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3425
3447
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3426
3448
|
} | undefined;
|
|
3427
3449
|
};
|
|
3428
|
-
isVisible:
|
|
3450
|
+
isVisible: boolean | string;
|
|
3429
3451
|
dark: boolean;
|
|
3430
3452
|
light: boolean;
|
|
3431
3453
|
theme?: string | undefined;
|
|
3432
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3454
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3433
3455
|
name: string;
|
|
3434
|
-
parent?: any | undefined;
|
|
3456
|
+
parent?: /*elided*/ any | undefined;
|
|
3435
3457
|
tabStop: boolean;
|
|
3436
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3458
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3437
3459
|
fillHeight: boolean;
|
|
3438
3460
|
} | undefined;
|
|
3439
3461
|
tabStop?: boolean | undefined;
|
|
3440
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3462
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3441
3463
|
fillHeight?: boolean | undefined;
|
|
3442
3464
|
label: string;
|
|
3443
3465
|
icon?: string | undefined;
|
|
3444
3466
|
} | undefined;
|
|
3445
3467
|
children?: {
|
|
3446
3468
|
[x: string]: any;
|
|
3447
|
-
children?: any[] | undefined;
|
|
3469
|
+
children?: /*elided*/ any[] | undefined;
|
|
3448
3470
|
component: string;
|
|
3449
3471
|
allowDuplicate?: boolean | undefined;
|
|
3450
3472
|
autofocus?: boolean | undefined;
|
|
3451
3473
|
componentId?: number | undefined;
|
|
3452
3474
|
cssClass?: string | undefined;
|
|
3453
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3475
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3454
3476
|
events?: {
|
|
3455
3477
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3456
3478
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3486,25 +3508,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3486
3508
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3487
3509
|
} | undefined;
|
|
3488
3510
|
} | undefined;
|
|
3489
|
-
isVisible?:
|
|
3511
|
+
isVisible?: boolean | string | undefined;
|
|
3490
3512
|
dark?: boolean | undefined;
|
|
3491
3513
|
light?: boolean | undefined;
|
|
3492
3514
|
theme?: string | undefined;
|
|
3493
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3515
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3494
3516
|
name: string;
|
|
3495
3517
|
parent?: {
|
|
3496
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3497
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3518
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3519
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3498
3520
|
allowDuplicate: boolean;
|
|
3499
3521
|
autofocus: boolean;
|
|
3500
3522
|
children: {
|
|
3501
3523
|
[x: string]: any;
|
|
3502
3524
|
allowDuplicate?: boolean | undefined;
|
|
3503
3525
|
autofocus?: boolean | undefined;
|
|
3504
|
-
children?: any[] | undefined;
|
|
3526
|
+
children?: /*elided*/ any[] | undefined;
|
|
3505
3527
|
componentId?: number | undefined;
|
|
3506
3528
|
cssClass?: string | undefined;
|
|
3507
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3529
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3508
3530
|
events?: {
|
|
3509
3531
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3510
3532
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3540,20 +3562,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3540
3562
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3541
3563
|
} | undefined;
|
|
3542
3564
|
} | undefined;
|
|
3543
|
-
isVisible?:
|
|
3565
|
+
isVisible?: boolean | string | undefined;
|
|
3544
3566
|
dark?: boolean | undefined;
|
|
3545
3567
|
light?: boolean | undefined;
|
|
3546
3568
|
theme?: string | undefined;
|
|
3547
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3569
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3548
3570
|
name: string;
|
|
3549
|
-
parent?: any | undefined;
|
|
3571
|
+
parent?: /*elided*/ any | undefined;
|
|
3550
3572
|
tabStop?: boolean | undefined;
|
|
3551
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3573
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3552
3574
|
fillHeight?: boolean | undefined;
|
|
3553
3575
|
}[];
|
|
3554
3576
|
componentId: number;
|
|
3555
3577
|
cssClass: string;
|
|
3556
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3578
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3557
3579
|
events: {
|
|
3558
3580
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3559
3581
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3589,19 +3611,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3589
3611
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3590
3612
|
} | undefined;
|
|
3591
3613
|
};
|
|
3592
|
-
isVisible:
|
|
3614
|
+
isVisible: boolean | string;
|
|
3593
3615
|
dark: boolean;
|
|
3594
3616
|
light: boolean;
|
|
3595
3617
|
theme?: string | undefined;
|
|
3596
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3618
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3597
3619
|
name: string;
|
|
3598
|
-
parent?: any | undefined;
|
|
3620
|
+
parent?: /*elided*/ any | undefined;
|
|
3599
3621
|
tabStop: boolean;
|
|
3600
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3622
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3601
3623
|
fillHeight: boolean;
|
|
3602
3624
|
} | undefined;
|
|
3603
3625
|
tabStop?: boolean | undefined;
|
|
3604
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3626
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3605
3627
|
fillHeight?: boolean | undefined;
|
|
3606
3628
|
}[] | undefined;
|
|
3607
3629
|
component: string;
|
|
@@ -3609,7 +3631,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3609
3631
|
autofocus?: boolean | undefined;
|
|
3610
3632
|
componentId?: number | undefined;
|
|
3611
3633
|
cssClass?: string | undefined;
|
|
3612
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3634
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3613
3635
|
events?: {
|
|
3614
3636
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3615
3637
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3645,25 +3667,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3645
3667
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3646
3668
|
} | undefined;
|
|
3647
3669
|
} | undefined;
|
|
3648
|
-
isVisible?:
|
|
3670
|
+
isVisible?: boolean | string | undefined;
|
|
3649
3671
|
dark?: boolean | undefined;
|
|
3650
3672
|
light?: boolean | undefined;
|
|
3651
3673
|
theme?: string | undefined;
|
|
3652
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3674
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3653
3675
|
name: string;
|
|
3654
3676
|
parent?: {
|
|
3655
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3656
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3677
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3678
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3657
3679
|
allowDuplicate: boolean;
|
|
3658
3680
|
autofocus: boolean;
|
|
3659
3681
|
children: {
|
|
3660
3682
|
[x: string]: any;
|
|
3661
3683
|
allowDuplicate?: boolean | undefined;
|
|
3662
3684
|
autofocus?: boolean | undefined;
|
|
3663
|
-
children?: any[] | undefined;
|
|
3685
|
+
children?: /*elided*/ any[] | undefined;
|
|
3664
3686
|
componentId?: number | undefined;
|
|
3665
3687
|
cssClass?: string | undefined;
|
|
3666
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3688
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3667
3689
|
events?: {
|
|
3668
3690
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3669
3691
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3699,20 +3721,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3699
3721
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3700
3722
|
} | undefined;
|
|
3701
3723
|
} | undefined;
|
|
3702
|
-
isVisible?:
|
|
3724
|
+
isVisible?: boolean | string | undefined;
|
|
3703
3725
|
dark?: boolean | undefined;
|
|
3704
3726
|
light?: boolean | undefined;
|
|
3705
3727
|
theme?: string | undefined;
|
|
3706
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3728
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3707
3729
|
name: string;
|
|
3708
|
-
parent?: any | undefined;
|
|
3730
|
+
parent?: /*elided*/ any | undefined;
|
|
3709
3731
|
tabStop?: boolean | undefined;
|
|
3710
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3732
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3711
3733
|
fillHeight?: boolean | undefined;
|
|
3712
3734
|
}[];
|
|
3713
3735
|
componentId: number;
|
|
3714
3736
|
cssClass: string;
|
|
3715
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3737
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3716
3738
|
events: {
|
|
3717
3739
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3718
3740
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3748,19 +3770,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3748
3770
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3749
3771
|
} | undefined;
|
|
3750
3772
|
};
|
|
3751
|
-
isVisible:
|
|
3773
|
+
isVisible: boolean | string;
|
|
3752
3774
|
dark: boolean;
|
|
3753
3775
|
light: boolean;
|
|
3754
3776
|
theme?: string | undefined;
|
|
3755
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3777
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3756
3778
|
name: string;
|
|
3757
|
-
parent?: any | undefined;
|
|
3779
|
+
parent?: /*elided*/ any | undefined;
|
|
3758
3780
|
tabStop: boolean;
|
|
3759
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3781
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3760
3782
|
fillHeight: boolean;
|
|
3761
3783
|
} | undefined;
|
|
3762
3784
|
tabStop?: boolean | undefined;
|
|
3763
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3785
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3764
3786
|
fillHeight?: boolean | undefined;
|
|
3765
3787
|
} | null;
|
|
3766
3788
|
cache?: boolean | undefined;
|
|
@@ -3770,30 +3792,30 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3770
3792
|
[x: string]: any;
|
|
3771
3793
|
parentMenu?: {
|
|
3772
3794
|
[x: string]: any;
|
|
3773
|
-
app?:
|
|
3774
|
-
absolute?:
|
|
3775
|
-
clipped?:
|
|
3776
|
-
dense?:
|
|
3777
|
-
fixed?:
|
|
3778
|
-
floating?:
|
|
3779
|
-
mini?:
|
|
3780
|
-
miniWidth?:
|
|
3781
|
-
temporary?:
|
|
3782
|
-
items?: any[] | undefined;
|
|
3795
|
+
app?: boolean | string | undefined;
|
|
3796
|
+
absolute?: boolean | string | undefined;
|
|
3797
|
+
clipped?: boolean | string | undefined;
|
|
3798
|
+
dense?: boolean | string | undefined;
|
|
3799
|
+
fixed?: boolean | string | undefined;
|
|
3800
|
+
floating?: boolean | string | undefined;
|
|
3801
|
+
mini?: boolean | string | undefined;
|
|
3802
|
+
miniWidth?: number | string | undefined;
|
|
3803
|
+
temporary?: boolean | string | undefined;
|
|
3804
|
+
items?: /*elided*/ any[] | undefined;
|
|
3783
3805
|
itemsUrl?: string | undefined;
|
|
3784
|
-
isLocal?:
|
|
3785
|
-
closeToMini?:
|
|
3786
|
-
showSearch?:
|
|
3787
|
-
opened?:
|
|
3806
|
+
isLocal?: boolean | string | undefined;
|
|
3807
|
+
closeToMini?: boolean | string | undefined;
|
|
3808
|
+
showSearch?: boolean | string | undefined;
|
|
3809
|
+
opened?: boolean | string | undefined;
|
|
3788
3810
|
topSlot?: {
|
|
3789
3811
|
[x: string]: any;
|
|
3790
|
-
children?: any[] | undefined;
|
|
3812
|
+
children?: /*elided*/ any[] | undefined;
|
|
3791
3813
|
component: string;
|
|
3792
3814
|
allowDuplicate?: boolean | undefined;
|
|
3793
3815
|
autofocus?: boolean | undefined;
|
|
3794
3816
|
componentId?: number | undefined;
|
|
3795
3817
|
cssClass?: string | undefined;
|
|
3796
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3818
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3797
3819
|
events?: {
|
|
3798
3820
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3799
3821
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3829,25 +3851,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3829
3851
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3830
3852
|
} | undefined;
|
|
3831
3853
|
} | undefined;
|
|
3832
|
-
isVisible?:
|
|
3854
|
+
isVisible?: boolean | string | undefined;
|
|
3833
3855
|
dark?: boolean | undefined;
|
|
3834
3856
|
light?: boolean | undefined;
|
|
3835
3857
|
theme?: string | undefined;
|
|
3836
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3858
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3837
3859
|
name: string;
|
|
3838
3860
|
parent?: {
|
|
3839
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3840
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3861
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3862
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3841
3863
|
allowDuplicate: boolean;
|
|
3842
3864
|
autofocus: boolean;
|
|
3843
3865
|
children: {
|
|
3844
3866
|
[x: string]: any;
|
|
3845
3867
|
allowDuplicate?: boolean | undefined;
|
|
3846
3868
|
autofocus?: boolean | undefined;
|
|
3847
|
-
children?: any[] | undefined;
|
|
3869
|
+
children?: /*elided*/ any[] | undefined;
|
|
3848
3870
|
componentId?: number | undefined;
|
|
3849
3871
|
cssClass?: string | undefined;
|
|
3850
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3872
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3851
3873
|
events?: {
|
|
3852
3874
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3853
3875
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3883,20 +3905,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3883
3905
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3884
3906
|
} | undefined;
|
|
3885
3907
|
} | undefined;
|
|
3886
|
-
isVisible?:
|
|
3908
|
+
isVisible?: boolean | string | undefined;
|
|
3887
3909
|
dark?: boolean | undefined;
|
|
3888
3910
|
light?: boolean | undefined;
|
|
3889
3911
|
theme?: string | undefined;
|
|
3890
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3912
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3891
3913
|
name: string;
|
|
3892
|
-
parent?: any | undefined;
|
|
3914
|
+
parent?: /*elided*/ any | undefined;
|
|
3893
3915
|
tabStop?: boolean | undefined;
|
|
3894
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3916
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3895
3917
|
fillHeight?: boolean | undefined;
|
|
3896
3918
|
}[];
|
|
3897
3919
|
componentId: number;
|
|
3898
3920
|
cssClass: string;
|
|
3899
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3921
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3900
3922
|
events: {
|
|
3901
3923
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3902
3924
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3932,35 +3954,35 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3932
3954
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3933
3955
|
} | undefined;
|
|
3934
3956
|
};
|
|
3935
|
-
isVisible:
|
|
3957
|
+
isVisible: boolean | string;
|
|
3936
3958
|
dark: boolean;
|
|
3937
3959
|
light: boolean;
|
|
3938
3960
|
theme?: string | undefined;
|
|
3939
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3961
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3940
3962
|
name: string;
|
|
3941
|
-
parent?: any | undefined;
|
|
3963
|
+
parent?: /*elided*/ any | undefined;
|
|
3942
3964
|
tabStop: boolean;
|
|
3943
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3965
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3944
3966
|
fillHeight: boolean;
|
|
3945
3967
|
} | undefined;
|
|
3946
3968
|
tabStop?: boolean | undefined;
|
|
3947
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3969
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3948
3970
|
fillHeight?: boolean | undefined;
|
|
3949
3971
|
}[] | undefined;
|
|
3950
|
-
width?:
|
|
3951
|
-
mobileBreakpoint?:
|
|
3972
|
+
width?: number | string | undefined;
|
|
3973
|
+
mobileBreakpoint?: number | string | undefined;
|
|
3952
3974
|
cache?: boolean | undefined;
|
|
3953
3975
|
disableRouteWatcher?: boolean | undefined;
|
|
3954
|
-
permanent?:
|
|
3976
|
+
permanent?: boolean | string | undefined;
|
|
3955
3977
|
children?: {
|
|
3956
3978
|
[x: string]: any;
|
|
3957
|
-
children?: any[] | undefined;
|
|
3979
|
+
children?: /*elided*/ any[] | undefined;
|
|
3958
3980
|
component: string;
|
|
3959
3981
|
allowDuplicate?: boolean | undefined;
|
|
3960
3982
|
autofocus?: boolean | undefined;
|
|
3961
3983
|
componentId?: number | undefined;
|
|
3962
3984
|
cssClass?: string | undefined;
|
|
3963
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3985
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3964
3986
|
events?: {
|
|
3965
3987
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
3966
3988
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -3996,25 +4018,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
3996
4018
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
3997
4019
|
} | undefined;
|
|
3998
4020
|
} | undefined;
|
|
3999
|
-
isVisible?:
|
|
4021
|
+
isVisible?: boolean | string | undefined;
|
|
4000
4022
|
dark?: boolean | undefined;
|
|
4001
4023
|
light?: boolean | undefined;
|
|
4002
4024
|
theme?: string | undefined;
|
|
4003
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4025
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4004
4026
|
name: string;
|
|
4005
4027
|
parent?: {
|
|
4006
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4007
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
4028
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
4029
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4008
4030
|
allowDuplicate: boolean;
|
|
4009
4031
|
autofocus: boolean;
|
|
4010
4032
|
children: {
|
|
4011
4033
|
[x: string]: any;
|
|
4012
4034
|
allowDuplicate?: boolean | undefined;
|
|
4013
4035
|
autofocus?: boolean | undefined;
|
|
4014
|
-
children?: any[] | undefined;
|
|
4036
|
+
children?: /*elided*/ any[] | undefined;
|
|
4015
4037
|
componentId?: number | undefined;
|
|
4016
4038
|
cssClass?: string | undefined;
|
|
4017
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4039
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4018
4040
|
events?: {
|
|
4019
4041
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4020
4042
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4050,20 +4072,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4050
4072
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4051
4073
|
} | undefined;
|
|
4052
4074
|
} | undefined;
|
|
4053
|
-
isVisible?:
|
|
4075
|
+
isVisible?: boolean | string | undefined;
|
|
4054
4076
|
dark?: boolean | undefined;
|
|
4055
4077
|
light?: boolean | undefined;
|
|
4056
4078
|
theme?: string | undefined;
|
|
4057
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4079
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4058
4080
|
name: string;
|
|
4059
|
-
parent?: any | undefined;
|
|
4081
|
+
parent?: /*elided*/ any | undefined;
|
|
4060
4082
|
tabStop?: boolean | undefined;
|
|
4061
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4083
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4062
4084
|
fillHeight?: boolean | undefined;
|
|
4063
4085
|
}[];
|
|
4064
4086
|
componentId: number;
|
|
4065
4087
|
cssClass: string;
|
|
4066
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4088
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4067
4089
|
events: {
|
|
4068
4090
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4069
4091
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4099,19 +4121,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4099
4121
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4100
4122
|
} | undefined;
|
|
4101
4123
|
};
|
|
4102
|
-
isVisible:
|
|
4124
|
+
isVisible: boolean | string;
|
|
4103
4125
|
dark: boolean;
|
|
4104
4126
|
light: boolean;
|
|
4105
4127
|
theme?: string | undefined;
|
|
4106
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4128
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4107
4129
|
name: string;
|
|
4108
|
-
parent?: any | undefined;
|
|
4130
|
+
parent?: /*elided*/ any | undefined;
|
|
4109
4131
|
tabStop: boolean;
|
|
4110
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4132
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4111
4133
|
fillHeight: boolean;
|
|
4112
4134
|
} | undefined;
|
|
4113
4135
|
tabStop?: boolean | undefined;
|
|
4114
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4136
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4115
4137
|
fillHeight?: boolean | undefined;
|
|
4116
4138
|
}[] | undefined;
|
|
4117
4139
|
component: string;
|
|
@@ -4119,7 +4141,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4119
4141
|
autofocus?: boolean | undefined;
|
|
4120
4142
|
componentId?: number | undefined;
|
|
4121
4143
|
cssClass?: string | undefined;
|
|
4122
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4144
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4123
4145
|
events?: {
|
|
4124
4146
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4125
4147
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4155,25 +4177,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4155
4177
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4156
4178
|
} | undefined;
|
|
4157
4179
|
} | undefined;
|
|
4158
|
-
isVisible?:
|
|
4180
|
+
isVisible?: boolean | string | undefined;
|
|
4159
4181
|
dark?: boolean | undefined;
|
|
4160
4182
|
light?: boolean | undefined;
|
|
4161
4183
|
theme?: string | undefined;
|
|
4162
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4184
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4163
4185
|
name: string;
|
|
4164
4186
|
parent?: {
|
|
4165
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4166
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
4187
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
4188
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4167
4189
|
allowDuplicate: boolean;
|
|
4168
4190
|
autofocus: boolean;
|
|
4169
4191
|
children: {
|
|
4170
4192
|
[x: string]: any;
|
|
4171
4193
|
allowDuplicate?: boolean | undefined;
|
|
4172
4194
|
autofocus?: boolean | undefined;
|
|
4173
|
-
children?: any[] | undefined;
|
|
4195
|
+
children?: /*elided*/ any[] | undefined;
|
|
4174
4196
|
componentId?: number | undefined;
|
|
4175
4197
|
cssClass?: string | undefined;
|
|
4176
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4198
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4177
4199
|
events?: {
|
|
4178
4200
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4179
4201
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4209,20 +4231,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4209
4231
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4210
4232
|
} | undefined;
|
|
4211
4233
|
} | undefined;
|
|
4212
|
-
isVisible?:
|
|
4234
|
+
isVisible?: boolean | string | undefined;
|
|
4213
4235
|
dark?: boolean | undefined;
|
|
4214
4236
|
light?: boolean | undefined;
|
|
4215
4237
|
theme?: string | undefined;
|
|
4216
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4238
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4217
4239
|
name: string;
|
|
4218
|
-
parent?: any | undefined;
|
|
4240
|
+
parent?: /*elided*/ any | undefined;
|
|
4219
4241
|
tabStop?: boolean | undefined;
|
|
4220
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4242
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4221
4243
|
fillHeight?: boolean | undefined;
|
|
4222
4244
|
}[];
|
|
4223
4245
|
componentId: number;
|
|
4224
4246
|
cssClass: string;
|
|
4225
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4247
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4226
4248
|
events: {
|
|
4227
4249
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4228
4250
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4258,52 +4280,52 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4258
4280
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4259
4281
|
} | undefined;
|
|
4260
4282
|
};
|
|
4261
|
-
isVisible:
|
|
4283
|
+
isVisible: boolean | string;
|
|
4262
4284
|
dark: boolean;
|
|
4263
4285
|
light: boolean;
|
|
4264
4286
|
theme?: string | undefined;
|
|
4265
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4287
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4266
4288
|
name: string;
|
|
4267
|
-
parent?: any | undefined;
|
|
4289
|
+
parent?: /*elided*/ any | undefined;
|
|
4268
4290
|
tabStop: boolean;
|
|
4269
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4291
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4270
4292
|
fillHeight: boolean;
|
|
4271
4293
|
} | undefined;
|
|
4272
4294
|
tabStop?: boolean | undefined;
|
|
4273
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4295
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4274
4296
|
fillHeight?: boolean | undefined;
|
|
4275
4297
|
} | undefined;
|
|
4276
4298
|
parentGroup?: {
|
|
4277
4299
|
[x: string]: any;
|
|
4278
|
-
items: any[];
|
|
4279
|
-
opened?:
|
|
4300
|
+
items: /*elided*/ any[];
|
|
4301
|
+
opened?: boolean | string | undefined;
|
|
4280
4302
|
expandIcon?: string | undefined;
|
|
4281
4303
|
parentMenu?: {
|
|
4282
4304
|
[x: string]: any;
|
|
4283
|
-
app?:
|
|
4284
|
-
absolute?:
|
|
4285
|
-
clipped?:
|
|
4286
|
-
dense?:
|
|
4287
|
-
fixed?:
|
|
4288
|
-
floating?:
|
|
4289
|
-
mini?:
|
|
4290
|
-
miniWidth?:
|
|
4291
|
-
temporary?:
|
|
4292
|
-
items?: any[] | undefined;
|
|
4305
|
+
app?: boolean | string | undefined;
|
|
4306
|
+
absolute?: boolean | string | undefined;
|
|
4307
|
+
clipped?: boolean | string | undefined;
|
|
4308
|
+
dense?: boolean | string | undefined;
|
|
4309
|
+
fixed?: boolean | string | undefined;
|
|
4310
|
+
floating?: boolean | string | undefined;
|
|
4311
|
+
mini?: boolean | string | undefined;
|
|
4312
|
+
miniWidth?: number | string | undefined;
|
|
4313
|
+
temporary?: boolean | string | undefined;
|
|
4314
|
+
items?: /*elided*/ any[] | undefined;
|
|
4293
4315
|
itemsUrl?: string | undefined;
|
|
4294
|
-
isLocal?:
|
|
4295
|
-
closeToMini?:
|
|
4296
|
-
showSearch?:
|
|
4297
|
-
opened?:
|
|
4316
|
+
isLocal?: boolean | string | undefined;
|
|
4317
|
+
closeToMini?: boolean | string | undefined;
|
|
4318
|
+
showSearch?: boolean | string | undefined;
|
|
4319
|
+
opened?: boolean | string | undefined;
|
|
4298
4320
|
topSlot?: {
|
|
4299
4321
|
[x: string]: any;
|
|
4300
|
-
children?: any[] | undefined;
|
|
4322
|
+
children?: /*elided*/ any[] | undefined;
|
|
4301
4323
|
component: string;
|
|
4302
4324
|
allowDuplicate?: boolean | undefined;
|
|
4303
4325
|
autofocus?: boolean | undefined;
|
|
4304
4326
|
componentId?: number | undefined;
|
|
4305
4327
|
cssClass?: string | undefined;
|
|
4306
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4328
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4307
4329
|
events?: {
|
|
4308
4330
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4309
4331
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4339,25 +4361,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4339
4361
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4340
4362
|
} | undefined;
|
|
4341
4363
|
} | undefined;
|
|
4342
|
-
isVisible?:
|
|
4364
|
+
isVisible?: boolean | string | undefined;
|
|
4343
4365
|
dark?: boolean | undefined;
|
|
4344
4366
|
light?: boolean | undefined;
|
|
4345
4367
|
theme?: string | undefined;
|
|
4346
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4368
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4347
4369
|
name: string;
|
|
4348
4370
|
parent?: {
|
|
4349
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4350
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
4371
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
4372
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4351
4373
|
allowDuplicate: boolean;
|
|
4352
4374
|
autofocus: boolean;
|
|
4353
4375
|
children: {
|
|
4354
4376
|
[x: string]: any;
|
|
4355
4377
|
allowDuplicate?: boolean | undefined;
|
|
4356
4378
|
autofocus?: boolean | undefined;
|
|
4357
|
-
children?: any[] | undefined;
|
|
4379
|
+
children?: /*elided*/ any[] | undefined;
|
|
4358
4380
|
componentId?: number | undefined;
|
|
4359
4381
|
cssClass?: string | undefined;
|
|
4360
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4382
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4361
4383
|
events?: {
|
|
4362
4384
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4363
4385
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4393,20 +4415,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4393
4415
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4394
4416
|
} | undefined;
|
|
4395
4417
|
} | undefined;
|
|
4396
|
-
isVisible?:
|
|
4418
|
+
isVisible?: boolean | string | undefined;
|
|
4397
4419
|
dark?: boolean | undefined;
|
|
4398
4420
|
light?: boolean | undefined;
|
|
4399
4421
|
theme?: string | undefined;
|
|
4400
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4422
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4401
4423
|
name: string;
|
|
4402
|
-
parent?: any | undefined;
|
|
4424
|
+
parent?: /*elided*/ any | undefined;
|
|
4403
4425
|
tabStop?: boolean | undefined;
|
|
4404
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4426
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4405
4427
|
fillHeight?: boolean | undefined;
|
|
4406
4428
|
}[];
|
|
4407
4429
|
componentId: number;
|
|
4408
4430
|
cssClass: string;
|
|
4409
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4431
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4410
4432
|
events: {
|
|
4411
4433
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4412
4434
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4442,35 +4464,35 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4442
4464
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4443
4465
|
} | undefined;
|
|
4444
4466
|
};
|
|
4445
|
-
isVisible:
|
|
4467
|
+
isVisible: boolean | string;
|
|
4446
4468
|
dark: boolean;
|
|
4447
4469
|
light: boolean;
|
|
4448
4470
|
theme?: string | undefined;
|
|
4449
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4471
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4450
4472
|
name: string;
|
|
4451
|
-
parent?: any | undefined;
|
|
4473
|
+
parent?: /*elided*/ any | undefined;
|
|
4452
4474
|
tabStop: boolean;
|
|
4453
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4475
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4454
4476
|
fillHeight: boolean;
|
|
4455
4477
|
} | undefined;
|
|
4456
4478
|
tabStop?: boolean | undefined;
|
|
4457
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4479
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4458
4480
|
fillHeight?: boolean | undefined;
|
|
4459
4481
|
}[] | undefined;
|
|
4460
|
-
width?:
|
|
4461
|
-
mobileBreakpoint?:
|
|
4482
|
+
width?: number | string | undefined;
|
|
4483
|
+
mobileBreakpoint?: number | string | undefined;
|
|
4462
4484
|
cache?: boolean | undefined;
|
|
4463
4485
|
disableRouteWatcher?: boolean | undefined;
|
|
4464
|
-
permanent?:
|
|
4486
|
+
permanent?: boolean | string | undefined;
|
|
4465
4487
|
children?: {
|
|
4466
4488
|
[x: string]: any;
|
|
4467
|
-
children?: any[] | undefined;
|
|
4489
|
+
children?: /*elided*/ any[] | undefined;
|
|
4468
4490
|
component: string;
|
|
4469
4491
|
allowDuplicate?: boolean | undefined;
|
|
4470
4492
|
autofocus?: boolean | undefined;
|
|
4471
4493
|
componentId?: number | undefined;
|
|
4472
4494
|
cssClass?: string | undefined;
|
|
4473
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4495
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4474
4496
|
events?: {
|
|
4475
4497
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4476
4498
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4506,25 +4528,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4506
4528
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4507
4529
|
} | undefined;
|
|
4508
4530
|
} | undefined;
|
|
4509
|
-
isVisible?:
|
|
4531
|
+
isVisible?: boolean | string | undefined;
|
|
4510
4532
|
dark?: boolean | undefined;
|
|
4511
4533
|
light?: boolean | undefined;
|
|
4512
4534
|
theme?: string | undefined;
|
|
4513
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4535
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4514
4536
|
name: string;
|
|
4515
4537
|
parent?: {
|
|
4516
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4517
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
4538
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
4539
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4518
4540
|
allowDuplicate: boolean;
|
|
4519
4541
|
autofocus: boolean;
|
|
4520
4542
|
children: {
|
|
4521
4543
|
[x: string]: any;
|
|
4522
4544
|
allowDuplicate?: boolean | undefined;
|
|
4523
4545
|
autofocus?: boolean | undefined;
|
|
4524
|
-
children?: any[] | undefined;
|
|
4546
|
+
children?: /*elided*/ any[] | undefined;
|
|
4525
4547
|
componentId?: number | undefined;
|
|
4526
4548
|
cssClass?: string | undefined;
|
|
4527
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4549
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4528
4550
|
events?: {
|
|
4529
4551
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4530
4552
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4560,20 +4582,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4560
4582
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4561
4583
|
} | undefined;
|
|
4562
4584
|
} | undefined;
|
|
4563
|
-
isVisible?:
|
|
4585
|
+
isVisible?: boolean | string | undefined;
|
|
4564
4586
|
dark?: boolean | undefined;
|
|
4565
4587
|
light?: boolean | undefined;
|
|
4566
4588
|
theme?: string | undefined;
|
|
4567
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4589
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4568
4590
|
name: string;
|
|
4569
|
-
parent?: any | undefined;
|
|
4591
|
+
parent?: /*elided*/ any | undefined;
|
|
4570
4592
|
tabStop?: boolean | undefined;
|
|
4571
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4593
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4572
4594
|
fillHeight?: boolean | undefined;
|
|
4573
4595
|
}[];
|
|
4574
4596
|
componentId: number;
|
|
4575
4597
|
cssClass: string;
|
|
4576
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4598
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4577
4599
|
events: {
|
|
4578
4600
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4579
4601
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4609,19 +4631,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4609
4631
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4610
4632
|
} | undefined;
|
|
4611
4633
|
};
|
|
4612
|
-
isVisible:
|
|
4634
|
+
isVisible: boolean | string;
|
|
4613
4635
|
dark: boolean;
|
|
4614
4636
|
light: boolean;
|
|
4615
4637
|
theme?: string | undefined;
|
|
4616
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4638
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4617
4639
|
name: string;
|
|
4618
|
-
parent?: any | undefined;
|
|
4640
|
+
parent?: /*elided*/ any | undefined;
|
|
4619
4641
|
tabStop: boolean;
|
|
4620
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4642
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4621
4643
|
fillHeight: boolean;
|
|
4622
4644
|
} | undefined;
|
|
4623
4645
|
tabStop?: boolean | undefined;
|
|
4624
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4646
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4625
4647
|
fillHeight?: boolean | undefined;
|
|
4626
4648
|
}[] | undefined;
|
|
4627
4649
|
component: string;
|
|
@@ -4629,7 +4651,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4629
4651
|
autofocus?: boolean | undefined;
|
|
4630
4652
|
componentId?: number | undefined;
|
|
4631
4653
|
cssClass?: string | undefined;
|
|
4632
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4654
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4633
4655
|
events?: {
|
|
4634
4656
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4635
4657
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4665,25 +4687,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4665
4687
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4666
4688
|
} | undefined;
|
|
4667
4689
|
} | undefined;
|
|
4668
|
-
isVisible?:
|
|
4690
|
+
isVisible?: boolean | string | undefined;
|
|
4669
4691
|
dark?: boolean | undefined;
|
|
4670
4692
|
light?: boolean | undefined;
|
|
4671
4693
|
theme?: string | undefined;
|
|
4672
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4694
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4673
4695
|
name: string;
|
|
4674
4696
|
parent?: {
|
|
4675
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4676
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
4697
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
4698
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4677
4699
|
allowDuplicate: boolean;
|
|
4678
4700
|
autofocus: boolean;
|
|
4679
4701
|
children: {
|
|
4680
4702
|
[x: string]: any;
|
|
4681
4703
|
allowDuplicate?: boolean | undefined;
|
|
4682
4704
|
autofocus?: boolean | undefined;
|
|
4683
|
-
children?: any[] | undefined;
|
|
4705
|
+
children?: /*elided*/ any[] | undefined;
|
|
4684
4706
|
componentId?: number | undefined;
|
|
4685
4707
|
cssClass?: string | undefined;
|
|
4686
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4708
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4687
4709
|
events?: {
|
|
4688
4710
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4689
4711
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4719,20 +4741,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4719
4741
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4720
4742
|
} | undefined;
|
|
4721
4743
|
} | undefined;
|
|
4722
|
-
isVisible?:
|
|
4744
|
+
isVisible?: boolean | string | undefined;
|
|
4723
4745
|
dark?: boolean | undefined;
|
|
4724
4746
|
light?: boolean | undefined;
|
|
4725
4747
|
theme?: string | undefined;
|
|
4726
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4748
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4727
4749
|
name: string;
|
|
4728
|
-
parent?: any | undefined;
|
|
4750
|
+
parent?: /*elided*/ any | undefined;
|
|
4729
4751
|
tabStop?: boolean | undefined;
|
|
4730
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4752
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4731
4753
|
fillHeight?: boolean | undefined;
|
|
4732
4754
|
}[];
|
|
4733
4755
|
componentId: number;
|
|
4734
4756
|
cssClass: string;
|
|
4735
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4757
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4736
4758
|
events: {
|
|
4737
4759
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4738
4760
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4768,31 +4790,31 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4768
4790
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4769
4791
|
} | undefined;
|
|
4770
4792
|
};
|
|
4771
|
-
isVisible:
|
|
4793
|
+
isVisible: boolean | string;
|
|
4772
4794
|
dark: boolean;
|
|
4773
4795
|
light: boolean;
|
|
4774
4796
|
theme?: string | undefined;
|
|
4775
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4797
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4776
4798
|
name: string;
|
|
4777
|
-
parent?: any | undefined;
|
|
4799
|
+
parent?: /*elided*/ any | undefined;
|
|
4778
4800
|
tabStop: boolean;
|
|
4779
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4801
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4780
4802
|
fillHeight: boolean;
|
|
4781
4803
|
} | undefined;
|
|
4782
4804
|
tabStop?: boolean | undefined;
|
|
4783
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4805
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4784
4806
|
fillHeight?: boolean | undefined;
|
|
4785
4807
|
} | undefined;
|
|
4786
|
-
parentGroup?: any | undefined;
|
|
4808
|
+
parentGroup?: /*elided*/ any | undefined;
|
|
4787
4809
|
children?: {
|
|
4788
4810
|
[x: string]: any;
|
|
4789
|
-
children?: any[] | undefined;
|
|
4811
|
+
children?: /*elided*/ any[] | undefined;
|
|
4790
4812
|
component: string;
|
|
4791
4813
|
allowDuplicate?: boolean | undefined;
|
|
4792
4814
|
autofocus?: boolean | undefined;
|
|
4793
4815
|
componentId?: number | undefined;
|
|
4794
4816
|
cssClass?: string | undefined;
|
|
4795
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4817
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4796
4818
|
events?: {
|
|
4797
4819
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4798
4820
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4828,25 +4850,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4828
4850
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4829
4851
|
} | undefined;
|
|
4830
4852
|
} | undefined;
|
|
4831
|
-
isVisible?:
|
|
4853
|
+
isVisible?: boolean | string | undefined;
|
|
4832
4854
|
dark?: boolean | undefined;
|
|
4833
4855
|
light?: boolean | undefined;
|
|
4834
4856
|
theme?: string | undefined;
|
|
4835
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4857
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4836
4858
|
name: string;
|
|
4837
4859
|
parent?: {
|
|
4838
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4839
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
4860
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
4861
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4840
4862
|
allowDuplicate: boolean;
|
|
4841
4863
|
autofocus: boolean;
|
|
4842
4864
|
children: {
|
|
4843
4865
|
[x: string]: any;
|
|
4844
4866
|
allowDuplicate?: boolean | undefined;
|
|
4845
4867
|
autofocus?: boolean | undefined;
|
|
4846
|
-
children?: any[] | undefined;
|
|
4868
|
+
children?: /*elided*/ any[] | undefined;
|
|
4847
4869
|
componentId?: number | undefined;
|
|
4848
4870
|
cssClass?: string | undefined;
|
|
4849
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4871
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4850
4872
|
events?: {
|
|
4851
4873
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4852
4874
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4882,20 +4904,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4882
4904
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4883
4905
|
} | undefined;
|
|
4884
4906
|
} | undefined;
|
|
4885
|
-
isVisible?:
|
|
4907
|
+
isVisible?: boolean | string | undefined;
|
|
4886
4908
|
dark?: boolean | undefined;
|
|
4887
4909
|
light?: boolean | undefined;
|
|
4888
4910
|
theme?: string | undefined;
|
|
4889
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4911
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4890
4912
|
name: string;
|
|
4891
|
-
parent?: any | undefined;
|
|
4913
|
+
parent?: /*elided*/ any | undefined;
|
|
4892
4914
|
tabStop?: boolean | undefined;
|
|
4893
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4915
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4894
4916
|
fillHeight?: boolean | undefined;
|
|
4895
4917
|
}[];
|
|
4896
4918
|
componentId: number;
|
|
4897
4919
|
cssClass: string;
|
|
4898
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4920
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4899
4921
|
events: {
|
|
4900
4922
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4901
4923
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4931,19 +4953,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4931
4953
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4932
4954
|
} | undefined;
|
|
4933
4955
|
};
|
|
4934
|
-
isVisible:
|
|
4956
|
+
isVisible: boolean | string;
|
|
4935
4957
|
dark: boolean;
|
|
4936
4958
|
light: boolean;
|
|
4937
4959
|
theme?: string | undefined;
|
|
4938
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4960
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4939
4961
|
name: string;
|
|
4940
|
-
parent?: any | undefined;
|
|
4962
|
+
parent?: /*elided*/ any | undefined;
|
|
4941
4963
|
tabStop: boolean;
|
|
4942
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4964
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4943
4965
|
fillHeight: boolean;
|
|
4944
4966
|
} | undefined;
|
|
4945
4967
|
tabStop?: boolean | undefined;
|
|
4946
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4968
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4947
4969
|
fillHeight?: boolean | undefined;
|
|
4948
4970
|
}[] | undefined;
|
|
4949
4971
|
component: string;
|
|
@@ -4951,7 +4973,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4951
4973
|
autofocus?: boolean | undefined;
|
|
4952
4974
|
componentId?: number | undefined;
|
|
4953
4975
|
cssClass?: string | undefined;
|
|
4954
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4976
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4955
4977
|
events?: {
|
|
4956
4978
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
4957
4979
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -4987,25 +5009,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
4987
5009
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
4988
5010
|
} | undefined;
|
|
4989
5011
|
} | undefined;
|
|
4990
|
-
isVisible?:
|
|
5012
|
+
isVisible?: boolean | string | undefined;
|
|
4991
5013
|
dark?: boolean | undefined;
|
|
4992
5014
|
light?: boolean | undefined;
|
|
4993
5015
|
theme?: string | undefined;
|
|
4994
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5016
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4995
5017
|
name: string;
|
|
4996
5018
|
parent?: {
|
|
4997
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4998
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
5019
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
5020
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4999
5021
|
allowDuplicate: boolean;
|
|
5000
5022
|
autofocus: boolean;
|
|
5001
5023
|
children: {
|
|
5002
5024
|
[x: string]: any;
|
|
5003
5025
|
allowDuplicate?: boolean | undefined;
|
|
5004
5026
|
autofocus?: boolean | undefined;
|
|
5005
|
-
children?: any[] | undefined;
|
|
5027
|
+
children?: /*elided*/ any[] | undefined;
|
|
5006
5028
|
componentId?: number | undefined;
|
|
5007
5029
|
cssClass?: string | undefined;
|
|
5008
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5030
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5009
5031
|
events?: {
|
|
5010
5032
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5011
5033
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5041,20 +5063,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5041
5063
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5042
5064
|
} | undefined;
|
|
5043
5065
|
} | undefined;
|
|
5044
|
-
isVisible?:
|
|
5066
|
+
isVisible?: boolean | string | undefined;
|
|
5045
5067
|
dark?: boolean | undefined;
|
|
5046
5068
|
light?: boolean | undefined;
|
|
5047
5069
|
theme?: string | undefined;
|
|
5048
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5070
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5049
5071
|
name: string;
|
|
5050
|
-
parent?: any | undefined;
|
|
5072
|
+
parent?: /*elided*/ any | undefined;
|
|
5051
5073
|
tabStop?: boolean | undefined;
|
|
5052
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5074
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5053
5075
|
fillHeight?: boolean | undefined;
|
|
5054
5076
|
}[];
|
|
5055
5077
|
componentId: number;
|
|
5056
5078
|
cssClass: string;
|
|
5057
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
5079
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
5058
5080
|
events: {
|
|
5059
5081
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5060
5082
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5090,32 +5112,32 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5090
5112
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5091
5113
|
} | undefined;
|
|
5092
5114
|
};
|
|
5093
|
-
isVisible:
|
|
5115
|
+
isVisible: boolean | string;
|
|
5094
5116
|
dark: boolean;
|
|
5095
5117
|
light: boolean;
|
|
5096
5118
|
theme?: string | undefined;
|
|
5097
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
5119
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
5098
5120
|
name: string;
|
|
5099
|
-
parent?: any | undefined;
|
|
5121
|
+
parent?: /*elided*/ any | undefined;
|
|
5100
5122
|
tabStop: boolean;
|
|
5101
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
5123
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
5102
5124
|
fillHeight: boolean;
|
|
5103
5125
|
} | undefined;
|
|
5104
5126
|
tabStop?: boolean | undefined;
|
|
5105
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5127
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5106
5128
|
fillHeight?: boolean | undefined;
|
|
5107
5129
|
label: string;
|
|
5108
5130
|
icon?: string | undefined;
|
|
5109
5131
|
} | undefined;
|
|
5110
5132
|
children?: {
|
|
5111
5133
|
[x: string]: any;
|
|
5112
|
-
children?: any[] | undefined;
|
|
5134
|
+
children?: /*elided*/ any[] | undefined;
|
|
5113
5135
|
component: string;
|
|
5114
5136
|
allowDuplicate?: boolean | undefined;
|
|
5115
5137
|
autofocus?: boolean | undefined;
|
|
5116
5138
|
componentId?: number | undefined;
|
|
5117
5139
|
cssClass?: string | undefined;
|
|
5118
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5140
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5119
5141
|
events?: {
|
|
5120
5142
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5121
5143
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5151,25 +5173,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5151
5173
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5152
5174
|
} | undefined;
|
|
5153
5175
|
} | undefined;
|
|
5154
|
-
isVisible?:
|
|
5176
|
+
isVisible?: boolean | string | undefined;
|
|
5155
5177
|
dark?: boolean | undefined;
|
|
5156
5178
|
light?: boolean | undefined;
|
|
5157
5179
|
theme?: string | undefined;
|
|
5158
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5180
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5159
5181
|
name: string;
|
|
5160
5182
|
parent?: {
|
|
5161
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
5162
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
5183
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
5184
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
5163
5185
|
allowDuplicate: boolean;
|
|
5164
5186
|
autofocus: boolean;
|
|
5165
5187
|
children: {
|
|
5166
5188
|
[x: string]: any;
|
|
5167
5189
|
allowDuplicate?: boolean | undefined;
|
|
5168
5190
|
autofocus?: boolean | undefined;
|
|
5169
|
-
children?: any[] | undefined;
|
|
5191
|
+
children?: /*elided*/ any[] | undefined;
|
|
5170
5192
|
componentId?: number | undefined;
|
|
5171
5193
|
cssClass?: string | undefined;
|
|
5172
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5194
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5173
5195
|
events?: {
|
|
5174
5196
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5175
5197
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5205,20 +5227,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5205
5227
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5206
5228
|
} | undefined;
|
|
5207
5229
|
} | undefined;
|
|
5208
|
-
isVisible?:
|
|
5230
|
+
isVisible?: boolean | string | undefined;
|
|
5209
5231
|
dark?: boolean | undefined;
|
|
5210
5232
|
light?: boolean | undefined;
|
|
5211
5233
|
theme?: string | undefined;
|
|
5212
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5234
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5213
5235
|
name: string;
|
|
5214
|
-
parent?: any | undefined;
|
|
5236
|
+
parent?: /*elided*/ any | undefined;
|
|
5215
5237
|
tabStop?: boolean | undefined;
|
|
5216
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5238
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5217
5239
|
fillHeight?: boolean | undefined;
|
|
5218
5240
|
}[];
|
|
5219
5241
|
componentId: number;
|
|
5220
5242
|
cssClass: string;
|
|
5221
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
5243
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
5222
5244
|
events: {
|
|
5223
5245
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5224
5246
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5254,19 +5276,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5254
5276
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5255
5277
|
} | undefined;
|
|
5256
5278
|
};
|
|
5257
|
-
isVisible:
|
|
5279
|
+
isVisible: boolean | string;
|
|
5258
5280
|
dark: boolean;
|
|
5259
5281
|
light: boolean;
|
|
5260
5282
|
theme?: string | undefined;
|
|
5261
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
5283
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
5262
5284
|
name: string;
|
|
5263
|
-
parent?: any | undefined;
|
|
5285
|
+
parent?: /*elided*/ any | undefined;
|
|
5264
5286
|
tabStop: boolean;
|
|
5265
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
5287
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
5266
5288
|
fillHeight: boolean;
|
|
5267
5289
|
} | undefined;
|
|
5268
5290
|
tabStop?: boolean | undefined;
|
|
5269
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5291
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5270
5292
|
fillHeight?: boolean | undefined;
|
|
5271
5293
|
}[] | undefined;
|
|
5272
5294
|
component: string;
|
|
@@ -5274,7 +5296,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5274
5296
|
autofocus?: boolean | undefined;
|
|
5275
5297
|
componentId?: number | undefined;
|
|
5276
5298
|
cssClass?: string | undefined;
|
|
5277
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5299
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5278
5300
|
events?: {
|
|
5279
5301
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5280
5302
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5310,25 +5332,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5310
5332
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5311
5333
|
} | undefined;
|
|
5312
5334
|
} | undefined;
|
|
5313
|
-
isVisible?:
|
|
5335
|
+
isVisible?: boolean | string | undefined;
|
|
5314
5336
|
dark?: boolean | undefined;
|
|
5315
5337
|
light?: boolean | undefined;
|
|
5316
5338
|
theme?: string | undefined;
|
|
5317
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5339
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5318
5340
|
name: string;
|
|
5319
5341
|
parent?: {
|
|
5320
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
5321
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
5342
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
5343
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
5322
5344
|
allowDuplicate: boolean;
|
|
5323
5345
|
autofocus: boolean;
|
|
5324
5346
|
children: {
|
|
5325
5347
|
[x: string]: any;
|
|
5326
5348
|
allowDuplicate?: boolean | undefined;
|
|
5327
5349
|
autofocus?: boolean | undefined;
|
|
5328
|
-
children?: any[] | undefined;
|
|
5350
|
+
children?: /*elided*/ any[] | undefined;
|
|
5329
5351
|
componentId?: number | undefined;
|
|
5330
5352
|
cssClass?: string | undefined;
|
|
5331
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5353
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5332
5354
|
events?: {
|
|
5333
5355
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5334
5356
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5364,20 +5386,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5364
5386
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5365
5387
|
} | undefined;
|
|
5366
5388
|
} | undefined;
|
|
5367
|
-
isVisible?:
|
|
5389
|
+
isVisible?: boolean | string | undefined;
|
|
5368
5390
|
dark?: boolean | undefined;
|
|
5369
5391
|
light?: boolean | undefined;
|
|
5370
5392
|
theme?: string | undefined;
|
|
5371
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5393
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5372
5394
|
name: string;
|
|
5373
|
-
parent?: any | undefined;
|
|
5395
|
+
parent?: /*elided*/ any | undefined;
|
|
5374
5396
|
tabStop?: boolean | undefined;
|
|
5375
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5397
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5376
5398
|
fillHeight?: boolean | undefined;
|
|
5377
5399
|
}[];
|
|
5378
5400
|
componentId: number;
|
|
5379
5401
|
cssClass: string;
|
|
5380
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
5402
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
5381
5403
|
events: {
|
|
5382
5404
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5383
5405
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5413,19 +5435,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5413
5435
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5414
5436
|
} | undefined;
|
|
5415
5437
|
};
|
|
5416
|
-
isVisible:
|
|
5438
|
+
isVisible: boolean | string;
|
|
5417
5439
|
dark: boolean;
|
|
5418
5440
|
light: boolean;
|
|
5419
5441
|
theme?: string | undefined;
|
|
5420
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
5442
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
5421
5443
|
name: string;
|
|
5422
|
-
parent?: any | undefined;
|
|
5444
|
+
parent?: /*elided*/ any | undefined;
|
|
5423
5445
|
tabStop: boolean;
|
|
5424
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
5446
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
5425
5447
|
fillHeight: boolean;
|
|
5426
5448
|
} | undefined;
|
|
5427
5449
|
tabStop?: boolean | undefined;
|
|
5428
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5450
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5429
5451
|
fillHeight?: boolean | undefined;
|
|
5430
5452
|
}[];
|
|
5431
5453
|
opened: boolean;
|
|
@@ -5445,13 +5467,13 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5445
5467
|
doSearch: () => void;
|
|
5446
5468
|
children: {
|
|
5447
5469
|
[x: string]: any;
|
|
5448
|
-
children?: any[] | undefined;
|
|
5470
|
+
children?: /*elided*/ any[] | undefined;
|
|
5449
5471
|
component: string;
|
|
5450
5472
|
allowDuplicate?: boolean | undefined;
|
|
5451
5473
|
autofocus?: boolean | undefined;
|
|
5452
5474
|
componentId?: number | undefined;
|
|
5453
5475
|
cssClass?: string | undefined;
|
|
5454
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5476
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5455
5477
|
events?: {
|
|
5456
5478
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5457
5479
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5487,25 +5509,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5487
5509
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5488
5510
|
} | undefined;
|
|
5489
5511
|
} | undefined;
|
|
5490
|
-
isVisible?:
|
|
5512
|
+
isVisible?: boolean | string | undefined;
|
|
5491
5513
|
dark?: boolean | undefined;
|
|
5492
5514
|
light?: boolean | undefined;
|
|
5493
5515
|
theme?: string | undefined;
|
|
5494
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5516
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5495
5517
|
name: string;
|
|
5496
5518
|
parent?: {
|
|
5497
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
5498
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
5519
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
5520
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
5499
5521
|
allowDuplicate: boolean;
|
|
5500
5522
|
autofocus: boolean;
|
|
5501
5523
|
children: {
|
|
5502
5524
|
[x: string]: any;
|
|
5503
5525
|
allowDuplicate?: boolean | undefined;
|
|
5504
5526
|
autofocus?: boolean | undefined;
|
|
5505
|
-
children?: any[] | undefined;
|
|
5527
|
+
children?: /*elided*/ any[] | undefined;
|
|
5506
5528
|
componentId?: number | undefined;
|
|
5507
5529
|
cssClass?: string | undefined;
|
|
5508
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5530
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5509
5531
|
events?: {
|
|
5510
5532
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5511
5533
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5541,20 +5563,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5541
5563
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5542
5564
|
} | undefined;
|
|
5543
5565
|
} | undefined;
|
|
5544
|
-
isVisible?:
|
|
5566
|
+
isVisible?: boolean | string | undefined;
|
|
5545
5567
|
dark?: boolean | undefined;
|
|
5546
5568
|
light?: boolean | undefined;
|
|
5547
5569
|
theme?: string | undefined;
|
|
5548
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5570
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5549
5571
|
name: string;
|
|
5550
|
-
parent?: any | undefined;
|
|
5572
|
+
parent?: /*elided*/ any | undefined;
|
|
5551
5573
|
tabStop?: boolean | undefined;
|
|
5552
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5574
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5553
5575
|
fillHeight?: boolean | undefined;
|
|
5554
5576
|
}[];
|
|
5555
5577
|
componentId: number;
|
|
5556
5578
|
cssClass: string;
|
|
5557
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
5579
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
5558
5580
|
events: {
|
|
5559
5581
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5560
5582
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5590,19 +5612,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5590
5612
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5591
5613
|
} | undefined;
|
|
5592
5614
|
};
|
|
5593
|
-
isVisible:
|
|
5615
|
+
isVisible: boolean | string;
|
|
5594
5616
|
dark: boolean;
|
|
5595
5617
|
light: boolean;
|
|
5596
5618
|
theme?: string | undefined;
|
|
5597
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
5619
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
5598
5620
|
name: string;
|
|
5599
|
-
parent?: any | undefined;
|
|
5621
|
+
parent?: /*elided*/ any | undefined;
|
|
5600
5622
|
tabStop: boolean;
|
|
5601
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
5623
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
5602
5624
|
fillHeight: boolean;
|
|
5603
5625
|
} | undefined;
|
|
5604
5626
|
tabStop?: boolean | undefined;
|
|
5605
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5627
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5606
5628
|
fillHeight?: boolean | undefined;
|
|
5607
5629
|
}[];
|
|
5608
5630
|
component: string;
|
|
@@ -5653,18 +5675,18 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5653
5675
|
theme?: string | undefined;
|
|
5654
5676
|
fillHeight: boolean;
|
|
5655
5677
|
parent?: {
|
|
5656
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
5657
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
5678
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
5679
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
5658
5680
|
allowDuplicate: boolean;
|
|
5659
5681
|
autofocus: boolean;
|
|
5660
5682
|
children: {
|
|
5661
5683
|
[x: string]: any;
|
|
5662
5684
|
allowDuplicate?: boolean | undefined;
|
|
5663
5685
|
autofocus?: boolean | undefined;
|
|
5664
|
-
children?: any[] | undefined;
|
|
5686
|
+
children?: /*elided*/ any[] | undefined;
|
|
5665
5687
|
componentId?: number | undefined;
|
|
5666
5688
|
cssClass?: string | undefined;
|
|
5667
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5689
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5668
5690
|
events?: {
|
|
5669
5691
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5670
5692
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5700,20 +5722,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5700
5722
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5701
5723
|
} | undefined;
|
|
5702
5724
|
} | undefined;
|
|
5703
|
-
isVisible?:
|
|
5725
|
+
isVisible?: boolean | string | undefined;
|
|
5704
5726
|
dark?: boolean | undefined;
|
|
5705
5727
|
light?: boolean | undefined;
|
|
5706
5728
|
theme?: string | undefined;
|
|
5707
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5729
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5708
5730
|
name: string;
|
|
5709
|
-
parent?: any | undefined;
|
|
5731
|
+
parent?: /*elided*/ any | undefined;
|
|
5710
5732
|
tabStop?: boolean | undefined;
|
|
5711
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5733
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5712
5734
|
fillHeight?: boolean | undefined;
|
|
5713
5735
|
}[];
|
|
5714
5736
|
componentId: number;
|
|
5715
5737
|
cssClass: string;
|
|
5716
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
5738
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
5717
5739
|
events: {
|
|
5718
5740
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5719
5741
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5749,19 +5771,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5749
5771
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5750
5772
|
} | undefined;
|
|
5751
5773
|
};
|
|
5752
|
-
isVisible:
|
|
5774
|
+
isVisible: boolean | string;
|
|
5753
5775
|
dark: boolean;
|
|
5754
5776
|
light: boolean;
|
|
5755
5777
|
theme?: string | undefined;
|
|
5756
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
5778
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
5757
5779
|
name: string;
|
|
5758
|
-
parent?: any | undefined;
|
|
5780
|
+
parent?: /*elided*/ any | undefined;
|
|
5759
5781
|
tabStop: boolean;
|
|
5760
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
5782
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
5761
5783
|
fillHeight: boolean;
|
|
5762
5784
|
} | undefined;
|
|
5763
5785
|
componentId: number;
|
|
5764
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
5786
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
5765
5787
|
isFocused: boolean;
|
|
5766
5788
|
tabStop: boolean;
|
|
5767
5789
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -5770,36 +5792,36 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5770
5792
|
callEvent: (eventName: string, args: any) => boolean;
|
|
5771
5793
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
5772
5794
|
removeChild: (name: string) => void;
|
|
5773
|
-
getChildInstance: <
|
|
5774
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
5795
|
+
getChildInstance: <T>(name: string) => T;
|
|
5796
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
5775
5797
|
onCreated: () => void;
|
|
5776
5798
|
onBeforeMount: () => void;
|
|
5777
5799
|
onBeforeDestroy: () => void;
|
|
5778
5800
|
onDestroyed: () => void;
|
|
5779
|
-
click: (event?: Event
|
|
5801
|
+
click: (event?: Event, element?: any) => void;
|
|
5780
5802
|
focus: (event: Event, element: any) => void;
|
|
5781
5803
|
blur: (event: Event, element: any) => void;
|
|
5782
|
-
mouseenter: (event?: Event
|
|
5783
|
-
mouseleave: (event?: Event
|
|
5784
|
-
mouseout: (event?: Event
|
|
5785
|
-
mouseover: (event?: Event
|
|
5804
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
5805
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
5806
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
5807
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
5786
5808
|
} | undefined;
|
|
5787
|
-
parentGroup?: any | undefined;
|
|
5809
|
+
parentGroup?: /*elided*/ any | undefined;
|
|
5788
5810
|
expandIcon: string;
|
|
5789
5811
|
isSelected: () => boolean;
|
|
5790
5812
|
open: () => void;
|
|
5791
5813
|
close: () => void;
|
|
5792
|
-
click: (event?: Event
|
|
5814
|
+
click: (event?: Event) => void;
|
|
5793
5815
|
focus: (event: Event) => void;
|
|
5794
5816
|
children: {
|
|
5795
5817
|
[x: string]: any;
|
|
5796
|
-
children?: any[] | undefined;
|
|
5818
|
+
children?: /*elided*/ any[] | undefined;
|
|
5797
5819
|
component: string;
|
|
5798
5820
|
allowDuplicate?: boolean | undefined;
|
|
5799
5821
|
autofocus?: boolean | undefined;
|
|
5800
5822
|
componentId?: number | undefined;
|
|
5801
5823
|
cssClass?: string | undefined;
|
|
5802
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5824
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5803
5825
|
events?: {
|
|
5804
5826
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5805
5827
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5835,25 +5857,25 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5835
5857
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5836
5858
|
} | undefined;
|
|
5837
5859
|
} | undefined;
|
|
5838
|
-
isVisible?:
|
|
5860
|
+
isVisible?: boolean | string | undefined;
|
|
5839
5861
|
dark?: boolean | undefined;
|
|
5840
5862
|
light?: boolean | undefined;
|
|
5841
5863
|
theme?: string | undefined;
|
|
5842
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5864
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5843
5865
|
name: string;
|
|
5844
5866
|
parent?: {
|
|
5845
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
5846
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
5867
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
5868
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
5847
5869
|
allowDuplicate: boolean;
|
|
5848
5870
|
autofocus: boolean;
|
|
5849
5871
|
children: {
|
|
5850
5872
|
[x: string]: any;
|
|
5851
5873
|
allowDuplicate?: boolean | undefined;
|
|
5852
5874
|
autofocus?: boolean | undefined;
|
|
5853
|
-
children?: any[] | undefined;
|
|
5875
|
+
children?: /*elided*/ any[] | undefined;
|
|
5854
5876
|
componentId?: number | undefined;
|
|
5855
5877
|
cssClass?: string | undefined;
|
|
5856
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
5878
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
5857
5879
|
events?: {
|
|
5858
5880
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5859
5881
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5889,20 +5911,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5889
5911
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5890
5912
|
} | undefined;
|
|
5891
5913
|
} | undefined;
|
|
5892
|
-
isVisible?:
|
|
5914
|
+
isVisible?: boolean | string | undefined;
|
|
5893
5915
|
dark?: boolean | undefined;
|
|
5894
5916
|
light?: boolean | undefined;
|
|
5895
5917
|
theme?: string | undefined;
|
|
5896
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
5918
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
5897
5919
|
name: string;
|
|
5898
|
-
parent?: any | undefined;
|
|
5920
|
+
parent?: /*elided*/ any | undefined;
|
|
5899
5921
|
tabStop?: boolean | undefined;
|
|
5900
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5922
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5901
5923
|
fillHeight?: boolean | undefined;
|
|
5902
5924
|
}[];
|
|
5903
5925
|
componentId: number;
|
|
5904
5926
|
cssClass: string;
|
|
5905
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
5927
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
5906
5928
|
events: {
|
|
5907
5929
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
5908
5930
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -5938,19 +5960,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
5938
5960
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
5939
5961
|
} | undefined;
|
|
5940
5962
|
};
|
|
5941
|
-
isVisible:
|
|
5963
|
+
isVisible: boolean | string;
|
|
5942
5964
|
dark: boolean;
|
|
5943
5965
|
light: boolean;
|
|
5944
5966
|
theme?: string | undefined;
|
|
5945
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
5967
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
5946
5968
|
name: string;
|
|
5947
|
-
parent?: any | undefined;
|
|
5969
|
+
parent?: /*elided*/ any | undefined;
|
|
5948
5970
|
tabStop: boolean;
|
|
5949
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
5971
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
5950
5972
|
fillHeight: boolean;
|
|
5951
5973
|
} | undefined;
|
|
5952
5974
|
tabStop?: boolean | undefined;
|
|
5953
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
5975
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
5954
5976
|
fillHeight?: boolean | undefined;
|
|
5955
5977
|
}[];
|
|
5956
5978
|
component: string;
|
|
@@ -6001,18 +6023,18 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6001
6023
|
theme?: string | undefined;
|
|
6002
6024
|
fillHeight: boolean;
|
|
6003
6025
|
parent?: {
|
|
6004
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
6005
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
6026
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
6027
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
6006
6028
|
allowDuplicate: boolean;
|
|
6007
6029
|
autofocus: boolean;
|
|
6008
6030
|
children: {
|
|
6009
6031
|
[x: string]: any;
|
|
6010
6032
|
allowDuplicate?: boolean | undefined;
|
|
6011
6033
|
autofocus?: boolean | undefined;
|
|
6012
|
-
children?: any[] | undefined;
|
|
6034
|
+
children?: /*elided*/ any[] | undefined;
|
|
6013
6035
|
componentId?: number | undefined;
|
|
6014
6036
|
cssClass?: string | undefined;
|
|
6015
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
6037
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
6016
6038
|
events?: {
|
|
6017
6039
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
6018
6040
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -6048,20 +6070,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6048
6070
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
6049
6071
|
} | undefined;
|
|
6050
6072
|
} | undefined;
|
|
6051
|
-
isVisible?:
|
|
6073
|
+
isVisible?: boolean | string | undefined;
|
|
6052
6074
|
dark?: boolean | undefined;
|
|
6053
6075
|
light?: boolean | undefined;
|
|
6054
6076
|
theme?: string | undefined;
|
|
6055
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
6077
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
6056
6078
|
name: string;
|
|
6057
|
-
parent?: any | undefined;
|
|
6079
|
+
parent?: /*elided*/ any | undefined;
|
|
6058
6080
|
tabStop?: boolean | undefined;
|
|
6059
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
6081
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
6060
6082
|
fillHeight?: boolean | undefined;
|
|
6061
6083
|
}[];
|
|
6062
6084
|
componentId: number;
|
|
6063
6085
|
cssClass: string;
|
|
6064
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
6086
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
6065
6087
|
events: {
|
|
6066
6088
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
6067
6089
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -6097,19 +6119,19 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6097
6119
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
6098
6120
|
} | undefined;
|
|
6099
6121
|
};
|
|
6100
|
-
isVisible:
|
|
6122
|
+
isVisible: boolean | string;
|
|
6101
6123
|
dark: boolean;
|
|
6102
6124
|
light: boolean;
|
|
6103
6125
|
theme?: string | undefined;
|
|
6104
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
6126
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
6105
6127
|
name: string;
|
|
6106
|
-
parent?: any | undefined;
|
|
6128
|
+
parent?: /*elided*/ any | undefined;
|
|
6107
6129
|
tabStop: boolean;
|
|
6108
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
6130
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
6109
6131
|
fillHeight: boolean;
|
|
6110
6132
|
} | undefined;
|
|
6111
6133
|
componentId: number;
|
|
6112
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
6134
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
6113
6135
|
isFocused: boolean;
|
|
6114
6136
|
tabStop: boolean;
|
|
6115
6137
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -6118,20 +6140,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6118
6140
|
callEvent: (eventName: string, args: any) => boolean;
|
|
6119
6141
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
6120
6142
|
removeChild: (name: string) => void;
|
|
6121
|
-
getChildInstance: <
|
|
6122
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
6143
|
+
getChildInstance: <T>(name: string) => T;
|
|
6144
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
6123
6145
|
onCreated: () => void;
|
|
6124
6146
|
onBeforeMount: () => void;
|
|
6125
6147
|
onMounted: (element: any) => void;
|
|
6126
6148
|
onBeforeDestroy: () => void;
|
|
6127
6149
|
onDestroyed: () => void;
|
|
6128
6150
|
blur: (event: Event, element: any) => void;
|
|
6129
|
-
mouseenter: (event?: Event
|
|
6130
|
-
mouseleave: (event?: Event
|
|
6131
|
-
mouseout: (event?: Event
|
|
6132
|
-
mouseover: (event?: Event
|
|
6151
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
6152
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
6153
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
6154
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
6133
6155
|
};
|
|
6134
|
-
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance
|
|
6156
|
+
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
6135
6157
|
click: (event: Event) => void;
|
|
6136
6158
|
focus: (event: Event) => void;
|
|
6137
6159
|
blur: (event: Event) => void;
|
|
@@ -6160,13 +6182,16 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6160
6182
|
isArray(arg: any): arg is any[];
|
|
6161
6183
|
readonly prototype: any[];
|
|
6162
6184
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
6163
|
-
from<
|
|
6164
|
-
from<
|
|
6165
|
-
from<
|
|
6166
|
-
of<
|
|
6185
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
6186
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
6187
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
6188
|
+
of<T>(...items: T[]): T[];
|
|
6189
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
6190
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
6167
6191
|
readonly [Symbol.species]: ArrayConstructor;
|
|
6168
6192
|
};
|
|
6169
6193
|
default: () => IMenuItem[];
|
|
6194
|
+
watch: boolean;
|
|
6170
6195
|
};
|
|
6171
6196
|
menuLevel: {
|
|
6172
6197
|
type: NumberConstructor;
|
|
@@ -6194,16 +6219,20 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6194
6219
|
isArray(arg: any): arg is any[];
|
|
6195
6220
|
readonly prototype: any[];
|
|
6196
6221
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
6197
|
-
from<
|
|
6198
|
-
from<
|
|
6199
|
-
from<
|
|
6200
|
-
of<
|
|
6222
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
6223
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
6224
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
6225
|
+
of<T>(...items: T[]): T[];
|
|
6226
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
6227
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
6201
6228
|
readonly [Symbol.species]: ArrayConstructor;
|
|
6202
6229
|
})[];
|
|
6203
6230
|
default(): never[];
|
|
6231
|
+
watch: boolean;
|
|
6204
6232
|
};
|
|
6205
6233
|
component: {
|
|
6206
6234
|
type: StringConstructor;
|
|
6235
|
+
watch: boolean;
|
|
6207
6236
|
};
|
|
6208
6237
|
allowDuplicate: {
|
|
6209
6238
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -6228,10 +6257,12 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6228
6257
|
directives: {
|
|
6229
6258
|
type: ObjectConstructor;
|
|
6230
6259
|
default(): {};
|
|
6260
|
+
watch: boolean;
|
|
6231
6261
|
};
|
|
6232
6262
|
events: {
|
|
6233
6263
|
type: ObjectConstructor;
|
|
6234
6264
|
default(): {};
|
|
6265
|
+
watch: boolean;
|
|
6235
6266
|
};
|
|
6236
6267
|
instanceObject: {
|
|
6237
6268
|
type: ObjectConstructor;
|
|
@@ -6243,6 +6274,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6243
6274
|
keyMap: {
|
|
6244
6275
|
type: ObjectConstructor;
|
|
6245
6276
|
default(): {};
|
|
6277
|
+
watch: boolean;
|
|
6246
6278
|
};
|
|
6247
6279
|
light: {
|
|
6248
6280
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -6254,6 +6286,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6254
6286
|
};
|
|
6255
6287
|
parent: {
|
|
6256
6288
|
type: ObjectConstructor;
|
|
6289
|
+
watch: boolean;
|
|
6257
6290
|
};
|
|
6258
6291
|
tabStop: {
|
|
6259
6292
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -6263,6 +6296,7 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6263
6296
|
type: StringConstructor;
|
|
6264
6297
|
};
|
|
6265
6298
|
}>> & Readonly<{}>, {
|
|
6299
|
+
label: string;
|
|
6266
6300
|
allowDuplicate: string | boolean;
|
|
6267
6301
|
autofocus: string | boolean;
|
|
6268
6302
|
children: string | import("@zeedhi/common").IComponentRender[];
|
|
@@ -6275,7 +6309,6 @@ declare const menuGroupComponent: import("vue").DefineComponent<import("vue").Ex
|
|
|
6275
6309
|
keyMap: Record<string, any>;
|
|
6276
6310
|
light: string | boolean;
|
|
6277
6311
|
tabStop: string | boolean;
|
|
6278
|
-
label: string;
|
|
6279
6312
|
icon: string;
|
|
6280
6313
|
items: IMenuItem[];
|
|
6281
6314
|
opened: string | boolean;
|