property-practice-ui 0.5.0 → 0.6.1

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.
@@ -186,14 +186,14 @@ interface ProductInfoItemProps {
186
186
  }
187
187
  declare const ProductInfo: ({ image, logoImage, title, buttonText, onButtonClick, titleVariant, titleColor, buttonArrowVariant, buttonTextBgVariant, buttonTextVariant, }: ProductInfoItemProps) => react_jsx_runtime.JSX.Element;
188
188
 
189
- type RadioGroupProps<T extends string | number> = {
189
+ type RadioGroupProps<T extends string | number | boolean> = {
190
190
  label?: string;
191
191
  options: readonly Option<T>[];
192
192
  value: T;
193
193
  onClick: (value: T) => void;
194
194
  className?: string;
195
195
  };
196
- declare const RadioGroup: <T extends string | number>({ label, options, value, onClick, className, }: RadioGroupProps<T>) => react_jsx_runtime.JSX.Element;
196
+ declare const RadioGroup: <T extends string | number | boolean>({ label, options, value, onClick, className, }: RadioGroupProps<T>) => react_jsx_runtime.JSX.Element;
197
197
 
198
198
  declare const variants: readonly ["primary", "secondary", "subtle"];
199
199
  type Variant = (typeof variants)[number];
@@ -186,14 +186,14 @@ interface ProductInfoItemProps {
186
186
  }
187
187
  declare const ProductInfo: ({ image, logoImage, title, buttonText, onButtonClick, titleVariant, titleColor, buttonArrowVariant, buttonTextBgVariant, buttonTextVariant, }: ProductInfoItemProps) => react_jsx_runtime.JSX.Element;
188
188
 
189
- type RadioGroupProps<T extends string | number> = {
189
+ type RadioGroupProps<T extends string | number | boolean> = {
190
190
  label?: string;
191
191
  options: readonly Option<T>[];
192
192
  value: T;
193
193
  onClick: (value: T) => void;
194
194
  className?: string;
195
195
  };
196
- declare const RadioGroup: <T extends string | number>({ label, options, value, onClick, className, }: RadioGroupProps<T>) => react_jsx_runtime.JSX.Element;
196
+ declare const RadioGroup: <T extends string | number | boolean>({ label, options, value, onClick, className, }: RadioGroupProps<T>) => react_jsx_runtime.JSX.Element;
197
197
 
198
198
  declare const variants: readonly ["primary", "secondary", "subtle"];
199
199
  type Variant = (typeof variants)[number];