@hybr1d-tech/charizard 0.7.30 → 0.7.32
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/hybr1d-ui.js +2209 -2202
- package/dist/hybr1d-ui.umd.cjs +12 -12
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1985,7 +1985,7 @@ declare type ProgressProps = {
|
|
|
1985
1985
|
onSkipClick?: () => void;
|
|
1986
1986
|
};
|
|
1987
1987
|
|
|
1988
|
-
export declare function RadioGroup({ items, radioHeading, defaultValue, onChange, required, errorMsg, optionsContainerStyles, disabled, showSkeleton, }: RadioGroupProps): JSX_2.Element;
|
|
1988
|
+
export declare function RadioGroup({ items, radioHeading, defaultValue, onChange, required, errorMsg, optionsContainerStyles, disabled, showSkeleton, handleClickManually, }: RadioGroupProps): JSX_2.Element;
|
|
1989
1989
|
|
|
1990
1990
|
declare interface RadioGroupProps {
|
|
1991
1991
|
/**
|
|
@@ -2028,6 +2028,7 @@ declare interface RadioGroupProps {
|
|
|
2028
2028
|
optionsContainerStyles?: React_2.CSSProperties;
|
|
2029
2029
|
disabled?: boolean;
|
|
2030
2030
|
showSkeleton?: boolean;
|
|
2031
|
+
handleClickManually?: boolean;
|
|
2031
2032
|
}
|
|
2032
2033
|
|
|
2033
2034
|
export declare function Search({ id, search, setSearch, placeholder, clearIconClearFn, customStyles, disabled, }: SearchProps): JSX_2.Element;
|