@kwantis-id3/frontend-library 0.24.0 → 0.25.0

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.
@@ -28,5 +28,5 @@ interface TextFieldProps {
28
28
  /** The type of the input (only string or number based inputs are currently supported) */
29
29
  type?: TInputType;
30
30
  }
31
- export declare const InputField: (props: TextFieldProps) => JSX.Element;
31
+ export declare const InputField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
32
32
  export {};
package/dist/index.d.ts CHANGED
@@ -118,7 +118,7 @@ interface TextFieldProps {
118
118
  /** The type of the input (only string or number based inputs are currently supported) */
119
119
  type?: TInputType;
120
120
  }
121
- declare const InputField: (props: TextFieldProps) => JSX.Element;
121
+ declare const InputField: React__default.ForwardRefExoticComponent<TextFieldProps & React__default.RefAttributes<HTMLInputElement>>;
122
122
 
123
123
  interface SingleSelectProps<Option = {
124
124
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kwantis-id3/frontend-library",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "Kwantis frontend components collection",
5
5
  "scriptsComments": {
6
6
  "storybook": "Starts storybook in development mode",