gotrip-fx-transaction-form 1.0.122 → 1.0.124
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/index.js
CHANGED
|
@@ -71383,7 +71383,7 @@ const Q3 = ({
|
|
|
71383
71383
|
passportNo: qt().required("Vui lòng nhập số hộ chiếu"),
|
|
71384
71384
|
idNo: qt().required("Vui lòng nhập số CMND/CCCD").matches(AO, "CMND/CCCD không hợp lệ"),
|
|
71385
71385
|
mobileNo: qt().required("Vui lòng nhập số điện thoại").transform((e) => e && Ev(e)).matches(Cv, "Số điện thoại không hợp lệ"),
|
|
71386
|
-
amount: ov().min(0, "Ít nhất 0").max(
|
|
71386
|
+
amount: ov().min(0, "Ít nhất 0").max(15e3, "Tối đa 15.000 USD").required("Vui lòng nhập số lượng"),
|
|
71387
71387
|
currencyCode: qt().required("Vui lòng chọn loại ngoại tệ"),
|
|
71388
71388
|
useAgent: dg(),
|
|
71389
71389
|
agentName: qt().when("useAgent", {
|
|
@@ -71922,7 +71922,7 @@ const Q3 = ({
|
|
|
71922
71922
|
thousandSeparator: ",",
|
|
71923
71923
|
decimalScale: 0,
|
|
71924
71924
|
min: 0,
|
|
71925
|
-
max:
|
|
71925
|
+
max: 15e3,
|
|
71926
71926
|
fixedDecimalScale: !0,
|
|
71927
71927
|
onValueChange: (xe) => {
|
|
71928
71928
|
xe.floatValue ? (Pt("amount", xe.floatValue), z(xe.floatValue)) : (Pt("amount", 0), z(0)), Er("amount");
|
package/package.json
CHANGED
package/types/types/enum.d.ts
CHANGED