@secondstaxorg/sscomp 2.0.59 → 2.0.62

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.59",
3
+ "version": "2.0.62",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -27,4 +27,8 @@ export interface PopupModalProps {
27
27
  * Callback function to close the modal
28
28
  */
29
29
  closeFxn: () => void;
30
+ /**
31
+ * Toggle to show or hide the modal based on boolean value passed to it
32
+ */
33
+ showModal: boolean;
30
34
  }