eai-frontend-components 2.0.76 → 2.0.77
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.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -105,7 +105,7 @@ declare const BreadcrumbEllipsis: {
|
|
|
105
105
|
};
|
|
106
106
|
|
|
107
107
|
declare const buttonVariants: (props?: ({
|
|
108
|
-
variant?: "
|
|
108
|
+
variant?: "link" | "default" | "secondary" | "destructive" | "outline" | "primary" | "ghost" | null | undefined;
|
|
109
109
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
110
110
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
111
111
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
package/dist/index.esm.js
CHANGED
|
@@ -1086,7 +1086,7 @@ const RadioGroup = React$1.forwardRef(({ className, ...props }, ref) => {
|
|
|
1086
1086
|
});
|
|
1087
1087
|
RadioGroup.displayName = RadioGroupPrimitive.Root.displayName;
|
|
1088
1088
|
const RadioGroupItem = React$1.forwardRef(({ className, ...props }, ref) => {
|
|
1089
|
-
return (jsx(RadioGroupPrimitive.Item, { ref: ref, className: cn('aspect-square h-
|
|
1089
|
+
return (jsx(RadioGroupPrimitive.Item, { ref: ref, className: cn('aspect-square h-3.5 w-3.5 rounded-full border border-primary text-primary ring-offset-background focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50', className), ...props, children: jsx(RadioGroupPrimitive.Indicator, { className: 'flex items-center justify-center', children: jsx(Circle, { className: 'h-2.5 w-2.5 fill-current text-current' }) }) }));
|
|
1090
1090
|
});
|
|
1091
1091
|
RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
1092
1092
|
|