@semcore/dropdown-menu 3.0.5 → 3.0.6
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/CHANGELOG.md +6 -0
- package/README.md +2 -2
- package/lib/cjs/index.d.ts +1 -1
- package/lib/es6/index.d.ts +1 -1
- package/lib/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -42,12 +42,12 @@ of the components that is discussed below. There should only be one version of t
|
|
|
42
42
|
|
|
43
43
|
You can use the package the same way but without `/ui/` in the import path.
|
|
44
44
|
|
|
45
|
-
</details>
|
|
46
|
-
|
|
47
45
|
```jsx
|
|
48
46
|
import DropdownMenu from '@semcore/dropdown-menu';
|
|
49
47
|
```
|
|
50
48
|
|
|
49
|
+
</details>
|
|
50
|
+
|
|
51
51
|
## 👤 Author
|
|
52
52
|
|
|
53
53
|
[UI-kit team](https://github.com/semrush/intergalactic/blob/master/MAINTAINERS) and [others ❤️](https://github.com/semrush/intergalactic/graphs/contributors)
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import Dropdown, { IDropdownContext, IDropdownProps, IDropdownHandlers } from '@
|
|
|
3
3
|
import { Box, IBoxProps, IFlexProps } from '@semcore/flex-box';
|
|
4
4
|
import { IScrollAreaProps } from '@semcore/scroll-area';
|
|
5
5
|
|
|
6
|
-
export type DropdownMenuSize = 'm' | 'l'
|
|
6
|
+
export type DropdownMenuSize = 'm' | 'l';
|
|
7
7
|
|
|
8
8
|
export interface IDropdownMenuProps extends IDropdownProps {
|
|
9
9
|
/**
|
package/lib/es6/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import Dropdown, { IDropdownContext, IDropdownProps, IDropdownHandlers } from '@
|
|
|
3
3
|
import { Box, IBoxProps, IFlexProps } from '@semcore/flex-box';
|
|
4
4
|
import { IScrollAreaProps } from '@semcore/scroll-area';
|
|
5
5
|
|
|
6
|
-
export type DropdownMenuSize = 'm' | 'l'
|
|
6
|
+
export type DropdownMenuSize = 'm' | 'l';
|
|
7
7
|
|
|
8
8
|
export interface IDropdownMenuProps extends IDropdownProps {
|
|
9
9
|
/**
|
package/lib/types/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import Dropdown, { IDropdownContext, IDropdownProps, IDropdownHandlers } from '@
|
|
|
3
3
|
import { Box, IBoxProps, IFlexProps } from '@semcore/flex-box';
|
|
4
4
|
import { IScrollAreaProps } from '@semcore/scroll-area';
|
|
5
5
|
|
|
6
|
-
export type DropdownMenuSize = 'm' | 'l'
|
|
6
|
+
export type DropdownMenuSize = 'm' | 'l';
|
|
7
7
|
|
|
8
8
|
export interface IDropdownMenuProps extends IDropdownProps {
|
|
9
9
|
/**
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import Dropdown, { IDropdownContext, IDropdownProps, IDropdownHandlers } from '@
|
|
|
3
3
|
import { Box, IBoxProps, IFlexProps } from '@semcore/flex-box';
|
|
4
4
|
import { IScrollAreaProps } from '@semcore/scroll-area';
|
|
5
5
|
|
|
6
|
-
export type DropdownMenuSize = 'm' | 'l'
|
|
6
|
+
export type DropdownMenuSize = 'm' | 'l';
|
|
7
7
|
|
|
8
8
|
export interface IDropdownMenuProps extends IDropdownProps {
|
|
9
9
|
/**
|