@ruixinkeji/prism-ui 1.0.13 → 1.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruixinkeji/prism-ui",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Prism UI - 现代化玻璃态设计 uni-app 组件库",
5
5
  "main": "index.js",
6
6
  "module": "index.esm.js",
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * Prism UI 颜色主题系统
3
3
  * 使用 SCSS 变量定义,自动注入到所有组件
4
+ */
5
+ /**
4
6
  *
5
7
  * 📦 包含内容:
6
8
  * 1. 14种颜色:purple, blue, green, red, orange, cyan, yellow, pink,
package/styles/index.scss CHANGED
@@ -7,40 +7,40 @@
7
7
  */
8
8
 
9
9
  // SCSS 变量(必须最先引入,供其他文件使用)
10
- @use './variables' as *;
10
+ @import './variables';
11
11
 
12
12
  // 基础样式和 CSS 变量
13
- @use './base';
13
+ @import './base';
14
14
 
15
15
  // 图标颜色主题
16
- @use './colors';
16
+ @import './colors.scss';
17
17
 
18
18
  // 按钮组件
19
- @use './button';
19
+ @import './button';
20
20
 
21
21
  // 表单组件
22
- @use './form';
22
+ @import './form';
23
23
 
24
24
  // 卡片和容器组件
25
- @use './card';
25
+ @import './card';
26
26
 
27
27
  // 列表组件
28
- @use './list';
28
+ @import './list';
29
29
 
30
30
  // 弹出层组件
31
- @use './overlay';
31
+ @import './overlay';
32
32
 
33
33
  // 数据展示组件
34
- @use './data';
34
+ @import './data';
35
35
 
36
36
  // 反馈组件
37
- @use './feedback';
37
+ @import './feedback';
38
38
 
39
39
  // 导航组件
40
- @use './navigation';
40
+ @import './navigation';
41
41
 
42
42
  // 特效组件
43
- @use './effects';
43
+ @import './effects';
44
44
 
45
45
  // 工具类
46
- @use './utilities';
46
+ @import './utilities';
@@ -8,7 +8,7 @@
8
8
  */
9
9
 
10
10
  // 引入主题文件(切换主题只需修改这一行)
11
- @use '../theme/blue.scss' as *;
11
+ @import '../theme/blue.scss';
12
12
 
13
13
  /* ============================================================
14
14
  一、浅色模式变量(使用 !default,允许主题文件覆盖)