@particle-academy/react-fancy 1.5.1 → 1.7.0
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 +14 -2
- package/dist/index.cjs +1062 -392
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +98 -16
- package/dist/index.d.ts +98 -16
- package/dist/index.js +1064 -394
- package/dist/index.js.map +1 -1
- package/dist/styles.css +57 -0
- package/dist/styles.css.map +1 -1
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -77,6 +77,7 @@ npx vite build # Build demo app (verifies imports work)
|
|
|
77
77
|
| RadioGroup | Radio button group |
|
|
78
78
|
| Switch | Toggle switch |
|
|
79
79
|
| Slider | Range slider (single and range modes) |
|
|
80
|
+
| MultiSwitch | Segmented toggle between multiple options |
|
|
80
81
|
| DatePicker | Date selection (single and range modes) |
|
|
81
82
|
| Autocomplete | Input with filtered dropdown suggestions, async search, keyboard nav |
|
|
82
83
|
| Pillbox | Tag/pill input with add/remove, backspace delete |
|
|
@@ -101,7 +102,7 @@ npx vite build # Build demo app (verifies imports work)
|
|
|
101
102
|
| Profile | Avatar + name + subtitle layout |
|
|
102
103
|
| Card | Container with Header, Body, Footer compound slots |
|
|
103
104
|
| Callout | Alert/info box with icon, color, and dismissible support |
|
|
104
|
-
| Timeline |
|
|
105
|
+
| Timeline | Stacked, alternating, and horizontal timeline with data-driven or compound API |
|
|
105
106
|
|
|
106
107
|
### Overlay & Floating
|
|
107
108
|
|
|
@@ -132,7 +133,18 @@ npx vite build # Build demo app (verifies imports work)
|
|
|
132
133
|
| Composer | Chat-style message input composing textarea + actions |
|
|
133
134
|
| Chart | SVG-based Bar and Donut charts |
|
|
134
135
|
| Editor | Toolbar chrome wrapper for contentEditable |
|
|
135
|
-
| Kanban | Drag-and-drop board with columns and cards
|
|
136
|
+
| Kanban | Drag-and-drop board with columns and cards |
|
|
137
|
+
| Canvas | Interactive node canvas with pan, zoom, and connections |
|
|
138
|
+
| Diagram | Entity-relationship diagram with draggable nodes and relation lines |
|
|
139
|
+
| ContentRenderer | Markdown/HTML content renderer |
|
|
140
|
+
|
|
141
|
+
### Menus & Navigation
|
|
142
|
+
|
|
143
|
+
| Component | Description |
|
|
144
|
+
|-----------|-------------|
|
|
145
|
+
| Menu | Hierarchical menu with nested items |
|
|
146
|
+
| Sidebar | Collapsible sidebar navigation |
|
|
147
|
+
| MobileMenu | Responsive mobile navigation overlay |
|
|
136
148
|
|
|
137
149
|
### Utilities & Hooks
|
|
138
150
|
|