@secondstaxorg/sscomp 1.9.99 → 2.0.1

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.99",
3
+ "version": "2.0.01",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -45,6 +45,7 @@
45
45
  "@storybook/addon-interactions": "^7.0.22",
46
46
  "@storybook/addon-links": "^7.0.22",
47
47
  "@storybook/addon-mdx-gfm": "7.0.22",
48
+ "@storybook/channels": "^7.0.22",
48
49
  "@storybook/react": "^7.0.22",
49
50
  "@storybook/react-webpack5": "7.0.22",
50
51
  "@storybook/storybook-deployer": "^2.8.16",
@@ -0,0 +1 @@
1
+ export { default as DatePicker } from './DatePicker';
@@ -20,4 +20,8 @@ export interface EmailFieldProps extends React.InputHTMLAttributes<HTMLInputElem
20
20
  requiredField?: string;
21
21
  enterValidEmail?: string;
22
22
  };
23
+ /**
24
+ * A callback function that returns the status of the email field on when filled
25
+ */
26
+ isValidEmail?: (status: boolean) => void;
23
27
  }