mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 20:16:58 +00:00
70d5b9e44b
* feat: init localization-management * feat: resource api * Merge branch 'main' into T-62 * chore: change name * feat: basic feature * feat: support filter & sync * feat: support auto get texts afterSave * Merge branch 'main' into T-62 * chore: upgrade * fix: dependency * fix: field type * fix: type error * chore: remove some translations * feat: support extract text from menu * chore: cache text keys * chore: remove test key * fix: issue of extracting menu titles * feat: translate collections & fields name * fix: remove unique of text * refactor: improve cache * chore: remove listeners after disable * chore: translation * fix: lang switch bug * refactor: actions & filter * fix: translation * refactor: merge lang bundles at backend * fix: style & field name * fix: translate issues * fix: cache bug * fix: translation merge bug * fix: translate issues * fix: map translation * fix: translation issues * fix: card title bug * feat: cover mobile client tabbar * fix: menu title * refactor: add locale plugin * chore: merge locale plugin * fix: map translation * chore: remove no data * style: change button style * fix: sync bug * docs: add README * chore: change name --------- Co-authored-by: chenos <chenlinxh@gmail.com>
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
// 解决 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';
|
|
|
|
export * from '@emotion/css';
|
|
export * from './acl';
|
|
export * from './antd-config-provider';
|
|
export * from './api-client';
|
|
export * from './appInfo';
|
|
export * from './application';
|
|
export * from './async-data-provider';
|
|
export * from './auth';
|
|
export * from './block-provider';
|
|
export * from './board';
|
|
export * from './china-region';
|
|
export * from './collection-manager';
|
|
export * from './document-title';
|
|
export * from './filter-provider';
|
|
export * from './formula';
|
|
export * from './global-theme';
|
|
export * from './hooks';
|
|
export * from './i18n';
|
|
export * from './icon';
|
|
export { default as locale } from './locale';
|
|
export * from './nocobase-buildin-plugin';
|
|
export * from './plugin-manager';
|
|
export * from './pm';
|
|
export * from './powered-by';
|
|
export * from './record-provider';
|
|
export * from './route-switch';
|
|
export * from './schema-component';
|
|
export * from './schema-initializer';
|
|
export * from './schema-items';
|
|
export * from './schema-settings';
|
|
export * from './schema-templates';
|
|
export * from './style';
|
|
export * from './system-settings';
|
|
export * from './user';
|