@dashadmin/dash-interfaces 1.3.17 → 1.3.20

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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1 @@
1
+ var e=(t=>(t.rgba="rgba",t.rgb="rgb",t.hex="hex",t))(e||{});export{e as TagTypeColors};
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dashadmin/dash-interfaces",
3
- "version": "1.3.17",
3
+ "version": "1.3.20",
4
4
  "private": false,
5
5
  "main": "src/index.tsx",
6
6
  "type": "module",
@@ -11,7 +11,7 @@
11
11
  "lint:fix": "pnpm prettier --write .",
12
12
  "check-updates": "pnpm npm-check-updates",
13
13
  "updates-packages": "pnpm npm-check-updates -u",
14
- "build": "vite build"
14
+ "build": "rm -rf dist && node ../dash-build/compile.mjs && vite build"
15
15
  },
16
16
  "browserslist": {
17
17
  "production": [
@@ -84,10 +84,21 @@
84
84
  "exports": {
85
85
  ".": {
86
86
  "import": "./dist/index.js"
87
+ },
88
+ "./src/*": {
89
+ "import": "./dist/*.js"
87
90
  }
88
91
  }
89
92
  },
90
93
  "files": [
91
94
  "dist"
92
- ]
95
+ ],
96
+ "exports": {
97
+ ".": {
98
+ "import": "./src/index.tsx"
99
+ },
100
+ "./src/*": {
101
+ "import": "./src/*"
102
+ }
103
+ }
93
104
  }