@synerise/ds-app-menu 0.6.31 → 0.6.32
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 +8 -0
- package/dist/AppMenu.types.d.ts +2 -2
- package/dist/Item/Item.d.ts +1 -1
- package/dist/MenuContext/MenuContext.d.ts +1 -1
- package/dist/NavigableItems/NavigableItems.d.ts +1 -1
- package/dist/SubMenu/Item/Item.types.d.ts +2 -2
- package/dist/SubMenu/SubMenu.types.d.ts +2 -2
- package/dist/SubMenu/SubMenuContext/SubMenuContext.types.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.6.32](https://github.com/Synerise/synerise-design/compare/@synerise/ds-app-menu@0.6.31...@synerise/ds-app-menu@0.6.32) (2023-10-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-app-menu
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.6.31](https://github.com/Synerise/synerise-design/compare/@synerise/ds-app-menu@0.6.30...@synerise/ds-app-menu@0.6.31) (2023-09-26)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-app-menu
|
package/dist/AppMenu.types.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import SubMenu from './SubMenu/SubMenu';
|
|
3
3
|
import Item from './Item/Item';
|
|
4
|
-
export
|
|
4
|
+
export type AppMenuProps = {
|
|
5
5
|
className?: string;
|
|
6
6
|
activeItem: string;
|
|
7
7
|
footer: React.ReactElement;
|
|
8
8
|
children: React.ReactNodeArray;
|
|
9
9
|
top?: number;
|
|
10
10
|
};
|
|
11
|
-
export
|
|
11
|
+
export type AppMenuSubComponents = {
|
|
12
12
|
SubMenu: typeof SubMenu;
|
|
13
13
|
Item: typeof Item;
|
|
14
14
|
};
|
package/dist/Item/Item.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import * as S from './SubMenu.styles';
|
|
3
3
|
import Item from './Item/Item';
|
|
4
|
-
export
|
|
4
|
+
export type SubMenuProps = {
|
|
5
5
|
className?: string;
|
|
6
6
|
style?: React.CSSProperties;
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type SubComponents = {
|
|
9
9
|
Title: typeof S.MenuGroupTitle;
|
|
10
10
|
SubTitle: typeof S.MenuGroupSubTitle;
|
|
11
11
|
Item: typeof Item;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-app-menu",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.32",
|
|
4
4
|
"description": "AppMenu UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-icon": "^0.58.
|
|
36
|
-
"@synerise/ds-tooltip": "^0.14.
|
|
37
|
-
"@synerise/ds-typography": "^0.13.
|
|
38
|
-
"@synerise/ds-utils": "^0.24.
|
|
35
|
+
"@synerise/ds-icon": "^0.58.3",
|
|
36
|
+
"@synerise/ds-tooltip": "^0.14.5",
|
|
37
|
+
"@synerise/ds-typography": "^0.13.1",
|
|
38
|
+
"@synerise/ds-utils": "^0.24.17"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@synerise/ds-core": "*",
|
|
42
42
|
"react": ">=16.9.0 < 17.0.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
|
|
45
45
|
}
|