@boyernick/standard-ui-react 0.2.2-canary.39 → 0.2.2-canary.40
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 +1 -1
- package/src/button.tsx +1 -1
- package/src/chart.tsx +6 -6
package/package.json
CHANGED
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-
|
|
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,12 @@ import {
|
|
|
18
18
|
import { cn } from "./lib/cn"
|
|
19
19
|
|
|
20
20
|
const chartColorVars = {
|
|
21
|
-
"--color-chart-1": "
|
|
22
|
-
"--color-chart-2": "
|
|
23
|
-
"--color-chart-3": "
|
|
24
|
-
"--color-chart-4": "
|
|
25
|
-
"--color-chart-5": "
|
|
26
|
-
"--color-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-neutral": "var(--chart-neutral)",
|
|
27
27
|
} as CSSProperties
|
|
28
28
|
|
|
29
29
|
export type ChartContainerProps = ComponentProps<"div"> & {
|