@secondstaxorg/sscomp 1.9.37 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.9.37",
3
+ "version": "1.9.39",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -13,4 +13,11 @@ export interface EmailFieldProps extends React.InputHTMLAttributes<HTMLInputElem
13
13
  */
14
14
  initialVal?: string;
15
15
  width?: number | 'fit-content' | '100%';
16
+ /**
17
+ * Specify custom label for text displayed throughout component
18
+ */
19
+ labelOverrides?: {
20
+ requiredField?: string;
21
+ enterValidEmail?: string;
22
+ };
16
23
  }
@@ -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
  */