next-helios-fe 1.8.148 → 1.8.149
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
@@ -1590,6 +1590,8 @@ export const PhoneNumber: React.FC<PhoneNumberProps> = ({
|
|
1590
1590
|
type="text"
|
1591
1591
|
className={`w-full ps-16 pe-4 border-default border rounded-md bg-secondary-bg [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none placeholder:duration-300 placeholder:translate-x-0 focus:placeholder:translate-x-1 placeholder:text-silent focus:outline-none focus:ring-1 focus:ring-primary focus:shadow focus:shadow-primary focus:border-primary-dark disabled:bg-secondary-light disabled:text-disabled ${height}`}
|
1592
1592
|
placeholder="Phone number"
|
1593
|
+
minLength={9}
|
1594
|
+
maxLength={18}
|
1593
1595
|
required={rest.required}
|
1594
1596
|
disabled={rest.disabled}
|
1595
1597
|
value={tempValue || ""}
|