@apexcura/ui-components 0.0.16-Beta1165 → 0.0.16-Beta1166
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/Components/RadioElement.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
|
@@ -8,8 +8,9 @@ type radioValueProps = {
|
|
|
8
8
|
value?: string | undefined;
|
|
9
9
|
} | undefined;
|
|
10
10
|
};
|
|
11
|
-
interface RadioElementProps extends ElementType {
|
|
11
|
+
interface RadioElementProps extends Omit<ElementType, 'variant'> {
|
|
12
12
|
value?: radioValueProps | null;
|
|
13
|
+
variant?: 'button' | 'circled';
|
|
13
14
|
}
|
|
14
15
|
export declare const RadioElement: (props: RadioElementProps) => React.JSX.Element;
|
|
15
16
|
export {};
|