2023-07-08 08:26:27 +08:00
|
|
|
// 解决 build 报 dayjs 相关类型错误的问题
|
|
|
|
import 'dayjs/plugin/isBetween';
|
|
|
|
import 'dayjs/plugin/isSameOrAfter';
|
|
|
|
import 'dayjs/plugin/isSameOrBefore';
|
|
|
|
import 'dayjs/plugin/isoWeek';
|
|
|
|
import 'dayjs/plugin/localeData';
|
|
|
|
import 'dayjs/plugin/quarterOfYear';
|
|
|
|
import 'dayjs/plugin/utc';
|
|
|
|
import 'dayjs/plugin/weekday';
|
|
|
|
|
|
|
|
// 重置浏览器样式
|
|
|
|
import 'antd/dist/reset.css';
|
2024-02-03 10:21:21 +08:00
|
|
|
import './global.less';
|
2021-12-06 21:23:34 +08:00
|
|
|
|
2023-07-07 14:35:22 +08:00
|
|
|
export * from '@emotion/css';
|
2022-01-10 19:22:21 +08:00
|
|
|
export * from './acl';
|
|
|
|
export * from './antd-config-provider';
|
|
|
|
export * from './api-client';
|
2023-01-13 10:55:04 +08:00
|
|
|
export * from './appInfo';
|
2022-01-20 18:19:59 +08:00
|
|
|
export * from './application';
|
|
|
|
export * from './async-data-provider';
|
2022-04-04 00:30:40 +08:00
|
|
|
export * from './block-provider';
|
2022-02-23 18:22:37 +08:00
|
|
|
export * from './china-region';
|
2022-01-10 19:22:21 +08:00
|
|
|
export * from './collection-manager';
|
2024-03-03 23:06:24 +08:00
|
|
|
|
2023-12-19 07:50:53 +08:00
|
|
|
export * from './common';
|
2023-12-04 14:56:46 +08:00
|
|
|
export * from './css-variable';
|
2022-01-10 19:22:21 +08:00
|
|
|
export * from './document-title';
|
2023-04-17 10:12:49 +08:00
|
|
|
export * from './filter-provider';
|
2023-12-19 07:50:53 +08:00
|
|
|
export * from './flag-provider';
|
2023-01-10 09:48:46 +08:00
|
|
|
export * from './formula';
|
2023-07-16 12:46:25 +08:00
|
|
|
export * from './global-theme';
|
2023-06-22 19:51:16 +08:00
|
|
|
export * from './hooks';
|
2022-01-20 18:19:59 +08:00
|
|
|
export * from './i18n';
|
|
|
|
export * from './icon';
|
2023-07-17 23:23:44 +08:00
|
|
|
export { default as locale } from './locale';
|
2023-07-07 14:35:22 +08:00
|
|
|
export * from './nocobase-buildin-plugin';
|
2022-01-20 18:19:59 +08:00
|
|
|
export * from './plugin-manager';
|
2022-09-18 14:10:01 +08:00
|
|
|
export * from './pm';
|
2022-04-10 15:03:43 +08:00
|
|
|
export * from './powered-by';
|
2024-03-19 12:23:38 +08:00
|
|
|
export * from './powered-by-v2';
|
2022-01-20 18:19:59 +08:00
|
|
|
export * from './record-provider';
|
2022-01-10 19:22:21 +08:00
|
|
|
export * from './route-switch';
|
|
|
|
export * from './schema-component';
|
2022-02-07 21:52:51 +08:00
|
|
|
export * from './schema-initializer';
|
2023-06-22 19:51:16 +08:00
|
|
|
export * from './schema-items';
|
2022-02-20 01:22:10 +08:00
|
|
|
export * from './schema-settings';
|
2022-03-17 09:41:48 +08:00
|
|
|
export * from './schema-templates';
|
2023-07-16 12:46:25 +08:00
|
|
|
export * from './style';
|
2022-01-10 19:22:21 +08:00
|
|
|
export * from './system-settings';
|
2023-12-19 07:50:53 +08:00
|
|
|
export * from './testUtils';
|
2022-02-05 17:06:33 +08:00
|
|
|
export * from './user';
|
2023-12-05 20:45:18 +08:00
|
|
|
export * from './variables';
|
2024-03-03 23:06:24 +08:00
|
|
|
export * from './data-source';
|
|
|
|
|
|
|
|
export { withDynamicSchemaProps } from './application/hoc/withDynamicSchemaProps';
|
|
|
|
|
|
|
|
export * from './modules/blocks/BlockSchemaToolbar';
|
|
|
|
export * from './modules/blocks/data-blocks/table';
|
|
|
|
export * from './modules/blocks/data-blocks/form';
|
|
|
|
export * from './modules/blocks/data-blocks/table-selector';
|
2024-03-14 18:10:54 +08:00
|
|
|
export * from './modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem';
|
2024-03-14 22:19:15 +08:00
|
|
|
|
2024-03-07 20:45:00 +08:00
|
|
|
export * as __UNSAFE__ from './unsafe';
|
|
|
|
export type {
|
|
|
|
DynamicComponentProps as __UNSAFE__DynamicComponentProps,
|
|
|
|
VariablesContextType as __UNSAFE__VariablesContextType,
|
|
|
|
VariableOption as __UNSAFE__VariableOption,
|
|
|
|
Option as __UNSAFE__VariableInputOption,
|
|
|
|
} from './unsafe';
|