@secondstaxorg/sscomp 1.7.19 → 1.7.22

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.7.19",
3
+ "version": "1.7.22",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { AccordionProps } from "./type";
3
+ declare const Accordion: (props: AccordionProps) => JSX.Element;
4
+ export default Accordion;
@@ -8,9 +8,9 @@ export interface PhoneInputProps {
8
8
  */
9
9
  placeholder?: string;
10
10
  /**
11
- * Function to receive the object of the selected item
11
+ * Function to receive the object of the selected country
12
12
  */
13
- selectedCountryCode: (a: countryCodesType) => void;
13
+ selectedCountryCode?: (a: countryCodesType) => void;
14
14
  /**
15
15
  * Boolean to specify whether the field is active or disabled
16
16
  */
@@ -68,3 +68,4 @@ export { default as Selector } from './Selector/Selector';
68
68
  export { default as StepProgress } from './StepProgress/StepProgress';
69
69
  export { default as PhoneInput } from './PhoneInput/PhoneInput';
70
70
  export { default as Tooltip } from './Tooltip/Tooltip';
71
+ export { default as Accordion } from './Accordion/Accordion';