@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.
Files changed (47) hide show
  1. package/mcp/manifests/components.html +1714 -1001
  2. package/mcp/manifests/components.json +6985 -1
  3. package/mcp/server.mjs +3921 -2320
  4. package/package.json +1 -1
  5. package/src/accordion/accordion.d.ts +35 -23
  6. package/src/accordion/accordion.js +1 -8
  7. package/src/accordion/index.d.ts +18 -1
  8. package/src/accordion/index.js +10 -2
  9. package/src/avatar-group/avatar-group.d.ts +2 -0
  10. package/src/avatar-group/avatar-group.js +0 -1
  11. package/src/button/button.js +0 -1
  12. package/src/check-list/check-list.d.ts +15 -14
  13. package/src/check-list/check-list.js +1 -6
  14. package/src/check-list/index.d.ts +11 -1
  15. package/src/check-list/index.js +8 -2
  16. package/src/command/command.d.ts +117 -43
  17. package/src/command/command.js +1 -9
  18. package/src/command/index.d.ts +86 -1
  19. package/src/command/index.js +12 -2
  20. package/src/data-table/data-table.d.ts +81 -46
  21. package/src/data-table/data-table.js +71 -78
  22. package/src/data-table/index.d.ts +175 -2
  23. package/src/data-table/index.js +22 -3
  24. package/src/data-table/table.d.ts +107 -44
  25. package/src/data-table/table.js +1 -12
  26. package/src/divider/divider.js +0 -1
  27. package/src/dropdown-menu/dropdown-menu.d.ts +254 -136
  28. package/src/dropdown-menu/dropdown-menu.js +1 -14
  29. package/src/dropdown-menu/index.d.ts +51 -1
  30. package/src/dropdown-menu/index.js +16 -2
  31. package/src/hover-card/hover-card.d.ts +40 -26
  32. package/src/hover-card/hover-card.js +1 -9
  33. package/src/hover-card/index.d.ts +20 -1
  34. package/src/hover-card/index.js +11 -2
  35. package/src/label/label.js +0 -1
  36. package/src/modal/index.d.ts +38 -1
  37. package/src/modal/index.js +14 -2
  38. package/src/modal/modal.d.ts +125 -81
  39. package/src/modal/modal.js +1 -11
  40. package/src/popover/index.d.ts +24 -1
  41. package/src/popover/index.js +12 -2
  42. package/src/popover/popover.d.ts +30 -30
  43. package/src/popover/popover.js +1 -10
  44. package/src/skeleton/skeleton.js +0 -1
  45. package/src/tag/tag.js +0 -1
  46. package/src/validation-list/validation-list.d.ts +2 -0
  47. package/src/validation-list/validation-list.js +0 -1
@@ -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 { u as Popover, c as popoverRecipe };
44
+ export { a as Anchor, o as Close, l as Content, s as Portal, r as Root, i as Trigger, c as popoverRecipe };
@@ -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
  //#region src/skeleton/skeleton.tsx
package/src/tag/tag.js CHANGED
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { cn as e } from "../../lib/utils.js";
3
2
  import { tv as t } from "tailwind-variants";
4
3
  import { jsx as n } from "react/jsx-runtime";
@@ -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}
@@ -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
  //#region src/validation-list/validation-list.tsx