@ceed/cds 0.0.168 → 0.0.169
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/components/Menu/Menu.d.ts +11 -0
- package/framer/framer-entrypoint.js +181 -0
- package/framer/index.js +23 -23
- package/package.json +2 -2
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { MenuProps, MenuButtonProps, MenuItemProps } from "@mui/joy";
|
|
3
3
|
import { MotionProps } from "framer-motion";
|
|
4
|
+
/**
|
|
5
|
+
* @todo [v1.0.0] Restructure menu component to:
|
|
6
|
+
* - Abstract the menu component.
|
|
7
|
+
*
|
|
8
|
+
* * Example of future usage:
|
|
9
|
+
* ```jsx
|
|
10
|
+
* <Menu menuItems={[{...}]}>
|
|
11
|
+
* Menu Button Content
|
|
12
|
+
* </Menu>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
4
15
|
declare const Menu: {
|
|
5
16
|
(props: MenuProps & MotionProps): React.JSX.Element;
|
|
6
17
|
displayName: string;
|