@j3m-quantum/ui 1.8.0 → 1.9.1
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 +100 -0
- package/dist/index.cjs +90 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +129 -1
- package/dist/index.d.ts +129 -1
- package/dist/index.js +85 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +2 -0
- package/package.json +15 -2
package/dist/styles/index.css
CHANGED
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
/* Import generated primitive tokens from Style Dictionary */
|
|
16
16
|
@import './generated/variables.css';
|
|
17
17
|
|
|
18
|
+
/* Note: Leaflet CSS is imported directly in the Map component */
|
|
19
|
+
|
|
18
20
|
/* ========================================
|
|
19
21
|
COLOR SCALES (12-Step, HEX Format)
|
|
20
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@j3m-quantum/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "J3M UI Component Library - React components with J3M design tokens",
|
|
6
6
|
"type": "module",
|
|
@@ -94,10 +94,23 @@
|
|
|
94
94
|
"react": ">=18",
|
|
95
95
|
"react-dom": ">=18",
|
|
96
96
|
"tailwindcss": ">=4",
|
|
97
|
-
"tw-animate-css": "^1.0.0"
|
|
97
|
+
"tw-animate-css": "^1.0.0",
|
|
98
|
+
"leaflet": "^1.9.4",
|
|
99
|
+
"react-leaflet": "^5.0.0"
|
|
100
|
+
},
|
|
101
|
+
"peerDependenciesMeta": {
|
|
102
|
+
"leaflet": {
|
|
103
|
+
"optional": true
|
|
104
|
+
},
|
|
105
|
+
"react-leaflet": {
|
|
106
|
+
"optional": true
|
|
107
|
+
}
|
|
98
108
|
},
|
|
99
109
|
"devDependencies": {
|
|
100
110
|
"@changesets/cli": "^2.29.4",
|
|
111
|
+
"@types/leaflet": "^1.9.12",
|
|
112
|
+
"leaflet": "^1.9.4",
|
|
113
|
+
"react-leaflet": "^5.0.0",
|
|
101
114
|
"@types/react": "^19.1.8",
|
|
102
115
|
"@types/react-dom": "^19.1.6",
|
|
103
116
|
"style-dictionary": "^4.2.0",
|