@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.
Files changed (45) hide show
  1. package/README.md +5 -1
  2. package/dist/index.cjs +4 -4
  3. package/dist/index.cjs.map +1 -1
  4. package/dist/index.mjs +1887 -1650
  5. package/dist/index.mjs.map +1 -1
  6. package/dist/style.css +1 -1
  7. package/dist/types/package/common/avatar/avatar.d.ts +4 -0
  8. package/dist/types/package/common/avatar/avatar.types.d.ts +26 -0
  9. package/dist/types/package/common/avatar/avatarGroup.d.ts +4 -0
  10. package/dist/types/package/common/avatar/index.d.ts +3 -0
  11. package/dist/types/package/common/badge/badge.d.ts +4 -0
  12. package/dist/types/package/common/badge/badge.types.d.ts +31 -0
  13. package/dist/types/package/common/badge/index.d.ts +2 -0
  14. package/dist/types/package/common/klipyPicker/components/gifPreview/gifPreview.types.d.ts +7 -0
  15. package/dist/types/package/common/klipyPicker/index.d.ts +2 -0
  16. package/dist/types/package/common/klipyPicker/klipyPicker.d.ts +3 -0
  17. package/dist/types/package/common/klipyPicker/klipyPicker.types.d.ts +8 -0
  18. package/dist/types/package/common/skeleton/index.d.ts +2 -0
  19. package/dist/types/package/common/skeleton/skeleton.d.ts +4 -0
  20. package/dist/types/package/common/skeleton/skeleton.types.d.ts +22 -0
  21. package/dist/types/package/common/switch/index.d.ts +2 -0
  22. package/dist/types/package/common/switch/switch.d.ts +4 -0
  23. package/dist/types/package/common/switch/switch.types.d.ts +19 -0
  24. package/dist/types/package/common/themeProvider/theme.types.d.ts +8 -0
  25. package/dist/types/package/index.d.ts +10 -2
  26. package/dist/types/package/services/{tenorService.d.ts → klipy.d.ts} +9 -9
  27. package/docs/Avatar.md +62 -0
  28. package/docs/Badge.md +52 -0
  29. package/docs/Button.md +21 -0
  30. package/docs/CLAUDE.md +5 -1
  31. package/docs/{TenorPicker.md → KlipyPicker.md} +11 -11
  32. package/docs/Skeleton.md +50 -0
  33. package/docs/Switch.md +50 -0
  34. package/docs/ThemeProvider.md +1 -0
  35. package/package.json +1 -1
  36. package/dist/types/package/common/tenorPicker/components/gifPreview/gifPreview.types.d.ts +0 -7
  37. package/dist/types/package/common/tenorPicker/index.d.ts +0 -2
  38. package/dist/types/package/common/tenorPicker/tenorPicker.d.ts +0 -3
  39. package/dist/types/package/common/tenorPicker/tenorPicker.types.d.ts +0 -8
  40. package/dist/types/package/services/tenor.service.d.ts +0 -2
  41. /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifPreview/gifPreview.d.ts +0 -0
  42. /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifPreview/index.d.ts +0 -0
  43. /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifView/gifView.d.ts +0 -0
  44. /package/dist/types/package/common/{tenorPicker → klipyPicker}/components/gifView/gifView.types.d.ts +0 -0
  45. /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
- | `TenorPicker` | GIF picker backed by the Tenor API |
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 |