@agentero/design-system 0.23.0 → 0.23.2

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.23.0",
3
+ "version": "0.23.2",
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",
@@ -11,7 +11,9 @@ var c = t({
11
11
  "font-semibold rounded-md cursor-pointer",
12
12
  "bg-transparent no-underline",
13
13
  "border border-solid border-transparent",
14
- "transition-[background-color,border-color,color] duration-200",
14
+ "transition-[background-color,border-color,color,transform] duration-150",
15
+ "motion-safe:active:[transform:scale(0.97)]",
16
+ "motion-safe:active:ease-out-expo",
15
17
  "[-webkit-tap-highlight-color:transparent]",
16
18
  "[&_svg]:[flex:0_0_fit-content]",
17
19
  "[&_svg_path[fill]]:fill-current",
@@ -52,7 +54,8 @@ var c = t({
52
54
  "px-0 underline",
53
55
  "[text-underline-offset:var(--text-underline-offset)]",
54
56
  "text-text-button-link-enable",
55
- "[&_svg]:fill-icon-button-link-enable"
57
+ "[&_svg]:fill-icon-button-link-enable",
58
+ "motion-safe:active:[transform:none]"
56
59
  ]
57
60
  },
58
61
  size: {
@@ -63,7 +66,7 @@ var c = t({
63
66
  },
64
67
  status: { danger: "focus-visible:outline-focus-ring-button-destructive" },
65
68
  hasOnlyIcon: { true: "aspect-square px-0 min-w-[unset]" },
66
- disabled: { true: "cursor-not-allowed pointer-events-none" },
69
+ disabled: { true: "cursor-not-allowed pointer-events-none motion-safe:active:[transform:none]" },
67
70
  rounded: { true: "rounded-full" },
68
71
  align: {
69
72
  center: "justify-center",
@@ -17,7 +17,9 @@ var l = o({
17
17
  "min-w-8 h-8 px-1",
18
18
  "border border-solid border-transparent",
19
19
  "bg-bg-button-ghost-enable text-text-button-ghost-enable",
20
- "transition-[background-color,border-color,color] duration-200",
20
+ "transition-[background-color,border-color,color,transform] duration-150",
21
+ "motion-safe:active:[transform:scale(0.97)]",
22
+ "motion-safe:active:ease-out-expo",
21
23
  "disabled:pointer-events-none disabled:opacity-30",
22
24
  "focus-visible:outline-solid focus-visible:outline-2 focus-visible:outline-offset-[0.0625rem] focus-visible:outline-focus-ring-button-primary",
23
25
  "hover:not-aria-[current=page]:border-border-button-secondary-enable hover:not-aria-[current=page]:shadow-1",