@fangzhongya/fang-ui 0.0.10 → 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/dist/components/index.css +8 -8
- package/dist/components/index.scss +5 -5
- package/dist/index.d.ts +2 -2
- package/package.json +10 -10
|
@@ -63,6 +63,10 @@
|
|
|
63
63
|
margin: 10px;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
.global-config {
|
|
67
|
+
left: 0;
|
|
68
|
+
}
|
|
69
|
+
|
|
66
70
|
.box {
|
|
67
71
|
position: fixed;
|
|
68
72
|
width: 100%;
|
|
@@ -97,6 +101,10 @@
|
|
|
97
101
|
justify-content: center;
|
|
98
102
|
}
|
|
99
103
|
|
|
104
|
+
.box-local {
|
|
105
|
+
text-align: left;
|
|
106
|
+
}
|
|
107
|
+
|
|
100
108
|
.box-adjust {
|
|
101
109
|
position: fixed;
|
|
102
110
|
width: 100vw;
|
|
@@ -128,10 +136,6 @@
|
|
|
128
136
|
justify-content: center;
|
|
129
137
|
}
|
|
130
138
|
|
|
131
|
-
.box-local {
|
|
132
|
-
text-align: left;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
139
|
.popup {
|
|
136
140
|
position: fixed;
|
|
137
141
|
width: 100vw;
|
|
@@ -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
1
|
@use './cs-title/index.scss' as *;
|
|
2
2
|
@use './drawer/index.scss' as *;
|
|
3
|
-
@use './
|
|
4
|
-
@use './box-adjust/index.scss' as *;
|
|
3
|
+
@use './global-config/index.scss' as *;
|
|
5
4
|
@use './box-local/index.scss' as *;
|
|
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
2
|
+
export * from './components/index';
|
|
3
|
+
export * from './directives/index';
|
|
4
4
|
declare const _default: {
|
|
5
5
|
install: (app: App) => void;
|
|
6
6
|
};
|
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
|
},
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"vitest": "^3.1.3",
|
|
45
45
|
"vue": "^3.5.14",
|
|
46
46
|
"vue-tsc": "^2.2.10",
|
|
47
|
-
"@fang-ui/icons": "0.0.1-0",
|
|
48
|
-
"@fang-ui/locale": "0.0.1-0",
|
|
49
|
-
"@fang-ui/hooks": "0.0.1-0",
|
|
50
47
|
"@fang-ui/components": "0.0.1-0",
|
|
51
|
-
"@fang-ui/utils": "0.0.1-0",
|
|
52
|
-
"@fang-ui/theme": "0.0.1-0",
|
|
53
48
|
"@fang-ui/directives": "0.0.1-0",
|
|
54
|
-
"@fang-ui/
|
|
49
|
+
"@fang-ui/icons": "0.0.1-0",
|
|
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
|
+
"@fang-ui/utils": "0.0.1-0"
|
|
55
55
|
},
|
|
56
56
|
"main": "./dist/index.cjs",
|
|
57
57
|
"module": "./dist/index.js",
|
|
@@ -94,8 +94,8 @@
|
|
|
94
94
|
"docs:dev": "pnpm -C docs docs:dev",
|
|
95
95
|
"docs:build": "pnpm -C docs docs:build",
|
|
96
96
|
"docs:preview": "pnpm -C docs docs:preview",
|
|
97
|
-
"build": "
|
|
98
|
-
"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 ../../",
|
|
99
99
|
"build:tsup": "pnpm dev:exp & tsup",
|
|
100
100
|
"build:archive": "pnpm run -C archive build",
|
|
101
101
|
"build:all": "pnpm build:scss & pnpm build:tsup",
|