gotrip-fx-transaction-form 1.0.272-dev → 1.0.273-dev

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.272-dev",
3
+ "version": "1.0.273-dev",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -27,5 +27,6 @@ export interface StepFourPaymentProps {
27
27
  hasSelectedUser?: boolean;
28
28
  submitLabel?: string;
29
29
  showApprovalToggle?: boolean;
30
+ mode?: 'create' | 'edit';
30
31
  }
31
- export declare const StepFourPayment: ({ travelScope, travelPlan, selectedPlan, buyerInfo, insuredPeople, onBack, onPayment, isProcessing, onPremiumUpdate, onCouponChange, paymentType: paymentTypeProp, isAdminMode, waitForApproval, onWaitForApprovalChange, hasSelectedUser, submitLabel, showApprovalToggle, }: StepFourPaymentProps) => import("react/jsx-runtime").JSX.Element;
32
+ export declare const StepFourPayment: ({ travelScope, travelPlan, selectedPlan, buyerInfo, insuredPeople, onBack, onPayment, isProcessing, onPremiumUpdate, onCouponChange, paymentType: paymentTypeProp, isAdminMode, waitForApproval, onWaitForApprovalChange, hasSelectedUser, submitLabel, showApprovalToggle, mode, }: StepFourPaymentProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ export declare const DEFAULT_PROCESSING_ORDER_MESSAGE = "\u0110ang x\u1EED l\u00FD \u0111\u01A1n h\u00E0ng, xin vui l\u00F2ng ch\u1EDD...";
2
+ type ProcessingOrderDialogProps = {
3
+ open: boolean;
4
+ /** Defaults to {@link DEFAULT_PROCESSING_ORDER_MESSAGE} */
5
+ message?: string;
6
+ };
7
+ export declare const ProcessingOrderDialog: ({ open, message, }: ProcessingOrderDialogProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -4,6 +4,7 @@ interface UseUserSearchResult {
4
4
  loading: boolean;
5
5
  error: string | null;
6
6
  search: (query: string) => void;
7
+ membersTenantId: number | null;
7
8
  }
8
9
  export declare const useUserSearch: (tenantId: number | null, debounceMs?: number) => UseUserSearchResult;
9
10
  export {};
@@ -0,0 +1,4 @@
1
+ import { IUser } from '../types/response.dto';
2
+ export declare function formatBookerHeadingWithEmail(user: IUser): string;
3
+ /** Clickable hint when admin must pick / re-pick booker */
4
+ export declare const BOOKER_SELECT_GUIDE_VI = "ch\u1ECDn ng\u01B0\u1EDDi d\u00F9ng";