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