@nice2dev/ui-math 1.0.12 → 1.0.15

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 +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -32,6 +32,20 @@ function App() {
32
32
  }
33
33
  ```
34
34
 
35
+ ## Styling
36
+
37
+ This package ships unstyled component logic. Import the shared CSS bundle once at your app entrypoint:
38
+
39
+ ```tsx
40
+ import '@nice2dev/ui/style.css';
41
+ ```
42
+
43
+ Optional: opt into the legacy shorthand token aliases (`--bg-*`, `--text-*`, `--border-*`, ...) when migrating from a custom design-token system:
44
+
45
+ ```tsx
46
+ import '@nice2dev/ui/css/legacy-bg-text-aliases.css';
47
+ ```
48
+
35
49
  ## License
36
50
 
37
51
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nice2dev/ui-math",
3
- "version": "1.0.12",
3
+ "version": "1.0.15",
4
4
  "description": "Nice2Dev Mathematics Components - Equation editors, LaTeX rendering, formula builders, and math notation",
5
5
  "type": "module",
6
6
  "sideEffects": false,