@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/dist/index.es.js +93 -22
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1795 -1626
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +102 -31
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/Accordion/Accordion.d.ts +4 -0
- package/types/components/PhoneInput/type.d.ts +2 -2
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -8,9 +8,9 @@ export interface PhoneInputProps {
|
|
|
8
8
|
*/
|
|
9
9
|
placeholder?: string;
|
|
10
10
|
/**
|
|
11
|
-
* Function to receive the object of the selected
|
|
11
|
+
* Function to receive the object of the selected country
|
|
12
12
|
*/
|
|
13
|
-
selectedCountryCode
|
|
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';
|