@secondstaxorg/sscomp 1.9.38 → 1.9.39
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 +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/FileUpload/type.d.ts +4 -0
package/package.json
CHANGED
|
@@ -23,6 +23,10 @@ export interface FileUploadProps {
|
|
|
23
23
|
* Maximum file size acceptable in Kilobytes
|
|
24
24
|
**/
|
|
25
25
|
maxFileSize?: number;
|
|
26
|
+
/**
|
|
27
|
+
* Manually specify the label for the accepted files in your own words
|
|
28
|
+
**/
|
|
29
|
+
customAcceptedFilesLabel?: string;
|
|
26
30
|
/**
|
|
27
31
|
* Specify custom label for text displayed throughout component
|
|
28
32
|
*/
|