tachybase_todo/packages/core/client/src/index.tsx

30 lines
845 B
TypeScript
Raw Normal View History

import 'antd/dist/antd.css';
2022-03-09 20:58:11 +08:00
import './global.less';
2021-12-06 21:23:34 +08:00
export * from './acl';
export * from './antd-config-provider';
export * from './api-client';
2022-01-20 18:19:59 +08:00
export * from './application';
export * from './async-data-provider';
export * from './block-provider';
2022-01-29 17:30:40 +08:00
export * from './board';
export * from './china-region';
export * from './collection-manager';
export * from './document-title';
2022-01-20 18:19:59 +08:00
export * from './i18n';
export * from './icon';
export * from './plugin-manager';
export * from './pm';
2022-04-10 15:03:43 +08:00
export * from './powered-by';
2022-01-20 18:19:59 +08:00
export * from './record-provider';
export * from './route-switch';
export * from './schema-component';
export * from './schema-initializer';
2022-02-20 01:22:10 +08:00
export * from './schema-settings';
export * from './schema-templates';
2022-02-09 23:37:12 +08:00
export * from './settings-form';
export * from './system-settings';
2022-02-05 17:06:33 +08:00
export * from './user';
Feat/collection inherits (#1097) * chore: test * chore: inherited-collection class * feat: collection inherit * feat: collection inherit * feat: inhertis sync runner * test: get parents fields * feat: collection inherit style promote * feat: sync * feat: sync alter table * feat: pgOnly Test * fix: child collection create api * feat: replace parent field * chore: reload parent fields * test: reload collection test * feat: details are displayed according to conditions * fix: typo * feat: inheritance map class * chore: is parent node * feat: display where child row created from * fix: find with appends * feat: add parent collection fields * fix: create table * feat: load fields for all children * refactor: sync fields from parent * test: has one field inhertis * feat: replace child association target * feat: should not replace child field when parent field update * test: should update inherit field when parent field update * feat: only the blocks directly inherited from the current data are displayed * fix: inherit from multiple collections * feat: only the blocks directly inherited from the current data are displayed * fix: test * feat: parent collection expend * fix: test * test: belongsToMany inherits * test: belongsToMany inherits * feat: block display * feat: collection inherite * feat: collection inherite * feat: multiple inherits * fix: sync runner * feat: collection inherite * feat: collecton inherits * feat: cannot be modified after inheritance and saving * feat: collection inherit for graph * feat: collection inherits * fix: drop inhertied field * fix: should throw error when type conflit * feat: output inherited fields * feat: bulk update collection fields * feat: collection fields * feat: collection fields * test: create relation with child table * fix: test * fix: test * fix: test * feat: style impove * test: should not replace field with difference type * feat: add text * fix: throw error when replace field with difference type * feat: overriding * feat: kan bankanban group fields * feat: calendar block fields * feat: kan bankanban group fields * fix: test * feat: relationship fields * feat: should delete child's field when parent field deleted * feat: foreign key filter * fix: build error & multiple inherit destory field * fix: test * chore: disable error * feat: no recursive update associations (#1091) * feat: update associations * fix(collection-manager): should update uiSchema * chore: flip if * feat: mutile inherits * feat: db dialect * feat: inherits show by database * chore: git hash into docker image * fix: js gzip * fix: dockerfile * chore: error message * feat: overriding * feat: overriding * feat: overriding * feat: local * feat: filter fields by interface * fix: database logging env * test: replace hasOne target * feat: add view * feat: local * feat: enableInherits * chore: error message * feat: enableInherits * feat: code optimization * feat: code optimization * feat: code optimization Co-authored-by: chareice <chareice@live.com> Co-authored-by: chenos <chenlinxh@gmail.com>
2022-11-17 12:49:13 +08:00
export * from './appInfo'