Outlook_Addin_LLM/node_modules/@fluentui/react-toast/lib/state/constants.js

17 lines
404 B
JavaScript
Raw Normal View History

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'
};