@mindly/ui-components 3.58.0 → 3.59.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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Inputs/TextInput/TextInput.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Inputs/TextInput/TextInput.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,6 @@ import React from 'react';
|
|
|
2
2
|
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
3
3
|
isError?: boolean | undefined;
|
|
4
4
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
5
|
-
type?: "text" | "email" | undefined;
|
|
5
|
+
type?: "number" | "text" | "email" | undefined;
|
|
6
6
|
} & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>>;
|
|
7
7
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -1037,7 +1037,7 @@ declare const SpecialistCard: React.FC<SpecialistCardProps>;
|
|
|
1037
1037
|
declare const _default$a: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
1038
1038
|
isError?: boolean | undefined;
|
|
1039
1039
|
errorStyle?: "filled" | "unfilled" | undefined;
|
|
1040
|
-
type?: "text" | "email" | undefined;
|
|
1040
|
+
type?: "number" | "text" | "email" | undefined;
|
|
1041
1041
|
} & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>>;
|
|
1042
1042
|
|
|
1043
1043
|
declare const ImageInput: React.ForwardRefExoticComponent<{
|