We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d220ce commit 395e600Copy full SHA for 395e600
packages/shell/src/api/commonUI.tsx
@@ -19,7 +19,7 @@ export class CommonUI implements IPublicApiCommonUI {
19
Card = Card;
20
Checkbox = Checkbox;
21
DatePicker = DatePicker;
22
- Dialog = Dialog;
+ Dialog = Dialog as any;
23
Dropdown = Dropdown;
24
Form = Form;
25
Icon = Icon;
@@ -31,15 +31,15 @@ export class CommonUI implements IPublicApiCommonUI {
31
Radio = Radio;
32
Search = Search;
33
Select = Select;
34
- SplitButton = SplitButton;
+ SplitButton = SplitButton as any;
35
Step = Step;
36
- Switch = Switch;
+ Switch = Switch as any;
37
Tab = Tab;
38
Table = Table;
39
Tree = Tree;
40
TreeSelect = TreeSelect;
41
Upload = Upload;
42
- Divider = Divider;
+ Divider = Divider as any;
43
44
ContextMenu: ((props: {
45
menus: IPublicTypeContextMenuAction[];
0 commit comments