@synerise/ds-menu 1.4.10 → 1.4.12

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
+ ## [1.4.12](https://github.com/Synerise/synerise-design/compare/@synerise/ds-menu@1.4.11...@synerise/ds-menu@1.4.12) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-menu
9
+
10
+ ## [1.4.11](https://github.com/Synerise/synerise-design/compare/@synerise/ds-menu@1.4.10...@synerise/ds-menu@1.4.11) (2026-03-09)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-menu
13
+
6
14
  ## [1.4.10](https://github.com/Synerise/synerise-design/compare/@synerise/ds-menu@1.4.9...@synerise/ds-menu@1.4.10) (2026-02-23)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-menu
package/README.md CHANGED
@@ -53,7 +53,7 @@ const items = [
53
53
 
54
54
  | Property | Description | Type | Default |
55
55
  | --------------- | ---------------------------------------------------------------------------- | --------------- | ------- |
56
- | asDropdownwMenu | Add additional styles for dropdown menu | boolean | `false` |
56
+ | asDropdownMenu | Add additional styles for dropdown menu | boolean | `false` |
57
57
  | dataSource | Array of items to display in menu | MenuItemProps[] | - |
58
58
  | ordered | Determines if items should be displayed with index prefix (starting from 01) | boolean | `false` |
59
59
  | maxToShowItems | limits the number of items rendered. remaining are shown after button click | number | - |
@@ -64,10 +64,10 @@ const items = [
64
64
  | Property | Description | Type | Default |
65
65
  | ----------------------- | -------------------------------------------------------------- | ------------------------------------------------------- | --------- |
66
66
  | children | Children of the item | React.ReactNode | |
67
- | copyable | Boolean to enable option of copying the value to the clipboard | boolean | `false` |
68
- | copyHint | Text displayed on hovering copyable item | string | |
69
- | copyValue | Value to be copied to clipboard when copyable item is clicked | string | |
70
- | copyTooltip | Tooltip to be displayed when copyable item is clicked | string / React.ReactNode | |
67
+ | copyable | Enables copy-to-clipboard; pass `Copyable` object for full control | `boolean` (deprecated) \| `Copyable` | - |
68
+ | copyValue | **@deprecated** use `copyable: Copyable` instead | string | |
69
+ | copyHint | **@deprecated** no longer shown | string | |
70
+ | copyTooltip | **@deprecated** no longer shown | string \| React.ReactNode | |
71
71
  | disabled | Disable an item element | boolean | `false` |
72
72
  | description | Additional description displayed inside the item | string / React.ReactNode | |
73
73
  | highlight | Text to be highlighted inside the item | string | |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-menu",
3
- "version": "1.4.10",
3
+ "version": "1.4.12",
4
4
  "description": "Menu UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -35,12 +35,12 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-button": "^1.5.15",
39
- "@synerise/ds-divider": "^1.2.17",
40
- "@synerise/ds-icon": "^1.14.1",
41
- "@synerise/ds-popover": "^1.5.1",
42
- "@synerise/ds-tooltip": "^1.4.7",
43
- "@synerise/ds-utils": "^1.6.0",
38
+ "@synerise/ds-button": "^1.5.17",
39
+ "@synerise/ds-divider": "^1.3.1",
40
+ "@synerise/ds-icon": "^1.15.0",
41
+ "@synerise/ds-popover": "^1.5.2",
42
+ "@synerise/ds-tooltip": "^1.4.9",
43
+ "@synerise/ds-utils": "^1.7.0",
44
44
  "classnames": "^2.5.1",
45
45
  "rc-menu": "~9.6.3",
46
46
  "uuid": "^8.3.2"
@@ -55,5 +55,5 @@
55
55
  "react": ">=16.9.0 <= 18.3.1",
56
56
  "styled-components": "^5.3.3"
57
57
  },
58
- "gitHead": "2997f77d657c1aed2fc39901d3e0b8f88b05cc53"
58
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
59
59
  }