Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: next 组件最新版本 TS 声明文件导出部分异常,暂时调整声明文件进行正常编译,后续组件升级后可再配合调整 #3025

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions packages/shell/src/api/commonUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class CommonUI implements IPublicApiCommonUI {
Card = Card;
Checkbox = Checkbox;
DatePicker = DatePicker;
Dialog = Dialog;
Dialog = Dialog as any;
Dropdown = Dropdown;
Form = Form;
Icon = Icon;
Expand All @@ -31,15 +31,15 @@ export class CommonUI implements IPublicApiCommonUI {
Radio = Radio;
Search = Search;
Select = Select;
SplitButton = SplitButton;
SplitButton = SplitButton as any;
Step = Step;
Switch = Switch;
Switch = Switch as any;
Tab = Tab;
Table = Table;
Tree = Tree;
TreeSelect = TreeSelect;
Upload = Upload;
Divider = Divider;
Divider = Divider as any;

ContextMenu: ((props: {
menus: IPublicTypeContextMenuAction[];
Expand Down
Loading