@ahrowe/ui 0.2.9 → 0.3.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 +5 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1887 -1650
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/package/common/avatar/avatar.d.ts +4 -0
- package/dist/types/package/common/avatar/avatar.types.d.ts +26 -0
- package/dist/types/package/common/avatar/avatarGroup.d.ts +4 -0
- package/dist/types/package/common/avatar/index.d.ts +3 -0
- package/dist/types/package/common/badge/badge.d.ts +4 -0
- package/dist/types/package/common/badge/badge.types.d.ts +31 -0
- package/dist/types/package/common/badge/index.d.ts +2 -0
- package/dist/types/package/common/klipyPicker/components/gifPreview/gifPreview.types.d.ts +7 -0
- package/dist/types/package/common/klipyPicker/index.d.ts +2 -0
- package/dist/types/package/common/klipyPicker/klipyPicker.d.ts +3 -0
- package/dist/types/package/common/klipyPicker/klipyPicker.types.d.ts +8 -0
- package/dist/types/package/common/skeleton/index.d.ts +2 -0
- package/dist/types/package/common/skeleton/skeleton.d.ts +4 -0
- package/dist/types/package/common/skeleton/skeleton.types.d.ts +22 -0
- package/dist/types/package/common/switch/index.d.ts +2 -0
- package/dist/types/package/common/switch/switch.d.ts +4 -0
- package/dist/types/package/common/switch/switch.types.d.ts +19 -0
- package/dist/types/package/common/themeProvider/theme.types.d.ts +8 -0
- package/dist/types/package/index.d.ts +10 -2
- package/dist/types/package/services/{tenorService.d.ts → klipy.d.ts} +9 -9
- package/docs/Avatar.md +62 -0
- package/docs/Badge.md +52 -0
- package/docs/Button.md +21 -0
- package/docs/CLAUDE.md +5 -1
- package/docs/{TenorPicker.md → KlipyPicker.md} +11 -11
- package/docs/Skeleton.md +50 -0
- package/docs/Switch.md +50 -0
- package/docs/ThemeProvider.md +1 -0
- package/package.json +1 -1
- package/dist/types/package/common/tenorPicker/components/gifPreview/gifPreview.types.d.ts +0 -7
- package/dist/types/package/common/tenorPicker/index.d.ts +0 -2
- package/dist/types/package/common/tenorPicker/tenorPicker.d.ts +0 -3
- package/dist/types/package/common/tenorPicker/tenorPicker.types.d.ts +0 -8
- package/dist/types/package/services/tenor.service.d.ts +0 -2
- /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifPreview/gifPreview.d.ts +0 -0
- /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifPreview/index.d.ts +0 -0
- /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifView/gifView.d.ts +0 -0
- /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifView/gifView.types.d.ts +0 -0
- /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifView/index.d.ts +0 -0
package/README.md
CHANGED
|
@@ -61,6 +61,8 @@ This gives Claude three tools: `list_components`, `get_component_docs`, and `sea
|
|
|
61
61
|
| `Accordion` | Collapsible sections |
|
|
62
62
|
| `ActionButtons` | Submit / Cancel button pair |
|
|
63
63
|
| `ActionIcon` | Icon-only button |
|
|
64
|
+
| `Avatar` + `AvatarGroup` | User/entity image with initials/icon fallback and status dot, stackable |
|
|
65
|
+
| `Badge` | Count or status indicator, standalone or overlaid on another element |
|
|
64
66
|
| `BodyEnd` | Portal renderer to `#bodyEnd` |
|
|
65
67
|
| `Button` | Primary action button with loading state |
|
|
66
68
|
| `Card` + `CardHeader` + `CardMedia` + `CardContent` + `CardActions` | Surface container |
|
|
@@ -79,6 +81,7 @@ This gives Claude three tools: `list_components`, `get_component_docs`, and `sea
|
|
|
79
81
|
| `Input` | Floating-label text input (text, email, password, phone, search…) |
|
|
80
82
|
| `InteractableDiv` | Accessible clickable container |
|
|
81
83
|
| `KanbanBoard` + `KanbanColumn` | Drag-and-drop kanban board |
|
|
84
|
+
| `KlipyPicker` | GIF picker backed by the Klipy API |
|
|
82
85
|
| `Modal` | Full overlay dialog |
|
|
83
86
|
| `NumberInput` | Formatted numeric input |
|
|
84
87
|
| `OptionPicker` | Segmented single-choice control |
|
|
@@ -88,8 +91,9 @@ This gives Claude three tools: `list_components`, `get_component_docs`, and `sea
|
|
|
88
91
|
| `RoomDrawer` | Interactive floor-plan canvas |
|
|
89
92
|
| `ScrollbarProvider` | Custom scrollbar styling wrapper |
|
|
90
93
|
| `SearchInput` | Debounced search field with optional result count |
|
|
94
|
+
| `Skeleton` | Content-shaped loading placeholder (text/circle/rectangular) |
|
|
91
95
|
| `Stepper` | Step progress indicator |
|
|
92
|
-
| `
|
|
96
|
+
| `Switch` | Sliding boolean toggle |
|
|
93
97
|
| `Textarea` | Multiline text input |
|
|
94
98
|
| `ThemeProvider` + `useTheme` | Theme context and CSS variables |
|
|
95
99
|
| `Tooltip` | Info / error / details tooltip |
|