Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/antd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Ant Design theme, fields and widgets for `react-jsonschema-form`.
### Prerequisites

- `antd >= 5`
- `@ant-design/icons >= 5`
- `@ant-design/icons >= 6`
- `dayjs >= 1.8.0`
- `@rjsf/core >= 6`
- `@rjsf/utils >= 6`
Expand Down
2 changes: 1 addition & 1 deletion packages/antd/src/templates/ErrorList/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Alert, List, Space } from 'antd';
import ExclamationCircleOutlined from '@ant-design/icons/ExclamationCircleOutlined';
import { ExclamationCircleOutlined } from '@ant-design/icons';
import { ErrorListProps, FormContextType, RJSFSchema, StrictRJSFSchema, TranslatableString } from '@rjsf/utils';

/** The `ErrorList` component is the template that renders the all the errors associated with the fields in the `Form`
Expand Down
12 changes: 7 additions & 5 deletions packages/antd/src/templates/IconButton/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Button, ButtonProps } from 'antd';
import ArrowDownOutlined from '@ant-design/icons/ArrowDownOutlined';
import ArrowUpOutlined from '@ant-design/icons/ArrowUpOutlined';
import CopyOutlined from '@ant-design/icons/CopyOutlined';
import DeleteOutlined from '@ant-design/icons/DeleteOutlined';
import PlusCircleOutlined from '@ant-design/icons/PlusCircleOutlined';
import {
ArrowDownOutlined,
ArrowUpOutlined,
CopyOutlined,
DeleteOutlined,
PlusCircleOutlined,
} from '@ant-design/icons';
import {
getUiOptions,
FormContextType,
Expand Down