@fangzhongya/fang-ui 0.0.9 → 0.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/README.md +2 -1
- package/dist/components/index.css +19 -19
- package/dist/components/index.scss +5 -5
- package/dist/index.d.ts +2 -2
- package/package.json +13 -8
package/README.md
CHANGED
|
@@ -566,7 +566,8 @@ import Components from 'unplugin-vue-components/vite';
|
|
|
566
566
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
|
|
567
567
|
|
|
568
568
|
// fang-ui 自动导入 需要引入的方法
|
|
569
|
-
import { FangComponentResolver } from '@fangzhongya/fang-ui/expand/components
|
|
569
|
+
import { FangComponentResolver } from '@fangzhongya/fang-ui/expand/components';
|
|
570
|
+
|
|
570
571
|
export default defineConfig({
|
|
571
572
|
plugins: [
|
|
572
573
|
vue(),
|
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
font-size: 20px;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
.cs-title {
|
|
6
|
+
margin: 10px;
|
|
7
|
+
padding: 10px;
|
|
8
|
+
width: 200px;
|
|
9
|
+
height: 200px;
|
|
10
|
+
border: 1px solid rgb(0, 255, 145);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.dom {
|
|
14
|
+
width: 200px;
|
|
15
|
+
display: flex;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.d {
|
|
19
|
+
border: 1px solid #f00;
|
|
20
|
+
}
|
|
21
|
+
|
|
5
22
|
.box-mask {
|
|
6
23
|
display: block;
|
|
7
24
|
opacity: 0.5;
|
|
@@ -46,21 +63,8 @@
|
|
|
46
63
|
margin: 10px;
|
|
47
64
|
}
|
|
48
65
|
|
|
49
|
-
.
|
|
50
|
-
|
|
51
|
-
padding: 10px;
|
|
52
|
-
width: 200px;
|
|
53
|
-
height: 200px;
|
|
54
|
-
border: 1px solid rgb(0, 255, 145);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.dom {
|
|
58
|
-
width: 200px;
|
|
59
|
-
display: flex;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.d {
|
|
63
|
-
border: 1px solid #f00;
|
|
66
|
+
.global-config {
|
|
67
|
+
left: 0;
|
|
64
68
|
}
|
|
65
69
|
|
|
66
70
|
.box {
|
|
@@ -217,8 +221,4 @@
|
|
|
217
221
|
}
|
|
218
222
|
.window .window-body.max::-webkit-scrollbar {
|
|
219
223
|
width: 0 !important;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.global-config {
|
|
223
|
-
left: 0;
|
|
224
224
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
@use './drawer/index.scss' as *;
|
|
2
1
|
@use './cs-title/index.scss' as *;
|
|
3
|
-
@use './
|
|
2
|
+
@use './drawer/index.scss' as *;
|
|
3
|
+
@use './global-config/index.scss' as *;
|
|
4
4
|
@use './box-local/index.scss' as *;
|
|
5
5
|
@use './box-adjust/index.scss' as *;
|
|
6
|
+
@use './box/index.scss' as *;
|
|
6
7
|
@use './box-mask/index.scss' as *;
|
|
7
|
-
@use './box-title/index.scss' as *;
|
|
8
8
|
@use './popup/index.scss' as *;
|
|
9
|
-
@use './
|
|
10
|
-
@use './
|
|
9
|
+
@use './box-title/index.scss' as *;
|
|
10
|
+
@use './window/index.scss' as *;
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fangzhongya/fang-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.11",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description ": "fang-ui",
|
|
7
7
|
"keywords": [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"fangui": "bin/fang-ui.js"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@fangzhongya/utils": "0.0.
|
|
27
|
+
"@fangzhongya/utils": "0.0.11",
|
|
28
28
|
"axios": "^1.9.0",
|
|
29
29
|
"element-plus": "^2.9.10"
|
|
30
30
|
},
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"vue": "^3.5.14",
|
|
46
46
|
"vue-tsc": "^2.2.10",
|
|
47
47
|
"@fang-ui/components": "0.0.1-0",
|
|
48
|
-
"@fang-ui/hooks": "0.0.1-0",
|
|
49
48
|
"@fang-ui/directives": "0.0.1-0",
|
|
50
|
-
"@fang-ui/locale": "0.0.1-0",
|
|
51
49
|
"@fang-ui/icons": "0.0.1-0",
|
|
52
|
-
"@fang-ui/types": "0.0.1-0",
|
|
53
50
|
"@fang-ui/theme": "0.0.1-0",
|
|
51
|
+
"@fang-ui/hooks": "0.0.1-0",
|
|
52
|
+
"@fang-ui/locale": "0.0.1-0",
|
|
53
|
+
"@fang-ui/types": "0.0.1-0",
|
|
54
54
|
"@fang-ui/utils": "0.0.1-0"
|
|
55
55
|
},
|
|
56
56
|
"main": "./dist/index.cjs",
|
|
@@ -62,7 +62,12 @@
|
|
|
62
62
|
"exports": {
|
|
63
63
|
"./css": "./dist/components/index.css",
|
|
64
64
|
"./scss": "./dist/components/index.scss",
|
|
65
|
-
"./*":
|
|
65
|
+
"./*": {
|
|
66
|
+
"types": "./dist/*.d.ts",
|
|
67
|
+
"require": "./dist/*.cjs",
|
|
68
|
+
"import": "./dist/*",
|
|
69
|
+
"default": "./dist/*"
|
|
70
|
+
},
|
|
66
71
|
".": {
|
|
67
72
|
"types": "./dist/index.d.ts",
|
|
68
73
|
"require": "./dist/index.cjs",
|
|
@@ -89,8 +94,8 @@
|
|
|
89
94
|
"docs:dev": "pnpm -C docs docs:dev",
|
|
90
95
|
"docs:build": "pnpm -C docs docs:build",
|
|
91
96
|
"docs:preview": "pnpm -C docs docs:preview",
|
|
92
|
-
"build": "
|
|
93
|
-
"build:scss": "pnpm build & cd packages/components & pnpm build & cd ../../",
|
|
97
|
+
"build": "vue-tsc && vite build",
|
|
98
|
+
"build:scss": "cd packages/components & pnpm dev & cd ../../ & pnpm build & cd packages/components & pnpm build & cd ../../",
|
|
94
99
|
"build:tsup": "pnpm dev:exp & tsup",
|
|
95
100
|
"build:archive": "pnpm run -C archive build",
|
|
96
101
|
"build:all": "pnpm build:scss & pnpm build:tsup",
|