myoperator-ui 0.0.23 → 0.0.25

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 (2) hide show
  1. package/dist/index.js +10 -10
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -62,25 +62,25 @@ import { Loader2 } from "lucide-react"
62
62
  import { cn } from "@/lib/utils"
63
63
 
64
64
  const buttonVariants = cva(
65
- "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[#1e293b] focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
65
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[#1e293b] focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
66
66
  {
67
67
  variants: {
68
68
  variant: {
69
- default: "bg-[#343E55] text-white hover:bg-[#343E55]/90",
69
+ default: "bg-[#343E55] text-white border-0 hover:bg-[#343E55]/90",
70
70
  destructive:
71
- "bg-[#ef4444] text-white hover:bg-[#ef4444]/90",
71
+ "bg-[#ef4444] text-white border-0 hover:bg-[#ef4444]/90",
72
72
  outline:
73
73
  "border border-[#343E55] bg-transparent text-[#343E55] hover:bg-[#343E55] hover:text-white",
74
74
  secondary:
75
- "bg-[#343E55]/20 text-[#343E55] hover:bg-[#343E55]/30",
76
- ghost: "hover:bg-[#343E55]/10 hover:text-[#343E55]",
77
- link: "text-[#343E55] underline-offset-4 hover:underline",
75
+ "bg-[#343E55]/20 text-[#343E55] border-0 hover:bg-[#343E55]/30",
76
+ ghost: "border-0 hover:bg-[#343E55]/10 hover:text-[#343E55]",
77
+ link: "text-[#343E55] border-0 underline-offset-4 hover:underline",
78
78
  },
79
79
  size: {
80
- default: "h-10 py-2.5 px-4",
81
- sm: "h-9 py-2 px-3 text-xs",
82
- lg: "h-11 py-3 px-6",
83
- icon: "h-10 w-10 p-2.5",
80
+ default: "h-10 px-4 py-2",
81
+ sm: "h-9 rounded-md px-3",
82
+ lg: "h-11 rounded-md px-8",
83
+ icon: "h-10 w-10",
84
84
  },
85
85
  },
86
86
  defaultVariants: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",