@sequencing/design-system 1.0.56 → 1.0.57
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/documentation.json +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Atoms/TextField/TextField.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/components/Atoms/TextField/TextField.d.ts +1 -1
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ export interface TextFieldProps {
|
|
|
20
20
|
/** Callback called when the input is clicked */
|
|
21
21
|
onClick?: (event: React.MouseEvent<HTMLInputElement>) => void;
|
|
22
22
|
/** Reference to the input element. You must provide it if you want to have clear button for uncontrolled input */
|
|
23
|
-
inputRef?: React.RefObject<HTMLInputElement
|
|
23
|
+
inputRef?: React.RefObject<HTMLInputElement> | null;
|
|
24
24
|
/** Icon to display inside the text field */
|
|
25
25
|
icon?: string;
|
|
26
26
|
/** Icon position in the text field. Make sense if icon string is provided */
|
package/dist/index.d.ts
CHANGED
|
@@ -178,7 +178,7 @@ interface TextFieldProps {
|
|
|
178
178
|
/** Callback called when the input is clicked */
|
|
179
179
|
onClick?: (event: React.MouseEvent<HTMLInputElement>) => void;
|
|
180
180
|
/** Reference to the input element. You must provide it if you want to have clear button for uncontrolled input */
|
|
181
|
-
inputRef?: React.RefObject<HTMLInputElement
|
|
181
|
+
inputRef?: React.RefObject<HTMLInputElement> | null;
|
|
182
182
|
/** Icon to display inside the text field */
|
|
183
183
|
icon?: string;
|
|
184
184
|
/** Icon position in the text field. Make sense if icon string is provided */
|