@wow-two-beta/ui 0.0.64 → 0.0.65

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": "@wow-two-beta/ui",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "description": "Beta-forever React UI library for the wow-two ecosystem.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -57,6 +57,11 @@
57
57
  "import": "./dist/primitives/index.js",
58
58
  "default": "./dist/primitives/index.js"
59
59
  },
60
+ "./themes": {
61
+ "types": "./dist/themes/index.d.ts",
62
+ "import": "./dist/themes/index.js",
63
+ "default": "./dist/themes/index.js"
64
+ },
60
65
  "./actions": {
61
66
  "types": "./dist/actions/index.d.ts",
62
67
  "import": "./dist/actions/index.js",
@@ -93,10 +98,12 @@
93
98
  "default": "./dist/overlays/index.js"
94
99
  },
95
100
  "./styles.css": "./dist/index.css",
101
+ "./themes.css": "./dist/themes.css",
102
+ "./themes.json": "./dist/themes.json",
96
103
  "./package.json": "./package.json"
97
104
  },
98
105
  "scripts": {
99
- "build": "tsup && tsc --emitDeclarationOnly --outDir dist && cp src/index.css dist/index.css",
106
+ "build": "tsup && tsc --emitDeclarationOnly --outDir dist && cp src/index.css dist/index.css && node scripts/build-themes-css.mjs",
100
107
  "dev": "tsup --watch",
101
108
  "typecheck": "tsc --noEmit",
102
109
  "lint": "eslint .",