mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
* feat(layout): integrate ConfigProvider for theme management in admin layout * feat(layout): add mobile layout context and transform utility for schema * feat(toolbar): disable dragging in mobile layout for BlockSchemaToolbar * test: add unit tests for transformMultiColumnToSingleColumn function * feat: add mobile layout support to form schema transformation * feat: support mobile layout in Tabs component schema transformation * feat: integrate mobile layout support into designable components * feat: refactor mobile layout hooks and integrate MobileComponentsProvider * feat: update mobile layout styles and integrate global theme in ActionDrawer * feat: update Mobile component to use CommonDrawer for popup handling in mobile layout * feat: adjust padding in ActionDrawer style for improved layout on mobile * feat: optimize scope usage in InternalPicker for improved performance * feat: update Action.Page style to improve overflow handling * style: remove minHeight from ActionDrawer style * feat: add mobile layout support and transform schema for multi-column fields * feat: support mobile components * fix(mobile): issue with mobile flash/flicker * feat: hide Plugin manager and Settings center * feat: hide scroll bar in mobile * feat(todos): support to collapse sider menu * feat: enhance mobile layout theme support with dark mode
35 lines
1013 B
TypeScript
35 lines
1013 B
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import lodash from 'lodash';
|
|
import { dayjs } from './dayjs';
|
|
|
|
export * from './collections-graph';
|
|
export * from './common';
|
|
export * from './date';
|
|
export * from './forEach';
|
|
export * from './getValuesByPath';
|
|
export * from './handlebars';
|
|
export * from './isValidFilter';
|
|
export * from './json-templates';
|
|
export * from './log';
|
|
export * from './merge';
|
|
export * from './notification';
|
|
export * from './number';
|
|
export * from './parse-filter';
|
|
export * from './registry';
|
|
// export * from './toposort';
|
|
export * from './i18n';
|
|
export * from './isPortalInBody';
|
|
export * from './parseHTML';
|
|
export * from './uid';
|
|
export * from './url';
|
|
export * from './transformMultiColumnToSingleColumn';
|
|
export { dayjs, lodash };
|