@agentero/design-system 0.24.4 → 0.25.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/mcp/manifests/components.html +3976 -10132
- package/mcp/manifests/components.json +6985 -1
- package/mcp/server.mjs +3921 -2320
- package/package.json +5 -1
- package/src/avatar-group/avatar-group.d.ts +2 -0
- package/src/data-table/data-table.d.ts +1 -1
- package/src/data-table/data-table.js +74 -74
- package/src/data-table/icons.d.ts +0 -8
- package/src/data-table/icons.js +1 -12
- package/src/data-table/index.d.ts +89 -7
- package/src/data-table/index.js +10 -19
- package/src/table/icons.d.ts +9 -0
- package/src/table/icons.js +16 -0
- package/src/table/index.d.ts +57 -0
- package/src/table/index.js +15 -0
- package/src/{data-table → table}/table.d.ts +12 -12
- package/src/{data-table → table}/table.js +2 -2
- package/src/validation-list/validation-list.d.ts +2 -0
|
@@ -5,7 +5,7 @@ import { IconKeyboardArrowDown as n } from "./icons.js";
|
|
|
5
5
|
import { tv as r } from "tailwind-variants";
|
|
6
6
|
import { jsx as i } from "react/jsx-runtime";
|
|
7
7
|
import { createContext as a, use as o } from "react";
|
|
8
|
-
//#region src/
|
|
8
|
+
//#region src/table/table.tsx
|
|
9
9
|
var s = "ps-[var(--table-cell-padding-inline)] pe-[var(--table-cell-padding-inline)] first:ps-[var(--table-cell-padding-inline-ends)] last:pe-[var(--table-cell-padding-inline-ends)] has-[[type=checkbox]]:w-0 has-[[type=checkbox]]:pe-0", c = r({
|
|
10
10
|
slots: {
|
|
11
11
|
root: ["flex min-h-0 flex-1 flex-col overflow-hidden", "[--table-cell-padding-inline:1.25rem] [--table-cell-padding-inline-ends:1.25rem]"],
|
|
@@ -169,4 +169,4 @@ var E = r({ base: [
|
|
|
169
169
|
});
|
|
170
170
|
D.displayName = "Table.RowActions";
|
|
171
171
|
//#endregion
|
|
172
|
-
export { g as
|
|
172
|
+
export { g as Body, S as Cell, w as ExpandButton, T as ExpandedRow, h as Head, b as Header, m as Root, v as Row, D as RowActions, c as tableRecipe };
|
|
@@ -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}
|