fix(client): export essential hook (#5702)

This commit is contained in:
Junyi 2024-11-21 14:02:57 +08:00 committed by GitHub
parent c1fdccec0b
commit 665ed25987
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,8 @@ __E2E__=true
# 启用 mock-collections 插件 # 启用 mock-collections 插件
APPEND_PRESET_BUILT_IN_PLUGINS=mock-collections APPEND_PRESET_BUILT_IN_PLUGINS=mock-collections
# Load preset local plugins for testing
APPEND_PRESET_LOCAL_PLUGINS=
API_BASE_PATH=/api/ API_BASE_PATH=/api/
API_BASE_URL= API_BASE_URL=

View File

@ -12,7 +12,7 @@ export * from './FixedBlock';
export * from './FixedBlockDesignerItem'; export * from './FixedBlockDesignerItem';
export * from './Page'; export * from './Page';
export * from './Page.Settings'; export * from './Page.Settings';
export { PagePopups } from './PagePopups'; export { PagePopups, useCurrentPopupContext } from './PagePopups';
export { getStoredPopupContext, storePopupContext } from './pagePopupUtils'; export { getStoredPopupContext, storePopupContext } from './pagePopupUtils';
export * from './PageTab.Settings'; export * from './PageTab.Settings';
export { PopupSettingsProvider, usePopupSettings } from './PopupSettingsProvider'; export { PopupSettingsProvider, usePopupSettings } from './PopupSettingsProvider';