@hbdlzy/ui 0.1.2 → 0.1.4

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.
@@ -0,0 +1,6 @@
1
+ import '@hbdlzy/tokens';
2
+ export { companyTokens } from '@hbdlzy/tokens';
3
+ export { default as defaultCompanyTokens } from '@hbdlzy/tokens';
4
+ export * from '@hbdlzy/ui-core';
5
+ export * from '@hbdlzy/ui-energy';
6
+ export declare const uiPackageName = "@hbdlzy/ui";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hbdlzy/ui",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Company unified UI entry package.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -10,13 +10,15 @@
10
10
  },
11
11
  "main": "dist/index.cjs",
12
12
  "module": "dist/index.js",
13
- "types": "src/index.ts",
13
+ "types": "dist/index.d.ts",
14
14
  "exports": {
15
15
  ".": {
16
16
  "import": "./dist/index.js",
17
17
  "require": "./dist/index.cjs",
18
- "types": "./src/index.ts"
18
+ "types": "./dist/index.d.ts"
19
19
  },
20
+ "./style.css": "./src/style.css",
21
+ "./dist/style.css": "./src/style.css",
20
22
  "./package.manifest.json": "./package.manifest.json"
21
23
  },
22
24
  "files": [
@@ -27,9 +29,9 @@
27
29
  "package.manifest.json"
28
30
  ],
29
31
  "dependencies": {
30
- "@hbdlzy/ui-core": "0.1.2",
31
- "@hbdlzy/tokens": "0.1.0",
32
- "@hbdlzy/ui-energy": "0.1.0"
32
+ "@hbdlzy/tokens": "0.1.1",
33
+ "@hbdlzy/ui-core": "0.1.3",
34
+ "@hbdlzy/ui-energy": "0.1.1"
33
35
  },
34
36
  "peerDependencies": {
35
37
  "element-plus": "^2.13.7",
@@ -43,6 +45,7 @@
43
45
  "registry": "https://registry.npmjs.org/"
44
46
  },
45
47
  "scripts": {
46
- "build": "vite build"
48
+ "build": "vite build && pnpm run build:types",
49
+ "build:types": "vue-tsc -p tsconfig.build.json --declaration --emitDeclarationOnly"
47
50
  }
48
51
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hbdlzy/ui",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "entry": "@hbdlzy/ui",
5
5
  "readme": "README.md",
6
6
  "aiGuide": "AI-USAGE.md",
package/src/style.css ADDED
@@ -0,0 +1,3 @@
1
+ /* Unified CSS entry for the umbrella UI package. */
2
+ @import '../../tokens/dist/style.css';
3
+ @import '../../ui-core/dist/style.css';