mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-06 22:19:25 +08:00
* perf(Table): remove Formily components to improve performance * refactor: rename and modify comments * fix(UIEditor): fix hover style * fix(Table): fix style configuration option not showing * fix(ellipsis): fix refresh issue * fix: need to update field value * perf(Table): improve performance of configuring top buttons * refactor: skip style-related code when no style rules are set * chore(e2e): fix e2e errors * fix(e2e): fix e2e errors * fix(workflow): fix refresh issue * fix(workflow): fix refresh issue * fix(Action.Container): fix refresh issue * fix(drawer): fix refresh issue * fix(Table): fix refresh issue * fix(AssociationField): fix refresh issues * fix(NocoBaseRecursionField): fix refresh code * refactor(SchemaComponentContext): remove useless code * refactor: rename RefreshContext to RefreshFieldSchemaContext * refactor(useDataBlockRequestGetter): optimize comment * refactor: rename and new refresh context * fix(Table): fix some refresh issues * fix(AssociationField): fix refresh issue * refactor(Table): make code better * fix: replace RecursionField with NocoBaseRecursionField * refactor: remove useless code * fix(Menu): fix draging issue * fix: refresh entire page after drag and drop operation * fix(Page): fix draging issue * chore: fix build error * fix(test): make unit tests pass * chore(test): fix unit test * chore(e2e): fix e2e errors * chore(e2e): update e2e to make it pass * chore(e2e): update e2e to make it pass * chore(e2e): fix e2e errors * fix(e2e): fix some e2e errors * fix(SchemaComponent): fix onChange issue * chore(e2e): make e2e more stable
15 lines
539 B
TypeScript
15 lines
539 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 { createContext } from 'react';
|
|
import { ISchemaComponentContext } from './types';
|
|
|
|
export const SchemaComponentContext = createContext<ISchemaComponentContext>({});
|
|
SchemaComponentContext.displayName = 'SchemaComponentContext.Provider';
|