@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
package/dist/zd-vuetify.css
CHANGED
|
@@ -18008,15 +18008,19 @@ html.overflow-y-hidden {
|
|
|
18008
18008
|
}
|
|
18009
18009
|
.zd-tooltip-overflow--clamp-2 {
|
|
18010
18010
|
-webkit-line-clamp: 2;
|
|
18011
|
+
line-clamp: 2;
|
|
18011
18012
|
}
|
|
18012
18013
|
.zd-tooltip-overflow--clamp-3 {
|
|
18013
18014
|
-webkit-line-clamp: 3;
|
|
18015
|
+
line-clamp: 3;
|
|
18014
18016
|
}
|
|
18015
18017
|
.zd-tooltip-overflow--clamp-4 {
|
|
18016
18018
|
-webkit-line-clamp: 4;
|
|
18019
|
+
line-clamp: 4;
|
|
18017
18020
|
}
|
|
18018
18021
|
.zd-tooltip-overflow--clamp-5 {
|
|
18019
18022
|
-webkit-line-clamp: 5;
|
|
18023
|
+
line-clamp: 5;
|
|
18020
18024
|
}
|
|
18021
18025
|
.zd-tooltip-overflow--ellipsis {
|
|
18022
18026
|
overflow: hidden;
|
|
@@ -18187,32 +18191,32 @@ button.v-btn.zd-button .v-btn__content .v-icon--left {
|
|
|
18187
18191
|
a.v-btn.zd-button .v-btn__content .v-icon--right,
|
|
18188
18192
|
button.v-btn.zd-button .v-btn__content .v-icon--right {
|
|
18189
18193
|
margin-left: var(--spacing-1);
|
|
18190
|
-
}.zd-card {
|
|
18191
|
-
padding: var(--spacing-4)
|
|
18194
|
+
}.v-card.zd-card {
|
|
18195
|
+
padding: var(--spacing-4);
|
|
18192
18196
|
overflow: auto;
|
|
18193
18197
|
}
|
|
18194
|
-
.zd-card::before {
|
|
18198
|
+
.v-card.zd-card::before {
|
|
18195
18199
|
content: none;
|
|
18196
18200
|
}
|
|
18197
|
-
.zd-card:not(.zd-card--link) {
|
|
18201
|
+
.v-card.zd-card:not(.zd-card--link) {
|
|
18198
18202
|
cursor: auto;
|
|
18199
18203
|
}
|
|
18200
|
-
.zd-card.v-sheet.v-card {
|
|
18204
|
+
.v-card.zd-card.v-sheet.v-card {
|
|
18201
18205
|
border-radius: var(--border);
|
|
18202
18206
|
}
|
|
18203
|
-
.zd-card.v-sheet.v-card:not(.v-sheet--outlined) {
|
|
18207
|
+
.v-card.zd-card.v-sheet.v-card:not(.v-sheet--outlined) {
|
|
18204
18208
|
box-shadow: var(--shadow-3);
|
|
18205
18209
|
}
|
|
18206
|
-
.zd-card.v-sheet.v-card:not(.v-sheet--outlined).v-card--raised {
|
|
18210
|
+
.v-card.zd-card.v-sheet.v-card:not(.v-sheet--outlined).v-card--raised {
|
|
18207
18211
|
box-shadow: var(--shadow-9);
|
|
18208
18212
|
}
|
|
18209
|
-
.zd-card.v-sheet.v-card--hover:focus, .zd-card.v-sheet.v-card--hover:hover {
|
|
18213
|
+
.v-card.zd-card.v-sheet.v-card--hover:focus, .v-card.zd-card.v-sheet.v-card--hover:hover {
|
|
18210
18214
|
box-shadow: var(--shadow-5);
|
|
18211
18215
|
}
|
|
18212
|
-
.zd-card.v-sheet.v-card.v-sheet--outlined {
|
|
18216
|
+
.v-card.zd-card.v-sheet.v-card.v-sheet--outlined {
|
|
18213
18217
|
border: var(--regular) solid var(--v-secondary-base);
|
|
18214
18218
|
}
|
|
18215
|
-
.zd-card.v-card--variant-elevated.v-theme--dark {
|
|
18219
|
+
.v-card.zd-card.v-card--variant-elevated.v-theme--dark {
|
|
18216
18220
|
border: solid 1px #333;
|
|
18217
18221
|
}
|
|
18218
18222
|
.v-card:hover > .v-card__overlay {
|
|
@@ -18645,6 +18649,9 @@ li.carousel__slide {
|
|
|
18645
18649
|
}.zd-checkbox.v-input {
|
|
18646
18650
|
height: fit-content;
|
|
18647
18651
|
}
|
|
18652
|
+
.zd-checkbox.v-input .v-selection-control {
|
|
18653
|
+
min-height: 28px !important;
|
|
18654
|
+
}
|
|
18648
18655
|
.zd-checkbox .v-label {
|
|
18649
18656
|
font-weight: var(--zd-font-body1-weight);
|
|
18650
18657
|
color: var(--zd-font-color);
|
|
@@ -19138,7 +19145,7 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19138
19145
|
white-space: unset;
|
|
19139
19146
|
overflow: auto;
|
|
19140
19147
|
text-overflow: unset;
|
|
19141
|
-
padding: 2px;
|
|
19148
|
+
padding: 2px !important;
|
|
19142
19149
|
}
|
|
19143
19150
|
.zd-dropdown-hover:hover {
|
|
19144
19151
|
background-color: var(--v-grey-lighten5);
|
|
@@ -19207,6 +19214,7 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19207
19214
|
transform: translateX(-50%);
|
|
19208
19215
|
}.zd-grid__cell .zd-grid-editable__cell-content {
|
|
19209
19216
|
height: 100%;
|
|
19217
|
+
width: 100%;
|
|
19210
19218
|
align-content: center;
|
|
19211
19219
|
display: flex;
|
|
19212
19220
|
flex-direction: row;
|
|
@@ -19267,7 +19275,7 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19267
19275
|
--v-table-header-height: 24px !important;
|
|
19268
19276
|
}
|
|
19269
19277
|
.zd-grid.v-table--density-compact .zd-grid__checkbox .v-icon {
|
|
19270
|
-
font-size:
|
|
19278
|
+
font-size: 1.25rem;
|
|
19271
19279
|
}
|
|
19272
19280
|
.zd-grid.v-table--density-compact .zd-grid__checkbox .v-checkbox-btn {
|
|
19273
19281
|
min-height: unset;
|
|
@@ -19599,6 +19607,9 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19599
19607
|
font-size: var(--zd-font-body3-size) !important;
|
|
19600
19608
|
font-weight: var(--zd-font-body3-weight) !important;
|
|
19601
19609
|
}
|
|
19610
|
+
.zd-list .v-list-item__content {
|
|
19611
|
+
flex: 1 1;
|
|
19612
|
+
}
|
|
19602
19613
|
.v-list-item__spacer {
|
|
19603
19614
|
width: 5px !important;
|
|
19604
19615
|
}.zd-list-group .group-list {
|
|
@@ -19612,24 +19623,19 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19612
19623
|
}
|
|
19613
19624
|
.rotate-icon.rotate-180 {
|
|
19614
19625
|
transform: rotate(-180deg);
|
|
19615
|
-
}.zd-loading
|
|
19616
|
-
font-size: var(--zd-font-headline-size);
|
|
19617
|
-
margin-top: 15px;
|
|
19618
|
-
}
|
|
19619
|
-
.zd-loading .v-overlay {
|
|
19626
|
+
}.zd-loading {
|
|
19620
19627
|
justify-content: center;
|
|
19621
19628
|
align-items: center;
|
|
19622
19629
|
}
|
|
19630
|
+
.zd-loading__text {
|
|
19631
|
+
font-size: var(--zd-font-headline-size);
|
|
19632
|
+
margin-top: 15px;
|
|
19633
|
+
}
|
|
19623
19634
|
.zd-loading .center-div {
|
|
19624
19635
|
display: flex;
|
|
19625
19636
|
align-items: center;
|
|
19626
19637
|
justify-content: center;
|
|
19627
19638
|
flex-flow: column;
|
|
19628
|
-
}
|
|
19629
|
-
.zd-loading .zd-loading .zd-loading-progress > svg,
|
|
19630
|
-
.zd-loading .zd-loading .zd-loading-progress > svg .v-progress-circular__overlay {
|
|
19631
|
-
-webkit-animation-play-state: running !important;
|
|
19632
|
-
animation-play-state: running !important;
|
|
19633
19639
|
}.container {
|
|
19634
19640
|
display: flex;
|
|
19635
19641
|
justify-content: flex-start;
|
|
@@ -19844,10 +19850,10 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19844
19850
|
.zd-menu.v-navigation-drawer--is-mobile div > .zd-menu-top-slot {
|
|
19845
19851
|
display: block !important;
|
|
19846
19852
|
}
|
|
19847
|
-
.zd-menu.theme--dark .v-list .v-list-item .v-list-item-title {
|
|
19853
|
+
.zd-menu.theme--dark .v-list .v-list-item .v-list-item-title, .zd-menu.v-theme--dark .v-list .v-list-item .v-list-item-title {
|
|
19848
19854
|
color: rgba(var(--v-theme-grey-lighten-5));
|
|
19849
19855
|
}
|
|
19850
|
-
.zd-menu.theme--dark .v-list .v-list-item .v-list-item__prepend .v-icon {
|
|
19856
|
+
.zd-menu.theme--dark .v-list .v-list-item .v-list-item__prepend .v-icon, .zd-menu.v-theme--dark .v-list .v-list-item .v-list-item__prepend .v-icon {
|
|
19851
19857
|
color: rgba(var(--v-theme-grey-lighten-5));
|
|
19852
19858
|
}.zd-menu-group .v-list-group__header .v-list-group__header__prepend-icon {
|
|
19853
19859
|
margin-right: var(--zd-default-padding);
|
|
@@ -19904,37 +19910,12 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19904
19910
|
.zd-modal .zd-footer-slot {
|
|
19905
19911
|
padding: 0px !important;
|
|
19906
19912
|
}
|
|
19907
|
-
.v-dialog .v-overlay__content .v-card .v-card-text {
|
|
19908
|
-
padding: 0px !important;
|
|
19909
|
-
}
|
|
19910
19913
|
.v-overlay.v-dialog > .v-overlay__content {
|
|
19911
19914
|
flex-direction: row;
|
|
19912
19915
|
justify-content: center;
|
|
19913
19916
|
max-width: none;
|
|
19914
|
-
}
|
|
19915
|
-
|
|
19916
|
-
padding: var(--zd-default-padding);
|
|
19917
|
-
padding-bottom: 0px;
|
|
19918
|
-
font-size: var(--zd-font-title-size);
|
|
19919
|
-
font-weight: var(--zd-font-title-weight);
|
|
19920
|
-
color: var(--zd-font-color);
|
|
19921
|
-
}
|
|
19922
|
-
.zd-modal-content > .zd-modal-card > .zd-modal-card-text {
|
|
19923
|
-
padding: var(--zd-default-padding);
|
|
19924
|
-
display: flex;
|
|
19925
|
-
flex: 1 1 auto;
|
|
19926
|
-
}
|
|
19927
|
-
.zd-modal-content .zd-modal-content > .zd-modal-card > .zd-modal-title {
|
|
19928
|
-
padding: var(--zd-default-padding);
|
|
19929
|
-
padding-bottom: 0px;
|
|
19930
|
-
font-size: var(--zd-font-title-size);
|
|
19931
|
-
font-weight: var(--zd-font-title-weight);
|
|
19932
|
-
color: var(--zd-font-color);
|
|
19933
|
-
}
|
|
19934
|
-
.zd-modal-content .zd-modal-content > .zd-modal-card > .zd-modal-card-text {
|
|
19935
|
-
padding: var(--zd-default-padding);
|
|
19936
|
-
display: flex;
|
|
19937
|
-
flex: 1 1 auto;
|
|
19917
|
+
}.zd-modal-card-text {
|
|
19918
|
+
padding: 0px !important;
|
|
19938
19919
|
}.zd-radio.v-input {
|
|
19939
19920
|
height: fit-content;
|
|
19940
19921
|
}
|
|
@@ -19992,9 +19973,6 @@ div.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {
|
|
|
19992
19973
|
}.zd-select .v-field {
|
|
19993
19974
|
font-size: var(--zd-font-body1-size);
|
|
19994
19975
|
}
|
|
19995
|
-
.zd-select .v-label {
|
|
19996
|
-
opacity: 1;
|
|
19997
|
-
}
|
|
19998
19976
|
.zd-select.zd-dense .v-field__input {
|
|
19999
19977
|
min-height: 22px;
|
|
20000
19978
|
padding: 0;
|
|
@@ -20090,6 +20068,7 @@ table.zd-table, .zd-table tr, .zd-table td, .zd-table th {
|
|
|
20090
20068
|
}
|
|
20091
20069
|
.zd-tabs-tab-item > .v-container {
|
|
20092
20070
|
padding: 0;
|
|
20071
|
+
height: 100%;
|
|
20093
20072
|
}
|
|
20094
20073
|
.zd-tabs .zd-tabs-tab-item {
|
|
20095
20074
|
height: 100%;
|
|
@@ -20123,12 +20102,19 @@ table.zd-table, .zd-table tr, .zd-table td, .zd-table th {
|
|
|
20123
20102
|
}
|
|
20124
20103
|
.zd-tabs .v-tabs {
|
|
20125
20104
|
flex-grow: 0;
|
|
20105
|
+
flex-shrink: 0;
|
|
20126
20106
|
}
|
|
20127
|
-
.zd-tabs .v-
|
|
20107
|
+
.zd-tabs .v-window {
|
|
20128
20108
|
flex-grow: 1;
|
|
20129
20109
|
overflow-y: auto;
|
|
20130
20110
|
}
|
|
20131
|
-
.zd-tabs .v-
|
|
20111
|
+
.zd-tabs .v-window__container {
|
|
20112
|
+
height: 100%;
|
|
20113
|
+
}
|
|
20114
|
+
.zd-tabs .v-tabs-window-item {
|
|
20115
|
+
height: 100%;
|
|
20116
|
+
}
|
|
20117
|
+
.zd-tabs .v-tabs-window-item > .v-container {
|
|
20132
20118
|
height: 100% !important;
|
|
20133
20119
|
}.zd-text-input__affix, .v-input.zd-text-input--suffix .v-text-field__suffix__text, .v-input.zd-text-input .v-text-field__prefix__text {
|
|
20134
20120
|
font-weight: var(--zd-font-body2-weight);
|
|
@@ -20283,6 +20269,8 @@ table.zd-table, .zd-table tr, .zd-table td, .zd-table th {
|
|
|
20283
20269
|
.v-input.zd-textarea textarea {
|
|
20284
20270
|
padding: var(--spacing-2);
|
|
20285
20271
|
line-height: unset;
|
|
20272
|
+
-webkit-mask-image: none;
|
|
20273
|
+
mask-image: none;
|
|
20286
20274
|
}
|
|
20287
20275
|
.v-input.zd-textarea.zd-text-align-left > .v-input__control > .v-input__slot input {
|
|
20288
20276
|
text-align: left;
|
|
@@ -20329,7 +20317,8 @@ table.zd-table, .zd-table tr, .zd-table td, .zd-table th {
|
|
|
20329
20317
|
-webkit-mask-image: none;
|
|
20330
20318
|
mask-image: none;
|
|
20331
20319
|
}.zd-tooltip.v-overlay__content {
|
|
20332
|
-
opacity: 0.9;
|
|
20320
|
+
opacity: 0.9 !important;
|
|
20321
|
+
white-space: pre-line;
|
|
20333
20322
|
}.zd-tree-grid .zd-table-cell-text-first {
|
|
20334
20323
|
display: inline-flex;
|
|
20335
20324
|
width: 100%;
|
|
@@ -20726,6 +20715,7 @@ table.zd-table, .zd-table tr, .zd-table td, .zd-table th {
|
|
|
20726
20715
|
}
|
|
20727
20716
|
.zd-input.v-input.zd-dense > .v-input__details {
|
|
20728
20717
|
min-height: 11px;
|
|
20718
|
+
padding: 2px 4px;
|
|
20729
20719
|
}
|
|
20730
20720
|
.zd-input.v-input.zd-dense > .v-input__details .v-messages {
|
|
20731
20721
|
min-height: 11px;
|
|
@@ -20746,8 +20736,8 @@ table.zd-table, .zd-table tr, .zd-table td, .zd-table th {
|
|
|
20746
20736
|
.zd-input.v-input:hover .v-field__append-outer, .zd-input.v-input.v-input--is-focused .v-field__append-outer {
|
|
20747
20737
|
margin-left: var(--spacing-1);
|
|
20748
20738
|
}
|
|
20749
|
-
.zd-input.error--
|
|
20750
|
-
border:
|
|
20739
|
+
.zd-input.v-input--error:not(.v-input--focused).v-input > .v-input__control > .v-field {
|
|
20740
|
+
border-color: rgb(var(--v-theme-error));
|
|
20751
20741
|
}
|
|
20752
20742
|
|
|
20753
20743
|
/* Class to make inputs without label be correctly align inside forms with inputs */
|