@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/mcp/manifests/components.html +3975 -10131
- package/mcp/manifests/components.json +6985 -1
- package/mcp/server.mjs +3921 -2320
- package/package.json +1 -1
- package/src/avatar-group/avatar-group.d.ts +2 -0
- package/src/validation-list/validation-list.d.ts +2 -0
package/package.json
CHANGED
|
@@ -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}
|