@veeqo/ui 5.14.0 → 5.15.1

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/README.md CHANGED
@@ -10,7 +10,7 @@ In the longer term Icons and Integrations **WILL** be moved to their own library
10
10
 
11
11
  ### Links ⚓️
12
12
 
13
- **This Library**: [Storybook 📋](https://ui.veeqo.amazon.dev/?path=/docs/get-started-how-to-install--docs) | Playroom 🛝 (not deployed.)
13
+ **This Library**: [Storybook 📋](https://ui.veeqo.amazon.dev/?path=/docs/get-started-how-to-install--docs) | Playroom 🛝 (not deployed)
14
14
 
15
15
  **Old Library**: [Storybook 📋](https://master.d1cz47hw90nvy2.amplifyapp.com/) | [Playroom 🛝](https://master.d1cz47hw90nvy2.amplifyapp.com/playroom)
16
16
 
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { MenuItemProps } from 'react-aria-components';
3
+ import { ButtonProps } from '../Button/types';
4
+ export type ActionMenuProps = {
5
+ id?: string;
6
+ menuLabel?: string;
7
+ actions: MenuItemProps[];
8
+ ctaProps: ButtonProps;
9
+ };
10
+ export declare const ActionMenu: ({ id, menuLabel, ctaProps, actions }: ActionMenuProps) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export { ActionMenu } from './ActionMenu';
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const MenuItem: import("styled-components").StyledComponent<(<T extends object>(props: import("react-aria-components").MenuItemProps<T> & import("react").RefAttributes<HTMLDivElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>), any, {}, never>;