@dfds-ui/forms 1.1.3 → 1.1.4-alpha.5ec368f8
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/cjs/tel-field/TelField.d.ts +8 -0
- package/cjs/tel-field/TelField.js +22 -20
- package/package.json +7 -7
- package/tel-field/TelField.d.ts +8 -0
- package/tel-field/TelField.js +22 -20
|
@@ -18,6 +18,10 @@ export declare type TelFieldProps = BaseFieldProps & {
|
|
|
18
18
|
* Show trunk values (the local area code shown in parenthesis)
|
|
19
19
|
*/
|
|
20
20
|
showTrunkValues?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Makes value splitted so easier to convert to object
|
|
23
|
+
*/
|
|
24
|
+
splitValues?: boolean;
|
|
21
25
|
/**
|
|
22
26
|
* Callback when value changes
|
|
23
27
|
*/
|
|
@@ -47,6 +51,10 @@ export declare const TelField: React.ForwardRefExoticComponent<BaseFieldProps &
|
|
|
47
51
|
* Show trunk values (the local area code shown in parenthesis)
|
|
48
52
|
*/
|
|
49
53
|
showTrunkValues?: boolean | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* Makes value splitted so easier to convert to object
|
|
56
|
+
*/
|
|
57
|
+
splitValues?: boolean | undefined;
|
|
50
58
|
/**
|
|
51
59
|
* Callback when value changes
|
|
52
60
|
*/
|