gotrip-fx-transaction-form 1.0.219-dev → 1.0.221-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/assets/index.css +1 -1
- package/index.js +3152 -3131
- package/package.json +1 -1
- package/types/hooks/useInsuranceTransaction.d.ts +2 -0
- package/types/util/formatter.d.ts +5 -0
package/package.json
CHANGED
|
@@ -10,6 +10,8 @@ export interface GetInsuranceTransactionListReqDto {
|
|
|
10
10
|
sortField?: 'date' | 'value';
|
|
11
11
|
sortDirection?: 'asc' | 'desc';
|
|
12
12
|
status?: TransactionStatus;
|
|
13
|
+
publicId?: string;
|
|
14
|
+
primaryInsuredFullName?: string;
|
|
13
15
|
}
|
|
14
16
|
export interface GetInsuranceTransactionListRespDto {
|
|
15
17
|
transactions: InsuranceTransaction[];
|
|
@@ -2,3 +2,8 @@ export declare const formatter: Intl.NumberFormat;
|
|
|
2
2
|
export declare const formatCurrencyWithoutVND: (value: number | string) => string;
|
|
3
3
|
export declare const formatCurrency: (value: number | string) => string;
|
|
4
4
|
export declare const upperFirstLetter: (str: string) => string;
|
|
5
|
+
/**
|
|
6
|
+
* Parse a locale-formatted number string (e.g. "100,000") to a number for filter/API use.
|
|
7
|
+
* Returns undefined for empty input or invalid numbers.
|
|
8
|
+
*/
|
|
9
|
+
export declare const parseFilterNumber: (s: string) => number | undefined;
|