@matteoaliano/forest-ui 0.8.1 → 0.8.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.
- package/README.md +34 -3
- package/dist/index.js +336 -370
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -43
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
- package/skills/forest-alkemy-plus/SKILL.md +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matteoaliano/forest-ui",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "Forest Design System — themed MUI components",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@emotion/react": "^11.0.0",
|
|
46
46
|
"@emotion/styled": "^11.0.0",
|
|
47
|
-
"@mui/material": "^
|
|
47
|
+
"@mui/icons-material": "^7.0.0",
|
|
48
|
+
"@mui/material": "^7.0.0",
|
|
48
49
|
"@mui/x-charts": "^7.0.0",
|
|
49
50
|
"@mui/x-data-grid": "^7.0.0",
|
|
50
51
|
"@mui/x-date-pickers": "^7.0.0 || ^8.0.0",
|
|
@@ -3,7 +3,7 @@ name: forest-alkemy-plus
|
|
|
3
3
|
description: Forest UI Design System rules for the Alkemy+ (charcoal/red) preset. Enforces correct imports, component usage, and theming with @matteoaliano/forest-ui. Use when the project uses forest-ui, forest-alkemy-plus preset, or when user builds UI components in a forest-ui project. Triggers on "forest", "forest-ui", "forest alkemy", "forest alkemy+", "@matteoaliano/forest-ui".
|
|
4
4
|
metadata:
|
|
5
5
|
author: Forest Design System
|
|
6
|
-
version: 0.8.
|
|
6
|
+
version: 0.8.2
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
# Forest UI — Alkemy+ Preset
|
|
@@ -20,10 +20,13 @@ metadata:
|
|
|
20
20
|
## Setup
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm install @matteoaliano/forest-ui
|
|
23
|
+
npm install @matteoaliano/forest-ui \
|
|
24
|
+
@mui/material@^7 @mui/icons-material@^7 \
|
|
25
|
+
@mui/x-charts@^7 @mui/x-data-grid@^7 @mui/x-date-pickers@^8 \
|
|
26
|
+
@emotion/react @emotion/styled dayjs
|
|
24
27
|
```
|
|
25
28
|
|
|
26
|
-
> **Note:**
|
|
29
|
+
> **Note:** Every `@mui/*` package above is a **peer dependency** of `@matteoaliano/forest-ui`. Install them at the pinned major versions shown — newer majors are not yet supported and will fail `npm install` with `ERESOLVE`. Always import components, hooks, and layout primitives from `@matteoaliano/forest-ui` (Forest UI re-exports them with branded defaults). The single exception is `@mui/icons-material` — import icons from there directly, using the Outlined variant (e.g. `import { CloseOutlined } from "@mui/icons-material"`).
|
|
27
30
|
|
|
28
31
|
```tsx
|
|
29
32
|
import { ForestProvider } from "@matteoaliano/forest-ui";
|