@secondstaxorg/sscomp 1.8.82 → 1.8.84

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.8.82",
3
+ "version": "1.8.84",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -1,6 +1,6 @@
1
1
  export interface SelectorProps {
2
2
  /**
3
- * Array of countries containing objects of country name, country short name, country flag and subname to be used in the case of selecting currencies
3
+ * Array of countries containing objects of country name country short name country flag and subname to be used in the case of selecting currencies
4
4
  */
5
5
  options: optionType[];
6
6
  /**
@@ -39,6 +39,10 @@ export interface SelectorProps {
39
39
  * Specify whether the component is a readonly field
40
40
  */
41
41
  readonly?: boolean;
42
+ /**
43
+ * Array containing list of items to be bubbled up to the top above all others
44
+ */
45
+ priorityOptions?: string[];
42
46
  }
43
47
  export declare type optionType = {
44
48
  optionName: string;
@@ -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 FileTypeText: import("styled-components").StyledComponent<"p", any, {}, never>;
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
  }