@synerise/ds-app-menu 0.6.31 → 0.6.33

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 CHANGED
@@ -3,6 +3,22 @@
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.33](https://github.com/Synerise/synerise-design/compare/@synerise/ds-app-menu@0.6.32...@synerise/ds-app-menu@0.6.33) (2023-10-11)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-app-menu
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-app-menu
17
+
18
+
19
+
20
+
21
+
6
22
  ## [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
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-app-menu
@@ -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 declare type AppMenuProps = {
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 declare type AppMenuSubComponents = {
11
+ export type AppMenuSubComponents = {
12
12
  SubMenu: typeof SubMenu;
13
13
  Item: typeof Item;
14
14
  };
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import Icon from './Icon/Icon';
3
- declare type ItemProps = {
3
+ type ItemProps = {
4
4
  subMenu?: React.ReactElement;
5
5
  id: string;
6
6
  name: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- declare type MenuContextType = {
2
+ type MenuContextType = {
3
3
  isOpened: boolean;
4
4
  activeItem: string;
5
5
  setOpened: (opened: boolean) => void;
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- declare type NavigableItemsProps = {
2
+ type NavigableItemsProps = {
3
3
  onHideMenu: () => void;
4
4
  children: React.ReactNodeArray;
5
5
  };
@@ -1,7 +1,7 @@
1
1
  import * as S from './Item.styles';
2
- export declare type ItemProps = {
2
+ export type ItemProps = {
3
3
  active?: boolean;
4
4
  };
5
- export declare type SubComponents = {
5
+ export type SubComponents = {
6
6
  Action: typeof S.ItemAction;
7
7
  };
@@ -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 declare type SubMenuProps = {
4
+ export type SubMenuProps = {
5
5
  className?: string;
6
6
  style?: React.CSSProperties;
7
7
  };
8
- export declare type SubComponents = {
8
+ export type SubComponents = {
9
9
  Title: typeof S.MenuGroupTitle;
10
10
  SubTitle: typeof S.MenuGroupSubTitle;
11
11
  Item: typeof Item;
@@ -1,4 +1,4 @@
1
- export declare type SubMenuContextType = {
1
+ export type SubMenuContextType = {
2
2
  id: string;
3
3
  isActive: boolean;
4
4
  setOpened: (opened: boolean) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-app-menu",
3
- "version": "0.6.31",
3
+ "version": "0.6.33",
4
4
  "description": "AppMenu UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -21,6 +21,7 @@
21
21
  "build:js": "babel --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
22
  "build:watch": "npm run build:js -- --watch",
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
+ "pack:ci": "npm pack --pack-destination ../../portal/storybook-static/static",
24
25
  "prepublish": "npm run build",
25
26
  "test": "jest",
26
27
  "test:watch": "npm run test -- --watchAll",
@@ -32,14 +33,14 @@
32
33
  ],
33
34
  "types": "dist/index.d.ts",
34
35
  "dependencies": {
35
- "@synerise/ds-icon": "^0.58.2",
36
- "@synerise/ds-tooltip": "^0.14.4",
37
- "@synerise/ds-typography": "^0.13.0",
38
- "@synerise/ds-utils": "^0.24.16"
36
+ "@synerise/ds-icon": "^0.58.4",
37
+ "@synerise/ds-tooltip": "^0.14.6",
38
+ "@synerise/ds-typography": "^0.13.2",
39
+ "@synerise/ds-utils": "^0.24.18"
39
40
  },
40
41
  "peerDependencies": {
41
42
  "@synerise/ds-core": "*",
42
43
  "react": ">=16.9.0 < 17.0.0"
43
44
  },
44
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
45
+ "gitHead": "8eb4a3e304406a8dbb9258803c48952461fc5a55"
45
46
  }