@synerise/ds-menu 1.4.11 → 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 +4 -0
- package/README.md +5 -5
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
|
|
6
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)
|
|
7
11
|
|
|
8
12
|
**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
|
-
|
|
|
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 |
|
|
68
|
-
|
|
|
69
|
-
|
|
|
70
|
-
| copyTooltip |
|
|
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.
|
|
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.
|
|
39
|
-
"@synerise/ds-divider": "^1.3.
|
|
40
|
-
"@synerise/ds-icon": "^1.
|
|
41
|
-
"@synerise/ds-popover": "^1.5.
|
|
42
|
-
"@synerise/ds-tooltip": "^1.4.
|
|
43
|
-
"@synerise/ds-utils": "^1.
|
|
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": "
|
|
58
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
59
59
|
}
|