@mindly/ui-components 3.33.2 → 3.34.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.
@@ -153,3 +153,5 @@ export { default as ChevronHeader } from './lib/ChevronHeader';
153
153
  export * from './lib/ChevronHeader';
154
154
  export { default as ProgressBar } from './lib/ProgressBar';
155
155
  export * from './lib/ProgressBar';
156
+ export { default as LineFileInput } from './lib/Inputs/LineFileInput';
157
+ export * from './lib/Inputs/LineFileInput';
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<{
3
+ title: string;
4
+ subTitle?: string | undefined;
5
+ isError?: boolean | undefined;
6
+ loadedFileValue?: string | undefined;
7
+ onCloseClick?: (() => void) | undefined;
8
+ buttonLabel?: string | undefined;
9
+ } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>>;
10
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const LineFileInputWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const LineFileInputImage: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const LineFileInputCloseBtn: import("styled-components").StyledComponent<"button", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './LineFileInput';
@@ -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
- export declare const StyledTextInput: import("styled-components").StyledComponent<"input", any, {}, never>;
1
+ declare type StyledTextInputProps = {
2
+ errorStyle?: 'filled' | 'unfilled';
3
+ };
4
+ export declare const StyledTextInput: import("styled-components").StyledComponent<"input", any, StyledTextInputProps, never>;
5
+ export {};