@synerise/ds-app-menu 0.8.6 → 1.0.0

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,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.8.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-app-menu@0.8.6...@synerise/ds-app-menu@0.8.7) (2025-03-10)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-app-menu
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.8.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-app-menu@0.8.5...@synerise/ds-app-menu@0.8.6) (2025-03-04)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-app-menu
@@ -2,7 +2,7 @@ import styled, { css } from 'styled-components';
2
2
  import { macro } from '@synerise/ds-typography';
3
3
  export var MenuGroupWrapper = styled.div.withConfig({
4
4
  displayName: "SubMenustyles__MenuGroupWrapper",
5
- componentId: "dperxu-0"
5
+ componentId: "sc-dperxu-0"
6
6
  })(["background:", ";width:262px;position:absolute;left:61px;top:0px;height:100%;border-left:1px solid ", ";padding:12px;opacity:0;visibility:hidden;transition:opacity 0.2s ease-in-out;transition-delay:0.1s;overflow-y:auto;display:flex;flex-flow:column;&.menu__sub-menu--active{visibility:visible;opacity:1;> *{opacity:1;top:0px !important;}}a:hover{text-decoration:none;}> *{opacity:0;transition:all 0.3s ease-in-out;position:relative;top:-10px;}", " &:hover{> *{transition-delay:0s;}}"], function (props) {
7
7
  return props.theme.palette.white;
8
8
  }, function (props) {
@@ -12,11 +12,11 @@ export var MenuGroupWrapper = styled.div.withConfig({
12
12
  }));
13
13
  export var MenuGroupTitle = styled.h3.withConfig({
14
14
  displayName: "SubMenustyles__MenuGroupTitle",
15
- componentId: "dperxu-1"
15
+ componentId: "sc-dperxu-1"
16
16
  })(["", ";letter-spacing:-0.1px;padding:14px 12px 8px;"], macro.h600);
17
17
  export var MenuGroupSubTitle = styled.h4.withConfig({
18
18
  displayName: "SubMenustyles__MenuGroupSubTitle",
19
- componentId: "dperxu-2"
19
+ componentId: "sc-dperxu-2"
20
20
  })(["", ";letter-spacing:0.1px;color:", ";border-top:1px dashed ", ";margin:12px 12px 12px;padding-top:12px;text-transform:uppercase;"], macro.h100, function (props) {
21
21
  return props.theme.palette['grey-500'];
22
22
  }, function (props) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-app-menu",
3
- "version": "0.8.6",
3
+ "version": "1.0.0",
4
4
  "description": "AppMenu UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -21,7 +21,7 @@
21
21
  "build:js": "babel --delete-dir-on-start --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
+ "pack:ci": "npm pack --pack-destination ../../storybook/storybook-static/static",
25
25
  "prepublish": "npm run build",
26
26
  "test": "jest",
27
27
  "test:watch": "npm run test -- --watchAll",
@@ -34,15 +34,15 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-icon": "^0.72.0",
38
- "@synerise/ds-tooltip": "^0.16.2",
39
- "@synerise/ds-typography": "^0.17.6",
40
- "@synerise/ds-utils": "^0.32.2"
37
+ "@synerise/ds-icon": "^1.0.0",
38
+ "@synerise/ds-tooltip": "^1.0.0",
39
+ "@synerise/ds-typography": "^1.0.0",
40
+ "@synerise/ds-utils": "^1.0.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@synerise/ds-core": "*",
44
44
  "react": ">=16.9.0 <= 18.3.1",
45
45
  "styled-components": "^5.3.3"
46
46
  },
47
- "gitHead": "c5a647bd7a24a2c9294e781b2b69223e8543859f"
47
+ "gitHead": "e4c3690238a44b584b9ea41e4aa52b1eec42174b"
48
48
  }