@kwantis-id3/frontend-library 0.25.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
32
|
export declare const InputField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
32
33
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -117,6 +117,7 @@ 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
122
|
declare const InputField: React__default.ForwardRefExoticComponent<TextFieldProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
122
123
|
|