@zeedhi/vuetify 3.0.10 → 3.0.11
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 +2031 -15671
- package/dist/zd-vuetify.min.css +5 -0
- package/dist/zd-vuetify.min.js +40 -0
- package/dist/zd-vuetify.mjs +26244 -0
- package/package.json +23 -16
- package/src/components/tooltip-overflow/ZdTooltipOverflow.vue +1 -1
- package/src/components/zd-button/ZdButton.vue +1 -1
- package/src/components/zd-carousel/ZdCarousel.vue +1 -0
- package/src/components/zd-checkbox/ZdCheckbox.vue +4 -0
- package/src/components/zd-component/ZdComponent.ts +1 -1
- package/src/components/zd-container/ZdContainer.vue +1 -1
- package/src/components/zd-currency/ZdCurrency.vue +1 -0
- package/src/components/zd-date-input/ZdDateInput.ts +3 -11
- package/src/components/zd-date-input/ZdDateInput.vue +3 -9
- package/src/components/zd-date-range/ZdDateRange.ts +2 -16
- package/src/components/zd-date-range/ZdDateRange.vue +3 -5
- package/src/components/zd-divider/ZdDivider.vue +1 -0
- package/src/components/zd-footer/ZdFooter.ts +3 -15
- package/src/components/zd-footer/ZdFooter.vue +5 -1
- package/src/components/zd-form/ZdForm.ts +1 -1
- package/src/components/zd-grid/cell/ZdGridCell.vue +1 -1
- package/src/components/zd-grid/column-header/ZdGridColumnHeader.ts +1 -1
- package/src/components/zd-grid-editable/cell/ZdGridEditableCell.vue +1 -1
- package/src/components/zd-header/ZdHeader.ts +3 -19
- package/src/components/zd-header/ZdHeader.vue +2 -0
- package/src/components/zd-icon/ZdIcon.vue +1 -0
- package/src/components/zd-image/ZdImage.vue +1 -0
- package/src/components/zd-increment/ZdIncrement.vue +1 -0
- package/src/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.vue +1 -0
- package/src/components/zd-iterable/zd-search/ZdSearch.vue +1 -0
- package/src/components/zd-iterable-component-render/ZdIterableComponentRender.vue +1 -1
- package/src/components/zd-login/ZdLogin.vue +1 -0
- package/src/components/zd-login/ZdLoginButton.vue +1 -0
- package/src/components/zd-menu/ZdMenu.ts +4 -2
- package/src/components/zd-menu/ZdMenuLink.vue +1 -1
- package/src/components/zd-menu/ZdMenuSeparator.vue +1 -1
- package/src/components/zd-modal/ZdModal.vue +6 -6
- package/src/components/zd-modal/ZdModalCloseButton.vue +1 -1
- package/src/components/zd-month/ZdMonth.vue +1 -0
- package/src/components/zd-password/ZdPassword.vue +1 -0
- package/src/components/zd-radio/ZdRadio.vue +14 -10
- package/src/components/zd-select-multiple/ZdSelectMultiple.ts +1 -1
- package/src/components/zd-switch/ZdSwitch.vue +41 -41
- package/src/components/zd-table/ZdTable.vue +1 -0
- package/src/components/zd-tabs/ZdTab.vue +1 -1
- package/src/components/zd-tabs/ZdTabItem.vue +1 -1
- package/src/components/zd-tabs/ZdTabs.vue +1 -1
- package/src/components/zd-tree/ZdTree.vue +2 -1
- package/src/composables/useDateKeydown.ts +190 -104
- package/src/index.ts +0 -2
- package/src/styles/_zd-input.scss +2 -0
- package/src/styles/index.scss +2 -2
- package/src/utils/logger/logger.ts +3 -1
- package/src/utils/mergeDictionaries.ts +1 -1
- package/src/utils/plugins/getIconPlugin.ts +21 -4
- package/types/components/tek-grid/TekGrid.ts.d.ts +7258 -0
- package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +129 -0
- package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +225 -0
- package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +2432 -0
- package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +2920 -0
- package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +32 -0
- package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +1892 -0
- package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +90 -0
- package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +87 -0
- package/types/components/tooltip-overflow/ZdTooltipOverflow.ts.d.ts +50 -0
- package/types/components/zd-activator-wrapper/ZdActivatorWrapper.ts.d.ts +25 -0
- package/types/components/zd-alert/ZdAlert.ts.d.ts +884 -0
- package/types/components/zd-badge/ZdBadge.ts.d.ts +624 -0
- package/types/components/zd-breadcrumbs/ZdBreadcrumbs.ts.d.ts +697 -0
- package/types/components/zd-button/ZdButton.ts.d.ts +1158 -0
- package/types/components/zd-button-group/ZdButtonGroup.ts.d.ts +785 -0
- package/types/components/zd-card/ZdCard.ts.d.ts +1028 -0
- package/types/components/zd-carousel/ZdCarousel.ts.d.ts +2007 -0
- package/types/components/zd-checkbox/ZdCheckbox.ts.d.ts +642 -0
- package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts.d.ts +2010 -0
- package/types/components/zd-chip/ZdChip.ts.d.ts +1256 -0
- package/types/components/zd-code-viewer/ZdCodeViewer.ts.d.ts +791 -0
- package/types/components/zd-col/ZdCol.ts.d.ts +741 -0
- package/types/components/zd-collapse-card/ZdCollapseCard.ts.d.ts +1583 -0
- package/types/components/zd-container/ZdContainer.ts.d.ts +722 -0
- package/types/components/zd-currency/ZdCurrency.ts.d.ts +2024 -0
- package/types/components/zd-date-input/ZdDateInput.ts.d.ts +960 -0
- package/types/components/zd-date-range/ZdDateRange.d.ts +5 -7
- package/types/components/zd-dialog/ZdDialog.ts.d.ts +262 -0
- package/types/components/zd-divider/ZdDivider.ts.d.ts +623 -0
- package/types/components/zd-dropdown/ZdDropdown.ts.d.ts +836 -0
- package/types/components/zd-footer/ZdFooter.ts.d.ts +1262 -0
- package/types/components/zd-form/ZdForm.ts.d.ts +118 -0
- package/types/components/zd-frame/ZdFrame.ts.d.ts +138 -0
- package/types/components/zd-frame-page/ZdFramePage.ts.d.ts +805 -0
- package/types/components/zd-grid/ZdGrid.ts.d.ts +7304 -0
- package/types/components/zd-grid/cell/ZdGridAction.ts.d.ts +14 -0
- package/types/components/zd-grid/cell/ZdGridCell.ts.d.ts +68 -0
- package/types/components/zd-grid/cell/ZdGridCellContent.ts.d.ts +58 -0
- package/types/components/zd-grid/cell/ZdGridCheckbox.ts.d.ts +53 -0
- package/types/components/zd-grid/column-header/ZdGridColumnHeader.ts.d.ts +112 -0
- package/types/components/zd-grid/column-header/ZdGridHeaderIcon.ts.d.ts +46 -0
- package/types/components/zd-grid/column-header/ZdGridHeaderRow.ts.d.ts +165 -0
- package/types/components/zd-grid/column-header/ZdGridSort.ts.d.ts +47 -0
- package/types/components/zd-grid/footer/ZdGridFooter.ts.d.ts +2087 -0
- package/types/components/zd-grid/helper/ZdGridHelper.ts.d.ts +16 -0
- package/types/components/zd-grid/row/TableRow.ts.d.ts +34 -0
- package/types/components/zd-grid/row/ZdGridRow.ts.d.ts +105 -0
- package/types/components/zd-grid/toolbar/ZdGridToolbar.ts.d.ts +2086 -0
- package/types/components/zd-grid-editable/ZdGridEditable.ts.d.ts +8663 -0
- package/types/components/zd-grid-editable/cell/ZdGridEditableCell.ts.d.ts +637 -0
- package/types/components/zd-grid-editable/row/ZdGridEditableRow.ts.d.ts +126 -0
- package/types/components/zd-header/ZdHeader.ts.d.ts +1320 -0
- package/types/components/zd-icon/ZdIcon.ts.d.ts +383 -0
- package/types/components/zd-image/ZdImage.ts.d.ts +753 -0
- package/types/components/zd-increment/ZdIncrement.ts.d.ts +2069 -0
- package/types/components/zd-iterable/ZdIterableNoData.ts.d.ts +2089 -0
- package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts.d.ts +1645 -0
- package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts.d.ts +1081 -0
- package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts.d.ts +2763 -0
- package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts.d.ts +1627 -0
- package/types/components/zd-iterable/zd-search/ZdSearch.ts.d.ts +766 -0
- package/types/components/zd-iterable-component-render/ZdIterableComponentRender.ts.d.ts +2484 -0
- package/types/components/zd-layout/ZdLayout.ts.d.ts +647 -0
- package/types/components/zd-list/ZdList.ts.d.ts +1140 -0
- package/types/components/zd-list/ZdListGroup.ts.d.ts +1332 -0
- package/types/components/zd-list/ZdListItem.ts.d.ts +848 -0
- package/types/components/zd-loading/ZdLoading.ts.d.ts +350 -0
- package/types/components/zd-login/ZdLogin.ts.d.ts +1072 -0
- package/types/components/zd-login/ZdLoginButton.ts.d.ts +1910 -0
- package/types/components/zd-main/ZdMain.ts.d.ts +619 -0
- package/types/components/zd-master-detail/ZdMasterDetail.ts.d.ts +684 -0
- package/types/components/zd-menu/ZdMenu.ts.d.ts +4484 -0
- package/types/components/zd-menu/ZdMenuButton.ts.d.ts +1142 -0
- package/types/components/zd-menu/ZdMenuGroup.ts.d.ts +6286 -0
- package/types/components/zd-menu/ZdMenuLink.ts.d.ts +10437 -0
- package/types/components/zd-menu/ZdMenuSeparator.ts.d.ts +600 -0
- package/types/components/zd-modal/ZdModal.ts.d.ts +10 -0
- package/types/components/zd-modal/ZdModalCloseButton.ts.d.ts +1137 -0
- package/types/components/zd-month/ZdMonth.d.ts +3 -4
- package/types/components/zd-month/ZdMonth.ts.d.ts +2217 -0
- package/types/components/zd-number-input/ZdNumberInput.ts.d.ts +2021 -0
- package/types/components/zd-password/ZdPassword.ts.d.ts +2014 -0
- package/types/components/zd-progress/ZdProgress.ts.d.ts +859 -0
- package/types/components/zd-radio/ZdRadio.ts.d.ts +682 -0
- package/types/components/zd-row/ZdRow.ts.d.ts +734 -0
- package/types/components/zd-select/ZdSelect.ts.d.ts +313 -0
- package/types/components/zd-select-multiple/ZdSelectMultiple.ts.d.ts +333 -0
- package/types/components/zd-svg-map/ZdSvgMap.ts.d.ts +414 -0
- package/types/components/zd-switch/ZdSwitch.ts.d.ts +1918 -0
- package/types/components/zd-table/ZdTable.ts.d.ts +1092 -0
- package/types/components/zd-tabs/ZdTab.ts.d.ts +674 -0
- package/types/components/zd-tabs/ZdTabItem.ts.d.ts +268 -0
- package/types/components/zd-tabs/ZdTabs.ts.d.ts +929 -0
- package/types/components/zd-tag/ZdTag.ts.d.ts +613 -0
- package/types/components/zd-text/ZdText.ts.d.ts +670 -0
- package/types/components/zd-text-input/ZdTextInput.ts.d.ts +746 -0
- package/types/components/zd-textarea/ZdTextarea.ts.d.ts +877 -0
- package/types/components/zd-time/ZdTime.d.ts +2 -2
- package/types/components/zd-time/ZdTime.ts.d.ts +2224 -0
- package/types/components/zd-tooltip/ZdTooltip.ts.d.ts +781 -0
- package/types/components/zd-tree/ZdTree.ts.d.ts +1878 -0
- package/types/components/zd-tree/ZdTreeAfterTitle.ts.d.ts +26 -0
- package/types/components/zd-tree/ZdTreeCheckbox.ts.d.ts +74 -0
- package/types/components/zd-tree-grid/ZdTreeGrid.ts.d.ts +4178 -0
- package/types/components/zd-tree-grid/cell/ZdTreeGridCell.ts.d.ts +92 -0
- package/types/components/zd-tree-grid/row/ZdTreeGridRow.ts.d.ts +124 -0
- package/types/composables/useDateKeydown.d.ts +1 -3
- package/vite.config.browser.ts +53 -0
- package/vite.config.lib.ts +42 -0
- package/dist/components/index.js +0 -275
- package/dist/components/tek-grid/TekGrid.js +0 -287
- package/dist/components/tek-grid/column-filter/TekGridColumnFilter.js +0 -201
- package/dist/components/tek-grid/column-header/TekGridHeaderRow.js +0 -134
- package/dist/components/tek-grid/columns-button/TekGridColumnsButton.js +0 -79
- package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsController.js +0 -416
- package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsModal.js +0 -501
- package/dist/components/tek-grid/filter-button/TekGridFilterButton.js +0 -36
- package/dist/components/tek-grid/indentation/TekGridIndentation.js +0 -20
- package/dist/components/tek-grid/layout-options/TekGridLayoutOptions.js +0 -101
- package/dist/components/tek-grid/row/TekGridFooterRow.js +0 -57
- package/dist/components/tek-grid/row/TekGridGroupRow.js +0 -58
- package/dist/components/tooltip-overflow/ZdTooltipOverflow.js +0 -56
- package/dist/components/zd-activator-wrapper/ZdActivatorWrapper.js +0 -33
- package/dist/components/zd-alert/ZdAlert.js +0 -112
- package/dist/components/zd-badge/ZdBadge.js +0 -28
- package/dist/components/zd-breadcrumbs/ZdBreadcrumbs.js +0 -55
- package/dist/components/zd-button/ZdButton.js +0 -230
- package/dist/components/zd-button-group/ZdButtonGroup.js +0 -110
- package/dist/components/zd-card/ZdCard.js +0 -132
- package/dist/components/zd-carousel/ZdCarousel.js +0 -242
- package/dist/components/zd-checkbox/ZdCheckbox.js +0 -35
- package/dist/components/zd-checkbox-multiple/ZdCheckboxMultiple.js +0 -62
- package/dist/components/zd-chip/ZdChip.js +0 -94
- package/dist/components/zd-code-viewer/ZdCodeViewer.js +0 -55
- package/dist/components/zd-code-viewer/prism.js +0 -14
- package/dist/components/zd-col/ZdCol.js +0 -45
- package/dist/components/zd-collapse-card/ZdCollapseCard.js +0 -85
- package/dist/components/zd-component/ZdComponent.js +0 -259
- package/dist/components/zd-component/ZdComponentRender.js +0 -14
- package/dist/components/zd-container/ZdContainer.js +0 -42
- package/dist/components/zd-currency/ZdCurrency.js +0 -24
- package/dist/components/zd-date-input/ZdDateInput.js +0 -184
- package/dist/components/zd-date-range/ZdDateRange.js +0 -189
- package/dist/components/zd-dialog/ZdDialog.js +0 -34
- package/dist/components/zd-divider/ZdDivider.js +0 -28
- package/dist/components/zd-dropdown/ZdDropdown.js +0 -93
- package/dist/components/zd-footer/ZdFooter.js +0 -77
- package/dist/components/zd-form/ZdForm.js +0 -85
- package/dist/components/zd-frame/ZdFrame.js +0 -76
- package/dist/components/zd-frame-page/ZdFramePage.js +0 -21
- package/dist/components/zd-grid/ZdGrid.js +0 -284
- package/dist/components/zd-grid/cell/ZdGridAction.js +0 -12
- package/dist/components/zd-grid/cell/ZdGridCell.js +0 -59
- package/dist/components/zd-grid/cell/ZdGridCellContent.js +0 -59
- package/dist/components/zd-grid/cell/ZdGridCheckbox.js +0 -38
- package/dist/components/zd-grid/column-header/ZdGridColumnHeader.js +0 -70
- package/dist/components/zd-grid/column-header/ZdGridHeaderIcon.js +0 -31
- package/dist/components/zd-grid/column-header/ZdGridHeaderRow.js +0 -102
- package/dist/components/zd-grid/column-header/ZdGridSort.js +0 -32
- package/dist/components/zd-grid/composables/grid-instance.js +0 -12
- package/dist/components/zd-grid/footer/ZdGridFooter.js +0 -16
- package/dist/components/zd-grid/helper/ZdGridHelper.js +0 -12
- package/dist/components/zd-grid/row/TableRow.js +0 -25
- package/dist/components/zd-grid/row/ZdGridRow.js +0 -70
- package/dist/components/zd-grid/toolbar/ZdGridToolbar.js +0 -15
- package/dist/components/zd-grid-editable/ZdGridEditable.js +0 -174
- package/dist/components/zd-grid-editable/cell/ZdGridEditableCell.js +0 -135
- package/dist/components/zd-grid-editable/row/ZdGridEditableRow.js +0 -99
- package/dist/components/zd-header/ZdHeader.js +0 -111
- package/dist/components/zd-icon/ZdIcon.js +0 -63
- package/dist/components/zd-image/ZdImage.js +0 -48
- package/dist/components/zd-increment/ZdIncrement.js +0 -38
- package/dist/components/zd-input/ZdInput.js +0 -164
- package/dist/components/zd-iterable/ZdIterable.js +0 -38
- package/dist/components/zd-iterable/ZdIterableNoData.js +0 -20
- package/dist/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.js +0 -50
- package/dist/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.js +0 -21
- package/dist/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.js +0 -55
- package/dist/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.js +0 -36
- package/dist/components/zd-iterable/zd-search/ZdSearch.js +0 -42
- package/dist/components/zd-iterable-component-render/ZdIterableComponentRender.js +0 -108
- package/dist/components/zd-layout/ZdLayout.js +0 -41
- package/dist/components/zd-list/ZdList.js +0 -84
- package/dist/components/zd-list/ZdListGroup.js +0 -38
- package/dist/components/zd-list/ZdListItem.js +0 -66
- package/dist/components/zd-loading/ZdLoading.js +0 -61
- package/dist/components/zd-login/ZdLogin.js +0 -68
- package/dist/components/zd-login/ZdLoginButton.js +0 -28
- package/dist/components/zd-main/ZdMain.js +0 -33
- package/dist/components/zd-master-detail/ZdMasterDetail.js +0 -48
- package/dist/components/zd-menu/ZdMenu.js +0 -302
- package/dist/components/zd-menu/ZdMenuButton.js +0 -42
- package/dist/components/zd-menu/ZdMenuGroup.js +0 -66
- package/dist/components/zd-menu/ZdMenuLink.js +0 -63
- package/dist/components/zd-menu/ZdMenuSeparator.js +0 -26
- package/dist/components/zd-modal/ZdModal.js +0 -123
- package/dist/components/zd-modal/ZdModalCloseButton.js +0 -36
- package/dist/components/zd-month/ZdMonth.js +0 -31
- package/dist/components/zd-number-input/ZdNumberInput.js +0 -84
- package/dist/components/zd-password/ZdPassword.js +0 -23
- package/dist/components/zd-progress/ZdProgress.js +0 -52
- package/dist/components/zd-radio/ZdRadio.js +0 -56
- package/dist/components/zd-row/ZdRow.js +0 -43
- package/dist/components/zd-select/ZdSelect.js +0 -191
- package/dist/components/zd-select-multiple/ZdSelectMultiple.js +0 -326
- package/dist/components/zd-svg-map/ZdSvgMap.js +0 -211
- package/dist/components/zd-switch/ZdSwitch.js +0 -39
- package/dist/components/zd-table/ZdTable.js +0 -42
- package/dist/components/zd-tabs/ZdTab.js +0 -89
- package/dist/components/zd-tabs/ZdTabItem.js +0 -17
- package/dist/components/zd-tabs/ZdTabs.js +0 -84
- package/dist/components/zd-tag/ZdTag.js +0 -34
- package/dist/components/zd-text/ZdText.js +0 -36
- package/dist/components/zd-text-input/ZdTextInput.js +0 -174
- package/dist/components/zd-textarea/ZdTextarea.js +0 -76
- package/dist/components/zd-time/ZdTime.js +0 -159
- package/dist/components/zd-toggleable/ZdToggleable.js +0 -13
- package/dist/components/zd-tooltip/ZdTooltip.js +0 -92
- package/dist/components/zd-tree/ZdTree.js +0 -315
- package/dist/components/zd-tree/ZdTreeAfterTitle.js +0 -17
- package/dist/components/zd-tree/ZdTreeCheckbox.js +0 -97
- package/dist/components/zd-tree-grid/ZdTreeGrid.js +0 -101
- package/dist/components/zd-tree-grid/cell/ZdTreeGridCell.js +0 -81
- package/dist/components/zd-tree-grid/row/ZdTreeGridRow.js +0 -85
- package/dist/composables/cellSelection.js +0 -37
- package/dist/composables/columnDrag.js +0 -82
- package/dist/composables/columnResize.js +0 -115
- package/dist/composables/density.js +0 -13
- package/dist/composables/doubleClick.js +0 -32
- package/dist/composables/fixedColumns.js +0 -106
- package/dist/composables/gridColorVars.js +0 -30
- package/dist/composables/gridColumns.js +0 -87
- package/dist/composables/gridSelection.js +0 -91
- package/dist/composables/gridSorting.js +0 -19
- package/dist/composables/hasSlot.js +0 -25
- package/dist/composables/index.js +0 -18
- package/dist/composables/maska.js +0 -36
- package/dist/composables/tableNavigation.js +0 -126
- package/dist/composables/useDateKeydown.js +0 -87
- package/dist/composables/useIsMobile.js +0 -8
- package/dist/composables/usePickerValue.js +0 -19
- package/dist/composables/useTableLayout.js +0 -212
- package/dist/composables/virtualScroll.js +0 -92
- package/dist/composables/watchUrl.js +0 -14
- package/dist/errors/index.js +0 -3
- package/dist/errors/not-provided.js +0 -11
- package/dist/errors/row-not-found.js +0 -9
- package/dist/errors/zeedhi-error.js +0 -8
- package/dist/index.js +0 -49
- package/dist/propsMixins/heightProps.js +0 -17
- package/dist/propsMixins/index.js +0 -3
- package/dist/propsMixins/interfaces.js +0 -1
- package/dist/propsMixins/widthProps.js +0 -13
- package/dist/utils/buildProps.js +0 -3
- package/dist/utils/fillHeight.js +0 -18
- package/dist/utils/icons/icons.js +0 -28
- package/dist/utils/index.js +0 -6
- package/dist/utils/isArrayOperation.js +0 -4
- package/dist/utils/logger/logger.js +0 -7
- package/dist/utils/mergeDictionaries.js +0 -22
- package/dist/utils/plugins/formatSizePlugin.js +0 -6
- package/dist/utils/plugins/getIconPlugin.js +0 -11
- package/dist/utils/plugins/index.js +0 -4
- package/dist/utils/plugins/styleObjectPlugin.js +0 -13
- package/dist/zd-vuetify.js +0 -62702
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { GridColumn } from '@zeedhi/common';
|
|
2
|
+
import { IDictionary } from '@zeedhi/core';
|
|
3
|
+
import { PropType } from 'vue';
|
|
4
|
+
import { GetActions } from '../../zd-grid/ZdGrid';
|
|
5
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
+
row: {
|
|
7
|
+
type: PropType<IDictionary<any>>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
column: {
|
|
11
|
+
type: PropType<GridColumn>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
cssClass: {
|
|
15
|
+
type: PropType<(string | IDictionary<boolean>)[]>;
|
|
16
|
+
default: () => never[];
|
|
17
|
+
};
|
|
18
|
+
cssStyle: {
|
|
19
|
+
type: PropType<IDictionary<any>[]>;
|
|
20
|
+
default: () => never[];
|
|
21
|
+
};
|
|
22
|
+
cellSelection: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
isCurrent: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
};
|
|
29
|
+
hasChildOnDemand: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
};
|
|
32
|
+
showExpandIcon: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
};
|
|
35
|
+
isFirstCell: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
};
|
|
38
|
+
}>, {
|
|
39
|
+
tabindex: import("vue").ComputedRef<"" | 0>;
|
|
40
|
+
click: (event: Event) => void;
|
|
41
|
+
focusin: (event: Event) => void;
|
|
42
|
+
conditionalProps: import("vue").ComputedRef<Partial<import("@zeedhi/common").IComponentRender>>;
|
|
43
|
+
getActions: GetActions;
|
|
44
|
+
getMergedConditionals: (propName: keyof GridColumn) => any;
|
|
45
|
+
expandIconClick: (event: Event) => void;
|
|
46
|
+
highlightSearchResult: (text: string) => string;
|
|
47
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focusin" | "click" | "expandIconClick")[], "focusin" | "click" | "expandIconClick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
+
row: {
|
|
49
|
+
type: PropType<IDictionary<any>>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
column: {
|
|
53
|
+
type: PropType<GridColumn>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
cssClass: {
|
|
57
|
+
type: PropType<(string | IDictionary<boolean>)[]>;
|
|
58
|
+
default: () => never[];
|
|
59
|
+
};
|
|
60
|
+
cssStyle: {
|
|
61
|
+
type: PropType<IDictionary<any>[]>;
|
|
62
|
+
default: () => never[];
|
|
63
|
+
};
|
|
64
|
+
cellSelection: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
isCurrent: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
};
|
|
71
|
+
hasChildOnDemand: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
};
|
|
74
|
+
showExpandIcon: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
};
|
|
77
|
+
isFirstCell: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
};
|
|
80
|
+
}>> & Readonly<{
|
|
81
|
+
onFocusin?: ((...args: any[]) => any) | undefined;
|
|
82
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
83
|
+
onExpandIconClick?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
}>, {
|
|
85
|
+
cssClass: (string | IDictionary<boolean>)[];
|
|
86
|
+
cssStyle: IDictionary<any>[];
|
|
87
|
+
isCurrent: boolean;
|
|
88
|
+
hasChildOnDemand: boolean;
|
|
89
|
+
showExpandIcon: boolean;
|
|
90
|
+
isFirstCell: boolean;
|
|
91
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
92
|
+
export default _default;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { GridColumn } from '@zeedhi/common';
|
|
2
|
+
import { IDictionary } from '@zeedhi/core';
|
|
3
|
+
import { PropType } from 'vue';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
isSelected: {
|
|
6
|
+
type: BooleanConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
isCurrentRow: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
selectable: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
selectionDisabled: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
cellSelection: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
isCurrent: {
|
|
26
|
+
type: PropType<(args: {
|
|
27
|
+
row: IDictionary;
|
|
28
|
+
column?: GridColumn;
|
|
29
|
+
}) => boolean>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
columns: {
|
|
33
|
+
type: PropType<GridColumn[]>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
row: {
|
|
37
|
+
type: PropType<IDictionary<any>>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
fixedLeft: {
|
|
41
|
+
type: PropType<IDictionary<any>>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
fixedRight: {
|
|
45
|
+
type: PropType<IDictionary<any>>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
indeterminate: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
hasChildOnDemand: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
};
|
|
55
|
+
}>, {
|
|
56
|
+
click: (event: Event) => void;
|
|
57
|
+
focusin: (event: Event, column?: GridColumn) => void;
|
|
58
|
+
checkboxClick: (event: Event) => void;
|
|
59
|
+
cellFocus: (event: Event, column: GridColumn) => void;
|
|
60
|
+
cellClick: (event: Event, column: GridColumn) => void;
|
|
61
|
+
expandIconClick: (event: Event) => void;
|
|
62
|
+
isFirstCell: (index: number) => boolean;
|
|
63
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "checkboxClick" | "focusin" | "cellFocus" | "cellClick" | "expandIconClick")[], "click" | "checkboxClick" | "focusin" | "cellFocus" | "cellClick" | "expandIconClick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
+
isSelected: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
isCurrentRow: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
required: true;
|
|
71
|
+
};
|
|
72
|
+
selectable: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
required: true;
|
|
75
|
+
};
|
|
76
|
+
selectionDisabled: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
required: true;
|
|
79
|
+
};
|
|
80
|
+
cellSelection: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
required: true;
|
|
83
|
+
};
|
|
84
|
+
isCurrent: {
|
|
85
|
+
type: PropType<(args: {
|
|
86
|
+
row: IDictionary;
|
|
87
|
+
column?: GridColumn;
|
|
88
|
+
}) => boolean>;
|
|
89
|
+
required: true;
|
|
90
|
+
};
|
|
91
|
+
columns: {
|
|
92
|
+
type: PropType<GridColumn[]>;
|
|
93
|
+
required: true;
|
|
94
|
+
};
|
|
95
|
+
row: {
|
|
96
|
+
type: PropType<IDictionary<any>>;
|
|
97
|
+
required: true;
|
|
98
|
+
};
|
|
99
|
+
fixedLeft: {
|
|
100
|
+
type: PropType<IDictionary<any>>;
|
|
101
|
+
required: true;
|
|
102
|
+
};
|
|
103
|
+
fixedRight: {
|
|
104
|
+
type: PropType<IDictionary<any>>;
|
|
105
|
+
required: true;
|
|
106
|
+
};
|
|
107
|
+
indeterminate: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
required: true;
|
|
110
|
+
};
|
|
111
|
+
hasChildOnDemand: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
};
|
|
114
|
+
}>> & Readonly<{
|
|
115
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
116
|
+
onCheckboxClick?: ((...args: any[]) => any) | undefined;
|
|
117
|
+
onFocusin?: ((...args: any[]) => any) | undefined;
|
|
118
|
+
onCellFocus?: ((...args: any[]) => any) | undefined;
|
|
119
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
|
120
|
+
onExpandIconClick?: ((...args: any[]) => any) | undefined;
|
|
121
|
+
}>, {
|
|
122
|
+
hasChildOnDemand: boolean;
|
|
123
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
124
|
+
export default _default;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
1
|
import { DateInput, DateRange } from '@zeedhi/common';
|
|
2
2
|
import { UnwrapNestedRefs } from 'vue';
|
|
3
|
-
export declare function useDateKeydown(instance: UnwrapNestedRefs<DateRange | DateInput
|
|
4
|
-
isMaskDelimiterFn: (value: string, position: number) => boolean;
|
|
5
|
-
}): void;
|
|
3
|
+
export declare function useDateKeydown(instance: UnwrapNestedRefs<DateRange | DateInput>): void;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { defineConfig } from 'vite';
|
|
2
|
+
import vue from '@vitejs/plugin-vue';
|
|
3
|
+
import path from 'path';
|
|
4
|
+
|
|
5
|
+
export default defineConfig({
|
|
6
|
+
plugins: [
|
|
7
|
+
vue(),
|
|
8
|
+
],
|
|
9
|
+
css: {
|
|
10
|
+
preprocessorOptions: {
|
|
11
|
+
scss: {
|
|
12
|
+
api: 'modern',
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
build: {
|
|
17
|
+
outDir: 'dist',
|
|
18
|
+
emptyOutDir: false,
|
|
19
|
+
minify: 'esbuild', // Minify for browser
|
|
20
|
+
lib: {
|
|
21
|
+
entry: path.resolve(__dirname, 'src/index.ts'),
|
|
22
|
+
name: 'ZdVuetify', // Global variable name (window.ZdVuetify)
|
|
23
|
+
formats: ['iife'],
|
|
24
|
+
fileName: () => 'zd-vuetify.min.js',
|
|
25
|
+
},
|
|
26
|
+
rollupOptions: {
|
|
27
|
+
external: [
|
|
28
|
+
'@zeedhi/common',
|
|
29
|
+
'@zeedhi/core',
|
|
30
|
+
'@zeedhi/vue',
|
|
31
|
+
'vue',
|
|
32
|
+
'vue-router',
|
|
33
|
+
'vuetify',
|
|
34
|
+
'vuetify/components',
|
|
35
|
+
'vuetify/directives',
|
|
36
|
+
],
|
|
37
|
+
output: {
|
|
38
|
+
// Global variables for browser
|
|
39
|
+
globals: {
|
|
40
|
+
'@zeedhi/core': 'ZdCore',
|
|
41
|
+
'@zeedhi/common': 'ZdCommon',
|
|
42
|
+
'@zeedhi/vue': 'ZdVue',
|
|
43
|
+
'vue': 'Vue',
|
|
44
|
+
'vue-router': 'VueRouter',
|
|
45
|
+
'vuetify': 'Vuetify',
|
|
46
|
+
'vuetify/components': 'Vuetify.components',
|
|
47
|
+
'vuetify/directives': 'Vuetify.directives',
|
|
48
|
+
},
|
|
49
|
+
assetFileNames: 'zd-vuetify.min.css', // CSS output name
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
});
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { defineConfig } from 'vite';
|
|
2
|
+
import vue from '@vitejs/plugin-vue';
|
|
3
|
+
import path from 'path';
|
|
4
|
+
|
|
5
|
+
export default defineConfig({
|
|
6
|
+
plugins: [
|
|
7
|
+
vue(),
|
|
8
|
+
],
|
|
9
|
+
css: {
|
|
10
|
+
preprocessorOptions: {
|
|
11
|
+
scss: {
|
|
12
|
+
api: 'modern',
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
build: {
|
|
17
|
+
outDir: 'dist',
|
|
18
|
+
emptyOutDir: true, // Wipes 'dist' before starting this build
|
|
19
|
+
minify: false, // Keep code readable
|
|
20
|
+
lib: {
|
|
21
|
+
entry: path.resolve(__dirname, 'src/index.ts'),
|
|
22
|
+
formats: ['es'],
|
|
23
|
+
fileName: () => 'zd-vuetify.mjs',
|
|
24
|
+
},
|
|
25
|
+
rollupOptions: {
|
|
26
|
+
// Library externals (don't bundle these)
|
|
27
|
+
external: [
|
|
28
|
+
'@zeedhi/common',
|
|
29
|
+
'@zeedhi/core',
|
|
30
|
+
'@zeedhi/vue',
|
|
31
|
+
'vue',
|
|
32
|
+
'vue-router',
|
|
33
|
+
'vuetify',
|
|
34
|
+
'vuetify/components',
|
|
35
|
+
'vuetify/directives',
|
|
36
|
+
],
|
|
37
|
+
output: {
|
|
38
|
+
assetFileNames: 'zd-vuetify.css', // CSS output name
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
});
|
package/dist/components/index.js
DELETED
|
@@ -1,275 +0,0 @@
|
|
|
1
|
-
import ZdTooltipOverflow from './tooltip-overflow/ZdTooltipOverflow.vue';
|
|
2
|
-
import ZdActivatorWrapper from './zd-activator-wrapper/ZdActivatorWrapper.vue';
|
|
3
|
-
import ZdAlert from './zd-alert/ZdAlert.vue';
|
|
4
|
-
import ZdBadge from './zd-badge/ZdBadge.vue';
|
|
5
|
-
import ZdBreadcrumbs from './zd-breadcrumbs/ZdBreadcrumbs.vue';
|
|
6
|
-
import ZdButtonGroup from './zd-button-group/ZdButtonGroup.vue';
|
|
7
|
-
import ZdButton from './zd-button/ZdButton.vue';
|
|
8
|
-
import ZdCard from './zd-card/ZdCard.vue';
|
|
9
|
-
import ZdCarousel from './zd-carousel/ZdCarousel.vue';
|
|
10
|
-
import ZdCheckboxMultiple from './zd-checkbox-multiple/ZdCheckboxMultiple.vue';
|
|
11
|
-
import ZdCheckbox from './zd-checkbox/ZdCheckbox.vue';
|
|
12
|
-
import ZdChip from './zd-chip/ZdChip.vue';
|
|
13
|
-
import ZdCodeViewer from './zd-code-viewer/ZdCodeViewer.vue';
|
|
14
|
-
import ZdCol from './zd-col/ZdCol.vue';
|
|
15
|
-
import ZdCollapseCard from './zd-collapse-card/ZdCollapseCard.vue';
|
|
16
|
-
import ZdContainer from './zd-container/ZdContainer.vue';
|
|
17
|
-
import ZdCurrency from './zd-currency/ZdCurrency.vue';
|
|
18
|
-
import ZdDateInput from './zd-date-input/ZdDateInput.vue';
|
|
19
|
-
import ZdDateRange from './zd-date-range/ZdDateRange.vue';
|
|
20
|
-
import ZdDialog from './zd-dialog/ZdDialog.vue';
|
|
21
|
-
import ZdDivider from './zd-divider/ZdDivider.vue';
|
|
22
|
-
import ZdDropdown from './zd-dropdown/ZdDropdown.vue';
|
|
23
|
-
import ZdFooter from './zd-footer/ZdFooter.vue';
|
|
24
|
-
import ZdForm from './zd-form/ZdForm.vue';
|
|
25
|
-
import ZdFramePage from './zd-frame-page/ZdFramePage.vue';
|
|
26
|
-
import ZdFrame from './zd-frame/ZdFrame.vue';
|
|
27
|
-
import ZdGridEditable from './zd-grid-editable/ZdGridEditable.vue';
|
|
28
|
-
import ZdGridEditableCell from './zd-grid-editable/cell/ZdGridEditableCell.vue';
|
|
29
|
-
import ZdGridEditableRow from './zd-grid-editable/row/ZdGridEditableRow.vue';
|
|
30
|
-
import ZdGrid from './zd-grid/ZdGrid.vue';
|
|
31
|
-
import ZdGridAction from './zd-grid/cell/ZdGridAction.vue';
|
|
32
|
-
import ZdGridCell from './zd-grid/cell/ZdGridCell.vue';
|
|
33
|
-
import ZdGridCellContent from './zd-grid/cell/ZdGridCellContent.vue';
|
|
34
|
-
import ZdGridCheckbox from './zd-grid/cell/ZdGridCheckbox.vue';
|
|
35
|
-
import ZdGridColumnHeader from './zd-grid/column-header/ZdGridColumnHeader.vue';
|
|
36
|
-
import ZdGridHeaderIcon from './zd-grid/column-header/ZdGridHeaderIcon.vue';
|
|
37
|
-
import ZdGridHeaderRow from './zd-grid/column-header/ZdGridHeaderRow.vue';
|
|
38
|
-
import ZdGridSort from './zd-grid/column-header/ZdGridSort.vue';
|
|
39
|
-
import ZdGridFooter from './zd-grid/footer/ZdGridFooter.vue';
|
|
40
|
-
import ZdGridHelper from './zd-grid/helper/ZdGridHelper.vue';
|
|
41
|
-
import TableRow from './zd-grid/row/TableRow.vue';
|
|
42
|
-
import ZdGridRow from './zd-grid/row/ZdGridRow.vue';
|
|
43
|
-
import ZdGridToolbar from './zd-grid/toolbar/ZdGridToolbar.vue';
|
|
44
|
-
import ZdHeader from './zd-header/ZdHeader.vue';
|
|
45
|
-
import ZdIcon from './zd-icon/ZdIcon.vue';
|
|
46
|
-
import ZdImage from './zd-image/ZdImage.vue';
|
|
47
|
-
import ZdIncrement from './zd-increment/ZdIncrement.vue';
|
|
48
|
-
import ZdIterableComponentRender from './zd-iterable-component-render/ZdIterableComponentRender.vue';
|
|
49
|
-
import ZdIterableNoData from './zd-iterable/ZdIterableNoData.vue';
|
|
50
|
-
import ZdIterableColumnsButton from './zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.vue';
|
|
51
|
-
import ZdIterablePageInfo from './zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.vue';
|
|
52
|
-
import ZdIterablePageSize from './zd-iterable/zd-iterable-page-size/ZdIterablePageSize.vue';
|
|
53
|
-
import ZdIterablePagination from './zd-iterable/zd-iterable-pagination/ZdIterablePagination.vue';
|
|
54
|
-
import ZdSearch from './zd-iterable/zd-search/ZdSearch.vue';
|
|
55
|
-
import ZdLayout from './zd-layout/ZdLayout.vue';
|
|
56
|
-
import ZdList from './zd-list/ZdList.vue';
|
|
57
|
-
import ZdListGroup from './zd-list/ZdListGroup.vue';
|
|
58
|
-
import ZdListItem from './zd-list/ZdListItem.vue';
|
|
59
|
-
import ZdLoading from './zd-loading/ZdLoading.vue';
|
|
60
|
-
import ZdLogin from './zd-login/ZdLogin.vue';
|
|
61
|
-
import ZdLoginButton from './zd-login/ZdLoginButton.vue';
|
|
62
|
-
import ZdMain from './zd-main/ZdMain.vue';
|
|
63
|
-
import ZdMasterDetail from './zd-master-detail/ZdMasterDetail.vue';
|
|
64
|
-
import ZdMenu from './zd-menu/ZdMenu.vue';
|
|
65
|
-
import ZdMenuButton from './zd-menu/ZdMenuButton.vue';
|
|
66
|
-
import ZdMenuGroup from './zd-menu/ZdMenuGroup.vue';
|
|
67
|
-
import ZdMenuLink from './zd-menu/ZdMenuLink.vue';
|
|
68
|
-
import ZdMenuSeparator from './zd-menu/ZdMenuSeparator.vue';
|
|
69
|
-
import ZdModal from './zd-modal/ZdModal.vue';
|
|
70
|
-
import ZdModalCloseButton from './zd-modal/ZdModalCloseButton.vue';
|
|
71
|
-
import ZdMonth from './zd-month/ZdMonth.vue';
|
|
72
|
-
import ZdNumberInput from './zd-number-input/ZdNumberInput.vue';
|
|
73
|
-
import ZdPassword from './zd-password/ZdPassword.vue';
|
|
74
|
-
import ZdProgress from './zd-progress/ZdProgress.vue';
|
|
75
|
-
import ZdRadio from './zd-radio/ZdRadio.vue';
|
|
76
|
-
import ZdRow from './zd-row/ZdRow.vue';
|
|
77
|
-
import ZdSelectMultiple from './zd-select-multiple/ZdSelectMultiple.vue';
|
|
78
|
-
import ZdSelect from './zd-select/ZdSelect.vue';
|
|
79
|
-
import ZdSvgMap from './zd-svg-map/ZdSvgMap.vue';
|
|
80
|
-
import ZdSwitch from './zd-switch/ZdSwitch.vue';
|
|
81
|
-
import ZdTable from './zd-table/ZdTable.vue';
|
|
82
|
-
import ZdTab from './zd-tabs/ZdTab.vue';
|
|
83
|
-
import ZdTabItem from './zd-tabs/ZdTabItem.vue';
|
|
84
|
-
import ZdTabs from './zd-tabs/ZdTabs.vue';
|
|
85
|
-
import ZdTag from './zd-tag/ZdTag.vue';
|
|
86
|
-
import ZdTextInput from './zd-text-input/ZdTextInput.vue';
|
|
87
|
-
import ZdText from './zd-text/ZdText.vue';
|
|
88
|
-
import ZdTextarea from './zd-textarea/ZdTextarea.vue';
|
|
89
|
-
import ZdTime from './zd-time/ZdTime.vue';
|
|
90
|
-
import ZdTooltip from './zd-tooltip/ZdTooltip.vue';
|
|
91
|
-
import ZdTreeGrid from './zd-tree-grid/ZdTreeGrid.vue';
|
|
92
|
-
import ZdTreeGridCell from './zd-tree-grid/cell/ZdTreeGridCell.vue';
|
|
93
|
-
import ZdTreeGridRow from './zd-tree-grid/row/ZdTreeGridRow.vue';
|
|
94
|
-
import ZdTree from './zd-tree/ZdTree.vue';
|
|
95
|
-
import ZdTreeAfterTitle from './zd-tree/ZdTreeAfterTitle.vue';
|
|
96
|
-
import ZdTreeCheckbox from './zd-tree/ZdTreeCheckbox.vue';
|
|
97
|
-
export * from './zd-component/ZdComponent';
|
|
98
|
-
export * from './zd-component/ZdComponentRender';
|
|
99
|
-
export * from './zd-chip/ZdChip';
|
|
100
|
-
export * from './zd-alert/ZdAlert';
|
|
101
|
-
export * from './zd-activator-wrapper/ZdActivatorWrapper';
|
|
102
|
-
export * from './zd-breadcrumbs/ZdBreadcrumbs';
|
|
103
|
-
export * from './zd-badge/ZdBadge';
|
|
104
|
-
export * from './zd-button/ZdButton';
|
|
105
|
-
export * from './zd-button-group/ZdButtonGroup';
|
|
106
|
-
export * from './zd-card/ZdCard';
|
|
107
|
-
export * from './zd-carousel/ZdCarousel';
|
|
108
|
-
export * from './zd-checkbox/ZdCheckbox';
|
|
109
|
-
export * from './zd-code-viewer/ZdCodeViewer';
|
|
110
|
-
export * from './zd-col/ZdCol';
|
|
111
|
-
export * from './zd-container/ZdContainer';
|
|
112
|
-
export * from './zd-date-input/ZdDateInput';
|
|
113
|
-
export * from './zd-divider/ZdDivider';
|
|
114
|
-
export * from './zd-form/ZdForm';
|
|
115
|
-
export * from './zd-footer/ZdFooter';
|
|
116
|
-
export * from './zd-frame-page/ZdFramePage';
|
|
117
|
-
export * from './zd-frame/ZdFrame';
|
|
118
|
-
export * from './zd-header/ZdHeader';
|
|
119
|
-
export * from './zd-icon/ZdIcon';
|
|
120
|
-
export * from './zd-image/ZdImage';
|
|
121
|
-
export * from './zd-iterable/ZdIterable';
|
|
122
|
-
export * from './zd-layout/ZdLayout';
|
|
123
|
-
export * from './zd-main/ZdMain';
|
|
124
|
-
export * from './zd-menu/ZdMenu';
|
|
125
|
-
export * from './zd-menu/ZdMenuButton';
|
|
126
|
-
export * from './zd-menu/ZdMenuGroup';
|
|
127
|
-
export * from './zd-menu/ZdMenuLink';
|
|
128
|
-
export * from './zd-menu/ZdMenuSeparator';
|
|
129
|
-
export * from './zd-radio/ZdRadio';
|
|
130
|
-
export * from './zd-row/ZdRow';
|
|
131
|
-
export * from './zd-table/ZdTable';
|
|
132
|
-
export * from './zd-tabs/ZdTab';
|
|
133
|
-
export * from './zd-tabs/ZdTabItem';
|
|
134
|
-
export * from './zd-tabs/ZdTabs';
|
|
135
|
-
export * from './zd-tag/ZdTag';
|
|
136
|
-
export * from './zd-text/ZdText';
|
|
137
|
-
export * from './zd-input/ZdInput';
|
|
138
|
-
export * from './zd-text-input/ZdTextInput';
|
|
139
|
-
export * from './zd-loading/ZdLoading';
|
|
140
|
-
export * from './zd-login/ZdLogin';
|
|
141
|
-
export * from './zd-login/ZdLoginButton';
|
|
142
|
-
export * from './zd-switch/ZdSwitch';
|
|
143
|
-
export * from './zd-textarea/ZdTextarea';
|
|
144
|
-
export * from './zd-tooltip/ZdTooltip';
|
|
145
|
-
export * from './zd-dropdown/ZdDropdown';
|
|
146
|
-
export * from './zd-select/ZdSelect';
|
|
147
|
-
export * from './zd-select-multiple/ZdSelectMultiple';
|
|
148
|
-
export * from './zd-dialog/ZdDialog';
|
|
149
|
-
export * from './zd-password/ZdPassword';
|
|
150
|
-
export * from './zd-modal/ZdModal';
|
|
151
|
-
export * from './zd-modal/ZdModalCloseButton';
|
|
152
|
-
export * from './zd-number-input/ZdNumberInput';
|
|
153
|
-
export * from './zd-list/ZdList';
|
|
154
|
-
export * from './zd-list/ZdListItem';
|
|
155
|
-
export * from './zd-grid/ZdGrid';
|
|
156
|
-
export * from './zd-collapse-card/ZdCollapseCard';
|
|
157
|
-
export * from './zd-grid-editable/ZdGridEditable';
|
|
158
|
-
export * from './zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton';
|
|
159
|
-
export * from './zd-progress/ZdProgress';
|
|
160
|
-
export * from './zd-svg-map/ZdSvgMap';
|
|
161
|
-
export * from './zd-checkbox-multiple/ZdCheckboxMultiple';
|
|
162
|
-
export * from './zd-master-detail/ZdMasterDetail';
|
|
163
|
-
export * from './zd-currency/ZdCurrency';
|
|
164
|
-
export * from './zd-time/ZdTime';
|
|
165
|
-
export * from './zd-month/ZdMonth';
|
|
166
|
-
export * from './zd-tree/ZdTree';
|
|
167
|
-
export * from './zd-tree/ZdTreeCheckbox';
|
|
168
|
-
export * from './zd-tree/ZdTreeAfterTitle';
|
|
169
|
-
export * from './zd-increment/ZdIncrement';
|
|
170
|
-
export * from './zd-currency/ZdCurrency';
|
|
171
|
-
export * from './zd-month/ZdMonth';
|
|
172
|
-
export * from './zd-date-range/ZdDateRange';
|
|
173
|
-
export const components = {
|
|
174
|
-
ZdAlert,
|
|
175
|
-
ZdActivatorWrapper,
|
|
176
|
-
ZdBreadcrumbs,
|
|
177
|
-
ZdBadge,
|
|
178
|
-
ZdButton,
|
|
179
|
-
ZdButtonGroup,
|
|
180
|
-
ZdCard,
|
|
181
|
-
ZdCarousel,
|
|
182
|
-
ZdCheckbox,
|
|
183
|
-
ZdContainer,
|
|
184
|
-
ZdDateInput,
|
|
185
|
-
ZdDialog,
|
|
186
|
-
ZdDivider,
|
|
187
|
-
ZdForm,
|
|
188
|
-
ZdChip,
|
|
189
|
-
ZdFooter,
|
|
190
|
-
ZdFrame,
|
|
191
|
-
ZdFramePage,
|
|
192
|
-
ZdCodeViewer,
|
|
193
|
-
ZdCol,
|
|
194
|
-
ZdHeader,
|
|
195
|
-
ZdIcon,
|
|
196
|
-
ZdImage,
|
|
197
|
-
ZdIterableComponentRender,
|
|
198
|
-
ZdLayout,
|
|
199
|
-
ZdMain,
|
|
200
|
-
ZdTable,
|
|
201
|
-
ZdTab,
|
|
202
|
-
ZdTabs,
|
|
203
|
-
ZdTabItem,
|
|
204
|
-
ZdMenu,
|
|
205
|
-
ZdMenuButton,
|
|
206
|
-
ZdMenuGroup,
|
|
207
|
-
ZdMenuLink,
|
|
208
|
-
ZdMenuSeparator,
|
|
209
|
-
ZdTag,
|
|
210
|
-
ZdText,
|
|
211
|
-
ZdRadio,
|
|
212
|
-
ZdRow,
|
|
213
|
-
ZdTextInput,
|
|
214
|
-
ZdTextarea,
|
|
215
|
-
ZdLoading,
|
|
216
|
-
ZdLogin,
|
|
217
|
-
ZdLoginButton,
|
|
218
|
-
ZdSwitch,
|
|
219
|
-
ZdTooltip,
|
|
220
|
-
ZdDropdown,
|
|
221
|
-
ZdSelect,
|
|
222
|
-
ZdSelectMultiple,
|
|
223
|
-
ZdPassword,
|
|
224
|
-
ZdModal,
|
|
225
|
-
ZdNumberInput,
|
|
226
|
-
ZdModalCloseButton,
|
|
227
|
-
ZdList,
|
|
228
|
-
ZdListItem,
|
|
229
|
-
ZdListGroup,
|
|
230
|
-
ZdGrid,
|
|
231
|
-
ZdGridColumnHeader,
|
|
232
|
-
ZdGridHelper,
|
|
233
|
-
ZdGridSort,
|
|
234
|
-
ZdGridHeaderRow,
|
|
235
|
-
ZdGridToolbar,
|
|
236
|
-
ZdIterableNoData,
|
|
237
|
-
ZdGridFooter,
|
|
238
|
-
ZdGridCell,
|
|
239
|
-
ZdGridCellContent,
|
|
240
|
-
ZdGridAction,
|
|
241
|
-
ZdTooltipOverflow,
|
|
242
|
-
ZdGridHeaderIcon,
|
|
243
|
-
ZdGridCheckbox,
|
|
244
|
-
ZdSearch,
|
|
245
|
-
ZdIterablePagination,
|
|
246
|
-
ZdIterablePageSize,
|
|
247
|
-
ZdIterablePageInfo,
|
|
248
|
-
ZdIterableColumnsButton,
|
|
249
|
-
ZdGridRow,
|
|
250
|
-
TableRow,
|
|
251
|
-
ZdGridEditable,
|
|
252
|
-
ZdGridEditableRow,
|
|
253
|
-
ZdGridEditableCell,
|
|
254
|
-
ZdTreeGrid,
|
|
255
|
-
ZdTreeGridCell,
|
|
256
|
-
ZdTreeGridRow,
|
|
257
|
-
ZdCollapseCard,
|
|
258
|
-
ZdProgress,
|
|
259
|
-
ZdSvgMap,
|
|
260
|
-
ZdCheckboxMultiple,
|
|
261
|
-
ZdMasterDetail,
|
|
262
|
-
ZdCurrency,
|
|
263
|
-
ZdMonth,
|
|
264
|
-
ZdTime,
|
|
265
|
-
ZdTree,
|
|
266
|
-
ZdTreeCheckbox,
|
|
267
|
-
ZdTreeAfterTitle,
|
|
268
|
-
ZdIncrement,
|
|
269
|
-
ZdDateRange,
|
|
270
|
-
};
|
|
271
|
-
export function RegisterComponents(app) {
|
|
272
|
-
for (const name in components) {
|
|
273
|
-
app.component(name, components[name]);
|
|
274
|
-
}
|
|
275
|
-
}
|