property-practice-ui 0.4.2 → 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.
- package/CHANGELOG.md +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/molecules.cjs.map +1 -1
- package/dist/molecules.d.cts +2 -2
- package/dist/molecules.d.ts +2 -2
- package/dist/molecules.js.map +1 -1
- package/dist/organisms.cjs.map +1 -1
- package/dist/organisms.js.map +1 -1
- package/package.json +1 -1
- package/src/molecules/RadioGroup/RadioGroup.tsx +2 -2
package/dist/molecules.d.cts
CHANGED
|
@@ -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];
|
package/dist/molecules.d.ts
CHANGED
|
@@ -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];
|