Coloring's picture
feat: add antdx
5945dda
|
raw
history blame
661 Bytes

XProvider

Provide a uniform configuration support for x components.. See Ant Design X for more information.

The XProvider extends the ConfigProvider from antd and provides global configuration for components in @ant-design/x.

If you are already using ConfigProvider from antd, please make the following changes to your code:

import modelscope_studio.components.antd as antd
import modelscope_studio.components.antdx as antdx
import modelscope_studio.components.base as ms

with gr.Blocks() as demo:
  with ms.Application():
-    with antd.ConfigProvider():
+    with antdx.XProvider():