@hbdlzy/ui 0.1.4 → 0.1.5

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 CHANGED
@@ -17,6 +17,8 @@ npm install @hbdlzy/ui
17
17
  ## 使用方式
18
18
 
19
19
  ```ts
20
+ import '@hbdlzy/ui/style.css'
21
+
20
22
  import {
21
23
  BaseTable,
22
24
  BaseCard,
@@ -34,7 +36,7 @@ import {
34
36
  } from '@hbdlzy/ui'
35
37
  ```
36
38
 
37
- ## 当前汇总
39
+ ## 当前聚合内容
38
40
 
39
41
  - 设计令牌:`@hbdlzy/tokens`
40
42
  - 基础组件:`@hbdlzy/ui-core`
@@ -85,5 +87,5 @@ import {
85
87
  ## 说明
86
88
 
87
89
  - 该包内部依赖 `@hbdlzy/tokens`、`@hbdlzy/ui-core`、`@hbdlzy/ui-energy`
88
- - 导入 `@hbdlzy/ui` 时会自动加载设计变量样式
90
+ - 推荐在应用入口显式导入 `@hbdlzy/ui/style.css`,统一加载设计变量和基础组件样式
89
91
  - 新项目中如果希望 AI 能稳定复用组件,优先让它先读 `package.manifest.json` 和 `AI-USAGE.md`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hbdlzy/ui",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Company unified UI entry package.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -24,14 +24,16 @@
24
24
  "files": [
25
25
  "dist",
26
26
  "src",
27
+ "!src/**/*.test.ts",
28
+ "!src/**/*.spec.ts",
27
29
  "README.md",
28
30
  "AI-USAGE.md",
29
31
  "package.manifest.json"
30
32
  ],
31
33
  "dependencies": {
32
- "@hbdlzy/tokens": "0.1.1",
33
- "@hbdlzy/ui-core": "0.1.3",
34
- "@hbdlzy/ui-energy": "0.1.1"
34
+ "@hbdlzy/ui-core": "0.1.4",
35
+ "@hbdlzy/tokens": "0.1.2",
36
+ "@hbdlzy/ui-energy": "0.1.2"
35
37
  },
36
38
  "peerDependencies": {
37
39
  "element-plus": "^2.13.7",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hbdlzy/ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "entry": "@hbdlzy/ui",
5
5
  "readme": "README.md",
6
6
  "aiGuide": "AI-USAGE.md",
@@ -25,6 +25,18 @@
25
25
  "importName": "BaseCard",
26
26
  "docs": "../ui-core/src/components/BaseCard/README.md"
27
27
  },
28
+ {
29
+ "name": "BaseSearchForm",
30
+ "from": "@hbdlzy/ui-core",
31
+ "importName": "BaseSearchForm",
32
+ "docs": "../ui-core/src/components/BaseSearchForm/README.md"
33
+ },
34
+ {
35
+ "name": "BaseDialog",
36
+ "from": "@hbdlzy/ui-core",
37
+ "importName": "BaseDialog",
38
+ "docs": "../ui-core/src/components/BaseDialog/README.md"
39
+ },
28
40
  {
29
41
  "name": "BaseEChart",
30
42
  "from": "@hbdlzy/ui-core",
@@ -126,6 +138,8 @@
126
138
  "../ui-core/README.md",
127
139
  "../ui-core/src/components/BaseTable/README.md",
128
140
  "../ui-core/src/components/BaseCard/README.md",
141
+ "../ui-core/src/components/BaseSearchForm/README.md",
142
+ "../ui-core/src/components/BaseDialog/README.md",
129
143
  "../ui-core/src/components/BaseEChart/README.md",
130
144
  "../ui-core/src/components/BaseExportButton/README.md",
131
145
  "../ui-core/src/components/OutlinedInput/README.md",