@secondstaxorg/sscomp 1.8.82 → 1.8.83
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/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +24 -22
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/FileUpload/style.d.ts +1 -1
- package/types/components/FileUpload/type.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
2
|
export declare const ErrorText: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const FileRequirementsText: import("styled-components").StyledComponent<"p", any, {}, never>;
|
|
@@ -19,4 +19,8 @@ export interface FileUploadProps {
|
|
|
19
19
|
* Specify the accepted file type using standard html values for the 'accept' prop. Eg. **'image/jpeg'** or **'.jpg'** or **'.jpg,.docx,.pptx'**
|
|
20
20
|
**/
|
|
21
21
|
accept?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Maximum file size acceptable in Kilobytes
|
|
24
|
+
**/
|
|
25
|
+
maxFileSize?: number;
|
|
22
26
|
}
|