@stenajs-webui/forms 20.7.1 → 20.7.3
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/ui/radio/RadioButtonBox.d.ts +2 -2
- package/dist/index.es.js +144 -131
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
|
@@ -20,11 +20,11 @@ export interface RadioButtonBoxNoRightProps extends RadioButtonBoxCommonProps {
|
|
|
20
20
|
contentRight?: never;
|
|
21
21
|
}
|
|
22
22
|
export interface RadioButtonBoxIconProps extends RadioButtonBoxCommonProps {
|
|
23
|
-
icon
|
|
23
|
+
icon?: IconDefinition;
|
|
24
24
|
contentRight?: never;
|
|
25
25
|
}
|
|
26
26
|
export interface RadioButtonBoxContentRightProps extends RadioButtonBoxCommonProps {
|
|
27
27
|
icon?: never;
|
|
28
|
-
contentRight
|
|
28
|
+
contentRight?: ReactNode;
|
|
29
29
|
}
|
|
30
30
|
export declare const RadioButtonBox: React.FC<RadioButtonBoxProps>;
|