@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
|
@@ -168,16 +168,20 @@ export declare const ZdLoginButtonProps: {
|
|
|
168
168
|
isArray(arg: any): arg is any[];
|
|
169
169
|
readonly prototype: any[];
|
|
170
170
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
171
|
-
from<
|
|
172
|
-
from<
|
|
173
|
-
from<
|
|
174
|
-
of<
|
|
171
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
172
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
173
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
174
|
+
of<T>(...items: T[]): T[];
|
|
175
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
176
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
175
177
|
readonly [Symbol.species]: ArrayConstructor;
|
|
176
178
|
})[];
|
|
177
179
|
default(): never[];
|
|
180
|
+
watch: boolean;
|
|
178
181
|
};
|
|
179
182
|
component: {
|
|
180
183
|
type: StringConstructor;
|
|
184
|
+
watch: boolean;
|
|
181
185
|
};
|
|
182
186
|
allowDuplicate: {
|
|
183
187
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -202,10 +206,12 @@ export declare const ZdLoginButtonProps: {
|
|
|
202
206
|
directives: {
|
|
203
207
|
type: ObjectConstructor;
|
|
204
208
|
default(): {};
|
|
209
|
+
watch: boolean;
|
|
205
210
|
};
|
|
206
211
|
events: {
|
|
207
212
|
type: ObjectConstructor;
|
|
208
213
|
default(): {};
|
|
214
|
+
watch: boolean;
|
|
209
215
|
};
|
|
210
216
|
instanceObject: {
|
|
211
217
|
type: ObjectConstructor;
|
|
@@ -217,6 +223,7 @@ export declare const ZdLoginButtonProps: {
|
|
|
217
223
|
keyMap: {
|
|
218
224
|
type: ObjectConstructor;
|
|
219
225
|
default(): {};
|
|
226
|
+
watch: boolean;
|
|
220
227
|
};
|
|
221
228
|
light: {
|
|
222
229
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -228,6 +235,7 @@ export declare const ZdLoginButtonProps: {
|
|
|
228
235
|
};
|
|
229
236
|
parent: {
|
|
230
237
|
type: ObjectConstructor;
|
|
238
|
+
watch: boolean;
|
|
231
239
|
};
|
|
232
240
|
tabStop: {
|
|
233
241
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -407,16 +415,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
407
415
|
isArray(arg: any): arg is any[];
|
|
408
416
|
readonly prototype: any[];
|
|
409
417
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
410
|
-
from<
|
|
411
|
-
from<
|
|
412
|
-
from<
|
|
413
|
-
of<
|
|
418
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
419
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
420
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
421
|
+
of<T>(...items: T[]): T[];
|
|
422
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
423
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
414
424
|
readonly [Symbol.species]: ArrayConstructor;
|
|
415
425
|
})[];
|
|
416
426
|
default(): never[];
|
|
427
|
+
watch: boolean;
|
|
417
428
|
};
|
|
418
429
|
component: {
|
|
419
430
|
type: StringConstructor;
|
|
431
|
+
watch: boolean;
|
|
420
432
|
};
|
|
421
433
|
allowDuplicate: {
|
|
422
434
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -441,10 +453,12 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
441
453
|
directives: {
|
|
442
454
|
type: ObjectConstructor;
|
|
443
455
|
default(): {};
|
|
456
|
+
watch: boolean;
|
|
444
457
|
};
|
|
445
458
|
events: {
|
|
446
459
|
type: ObjectConstructor;
|
|
447
460
|
default(): {};
|
|
461
|
+
watch: boolean;
|
|
448
462
|
};
|
|
449
463
|
instanceObject: {
|
|
450
464
|
type: ObjectConstructor;
|
|
@@ -456,6 +470,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
456
470
|
keyMap: {
|
|
457
471
|
type: ObjectConstructor;
|
|
458
472
|
default(): {};
|
|
473
|
+
watch: boolean;
|
|
459
474
|
};
|
|
460
475
|
light: {
|
|
461
476
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -467,6 +482,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
467
482
|
};
|
|
468
483
|
parent: {
|
|
469
484
|
type: ObjectConstructor;
|
|
485
|
+
watch: boolean;
|
|
470
486
|
};
|
|
471
487
|
tabStop: {
|
|
472
488
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -496,13 +512,13 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
496
512
|
} | undefined;
|
|
497
513
|
children?: {
|
|
498
514
|
[x: string]: any;
|
|
499
|
-
children?: any[] | undefined;
|
|
515
|
+
children?: /*elided*/ any[] | undefined;
|
|
500
516
|
component: string;
|
|
501
517
|
allowDuplicate?: boolean | undefined;
|
|
502
518
|
autofocus?: boolean | undefined;
|
|
503
519
|
componentId?: number | undefined;
|
|
504
520
|
cssClass?: string | undefined;
|
|
505
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
521
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
506
522
|
events?: {
|
|
507
523
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
508
524
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -538,25 +554,25 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
538
554
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
539
555
|
} | undefined;
|
|
540
556
|
} | undefined;
|
|
541
|
-
isVisible?:
|
|
557
|
+
isVisible?: boolean | string | undefined;
|
|
542
558
|
dark?: boolean | undefined;
|
|
543
559
|
light?: boolean | undefined;
|
|
544
560
|
theme?: string | undefined;
|
|
545
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
561
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
546
562
|
name: string;
|
|
547
563
|
parent?: {
|
|
548
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
549
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
564
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
565
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
550
566
|
allowDuplicate: boolean;
|
|
551
567
|
autofocus: boolean;
|
|
552
568
|
children: {
|
|
553
569
|
[x: string]: any;
|
|
554
570
|
allowDuplicate?: boolean | undefined;
|
|
555
571
|
autofocus?: boolean | undefined;
|
|
556
|
-
children?: any[] | undefined;
|
|
572
|
+
children?: /*elided*/ any[] | undefined;
|
|
557
573
|
componentId?: number | undefined;
|
|
558
574
|
cssClass?: string | undefined;
|
|
559
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
575
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
560
576
|
events?: {
|
|
561
577
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
562
578
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -592,20 +608,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
592
608
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
593
609
|
} | undefined;
|
|
594
610
|
} | undefined;
|
|
595
|
-
isVisible?:
|
|
611
|
+
isVisible?: boolean | string | undefined;
|
|
596
612
|
dark?: boolean | undefined;
|
|
597
613
|
light?: boolean | undefined;
|
|
598
614
|
theme?: string | undefined;
|
|
599
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
615
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
600
616
|
name: string;
|
|
601
|
-
parent?: any | undefined;
|
|
617
|
+
parent?: /*elided*/ any | undefined;
|
|
602
618
|
tabStop?: boolean | undefined;
|
|
603
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
619
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
604
620
|
fillHeight?: boolean | undefined;
|
|
605
621
|
}[];
|
|
606
622
|
componentId: number;
|
|
607
623
|
cssClass: string;
|
|
608
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
624
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
609
625
|
events: {
|
|
610
626
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
611
627
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -641,19 +657,19 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
641
657
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
642
658
|
} | undefined;
|
|
643
659
|
};
|
|
644
|
-
isVisible:
|
|
660
|
+
isVisible: boolean | string;
|
|
645
661
|
dark: boolean;
|
|
646
662
|
light: boolean;
|
|
647
663
|
theme?: string | undefined;
|
|
648
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
664
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
649
665
|
name: string;
|
|
650
|
-
parent?: any | undefined;
|
|
666
|
+
parent?: /*elided*/ any | undefined;
|
|
651
667
|
tabStop: boolean;
|
|
652
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
668
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
653
669
|
fillHeight: boolean;
|
|
654
670
|
} | undefined;
|
|
655
671
|
tabStop?: boolean | undefined;
|
|
656
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
672
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
657
673
|
fillHeight?: boolean | undefined;
|
|
658
674
|
}[] | undefined;
|
|
659
675
|
component: string;
|
|
@@ -661,7 +677,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
661
677
|
autofocus?: boolean | undefined;
|
|
662
678
|
componentId?: number | undefined;
|
|
663
679
|
cssClass?: string | undefined;
|
|
664
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
680
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
665
681
|
events?: {
|
|
666
682
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
667
683
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -697,25 +713,25 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
697
713
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
698
714
|
} | undefined;
|
|
699
715
|
} | undefined;
|
|
700
|
-
isVisible?:
|
|
716
|
+
isVisible?: boolean | string | undefined;
|
|
701
717
|
dark?: boolean | undefined;
|
|
702
718
|
light?: boolean | undefined;
|
|
703
719
|
theme?: string | undefined;
|
|
704
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
720
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
705
721
|
name: string;
|
|
706
722
|
parent?: {
|
|
707
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
708
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
723
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
724
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
709
725
|
allowDuplicate: boolean;
|
|
710
726
|
autofocus: boolean;
|
|
711
727
|
children: {
|
|
712
728
|
[x: string]: any;
|
|
713
729
|
allowDuplicate?: boolean | undefined;
|
|
714
730
|
autofocus?: boolean | undefined;
|
|
715
|
-
children?: any[] | undefined;
|
|
731
|
+
children?: /*elided*/ any[] | undefined;
|
|
716
732
|
componentId?: number | undefined;
|
|
717
733
|
cssClass?: string | undefined;
|
|
718
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
734
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
719
735
|
events?: {
|
|
720
736
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
721
737
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -751,20 +767,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
751
767
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
752
768
|
} | undefined;
|
|
753
769
|
} | undefined;
|
|
754
|
-
isVisible?:
|
|
770
|
+
isVisible?: boolean | string | undefined;
|
|
755
771
|
dark?: boolean | undefined;
|
|
756
772
|
light?: boolean | undefined;
|
|
757
773
|
theme?: string | undefined;
|
|
758
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
774
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
759
775
|
name: string;
|
|
760
|
-
parent?: any | undefined;
|
|
776
|
+
parent?: /*elided*/ any | undefined;
|
|
761
777
|
tabStop?: boolean | undefined;
|
|
762
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
778
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
763
779
|
fillHeight?: boolean | undefined;
|
|
764
780
|
}[];
|
|
765
781
|
componentId: number;
|
|
766
782
|
cssClass: string;
|
|
767
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
783
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
768
784
|
events: {
|
|
769
785
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
770
786
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -800,19 +816,19 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
800
816
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
801
817
|
} | undefined;
|
|
802
818
|
};
|
|
803
|
-
isVisible:
|
|
819
|
+
isVisible: boolean | string;
|
|
804
820
|
dark: boolean;
|
|
805
821
|
light: boolean;
|
|
806
822
|
theme?: string | undefined;
|
|
807
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
823
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
808
824
|
name: string;
|
|
809
|
-
parent?: any | undefined;
|
|
825
|
+
parent?: /*elided*/ any | undefined;
|
|
810
826
|
tabStop: boolean;
|
|
811
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
827
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
812
828
|
fillHeight: boolean;
|
|
813
829
|
} | undefined;
|
|
814
830
|
tabStop?: boolean | undefined;
|
|
815
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
831
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
816
832
|
fillHeight?: boolean | undefined;
|
|
817
833
|
}[];
|
|
818
834
|
align?: string | undefined;
|
|
@@ -825,7 +841,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
825
841
|
maxWidth: string | number;
|
|
826
842
|
events: {
|
|
827
843
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
|
|
828
|
-
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent
|
|
844
|
+
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent> | undefined;
|
|
829
845
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
830
846
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
831
847
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
@@ -836,20 +852,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
836
852
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
837
853
|
};
|
|
838
854
|
submitFunction?: (() => void) | undefined;
|
|
839
|
-
value: import("@zeedhi/core").IDictionary
|
|
855
|
+
value: import("@zeedhi/core").IDictionary;
|
|
840
856
|
clearForm: () => void;
|
|
841
857
|
registerInput: (component: import("@zeedhi/common").Input) => void;
|
|
842
858
|
readonly childrenProps: {
|
|
843
859
|
[x: string]: any;
|
|
844
860
|
children?: {
|
|
845
861
|
[x: string]: any;
|
|
846
|
-
children?: any[] | undefined;
|
|
862
|
+
children?: /*elided*/ any[] | undefined;
|
|
847
863
|
component: string;
|
|
848
864
|
allowDuplicate?: boolean | undefined;
|
|
849
865
|
autofocus?: boolean | undefined;
|
|
850
866
|
componentId?: number | undefined;
|
|
851
867
|
cssClass?: string | undefined;
|
|
852
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
868
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
853
869
|
events?: {
|
|
854
870
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
855
871
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -885,25 +901,25 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
885
901
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
886
902
|
} | undefined;
|
|
887
903
|
} | undefined;
|
|
888
|
-
isVisible?:
|
|
904
|
+
isVisible?: boolean | string | undefined;
|
|
889
905
|
dark?: boolean | undefined;
|
|
890
906
|
light?: boolean | undefined;
|
|
891
907
|
theme?: string | undefined;
|
|
892
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
908
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
893
909
|
name: string;
|
|
894
910
|
parent?: {
|
|
895
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
896
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
911
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
912
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
897
913
|
allowDuplicate: boolean;
|
|
898
914
|
autofocus: boolean;
|
|
899
915
|
children: {
|
|
900
916
|
[x: string]: any;
|
|
901
917
|
allowDuplicate?: boolean | undefined;
|
|
902
918
|
autofocus?: boolean | undefined;
|
|
903
|
-
children?: any[] | undefined;
|
|
919
|
+
children?: /*elided*/ any[] | undefined;
|
|
904
920
|
componentId?: number | undefined;
|
|
905
921
|
cssClass?: string | undefined;
|
|
906
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
922
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
907
923
|
events?: {
|
|
908
924
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
909
925
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -939,20 +955,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
939
955
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
940
956
|
} | undefined;
|
|
941
957
|
} | undefined;
|
|
942
|
-
isVisible?:
|
|
958
|
+
isVisible?: boolean | string | undefined;
|
|
943
959
|
dark?: boolean | undefined;
|
|
944
960
|
light?: boolean | undefined;
|
|
945
961
|
theme?: string | undefined;
|
|
946
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
962
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
947
963
|
name: string;
|
|
948
|
-
parent?: any | undefined;
|
|
964
|
+
parent?: /*elided*/ any | undefined;
|
|
949
965
|
tabStop?: boolean | undefined;
|
|
950
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
966
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
951
967
|
fillHeight?: boolean | undefined;
|
|
952
968
|
}[];
|
|
953
969
|
componentId: number;
|
|
954
970
|
cssClass: string;
|
|
955
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
971
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
956
972
|
events: {
|
|
957
973
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
958
974
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -988,26 +1004,26 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
988
1004
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
989
1005
|
} | undefined;
|
|
990
1006
|
};
|
|
991
|
-
isVisible:
|
|
1007
|
+
isVisible: boolean | string;
|
|
992
1008
|
dark: boolean;
|
|
993
1009
|
light: boolean;
|
|
994
1010
|
theme?: string | undefined;
|
|
995
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1011
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
996
1012
|
name: string;
|
|
997
|
-
parent?: any | undefined;
|
|
1013
|
+
parent?: /*elided*/ any | undefined;
|
|
998
1014
|
tabStop: boolean;
|
|
999
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1015
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1000
1016
|
fillHeight: boolean;
|
|
1001
1017
|
} | undefined;
|
|
1002
1018
|
tabStop?: boolean | undefined;
|
|
1003
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1019
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1004
1020
|
fillHeight?: boolean | undefined;
|
|
1005
1021
|
}[] | undefined;
|
|
1006
1022
|
component: string;
|
|
1007
|
-
allowDuplicate?: boolean | undefined;
|
|
1008
|
-
autofocus?: boolean | undefined;
|
|
1009
|
-
componentId?: number | undefined;
|
|
1010
|
-
cssClass?: string | undefined;
|
|
1023
|
+
allowDuplicate?: boolean | undefined | undefined;
|
|
1024
|
+
autofocus?: boolean | undefined | undefined;
|
|
1025
|
+
componentId?: number | undefined | undefined;
|
|
1026
|
+
cssClass?: string | undefined | undefined;
|
|
1011
1027
|
cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1012
1028
|
events?: {
|
|
1013
1029
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
@@ -1044,25 +1060,25 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1044
1060
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1045
1061
|
} | undefined;
|
|
1046
1062
|
} | undefined;
|
|
1047
|
-
isVisible?: string | boolean | undefined;
|
|
1048
|
-
dark?: boolean | undefined;
|
|
1049
|
-
light?: boolean | undefined;
|
|
1050
|
-
theme?: string | undefined;
|
|
1063
|
+
isVisible?: string | boolean | undefined | undefined;
|
|
1064
|
+
dark?: boolean | undefined | undefined;
|
|
1065
|
+
light?: boolean | undefined | undefined;
|
|
1066
|
+
theme?: string | undefined | undefined;
|
|
1051
1067
|
keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
1052
1068
|
name: string;
|
|
1053
1069
|
parent?: {
|
|
1054
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1055
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1070
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1071
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1056
1072
|
allowDuplicate: boolean;
|
|
1057
1073
|
autofocus: boolean;
|
|
1058
1074
|
children: {
|
|
1059
1075
|
[x: string]: any;
|
|
1060
1076
|
allowDuplicate?: boolean | undefined;
|
|
1061
1077
|
autofocus?: boolean | undefined;
|
|
1062
|
-
children?: any[] | undefined;
|
|
1078
|
+
children?: /*elided*/ any[] | undefined;
|
|
1063
1079
|
componentId?: number | undefined;
|
|
1064
1080
|
cssClass?: string | undefined;
|
|
1065
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1081
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1066
1082
|
events?: {
|
|
1067
1083
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1068
1084
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1098,20 +1114,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1098
1114
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1099
1115
|
} | undefined;
|
|
1100
1116
|
} | undefined;
|
|
1101
|
-
isVisible?:
|
|
1117
|
+
isVisible?: boolean | string | undefined;
|
|
1102
1118
|
dark?: boolean | undefined;
|
|
1103
1119
|
light?: boolean | undefined;
|
|
1104
1120
|
theme?: string | undefined;
|
|
1105
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1121
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1106
1122
|
name: string;
|
|
1107
|
-
parent?: any | undefined;
|
|
1123
|
+
parent?: /*elided*/ any | undefined;
|
|
1108
1124
|
tabStop?: boolean | undefined;
|
|
1109
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1125
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1110
1126
|
fillHeight?: boolean | undefined;
|
|
1111
1127
|
}[];
|
|
1112
1128
|
componentId: number;
|
|
1113
1129
|
cssClass: string;
|
|
1114
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1130
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1115
1131
|
events: {
|
|
1116
1132
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1117
1133
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1147,20 +1163,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1147
1163
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1148
1164
|
} | undefined;
|
|
1149
1165
|
};
|
|
1150
|
-
isVisible:
|
|
1166
|
+
isVisible: boolean | string;
|
|
1151
1167
|
dark: boolean;
|
|
1152
1168
|
light: boolean;
|
|
1153
1169
|
theme?: string | undefined;
|
|
1154
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1170
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1155
1171
|
name: string;
|
|
1156
|
-
parent?: any | undefined;
|
|
1172
|
+
parent?: /*elided*/ any | undefined;
|
|
1157
1173
|
tabStop: boolean;
|
|
1158
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1174
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1159
1175
|
fillHeight: boolean;
|
|
1160
1176
|
} | undefined;
|
|
1161
|
-
tabStop?: boolean | undefined;
|
|
1177
|
+
tabStop?: boolean | undefined | undefined;
|
|
1162
1178
|
userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1163
|
-
fillHeight?: boolean | undefined;
|
|
1179
|
+
fillHeight?: boolean | undefined | undefined;
|
|
1164
1180
|
}[];
|
|
1165
1181
|
readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
|
|
1166
1182
|
validate: () => Promise<{
|
|
@@ -1215,18 +1231,18 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1215
1231
|
theme?: string | undefined;
|
|
1216
1232
|
fillHeight: boolean;
|
|
1217
1233
|
parent?: {
|
|
1218
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1219
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1234
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1235
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1220
1236
|
allowDuplicate: boolean;
|
|
1221
1237
|
autofocus: boolean;
|
|
1222
1238
|
children: {
|
|
1223
1239
|
[x: string]: any;
|
|
1224
1240
|
allowDuplicate?: boolean | undefined;
|
|
1225
1241
|
autofocus?: boolean | undefined;
|
|
1226
|
-
children?: any[] | undefined;
|
|
1242
|
+
children?: /*elided*/ any[] | undefined;
|
|
1227
1243
|
componentId?: number | undefined;
|
|
1228
1244
|
cssClass?: string | undefined;
|
|
1229
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1245
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1230
1246
|
events?: {
|
|
1231
1247
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1232
1248
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1262,20 +1278,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1262
1278
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1263
1279
|
} | undefined;
|
|
1264
1280
|
} | undefined;
|
|
1265
|
-
isVisible?:
|
|
1281
|
+
isVisible?: boolean | string | undefined;
|
|
1266
1282
|
dark?: boolean | undefined;
|
|
1267
1283
|
light?: boolean | undefined;
|
|
1268
1284
|
theme?: string | undefined;
|
|
1269
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1285
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1270
1286
|
name: string;
|
|
1271
|
-
parent?: any | undefined;
|
|
1287
|
+
parent?: /*elided*/ any | undefined;
|
|
1272
1288
|
tabStop?: boolean | undefined;
|
|
1273
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1289
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1274
1290
|
fillHeight?: boolean | undefined;
|
|
1275
1291
|
}[];
|
|
1276
1292
|
componentId: number;
|
|
1277
1293
|
cssClass: string;
|
|
1278
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1294
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1279
1295
|
events: {
|
|
1280
1296
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1281
1297
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1311,19 +1327,19 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1311
1327
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1312
1328
|
} | undefined;
|
|
1313
1329
|
};
|
|
1314
|
-
isVisible:
|
|
1330
|
+
isVisible: boolean | string;
|
|
1315
1331
|
dark: boolean;
|
|
1316
1332
|
light: boolean;
|
|
1317
1333
|
theme?: string | undefined;
|
|
1318
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1334
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1319
1335
|
name: string;
|
|
1320
|
-
parent?: any | undefined;
|
|
1336
|
+
parent?: /*elided*/ any | undefined;
|
|
1321
1337
|
tabStop: boolean;
|
|
1322
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1338
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1323
1339
|
fillHeight: boolean;
|
|
1324
1340
|
} | undefined;
|
|
1325
1341
|
componentId: number;
|
|
1326
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1342
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1327
1343
|
isFocused: boolean;
|
|
1328
1344
|
tabStop: boolean;
|
|
1329
1345
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1332,19 +1348,19 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1332
1348
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1333
1349
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1334
1350
|
removeChild: (name: string) => void;
|
|
1335
|
-
getChildInstance: <
|
|
1336
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1351
|
+
getChildInstance: <T>(name: string) => T;
|
|
1352
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1337
1353
|
onCreated: () => void;
|
|
1338
1354
|
onBeforeMount: () => void;
|
|
1339
1355
|
onBeforeDestroy: () => void;
|
|
1340
1356
|
onDestroyed: () => void;
|
|
1341
|
-
click: (event?: Event
|
|
1357
|
+
click: (event?: Event, element?: any) => void;
|
|
1342
1358
|
focus: (event: Event, element: any) => void;
|
|
1343
1359
|
blur: (event: Event, element: any) => void;
|
|
1344
|
-
mouseenter: (event?: Event
|
|
1345
|
-
mouseleave: (event?: Event
|
|
1346
|
-
mouseout: (event?: Event
|
|
1347
|
-
mouseover: (event?: Event
|
|
1360
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1361
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1362
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1363
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1348
1364
|
} | undefined;
|
|
1349
1365
|
authUrl: string;
|
|
1350
1366
|
redirectUrl: string;
|
|
@@ -1385,31 +1401,31 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1385
1401
|
to: string;
|
|
1386
1402
|
top: boolean;
|
|
1387
1403
|
type: string;
|
|
1388
|
-
width:
|
|
1404
|
+
width: number | string;
|
|
1389
1405
|
active?: boolean | undefined;
|
|
1390
1406
|
appendIcon?: string | undefined;
|
|
1391
1407
|
border: string | number | boolean;
|
|
1392
1408
|
density: "default" | "comfortable" | "compact";
|
|
1393
1409
|
elevation?: string | number | undefined;
|
|
1394
1410
|
loading: string | boolean;
|
|
1395
|
-
position?: "
|
|
1411
|
+
position?: "relative" | "absolute" | "static" | "fixed" | "sticky" | undefined;
|
|
1396
1412
|
prependIcon?: string | undefined;
|
|
1397
1413
|
replace: boolean;
|
|
1398
1414
|
ripple: boolean;
|
|
1399
1415
|
selectedClass?: string | undefined;
|
|
1400
|
-
size?: "
|
|
1416
|
+
size?: "x-small" | "small" | "default" | "large" | "x-large" | undefined;
|
|
1401
1417
|
stacked: boolean;
|
|
1402
1418
|
tag?: string | undefined;
|
|
1403
|
-
variant?: "
|
|
1419
|
+
variant?: "text" | "flat" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
|
|
1404
1420
|
children: {
|
|
1405
1421
|
[x: string]: any;
|
|
1406
|
-
children?: any[] | undefined;
|
|
1422
|
+
children?: /*elided*/ any[] | undefined;
|
|
1407
1423
|
component: string;
|
|
1408
1424
|
allowDuplicate?: boolean | undefined;
|
|
1409
1425
|
autofocus?: boolean | undefined;
|
|
1410
1426
|
componentId?: number | undefined;
|
|
1411
1427
|
cssClass?: string | undefined;
|
|
1412
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1428
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1413
1429
|
events?: {
|
|
1414
1430
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1415
1431
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1445,25 +1461,25 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1445
1461
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1446
1462
|
} | undefined;
|
|
1447
1463
|
} | undefined;
|
|
1448
|
-
isVisible?:
|
|
1464
|
+
isVisible?: boolean | string | undefined;
|
|
1449
1465
|
dark?: boolean | undefined;
|
|
1450
1466
|
light?: boolean | undefined;
|
|
1451
1467
|
theme?: string | undefined;
|
|
1452
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1468
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1453
1469
|
name: string;
|
|
1454
1470
|
parent?: {
|
|
1455
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1456
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1471
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1472
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1457
1473
|
allowDuplicate: boolean;
|
|
1458
1474
|
autofocus: boolean;
|
|
1459
1475
|
children: {
|
|
1460
1476
|
[x: string]: any;
|
|
1461
1477
|
allowDuplicate?: boolean | undefined;
|
|
1462
1478
|
autofocus?: boolean | undefined;
|
|
1463
|
-
children?: any[] | undefined;
|
|
1479
|
+
children?: /*elided*/ any[] | undefined;
|
|
1464
1480
|
componentId?: number | undefined;
|
|
1465
1481
|
cssClass?: string | undefined;
|
|
1466
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1482
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1467
1483
|
events?: {
|
|
1468
1484
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1469
1485
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1499,20 +1515,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1499
1515
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1500
1516
|
} | undefined;
|
|
1501
1517
|
} | undefined;
|
|
1502
|
-
isVisible?:
|
|
1518
|
+
isVisible?: boolean | string | undefined;
|
|
1503
1519
|
dark?: boolean | undefined;
|
|
1504
1520
|
light?: boolean | undefined;
|
|
1505
1521
|
theme?: string | undefined;
|
|
1506
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1522
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1507
1523
|
name: string;
|
|
1508
|
-
parent?: any | undefined;
|
|
1524
|
+
parent?: /*elided*/ any | undefined;
|
|
1509
1525
|
tabStop?: boolean | undefined;
|
|
1510
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1526
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1511
1527
|
fillHeight?: boolean | undefined;
|
|
1512
1528
|
}[];
|
|
1513
1529
|
componentId: number;
|
|
1514
1530
|
cssClass: string;
|
|
1515
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1531
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1516
1532
|
events: {
|
|
1517
1533
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1518
1534
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1548,19 +1564,19 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1548
1564
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1549
1565
|
} | undefined;
|
|
1550
1566
|
};
|
|
1551
|
-
isVisible:
|
|
1567
|
+
isVisible: boolean | string;
|
|
1552
1568
|
dark: boolean;
|
|
1553
1569
|
light: boolean;
|
|
1554
1570
|
theme?: string | undefined;
|
|
1555
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1571
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1556
1572
|
name: string;
|
|
1557
|
-
parent?: any | undefined;
|
|
1573
|
+
parent?: /*elided*/ any | undefined;
|
|
1558
1574
|
tabStop: boolean;
|
|
1559
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1575
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1560
1576
|
fillHeight: boolean;
|
|
1561
1577
|
} | undefined;
|
|
1562
1578
|
tabStop?: boolean | undefined;
|
|
1563
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1579
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1564
1580
|
fillHeight?: boolean | undefined;
|
|
1565
1581
|
}[];
|
|
1566
1582
|
component: string;
|
|
@@ -1600,7 +1616,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1600
1616
|
theme?: string | undefined;
|
|
1601
1617
|
fillHeight: boolean;
|
|
1602
1618
|
componentId: number;
|
|
1603
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1619
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1604
1620
|
isFocused: boolean;
|
|
1605
1621
|
tabStop: boolean;
|
|
1606
1622
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1609,8 +1625,8 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1609
1625
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1610
1626
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1611
1627
|
removeChild: (name: string) => void;
|
|
1612
|
-
getChildInstance: <
|
|
1613
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1628
|
+
getChildInstance: <T>(name: string) => T;
|
|
1629
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1614
1630
|
onCreated: () => void;
|
|
1615
1631
|
onBeforeMount: () => void;
|
|
1616
1632
|
onMounted: (element: any) => void;
|
|
@@ -1618,12 +1634,12 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1618
1634
|
onDestroyed: () => void;
|
|
1619
1635
|
focus: (event: Event, element: any) => void;
|
|
1620
1636
|
blur: (event: Event, element: any) => void;
|
|
1621
|
-
mouseenter: (event?: Event
|
|
1622
|
-
mouseleave: (event?: Event
|
|
1623
|
-
mouseout: (event?: Event
|
|
1624
|
-
mouseover: (event?: Event
|
|
1637
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1638
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1639
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1640
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1625
1641
|
};
|
|
1626
|
-
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance
|
|
1642
|
+
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
1627
1643
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1628
1644
|
authUrl: {
|
|
1629
1645
|
type: StringConstructor;
|
|
@@ -1794,16 +1810,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1794
1810
|
isArray(arg: any): arg is any[];
|
|
1795
1811
|
readonly prototype: any[];
|
|
1796
1812
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
1797
|
-
from<
|
|
1798
|
-
from<
|
|
1799
|
-
from<
|
|
1800
|
-
of<
|
|
1813
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
1814
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
1815
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
1816
|
+
of<T>(...items: T[]): T[];
|
|
1817
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
1818
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
1801
1819
|
readonly [Symbol.species]: ArrayConstructor;
|
|
1802
1820
|
})[];
|
|
1803
1821
|
default(): never[];
|
|
1822
|
+
watch: boolean;
|
|
1804
1823
|
};
|
|
1805
1824
|
component: {
|
|
1806
1825
|
type: StringConstructor;
|
|
1826
|
+
watch: boolean;
|
|
1807
1827
|
};
|
|
1808
1828
|
allowDuplicate: {
|
|
1809
1829
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -1828,10 +1848,12 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1828
1848
|
directives: {
|
|
1829
1849
|
type: ObjectConstructor;
|
|
1830
1850
|
default(): {};
|
|
1851
|
+
watch: boolean;
|
|
1831
1852
|
};
|
|
1832
1853
|
events: {
|
|
1833
1854
|
type: ObjectConstructor;
|
|
1834
1855
|
default(): {};
|
|
1856
|
+
watch: boolean;
|
|
1835
1857
|
};
|
|
1836
1858
|
instanceObject: {
|
|
1837
1859
|
type: ObjectConstructor;
|
|
@@ -1843,6 +1865,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1843
1865
|
keyMap: {
|
|
1844
1866
|
type: ObjectConstructor;
|
|
1845
1867
|
default(): {};
|
|
1868
|
+
watch: boolean;
|
|
1846
1869
|
};
|
|
1847
1870
|
light: {
|
|
1848
1871
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -1854,6 +1877,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1854
1877
|
};
|
|
1855
1878
|
parent: {
|
|
1856
1879
|
type: ObjectConstructor;
|
|
1880
|
+
watch: boolean;
|
|
1857
1881
|
};
|
|
1858
1882
|
tabStop: {
|
|
1859
1883
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -1866,6 +1890,8 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1866
1890
|
iconName: string;
|
|
1867
1891
|
reverse: string | boolean;
|
|
1868
1892
|
flat: string | boolean;
|
|
1893
|
+
label: string;
|
|
1894
|
+
small: string | boolean;
|
|
1869
1895
|
allowDuplicate: string | boolean;
|
|
1870
1896
|
type: string;
|
|
1871
1897
|
autofocus: string | boolean;
|
|
@@ -1879,10 +1905,11 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1879
1905
|
keyMap: Record<string, any>;
|
|
1880
1906
|
light: string | boolean;
|
|
1881
1907
|
tabStop: string | boolean;
|
|
1882
|
-
label: string;
|
|
1883
|
-
small: string | boolean;
|
|
1884
1908
|
replace: string | boolean;
|
|
1885
1909
|
fixed: string | boolean;
|
|
1910
|
+
target: string;
|
|
1911
|
+
top: string | boolean;
|
|
1912
|
+
active: string | boolean;
|
|
1886
1913
|
absolute: string | boolean;
|
|
1887
1914
|
block: string | boolean;
|
|
1888
1915
|
bottom: string | boolean;
|
|
@@ -1896,12 +1923,9 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
|
|
|
1896
1923
|
outline: string | boolean;
|
|
1897
1924
|
right: string | boolean;
|
|
1898
1925
|
round: string | number | boolean;
|
|
1899
|
-
target: string;
|
|
1900
1926
|
tile: string | boolean;
|
|
1901
1927
|
to: string;
|
|
1902
|
-
top: string | boolean;
|
|
1903
1928
|
width: string | number;
|
|
1904
|
-
active: string | boolean;
|
|
1905
1929
|
border: string | number | boolean;
|
|
1906
1930
|
density: string;
|
|
1907
1931
|
loading: string | boolean;
|