17 lines
404 B
JavaScript
17 lines
404 B
JavaScript
|
export const EVENTS = {
|
||
|
show: 'fui-toast-show',
|
||
|
dismiss: 'fui-toast-dismiss',
|
||
|
dismissAll: 'fui-toast-dismiss-all',
|
||
|
update: 'fui-toast-update',
|
||
|
pause: 'fui-toast-pause',
|
||
|
play: 'fui-toast-play'
|
||
|
};
|
||
|
export const TOAST_POSITIONS = {
|
||
|
bottom: 'bottom',
|
||
|
bottomEnd: 'bottom-end',
|
||
|
bottomStart: 'bottom-start',
|
||
|
top: 'top',
|
||
|
topEnd: 'top-end',
|
||
|
topStart: 'top-start'
|
||
|
};
|