@nurix/ui-component-library 1.1.1 → 1.1.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/dist/index.js +1 -3
- package/dist/index.mjs +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -52,7 +52,7 @@ var BUTTON_TOKENS = {
|
|
|
52
52
|
variants: {
|
|
53
53
|
variant: {
|
|
54
54
|
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
|
55
|
-
destructive: "bg-
|
|
55
|
+
destructive: "bg-purple-500 text-white hover:bg-purple-600",
|
|
56
56
|
outline: "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
|
|
57
57
|
secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
|
58
58
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
@@ -98,8 +98,6 @@ var buttonVariants = (0, import_class_variance_authority.cva)(BUTTON_TOKENS.base
|
|
|
98
98
|
variants: BUTTON_TOKENS.variants,
|
|
99
99
|
defaultVariants: BUTTON_TOKENS.defaults
|
|
100
100
|
});
|
|
101
|
-
console.log("buttonVariants", buttonVariants);
|
|
102
|
-
console.log("comment in main");
|
|
103
101
|
var Button = React.forwardRef(
|
|
104
102
|
({
|
|
105
103
|
className,
|
package/dist/index.mjs
CHANGED
|
@@ -15,7 +15,7 @@ var BUTTON_TOKENS = {
|
|
|
15
15
|
variants: {
|
|
16
16
|
variant: {
|
|
17
17
|
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
|
18
|
-
destructive: "bg-
|
|
18
|
+
destructive: "bg-purple-500 text-white hover:bg-purple-600",
|
|
19
19
|
outline: "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
|
|
20
20
|
secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
|
21
21
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
@@ -61,8 +61,6 @@ var buttonVariants = cva(BUTTON_TOKENS.base, {
|
|
|
61
61
|
variants: BUTTON_TOKENS.variants,
|
|
62
62
|
defaultVariants: BUTTON_TOKENS.defaults
|
|
63
63
|
});
|
|
64
|
-
console.log("buttonVariants", buttonVariants);
|
|
65
|
-
console.log("comment in main");
|
|
66
64
|
var Button = React.forwardRef(
|
|
67
65
|
({
|
|
68
66
|
className,
|