gotrip-fx-transaction-form 1.0.122 → 1.0.123

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.122",
3
+ "version": "1.0.123",
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 {