@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
|
@@ -156,6 +156,7 @@ export declare const ZdNumberInputProps: {
|
|
|
156
156
|
validations: {
|
|
157
157
|
type: (ObjectConstructor | StringConstructor)[];
|
|
158
158
|
default: {};
|
|
159
|
+
watch: boolean;
|
|
159
160
|
};
|
|
160
161
|
grid: {
|
|
161
162
|
default: {};
|
|
@@ -170,16 +171,20 @@ export declare const ZdNumberInputProps: {
|
|
|
170
171
|
isArray(arg: any): arg is any[];
|
|
171
172
|
readonly prototype: any[];
|
|
172
173
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
173
|
-
from<
|
|
174
|
-
from<
|
|
175
|
-
from<
|
|
176
|
-
of<
|
|
174
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
175
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
176
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
177
|
+
of<T>(...items: T[]): T[];
|
|
178
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
179
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
177
180
|
readonly [Symbol.species]: ArrayConstructor;
|
|
178
181
|
})[];
|
|
179
182
|
default(): never[];
|
|
183
|
+
watch: boolean;
|
|
180
184
|
};
|
|
181
185
|
component: {
|
|
182
186
|
type: StringConstructor;
|
|
187
|
+
watch: boolean;
|
|
183
188
|
};
|
|
184
189
|
allowDuplicate: {
|
|
185
190
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -204,10 +209,12 @@ export declare const ZdNumberInputProps: {
|
|
|
204
209
|
directives: {
|
|
205
210
|
type: ObjectConstructor;
|
|
206
211
|
default(): {};
|
|
212
|
+
watch: boolean;
|
|
207
213
|
};
|
|
208
214
|
events: {
|
|
209
215
|
type: ObjectConstructor;
|
|
210
216
|
default(): {};
|
|
217
|
+
watch: boolean;
|
|
211
218
|
};
|
|
212
219
|
instanceObject: {
|
|
213
220
|
type: ObjectConstructor;
|
|
@@ -219,6 +226,7 @@ export declare const ZdNumberInputProps: {
|
|
|
219
226
|
keyMap: {
|
|
220
227
|
type: ObjectConstructor;
|
|
221
228
|
default(): {};
|
|
229
|
+
watch: boolean;
|
|
222
230
|
};
|
|
223
231
|
light: {
|
|
224
232
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -230,6 +238,7 @@ export declare const ZdNumberInputProps: {
|
|
|
230
238
|
};
|
|
231
239
|
parent: {
|
|
232
240
|
type: ObjectConstructor;
|
|
241
|
+
watch: boolean;
|
|
233
242
|
};
|
|
234
243
|
tabStop: {
|
|
235
244
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -397,6 +406,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
397
406
|
validations: {
|
|
398
407
|
type: (ObjectConstructor | StringConstructor)[];
|
|
399
408
|
default: {};
|
|
409
|
+
watch: boolean;
|
|
400
410
|
};
|
|
401
411
|
grid: {
|
|
402
412
|
default: {};
|
|
@@ -411,16 +421,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
411
421
|
isArray(arg: any): arg is any[];
|
|
412
422
|
readonly prototype: any[];
|
|
413
423
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
414
|
-
from<
|
|
415
|
-
from<
|
|
416
|
-
from<
|
|
417
|
-
of<
|
|
424
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
425
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
426
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
427
|
+
of<T>(...items: T[]): T[];
|
|
428
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
429
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
418
430
|
readonly [Symbol.species]: ArrayConstructor;
|
|
419
431
|
})[];
|
|
420
432
|
default(): never[];
|
|
433
|
+
watch: boolean;
|
|
421
434
|
};
|
|
422
435
|
component: {
|
|
423
436
|
type: StringConstructor;
|
|
437
|
+
watch: boolean;
|
|
424
438
|
};
|
|
425
439
|
allowDuplicate: {
|
|
426
440
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -445,10 +459,12 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
445
459
|
directives: {
|
|
446
460
|
type: ObjectConstructor;
|
|
447
461
|
default(): {};
|
|
462
|
+
watch: boolean;
|
|
448
463
|
};
|
|
449
464
|
events: {
|
|
450
465
|
type: ObjectConstructor;
|
|
451
466
|
default(): {};
|
|
467
|
+
watch: boolean;
|
|
452
468
|
};
|
|
453
469
|
instanceObject: {
|
|
454
470
|
type: ObjectConstructor;
|
|
@@ -460,6 +476,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
460
476
|
keyMap: {
|
|
461
477
|
type: ObjectConstructor;
|
|
462
478
|
default(): {};
|
|
479
|
+
watch: boolean;
|
|
463
480
|
};
|
|
464
481
|
light: {
|
|
465
482
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -471,6 +488,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
471
488
|
};
|
|
472
489
|
parent: {
|
|
473
490
|
type: ObjectConstructor;
|
|
491
|
+
watch: boolean;
|
|
474
492
|
};
|
|
475
493
|
tabStop: {
|
|
476
494
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -498,7 +516,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
498
516
|
type: string;
|
|
499
517
|
valueWithPrefix: boolean;
|
|
500
518
|
valueWithSuffix: boolean;
|
|
501
|
-
inputMode?: string | undefined;
|
|
519
|
+
inputMode?: string | undefined | undefined;
|
|
502
520
|
onCreated: () => void;
|
|
503
521
|
appendIconClick: (event: Event, element: any) => void;
|
|
504
522
|
appendOuterIconClick: (event: Event, element: any) => void;
|
|
@@ -513,10 +531,10 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
513
531
|
disabled: boolean;
|
|
514
532
|
events: {
|
|
515
533
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
516
|
-
change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
517
|
-
input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
518
|
-
keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
519
|
-
keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any
|
|
534
|
+
change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
535
|
+
input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
536
|
+
keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
537
|
+
keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
520
538
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
521
539
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
522
540
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -533,7 +551,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
533
551
|
placeholder: string;
|
|
534
552
|
readonly: boolean;
|
|
535
553
|
reverse: boolean;
|
|
536
|
-
rules: ((value?: any) =>
|
|
554
|
+
rules: ((value?: any) => boolean | string)[];
|
|
537
555
|
showBorder: boolean;
|
|
538
556
|
showHelper: boolean;
|
|
539
557
|
showLabel: boolean;
|
|
@@ -559,13 +577,13 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
559
577
|
} | undefined;
|
|
560
578
|
children?: {
|
|
561
579
|
[x: string]: any;
|
|
562
|
-
children?: any[] | undefined;
|
|
580
|
+
children?: /*elided*/ any[] | undefined;
|
|
563
581
|
component: string;
|
|
564
582
|
allowDuplicate?: boolean | undefined;
|
|
565
583
|
autofocus?: boolean | undefined;
|
|
566
584
|
componentId?: number | undefined;
|
|
567
585
|
cssClass?: string | undefined;
|
|
568
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
586
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
569
587
|
events?: {
|
|
570
588
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
571
589
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -601,25 +619,25 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
601
619
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
602
620
|
} | undefined;
|
|
603
621
|
} | undefined;
|
|
604
|
-
isVisible?:
|
|
622
|
+
isVisible?: boolean | string | undefined;
|
|
605
623
|
dark?: boolean | undefined;
|
|
606
624
|
light?: boolean | undefined;
|
|
607
625
|
theme?: string | undefined;
|
|
608
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
626
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
609
627
|
name: string;
|
|
610
628
|
parent?: {
|
|
611
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
612
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
629
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
630
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
613
631
|
allowDuplicate: boolean;
|
|
614
632
|
autofocus: boolean;
|
|
615
633
|
children: {
|
|
616
634
|
[x: string]: any;
|
|
617
635
|
allowDuplicate?: boolean | undefined;
|
|
618
636
|
autofocus?: boolean | undefined;
|
|
619
|
-
children?: any[] | undefined;
|
|
637
|
+
children?: /*elided*/ any[] | undefined;
|
|
620
638
|
componentId?: number | undefined;
|
|
621
639
|
cssClass?: string | undefined;
|
|
622
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
640
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
623
641
|
events?: {
|
|
624
642
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
625
643
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -655,20 +673,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
655
673
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
656
674
|
} | undefined;
|
|
657
675
|
} | undefined;
|
|
658
|
-
isVisible?:
|
|
676
|
+
isVisible?: boolean | string | undefined;
|
|
659
677
|
dark?: boolean | undefined;
|
|
660
678
|
light?: boolean | undefined;
|
|
661
679
|
theme?: string | undefined;
|
|
662
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
680
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
663
681
|
name: string;
|
|
664
|
-
parent?: any | undefined;
|
|
682
|
+
parent?: /*elided*/ any | undefined;
|
|
665
683
|
tabStop?: boolean | undefined;
|
|
666
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
684
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
667
685
|
fillHeight?: boolean | undefined;
|
|
668
686
|
}[];
|
|
669
687
|
componentId: number;
|
|
670
688
|
cssClass: string;
|
|
671
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
689
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
672
690
|
events: {
|
|
673
691
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
674
692
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -704,19 +722,19 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
704
722
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
705
723
|
} | undefined;
|
|
706
724
|
};
|
|
707
|
-
isVisible:
|
|
725
|
+
isVisible: boolean | string;
|
|
708
726
|
dark: boolean;
|
|
709
727
|
light: boolean;
|
|
710
728
|
theme?: string | undefined;
|
|
711
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
729
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
712
730
|
name: string;
|
|
713
|
-
parent?: any | undefined;
|
|
731
|
+
parent?: /*elided*/ any | undefined;
|
|
714
732
|
tabStop: boolean;
|
|
715
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
733
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
716
734
|
fillHeight: boolean;
|
|
717
735
|
} | undefined;
|
|
718
736
|
tabStop?: boolean | undefined;
|
|
719
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
737
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
720
738
|
fillHeight?: boolean | undefined;
|
|
721
739
|
}[] | undefined;
|
|
722
740
|
component: string;
|
|
@@ -724,7 +742,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
724
742
|
autofocus?: boolean | undefined;
|
|
725
743
|
componentId?: number | undefined;
|
|
726
744
|
cssClass?: string | undefined;
|
|
727
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
745
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
728
746
|
events?: {
|
|
729
747
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
730
748
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -760,25 +778,25 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
760
778
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
761
779
|
} | undefined;
|
|
762
780
|
} | undefined;
|
|
763
|
-
isVisible?:
|
|
781
|
+
isVisible?: boolean | string | undefined;
|
|
764
782
|
dark?: boolean | undefined;
|
|
765
783
|
light?: boolean | undefined;
|
|
766
784
|
theme?: string | undefined;
|
|
767
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
785
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
768
786
|
name: string;
|
|
769
787
|
parent?: {
|
|
770
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
771
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
788
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
789
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
772
790
|
allowDuplicate: boolean;
|
|
773
791
|
autofocus: boolean;
|
|
774
792
|
children: {
|
|
775
793
|
[x: string]: any;
|
|
776
794
|
allowDuplicate?: boolean | undefined;
|
|
777
795
|
autofocus?: boolean | undefined;
|
|
778
|
-
children?: any[] | undefined;
|
|
796
|
+
children?: /*elided*/ any[] | undefined;
|
|
779
797
|
componentId?: number | undefined;
|
|
780
798
|
cssClass?: string | undefined;
|
|
781
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
799
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
782
800
|
events?: {
|
|
783
801
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
784
802
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -814,20 +832,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
814
832
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
815
833
|
} | undefined;
|
|
816
834
|
} | undefined;
|
|
817
|
-
isVisible?:
|
|
835
|
+
isVisible?: boolean | string | undefined;
|
|
818
836
|
dark?: boolean | undefined;
|
|
819
837
|
light?: boolean | undefined;
|
|
820
838
|
theme?: string | undefined;
|
|
821
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
839
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
822
840
|
name: string;
|
|
823
|
-
parent?: any | undefined;
|
|
841
|
+
parent?: /*elided*/ any | undefined;
|
|
824
842
|
tabStop?: boolean | undefined;
|
|
825
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
843
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
826
844
|
fillHeight?: boolean | undefined;
|
|
827
845
|
}[];
|
|
828
846
|
componentId: number;
|
|
829
847
|
cssClass: string;
|
|
830
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
848
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
831
849
|
events: {
|
|
832
850
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
833
851
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -863,19 +881,19 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
863
881
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
864
882
|
} | undefined;
|
|
865
883
|
};
|
|
866
|
-
isVisible:
|
|
884
|
+
isVisible: boolean | string;
|
|
867
885
|
dark: boolean;
|
|
868
886
|
light: boolean;
|
|
869
887
|
theme?: string | undefined;
|
|
870
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
888
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
871
889
|
name: string;
|
|
872
|
-
parent?: any | undefined;
|
|
890
|
+
parent?: /*elided*/ any | undefined;
|
|
873
891
|
tabStop: boolean;
|
|
874
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
892
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
875
893
|
fillHeight: boolean;
|
|
876
894
|
} | undefined;
|
|
877
895
|
tabStop?: boolean | undefined;
|
|
878
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
896
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
879
897
|
fillHeight?: boolean | undefined;
|
|
880
898
|
}[];
|
|
881
899
|
align?: string | undefined;
|
|
@@ -888,7 +906,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
888
906
|
maxWidth: string | number;
|
|
889
907
|
events: {
|
|
890
908
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
|
|
891
|
-
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent
|
|
909
|
+
submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent> | undefined;
|
|
892
910
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
893
911
|
click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
894
912
|
focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
@@ -899,20 +917,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
899
917
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
|
|
900
918
|
};
|
|
901
919
|
submitFunction?: (() => void) | undefined;
|
|
902
|
-
value: import("@zeedhi/core").IDictionary
|
|
920
|
+
value: import("@zeedhi/core").IDictionary;
|
|
903
921
|
clearForm: () => void;
|
|
904
922
|
registerInput: (component: import("@zeedhi/common").Input) => void;
|
|
905
923
|
readonly childrenProps: {
|
|
906
924
|
[x: string]: any;
|
|
907
925
|
children?: {
|
|
908
926
|
[x: string]: any;
|
|
909
|
-
children?: any[] | undefined;
|
|
927
|
+
children?: /*elided*/ any[] | undefined;
|
|
910
928
|
component: string;
|
|
911
929
|
allowDuplicate?: boolean | undefined;
|
|
912
930
|
autofocus?: boolean | undefined;
|
|
913
931
|
componentId?: number | undefined;
|
|
914
932
|
cssClass?: string | undefined;
|
|
915
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
933
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
916
934
|
events?: {
|
|
917
935
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
918
936
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -948,25 +966,25 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
948
966
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
949
967
|
} | undefined;
|
|
950
968
|
} | undefined;
|
|
951
|
-
isVisible?:
|
|
969
|
+
isVisible?: boolean | string | undefined;
|
|
952
970
|
dark?: boolean | undefined;
|
|
953
971
|
light?: boolean | undefined;
|
|
954
972
|
theme?: string | undefined;
|
|
955
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
973
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
956
974
|
name: string;
|
|
957
975
|
parent?: {
|
|
958
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
959
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
976
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
977
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
960
978
|
allowDuplicate: boolean;
|
|
961
979
|
autofocus: boolean;
|
|
962
980
|
children: {
|
|
963
981
|
[x: string]: any;
|
|
964
982
|
allowDuplicate?: boolean | undefined;
|
|
965
983
|
autofocus?: boolean | undefined;
|
|
966
|
-
children?: any[] | undefined;
|
|
984
|
+
children?: /*elided*/ any[] | undefined;
|
|
967
985
|
componentId?: number | undefined;
|
|
968
986
|
cssClass?: string | undefined;
|
|
969
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
987
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
970
988
|
events?: {
|
|
971
989
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
972
990
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1002,20 +1020,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1002
1020
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1003
1021
|
} | undefined;
|
|
1004
1022
|
} | undefined;
|
|
1005
|
-
isVisible?:
|
|
1023
|
+
isVisible?: boolean | string | undefined;
|
|
1006
1024
|
dark?: boolean | undefined;
|
|
1007
1025
|
light?: boolean | undefined;
|
|
1008
1026
|
theme?: string | undefined;
|
|
1009
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1027
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1010
1028
|
name: string;
|
|
1011
|
-
parent?: any | undefined;
|
|
1029
|
+
parent?: /*elided*/ any | undefined;
|
|
1012
1030
|
tabStop?: boolean | undefined;
|
|
1013
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1031
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1014
1032
|
fillHeight?: boolean | undefined;
|
|
1015
1033
|
}[];
|
|
1016
1034
|
componentId: number;
|
|
1017
1035
|
cssClass: string;
|
|
1018
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1036
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1019
1037
|
events: {
|
|
1020
1038
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1021
1039
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1051,26 +1069,26 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1051
1069
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1052
1070
|
} | undefined;
|
|
1053
1071
|
};
|
|
1054
|
-
isVisible:
|
|
1072
|
+
isVisible: boolean | string;
|
|
1055
1073
|
dark: boolean;
|
|
1056
1074
|
light: boolean;
|
|
1057
1075
|
theme?: string | undefined;
|
|
1058
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1076
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1059
1077
|
name: string;
|
|
1060
|
-
parent?: any | undefined;
|
|
1078
|
+
parent?: /*elided*/ any | undefined;
|
|
1061
1079
|
tabStop: boolean;
|
|
1062
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1080
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1063
1081
|
fillHeight: boolean;
|
|
1064
1082
|
} | undefined;
|
|
1065
1083
|
tabStop?: boolean | undefined;
|
|
1066
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1084
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1067
1085
|
fillHeight?: boolean | undefined;
|
|
1068
1086
|
}[] | undefined;
|
|
1069
1087
|
component: string;
|
|
1070
|
-
allowDuplicate?: boolean | undefined;
|
|
1071
|
-
autofocus?: boolean | undefined;
|
|
1072
|
-
componentId?: number | undefined;
|
|
1073
|
-
cssClass?: string | undefined;
|
|
1088
|
+
allowDuplicate?: boolean | undefined | undefined;
|
|
1089
|
+
autofocus?: boolean | undefined | undefined;
|
|
1090
|
+
componentId?: number | undefined | undefined;
|
|
1091
|
+
cssClass?: string | undefined | undefined;
|
|
1074
1092
|
cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1075
1093
|
events?: {
|
|
1076
1094
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
@@ -1107,25 +1125,25 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1107
1125
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1108
1126
|
} | undefined;
|
|
1109
1127
|
} | undefined;
|
|
1110
|
-
isVisible?: string | boolean | undefined;
|
|
1111
|
-
dark?: boolean | undefined;
|
|
1112
|
-
light?: boolean | undefined;
|
|
1113
|
-
theme?: string | undefined;
|
|
1128
|
+
isVisible?: string | boolean | undefined | undefined;
|
|
1129
|
+
dark?: boolean | undefined | undefined;
|
|
1130
|
+
light?: boolean | undefined | undefined;
|
|
1131
|
+
theme?: string | undefined | undefined;
|
|
1114
1132
|
keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
|
|
1115
1133
|
name: string;
|
|
1116
1134
|
parent?: {
|
|
1117
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1118
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1135
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1136
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1119
1137
|
allowDuplicate: boolean;
|
|
1120
1138
|
autofocus: boolean;
|
|
1121
1139
|
children: {
|
|
1122
1140
|
[x: string]: any;
|
|
1123
1141
|
allowDuplicate?: boolean | undefined;
|
|
1124
1142
|
autofocus?: boolean | undefined;
|
|
1125
|
-
children?: any[] | undefined;
|
|
1143
|
+
children?: /*elided*/ any[] | undefined;
|
|
1126
1144
|
componentId?: number | undefined;
|
|
1127
1145
|
cssClass?: string | undefined;
|
|
1128
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1146
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1129
1147
|
events?: {
|
|
1130
1148
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1131
1149
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1161,20 +1179,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1161
1179
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1162
1180
|
} | undefined;
|
|
1163
1181
|
} | undefined;
|
|
1164
|
-
isVisible?:
|
|
1182
|
+
isVisible?: boolean | string | undefined;
|
|
1165
1183
|
dark?: boolean | undefined;
|
|
1166
1184
|
light?: boolean | undefined;
|
|
1167
1185
|
theme?: string | undefined;
|
|
1168
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1186
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1169
1187
|
name: string;
|
|
1170
|
-
parent?: any | undefined;
|
|
1188
|
+
parent?: /*elided*/ any | undefined;
|
|
1171
1189
|
tabStop?: boolean | undefined;
|
|
1172
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1190
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1173
1191
|
fillHeight?: boolean | undefined;
|
|
1174
1192
|
}[];
|
|
1175
1193
|
componentId: number;
|
|
1176
1194
|
cssClass: string;
|
|
1177
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1195
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1178
1196
|
events: {
|
|
1179
1197
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1180
1198
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1210,20 +1228,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1210
1228
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1211
1229
|
} | undefined;
|
|
1212
1230
|
};
|
|
1213
|
-
isVisible:
|
|
1231
|
+
isVisible: boolean | string;
|
|
1214
1232
|
dark: boolean;
|
|
1215
1233
|
light: boolean;
|
|
1216
1234
|
theme?: string | undefined;
|
|
1217
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1235
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1218
1236
|
name: string;
|
|
1219
|
-
parent?: any | undefined;
|
|
1237
|
+
parent?: /*elided*/ any | undefined;
|
|
1220
1238
|
tabStop: boolean;
|
|
1221
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1239
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1222
1240
|
fillHeight: boolean;
|
|
1223
1241
|
} | undefined;
|
|
1224
|
-
tabStop?: boolean | undefined;
|
|
1242
|
+
tabStop?: boolean | undefined | undefined;
|
|
1225
1243
|
userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
|
|
1226
|
-
fillHeight?: boolean | undefined;
|
|
1244
|
+
fillHeight?: boolean | undefined | undefined;
|
|
1227
1245
|
}[];
|
|
1228
1246
|
readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
|
|
1229
1247
|
validate: () => Promise<{
|
|
@@ -1278,18 +1296,18 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1278
1296
|
theme?: string | undefined;
|
|
1279
1297
|
fillHeight: boolean;
|
|
1280
1298
|
parent?: {
|
|
1281
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1282
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1299
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1300
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1283
1301
|
allowDuplicate: boolean;
|
|
1284
1302
|
autofocus: boolean;
|
|
1285
1303
|
children: {
|
|
1286
1304
|
[x: string]: any;
|
|
1287
1305
|
allowDuplicate?: boolean | undefined;
|
|
1288
1306
|
autofocus?: boolean | undefined;
|
|
1289
|
-
children?: any[] | undefined;
|
|
1307
|
+
children?: /*elided*/ any[] | undefined;
|
|
1290
1308
|
componentId?: number | undefined;
|
|
1291
1309
|
cssClass?: string | undefined;
|
|
1292
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1310
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1293
1311
|
events?: {
|
|
1294
1312
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1295
1313
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1325,20 +1343,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1325
1343
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1326
1344
|
} | undefined;
|
|
1327
1345
|
} | undefined;
|
|
1328
|
-
isVisible?:
|
|
1346
|
+
isVisible?: boolean | string | undefined;
|
|
1329
1347
|
dark?: boolean | undefined;
|
|
1330
1348
|
light?: boolean | undefined;
|
|
1331
1349
|
theme?: string | undefined;
|
|
1332
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1350
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1333
1351
|
name: string;
|
|
1334
|
-
parent?: any | undefined;
|
|
1352
|
+
parent?: /*elided*/ any | undefined;
|
|
1335
1353
|
tabStop?: boolean | undefined;
|
|
1336
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1354
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1337
1355
|
fillHeight?: boolean | undefined;
|
|
1338
1356
|
}[];
|
|
1339
1357
|
componentId: number;
|
|
1340
1358
|
cssClass: string;
|
|
1341
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1359
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1342
1360
|
events: {
|
|
1343
1361
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1344
1362
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1374,19 +1392,19 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1374
1392
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1375
1393
|
} | undefined;
|
|
1376
1394
|
};
|
|
1377
|
-
isVisible:
|
|
1395
|
+
isVisible: boolean | string;
|
|
1378
1396
|
dark: boolean;
|
|
1379
1397
|
light: boolean;
|
|
1380
1398
|
theme?: string | undefined;
|
|
1381
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1399
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1382
1400
|
name: string;
|
|
1383
|
-
parent?: any | undefined;
|
|
1401
|
+
parent?: /*elided*/ any | undefined;
|
|
1384
1402
|
tabStop: boolean;
|
|
1385
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1403
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1386
1404
|
fillHeight: boolean;
|
|
1387
1405
|
} | undefined;
|
|
1388
1406
|
componentId: number;
|
|
1389
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1407
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1390
1408
|
isFocused: boolean;
|
|
1391
1409
|
tabStop: boolean;
|
|
1392
1410
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1395,19 +1413,19 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1395
1413
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1396
1414
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1397
1415
|
removeChild: (name: string) => void;
|
|
1398
|
-
getChildInstance: <
|
|
1399
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1416
|
+
getChildInstance: <T>(name: string) => T;
|
|
1417
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1400
1418
|
onCreated: () => void;
|
|
1401
1419
|
onBeforeMount: () => void;
|
|
1402
1420
|
onBeforeDestroy: () => void;
|
|
1403
1421
|
onDestroyed: () => void;
|
|
1404
|
-
click: (event?: Event
|
|
1422
|
+
click: (event?: Event, element?: any) => void;
|
|
1405
1423
|
focus: (event: Event, element: any) => void;
|
|
1406
1424
|
blur: (event: Event, element: any) => void;
|
|
1407
|
-
mouseenter: (event?: Event
|
|
1408
|
-
mouseleave: (event?: Event
|
|
1409
|
-
mouseout: (event?: Event
|
|
1410
|
-
mouseover: (event?: Event
|
|
1425
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1426
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1427
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1428
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1411
1429
|
} | undefined;
|
|
1412
1430
|
grid: {
|
|
1413
1431
|
cols?: string | undefined;
|
|
@@ -1424,26 +1442,26 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1424
1442
|
'offset-xxl'?: string | undefined;
|
|
1425
1443
|
};
|
|
1426
1444
|
validate: () => Promise<string[]>;
|
|
1427
|
-
setViewValidate: (viewValidate: (silent?: boolean
|
|
1445
|
+
setViewValidate: (viewValidate: (silent?: boolean) => Promise<string[]>) => void;
|
|
1428
1446
|
setViewResetValidation: (viewResetValidation: () => void) => void;
|
|
1429
1447
|
resetValidation: () => void;
|
|
1430
|
-
addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any>
|
|
1448
|
+
addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any>) => void;
|
|
1431
1449
|
removeValidation: (name: string) => void;
|
|
1432
1450
|
clearValidations: () => void;
|
|
1433
1451
|
isValid: (value?: any) => boolean;
|
|
1434
|
-
change: (event?: Event
|
|
1435
|
-
input: (event?: Event
|
|
1436
|
-
keyup: (event?: Event
|
|
1437
|
-
keydown: (event?: Event
|
|
1452
|
+
change: (event?: Event, element?: any) => void;
|
|
1453
|
+
input: (event?: Event, element?: any) => void;
|
|
1454
|
+
keyup: (event?: Event, element?: any) => void;
|
|
1455
|
+
keydown: (event?: Event, element?: any) => void;
|
|
1438
1456
|
children: {
|
|
1439
1457
|
[x: string]: any;
|
|
1440
|
-
children?: any[] | undefined;
|
|
1458
|
+
children?: /*elided*/ any[] | undefined;
|
|
1441
1459
|
component: string;
|
|
1442
1460
|
allowDuplicate?: boolean | undefined;
|
|
1443
1461
|
autofocus?: boolean | undefined;
|
|
1444
1462
|
componentId?: number | undefined;
|
|
1445
1463
|
cssClass?: string | undefined;
|
|
1446
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1464
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1447
1465
|
events?: {
|
|
1448
1466
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1449
1467
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1479,25 +1497,25 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1479
1497
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1480
1498
|
} | undefined;
|
|
1481
1499
|
} | undefined;
|
|
1482
|
-
isVisible?:
|
|
1500
|
+
isVisible?: boolean | string | undefined;
|
|
1483
1501
|
dark?: boolean | undefined;
|
|
1484
1502
|
light?: boolean | undefined;
|
|
1485
1503
|
theme?: string | undefined;
|
|
1486
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1504
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1487
1505
|
name: string;
|
|
1488
1506
|
parent?: {
|
|
1489
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1490
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1507
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1508
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1491
1509
|
allowDuplicate: boolean;
|
|
1492
1510
|
autofocus: boolean;
|
|
1493
1511
|
children: {
|
|
1494
1512
|
[x: string]: any;
|
|
1495
1513
|
allowDuplicate?: boolean | undefined;
|
|
1496
1514
|
autofocus?: boolean | undefined;
|
|
1497
|
-
children?: any[] | undefined;
|
|
1515
|
+
children?: /*elided*/ any[] | undefined;
|
|
1498
1516
|
componentId?: number | undefined;
|
|
1499
1517
|
cssClass?: string | undefined;
|
|
1500
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1518
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1501
1519
|
events?: {
|
|
1502
1520
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1503
1521
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1533,20 +1551,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1533
1551
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1534
1552
|
} | undefined;
|
|
1535
1553
|
} | undefined;
|
|
1536
|
-
isVisible?:
|
|
1554
|
+
isVisible?: boolean | string | undefined;
|
|
1537
1555
|
dark?: boolean | undefined;
|
|
1538
1556
|
light?: boolean | undefined;
|
|
1539
1557
|
theme?: string | undefined;
|
|
1540
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1558
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1541
1559
|
name: string;
|
|
1542
|
-
parent?: any | undefined;
|
|
1560
|
+
parent?: /*elided*/ any | undefined;
|
|
1543
1561
|
tabStop?: boolean | undefined;
|
|
1544
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1562
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1545
1563
|
fillHeight?: boolean | undefined;
|
|
1546
1564
|
}[];
|
|
1547
1565
|
componentId: number;
|
|
1548
1566
|
cssClass: string;
|
|
1549
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1567
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1550
1568
|
events: {
|
|
1551
1569
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1552
1570
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1582,19 +1600,19 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1582
1600
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1583
1601
|
} | undefined;
|
|
1584
1602
|
};
|
|
1585
|
-
isVisible:
|
|
1603
|
+
isVisible: boolean | string;
|
|
1586
1604
|
dark: boolean;
|
|
1587
1605
|
light: boolean;
|
|
1588
1606
|
theme?: string | undefined;
|
|
1589
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1607
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1590
1608
|
name: string;
|
|
1591
|
-
parent?: any | undefined;
|
|
1609
|
+
parent?: /*elided*/ any | undefined;
|
|
1592
1610
|
tabStop: boolean;
|
|
1593
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1611
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1594
1612
|
fillHeight: boolean;
|
|
1595
1613
|
} | undefined;
|
|
1596
1614
|
tabStop?: boolean | undefined;
|
|
1597
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1615
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1598
1616
|
fillHeight?: boolean | undefined;
|
|
1599
1617
|
}[];
|
|
1600
1618
|
component: string;
|
|
@@ -1634,18 +1652,18 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1634
1652
|
theme?: string | undefined;
|
|
1635
1653
|
fillHeight: boolean;
|
|
1636
1654
|
parent?: {
|
|
1637
|
-
addChildInstance: (component: import("@zeedhi/common").Component
|
|
1638
|
-
getChildInstance: <T extends import("@zeedhi/common").Component
|
|
1655
|
+
addChildInstance: (component: import("@zeedhi/common").Component) => void;
|
|
1656
|
+
getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
|
|
1639
1657
|
allowDuplicate: boolean;
|
|
1640
1658
|
autofocus: boolean;
|
|
1641
1659
|
children: {
|
|
1642
1660
|
[x: string]: any;
|
|
1643
1661
|
allowDuplicate?: boolean | undefined;
|
|
1644
1662
|
autofocus?: boolean | undefined;
|
|
1645
|
-
children?: any[] | undefined;
|
|
1663
|
+
children?: /*elided*/ any[] | undefined;
|
|
1646
1664
|
componentId?: number | undefined;
|
|
1647
1665
|
cssClass?: string | undefined;
|
|
1648
|
-
cssStyle?: string | import("@zeedhi/core").IDictionary
|
|
1666
|
+
cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
|
|
1649
1667
|
events?: {
|
|
1650
1668
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1651
1669
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1681,20 +1699,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1681
1699
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1682
1700
|
} | undefined;
|
|
1683
1701
|
} | undefined;
|
|
1684
|
-
isVisible?:
|
|
1702
|
+
isVisible?: boolean | string | undefined;
|
|
1685
1703
|
dark?: boolean | undefined;
|
|
1686
1704
|
light?: boolean | undefined;
|
|
1687
1705
|
theme?: string | undefined;
|
|
1688
|
-
keyMap?: import("@zeedhi/core").IKeyMap
|
|
1706
|
+
keyMap?: import("@zeedhi/core").IKeyMap | undefined;
|
|
1689
1707
|
name: string;
|
|
1690
|
-
parent?: any | undefined;
|
|
1708
|
+
parent?: /*elided*/ any | undefined;
|
|
1691
1709
|
tabStop?: boolean | undefined;
|
|
1692
|
-
userProperties?: import("@zeedhi/core").IDictionary
|
|
1710
|
+
userProperties?: import("@zeedhi/core").IDictionary | undefined;
|
|
1693
1711
|
fillHeight?: boolean | undefined;
|
|
1694
1712
|
}[];
|
|
1695
1713
|
componentId: number;
|
|
1696
1714
|
cssClass: string;
|
|
1697
|
-
cssStyle: string | import("@zeedhi/core").IDictionary
|
|
1715
|
+
cssStyle: string | import("@zeedhi/core").IDictionary;
|
|
1698
1716
|
events: {
|
|
1699
1717
|
[x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
|
|
1700
1718
|
blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
@@ -1730,19 +1748,19 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1730
1748
|
onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
|
|
1731
1749
|
} | undefined;
|
|
1732
1750
|
};
|
|
1733
|
-
isVisible:
|
|
1751
|
+
isVisible: boolean | string;
|
|
1734
1752
|
dark: boolean;
|
|
1735
1753
|
light: boolean;
|
|
1736
1754
|
theme?: string | undefined;
|
|
1737
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1755
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1738
1756
|
name: string;
|
|
1739
|
-
parent?: any | undefined;
|
|
1757
|
+
parent?: /*elided*/ any | undefined;
|
|
1740
1758
|
tabStop: boolean;
|
|
1741
|
-
userProperties: import("@zeedhi/core").IDictionary
|
|
1759
|
+
userProperties: import("@zeedhi/core").IDictionary;
|
|
1742
1760
|
fillHeight: boolean;
|
|
1743
1761
|
} | undefined;
|
|
1744
1762
|
componentId: number;
|
|
1745
|
-
keyMap: import("@zeedhi/core").IKeyMap
|
|
1763
|
+
keyMap: import("@zeedhi/core").IKeyMap;
|
|
1746
1764
|
isFocused: boolean;
|
|
1747
1765
|
tabStop: boolean;
|
|
1748
1766
|
userProperties: import("@zeedhi/core").IDictionary<any>;
|
|
@@ -1751,21 +1769,21 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1751
1769
|
callEvent: (eventName: string, args: any) => boolean;
|
|
1752
1770
|
addChild: (child: import("@zeedhi/common").IComponent) => void;
|
|
1753
1771
|
removeChild: (name: string) => void;
|
|
1754
|
-
getChildInstance: <
|
|
1755
|
-
addChildInstance: (instance: import("@zeedhi/common").Component
|
|
1772
|
+
getChildInstance: <T>(name: string) => T;
|
|
1773
|
+
addChildInstance: (instance: import("@zeedhi/common").Component) => void;
|
|
1756
1774
|
onBeforeMount: () => void;
|
|
1757
1775
|
onMounted: (element: any) => void;
|
|
1758
1776
|
onBeforeDestroy: () => void;
|
|
1759
1777
|
onDestroyed: () => void;
|
|
1760
|
-
click: (event?: Event
|
|
1778
|
+
click: (event?: Event, element?: any) => void;
|
|
1761
1779
|
focus: (event: Event, element: any) => void;
|
|
1762
1780
|
blur: (event: Event, element: any) => void;
|
|
1763
|
-
mouseenter: (event?: Event
|
|
1764
|
-
mouseleave: (event?: Event
|
|
1765
|
-
mouseout: (event?: Event
|
|
1766
|
-
mouseover: (event?: Event
|
|
1781
|
+
mouseenter: (event?: Event, element?: any) => void;
|
|
1782
|
+
mouseleave: (event?: Event, element?: any) => void;
|
|
1783
|
+
mouseout: (event?: Event, element?: any) => void;
|
|
1784
|
+
mouseover: (event?: Event, element?: any) => void;
|
|
1767
1785
|
};
|
|
1768
|
-
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance
|
|
1786
|
+
root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
|
|
1769
1787
|
numberInput: (value: any) => void;
|
|
1770
1788
|
alterMask: (event: KeyboardEvent) => void;
|
|
1771
1789
|
getInputAutocompleteValue: () => "one-time-code" | "off";
|
|
@@ -1927,6 +1945,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1927
1945
|
validations: {
|
|
1928
1946
|
type: (ObjectConstructor | StringConstructor)[];
|
|
1929
1947
|
default: {};
|
|
1948
|
+
watch: boolean;
|
|
1930
1949
|
};
|
|
1931
1950
|
grid: {
|
|
1932
1951
|
default: {};
|
|
@@ -1941,16 +1960,20 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1941
1960
|
isArray(arg: any): arg is any[];
|
|
1942
1961
|
readonly prototype: any[];
|
|
1943
1962
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
1944
|
-
from<
|
|
1945
|
-
from<
|
|
1946
|
-
from<
|
|
1947
|
-
of<
|
|
1963
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
1964
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
1965
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
1966
|
+
of<T>(...items: T[]): T[];
|
|
1967
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
1968
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
1948
1969
|
readonly [Symbol.species]: ArrayConstructor;
|
|
1949
1970
|
})[];
|
|
1950
1971
|
default(): never[];
|
|
1972
|
+
watch: boolean;
|
|
1951
1973
|
};
|
|
1952
1974
|
component: {
|
|
1953
1975
|
type: StringConstructor;
|
|
1976
|
+
watch: boolean;
|
|
1954
1977
|
};
|
|
1955
1978
|
allowDuplicate: {
|
|
1956
1979
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -1975,10 +1998,12 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1975
1998
|
directives: {
|
|
1976
1999
|
type: ObjectConstructor;
|
|
1977
2000
|
default(): {};
|
|
2001
|
+
watch: boolean;
|
|
1978
2002
|
};
|
|
1979
2003
|
events: {
|
|
1980
2004
|
type: ObjectConstructor;
|
|
1981
2005
|
default(): {};
|
|
2006
|
+
watch: boolean;
|
|
1982
2007
|
};
|
|
1983
2008
|
instanceObject: {
|
|
1984
2009
|
type: ObjectConstructor;
|
|
@@ -1990,6 +2015,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
1990
2015
|
keyMap: {
|
|
1991
2016
|
type: ObjectConstructor;
|
|
1992
2017
|
default(): {};
|
|
2018
|
+
watch: boolean;
|
|
1993
2019
|
};
|
|
1994
2020
|
light: {
|
|
1995
2021
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -2001,6 +2027,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
2001
2027
|
};
|
|
2002
2028
|
parent: {
|
|
2003
2029
|
type: ObjectConstructor;
|
|
2030
|
+
watch: boolean;
|
|
2004
2031
|
};
|
|
2005
2032
|
tabStop: {
|
|
2006
2033
|
type: (BooleanConstructor | StringConstructor)[];
|
|
@@ -2011,6 +2038,7 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
2011
2038
|
};
|
|
2012
2039
|
}>> & Readonly<{}>, {
|
|
2013
2040
|
reverse: string | boolean;
|
|
2041
|
+
label: string;
|
|
2014
2042
|
allowDuplicate: string | boolean;
|
|
2015
2043
|
type: string;
|
|
2016
2044
|
autofocus: string | boolean;
|
|
@@ -2026,8 +2054,8 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
2026
2054
|
tabStop: string | boolean;
|
|
2027
2055
|
fillHeight: string | boolean;
|
|
2028
2056
|
value: string | number;
|
|
2029
|
-
label: string;
|
|
2030
2057
|
mask: Record<string, any>;
|
|
2058
|
+
placeholder: string;
|
|
2031
2059
|
color: string;
|
|
2032
2060
|
disabled: string | boolean;
|
|
2033
2061
|
appendIcon: string;
|
|
@@ -2044,7 +2072,6 @@ declare const numberInputComponent: import("vue").DefineComponent<import("vue").
|
|
|
2044
2072
|
hint: string;
|
|
2045
2073
|
maxLength: string | number;
|
|
2046
2074
|
persistentHint: string | boolean;
|
|
2047
|
-
placeholder: string;
|
|
2048
2075
|
readonly: string | boolean;
|
|
2049
2076
|
autoHintDetails: string | boolean;
|
|
2050
2077
|
showBorder: string | boolean;
|