/
githubmirror
/
ydb-embedded-ui
Обзор
Документация
Войти
/
githubmirror
/
ydb-embedded-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib.ts
40 строк
2 KB
Hellen
feat!: update zod and add configuration (#4062)
29 июн 2026, 13:42
Не верифицирован
29 июн 2026, 13:42
5103c45
Код
Авторство
О чём код?
export {App as SingleClusterApp, AppSlots} from './containers/App'; export {AppWithClusters as MultiClusterApp} from './containers/AppWithClusters/AppWithClusters'; export { ErrorBoundaryInner as ErrorBoundary, ErrorBoundaryFallback, } from './components/ErrorBoundary/ErrorBoundary'; export {AsideNavigation} from './containers/AsideNavigation/AsideNavigation'; export {configureStore, rootReducer} from './store'; export {default as appRoutes} from './routes'; export {YdbEmbeddedAPI} from './services/api'; export {settingsManager} from './services/settings'; export {getUserSettings} from './containers/UserSettings/settings'; export {setSettingValue, getSettingValue} from './store/reducers/settings/settings'; export {componentsRegistry} from './components/ComponentsProvider/componentsRegistry'; export {useSetting, useTypedSelector} from './utils/hooks'; export {getMonitoringLink, getMonitoringClusterLink, parseMonitoringData} from './utils/monitoring'; export {parseMonitoringField} from './store/reducers/cluster/parseFields'; export {i18n, Lang, registerKeysets} from './utils/i18n'; export {toaster} from './utils/createToast'; export {cn} from './utils/cn'; export * from './utils/constants'; export {default as reportWebVitals} from './reportWebVitals'; export type {SettingsObject} from './store/reducers/settings/types'; export type { YDBEmbeddedUISettings, SettingsPage, SettingsSection, } from './containers/UserSettings/settings'; export type {SettingProps, SettingsInfoFieldProps} from './containers/UserSettings/Setting'; export type {AsideNavigationProps} from './containers/AsideNavigation/AsideNavigation'; export type {GetMonitoringLink, GetMonitoringClusterLink} from './utils/monitoring'; export type {GetReportProblemUrl, IllustrationComponent, IllustrationName} from './uiFactory/types'; export {configureUIFactory} from './uiFactory/uiFactory'; export {configureZod} from './utils/zod/configureZod';