@secondstaxorg/sscomp 1.9.64 → 1.9.65

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.64",
3
+ "version": "1.9.65",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,2 @@
1
+ export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const TextArea: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1,10 @@
1
+ export interface ActionSuccessProps {
2
+ /**
3
+ * Main optional text as the title of the status
4
+ */
5
+ headingText?: string;
6
+ /**
7
+ * Optional sub text as the actual message of the status
8
+ */
9
+ subText?: string;
10
+ }