@secondstaxorg/sscomp 2.0.65 → 2.0.67

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": "2.0.65",
3
+ "version": "2.0.67",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -63,7 +63,12 @@ export interface AmountInputProps {
63
63
  selectCountryCodeMsg?: string;
64
64
  requiredFieldMsg?: string;
65
65
  searchCountryPlaceholder?: string;
66
+ minimumAmountMsg?: string;
66
67
  };
68
+ /**
69
+ * Specify the minimum amount that can be inputted into the field
70
+ */
71
+ minimumAmount?: number;
67
72
  }
68
73
  export type currencyCodesType = {
69
74
  "country": string;
@@ -35,5 +35,5 @@ export interface PopupModalProps {
35
35
  /**
36
36
  * Add custom JSX code to the content area of the modal. If provided, `content`, `primaryAction` and `primaryBtnText` are replaced
37
37
  */
38
- jsxCode?: React.ReactNode;
38
+ children?: React.ReactNode;
39
39
  }