@sproutsocial/seeds-react-radio 1.1.0 → 1.2.1
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/esm/index.js +36 -4990
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +45 -4971
- package/dist/index.js.map +1 -1
- package/package.json +8 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { TypeStyledComponentsCommonProps, TypeSystemCommonProps } from '@sproutsocial/seeds-react-system-props';
|
|
3
4
|
|
|
@@ -29,7 +30,7 @@ declare class Radio extends React.Component<TypeRadioProps> {
|
|
|
29
30
|
handleChange: (e: React.SyntheticEvent<HTMLInputElement>) => void;
|
|
30
31
|
handleFocus: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
31
32
|
handleBlur: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
32
|
-
render():
|
|
33
|
+
render(): react_jsx_runtime.JSX.Element;
|
|
33
34
|
}
|
|
34
35
|
|
|
35
36
|
export { Radio, type TypeRadioProps, Radio as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { TypeStyledComponentsCommonProps, TypeSystemCommonProps } from '@sproutsocial/seeds-react-system-props';
|
|
3
4
|
|
|
@@ -29,7 +30,7 @@ declare class Radio extends React.Component<TypeRadioProps> {
|
|
|
29
30
|
handleChange: (e: React.SyntheticEvent<HTMLInputElement>) => void;
|
|
30
31
|
handleFocus: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
31
32
|
handleBlur: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
32
|
-
render():
|
|
33
|
+
render(): react_jsx_runtime.JSX.Element;
|
|
33
34
|
}
|
|
34
35
|
|
|
35
36
|
export { Radio, type TypeRadioProps, Radio as default };
|