@veeqo/ui 4.0.0 → 4.0.2
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 +1 -1
- package/dist/components/AnimatedDropdown/components/BasicDropdown.d.ts +1 -0
- package/dist/components/AnimatedDropdown/styled.d.ts +1 -0
- package/dist/components/AnimatedDropdown/types.d.ts +2 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
|
13
|
+
**This Library**: [Storybook 📋](https:/ui.veeqo.amazon.dev/?path=/docs/get-started-how-to-install--docs) | [Playroom 🛝](https://ui.veeqo.amazon.dev/playroom/)
|
|
14
14
|
|
|
15
15
|
**Old Library**: [Storybook 📋](https://master.d1cz47hw90nvy2.amplifyapp.com/) | [Playroom 🛝](https://master.d1cz47hw90nvy2.amplifyapp.com/playroom)
|
|
16
16
|
|
|
@@ -2,4 +2,5 @@ import React from 'react';
|
|
|
2
2
|
export declare const BasicDropdown: React.ForwardRefExoticComponent<import("../../types").EventHandlerProps & {
|
|
3
3
|
className?: string | undefined;
|
|
4
4
|
children: React.ReactNode;
|
|
5
|
+
role?: React.AriaRole | undefined;
|
|
5
6
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -4,6 +4,7 @@ declare const Wrap: import("styled-components").StyledComponent<"div", any, {},
|
|
|
4
4
|
declare const Dropdown: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../types").EventHandlerProps & {
|
|
5
5
|
className?: string | undefined;
|
|
6
6
|
children: import("react").ReactNode;
|
|
7
|
+
role?: import("react").AriaRole | undefined;
|
|
7
8
|
} & import("react").RefAttributes<HTMLDivElement>>, any, {
|
|
8
9
|
reversed?: boolean | undefined;
|
|
9
10
|
}, never>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
2
|
import { EventHandlerProps } from '../types';
|
|
3
3
|
export type BasicDropdownProps = EventHandlerProps & {
|
|
4
4
|
className?: string;
|
|
5
5
|
children: ReactNode;
|
|
6
|
+
role?: HTMLAttributes<HTMLDivElement>['role'];
|
|
6
7
|
};
|
|
7
8
|
export type AnimatedDropdownProps = BasicDropdownProps & {
|
|
8
9
|
cta?: ReactNode;
|
|
@@ -22,6 +22,7 @@ export { FilterTag } from './FilterTag';
|
|
|
22
22
|
export { Grid } from './Grid';
|
|
23
23
|
export { Image } from './Image';
|
|
24
24
|
export { InputGroup } from './InputGroup';
|
|
25
|
+
export { LegacyDataTable } from './LegacyDataTable';
|
|
25
26
|
export { Loader } from './Loader';
|
|
26
27
|
export { LoginWithAmazonButton } from './LoginWithAmazonButton';
|
|
27
28
|
export { Modal } from './Modal';
|