@secondstaxorg/sscomp 1.9.63 → 1.9.64
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 +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +117 -100
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/AmountInput/type.d.ts +4 -0
- package/types/components/PhoneInput/type.d.ts +4 -0
package/package.json
CHANGED
|
@@ -47,6 +47,10 @@ export interface AmountInputProps {
|
|
|
47
47
|
* Specify whether the component is a readonly field
|
|
48
48
|
*/
|
|
49
49
|
readonly?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Specify which currencies to bring to the top of the list
|
|
52
|
+
*/
|
|
53
|
+
priorityCurrencies?: string[];
|
|
50
54
|
/**
|
|
51
55
|
* Specify custom label for text displayed throughout component
|
|
52
56
|
*/
|
|
@@ -46,6 +46,10 @@ export interface PhoneInputProps {
|
|
|
46
46
|
* Specify whether the component is a readonly field
|
|
47
47
|
*/
|
|
48
48
|
readonly?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Specify which countries to move to the top of the list. Specify the country code (`code`) or dial code (`dial_code`)
|
|
51
|
+
*/
|
|
52
|
+
priorityCountries?: string[];
|
|
49
53
|
/**
|
|
50
54
|
* Specify custom label for text displayed throughout component
|
|
51
55
|
*/
|