zs_library 0.6.14 → 0.6.15
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/index.d.ts +2 -2
- package/dist/index.js +1 -0
- package/package.json +10 -16
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Desktop, DesktopSortable, DesktopAppItem, DesktopGroupItem, DesktopBaseModal, DesktopSortableConfigProvider, DesktopSortableStateProvider, getDesktopDefaultConfig, desktopThemeLight, desktopThemeDark, SortableUtils, Dock, DockDesktop, DockDesktopItem, DockMobile, DockMobileItem, useDockDesktopMouseX, MdEditor, Markdown, Editor, GeoMap, } from './components';
|
|
2
|
-
export type { DesktopHandle, DesktopProps, DesktopAppItemProps, DesktopGroupItemProps, DesktopSortableProps, DesktopSortableConfigProviderProps, DesktopSortableStateProviderProps, DesktopBaseModalProps, DesktopSortItemBaseConfig, DesktopSortItemUserConfig, DesktopSortItemDefaultConfig, DesktopTypeConfigMap, DesktopSortItem, DesktopListItem, DesktopSortItemBaseData, DesktopTheme, DockDesktopItemProps, DockMobileItemProps, } from './components';
|
|
1
|
+
export { Desktop, DesktopSortable, DesktopAppItem, DesktopGroupItem, DesktopBaseModal, DesktopBaseDrawer, DesktopSortableConfigProvider, DesktopSortableStateProvider, getDesktopDefaultConfig, desktopThemeLight, desktopThemeDark, SortableUtils, Dock, DockDesktop, DockDesktopItem, DockMobile, DockMobileItem, useDockDesktopMouseX, MdEditor, Markdown, Editor, GeoMap, } from './components';
|
|
2
|
+
export type { DesktopHandle, DesktopProps, DesktopAppItemProps, DesktopGroupItemProps, DesktopSortableProps, DesktopSortableConfigProviderProps, DesktopSortableStateProviderProps, DesktopBaseModalProps, DesktopBaseDrawerProps, DesktopSortItemBaseConfig, DesktopSortItemUserConfig, DesktopSortItemDefaultConfig, DesktopTypeConfigMap, DesktopSortItem, DesktopListItem, DesktopSortItemBaseData, DesktopTheme, DockDesktopItemProps, DockMobileItemProps, } from './components';
|
|
3
3
|
import * as Components from "./components";
|
|
4
4
|
export default Components;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zs_library",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.15",
|
|
4
4
|
"homepage": "https://zs-library.virs.xyz/",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/virzs/zs_library/issues"
|
|
@@ -27,16 +27,6 @@
|
|
|
27
27
|
"files": [
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
|
-
"scripts": {
|
|
31
|
-
"release": "bumpp && pnpm vite build && pnpm publish",
|
|
32
|
-
"build": "tsc -b && vite build",
|
|
33
|
-
"dev": "vite",
|
|
34
|
-
"docs:build": "vite build && rspress build",
|
|
35
|
-
"docs:dev": "rspress dev --host 0.0.0.0 --port 4372",
|
|
36
|
-
"docs:preview": "rspress preview",
|
|
37
|
-
"lint": "eslint .",
|
|
38
|
-
"prepare": "husky"
|
|
39
|
-
},
|
|
40
30
|
"dependencies": {
|
|
41
31
|
"@ai-sdk/react": "^1.1.17",
|
|
42
32
|
"@emotion/css": "^11.13.5",
|
|
@@ -148,9 +138,13 @@
|
|
|
148
138
|
"react": ">=18.0.0 <19.0.0",
|
|
149
139
|
"react-dom": ">=18.0.0 <19.0.0"
|
|
150
140
|
},
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
|
|
141
|
+
"scripts": {
|
|
142
|
+
"release": "bumpp && pnpm vite build && pnpm publish",
|
|
143
|
+
"build": "tsc -b && vite build",
|
|
144
|
+
"dev": "vite",
|
|
145
|
+
"docs:build": "vite build && rspress build",
|
|
146
|
+
"docs:dev": "rspress dev --host 0.0.0.0 --port 4372",
|
|
147
|
+
"docs:preview": "rspress preview",
|
|
148
|
+
"lint": "eslint ."
|
|
155
149
|
}
|
|
156
|
-
}
|
|
150
|
+
}
|