@mindly/ui-components 3.33.1 → 3.33.3
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 +21 -21
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/CustomButton/CustomButton.d.ts +1 -1
- package/dist/cjs/types/lib/Inputs/ImageInput/ImageInput.d.ts +1 -0
- package/dist/cjs/types/lib/Inputs/TextInput/TextInput.d.ts +1 -0
- package/dist/cjs/types/lib/Inputs/TextInput/TextInput.style.d.ts +5 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/CustomButton/CustomButton.d.ts +1 -1
- package/dist/esm/types/lib/Inputs/ImageInput/ImageInput.d.ts +1 -0
- package/dist/esm/types/lib/Inputs/TextInput/TextInput.d.ts +1 -0
- package/dist/esm/types/lib/Inputs/TextInput/TextInput.style.d.ts +5 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -7,5 +7,6 @@ declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
|
7
7
|
onCloseClick?: (() => void) | undefined;
|
|
8
8
|
isVideoContent?: boolean | undefined;
|
|
9
9
|
isError?: boolean | undefined;
|
|
10
|
+
loadedFileValue?: string | undefined;
|
|
10
11
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
11
12
|
export default ImageInput;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
3
3
|
isError?: boolean | undefined;
|
|
4
|
+
errorStyle?: "filled" | "unfilled" | undefined;
|
|
4
5
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>>;
|
|
5
6
|
export default _default;
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
declare type StyledTextInputProps = {
|
|
2
|
+
errorStyle?: 'filled' | 'unfilled';
|
|
3
|
+
};
|
|
4
|
+
export declare const StyledTextInput: import("styled-components").StyledComponent<"input", any, StyledTextInputProps, never>;
|
|
5
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -887,6 +887,7 @@ declare const SpecialistCard: React.FC<SpecialistCardProps>;
|
|
|
887
887
|
|
|
888
888
|
declare const _default$5: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
|
|
889
889
|
isError?: boolean | undefined;
|
|
890
|
+
errorStyle?: "filled" | "unfilled" | undefined;
|
|
890
891
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>>;
|
|
891
892
|
|
|
892
893
|
declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
@@ -897,6 +898,7 @@ declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
|
897
898
|
onCloseClick?: (() => void) | undefined;
|
|
898
899
|
isVideoContent?: boolean | undefined;
|
|
899
900
|
isError?: boolean | undefined;
|
|
901
|
+
loadedFileValue?: string | undefined;
|
|
900
902
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
901
903
|
|
|
902
904
|
declare const PasswordInput: React.ForwardRefExoticComponent<{
|
|
@@ -915,7 +917,7 @@ declare const _default$3: React.MemoExoticComponent<React.ForwardRefExoticCompon
|
|
|
915
917
|
isError?: boolean | undefined;
|
|
916
918
|
} & React.SelectHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>>>;
|
|
917
919
|
|
|
918
|
-
declare type PossibleButtonTypes = 'primary';
|
|
920
|
+
declare type PossibleButtonTypes = 'primary' | 'secondary';
|
|
919
921
|
declare type ButtonProps = {
|
|
920
922
|
buttonType: PossibleButtonTypes;
|
|
921
923
|
borderRadius?: number;
|