mirror of
https://github.com/strapi/strapi.git
synced 2025-11-08 14:19:40 +00:00
fix(content-type-builder): export auto loader provider for plugin use (#21250)
* fix(content-type-builder): export auto loader provider for plugin use * chore: refer to reload watcher exports as private
This commit is contained in:
parent
25f8ab9fbc
commit
80ca535360
@ -1 +1,16 @@
|
|||||||
export { useAutoReloadOverlayBlocker } from './components/AutoReloadOverlayBlocker';
|
export {
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @description This hook is private and should only be used internally.
|
||||||
|
* Pending a refactor to a more generic reload watcher outside of the content
|
||||||
|
* type builder.
|
||||||
|
*/
|
||||||
|
useAutoReloadOverlayBlocker as private_useAutoReloadOverlayBlocker,
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @description This provider is private and should only be used internally.
|
||||||
|
* Pending a refactor to a more generic reload watcher outside of the content
|
||||||
|
* type builder.
|
||||||
|
*/
|
||||||
|
AutoReloadOverlayBlockerProvider as private_AutoReloadOverlayBlockerProvider,
|
||||||
|
} from './components/AutoReloadOverlayBlocker';
|
||||||
|
|||||||
@ -40,4 +40,7 @@ export {
|
|||||||
useDocumentRBAC,
|
useDocumentRBAC,
|
||||||
} from '@strapi/content-manager/strapi-admin';
|
} from '@strapi/content-manager/strapi-admin';
|
||||||
|
|
||||||
export { useAutoReloadOverlayBlocker } from '@strapi/content-type-builder/strapi-admin';
|
export {
|
||||||
|
private_useAutoReloadOverlayBlocker,
|
||||||
|
private_AutoReloadOverlayBlockerProvider,
|
||||||
|
} from '@strapi/content-type-builder/strapi-admin';
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user