@instructure/ui-menu 11.0.2-snapshot-0 → 11.0.2-snapshot-2

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,7 +3,7 @@
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
- ## [11.0.2-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-0) (2025-10-15)
6
+ ## [11.0.2-snapshot-2](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-2) (2025-10-20)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-menu
9
9
 
package/README.md CHANGED
@@ -10,7 +10,7 @@ A dropdown menu component.
10
10
 
11
11
  The `ui-menu` package contains the following:
12
12
 
13
- - [Menu](#Menu)
13
+ - [Menu](Menu)
14
14
 
15
15
  ### Installation
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-menu",
3
- "version": "11.0.2-snapshot-0",
3
+ "version": "11.0.2-snapshot-2",
4
4
  "description": "A dropdown menu component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,10 +23,10 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-axe-check": "11.0.2-snapshot-0",
27
- "@instructure/ui-babel-preset": "11.0.2-snapshot-0",
28
- "@instructure/ui-color-utils": "11.0.2-snapshot-0",
29
- "@instructure/ui-themes": "11.0.2-snapshot-0",
26
+ "@instructure/ui-axe-check": "11.0.2-snapshot-2",
27
+ "@instructure/ui-babel-preset": "11.0.2-snapshot-2",
28
+ "@instructure/ui-color-utils": "11.0.2-snapshot-2",
29
+ "@instructure/ui-themes": "11.0.2-snapshot-2",
30
30
  "@testing-library/jest-dom": "^6.6.3",
31
31
  "@testing-library/react": "15.0.7",
32
32
  "@testing-library/user-event": "^14.6.1",
@@ -34,17 +34,17 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@babel/runtime": "^7.27.6",
37
- "@instructure/console": "11.0.2-snapshot-0",
38
- "@instructure/emotion": "11.0.2-snapshot-0",
39
- "@instructure/shared-types": "11.0.2-snapshot-0",
40
- "@instructure/ui-a11y-utils": "11.0.2-snapshot-0",
41
- "@instructure/ui-dom-utils": "11.0.2-snapshot-0",
42
- "@instructure/ui-icons": "11.0.2-snapshot-0",
43
- "@instructure/ui-popover": "11.0.2-snapshot-0",
44
- "@instructure/ui-position": "11.0.2-snapshot-0",
45
- "@instructure/ui-react-utils": "11.0.2-snapshot-0",
46
- "@instructure/ui-utils": "11.0.2-snapshot-0",
47
- "@instructure/ui-view": "11.0.2-snapshot-0",
37
+ "@instructure/console": "11.0.2-snapshot-2",
38
+ "@instructure/emotion": "11.0.2-snapshot-2",
39
+ "@instructure/shared-types": "11.0.2-snapshot-2",
40
+ "@instructure/ui-a11y-utils": "11.0.2-snapshot-2",
41
+ "@instructure/ui-dom-utils": "11.0.2-snapshot-2",
42
+ "@instructure/ui-icons": "11.0.2-snapshot-2",
43
+ "@instructure/ui-popover": "11.0.2-snapshot-2",
44
+ "@instructure/ui-position": "11.0.2-snapshot-2",
45
+ "@instructure/ui-react-utils": "11.0.2-snapshot-2",
46
+ "@instructure/ui-utils": "11.0.2-snapshot-2",
47
+ "@instructure/ui-view": "11.0.2-snapshot-2",
48
48
  "keycode": "^2"
49
49
  },
50
50
  "peerDependencies": {
@@ -11,10 +11,10 @@ The `Menu` component is a special type of Popover that is meant to be used as a
11
11
  - Menu uses Popover internally and provides additional semantic markup and focus behavior.
12
12
 
13
13
  Passing a node to the `trigger` prop will render a toggle button which, when clicked, shows or hides
14
- the [Menu](#Menu) in a [Popover](#Popover).
14
+ the [Menu](Menu) in a [Popover](Popover).
15
15
 
16
16
  Note: `<Menu/>` cannot contain content that is not a `<Menu.Item/>` (links or buttons). If
17
- you need to include more complex content, take a look at [Popover](#Popover).
17
+ you need to include more complex content, take a look at [Popover](Popover).
18
18
 
19
19
  ```js
20
20
  ---