forstok-ui-lib 7.6.1 → 7.6.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/index.d.ts +5 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/emoji/styles.ts +2 -2
- package/src/components/radio/index.tsx +27 -4
package/dist/index.d.ts
CHANGED
|
@@ -745,9 +745,13 @@ type TRadio = InputHTMLAttributes<HTMLInputElement> & {
|
|
|
745
745
|
children?: ReactNode;
|
|
746
746
|
$mode?: string;
|
|
747
747
|
evChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
748
|
+
reset?: boolean;
|
|
749
|
+
setReset?: TState<boolean>;
|
|
750
|
+
isForceUpdate?: boolean;
|
|
751
|
+
setForceUpdate?: TState<boolean>;
|
|
748
752
|
'data-qa-id'?: string;
|
|
749
753
|
};
|
|
750
|
-
declare const RadioComponent: ({ children, $mode, evChange, ...props }: TRadio) => react_jsx_runtime.JSX.Element;
|
|
754
|
+
declare const RadioComponent: ({ children, $mode, evChange, reset, setReset, isForceUpdate, setForceUpdate, ...props }: TRadio) => react_jsx_runtime.JSX.Element;
|
|
751
755
|
|
|
752
756
|
type TInput = InputHTMLAttributes<HTMLInputElement> & {
|
|
753
757
|
reset?: boolean;
|