@secondstaxorg/sscomp 1.7.21 → 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.21",
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;
@@ -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';