beca-ui 2.0.19-beta.54 → 2.0.19-beta.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/beca-ui.js +302 -297
- package/dist/components/Menu/Menu.types.d.ts +2 -2
- package/dist/main.css +1 -1
- package/dist/theme/styles.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { MenuProps as AntMenuProps, Menu } from "antd";
|
|
2
|
-
import { MenuItemType } from "antd/es/menu/interface";
|
|
2
|
+
import { MenuItemType, ItemType } from "antd/es/menu/interface";
|
|
3
3
|
type AntMenuItemProps = typeof Menu.Item;
|
|
4
4
|
export interface MenuProps extends AntMenuProps {
|
|
5
5
|
}
|
|
6
6
|
export interface MenuItemProps extends AntMenuItemProps {
|
|
7
7
|
}
|
|
8
|
-
export type { MenuItemType };
|
|
8
|
+
export type { MenuItemType, ItemType };
|