@trackunit/react-form-components 0.0.322 → 0.0.324
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
|
@@ -29,6 +29,13 @@ export interface PhoneInputProps extends BaseInputExposedProps {
|
|
|
29
29
|
label: string;
|
|
30
30
|
value: string;
|
|
31
31
|
}>) => void;
|
|
32
|
+
/**
|
|
33
|
+
* On click handler for country code component.
|
|
34
|
+
*/
|
|
35
|
+
onClickCountryCode?: (value: SingleValue<{
|
|
36
|
+
label: string;
|
|
37
|
+
value: string;
|
|
38
|
+
}>) => void;
|
|
32
39
|
/**
|
|
33
40
|
* A placeholder value for country code.
|
|
34
41
|
*/
|