@agentero/design-system 0.24.4 → 0.24.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentero/design-system",
3
- "version": "0.24.4",
3
+ "version": "0.24.5",
4
4
  "description": "A React component library built with Tailwind CSS v4 and Radix UI primitives",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -106,6 +106,8 @@ export type AvatarGroupProps = Omit<ComponentPropsWithRef<'div'>, 'children'> &
106
106
  * directly — the group clones each to force a uniform `size`/`variant` and the
107
107
  * overlap, so wrapped children won't pick those up.
108
108
  *
109
+ * @summary Overlapping row of avatars, collapsing the rest into `+N`
110
+ *
109
111
  * @example
110
112
  * <AvatarGroup size="sm" max={3}>
111
113
  * <Avatar fallback="AL" colorize="Ada Lovelace" />
@@ -51,6 +51,8 @@ export type ValidationListProps = Omit<ComponentPropsWithRef<'ul'>, 'children'>
51
51
  * per rule, each matched via a `RegExp` or a `(value) => boolean` predicate.
52
52
  * Presentational only; pair it with your form validation.
53
53
  *
54
+ * @summary Checklist of rules that turn active as the value satisfies them
55
+ *
54
56
  * @example
55
57
  * <ValidationList
56
58
  * value={password}