@synerise/ds-menu 1.4.29 → 1.4.30

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,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.30](https://github.com/Synerise/synerise-design/compare/@synerise/ds-menu@1.4.29...@synerise/ds-menu@1.4.30) (2026-07-08)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-menu
9
+
6
10
  ## [1.4.29](https://github.com/Synerise/synerise-design/compare/@synerise/ds-menu@1.4.28...@synerise/ds-menu@1.4.29) (2026-06-17)
7
11
 
8
12
  **Note:** Version bump only for package @synerise/ds-menu
package/dist/Menu.d.ts CHANGED
@@ -5,6 +5,12 @@ import { default as Header } from './Elements/Header/Header';
5
5
  import { default as MenuItem } from './Elements/Item/MenuItem';
6
6
  import { AntdMenuProps } from './Menu.types';
7
7
  import * as S from './Menu.styles';
8
+ /**
9
+ * @deprecated `@synerise/ds-menu` is deprecated and will not be migrated off antd.
10
+ * Build menus and menu-like lists with `@synerise/ds-list-item` instead
11
+ * (`ListItem` for rows, `ListWrapper` for the list container). See the antd-removal
12
+ * migration status doc for context.
13
+ */
8
14
  export declare class Menu extends Component<AntdMenuProps, {
9
15
  allItemsVisible: boolean;
10
16
  }> {
@@ -6,6 +6,10 @@ export type MenuTexts = {
6
6
  showLess: ReactNode;
7
7
  showMore: ReactNode;
8
8
  };
9
+ /**
10
+ * @deprecated `@synerise/ds-menu` is deprecated — use `@synerise/ds-list-item`
11
+ * (`ListItem` / `ListWrapper`) instead.
12
+ */
9
13
  export type AntdMenuProps = Omit<MenuProps, 'dataSource' | 'footer'> & {
10
14
  dataSource?: MenuItemProps[];
11
15
  ordered?: boolean;
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@synerise/ds-menu",
3
- "version": "1.4.29",
4
- "description": "Menu UI Component for the Synerise Design System",
3
+ "version": "1.4.30",
4
+ "description": "[DEPRECATED] Menu UI Component for the Synerise Design System — use @synerise/ds-list-item instead",
5
+ "deprecated": "@synerise/ds-menu is deprecated and will not be migrated off antd. Use @synerise/ds-list-item (ListItem / ListWrapper) instead.",
5
6
  "license": "ISC",
6
7
  "repository": "Synerise/synerise-design",
7
8
  "main": "dist/index.js",
@@ -63,5 +64,5 @@
63
64
  "styled-components": "^5.3.3",
64
65
  "vitest": "4"
65
66
  },
66
- "gitHead": "d8c64070f58f14e3fb1bfbcbf00d1e3b8fd51eb8"
67
+ "gitHead": "5452c886c6a70cc2847fdb50ccf376dfb93916e5"
67
68
  }