@mindly/ui-components 3.33.3 → 3.34.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.
- package/dist/cjs/index.js +6 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/lib/Inputs/LineFileInput/LineFileInput.d.ts +10 -0
- package/dist/cjs/types/lib/Inputs/LineFileInput/LineFileInput.style.d.ts +3 -0
- package/dist/cjs/types/lib/Inputs/LineFileInput/index.d.ts +1 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/esm/types/lib/Inputs/LineFileInput/LineFileInput.d.ts +10 -0
- package/dist/esm/types/lib/Inputs/LineFileInput/LineFileInput.style.d.ts +3 -0
- package/dist/esm/types/lib/Inputs/LineFileInput/index.d.ts +1 -0
- package/dist/index.d.ts +41 -32
- package/package.json +1 -1
|
@@ -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';
|