@sarunyu/system-one 4.9.31 → 4.9.34

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/AGENTS.md CHANGED
@@ -26,6 +26,9 @@ in this package.** This file is the short version: the rules you must follow.
26
26
  - Notification bell + list panel → use `<Notification>`. Never use `<Badge variant="notification">` standalone or wire it to a custom `onClick` (toast, popover, etc.) — `<Notification>` handles both the bell and the panel.
27
27
  - User profile photos, initials circles, or silhouette placeholders → use `<Avatar>`. For grouped users, use `<AvatarStack>`. Never hand-roll `<img>` or `<div>` avatar shapes.
28
28
  - Custom breadcrumb / navigation trails → use `<Breadcrumb>`.
29
+ - Custom numbered pagination, banner slide dots, or carousel progress bars → use `<Pagination>` / `<PaginationBanner>` / `<PaginationCarousel>`.
30
+ - Custom tooltips, `title` attributes, or hand-rolled hover popovers → use `<Tooltip>`.
31
+ - Custom floating panels triggered by click, hand-rolled popovers with `useState` + absolute positioning → use `<Popover>`.
29
32
 
30
33
  2. **Use token-backed Tailwind classes for color.** Never emit hard-coded colors:
31
34
  - Hex (`#3b82f6`), arbitrary (`bg-[#...]`), and palette utilities
package/DESIGN.md CHANGED
@@ -248,9 +248,9 @@ Use sparingly. Corporate UIs prefer border separation over heavy elevation.
248
248
 
249
249
  ## Component library
250
250
 
251
- This design system ships 27 pre-built components. **Always use them — never recreate with raw HTML.**
251
+ This design system ships 30 pre-built components. **Always use them — never recreate with raw HTML.**
252
252
 
253
- Key components: `Button`, `Input`, `TextArea`, `SearchInput`, `Dropdown`, `DropdownMultiple`, `Checkbox`, `Radio`, `Toggle`, `DateInput`, `TimeInput`, `Avatar`, `AvatarStack`, `Breadcrumb`, `Tag`, `StatusTag`, `Chip`, `TabGroup`, `Card`, `Table` + `TableRow` + `TableHeaderCell` + `TableCell`, `Modal`, `BottomSheet`, `Alert`, `Toast`, `ToastStack`, `Notification`, `Badge`.
253
+ Key components: `Button`, `Input`, `TextArea`, `SearchInput`, `Dropdown`, `DropdownMultiple`, `Checkbox`, `Radio`, `Toggle`, `DateInput`, `TimeInput`, `Avatar`, `AvatarStack`, `Breadcrumb`, `Pagination`, `PaginationBanner`, `PaginationCarousel`, `Tag`, `StatusTag`, `Chip`, `TabGroup`, `Card`, `Table` + `TableRow` + `TableHeaderCell` + `TableCell`, `Modal`, `BottomSheet`, `Alert`, `Toast`, `ToastStack`, `Notification`, `Badge`, `Tooltip`, `Popover`.
254
254
 
255
255
  For props, variants, and usage rules → read `AGENTS.md` and `llms.txt` in this package.
256
256