@chekinapp/ui 0.0.98 → 0.0.99

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.cts CHANGED
@@ -1827,7 +1827,7 @@ interface PopoverWithTooltipProps {
1827
1827
  }
1828
1828
  declare function PopoverWithTooltip({ children, popoverContent, tooltipContent, open, onOpenChange, popoverContentClassName, tooltipVariant, }: PopoverWithTooltipProps): react_jsx_runtime.JSX.Element;
1829
1829
 
1830
- type RadioSize = 'default' | 'm';
1830
+ type RadioSize = 'default' | 'm' | 'l';
1831
1831
  declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1832
1832
  interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> {
1833
1833
  size?: RadioSize;
package/dist/index.d.ts CHANGED
@@ -1827,7 +1827,7 @@ interface PopoverWithTooltipProps {
1827
1827
  }
1828
1828
  declare function PopoverWithTooltip({ children, popoverContent, tooltipContent, open, onOpenChange, popoverContentClassName, tooltipVariant, }: PopoverWithTooltipProps): react_jsx_runtime.JSX.Element;
1829
1829
 
1830
- type RadioSize = 'default' | 'm';
1830
+ type RadioSize = 'default' | 'm' | 'l';
1831
1831
  declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1832
1832
  interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> {
1833
1833
  size?: RadioSize;
package/dist/index.js CHANGED
@@ -7135,11 +7135,13 @@ var RadioGroup2 = React25.forwardRef(({ className, ...props }, ref) => /* @__PUR
7135
7135
  RadioGroup2.displayName = RadioGroupPrimitive.Root.displayName;
7136
7136
  var radioSizeClasses = {
7137
7137
  default: "h-4 w-4",
7138
- m: "h-5 w-5"
7138
+ m: "h-5 w-5",
7139
+ l: "h-6 w-6"
7139
7140
  };
7140
7141
  var indicatorSizeClasses = {
7141
7142
  default: "h-2 w-2",
7142
- m: "h-2.5 w-2.5"
7143
+ m: "h-2.5 w-2.5",
7144
+ l: "h-3 w-3"
7143
7145
  };
7144
7146
  var RadioGroupItem = React25.forwardRef(({ className, size = "default", ...props }, ref) => /* @__PURE__ */ jsx83(
7145
7147
  RadioGroupPrimitive.Item,