next-helios-fe 1.8.147 → 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 || ""}
|
@@ -1164,7 +1164,7 @@ export const Table: TableComponentProps = ({
|
|
1164
1164
|
{filteredData &&
|
1165
1165
|
(dynamicTable?.setValue?.totalData ?? filteredData?.length) !==
|
1166
1166
|
0 && (
|
1167
|
-
<span className="hidden text-sm text-disabled lg:block">{`Showing ${
|
1167
|
+
<span className="hidden text-sm text-center text-disabled lg:block">{`Showing ${
|
1168
1168
|
(page - 1) * maxRow + 1
|
1169
1169
|
} to ${
|
1170
1170
|
page * maxRow >
|