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(2e4, "Tối đa 20.000 USD").required("Vui lòng nhập số lượng"),
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: 2e4,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.122",
3
+ "version": "1.0.124",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -0,0 +1,5 @@
1
+ type Props = {
2
+ onDateChange: (startDate: Date | null, endDate: Date | null) => void;
3
+ };
4
+ export declare const DepartureDateRangePicker: ({ onDateChange }: Props) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,6 @@
1
+ type Props = {
2
+ onChange: (value: string) => void;
3
+ value: string;
4
+ };
5
+ export declare const TicketInfoSearchInput: ({ onChange, value }: Props) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -9,6 +9,7 @@ export declare enum TransactionStatus {
9
9
  CONFIRMED = "confirmed",// customer confirmed transaction request via zns
10
10
  CANCELED = "cancelled",
11
11
  SUCCESS = "success",
12
+ PAID = "paid",
12
13
  FAILED = "failed"
13
14
  }
14
15
  export declare enum EsimTransactionStatus {