@arach/arc 0.2.3 → 0.2.5
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 +9 -0
- package/dist/arc.es.js +27248 -5106
- package/dist/arc.umd.js +118 -109
- package/dist/index.d.ts +33 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,6 +48,15 @@ const diagram: ArcDiagramData = {
|
|
|
48
48
|
export default diagram
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
+
## Requirements
|
|
52
|
+
|
|
53
|
+
The `ArcDiagram` player component requires:
|
|
54
|
+
|
|
55
|
+
- **Tailwind CSS v3+** - Component uses Tailwind utility classes for styling
|
|
56
|
+
- **Default color palette** - The following colors must be available: `violet`, `emerald`, `blue`, `amber`, `sky`, `zinc`, `rose`, `orange`
|
|
57
|
+
|
|
58
|
+
If you're using a custom Tailwind config that restricts the color palette, ensure these colors are included.
|
|
59
|
+
|
|
51
60
|
## Tech Stack
|
|
52
61
|
|
|
53
62
|
- React 19
|