@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
|
@@ -74,13 +74,16 @@ export declare const ZdMenuProps: {
|
|
|
74
74
|
isArray(arg: any): arg is any[];
|
|
75
75
|
readonly prototype: any[];
|
|
76
76
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
77
|
-
from<
|
|
78
|
-
from<
|
|
79
|
-
from<
|
|
80
|
-
of<
|
|
77
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
78
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
79
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
80
|
+
of<T>(...items: T[]): T[];
|
|
81
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
82
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
81
83
|
readonly [Symbol.species]: ArrayConstructor;
|
|
82
84
|
};
|
|
83
85
|
default: () => IComponentRender[];
|
|
86
|
+
watch: boolean;
|
|
84
87
|
};
|
|
85
88
|
width: {
|
|
86
89
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -103,13 +106,16 @@ export declare const ZdMenuProps: {
|
|
|
103
106
|
isArray(arg: any): arg is any[];
|
|
104
107
|
readonly prototype: any[];
|
|
105
108
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
106
|
-
from<
|
|
107
|
-
from<
|
|
108
|
-
from<
|
|
109
|
-
of<
|
|
109
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
110
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
111
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
112
|
+
of<T>(...items: T[]): T[];
|
|
113
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
114
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
110
115
|
readonly [Symbol.species]: ArrayConstructor;
|
|
111
116
|
};
|
|
112
117
|
default: () => never[];
|
|
118
|
+
watch: boolean;
|
|
113
119
|
};
|
|
114
120
|
permanent: {
|
|
115
121
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -124,16 +130,20 @@ export declare const ZdMenuProps: {
|
|
|
124
130
|
isArray(arg: any): arg is any[];
|
|
125
131
|
readonly prototype: any[];
|
|
126
132
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
127
|
-
from<
|
|
128
|
-
from<
|
|
129
|
-
from<
|
|
130
|
-
of<
|
|
133
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
134
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
135
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
136
|
+
of<T>(...items: T[]): T[];
|
|
137
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
138
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
131
139
|
readonly [Symbol.species]: ArrayConstructor;
|
|
132
140
|
})[];
|
|
133
141
|
default(): never[];
|
|
142
|
+
watch: boolean;
|
|
134
143
|
};
|
|
135
144
|
component: {
|
|
136
145
|
type: StringConstructor;
|
|
146
|
+
watch: boolean;
|
|
137
147
|
};
|
|
138
148
|
allowDuplicate: {
|
|
139
149
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -158,10 +168,12 @@ export declare const ZdMenuProps: {
|
|
|
158
168
|
directives: {
|
|
159
169
|
type: ObjectConstructor;
|
|
160
170
|
default(): {};
|
|
171
|
+
watch: boolean;
|
|
161
172
|
};
|
|
162
173
|
events: {
|
|
163
174
|
type: ObjectConstructor;
|
|
164
175
|
default(): {};
|
|
176
|
+
watch: boolean;
|
|
165
177
|
};
|
|
166
178
|
instanceObject: {
|
|
167
179
|
type: ObjectConstructor;
|
|
@@ -169,6 +181,7 @@ export declare const ZdMenuProps: {
|
|
|
169
181
|
keyMap: {
|
|
170
182
|
type: ObjectConstructor;
|
|
171
183
|
default(): {};
|
|
184
|
+
watch: boolean;
|
|
172
185
|
};
|
|
173
186
|
light: {
|
|
174
187
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -180,6 +193,7 @@ export declare const ZdMenuProps: {
|
|
|
180
193
|
};
|
|
181
194
|
parent: {
|
|
182
195
|
type: ObjectConstructor;
|
|
196
|
+
watch: boolean;
|
|
183
197
|
};
|
|
184
198
|
tabStop: {
|
|
185
199
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -264,13 +278,16 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
264
278
|
isArray(arg: any): arg is any[];
|
|
265
279
|
readonly prototype: any[];
|
|
266
280
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
267
|
-
from<
|
|
268
|
-
from<
|
|
269
|
-
from<
|
|
270
|
-
of<
|
|
281
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
282
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
283
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
284
|
+
of<T>(...items: T[]): T[];
|
|
285
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
286
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
271
287
|
readonly [Symbol.species]: ArrayConstructor;
|
|
272
288
|
};
|
|
273
289
|
default: () => IComponentRender[];
|
|
290
|
+
watch: boolean;
|
|
274
291
|
};
|
|
275
292
|
width: {
|
|
276
293
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -293,13 +310,16 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
293
310
|
isArray(arg: any): arg is any[];
|
|
294
311
|
readonly prototype: any[];
|
|
295
312
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
296
|
-
from<
|
|
297
|
-
from<
|
|
298
|
-
from<
|
|
299
|
-
of<
|
|
313
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
314
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
315
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
316
|
+
of<T>(...items: T[]): T[];
|
|
317
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
318
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
300
319
|
readonly [Symbol.species]: ArrayConstructor;
|
|
301
320
|
};
|
|
302
321
|
default: () => never[];
|
|
322
|
+
watch: boolean;
|
|
303
323
|
};
|
|
304
324
|
permanent: {
|
|
305
325
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -314,16 +334,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
314
334
|
isArray(arg: any): arg is any[];
|
|
315
335
|
readonly prototype: any[];
|
|
316
336
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
317
|
-
from<
|
|
318
|
-
from<
|
|
319
|
-
from<
|
|
320
|
-
of<
|
|
337
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
338
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
339
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
340
|
+
of<T>(...items: T[]): T[];
|
|
341
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
342
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
321
343
|
readonly [Symbol.species]: ArrayConstructor;
|
|
322
344
|
})[];
|
|
323
345
|
default(): never[];
|
|
346
|
+
watch: boolean;
|
|
324
347
|
};
|
|
325
348
|
component: {
|
|
326
349
|
type: StringConstructor;
|
|
350
|
+
watch: boolean;
|
|
327
351
|
};
|
|
328
352
|
allowDuplicate: {
|
|
329
353
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -348,10 +372,12 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
348
372
|
directives: {
|
|
349
373
|
type: ObjectConstructor;
|
|
350
374
|
default(): {};
|
|
375
|
+
watch: boolean;
|
|
351
376
|
};
|
|
352
377
|
events: {
|
|
353
378
|
type: ObjectConstructor;
|
|
354
379
|
default(): {};
|
|
380
|
+
watch: boolean;
|
|
355
381
|
};
|
|
356
382
|
instanceObject: {
|
|
357
383
|
type: ObjectConstructor;
|
|
@@ -359,6 +385,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
359
385
|
keyMap: {
|
|
360
386
|
type: ObjectConstructor;
|
|
361
387
|
default(): {};
|
|
388
|
+
watch: boolean;
|
|
362
389
|
};
|
|
363
390
|
light: {
|
|
364
391
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -370,6 +397,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
370
397
|
};
|
|
371
398
|
parent: {
|
|
372
399
|
type: ObjectConstructor;
|
|
400
|
+
watch: boolean;
|
|
373
401
|
};
|
|
374
402
|
tabStop: {
|
|
375
403
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -380,34 +408,34 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
380
408
|
};
|
|
381
409
|
}>, {
|
|
382
410
|
instance: {
|
|
383
|
-
app:
|
|
384
|
-
absolute:
|
|
385
|
-
clipped:
|
|
386
|
-
fixed:
|
|
387
|
-
floating:
|
|
388
|
-
permanent:
|
|
389
|
-
dense:
|
|
390
|
-
mini:
|
|
391
|
-
miniWidth:
|
|
411
|
+
app: boolean | string;
|
|
412
|
+
absolute: boolean | string;
|
|
413
|
+
clipped: boolean | string;
|
|
414
|
+
fixed: boolean | string;
|
|
415
|
+
floating: boolean | string;
|
|
416
|
+
permanent: boolean | string;
|
|
417
|
+
dense: boolean | string;
|
|
418
|
+
mini: boolean | string;
|
|
419
|
+
miniWidth: number | string;
|
|
392
420
|
miniState: boolean;
|
|
393
|
-
temporary:
|
|
394
|
-
closeToMini:
|
|
395
|
-
showSearch:
|
|
396
|
-
isLocal:
|
|
421
|
+
temporary: boolean | string;
|
|
422
|
+
closeToMini: boolean | string;
|
|
423
|
+
showSearch: boolean | string;
|
|
424
|
+
isLocal: boolean | string;
|
|
397
425
|
drawer: boolean;
|
|
398
426
|
openedInitialValue?: boolean | undefined;
|
|
399
427
|
mouseOver: boolean;
|
|
400
|
-
width:
|
|
401
|
-
mobileBreakpoint:
|
|
428
|
+
width: number | string;
|
|
429
|
+
mobileBreakpoint: number | string;
|
|
402
430
|
topSlot: {
|
|
403
431
|
[x: string]: any;
|
|
404
|
-
children?: any[] | undefined;
|
|
432
|
+
children?: /*elided*/ any[] | undefined;
|
|
405
433
|
component: string;
|
|
406
434
|
allowDuplicate?: boolean | undefined;
|
|
407
435
|
autofocus?: boolean | undefined;
|
|
408
436
|
componentId?: number | undefined;
|
|
409
437
|
cssClass?: string | undefined;
|
|
410
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
438
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
411
439
|
events?: {
|
|
412
440
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
413
441
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -443,25 +471,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
443
471
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
444
472
|
} | undefined;
|
|
445
473
|
} | undefined;
|
|
446
|
-
isVisible?:
|
|
474
|
+
isVisible?: boolean | string | undefined;
|
|
447
475
|
dark?: boolean | undefined;
|
|
448
476
|
light?: boolean | undefined;
|
|
449
477
|
theme?: string | undefined;
|
|
450
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
478
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
451
479
|
name: string;
|
|
452
480
|
parent?: {
|
|
453
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
454
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
481
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
482
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
455
483
|
allowDuplicate: boolean;
|
|
456
484
|
autofocus: boolean;
|
|
457
485
|
children: {
|
|
458
486
|
[x: string]: any;
|
|
459
487
|
allowDuplicate?: boolean | undefined;
|
|
460
488
|
autofocus?: boolean | undefined;
|
|
461
|
-
children?: any[] | undefined;
|
|
489
|
+
children?: /*elided*/ any[] | undefined;
|
|
462
490
|
componentId?: number | undefined;
|
|
463
491
|
cssClass?: string | undefined;
|
|
464
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
492
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
465
493
|
events?: {
|
|
466
494
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
467
495
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -497,20 +525,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
497
525
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
498
526
|
} | undefined;
|
|
499
527
|
} | undefined;
|
|
500
|
-
isVisible?:
|
|
528
|
+
isVisible?: boolean | string | undefined;
|
|
501
529
|
dark?: boolean | undefined;
|
|
502
530
|
light?: boolean | undefined;
|
|
503
531
|
theme?: string | undefined;
|
|
504
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
532
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
505
533
|
name: string;
|
|
506
|
-
parent?: any | undefined;
|
|
534
|
+
parent?: /*elided*/ any | undefined;
|
|
507
535
|
tabStop?: boolean | undefined;
|
|
508
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
536
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
509
537
|
fillHeight?: boolean | undefined;
|
|
510
538
|
}[];
|
|
511
539
|
componentId: number;
|
|
512
540
|
cssClass: string;
|
|
513
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
541
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
514
542
|
events: {
|
|
515
543
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
516
544
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -546,19 +574,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
546
574
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
547
575
|
} | undefined;
|
|
548
576
|
};
|
|
549
|
-
isVisible:
|
|
577
|
+
isVisible: boolean | string;
|
|
550
578
|
dark: boolean;
|
|
551
579
|
light: boolean;
|
|
552
580
|
theme?: string | undefined;
|
|
553
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
581
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
554
582
|
name: string;
|
|
555
|
-
parent?: any | undefined;
|
|
583
|
+
parent?: /*elided*/ any | undefined;
|
|
556
584
|
tabStop: boolean;
|
|
557
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
585
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
558
586
|
fillHeight: boolean;
|
|
559
587
|
} | undefined;
|
|
560
588
|
tabStop?: boolean | undefined;
|
|
561
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
589
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
562
590
|
fillHeight?: boolean | undefined;
|
|
563
591
|
}[];
|
|
564
592
|
showTooltip: boolean;
|
|
@@ -569,30 +597,30 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
569
597
|
[x: string]: any;
|
|
570
598
|
parentMenu?: {
|
|
571
599
|
[x: string]: any;
|
|
572
|
-
app?:
|
|
573
|
-
absolute?:
|
|
574
|
-
clipped?:
|
|
575
|
-
dense?:
|
|
576
|
-
fixed?:
|
|
577
|
-
floating?:
|
|
578
|
-
mini?:
|
|
579
|
-
miniWidth?:
|
|
580
|
-
temporary?:
|
|
581
|
-
items?: any[] | undefined;
|
|
600
|
+
app?: boolean | string | undefined;
|
|
601
|
+
absolute?: boolean | string | undefined;
|
|
602
|
+
clipped?: boolean | string | undefined;
|
|
603
|
+
dense?: boolean | string | undefined;
|
|
604
|
+
fixed?: boolean | string | undefined;
|
|
605
|
+
floating?: boolean | string | undefined;
|
|
606
|
+
mini?: boolean | string | undefined;
|
|
607
|
+
miniWidth?: number | string | undefined;
|
|
608
|
+
temporary?: boolean | string | undefined;
|
|
609
|
+
items?: /*elided*/ any[] | undefined;
|
|
582
610
|
itemsUrl?: string | undefined;
|
|
583
|
-
isLocal?:
|
|
584
|
-
closeToMini?:
|
|
585
|
-
showSearch?:
|
|
586
|
-
opened?:
|
|
611
|
+
isLocal?: boolean | string | undefined;
|
|
612
|
+
closeToMini?: boolean | string | undefined;
|
|
613
|
+
showSearch?: boolean | string | undefined;
|
|
614
|
+
opened?: boolean | string | undefined;
|
|
587
615
|
topSlot?: {
|
|
588
616
|
[x: string]: any;
|
|
589
|
-
children?: any[] | undefined;
|
|
617
|
+
children?: /*elided*/ any[] | undefined;
|
|
590
618
|
component: string;
|
|
591
619
|
allowDuplicate?: boolean | undefined;
|
|
592
620
|
autofocus?: boolean | undefined;
|
|
593
621
|
componentId?: number | undefined;
|
|
594
622
|
cssClass?: string | undefined;
|
|
595
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
623
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
596
624
|
events?: {
|
|
597
625
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
598
626
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -628,25 +656,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
628
656
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
629
657
|
} | undefined;
|
|
630
658
|
} | undefined;
|
|
631
|
-
isVisible?:
|
|
659
|
+
isVisible?: boolean | string | undefined;
|
|
632
660
|
dark?: boolean | undefined;
|
|
633
661
|
light?: boolean | undefined;
|
|
634
662
|
theme?: string | undefined;
|
|
635
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
663
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
636
664
|
name: string;
|
|
637
665
|
parent?: {
|
|
638
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
639
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
666
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
667
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
640
668
|
allowDuplicate: boolean;
|
|
641
669
|
autofocus: boolean;
|
|
642
670
|
children: {
|
|
643
671
|
[x: string]: any;
|
|
644
672
|
allowDuplicate?: boolean | undefined;
|
|
645
673
|
autofocus?: boolean | undefined;
|
|
646
|
-
children?: any[] | undefined;
|
|
674
|
+
children?: /*elided*/ any[] | undefined;
|
|
647
675
|
componentId?: number | undefined;
|
|
648
676
|
cssClass?: string | undefined;
|
|
649
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
677
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
650
678
|
events?: {
|
|
651
679
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
652
680
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -682,20 +710,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
682
710
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
683
711
|
} | undefined;
|
|
684
712
|
} | undefined;
|
|
685
|
-
isVisible?:
|
|
713
|
+
isVisible?: boolean | string | undefined;
|
|
686
714
|
dark?: boolean | undefined;
|
|
687
715
|
light?: boolean | undefined;
|
|
688
716
|
theme?: string | undefined;
|
|
689
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
717
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
690
718
|
name: string;
|
|
691
|
-
parent?: any | undefined;
|
|
719
|
+
parent?: /*elided*/ any | undefined;
|
|
692
720
|
tabStop?: boolean | undefined;
|
|
693
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
721
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
694
722
|
fillHeight?: boolean | undefined;
|
|
695
723
|
}[];
|
|
696
724
|
componentId: number;
|
|
697
725
|
cssClass: string;
|
|
698
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
726
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
699
727
|
events: {
|
|
700
728
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
701
729
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -731,35 +759,35 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
731
759
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
732
760
|
} | undefined;
|
|
733
761
|
};
|
|
734
|
-
isVisible:
|
|
762
|
+
isVisible: boolean | string;
|
|
735
763
|
dark: boolean;
|
|
736
764
|
light: boolean;
|
|
737
765
|
theme?: string | undefined;
|
|
738
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
766
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
739
767
|
name: string;
|
|
740
|
-
parent?: any | undefined;
|
|
768
|
+
parent?: /*elided*/ any | undefined;
|
|
741
769
|
tabStop: boolean;
|
|
742
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
770
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
743
771
|
fillHeight: boolean;
|
|
744
772
|
} | undefined;
|
|
745
773
|
tabStop?: boolean | undefined;
|
|
746
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
774
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
747
775
|
fillHeight?: boolean | undefined;
|
|
748
776
|
}[] | undefined;
|
|
749
|
-
width?:
|
|
750
|
-
mobileBreakpoint?:
|
|
777
|
+
width?: number | string | undefined;
|
|
778
|
+
mobileBreakpoint?: number | string | undefined;
|
|
751
779
|
cache?: boolean | undefined;
|
|
752
780
|
disableRouteWatcher?: boolean | undefined;
|
|
753
|
-
permanent?:
|
|
781
|
+
permanent?: boolean | string | undefined;
|
|
754
782
|
children?: {
|
|
755
783
|
[x: string]: any;
|
|
756
|
-
children?: any[] | undefined;
|
|
784
|
+
children?: /*elided*/ any[] | undefined;
|
|
757
785
|
component: string;
|
|
758
786
|
allowDuplicate?: boolean | undefined;
|
|
759
787
|
autofocus?: boolean | undefined;
|
|
760
788
|
componentId?: number | undefined;
|
|
761
789
|
cssClass?: string | undefined;
|
|
762
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
790
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
763
791
|
events?: {
|
|
764
792
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
765
793
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -795,25 +823,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
795
823
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
796
824
|
} | undefined;
|
|
797
825
|
} | undefined;
|
|
798
|
-
isVisible?:
|
|
826
|
+
isVisible?: boolean | string | undefined;
|
|
799
827
|
dark?: boolean | undefined;
|
|
800
828
|
light?: boolean | undefined;
|
|
801
829
|
theme?: string | undefined;
|
|
802
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
830
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
803
831
|
name: string;
|
|
804
832
|
parent?: {
|
|
805
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
806
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
833
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
834
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
807
835
|
allowDuplicate: boolean;
|
|
808
836
|
autofocus: boolean;
|
|
809
837
|
children: {
|
|
810
838
|
[x: string]: any;
|
|
811
839
|
allowDuplicate?: boolean | undefined;
|
|
812
840
|
autofocus?: boolean | undefined;
|
|
813
|
-
children?: any[] | undefined;
|
|
841
|
+
children?: /*elided*/ any[] | undefined;
|
|
814
842
|
componentId?: number | undefined;
|
|
815
843
|
cssClass?: string | undefined;
|
|
816
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
844
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
817
845
|
events?: {
|
|
818
846
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
819
847
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -849,20 +877,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
849
877
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
850
878
|
} | undefined;
|
|
851
879
|
} | undefined;
|
|
852
|
-
isVisible?:
|
|
880
|
+
isVisible?: boolean | string | undefined;
|
|
853
881
|
dark?: boolean | undefined;
|
|
854
882
|
light?: boolean | undefined;
|
|
855
883
|
theme?: string | undefined;
|
|
856
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
884
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
857
885
|
name: string;
|
|
858
|
-
parent?: any | undefined;
|
|
886
|
+
parent?: /*elided*/ any | undefined;
|
|
859
887
|
tabStop?: boolean | undefined;
|
|
860
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
888
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
861
889
|
fillHeight?: boolean | undefined;
|
|
862
890
|
}[];
|
|
863
891
|
componentId: number;
|
|
864
892
|
cssClass: string;
|
|
865
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
893
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
866
894
|
events: {
|
|
867
895
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
868
896
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -898,19 +926,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
898
926
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
899
927
|
} | undefined;
|
|
900
928
|
};
|
|
901
|
-
isVisible:
|
|
929
|
+
isVisible: boolean | string;
|
|
902
930
|
dark: boolean;
|
|
903
931
|
light: boolean;
|
|
904
932
|
theme?: string | undefined;
|
|
905
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
933
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
906
934
|
name: string;
|
|
907
|
-
parent?: any | undefined;
|
|
935
|
+
parent?: /*elided*/ any | undefined;
|
|
908
936
|
tabStop: boolean;
|
|
909
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
937
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
910
938
|
fillHeight: boolean;
|
|
911
939
|
} | undefined;
|
|
912
940
|
tabStop?: boolean | undefined;
|
|
913
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
941
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
914
942
|
fillHeight?: boolean | undefined;
|
|
915
943
|
}[] | undefined;
|
|
916
944
|
component: string;
|
|
@@ -918,7 +946,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
918
946
|
autofocus?: boolean | undefined;
|
|
919
947
|
componentId?: number | undefined;
|
|
920
948
|
cssClass?: string | undefined;
|
|
921
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
949
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
922
950
|
events?: {
|
|
923
951
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
924
952
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -954,25 +982,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
954
982
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
955
983
|
} | undefined;
|
|
956
984
|
} | undefined;
|
|
957
|
-
isVisible?:
|
|
985
|
+
isVisible?: boolean | string | undefined;
|
|
958
986
|
dark?: boolean | undefined;
|
|
959
987
|
light?: boolean | undefined;
|
|
960
988
|
theme?: string | undefined;
|
|
961
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
989
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
962
990
|
name: string;
|
|
963
991
|
parent?: {
|
|
964
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
965
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
992
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
993
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
966
994
|
allowDuplicate: boolean;
|
|
967
995
|
autofocus: boolean;
|
|
968
996
|
children: {
|
|
969
997
|
[x: string]: any;
|
|
970
998
|
allowDuplicate?: boolean | undefined;
|
|
971
999
|
autofocus?: boolean | undefined;
|
|
972
|
-
children?: any[] | undefined;
|
|
1000
|
+
children?: /*elided*/ any[] | undefined;
|
|
973
1001
|
componentId?: number | undefined;
|
|
974
1002
|
cssClass?: string | undefined;
|
|
975
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1003
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
976
1004
|
events?: {
|
|
977
1005
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
978
1006
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1008,20 +1036,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1008
1036
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1009
1037
|
} | undefined;
|
|
1010
1038
|
} | undefined;
|
|
1011
|
-
isVisible?:
|
|
1039
|
+
isVisible?: boolean | string | undefined;
|
|
1012
1040
|
dark?: boolean | undefined;
|
|
1013
1041
|
light?: boolean | undefined;
|
|
1014
1042
|
theme?: string | undefined;
|
|
1015
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1043
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1016
1044
|
name: string;
|
|
1017
|
-
parent?: any | undefined;
|
|
1045
|
+
parent?: /*elided*/ any | undefined;
|
|
1018
1046
|
tabStop?: boolean | undefined;
|
|
1019
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1047
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1020
1048
|
fillHeight?: boolean | undefined;
|
|
1021
1049
|
}[];
|
|
1022
1050
|
componentId: number;
|
|
1023
1051
|
cssClass: string;
|
|
1024
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1052
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1025
1053
|
events: {
|
|
1026
1054
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1027
1055
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1057,52 +1085,52 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1057
1085
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1058
1086
|
} | undefined;
|
|
1059
1087
|
};
|
|
1060
|
-
isVisible:
|
|
1088
|
+
isVisible: boolean | string;
|
|
1061
1089
|
dark: boolean;
|
|
1062
1090
|
light: boolean;
|
|
1063
1091
|
theme?: string | undefined;
|
|
1064
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1092
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1065
1093
|
name: string;
|
|
1066
|
-
parent?: any | undefined;
|
|
1094
|
+
parent?: /*elided*/ any | undefined;
|
|
1067
1095
|
tabStop: boolean;
|
|
1068
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1096
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1069
1097
|
fillHeight: boolean;
|
|
1070
1098
|
} | undefined;
|
|
1071
1099
|
tabStop?: boolean | undefined;
|
|
1072
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1100
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1073
1101
|
fillHeight?: boolean | undefined;
|
|
1074
1102
|
} | undefined;
|
|
1075
1103
|
parentGroup?: {
|
|
1076
1104
|
[x: string]: any;
|
|
1077
|
-
items: any[];
|
|
1078
|
-
opened?:
|
|
1105
|
+
items: /*elided*/ any[];
|
|
1106
|
+
opened?: boolean | string | undefined;
|
|
1079
1107
|
expandIcon?: string | undefined;
|
|
1080
1108
|
parentMenu?: {
|
|
1081
1109
|
[x: string]: any;
|
|
1082
|
-
app?:
|
|
1083
|
-
absolute?:
|
|
1084
|
-
clipped?:
|
|
1085
|
-
dense?:
|
|
1086
|
-
fixed?:
|
|
1087
|
-
floating?:
|
|
1088
|
-
mini?:
|
|
1089
|
-
miniWidth?:
|
|
1090
|
-
temporary?:
|
|
1091
|
-
items?: any[] | undefined;
|
|
1110
|
+
app?: boolean | string | undefined;
|
|
1111
|
+
absolute?: boolean | string | undefined;
|
|
1112
|
+
clipped?: boolean | string | undefined;
|
|
1113
|
+
dense?: boolean | string | undefined;
|
|
1114
|
+
fixed?: boolean | string | undefined;
|
|
1115
|
+
floating?: boolean | string | undefined;
|
|
1116
|
+
mini?: boolean | string | undefined;
|
|
1117
|
+
miniWidth?: number | string | undefined;
|
|
1118
|
+
temporary?: boolean | string | undefined;
|
|
1119
|
+
items?: /*elided*/ any[] | undefined;
|
|
1092
1120
|
itemsUrl?: string | undefined;
|
|
1093
|
-
isLocal?:
|
|
1094
|
-
closeToMini?:
|
|
1095
|
-
showSearch?:
|
|
1096
|
-
opened?:
|
|
1121
|
+
isLocal?: boolean | string | undefined;
|
|
1122
|
+
closeToMini?: boolean | string | undefined;
|
|
1123
|
+
showSearch?: boolean | string | undefined;
|
|
1124
|
+
opened?: boolean | string | undefined;
|
|
1097
1125
|
topSlot?: {
|
|
1098
1126
|
[x: string]: any;
|
|
1099
|
-
children?: any[] | undefined;
|
|
1127
|
+
children?: /*elided*/ any[] | undefined;
|
|
1100
1128
|
component: string;
|
|
1101
1129
|
allowDuplicate?: boolean | undefined;
|
|
1102
1130
|
autofocus?: boolean | undefined;
|
|
1103
1131
|
componentId?: number | undefined;
|
|
1104
1132
|
cssClass?: string | undefined;
|
|
1105
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1133
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1106
1134
|
events?: {
|
|
1107
1135
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1108
1136
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1138,25 +1166,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1138
1166
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1139
1167
|
} | undefined;
|
|
1140
1168
|
} | undefined;
|
|
1141
|
-
isVisible?:
|
|
1169
|
+
isVisible?: boolean | string | undefined;
|
|
1142
1170
|
dark?: boolean | undefined;
|
|
1143
1171
|
light?: boolean | undefined;
|
|
1144
1172
|
theme?: string | undefined;
|
|
1145
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1173
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1146
1174
|
name: string;
|
|
1147
1175
|
parent?: {
|
|
1148
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1149
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1176
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1177
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1150
1178
|
allowDuplicate: boolean;
|
|
1151
1179
|
autofocus: boolean;
|
|
1152
1180
|
children: {
|
|
1153
1181
|
[x: string]: any;
|
|
1154
1182
|
allowDuplicate?: boolean | undefined;
|
|
1155
1183
|
autofocus?: boolean | undefined;
|
|
1156
|
-
children?: any[] | undefined;
|
|
1184
|
+
children?: /*elided*/ any[] | undefined;
|
|
1157
1185
|
componentId?: number | undefined;
|
|
1158
1186
|
cssClass?: string | undefined;
|
|
1159
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1187
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1160
1188
|
events?: {
|
|
1161
1189
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1162
1190
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1192,20 +1220,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1192
1220
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1193
1221
|
} | undefined;
|
|
1194
1222
|
} | undefined;
|
|
1195
|
-
isVisible?:
|
|
1223
|
+
isVisible?: boolean | string | undefined;
|
|
1196
1224
|
dark?: boolean | undefined;
|
|
1197
1225
|
light?: boolean | undefined;
|
|
1198
1226
|
theme?: string | undefined;
|
|
1199
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1227
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1200
1228
|
name: string;
|
|
1201
|
-
parent?: any | undefined;
|
|
1229
|
+
parent?: /*elided*/ any | undefined;
|
|
1202
1230
|
tabStop?: boolean | undefined;
|
|
1203
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1231
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1204
1232
|
fillHeight?: boolean | undefined;
|
|
1205
1233
|
}[];
|
|
1206
1234
|
componentId: number;
|
|
1207
1235
|
cssClass: string;
|
|
1208
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1236
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1209
1237
|
events: {
|
|
1210
1238
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1211
1239
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1241,35 +1269,35 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1241
1269
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1242
1270
|
} | undefined;
|
|
1243
1271
|
};
|
|
1244
|
-
isVisible:
|
|
1272
|
+
isVisible: boolean | string;
|
|
1245
1273
|
dark: boolean;
|
|
1246
1274
|
light: boolean;
|
|
1247
1275
|
theme?: string | undefined;
|
|
1248
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1276
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1249
1277
|
name: string;
|
|
1250
|
-
parent?: any | undefined;
|
|
1278
|
+
parent?: /*elided*/ any | undefined;
|
|
1251
1279
|
tabStop: boolean;
|
|
1252
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1280
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1253
1281
|
fillHeight: boolean;
|
|
1254
1282
|
} | undefined;
|
|
1255
1283
|
tabStop?: boolean | undefined;
|
|
1256
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1284
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1257
1285
|
fillHeight?: boolean | undefined;
|
|
1258
1286
|
}[] | undefined;
|
|
1259
|
-
width?:
|
|
1260
|
-
mobileBreakpoint?:
|
|
1287
|
+
width?: number | string | undefined;
|
|
1288
|
+
mobileBreakpoint?: number | string | undefined;
|
|
1261
1289
|
cache?: boolean | undefined;
|
|
1262
1290
|
disableRouteWatcher?: boolean | undefined;
|
|
1263
|
-
permanent?:
|
|
1291
|
+
permanent?: boolean | string | undefined;
|
|
1264
1292
|
children?: {
|
|
1265
1293
|
[x: string]: any;
|
|
1266
|
-
children?: any[] | undefined;
|
|
1294
|
+
children?: /*elided*/ any[] | undefined;
|
|
1267
1295
|
component: string;
|
|
1268
1296
|
allowDuplicate?: boolean | undefined;
|
|
1269
1297
|
autofocus?: boolean | undefined;
|
|
1270
1298
|
componentId?: number | undefined;
|
|
1271
1299
|
cssClass?: string | undefined;
|
|
1272
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1300
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1273
1301
|
events?: {
|
|
1274
1302
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1275
1303
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1305,25 +1333,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1305
1333
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1306
1334
|
} | undefined;
|
|
1307
1335
|
} | undefined;
|
|
1308
|
-
isVisible?:
|
|
1336
|
+
isVisible?: boolean | string | undefined;
|
|
1309
1337
|
dark?: boolean | undefined;
|
|
1310
1338
|
light?: boolean | undefined;
|
|
1311
1339
|
theme?: string | undefined;
|
|
1312
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1340
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1313
1341
|
name: string;
|
|
1314
1342
|
parent?: {
|
|
1315
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1316
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1343
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1344
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1317
1345
|
allowDuplicate: boolean;
|
|
1318
1346
|
autofocus: boolean;
|
|
1319
1347
|
children: {
|
|
1320
1348
|
[x: string]: any;
|
|
1321
1349
|
allowDuplicate?: boolean | undefined;
|
|
1322
1350
|
autofocus?: boolean | undefined;
|
|
1323
|
-
children?: any[] | undefined;
|
|
1351
|
+
children?: /*elided*/ any[] | undefined;
|
|
1324
1352
|
componentId?: number | undefined;
|
|
1325
1353
|
cssClass?: string | undefined;
|
|
1326
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1354
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1327
1355
|
events?: {
|
|
1328
1356
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1329
1357
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1359,20 +1387,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1359
1387
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1360
1388
|
} | undefined;
|
|
1361
1389
|
} | undefined;
|
|
1362
|
-
isVisible?:
|
|
1390
|
+
isVisible?: boolean | string | undefined;
|
|
1363
1391
|
dark?: boolean | undefined;
|
|
1364
1392
|
light?: boolean | undefined;
|
|
1365
1393
|
theme?: string | undefined;
|
|
1366
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1394
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1367
1395
|
name: string;
|
|
1368
|
-
parent?: any | undefined;
|
|
1396
|
+
parent?: /*elided*/ any | undefined;
|
|
1369
1397
|
tabStop?: boolean | undefined;
|
|
1370
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1398
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1371
1399
|
fillHeight?: boolean | undefined;
|
|
1372
1400
|
}[];
|
|
1373
1401
|
componentId: number;
|
|
1374
1402
|
cssClass: string;
|
|
1375
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1403
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1376
1404
|
events: {
|
|
1377
1405
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1378
1406
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1408,19 +1436,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1408
1436
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1409
1437
|
} | undefined;
|
|
1410
1438
|
};
|
|
1411
|
-
isVisible:
|
|
1439
|
+
isVisible: boolean | string;
|
|
1412
1440
|
dark: boolean;
|
|
1413
1441
|
light: boolean;
|
|
1414
1442
|
theme?: string | undefined;
|
|
1415
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1443
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1416
1444
|
name: string;
|
|
1417
|
-
parent?: any | undefined;
|
|
1445
|
+
parent?: /*elided*/ any | undefined;
|
|
1418
1446
|
tabStop: boolean;
|
|
1419
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1447
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1420
1448
|
fillHeight: boolean;
|
|
1421
1449
|
} | undefined;
|
|
1422
1450
|
tabStop?: boolean | undefined;
|
|
1423
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1451
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1424
1452
|
fillHeight?: boolean | undefined;
|
|
1425
1453
|
}[] | undefined;
|
|
1426
1454
|
component: string;
|
|
@@ -1428,7 +1456,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1428
1456
|
autofocus?: boolean | undefined;
|
|
1429
1457
|
componentId?: number | undefined;
|
|
1430
1458
|
cssClass?: string | undefined;
|
|
1431
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1459
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1432
1460
|
events?: {
|
|
1433
1461
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1434
1462
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1464,25 +1492,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1464
1492
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1465
1493
|
} | undefined;
|
|
1466
1494
|
} | undefined;
|
|
1467
|
-
isVisible?:
|
|
1495
|
+
isVisible?: boolean | string | undefined;
|
|
1468
1496
|
dark?: boolean | undefined;
|
|
1469
1497
|
light?: boolean | undefined;
|
|
1470
1498
|
theme?: string | undefined;
|
|
1471
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1499
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1472
1500
|
name: string;
|
|
1473
1501
|
parent?: {
|
|
1474
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1475
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1502
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1503
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1476
1504
|
allowDuplicate: boolean;
|
|
1477
1505
|
autofocus: boolean;
|
|
1478
1506
|
children: {
|
|
1479
1507
|
[x: string]: any;
|
|
1480
1508
|
allowDuplicate?: boolean | undefined;
|
|
1481
1509
|
autofocus?: boolean | undefined;
|
|
1482
|
-
children?: any[] | undefined;
|
|
1510
|
+
children?: /*elided*/ any[] | undefined;
|
|
1483
1511
|
componentId?: number | undefined;
|
|
1484
1512
|
cssClass?: string | undefined;
|
|
1485
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1513
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1486
1514
|
events?: {
|
|
1487
1515
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1488
1516
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1518,20 +1546,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1518
1546
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1519
1547
|
} | undefined;
|
|
1520
1548
|
} | undefined;
|
|
1521
|
-
isVisible?:
|
|
1549
|
+
isVisible?: boolean | string | undefined;
|
|
1522
1550
|
dark?: boolean | undefined;
|
|
1523
1551
|
light?: boolean | undefined;
|
|
1524
1552
|
theme?: string | undefined;
|
|
1525
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1553
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1526
1554
|
name: string;
|
|
1527
|
-
parent?: any | undefined;
|
|
1555
|
+
parent?: /*elided*/ any | undefined;
|
|
1528
1556
|
tabStop?: boolean | undefined;
|
|
1529
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1557
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1530
1558
|
fillHeight?: boolean | undefined;
|
|
1531
1559
|
}[];
|
|
1532
1560
|
componentId: number;
|
|
1533
1561
|
cssClass: string;
|
|
1534
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1562
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1535
1563
|
events: {
|
|
1536
1564
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1537
1565
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1567,31 +1595,31 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1567
1595
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1568
1596
|
} | undefined;
|
|
1569
1597
|
};
|
|
1570
|
-
isVisible:
|
|
1598
|
+
isVisible: boolean | string;
|
|
1571
1599
|
dark: boolean;
|
|
1572
1600
|
light: boolean;
|
|
1573
1601
|
theme?: string | undefined;
|
|
1574
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1602
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1575
1603
|
name: string;
|
|
1576
|
-
parent?: any | undefined;
|
|
1604
|
+
parent?: /*elided*/ any | undefined;
|
|
1577
1605
|
tabStop: boolean;
|
|
1578
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1606
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1579
1607
|
fillHeight: boolean;
|
|
1580
1608
|
} | undefined;
|
|
1581
1609
|
tabStop?: boolean | undefined;
|
|
1582
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1610
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1583
1611
|
fillHeight?: boolean | undefined;
|
|
1584
1612
|
} | undefined;
|
|
1585
|
-
parentGroup?: any | undefined;
|
|
1613
|
+
parentGroup?: /*elided*/ any | undefined;
|
|
1586
1614
|
children?: {
|
|
1587
1615
|
[x: string]: any;
|
|
1588
|
-
children?: any[] | undefined;
|
|
1616
|
+
children?: /*elided*/ any[] | undefined;
|
|
1589
1617
|
component: string;
|
|
1590
1618
|
allowDuplicate?: boolean | undefined;
|
|
1591
1619
|
autofocus?: boolean | undefined;
|
|
1592
1620
|
componentId?: number | undefined;
|
|
1593
1621
|
cssClass?: string | undefined;
|
|
1594
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1622
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1595
1623
|
events?: {
|
|
1596
1624
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1597
1625
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1627,25 +1655,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1627
1655
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1628
1656
|
} | undefined;
|
|
1629
1657
|
} | undefined;
|
|
1630
|
-
isVisible?:
|
|
1658
|
+
isVisible?: boolean | string | undefined;
|
|
1631
1659
|
dark?: boolean | undefined;
|
|
1632
1660
|
light?: boolean | undefined;
|
|
1633
1661
|
theme?: string | undefined;
|
|
1634
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1662
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1635
1663
|
name: string;
|
|
1636
1664
|
parent?: {
|
|
1637
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1638
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1665
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1666
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1639
1667
|
allowDuplicate: boolean;
|
|
1640
1668
|
autofocus: boolean;
|
|
1641
1669
|
children: {
|
|
1642
1670
|
[x: string]: any;
|
|
1643
1671
|
allowDuplicate?: boolean | undefined;
|
|
1644
1672
|
autofocus?: boolean | undefined;
|
|
1645
|
-
children?: any[] | undefined;
|
|
1673
|
+
children?: /*elided*/ any[] | undefined;
|
|
1646
1674
|
componentId?: number | undefined;
|
|
1647
1675
|
cssClass?: string | undefined;
|
|
1648
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1676
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1649
1677
|
events?: {
|
|
1650
1678
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1651
1679
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1681,20 +1709,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1681
1709
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1682
1710
|
} | undefined;
|
|
1683
1711
|
} | undefined;
|
|
1684
|
-
isVisible?:
|
|
1712
|
+
isVisible?: boolean | string | undefined;
|
|
1685
1713
|
dark?: boolean | undefined;
|
|
1686
1714
|
light?: boolean | undefined;
|
|
1687
1715
|
theme?: string | undefined;
|
|
1688
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1716
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1689
1717
|
name: string;
|
|
1690
|
-
parent?: any | undefined;
|
|
1718
|
+
parent?: /*elided*/ any | undefined;
|
|
1691
1719
|
tabStop?: boolean | undefined;
|
|
1692
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1720
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1693
1721
|
fillHeight?: boolean | undefined;
|
|
1694
1722
|
}[];
|
|
1695
1723
|
componentId: number;
|
|
1696
1724
|
cssClass: string;
|
|
1697
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1725
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1698
1726
|
events: {
|
|
1699
1727
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1700
1728
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1730,19 +1758,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1730
1758
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1731
1759
|
} | undefined;
|
|
1732
1760
|
};
|
|
1733
|
-
isVisible:
|
|
1761
|
+
isVisible: boolean | string;
|
|
1734
1762
|
dark: boolean;
|
|
1735
1763
|
light: boolean;
|
|
1736
1764
|
theme?: string | undefined;
|
|
1737
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1765
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1738
1766
|
name: string;
|
|
1739
|
-
parent?: any | undefined;
|
|
1767
|
+
parent?: /*elided*/ any | undefined;
|
|
1740
1768
|
tabStop: boolean;
|
|
1741
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1769
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1742
1770
|
fillHeight: boolean;
|
|
1743
1771
|
} | undefined;
|
|
1744
1772
|
tabStop?: boolean | undefined;
|
|
1745
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1773
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1746
1774
|
fillHeight?: boolean | undefined;
|
|
1747
1775
|
}[] | undefined;
|
|
1748
1776
|
component: string;
|
|
@@ -1750,7 +1778,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1750
1778
|
autofocus?: boolean | undefined;
|
|
1751
1779
|
componentId?: number | undefined;
|
|
1752
1780
|
cssClass?: string | undefined;
|
|
1753
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1781
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1754
1782
|
events?: {
|
|
1755
1783
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1756
1784
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1786,25 +1814,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1786
1814
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1787
1815
|
} | undefined;
|
|
1788
1816
|
} | undefined;
|
|
1789
|
-
isVisible?:
|
|
1817
|
+
isVisible?: boolean | string | undefined;
|
|
1790
1818
|
dark?: boolean | undefined;
|
|
1791
1819
|
light?: boolean | undefined;
|
|
1792
1820
|
theme?: string | undefined;
|
|
1793
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1821
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1794
1822
|
name: string;
|
|
1795
1823
|
parent?: {
|
|
1796
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1797
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1824
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1825
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1798
1826
|
allowDuplicate: boolean;
|
|
1799
1827
|
autofocus: boolean;
|
|
1800
1828
|
children: {
|
|
1801
1829
|
[x: string]: any;
|
|
1802
1830
|
allowDuplicate?: boolean | undefined;
|
|
1803
1831
|
autofocus?: boolean | undefined;
|
|
1804
|
-
children?: any[] | undefined;
|
|
1832
|
+
children?: /*elided*/ any[] | undefined;
|
|
1805
1833
|
componentId?: number | undefined;
|
|
1806
1834
|
cssClass?: string | undefined;
|
|
1807
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1835
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1808
1836
|
events?: {
|
|
1809
1837
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1810
1838
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1840,20 +1868,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1840
1868
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1841
1869
|
} | undefined;
|
|
1842
1870
|
} | undefined;
|
|
1843
|
-
isVisible?:
|
|
1871
|
+
isVisible?: boolean | string | undefined;
|
|
1844
1872
|
dark?: boolean | undefined;
|
|
1845
1873
|
light?: boolean | undefined;
|
|
1846
1874
|
theme?: string | undefined;
|
|
1847
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1875
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1848
1876
|
name: string;
|
|
1849
|
-
parent?: any | undefined;
|
|
1877
|
+
parent?: /*elided*/ any | undefined;
|
|
1850
1878
|
tabStop?: boolean | undefined;
|
|
1851
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1879
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1852
1880
|
fillHeight?: boolean | undefined;
|
|
1853
1881
|
}[];
|
|
1854
1882
|
componentId: number;
|
|
1855
1883
|
cssClass: string;
|
|
1856
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1884
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1857
1885
|
events: {
|
|
1858
1886
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1859
1887
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1889,32 +1917,32 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1889
1917
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1890
1918
|
} | undefined;
|
|
1891
1919
|
};
|
|
1892
|
-
isVisible:
|
|
1920
|
+
isVisible: boolean | string;
|
|
1893
1921
|
dark: boolean;
|
|
1894
1922
|
light: boolean;
|
|
1895
1923
|
theme?: string | undefined;
|
|
1896
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1924
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1897
1925
|
name: string;
|
|
1898
|
-
parent?: any | undefined;
|
|
1926
|
+
parent?: /*elided*/ any | undefined;
|
|
1899
1927
|
tabStop: boolean;
|
|
1900
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1928
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1901
1929
|
fillHeight: boolean;
|
|
1902
1930
|
} | undefined;
|
|
1903
1931
|
tabStop?: boolean | undefined;
|
|
1904
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1932
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1905
1933
|
fillHeight?: boolean | undefined;
|
|
1906
1934
|
label: string;
|
|
1907
1935
|
icon?: string | undefined;
|
|
1908
1936
|
} | undefined;
|
|
1909
1937
|
children?: {
|
|
1910
1938
|
[x: string]: any;
|
|
1911
|
-
children?: any[] | undefined;
|
|
1939
|
+
children?: /*elided*/ any[] | undefined;
|
|
1912
1940
|
component: string;
|
|
1913
1941
|
allowDuplicate?: boolean | undefined;
|
|
1914
1942
|
autofocus?: boolean | undefined;
|
|
1915
1943
|
componentId?: number | undefined;
|
|
1916
1944
|
cssClass?: string | undefined;
|
|
1917
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1945
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1918
1946
|
events?: {
|
|
1919
1947
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1920
1948
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -1950,25 +1978,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
1950
1978
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
1951
1979
|
} | undefined;
|
|
1952
1980
|
} | undefined;
|
|
1953
|
-
isVisible?:
|
|
1981
|
+
isVisible?: boolean | string | undefined;
|
|
1954
1982
|
dark?: boolean | undefined;
|
|
1955
1983
|
light?: boolean | undefined;
|
|
1956
1984
|
theme?: string | undefined;
|
|
1957
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1985
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1958
1986
|
name: string;
|
|
1959
1987
|
parent?: {
|
|
1960
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1961
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1988
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1989
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1962
1990
|
allowDuplicate: boolean;
|
|
1963
1991
|
autofocus: boolean;
|
|
1964
1992
|
children: {
|
|
1965
1993
|
[x: string]: any;
|
|
1966
1994
|
allowDuplicate?: boolean | undefined;
|
|
1967
1995
|
autofocus?: boolean | undefined;
|
|
1968
|
-
children?: any[] | undefined;
|
|
1996
|
+
children?: /*elided*/ any[] | undefined;
|
|
1969
1997
|
componentId?: number | undefined;
|
|
1970
1998
|
cssClass?: string | undefined;
|
|
1971
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1999
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1972
2000
|
events?: {
|
|
1973
2001
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
1974
2002
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2004,20 +2032,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2004
2032
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2005
2033
|
} | undefined;
|
|
2006
2034
|
} | undefined;
|
|
2007
|
-
isVisible?:
|
|
2035
|
+
isVisible?: boolean | string | undefined;
|
|
2008
2036
|
dark?: boolean | undefined;
|
|
2009
2037
|
light?: boolean | undefined;
|
|
2010
2038
|
theme?: string | undefined;
|
|
2011
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2039
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2012
2040
|
name: string;
|
|
2013
|
-
parent?: any | undefined;
|
|
2041
|
+
parent?: /*elided*/ any | undefined;
|
|
2014
2042
|
tabStop?: boolean | undefined;
|
|
2015
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2043
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2016
2044
|
fillHeight?: boolean | undefined;
|
|
2017
2045
|
}[];
|
|
2018
2046
|
componentId: number;
|
|
2019
2047
|
cssClass: string;
|
|
2020
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2048
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2021
2049
|
events: {
|
|
2022
2050
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2023
2051
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2053,19 +2081,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2053
2081
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2054
2082
|
} | undefined;
|
|
2055
2083
|
};
|
|
2056
|
-
isVisible:
|
|
2084
|
+
isVisible: boolean | string;
|
|
2057
2085
|
dark: boolean;
|
|
2058
2086
|
light: boolean;
|
|
2059
2087
|
theme?: string | undefined;
|
|
2060
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2088
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2061
2089
|
name: string;
|
|
2062
|
-
parent?: any | undefined;
|
|
2090
|
+
parent?: /*elided*/ any | undefined;
|
|
2063
2091
|
tabStop: boolean;
|
|
2064
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2092
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2065
2093
|
fillHeight: boolean;
|
|
2066
2094
|
} | undefined;
|
|
2067
2095
|
tabStop?: boolean | undefined;
|
|
2068
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2096
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2069
2097
|
fillHeight?: boolean | undefined;
|
|
2070
2098
|
}[] | undefined;
|
|
2071
2099
|
component: string;
|
|
@@ -2073,7 +2101,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2073
2101
|
autofocus?: boolean | undefined;
|
|
2074
2102
|
componentId?: number | undefined;
|
|
2075
2103
|
cssClass?: string | undefined;
|
|
2076
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2104
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2077
2105
|
events?: {
|
|
2078
2106
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2079
2107
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2109,25 +2137,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2109
2137
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2110
2138
|
} | undefined;
|
|
2111
2139
|
} | undefined;
|
|
2112
|
-
isVisible?:
|
|
2140
|
+
isVisible?: boolean | string | undefined;
|
|
2113
2141
|
dark?: boolean | undefined;
|
|
2114
2142
|
light?: boolean | undefined;
|
|
2115
2143
|
theme?: string | undefined;
|
|
2116
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2144
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2117
2145
|
name: string;
|
|
2118
2146
|
parent?: {
|
|
2119
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2120
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2147
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2148
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2121
2149
|
allowDuplicate: boolean;
|
|
2122
2150
|
autofocus: boolean;
|
|
2123
2151
|
children: {
|
|
2124
2152
|
[x: string]: any;
|
|
2125
2153
|
allowDuplicate?: boolean | undefined;
|
|
2126
2154
|
autofocus?: boolean | undefined;
|
|
2127
|
-
children?: any[] | undefined;
|
|
2155
|
+
children?: /*elided*/ any[] | undefined;
|
|
2128
2156
|
componentId?: number | undefined;
|
|
2129
2157
|
cssClass?: string | undefined;
|
|
2130
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2158
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2131
2159
|
events?: {
|
|
2132
2160
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2133
2161
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2163,20 +2191,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2163
2191
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2164
2192
|
} | undefined;
|
|
2165
2193
|
} | undefined;
|
|
2166
|
-
isVisible?:
|
|
2194
|
+
isVisible?: boolean | string | undefined;
|
|
2167
2195
|
dark?: boolean | undefined;
|
|
2168
2196
|
light?: boolean | undefined;
|
|
2169
2197
|
theme?: string | undefined;
|
|
2170
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2198
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2171
2199
|
name: string;
|
|
2172
|
-
parent?: any | undefined;
|
|
2200
|
+
parent?: /*elided*/ any | undefined;
|
|
2173
2201
|
tabStop?: boolean | undefined;
|
|
2174
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2202
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2175
2203
|
fillHeight?: boolean | undefined;
|
|
2176
2204
|
}[];
|
|
2177
2205
|
componentId: number;
|
|
2178
2206
|
cssClass: string;
|
|
2179
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2207
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2180
2208
|
events: {
|
|
2181
2209
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2182
2210
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2212,19 +2240,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2212
2240
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2213
2241
|
} | undefined;
|
|
2214
2242
|
};
|
|
2215
|
-
isVisible:
|
|
2243
|
+
isVisible: boolean | string;
|
|
2216
2244
|
dark: boolean;
|
|
2217
2245
|
light: boolean;
|
|
2218
2246
|
theme?: string | undefined;
|
|
2219
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2247
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2220
2248
|
name: string;
|
|
2221
|
-
parent?: any | undefined;
|
|
2249
|
+
parent?: /*elided*/ any | undefined;
|
|
2222
2250
|
tabStop: boolean;
|
|
2223
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2251
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2224
2252
|
fillHeight: boolean;
|
|
2225
2253
|
} | undefined;
|
|
2226
2254
|
tabStop?: boolean | undefined;
|
|
2227
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2255
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2228
2256
|
fillHeight?: boolean | undefined;
|
|
2229
2257
|
} | null;
|
|
2230
2258
|
cache?: boolean | undefined;
|
|
@@ -2234,30 +2262,30 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2234
2262
|
[x: string]: any;
|
|
2235
2263
|
parentMenu?: {
|
|
2236
2264
|
[x: string]: any;
|
|
2237
|
-
app?:
|
|
2238
|
-
absolute?:
|
|
2239
|
-
clipped?:
|
|
2240
|
-
dense?:
|
|
2241
|
-
fixed?:
|
|
2242
|
-
floating?:
|
|
2243
|
-
mini?:
|
|
2244
|
-
miniWidth?:
|
|
2245
|
-
temporary?:
|
|
2246
|
-
items?: any[] | undefined;
|
|
2265
|
+
app?: boolean | string | undefined;
|
|
2266
|
+
absolute?: boolean | string | undefined;
|
|
2267
|
+
clipped?: boolean | string | undefined;
|
|
2268
|
+
dense?: boolean | string | undefined;
|
|
2269
|
+
fixed?: boolean | string | undefined;
|
|
2270
|
+
floating?: boolean | string | undefined;
|
|
2271
|
+
mini?: boolean | string | undefined;
|
|
2272
|
+
miniWidth?: number | string | undefined;
|
|
2273
|
+
temporary?: boolean | string | undefined;
|
|
2274
|
+
items?: /*elided*/ any[] | undefined;
|
|
2247
2275
|
itemsUrl?: string | undefined;
|
|
2248
|
-
isLocal?:
|
|
2249
|
-
closeToMini?:
|
|
2250
|
-
showSearch?:
|
|
2251
|
-
opened?:
|
|
2276
|
+
isLocal?: boolean | string | undefined;
|
|
2277
|
+
closeToMini?: boolean | string | undefined;
|
|
2278
|
+
showSearch?: boolean | string | undefined;
|
|
2279
|
+
opened?: boolean | string | undefined;
|
|
2252
2280
|
topSlot?: {
|
|
2253
2281
|
[x: string]: any;
|
|
2254
|
-
children?: any[] | undefined;
|
|
2282
|
+
children?: /*elided*/ any[] | undefined;
|
|
2255
2283
|
component: string;
|
|
2256
2284
|
allowDuplicate?: boolean | undefined;
|
|
2257
2285
|
autofocus?: boolean | undefined;
|
|
2258
2286
|
componentId?: number | undefined;
|
|
2259
2287
|
cssClass?: string | undefined;
|
|
2260
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2288
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2261
2289
|
events?: {
|
|
2262
2290
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2263
2291
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2293,25 +2321,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2293
2321
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2294
2322
|
} | undefined;
|
|
2295
2323
|
} | undefined;
|
|
2296
|
-
isVisible?:
|
|
2324
|
+
isVisible?: boolean | string | undefined;
|
|
2297
2325
|
dark?: boolean | undefined;
|
|
2298
2326
|
light?: boolean | undefined;
|
|
2299
2327
|
theme?: string | undefined;
|
|
2300
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2328
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2301
2329
|
name: string;
|
|
2302
2330
|
parent?: {
|
|
2303
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2304
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2331
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2332
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2305
2333
|
allowDuplicate: boolean;
|
|
2306
2334
|
autofocus: boolean;
|
|
2307
2335
|
children: {
|
|
2308
2336
|
[x: string]: any;
|
|
2309
2337
|
allowDuplicate?: boolean | undefined;
|
|
2310
2338
|
autofocus?: boolean | undefined;
|
|
2311
|
-
children?: any[] | undefined;
|
|
2339
|
+
children?: /*elided*/ any[] | undefined;
|
|
2312
2340
|
componentId?: number | undefined;
|
|
2313
2341
|
cssClass?: string | undefined;
|
|
2314
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2342
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2315
2343
|
events?: {
|
|
2316
2344
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2317
2345
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2347,20 +2375,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2347
2375
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2348
2376
|
} | undefined;
|
|
2349
2377
|
} | undefined;
|
|
2350
|
-
isVisible?:
|
|
2378
|
+
isVisible?: boolean | string | undefined;
|
|
2351
2379
|
dark?: boolean | undefined;
|
|
2352
2380
|
light?: boolean | undefined;
|
|
2353
2381
|
theme?: string | undefined;
|
|
2354
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2382
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2355
2383
|
name: string;
|
|
2356
|
-
parent?: any | undefined;
|
|
2384
|
+
parent?: /*elided*/ any | undefined;
|
|
2357
2385
|
tabStop?: boolean | undefined;
|
|
2358
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2386
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2359
2387
|
fillHeight?: boolean | undefined;
|
|
2360
2388
|
}[];
|
|
2361
2389
|
componentId: number;
|
|
2362
2390
|
cssClass: string;
|
|
2363
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2391
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2364
2392
|
events: {
|
|
2365
2393
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2366
2394
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2396,35 +2424,35 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2396
2424
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2397
2425
|
} | undefined;
|
|
2398
2426
|
};
|
|
2399
|
-
isVisible:
|
|
2427
|
+
isVisible: boolean | string;
|
|
2400
2428
|
dark: boolean;
|
|
2401
2429
|
light: boolean;
|
|
2402
2430
|
theme?: string | undefined;
|
|
2403
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2431
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2404
2432
|
name: string;
|
|
2405
|
-
parent?: any | undefined;
|
|
2433
|
+
parent?: /*elided*/ any | undefined;
|
|
2406
2434
|
tabStop: boolean;
|
|
2407
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2435
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2408
2436
|
fillHeight: boolean;
|
|
2409
2437
|
} | undefined;
|
|
2410
2438
|
tabStop?: boolean | undefined;
|
|
2411
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2439
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2412
2440
|
fillHeight?: boolean | undefined;
|
|
2413
2441
|
}[] | undefined;
|
|
2414
|
-
width?:
|
|
2415
|
-
mobileBreakpoint?:
|
|
2442
|
+
width?: number | string | undefined;
|
|
2443
|
+
mobileBreakpoint?: number | string | undefined;
|
|
2416
2444
|
cache?: boolean | undefined;
|
|
2417
2445
|
disableRouteWatcher?: boolean | undefined;
|
|
2418
|
-
permanent?:
|
|
2446
|
+
permanent?: boolean | string | undefined;
|
|
2419
2447
|
children?: {
|
|
2420
2448
|
[x: string]: any;
|
|
2421
|
-
children?: any[] | undefined;
|
|
2449
|
+
children?: /*elided*/ any[] | undefined;
|
|
2422
2450
|
component: string;
|
|
2423
2451
|
allowDuplicate?: boolean | undefined;
|
|
2424
2452
|
autofocus?: boolean | undefined;
|
|
2425
2453
|
componentId?: number | undefined;
|
|
2426
2454
|
cssClass?: string | undefined;
|
|
2427
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2455
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2428
2456
|
events?: {
|
|
2429
2457
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2430
2458
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2460,25 +2488,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2460
2488
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2461
2489
|
} | undefined;
|
|
2462
2490
|
} | undefined;
|
|
2463
|
-
isVisible?:
|
|
2491
|
+
isVisible?: boolean | string | undefined;
|
|
2464
2492
|
dark?: boolean | undefined;
|
|
2465
2493
|
light?: boolean | undefined;
|
|
2466
2494
|
theme?: string | undefined;
|
|
2467
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2495
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2468
2496
|
name: string;
|
|
2469
2497
|
parent?: {
|
|
2470
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2471
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2498
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2499
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2472
2500
|
allowDuplicate: boolean;
|
|
2473
2501
|
autofocus: boolean;
|
|
2474
2502
|
children: {
|
|
2475
2503
|
[x: string]: any;
|
|
2476
2504
|
allowDuplicate?: boolean | undefined;
|
|
2477
2505
|
autofocus?: boolean | undefined;
|
|
2478
|
-
children?: any[] | undefined;
|
|
2506
|
+
children?: /*elided*/ any[] | undefined;
|
|
2479
2507
|
componentId?: number | undefined;
|
|
2480
2508
|
cssClass?: string | undefined;
|
|
2481
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2509
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2482
2510
|
events?: {
|
|
2483
2511
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2484
2512
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2514,20 +2542,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2514
2542
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2515
2543
|
} | undefined;
|
|
2516
2544
|
} | undefined;
|
|
2517
|
-
isVisible?:
|
|
2545
|
+
isVisible?: boolean | string | undefined;
|
|
2518
2546
|
dark?: boolean | undefined;
|
|
2519
2547
|
light?: boolean | undefined;
|
|
2520
2548
|
theme?: string | undefined;
|
|
2521
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2549
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2522
2550
|
name: string;
|
|
2523
|
-
parent?: any | undefined;
|
|
2551
|
+
parent?: /*elided*/ any | undefined;
|
|
2524
2552
|
tabStop?: boolean | undefined;
|
|
2525
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2553
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2526
2554
|
fillHeight?: boolean | undefined;
|
|
2527
2555
|
}[];
|
|
2528
2556
|
componentId: number;
|
|
2529
2557
|
cssClass: string;
|
|
2530
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2558
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2531
2559
|
events: {
|
|
2532
2560
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2533
2561
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2563,19 +2591,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2563
2591
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2564
2592
|
} | undefined;
|
|
2565
2593
|
};
|
|
2566
|
-
isVisible:
|
|
2594
|
+
isVisible: boolean | string;
|
|
2567
2595
|
dark: boolean;
|
|
2568
2596
|
light: boolean;
|
|
2569
2597
|
theme?: string | undefined;
|
|
2570
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2598
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2571
2599
|
name: string;
|
|
2572
|
-
parent?: any | undefined;
|
|
2600
|
+
parent?: /*elided*/ any | undefined;
|
|
2573
2601
|
tabStop: boolean;
|
|
2574
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2602
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2575
2603
|
fillHeight: boolean;
|
|
2576
2604
|
} | undefined;
|
|
2577
2605
|
tabStop?: boolean | undefined;
|
|
2578
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2606
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2579
2607
|
fillHeight?: boolean | undefined;
|
|
2580
2608
|
}[] | undefined;
|
|
2581
2609
|
component: string;
|
|
@@ -2583,7 +2611,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2583
2611
|
autofocus?: boolean | undefined;
|
|
2584
2612
|
componentId?: number | undefined;
|
|
2585
2613
|
cssClass?: string | undefined;
|
|
2586
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2614
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2587
2615
|
events?: {
|
|
2588
2616
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2589
2617
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2619,25 +2647,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2619
2647
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2620
2648
|
} | undefined;
|
|
2621
2649
|
} | undefined;
|
|
2622
|
-
isVisible?:
|
|
2650
|
+
isVisible?: boolean | string | undefined;
|
|
2623
2651
|
dark?: boolean | undefined;
|
|
2624
2652
|
light?: boolean | undefined;
|
|
2625
2653
|
theme?: string | undefined;
|
|
2626
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2654
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2627
2655
|
name: string;
|
|
2628
2656
|
parent?: {
|
|
2629
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2630
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2657
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2658
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2631
2659
|
allowDuplicate: boolean;
|
|
2632
2660
|
autofocus: boolean;
|
|
2633
2661
|
children: {
|
|
2634
2662
|
[x: string]: any;
|
|
2635
2663
|
allowDuplicate?: boolean | undefined;
|
|
2636
2664
|
autofocus?: boolean | undefined;
|
|
2637
|
-
children?: any[] | undefined;
|
|
2665
|
+
children?: /*elided*/ any[] | undefined;
|
|
2638
2666
|
componentId?: number | undefined;
|
|
2639
2667
|
cssClass?: string | undefined;
|
|
2640
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2668
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2641
2669
|
events?: {
|
|
2642
2670
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2643
2671
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2673,20 +2701,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2673
2701
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2674
2702
|
} | undefined;
|
|
2675
2703
|
} | undefined;
|
|
2676
|
-
isVisible?:
|
|
2704
|
+
isVisible?: boolean | string | undefined;
|
|
2677
2705
|
dark?: boolean | undefined;
|
|
2678
2706
|
light?: boolean | undefined;
|
|
2679
2707
|
theme?: string | undefined;
|
|
2680
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2708
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2681
2709
|
name: string;
|
|
2682
|
-
parent?: any | undefined;
|
|
2710
|
+
parent?: /*elided*/ any | undefined;
|
|
2683
2711
|
tabStop?: boolean | undefined;
|
|
2684
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2712
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2685
2713
|
fillHeight?: boolean | undefined;
|
|
2686
2714
|
}[];
|
|
2687
2715
|
componentId: number;
|
|
2688
2716
|
cssClass: string;
|
|
2689
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2717
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2690
2718
|
events: {
|
|
2691
2719
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2692
2720
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2722,52 +2750,52 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2722
2750
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2723
2751
|
} | undefined;
|
|
2724
2752
|
};
|
|
2725
|
-
isVisible:
|
|
2753
|
+
isVisible: boolean | string;
|
|
2726
2754
|
dark: boolean;
|
|
2727
2755
|
light: boolean;
|
|
2728
2756
|
theme?: string | undefined;
|
|
2729
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2757
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2730
2758
|
name: string;
|
|
2731
|
-
parent?: any | undefined;
|
|
2759
|
+
parent?: /*elided*/ any | undefined;
|
|
2732
2760
|
tabStop: boolean;
|
|
2733
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2761
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2734
2762
|
fillHeight: boolean;
|
|
2735
2763
|
} | undefined;
|
|
2736
2764
|
tabStop?: boolean | undefined;
|
|
2737
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2765
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2738
2766
|
fillHeight?: boolean | undefined;
|
|
2739
2767
|
} | undefined;
|
|
2740
2768
|
parentGroup?: {
|
|
2741
2769
|
[x: string]: any;
|
|
2742
|
-
items: any[];
|
|
2743
|
-
opened?:
|
|
2770
|
+
items: /*elided*/ any[];
|
|
2771
|
+
opened?: boolean | string | undefined;
|
|
2744
2772
|
expandIcon?: string | undefined;
|
|
2745
2773
|
parentMenu?: {
|
|
2746
2774
|
[x: string]: any;
|
|
2747
|
-
app?:
|
|
2748
|
-
absolute?:
|
|
2749
|
-
clipped?:
|
|
2750
|
-
dense?:
|
|
2751
|
-
fixed?:
|
|
2752
|
-
floating?:
|
|
2753
|
-
mini?:
|
|
2754
|
-
miniWidth?:
|
|
2755
|
-
temporary?:
|
|
2756
|
-
items?: any[] | undefined;
|
|
2775
|
+
app?: boolean | string | undefined;
|
|
2776
|
+
absolute?: boolean | string | undefined;
|
|
2777
|
+
clipped?: boolean | string | undefined;
|
|
2778
|
+
dense?: boolean | string | undefined;
|
|
2779
|
+
fixed?: boolean | string | undefined;
|
|
2780
|
+
floating?: boolean | string | undefined;
|
|
2781
|
+
mini?: boolean | string | undefined;
|
|
2782
|
+
miniWidth?: number | string | undefined;
|
|
2783
|
+
temporary?: boolean | string | undefined;
|
|
2784
|
+
items?: /*elided*/ any[] | undefined;
|
|
2757
2785
|
itemsUrl?: string | undefined;
|
|
2758
|
-
isLocal?:
|
|
2759
|
-
closeToMini?:
|
|
2760
|
-
showSearch?:
|
|
2761
|
-
opened?:
|
|
2786
|
+
isLocal?: boolean | string | undefined;
|
|
2787
|
+
closeToMini?: boolean | string | undefined;
|
|
2788
|
+
showSearch?: boolean | string | undefined;
|
|
2789
|
+
opened?: boolean | string | undefined;
|
|
2762
2790
|
topSlot?: {
|
|
2763
2791
|
[x: string]: any;
|
|
2764
|
-
children?: any[] | undefined;
|
|
2792
|
+
children?: /*elided*/ any[] | undefined;
|
|
2765
2793
|
component: string;
|
|
2766
2794
|
allowDuplicate?: boolean | undefined;
|
|
2767
2795
|
autofocus?: boolean | undefined;
|
|
2768
2796
|
componentId?: number | undefined;
|
|
2769
2797
|
cssClass?: string | undefined;
|
|
2770
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2798
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2771
2799
|
events?: {
|
|
2772
2800
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2773
2801
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2803,25 +2831,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2803
2831
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2804
2832
|
} | undefined;
|
|
2805
2833
|
} | undefined;
|
|
2806
|
-
isVisible?:
|
|
2834
|
+
isVisible?: boolean | string | undefined;
|
|
2807
2835
|
dark?: boolean | undefined;
|
|
2808
2836
|
light?: boolean | undefined;
|
|
2809
2837
|
theme?: string | undefined;
|
|
2810
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2838
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2811
2839
|
name: string;
|
|
2812
2840
|
parent?: {
|
|
2813
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2814
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
2841
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
2842
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2815
2843
|
allowDuplicate: boolean;
|
|
2816
2844
|
autofocus: boolean;
|
|
2817
2845
|
children: {
|
|
2818
2846
|
[x: string]: any;
|
|
2819
2847
|
allowDuplicate?: boolean | undefined;
|
|
2820
2848
|
autofocus?: boolean | undefined;
|
|
2821
|
-
children?: any[] | undefined;
|
|
2849
|
+
children?: /*elided*/ any[] | undefined;
|
|
2822
2850
|
componentId?: number | undefined;
|
|
2823
2851
|
cssClass?: string | undefined;
|
|
2824
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2852
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2825
2853
|
events?: {
|
|
2826
2854
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2827
2855
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2857,20 +2885,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2857
2885
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2858
2886
|
} | undefined;
|
|
2859
2887
|
} | undefined;
|
|
2860
|
-
isVisible?:
|
|
2888
|
+
isVisible?: boolean | string | undefined;
|
|
2861
2889
|
dark?: boolean | undefined;
|
|
2862
2890
|
light?: boolean | undefined;
|
|
2863
2891
|
theme?: string | undefined;
|
|
2864
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
2892
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2865
2893
|
name: string;
|
|
2866
|
-
parent?: any | undefined;
|
|
2894
|
+
parent?: /*elided*/ any | undefined;
|
|
2867
2895
|
tabStop?: boolean | undefined;
|
|
2868
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2896
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2869
2897
|
fillHeight?: boolean | undefined;
|
|
2870
2898
|
}[];
|
|
2871
2899
|
componentId: number;
|
|
2872
2900
|
cssClass: string;
|
|
2873
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
2901
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
2874
2902
|
events: {
|
|
2875
2903
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2876
2904
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2906,35 +2934,35 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2906
2934
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2907
2935
|
} | undefined;
|
|
2908
2936
|
};
|
|
2909
|
-
isVisible:
|
|
2937
|
+
isVisible: boolean | string;
|
|
2910
2938
|
dark: boolean;
|
|
2911
2939
|
light: boolean;
|
|
2912
2940
|
theme?: string | undefined;
|
|
2913
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
2941
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
2914
2942
|
name: string;
|
|
2915
|
-
parent?: any | undefined;
|
|
2943
|
+
parent?: /*elided*/ any | undefined;
|
|
2916
2944
|
tabStop: boolean;
|
|
2917
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
2945
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
2918
2946
|
fillHeight: boolean;
|
|
2919
2947
|
} | undefined;
|
|
2920
2948
|
tabStop?: boolean | undefined;
|
|
2921
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
2949
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
2922
2950
|
fillHeight?: boolean | undefined;
|
|
2923
2951
|
}[] | undefined;
|
|
2924
|
-
width?:
|
|
2925
|
-
mobileBreakpoint?:
|
|
2952
|
+
width?: number | string | undefined;
|
|
2953
|
+
mobileBreakpoint?: number | string | undefined;
|
|
2926
2954
|
cache?: boolean | undefined;
|
|
2927
2955
|
disableRouteWatcher?: boolean | undefined;
|
|
2928
|
-
permanent?:
|
|
2956
|
+
permanent?: boolean | string | undefined;
|
|
2929
2957
|
children?: {
|
|
2930
2958
|
[x: string]: any;
|
|
2931
|
-
children?: any[] | undefined;
|
|
2959
|
+
children?: /*elided*/ any[] | undefined;
|
|
2932
2960
|
component: string;
|
|
2933
2961
|
allowDuplicate?: boolean | undefined;
|
|
2934
2962
|
autofocus?: boolean | undefined;
|
|
2935
2963
|
componentId?: number | undefined;
|
|
2936
2964
|
cssClass?: string | undefined;
|
|
2937
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
2965
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2938
2966
|
events?: {
|
|
2939
2967
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2940
2968
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -2970,25 +2998,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
2970
2998
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
2971
2999
|
} | undefined;
|
|
2972
3000
|
} | undefined;
|
|
2973
|
-
isVisible?:
|
|
3001
|
+
isVisible?: boolean | string | undefined;
|
|
2974
3002
|
dark?: boolean | undefined;
|
|
2975
3003
|
light?: boolean | undefined;
|
|
2976
3004
|
theme?: string | undefined;
|
|
2977
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3005
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
2978
3006
|
name: string;
|
|
2979
3007
|
parent?: {
|
|
2980
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
2981
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3008
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3009
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
2982
3010
|
allowDuplicate: boolean;
|
|
2983
3011
|
autofocus: boolean;
|
|
2984
3012
|
children: {
|
|
2985
3013
|
[x: string]: any;
|
|
2986
3014
|
allowDuplicate?: boolean | undefined;
|
|
2987
3015
|
autofocus?: boolean | undefined;
|
|
2988
|
-
children?: any[] | undefined;
|
|
3016
|
+
children?: /*elided*/ any[] | undefined;
|
|
2989
3017
|
componentId?: number | undefined;
|
|
2990
3018
|
cssClass?: string | undefined;
|
|
2991
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3019
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
2992
3020
|
events?: {
|
|
2993
3021
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
2994
3022
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3024,20 +3052,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3024
3052
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3025
3053
|
} | undefined;
|
|
3026
3054
|
} | undefined;
|
|
3027
|
-
isVisible?:
|
|
3055
|
+
isVisible?: boolean | string | undefined;
|
|
3028
3056
|
dark?: boolean | undefined;
|
|
3029
3057
|
light?: boolean | undefined;
|
|
3030
3058
|
theme?: string | undefined;
|
|
3031
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3059
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3032
3060
|
name: string;
|
|
3033
|
-
parent?: any | undefined;
|
|
3061
|
+
parent?: /*elided*/ any | undefined;
|
|
3034
3062
|
tabStop?: boolean | undefined;
|
|
3035
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3063
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3036
3064
|
fillHeight?: boolean | undefined;
|
|
3037
3065
|
}[];
|
|
3038
3066
|
componentId: number;
|
|
3039
3067
|
cssClass: string;
|
|
3040
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3068
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3041
3069
|
events: {
|
|
3042
3070
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3043
3071
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3073,19 +3101,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3073
3101
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3074
3102
|
} | undefined;
|
|
3075
3103
|
};
|
|
3076
|
-
isVisible:
|
|
3104
|
+
isVisible: boolean | string;
|
|
3077
3105
|
dark: boolean;
|
|
3078
3106
|
light: boolean;
|
|
3079
3107
|
theme?: string | undefined;
|
|
3080
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3108
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3081
3109
|
name: string;
|
|
3082
|
-
parent?: any | undefined;
|
|
3110
|
+
parent?: /*elided*/ any | undefined;
|
|
3083
3111
|
tabStop: boolean;
|
|
3084
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3112
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3085
3113
|
fillHeight: boolean;
|
|
3086
3114
|
} | undefined;
|
|
3087
3115
|
tabStop?: boolean | undefined;
|
|
3088
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3116
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3089
3117
|
fillHeight?: boolean | undefined;
|
|
3090
3118
|
}[] | undefined;
|
|
3091
3119
|
component: string;
|
|
@@ -3093,7 +3121,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3093
3121
|
autofocus?: boolean | undefined;
|
|
3094
3122
|
componentId?: number | undefined;
|
|
3095
3123
|
cssClass?: string | undefined;
|
|
3096
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3124
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3097
3125
|
events?: {
|
|
3098
3126
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3099
3127
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3129,25 +3157,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3129
3157
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3130
3158
|
} | undefined;
|
|
3131
3159
|
} | undefined;
|
|
3132
|
-
isVisible?:
|
|
3160
|
+
isVisible?: boolean | string | undefined;
|
|
3133
3161
|
dark?: boolean | undefined;
|
|
3134
3162
|
light?: boolean | undefined;
|
|
3135
3163
|
theme?: string | undefined;
|
|
3136
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3164
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3137
3165
|
name: string;
|
|
3138
3166
|
parent?: {
|
|
3139
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3140
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3167
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3168
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3141
3169
|
allowDuplicate: boolean;
|
|
3142
3170
|
autofocus: boolean;
|
|
3143
3171
|
children: {
|
|
3144
3172
|
[x: string]: any;
|
|
3145
3173
|
allowDuplicate?: boolean | undefined;
|
|
3146
3174
|
autofocus?: boolean | undefined;
|
|
3147
|
-
children?: any[] | undefined;
|
|
3175
|
+
children?: /*elided*/ any[] | undefined;
|
|
3148
3176
|
componentId?: number | undefined;
|
|
3149
3177
|
cssClass?: string | undefined;
|
|
3150
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3178
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3151
3179
|
events?: {
|
|
3152
3180
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3153
3181
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3183,20 +3211,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3183
3211
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3184
3212
|
} | undefined;
|
|
3185
3213
|
} | undefined;
|
|
3186
|
-
isVisible?:
|
|
3214
|
+
isVisible?: boolean | string | undefined;
|
|
3187
3215
|
dark?: boolean | undefined;
|
|
3188
3216
|
light?: boolean | undefined;
|
|
3189
3217
|
theme?: string | undefined;
|
|
3190
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3218
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3191
3219
|
name: string;
|
|
3192
|
-
parent?: any | undefined;
|
|
3220
|
+
parent?: /*elided*/ any | undefined;
|
|
3193
3221
|
tabStop?: boolean | undefined;
|
|
3194
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3222
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3195
3223
|
fillHeight?: boolean | undefined;
|
|
3196
3224
|
}[];
|
|
3197
3225
|
componentId: number;
|
|
3198
3226
|
cssClass: string;
|
|
3199
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3227
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3200
3228
|
events: {
|
|
3201
3229
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3202
3230
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3232,31 +3260,31 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3232
3260
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3233
3261
|
} | undefined;
|
|
3234
3262
|
};
|
|
3235
|
-
isVisible:
|
|
3263
|
+
isVisible: boolean | string;
|
|
3236
3264
|
dark: boolean;
|
|
3237
3265
|
light: boolean;
|
|
3238
3266
|
theme?: string | undefined;
|
|
3239
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3267
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3240
3268
|
name: string;
|
|
3241
|
-
parent?: any | undefined;
|
|
3269
|
+
parent?: /*elided*/ any | undefined;
|
|
3242
3270
|
tabStop: boolean;
|
|
3243
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3271
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3244
3272
|
fillHeight: boolean;
|
|
3245
3273
|
} | undefined;
|
|
3246
3274
|
tabStop?: boolean | undefined;
|
|
3247
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3275
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3248
3276
|
fillHeight?: boolean | undefined;
|
|
3249
3277
|
} | undefined;
|
|
3250
|
-
parentGroup?: any | undefined;
|
|
3278
|
+
parentGroup?: /*elided*/ any | undefined;
|
|
3251
3279
|
children?: {
|
|
3252
3280
|
[x: string]: any;
|
|
3253
|
-
children?: any[] | undefined;
|
|
3281
|
+
children?: /*elided*/ any[] | undefined;
|
|
3254
3282
|
component: string;
|
|
3255
3283
|
allowDuplicate?: boolean | undefined;
|
|
3256
3284
|
autofocus?: boolean | undefined;
|
|
3257
3285
|
componentId?: number | undefined;
|
|
3258
3286
|
cssClass?: string | undefined;
|
|
3259
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3287
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3260
3288
|
events?: {
|
|
3261
3289
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3262
3290
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3292,25 +3320,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3292
3320
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3293
3321
|
} | undefined;
|
|
3294
3322
|
} | undefined;
|
|
3295
|
-
isVisible?:
|
|
3323
|
+
isVisible?: boolean | string | undefined;
|
|
3296
3324
|
dark?: boolean | undefined;
|
|
3297
3325
|
light?: boolean | undefined;
|
|
3298
3326
|
theme?: string | undefined;
|
|
3299
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3327
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3300
3328
|
name: string;
|
|
3301
3329
|
parent?: {
|
|
3302
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3303
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3330
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3331
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3304
3332
|
allowDuplicate: boolean;
|
|
3305
3333
|
autofocus: boolean;
|
|
3306
3334
|
children: {
|
|
3307
3335
|
[x: string]: any;
|
|
3308
3336
|
allowDuplicate?: boolean | undefined;
|
|
3309
3337
|
autofocus?: boolean | undefined;
|
|
3310
|
-
children?: any[] | undefined;
|
|
3338
|
+
children?: /*elided*/ any[] | undefined;
|
|
3311
3339
|
componentId?: number | undefined;
|
|
3312
3340
|
cssClass?: string | undefined;
|
|
3313
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3341
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3314
3342
|
events?: {
|
|
3315
3343
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3316
3344
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3346,20 +3374,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3346
3374
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3347
3375
|
} | undefined;
|
|
3348
3376
|
} | undefined;
|
|
3349
|
-
isVisible?:
|
|
3377
|
+
isVisible?: boolean | string | undefined;
|
|
3350
3378
|
dark?: boolean | undefined;
|
|
3351
3379
|
light?: boolean | undefined;
|
|
3352
3380
|
theme?: string | undefined;
|
|
3353
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3381
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3354
3382
|
name: string;
|
|
3355
|
-
parent?: any | undefined;
|
|
3383
|
+
parent?: /*elided*/ any | undefined;
|
|
3356
3384
|
tabStop?: boolean | undefined;
|
|
3357
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3385
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3358
3386
|
fillHeight?: boolean | undefined;
|
|
3359
3387
|
}[];
|
|
3360
3388
|
componentId: number;
|
|
3361
3389
|
cssClass: string;
|
|
3362
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3390
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3363
3391
|
events: {
|
|
3364
3392
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3365
3393
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3395,19 +3423,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3395
3423
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3396
3424
|
} | undefined;
|
|
3397
3425
|
};
|
|
3398
|
-
isVisible:
|
|
3426
|
+
isVisible: boolean | string;
|
|
3399
3427
|
dark: boolean;
|
|
3400
3428
|
light: boolean;
|
|
3401
3429
|
theme?: string | undefined;
|
|
3402
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3430
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3403
3431
|
name: string;
|
|
3404
|
-
parent?: any | undefined;
|
|
3432
|
+
parent?: /*elided*/ any | undefined;
|
|
3405
3433
|
tabStop: boolean;
|
|
3406
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3434
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3407
3435
|
fillHeight: boolean;
|
|
3408
3436
|
} | undefined;
|
|
3409
3437
|
tabStop?: boolean | undefined;
|
|
3410
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3438
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3411
3439
|
fillHeight?: boolean | undefined;
|
|
3412
3440
|
}[] | undefined;
|
|
3413
3441
|
component: string;
|
|
@@ -3415,7 +3443,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3415
3443
|
autofocus?: boolean | undefined;
|
|
3416
3444
|
componentId?: number | undefined;
|
|
3417
3445
|
cssClass?: string | undefined;
|
|
3418
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3446
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3419
3447
|
events?: {
|
|
3420
3448
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3421
3449
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3451,25 +3479,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3451
3479
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3452
3480
|
} | undefined;
|
|
3453
3481
|
} | undefined;
|
|
3454
|
-
isVisible?:
|
|
3482
|
+
isVisible?: boolean | string | undefined;
|
|
3455
3483
|
dark?: boolean | undefined;
|
|
3456
3484
|
light?: boolean | undefined;
|
|
3457
3485
|
theme?: string | undefined;
|
|
3458
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3486
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3459
3487
|
name: string;
|
|
3460
3488
|
parent?: {
|
|
3461
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3462
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3489
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3490
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3463
3491
|
allowDuplicate: boolean;
|
|
3464
3492
|
autofocus: boolean;
|
|
3465
3493
|
children: {
|
|
3466
3494
|
[x: string]: any;
|
|
3467
3495
|
allowDuplicate?: boolean | undefined;
|
|
3468
3496
|
autofocus?: boolean | undefined;
|
|
3469
|
-
children?: any[] | undefined;
|
|
3497
|
+
children?: /*elided*/ any[] | undefined;
|
|
3470
3498
|
componentId?: number | undefined;
|
|
3471
3499
|
cssClass?: string | undefined;
|
|
3472
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3500
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3473
3501
|
events?: {
|
|
3474
3502
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3475
3503
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3505,20 +3533,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3505
3533
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3506
3534
|
} | undefined;
|
|
3507
3535
|
} | undefined;
|
|
3508
|
-
isVisible?:
|
|
3536
|
+
isVisible?: boolean | string | undefined;
|
|
3509
3537
|
dark?: boolean | undefined;
|
|
3510
3538
|
light?: boolean | undefined;
|
|
3511
3539
|
theme?: string | undefined;
|
|
3512
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3540
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3513
3541
|
name: string;
|
|
3514
|
-
parent?: any | undefined;
|
|
3542
|
+
parent?: /*elided*/ any | undefined;
|
|
3515
3543
|
tabStop?: boolean | undefined;
|
|
3516
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3544
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3517
3545
|
fillHeight?: boolean | undefined;
|
|
3518
3546
|
}[];
|
|
3519
3547
|
componentId: number;
|
|
3520
3548
|
cssClass: string;
|
|
3521
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3549
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3522
3550
|
events: {
|
|
3523
3551
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3524
3552
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3554,32 +3582,32 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3554
3582
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3555
3583
|
} | undefined;
|
|
3556
3584
|
};
|
|
3557
|
-
isVisible:
|
|
3585
|
+
isVisible: boolean | string;
|
|
3558
3586
|
dark: boolean;
|
|
3559
3587
|
light: boolean;
|
|
3560
3588
|
theme?: string | undefined;
|
|
3561
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3589
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3562
3590
|
name: string;
|
|
3563
|
-
parent?: any | undefined;
|
|
3591
|
+
parent?: /*elided*/ any | undefined;
|
|
3564
3592
|
tabStop: boolean;
|
|
3565
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3593
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3566
3594
|
fillHeight: boolean;
|
|
3567
3595
|
} | undefined;
|
|
3568
3596
|
tabStop?: boolean | undefined;
|
|
3569
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3597
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3570
3598
|
fillHeight?: boolean | undefined;
|
|
3571
3599
|
label: string;
|
|
3572
3600
|
icon?: string | undefined;
|
|
3573
3601
|
} | undefined;
|
|
3574
3602
|
children?: {
|
|
3575
3603
|
[x: string]: any;
|
|
3576
|
-
children?: any[] | undefined;
|
|
3604
|
+
children?: /*elided*/ any[] | undefined;
|
|
3577
3605
|
component: string;
|
|
3578
3606
|
allowDuplicate?: boolean | undefined;
|
|
3579
3607
|
autofocus?: boolean | undefined;
|
|
3580
3608
|
componentId?: number | undefined;
|
|
3581
3609
|
cssClass?: string | undefined;
|
|
3582
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3610
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3583
3611
|
events?: {
|
|
3584
3612
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3585
3613
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3615,25 +3643,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3615
3643
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3616
3644
|
} | undefined;
|
|
3617
3645
|
} | undefined;
|
|
3618
|
-
isVisible?:
|
|
3646
|
+
isVisible?: boolean | string | undefined;
|
|
3619
3647
|
dark?: boolean | undefined;
|
|
3620
3648
|
light?: boolean | undefined;
|
|
3621
3649
|
theme?: string | undefined;
|
|
3622
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3650
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3623
3651
|
name: string;
|
|
3624
3652
|
parent?: {
|
|
3625
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3626
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3653
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3654
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3627
3655
|
allowDuplicate: boolean;
|
|
3628
3656
|
autofocus: boolean;
|
|
3629
3657
|
children: {
|
|
3630
3658
|
[x: string]: any;
|
|
3631
3659
|
allowDuplicate?: boolean | undefined;
|
|
3632
3660
|
autofocus?: boolean | undefined;
|
|
3633
|
-
children?: any[] | undefined;
|
|
3661
|
+
children?: /*elided*/ any[] | undefined;
|
|
3634
3662
|
componentId?: number | undefined;
|
|
3635
3663
|
cssClass?: string | undefined;
|
|
3636
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3664
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3637
3665
|
events?: {
|
|
3638
3666
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3639
3667
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3669,20 +3697,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3669
3697
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3670
3698
|
} | undefined;
|
|
3671
3699
|
} | undefined;
|
|
3672
|
-
isVisible?:
|
|
3700
|
+
isVisible?: boolean | string | undefined;
|
|
3673
3701
|
dark?: boolean | undefined;
|
|
3674
3702
|
light?: boolean | undefined;
|
|
3675
3703
|
theme?: string | undefined;
|
|
3676
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3704
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3677
3705
|
name: string;
|
|
3678
|
-
parent?: any | undefined;
|
|
3706
|
+
parent?: /*elided*/ any | undefined;
|
|
3679
3707
|
tabStop?: boolean | undefined;
|
|
3680
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3708
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3681
3709
|
fillHeight?: boolean | undefined;
|
|
3682
3710
|
}[];
|
|
3683
3711
|
componentId: number;
|
|
3684
3712
|
cssClass: string;
|
|
3685
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3713
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3686
3714
|
events: {
|
|
3687
3715
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3688
3716
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3718,19 +3746,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3718
3746
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3719
3747
|
} | undefined;
|
|
3720
3748
|
};
|
|
3721
|
-
isVisible:
|
|
3749
|
+
isVisible: boolean | string;
|
|
3722
3750
|
dark: boolean;
|
|
3723
3751
|
light: boolean;
|
|
3724
3752
|
theme?: string | undefined;
|
|
3725
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3753
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3726
3754
|
name: string;
|
|
3727
|
-
parent?: any | undefined;
|
|
3755
|
+
parent?: /*elided*/ any | undefined;
|
|
3728
3756
|
tabStop: boolean;
|
|
3729
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3757
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3730
3758
|
fillHeight: boolean;
|
|
3731
3759
|
} | undefined;
|
|
3732
3760
|
tabStop?: boolean | undefined;
|
|
3733
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3761
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3734
3762
|
fillHeight?: boolean | undefined;
|
|
3735
3763
|
}[] | undefined;
|
|
3736
3764
|
component: string;
|
|
@@ -3738,7 +3766,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3738
3766
|
autofocus?: boolean | undefined;
|
|
3739
3767
|
componentId?: number | undefined;
|
|
3740
3768
|
cssClass?: string | undefined;
|
|
3741
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3769
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3742
3770
|
events?: {
|
|
3743
3771
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3744
3772
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3774,25 +3802,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3774
3802
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3775
3803
|
} | undefined;
|
|
3776
3804
|
} | undefined;
|
|
3777
|
-
isVisible?:
|
|
3805
|
+
isVisible?: boolean | string | undefined;
|
|
3778
3806
|
dark?: boolean | undefined;
|
|
3779
3807
|
light?: boolean | undefined;
|
|
3780
3808
|
theme?: string | undefined;
|
|
3781
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3809
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3782
3810
|
name: string;
|
|
3783
3811
|
parent?: {
|
|
3784
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3785
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3812
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3813
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3786
3814
|
allowDuplicate: boolean;
|
|
3787
3815
|
autofocus: boolean;
|
|
3788
3816
|
children: {
|
|
3789
3817
|
[x: string]: any;
|
|
3790
3818
|
allowDuplicate?: boolean | undefined;
|
|
3791
3819
|
autofocus?: boolean | undefined;
|
|
3792
|
-
children?: any[] | undefined;
|
|
3820
|
+
children?: /*elided*/ any[] | undefined;
|
|
3793
3821
|
componentId?: number | undefined;
|
|
3794
3822
|
cssClass?: string | undefined;
|
|
3795
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3823
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3796
3824
|
events?: {
|
|
3797
3825
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3798
3826
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3828,20 +3856,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3828
3856
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3829
3857
|
} | undefined;
|
|
3830
3858
|
} | undefined;
|
|
3831
|
-
isVisible?:
|
|
3859
|
+
isVisible?: boolean | string | undefined;
|
|
3832
3860
|
dark?: boolean | undefined;
|
|
3833
3861
|
light?: boolean | undefined;
|
|
3834
3862
|
theme?: string | undefined;
|
|
3835
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3863
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3836
3864
|
name: string;
|
|
3837
|
-
parent?: any | undefined;
|
|
3865
|
+
parent?: /*elided*/ any | undefined;
|
|
3838
3866
|
tabStop?: boolean | undefined;
|
|
3839
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3867
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3840
3868
|
fillHeight?: boolean | undefined;
|
|
3841
3869
|
}[];
|
|
3842
3870
|
componentId: number;
|
|
3843
3871
|
cssClass: string;
|
|
3844
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
3872
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
3845
3873
|
events: {
|
|
3846
3874
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3847
3875
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3877,19 +3905,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3877
3905
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3878
3906
|
} | undefined;
|
|
3879
3907
|
};
|
|
3880
|
-
isVisible:
|
|
3908
|
+
isVisible: boolean | string;
|
|
3881
3909
|
dark: boolean;
|
|
3882
3910
|
light: boolean;
|
|
3883
3911
|
theme?: string | undefined;
|
|
3884
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
3912
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
3885
3913
|
name: string;
|
|
3886
|
-
parent?: any | undefined;
|
|
3914
|
+
parent?: /*elided*/ any | undefined;
|
|
3887
3915
|
tabStop: boolean;
|
|
3888
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
3916
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
3889
3917
|
fillHeight: boolean;
|
|
3890
3918
|
} | undefined;
|
|
3891
3919
|
tabStop?: boolean | undefined;
|
|
3892
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
3920
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
3893
3921
|
fillHeight?: boolean | undefined;
|
|
3894
3922
|
}[];
|
|
3895
3923
|
opened: boolean;
|
|
@@ -3909,13 +3937,13 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3909
3937
|
doSearch: () => void;
|
|
3910
3938
|
children: {
|
|
3911
3939
|
[x: string]: any;
|
|
3912
|
-
children?: any[] | undefined;
|
|
3940
|
+
children?: /*elided*/ any[] | undefined;
|
|
3913
3941
|
component: string;
|
|
3914
3942
|
allowDuplicate?: boolean | undefined;
|
|
3915
3943
|
autofocus?: boolean | undefined;
|
|
3916
3944
|
componentId?: number | undefined;
|
|
3917
3945
|
cssClass?: string | undefined;
|
|
3918
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
3946
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3919
3947
|
events?: {
|
|
3920
3948
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3921
3949
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -3951,25 +3979,25 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
3951
3979
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
3952
3980
|
} | undefined;
|
|
3953
3981
|
} | undefined;
|
|
3954
|
-
isVisible?:
|
|
3982
|
+
isVisible?: boolean | string | undefined;
|
|
3955
3983
|
dark?: boolean | undefined;
|
|
3956
3984
|
light?: boolean | undefined;
|
|
3957
3985
|
theme?: string | undefined;
|
|
3958
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
3986
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
3959
3987
|
name: string;
|
|
3960
3988
|
parent?: {
|
|
3961
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
3962
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
3989
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
3990
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
3963
3991
|
allowDuplicate: boolean;
|
|
3964
3992
|
autofocus: boolean;
|
|
3965
3993
|
children: {
|
|
3966
3994
|
[x: string]: any;
|
|
3967
3995
|
allowDuplicate?: boolean | undefined;
|
|
3968
3996
|
autofocus?: boolean | undefined;
|
|
3969
|
-
children?: any[] | undefined;
|
|
3997
|
+
children?: /*elided*/ any[] | undefined;
|
|
3970
3998
|
componentId?: number | undefined;
|
|
3971
3999
|
cssClass?: string | undefined;
|
|
3972
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4000
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
3973
4001
|
events?: {
|
|
3974
4002
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
3975
4003
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -4005,20 +4033,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4005
4033
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
4006
4034
|
} | undefined;
|
|
4007
4035
|
} | undefined;
|
|
4008
|
-
isVisible?:
|
|
4036
|
+
isVisible?: boolean | string | undefined;
|
|
4009
4037
|
dark?: boolean | undefined;
|
|
4010
4038
|
light?: boolean | undefined;
|
|
4011
4039
|
theme?: string | undefined;
|
|
4012
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4040
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4013
4041
|
name: string;
|
|
4014
|
-
parent?: any | undefined;
|
|
4042
|
+
parent?: /*elided*/ any | undefined;
|
|
4015
4043
|
tabStop?: boolean | undefined;
|
|
4016
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4044
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4017
4045
|
fillHeight?: boolean | undefined;
|
|
4018
4046
|
}[];
|
|
4019
4047
|
componentId: number;
|
|
4020
4048
|
cssClass: string;
|
|
4021
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4049
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4022
4050
|
events: {
|
|
4023
4051
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
4024
4052
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -4054,19 +4082,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4054
4082
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
4055
4083
|
} | undefined;
|
|
4056
4084
|
};
|
|
4057
|
-
isVisible:
|
|
4085
|
+
isVisible: boolean | string;
|
|
4058
4086
|
dark: boolean;
|
|
4059
4087
|
light: boolean;
|
|
4060
4088
|
theme?: string | undefined;
|
|
4061
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4089
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4062
4090
|
name: string;
|
|
4063
|
-
parent?: any | undefined;
|
|
4091
|
+
parent?: /*elided*/ any | undefined;
|
|
4064
4092
|
tabStop: boolean;
|
|
4065
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4093
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4066
4094
|
fillHeight: boolean;
|
|
4067
4095
|
} | undefined;
|
|
4068
4096
|
tabStop?: boolean | undefined;
|
|
4069
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4097
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4070
4098
|
fillHeight?: boolean | undefined;
|
|
4071
4099
|
}[];
|
|
4072
4100
|
component: string;
|
|
@@ -4117,18 +4145,18 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4117
4145
|
theme?: string | undefined;
|
|
4118
4146
|
fillHeight: boolean;
|
|
4119
4147
|
parent?: {
|
|
4120
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
4121
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
4148
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
4149
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
4122
4150
|
allowDuplicate: boolean;
|
|
4123
4151
|
autofocus: boolean;
|
|
4124
4152
|
children: {
|
|
4125
4153
|
[x: string]: any;
|
|
4126
4154
|
allowDuplicate?: boolean | undefined;
|
|
4127
4155
|
autofocus?: boolean | undefined;
|
|
4128
|
-
children?: any[] | undefined;
|
|
4156
|
+
children?: /*elided*/ any[] | undefined;
|
|
4129
4157
|
componentId?: number | undefined;
|
|
4130
4158
|
cssClass?: string | undefined;
|
|
4131
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
4159
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
4132
4160
|
events?: {
|
|
4133
4161
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
4134
4162
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -4164,20 +4192,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4164
4192
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
4165
4193
|
} | undefined;
|
|
4166
4194
|
} | undefined;
|
|
4167
|
-
isVisible?:
|
|
4195
|
+
isVisible?: boolean | string | undefined;
|
|
4168
4196
|
dark?: boolean | undefined;
|
|
4169
4197
|
light?: boolean | undefined;
|
|
4170
4198
|
theme?: string | undefined;
|
|
4171
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
4199
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
4172
4200
|
name: string;
|
|
4173
|
-
parent?: any | undefined;
|
|
4201
|
+
parent?: /*elided*/ any | undefined;
|
|
4174
4202
|
tabStop?: boolean | undefined;
|
|
4175
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
4203
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
4176
4204
|
fillHeight?: boolean | undefined;
|
|
4177
4205
|
}[];
|
|
4178
4206
|
componentId: number;
|
|
4179
4207
|
cssClass: string;
|
|
4180
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
4208
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
4181
4209
|
events: {
|
|
4182
4210
|
[x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
|
|
4183
4211
|
blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
@@ -4213,19 +4241,19 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4213
4241
|
onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
|
|
4214
4242
|
} | undefined;
|
|
4215
4243
|
};
|
|
4216
|
-
isVisible:
|
|
4244
|
+
isVisible: boolean | string;
|
|
4217
4245
|
dark: boolean;
|
|
4218
4246
|
light: boolean;
|
|
4219
4247
|
theme?: string | undefined;
|
|
4220
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4248
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4221
4249
|
name: string;
|
|
4222
|
-
parent?: any | undefined;
|
|
4250
|
+
parent?: /*elided*/ any | undefined;
|
|
4223
4251
|
tabStop: boolean;
|
|
4224
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
4252
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
4225
4253
|
fillHeight: boolean;
|
|
4226
4254
|
} | undefined;
|
|
4227
4255
|
componentId: number;
|
|
4228
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
4256
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
4229
4257
|
isFocused: boolean;
|
|
4230
4258
|
tabStop: boolean;
|
|
4231
4259
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -4234,21 +4262,21 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4234
4262
|
callEvent: (eventName: string, args: any) => boolean;
|
|
4235
4263
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
4236
4264
|
removeChild: (name: string) => void;
|
|
4237
|
-
getChildInstance: <
|
|
4238
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
4265
|
+
getChildInstance: <T>(name: string) => T;
|
|
4266
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
4239
4267
|
onCreated: () => void;
|
|
4240
4268
|
onBeforeMount: () => void;
|
|
4241
4269
|
onBeforeDestroy: () => void;
|
|
4242
4270
|
onDestroyed: () => void;
|
|
4243
|
-
click: (event?: Event
|
|
4271
|
+
click: (event?: Event, element?: any) => void;
|
|
4244
4272
|
focus: (event: Event, element: any) => void;
|
|
4245
4273
|
blur: (event: Event, element: any) => void;
|
|
4246
|
-
mouseenter: (event?: Event
|
|
4247
|
-
mouseleave: (event?: Event
|
|
4248
|
-
mouseout: (event?: Event
|
|
4249
|
-
mouseover: (event?: Event
|
|
4274
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
4275
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
4276
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
4277
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
4250
4278
|
};
|
|
4251
|
-
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance
|
|
4279
|
+
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
4252
4280
|
click: (event: Event) => void;
|
|
4253
4281
|
focus: (event: Event) => void;
|
|
4254
4282
|
blur: (event: Event) => void;
|
|
@@ -4256,6 +4284,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4256
4284
|
mouseleave: (event: Event) => void;
|
|
4257
4285
|
searchInputProps: ITextInput;
|
|
4258
4286
|
navigationKeyMapping: any;
|
|
4287
|
+
menuTheme: import("vue").ComputedRef<string | undefined>;
|
|
4259
4288
|
checkMiniVariant: () => boolean;
|
|
4260
4289
|
showSlotOnHover: () => string | boolean;
|
|
4261
4290
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -4332,13 +4361,16 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4332
4361
|
isArray(arg: any): arg is any[];
|
|
4333
4362
|
readonly prototype: any[];
|
|
4334
4363
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
4335
|
-
from<
|
|
4336
|
-
from<
|
|
4337
|
-
from<
|
|
4338
|
-
of<
|
|
4364
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
4365
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
4366
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
4367
|
+
of<T>(...items: T[]): T[];
|
|
4368
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
4369
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
4339
4370
|
readonly [Symbol.species]: ArrayConstructor;
|
|
4340
4371
|
};
|
|
4341
4372
|
default: () => IComponentRender[];
|
|
4373
|
+
watch: boolean;
|
|
4342
4374
|
};
|
|
4343
4375
|
width: {
|
|
4344
4376
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -4361,13 +4393,16 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4361
4393
|
isArray(arg: any): arg is any[];
|
|
4362
4394
|
readonly prototype: any[];
|
|
4363
4395
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
4364
|
-
from<
|
|
4365
|
-
from<
|
|
4366
|
-
from<
|
|
4367
|
-
of<
|
|
4396
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
4397
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
4398
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
4399
|
+
of<T>(...items: T[]): T[];
|
|
4400
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
4401
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
4368
4402
|
readonly [Symbol.species]: ArrayConstructor;
|
|
4369
4403
|
};
|
|
4370
4404
|
default: () => never[];
|
|
4405
|
+
watch: boolean;
|
|
4371
4406
|
};
|
|
4372
4407
|
permanent: {
|
|
4373
4408
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -4382,16 +4417,20 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4382
4417
|
isArray(arg: any): arg is any[];
|
|
4383
4418
|
readonly prototype: any[];
|
|
4384
4419
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
4385
|
-
from<
|
|
4386
|
-
from<
|
|
4387
|
-
from<
|
|
4388
|
-
of<
|
|
4420
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
4421
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
4422
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
4423
|
+
of<T>(...items: T[]): T[];
|
|
4424
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
4425
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
4389
4426
|
readonly [Symbol.species]: ArrayConstructor;
|
|
4390
4427
|
})[];
|
|
4391
4428
|
default(): never[];
|
|
4429
|
+
watch: boolean;
|
|
4392
4430
|
};
|
|
4393
4431
|
component: {
|
|
4394
4432
|
type: StringConstructor;
|
|
4433
|
+
watch: boolean;
|
|
4395
4434
|
};
|
|
4396
4435
|
allowDuplicate: {
|
|
4397
4436
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -4416,10 +4455,12 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4416
4455
|
directives: {
|
|
4417
4456
|
type: ObjectConstructor;
|
|
4418
4457
|
default(): {};
|
|
4458
|
+
watch: boolean;
|
|
4419
4459
|
};
|
|
4420
4460
|
events: {
|
|
4421
4461
|
type: ObjectConstructor;
|
|
4422
4462
|
default(): {};
|
|
4463
|
+
watch: boolean;
|
|
4423
4464
|
};
|
|
4424
4465
|
instanceObject: {
|
|
4425
4466
|
type: ObjectConstructor;
|
|
@@ -4427,6 +4468,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4427
4468
|
keyMap: {
|
|
4428
4469
|
type: ObjectConstructor;
|
|
4429
4470
|
default(): {};
|
|
4471
|
+
watch: boolean;
|
|
4430
4472
|
};
|
|
4431
4473
|
light: {
|
|
4432
4474
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -4438,6 +4480,7 @@ declare const menuComponent: import("vue").DefineComponent<import("vue").Extract
|
|
|
4438
4480
|
};
|
|
4439
4481
|
parent: {
|
|
4440
4482
|
type: ObjectConstructor;
|
|
4483
|
+
watch: boolean;
|
|
4441
4484
|
};
|
|
4442
4485
|
tabStop: {
|
|
4443
4486
|
type: (BooleanConstructor | StringConstructor)[];
|