@zeedhi/vuetify 1.41.0 → 1.42.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.esm.js +1306 -1160
- package/dist/zd-vuetify.umd.js +1326 -1179
- package/package.json +2 -2
- package/types/components/public.d.ts +2 -1
- package/types/components/zd-selectable-list/ZdSelectableList.d.ts +2 -1
- package/types/utils/plugins/index.d.ts +3 -1
- package/types/utils/plugins/isDarkPlugin.d.ts +3 -0
- package/types/utils/plugins/isLightPlugin.d.ts +3 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.42.0",
|
4
4
|
"description": "Zeedhi Components based on Vuetify",
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
6
6
|
"license": "ISC",
|
@@ -51,5 +51,5 @@
|
|
51
51
|
"@types/prismjs": "^1.16.2",
|
52
52
|
"@types/sortablejs": "^1.10.6"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "ca9a827eab97ada267f9f6406ef35f199e1fbaf1"
|
55
55
|
}
|
@@ -63,6 +63,7 @@ import ZdRadio from './zd-radio/ZdRadio';
|
|
63
63
|
import ZdRangeSlider from './zd-range-slider/ZdRangeSlider';
|
64
64
|
import ZdRow from './zd-row/ZdRow';
|
65
65
|
import ZdSearch from './zd-iterable/zd-search/ZdSearch';
|
66
|
+
import ZdSelectableList from './zd-selectable-list/ZdSelectableList';
|
66
67
|
import ZdSelect from './zd-select/ZdSelect';
|
67
68
|
import ZdSelectTree from './zd-select-tree/ZdSelectTree';
|
68
69
|
import ZdSelectTreeMultiple from './zd-select-tree-multiple/ZdSelectTreeMultiple';
|
@@ -82,4 +83,4 @@ import ZdTooltip from './zd-tooltip/ZdTooltip';
|
|
82
83
|
import ZdTree from './zd-tree/ZdTree';
|
83
84
|
import ZdTreeGrid from './zd-tree-grid/ZdTreeGrid';
|
84
85
|
import ZdTreeGridEditable from './zd-tree-grid/ZdTreeGridEditable';
|
85
|
-
export { ZdAlert, ZdApexChart, ZdBadge, ZdBreadcrumbs, ZdButton, ZdButtonGroup, ZdCard, ZdCarousel, ZdCheckbox, ZdCheckboxMultiple, ZdChip, ZdCodeEditor, ZdCol, ZdCollapseCard, ZdComponent, ZdComponentRender, ZdContainer, ZdCurrency, ZdDashboard, ZdDate, ZdDateRange, ZdDialog, ZdDivider, ZdDropdown, ZdFileInput, ZdFooter, ZdForm, ZdFrame, ZdFramePage, ZdGrid, ZdGridFooter, ZdGridEditable, ZdIterableNoData, ZdGridTop, ZdHeader, ZdImage, ZdIncrement, ZdInput, ZdIterable, ZdIterableColumnsButton, ZdIterablePagination, ZdIterablePageSize, ZdIterablePageInfo, ZdList, ZdListItem, ZdListGroup, ZdLoading, ZdLogin, ZdLoginButton, ZdMasterDetail, ZdMenu, ZdMenuLink, ZdMenuGroup, ZdMenuButton, ZdMenuSeparator, ZdModal, ZdModalCloseButton, ZdMonth, ZdNumber, ZdPassword, ZdProgress, ZdRadio, ZdRangeSlider, ZdRow, ZdSearch, ZdSelect, ZdSelectTree, ZdSelectTreeMultiple, ZdSpeedDial, ZdSteppers, ZdSvgMap, ZdSwitch, ZdTable, ZdTabs, ZdTag, ZdText, ZdTextarea, ZdTextInput, ZdTime, ZdToggleable, ZdTooltip, ZdTree, ZdTreeGrid, ZdTreeGridEditable, };
|
86
|
+
export { ZdAlert, ZdApexChart, ZdBadge, ZdBreadcrumbs, ZdButton, ZdButtonGroup, ZdCard, ZdCarousel, ZdCheckbox, ZdCheckboxMultiple, ZdChip, ZdCodeEditor, ZdCol, ZdCollapseCard, ZdComponent, ZdComponentRender, ZdContainer, ZdCurrency, ZdDashboard, ZdDate, ZdDateRange, ZdDialog, ZdDivider, ZdDropdown, ZdFileInput, ZdFooter, ZdForm, ZdFrame, ZdFramePage, ZdGrid, ZdGridFooter, ZdGridEditable, ZdIterableNoData, ZdGridTop, ZdHeader, ZdImage, ZdIncrement, ZdInput, ZdIterable, ZdIterableColumnsButton, ZdIterablePagination, ZdIterablePageSize, ZdIterablePageInfo, ZdList, ZdListItem, ZdListGroup, ZdLoading, ZdLogin, ZdLoginButton, ZdMasterDetail, ZdMenu, ZdMenuLink, ZdMenuGroup, ZdMenuButton, ZdMenuSeparator, ZdModal, ZdModalCloseButton, ZdMonth, ZdNumber, ZdPassword, ZdProgress, ZdRadio, ZdRangeSlider, ZdRow, ZdSearch, ZdSelectableList, ZdSelect, ZdSelectTree, ZdSelectTreeMultiple, ZdSpeedDial, ZdSteppers, ZdSvgMap, ZdSwitch, ZdTable, ZdTabs, ZdTag, ZdText, ZdTextarea, ZdTextInput, ZdTime, ZdToggleable, ZdTooltip, ZdTree, ZdTreeGrid, ZdTreeGridEditable, };
|
@@ -2,4 +2,6 @@ import getIconPlugin from './getIconPlugin';
|
|
2
2
|
import formatSizePlugin from './formatSizePlugin';
|
3
3
|
import doubleClickPlugin from './doubleClickPlugin';
|
4
4
|
import isMobilePlugin from './isMobilePlugin';
|
5
|
-
|
5
|
+
import isDarkPlugin from './isDarkPlugin';
|
6
|
+
import isLightPlugin from './isLightPlugin';
|
7
|
+
export { getIconPlugin, formatSizePlugin, doubleClickPlugin, isMobilePlugin, isDarkPlugin, isLightPlugin, };
|