@agentero/design-system 0.24.3 → 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 +1714 -1001
- package/mcp/manifests/components.json +6985 -1
- package/mcp/server.mjs +3921 -2320
- package/package.json +1 -1
- package/src/accordion/accordion.d.ts +35 -23
- package/src/accordion/accordion.js +1 -8
- package/src/accordion/index.d.ts +18 -1
- package/src/accordion/index.js +10 -2
- package/src/avatar-group/avatar-group.d.ts +2 -0
- package/src/avatar-group/avatar-group.js +0 -1
- package/src/button/button.js +0 -1
- package/src/check-list/check-list.d.ts +15 -14
- package/src/check-list/check-list.js +1 -6
- package/src/check-list/index.d.ts +11 -1
- package/src/check-list/index.js +8 -2
- package/src/command/command.d.ts +117 -43
- package/src/command/command.js +1 -9
- package/src/command/index.d.ts +86 -1
- package/src/command/index.js +12 -2
- package/src/data-table/data-table.d.ts +81 -46
- package/src/data-table/data-table.js +71 -78
- package/src/data-table/index.d.ts +175 -2
- package/src/data-table/index.js +22 -3
- package/src/data-table/table.d.ts +107 -44
- package/src/data-table/table.js +1 -12
- package/src/divider/divider.js +0 -1
- package/src/dropdown-menu/dropdown-menu.d.ts +254 -136
- package/src/dropdown-menu/dropdown-menu.js +1 -14
- package/src/dropdown-menu/index.d.ts +51 -1
- package/src/dropdown-menu/index.js +16 -2
- package/src/hover-card/hover-card.d.ts +40 -26
- package/src/hover-card/hover-card.js +1 -9
- package/src/hover-card/index.d.ts +20 -1
- package/src/hover-card/index.js +11 -2
- package/src/label/label.js +0 -1
- package/src/modal/index.d.ts +38 -1
- package/src/modal/index.js +14 -2
- package/src/modal/modal.d.ts +125 -81
- package/src/modal/modal.js +1 -11
- package/src/popover/index.d.ts +24 -1
- package/src/popover/index.js +12 -2
- package/src/popover/popover.d.ts +30 -30
- package/src/popover/popover.js +1 -10
- package/src/skeleton/skeleton.js +0 -1
- package/src/tag/tag.js +0 -1
- package/src/validation-list/validation-list.d.ts +2 -0
- package/src/validation-list/validation-list.js +0 -1
package/src/popover/popover.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
"use client";
|
|
2
1
|
import { tv as e } from "tailwind-variants";
|
|
3
2
|
import { jsx as t } from "react/jsx-runtime";
|
|
4
3
|
import * as n from "@radix-ui/react-popover";
|
|
@@ -41,13 +40,5 @@ var s = n.Portal, c = e({ base: [
|
|
|
41
40
|
...i
|
|
42
41
|
}) });
|
|
43
42
|
l.displayName = "Popover.Content";
|
|
44
|
-
var u = {
|
|
45
|
-
Root: r,
|
|
46
|
-
Trigger: i,
|
|
47
|
-
Anchor: a,
|
|
48
|
-
Close: o,
|
|
49
|
-
Portal: s,
|
|
50
|
-
Content: l
|
|
51
|
-
};
|
|
52
43
|
//#endregion
|
|
53
|
-
export {
|
|
44
|
+
export { a as Anchor, o as Close, l as Content, s as Portal, r as Root, i as Trigger, c as popoverRecipe };
|
package/src/skeleton/skeleton.js
CHANGED
package/src/tag/tag.js
CHANGED
|
@@ -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}
|