sun-form-v3 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "sun-form-v3",
3
3
  "private": false,
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "type": "module",
6
6
  "files": [
7
- "dist"
7
+ "dist",
8
+ "src/assets/styles/element/index.scss",
9
+ "src/assets/styles/index.css"
8
10
  ],
9
11
  "main": "./dist/sun-form-v3.umd.js",
10
- "module": "./dist/sun-form-v3.es.js",
12
+ "module": "./dist/sun-form-v3.esm.js",
11
13
  "exports": {
12
14
  "./style": "./dist/style.css",
13
15
  ".": {
@@ -40,4 +42,4 @@
40
42
  "vxe-table": "^4.6.17",
41
43
  "xe-utils": "^3.5.26"
42
44
  }
43
- }
45
+ }
@@ -0,0 +1,15 @@
1
+ /* 只需要重写你需要的即可 */
2
+ @forward 'element-plus/theme-chalk/src/common/var.scss'with (
3
+ $colors: ('primary': (
4
+ 'base': rgb(85, 132, 255),
5
+ ),
6
+ ),
7
+ );
8
+
9
+
10
+
11
+ @use "element-plus/theme-chalk/src/index.scss"as *;
12
+
13
+ body {
14
+ margin: 0;
15
+ }
@@ -0,0 +1,3 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;