@zealicsolutions/web-ui 0.3.98 → 0.3.99
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/atoms/Input/Input.d.ts +1 -1
- package/dist/cjs/src/atoms/Input/Input.stories.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/atoms/Input/Input.d.ts +1 -1
- package/dist/esm/src/atoms/Input/Input.stories.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
@@ -36,4 +36,4 @@ export declare type InputProps = Partial<{
|
|
36
36
|
config?: MaskConfig;
|
37
37
|
state: FormStateType;
|
38
38
|
}>;
|
39
|
-
export declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => JSX.Element
|
39
|
+
export declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => JSX.Element;
|
@@ -32,7 +32,7 @@ declare const _default: {
|
|
32
32
|
maskPattern: (string | RegExp)[];
|
33
33
|
}> | undefined;
|
34
34
|
state: import("../..").FormStateType;
|
35
|
-
}>) => JSX.Element
|
35
|
+
}>) => JSX.Element;
|
36
36
|
};
|
37
37
|
export default _default;
|
38
38
|
export declare const Input: StoryFn<InputProps>;
|
package/dist/index.d.ts
CHANGED
@@ -200,7 +200,7 @@ declare type InputProps = Partial<{
|
|
200
200
|
config?: MaskConfig;
|
201
201
|
state: FormStateType$1;
|
202
202
|
}>;
|
203
|
-
declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => JSX.Element
|
203
|
+
declare const Input: ({ value, leftIcon, rightIcon, onChange, onBlur, disabled, isError, placeholder, isEditMode, type, internalConfig, config, ...rest }: InputProps) => JSX.Element;
|
204
204
|
|
205
205
|
declare type TextTypes = 'primary' | 'secondary' | 'error' | 'success';
|
206
206
|
declare type TextAlign = 'center' | 'right' | 'left';
|