@sunny-base-web/ui 0.8.37 → 0.8.38
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/feedback/modal/Modal.d.ts.map +1 -1
- package/dist/feedback/search-modal/SunnySearchModal.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +559 -553
- package/dist/ui.css +1 -1
- package/package.json +6 -6
- package/src/index.ts +0 -74
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sunny-base-web/ui",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.38",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"vxe-pc-ui": "^4.13.0",
|
|
40
40
|
"vxe-table": "^4.17.49",
|
|
41
41
|
"zod": "^4.3.5",
|
|
42
|
-
"@sunny-base-web/icons": "^0.8.
|
|
43
|
-
"@sunny-base-web/
|
|
44
|
-
"@sunny-base-web/
|
|
42
|
+
"@sunny-base-web/icons": "^0.8.38",
|
|
43
|
+
"@sunny-base-web/locales": "^0.8.38",
|
|
44
|
+
"@sunny-base-web/utils": "^0.8.38"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/lodash-es": "^4.17.12",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"vite": "^7.3.1",
|
|
56
56
|
"vite-plugin-dts": "^4.5.4",
|
|
57
57
|
"vue-tsc": "^2.1.10",
|
|
58
|
-
"@sunny-base-web/tailwind-config": "0.8.
|
|
59
|
-
"@sunny-base-web/tsconfig": "0.8.
|
|
58
|
+
"@sunny-base-web/tailwind-config": "0.8.38",
|
|
59
|
+
"@sunny-base-web/tsconfig": "0.8.38"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "vite build",
|
package/src/index.ts
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import "./style.css";
|
|
2
|
-
|
|
3
|
-
import { Modal, useSunnyModal, ModalTypes } from "./feedback/modal";
|
|
4
|
-
import { ErrorBoundary } from "./feedback/error-boundary";
|
|
5
|
-
import { SunnyLoading, SunnySpinner } from "./feedback/spinner";
|
|
6
|
-
import { SunnyIcon } from "./basic/icon";
|
|
7
|
-
import { SunnyScrollbar } from "./basic/scrollbar";
|
|
8
|
-
import { SunnyUpload } from "./data/upload";
|
|
9
|
-
import { SunnySimpleUpload } from "./data/simple-upload";
|
|
10
|
-
import SunnySelect from "./entry/select";
|
|
11
|
-
import SunnyBatchSelect from "./entry/select/BatchSelect.vue";
|
|
12
|
-
import SunnySearchInputTag from "./entry/search-input-tag";
|
|
13
|
-
import { useSunnyForm, FormApi, SunnyForm, setupSunnyForm, z, DEFAULT_FORM_COMMON_CONFIG } from './entry/form';
|
|
14
|
-
import { useSunnyEditGrid } from './data/edit-grid'
|
|
15
|
-
import * as EditRender from './data/edit-grid/edit-render'
|
|
16
|
-
import * as Validators from './data/edit-grid/validators'
|
|
17
|
-
import { useSunnyQueryGrid } from './data/query-grid'
|
|
18
|
-
import { SunnyResourceTree } from './data/resource-tree'
|
|
19
|
-
import { SunnySearchModal } from './feedback/search-modal'
|
|
20
|
-
import { patterns } from "@sunny-base-web/utils";
|
|
21
|
-
import type { VxeGridProps, VxeGridPropTypes } from 'vxe-table';
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
export * from "./navigation/nprogress";
|
|
25
|
-
export * from "./basic/icon/types";
|
|
26
|
-
|
|
27
|
-
export {
|
|
28
|
-
Modal,
|
|
29
|
-
useSunnyModal,
|
|
30
|
-
ModalTypes,
|
|
31
|
-
ErrorBoundary,
|
|
32
|
-
SunnyLoading,
|
|
33
|
-
SunnySpinner,
|
|
34
|
-
SunnyIcon,
|
|
35
|
-
SunnyScrollbar,
|
|
36
|
-
SunnyUpload,
|
|
37
|
-
SunnySimpleUpload,
|
|
38
|
-
SunnyBatchSelect,
|
|
39
|
-
SunnySelect,
|
|
40
|
-
SunnyCustomizeSelect,
|
|
41
|
-
SunnySearchInputTag,
|
|
42
|
-
useSunnyForm,
|
|
43
|
-
FormApi,
|
|
44
|
-
SunnyForm,
|
|
45
|
-
setupSunnyForm,
|
|
46
|
-
DEFAULT_FORM_COMMON_CONFIG,
|
|
47
|
-
EditRender,
|
|
48
|
-
Validators,
|
|
49
|
-
useSunnyEditGrid,
|
|
50
|
-
useSunnyQueryGrid,
|
|
51
|
-
SunnyResourceTree,
|
|
52
|
-
SunnySearchModal,
|
|
53
|
-
patterns,
|
|
54
|
-
z
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
export type {
|
|
58
|
-
VxeGridProps,
|
|
59
|
-
VxeGridPropTypes
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
export * from "./entry/select/types";
|
|
63
|
-
export * from "./entry/search-input-tag/types";
|
|
64
|
-
export * from "./entry/form/types";
|
|
65
|
-
export * from "./feedback/error-boundary/types";
|
|
66
|
-
export * from "./composite/business-search";
|
|
67
|
-
export * from "./composite/search-plan";
|
|
68
|
-
export * from "./composite/customize-select";
|
|
69
|
-
export * from './data/resource-tree/types';
|
|
70
|
-
export * from './data/resource-tree/use-sunny-resource-tree';
|
|
71
|
-
export * from './feedback/export-modal';
|
|
72
|
-
export * from './feedback/import-modal';
|
|
73
|
-
export * from './entry/qrcode-reader/types';
|
|
74
|
-
export { SunnyQrcodeReader } from './entry/qrcode-reader';
|