@lateralus-ai/shipping-ui 1.4.1 → 1.4.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +10 -3
package/README.md CHANGED
@@ -75,7 +75,7 @@ module.exports = {
75
75
  In your main CSS file:
76
76
 
77
77
  ```css
78
- @import "@lateralus-ai/shipping-ui/css";
78
+ @import "@lateralus-ai/shipping-ui/style.css";
79
79
  ```
80
80
 
81
81
  ## Theme Structure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lateralus-ai/shipping-ui",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Shared UI theme and components for Lateralus shipping applications",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.esm.js",
@@ -13,7 +13,11 @@
13
13
  "import": "./dist/index.esm.js",
14
14
  "require": "./dist/index.cjs",
15
15
  "types": "./dist/index.d.ts"
16
- }
16
+ },
17
+ "./style.css": "./dist/style.css",
18
+ "./css": "./dist/style.css",
19
+ "./dist/style.css": "./dist/style.css",
20
+ "./tailwind": "./tailwind.config.js"
17
21
  },
18
22
  "files": [
19
23
  "dist",
@@ -88,5 +92,8 @@
88
92
  "react-hotkeys-hook": "^5.1.0",
89
93
  "react-pdf": "^10.1.0",
90
94
  "react-router": "^7.9.3"
91
- }
95
+ },
96
+ "sideEffects": [
97
+ "dist/style.css"
98
+ ]
92
99
  }