@trafilea/afrodita-components 6.56.4 → 6.56.5
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/build/index.d.ts +4 -2
- package/build/index.esm.js +175 -140
- package/build/index.esm.js.map +1 -1
- package/build/index.js +175 -140
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -3423,8 +3423,9 @@ interface RadioGroupInputProps {
|
|
|
3423
3423
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
3424
3424
|
disabled?: boolean;
|
|
3425
3425
|
style?: react__default.CSSProperties;
|
|
3426
|
+
horizontal?: boolean;
|
|
3426
3427
|
}
|
|
3427
|
-
declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
|
|
3428
|
+
declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, horizontal, }: RadioGroupInputProps) => JSX.Element;
|
|
3428
3429
|
|
|
3429
3430
|
interface ClubRadioGroupInputProps {
|
|
3430
3431
|
name: string;
|
|
@@ -3450,8 +3451,9 @@ interface RadioProps {
|
|
|
3450
3451
|
labelStyle?: React.CSSProperties;
|
|
3451
3452
|
useV2Style?: boolean;
|
|
3452
3453
|
icon?: ReactNode;
|
|
3454
|
+
horizontal?: boolean;
|
|
3453
3455
|
}
|
|
3454
|
-
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, useV2Style, labelStyle, icon, }: RadioProps) => JSX.Element;
|
|
3456
|
+
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, useV2Style, labelStyle, icon, horizontal, }: RadioProps) => JSX.Element;
|
|
3455
3457
|
|
|
3456
3458
|
interface StarListProps {
|
|
3457
3459
|
rating: number;
|