/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
web/libs/core/src/index.ts
50 строк
1 KB
Yousif Yassi
fix: FIT-720: Avoid loading all annotations in LabelStream when the user is admin and goes to previous tasks (#9359)
17 фев 2026, 22:05
Не верифицирован
17 фев 2026, 22:05
3f25dc3
Код
Авторство
О чём код?
import * as ff from "./lib/utils/feature-flags/ff"; export * from "./lib/Tour"; export * from "./lib/preview"; export * from "./lib/utils/analytics"; export * from "./lib/utils/urlJSON"; export * from "./lib/utils/helpers"; export * from "./lib/utils/string"; export * from "./lib/utils/debounce"; export * from "./lib/utils/lodash-replacements"; export * from "./lib/utils/bem"; export * from "./lib/utils/visitedProjects"; export * from "./lib/utils/billing"; export * from "./hooks/useAbortController"; export * from "./hooks/useResolveUser"; export * from "./lib/hooks/useCopyText"; export * from "./hooks/usePageTitle"; // API Provider export { ApiProvider, ApiContext, useAPI, errorFormatter, } from "./providers/api-provider"; export { createApiInstance, getApiInstance, resetApiInstance, API, } from "./lib/api-provider/api-instance"; export type { ApiCallOptions, ApiContextType, FormattedError, ErrorHandlerOptions, ApiProviderConfig, } from "./lib/api-provider/types"; export { ff }; // Image cache for shared use across editor and datamanager export { imageCache } from "./lib/utils/ImageCache"; // Annotation cache invalidation for shared use across editor and datamanager export { annotationKeys, invalidateAnnotationCache, invalidateDistributionCache, } from "./lib/utils/annotation-cache";