Skip to content

Commit

Permalink
fix: next 组件最新版本 TS 声明文件导出部分异常,暂时调整声明文件进行正常编译,后续组件升级后可再配合调整
Browse files Browse the repository at this point in the history
  • Loading branch information
woshilaoge committed May 15, 2024
1 parent bd85ca3 commit e7a3361
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit e7a3361

Please sign in to comment.