필터 수정

This commit is contained in:
focp212@naver.com
2025-09-12 17:08:05 +09:00
parent 7cb48133e5
commit 65bbfc12b9
7 changed files with 134 additions and 86 deletions

View File

@@ -1,3 +1,9 @@
import {
BillingPaymentMethod,
BillingProcessResult,
BillingRequestStatus
} from '@/entities/transaction/model/types';
export enum SuccessResult {
SUCCESS = 'SUCCESS',
FAIL = 'FAIL'
@@ -27,6 +33,23 @@ export enum HeaderType {
LeftArrow = 'LeftArrow',
RightClose = 'RightClose',
};
export interface FilterRangeAmountProps {
title?: string;
minAmount?: number | string;
maxAmount?: number | string;
setMinAmount: (minAmount: number | string) => void;
setMaxAmount: (maxAmount: number | string) => void;
};
export interface FilterButtonGroupsProps {
title: string;
activeValue?: string;
btnGroups?: Array<ButtonItemProp>
setter: (value: any) => void;
};
export interface ButtonItemProp {
name?: string;
value?: string;
};
export interface HeaderNavigationProps {
onBack?: (() => void) | undefined;
headerTitle?: string;