/
githubmirror
/
ydb-embedded-ui
Обзор
Документация
Войти
/
githubmirror
/
ydb-embedded-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/utils/createToast.tsx
26 строк
563 B
Hellen
feat!: update to uikit7 (#2544)
09 июл 2025, 12:38
Не верифицирован
09 июл 2025, 12:38
9716a69
Код
Авторство
О чём код?
import type {ToastProps} from '@gravity-ui/uikit'; import {Toaster} from '@gravity-ui/uikit'; const toaster = new Toaster(); export {toaster}; function createToast({ name, title = 'Request succeeded', theme = 'success', isClosable, autoHiding, ...restProps }: ToastProps) { return toaster.add({ name: name, title: title, theme: theme, isClosable: isClosable ?? true, autoHiding: autoHiding ?? (theme === 'success' ? 5000 : false), ...restProps, }); } export default createToast;