toast 메시지 추가

alert 글로벌화
loading 글로벌화
This commit is contained in:
2025-04-25 15:33:21 +09:00
parent d2ac5b338e
commit 826459f304
50 changed files with 3211 additions and 2385 deletions

View File

@@ -24,11 +24,39 @@ export const caliumRequestInitData = {
content: '',
}
export const ORDER_OPTIONS = {
asc: [
{ value: 'ASC', label: '오름차순' },
{ value: 'DESC', label: '내림차순' }
],
desc: [
{ value: 'DESC', label: '내림차순' },
{ value: 'ASC', label: '오름차순' }
],
};
export const PAGE_SIZE_OPTIONS = {
default: [
{ value: '50', label: '50개' },
{ value: '100', label: '100개' }
],
B: [
{ value: '500', label: '500개' },
{ value: '1000', label: '1000개' },
{ value: '5000', label: '5000개' },
{ value: '10000', label: '10000개' }
],
};
export const STATUS_STYLES = {
COMPLETE: {
background: '#58AB62',
color: 'white'
},
EXPIRATION: {
background: '#58AB62',
color: 'white'
},
WAIT: {
background: '#DEBB46',
color: 'black'
@@ -57,6 +85,10 @@ export const STATUS_STYLES = {
background: '#4287f5',
color: 'white'
},
INPROGRESS: {
background: '#4287f5',
color: 'white'
},
AUCTION_END: {
background: '#A37FB8',
color: 'white'