@boyernick/standard-ui-react 0.2.2-canary.39 → 0.2.2-canary.41

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": "@boyernick/standard-ui-react",
3
- "version": "0.2.2-canary.39",
3
+ "version": "0.2.2-canary.41",
4
4
  "description": "React components for StandardUI",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/button.tsx CHANGED
@@ -25,7 +25,7 @@ const buttonVariants = cva(
25
25
  focusRing,
26
26
  ),
27
27
  destructive: cn(
28
- "border border-destructive-active bg-destructive text-white inset-shadow-solid-top hover:bg-destructive-active",
28
+ "border border-destructive-border bg-destructive text-destructive-foreground inset-shadow-solid-top hover:bg-destructive-hover active:bg-destructive-active",
29
29
  focusRingDestructive,
30
30
  ),
31
31
  },
package/src/chart.tsx CHANGED
@@ -18,12 +18,14 @@ import {
18
18
  import { cn } from "./lib/cn"
19
19
 
20
20
  const chartColorVars = {
21
- "--color-chart-1": "rgb(var(--chart-1))",
22
- "--color-chart-2": "rgb(var(--chart-2))",
23
- "--color-chart-3": "rgb(var(--chart-3))",
24
- "--color-chart-4": "rgb(var(--chart-4))",
25
- "--color-chart-5": "rgb(var(--chart-5))",
26
- "--color-chart-neutral": "rgb(var(--chart-neutral))",
21
+ "--color-chart-1": "var(--chart-1)",
22
+ "--color-chart-2": "var(--chart-2)",
23
+ "--color-chart-3": "var(--chart-3)",
24
+ "--color-chart-4": "var(--chart-4)",
25
+ "--color-chart-5": "var(--chart-5)",
26
+ "--color-chart-6": "var(--chart-6)",
27
+ "--color-chart-7": "var(--chart-7)",
28
+ "--color-chart-neutral": "var(--chart-neutral)",
27
29
  } as CSSProperties
28
30
 
29
31
  export type ChartContainerProps = ComponentProps<"div"> & {