@instructure/ui-menu 10.24.3-snapshot-24 → 10.25.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,9 +3,12 @@
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
- ## [10.24.3-snapshot-24](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.24.3-snapshot-24) (2025-09-09)
6
+ # [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-menu
8
+
9
+ ### Features
10
+
11
+ * **ui-menu:** remove fade in/out transitions from menu items ([d3845fb](https://github.com/instructure/instructure-ui/commit/d3845fb81f277c52f69230854ca9c1f15a3a3cab))
9
12
 
10
13
 
11
14
 
@@ -74,7 +74,6 @@ const generateStyle = (componentTheme, props) => {
74
74
  lineHeight: componentTheme.lineHeight,
75
75
  fontSize: componentTheme.fontSize,
76
76
  background: componentTheme.background,
77
- transition: 'background 0.2s',
78
77
  // Changing the following to display: flex; causes a VO
79
78
  // bug where items with role menuitem, menuitemcheckbox
80
79
  // and menuitemradio are selected twice with control+
@@ -84,7 +83,6 @@ const generateStyle = (componentTheme, props) => {
84
83
  ...roleStyles,
85
84
  '&:focus, &:active, &:hover': {
86
85
  background: componentTheme.activeBackground,
87
- transition: 'background 0s',
88
86
  '[class*="menuItem__label"]': {
89
87
  color: componentTheme.activeLabelColor
90
88
  },
@@ -80,7 +80,6 @@ const generateStyle = (componentTheme, props) => {
80
80
  lineHeight: componentTheme.lineHeight,
81
81
  fontSize: componentTheme.fontSize,
82
82
  background: componentTheme.background,
83
- transition: 'background 0.2s',
84
83
  // Changing the following to display: flex; causes a VO
85
84
  // bug where items with role menuitem, menuitemcheckbox
86
85
  // and menuitemradio are selected twice with control+
@@ -90,7 +89,6 @@ const generateStyle = (componentTheme, props) => {
90
89
  ...roleStyles,
91
90
  '&:focus, &:active, &:hover': {
92
91
  background: componentTheme.activeBackground,
93
- transition: 'background 0s',
94
92
  '[class*="menuItem__label"]': {
95
93
  color: componentTheme.activeLabelColor
96
94
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-menu",
3
- "version": "10.24.3-snapshot-24",
3
+ "version": "10.25.0",
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": "10.24.3-snapshot-24",
27
- "@instructure/ui-babel-preset": "10.24.3-snapshot-24",
28
- "@instructure/ui-color-utils": "10.24.3-snapshot-24",
29
- "@instructure/ui-themes": "10.24.3-snapshot-24",
26
+ "@instructure/ui-axe-check": "10.25.0",
27
+ "@instructure/ui-babel-preset": "10.25.0",
28
+ "@instructure/ui-color-utils": "10.25.0",
29
+ "@instructure/ui-themes": "10.25.0",
30
30
  "@testing-library/jest-dom": "^6.6.3",
31
31
  "@testing-library/react": "^16.0.1",
32
32
  "@testing-library/user-event": "^14.6.1",
@@ -34,19 +34,19 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@babel/runtime": "^7.27.6",
37
- "@instructure/console": "10.24.3-snapshot-24",
38
- "@instructure/emotion": "10.24.3-snapshot-24",
39
- "@instructure/shared-types": "10.24.3-snapshot-24",
40
- "@instructure/ui-a11y-utils": "10.24.3-snapshot-24",
41
- "@instructure/ui-dom-utils": "10.24.3-snapshot-24",
42
- "@instructure/ui-icons": "10.24.3-snapshot-24",
43
- "@instructure/ui-popover": "10.24.3-snapshot-24",
44
- "@instructure/ui-position": "10.24.3-snapshot-24",
45
- "@instructure/ui-prop-types": "10.24.3-snapshot-24",
46
- "@instructure/ui-react-utils": "10.24.3-snapshot-24",
47
- "@instructure/ui-testable": "10.24.3-snapshot-24",
48
- "@instructure/ui-utils": "10.24.3-snapshot-24",
49
- "@instructure/ui-view": "10.24.3-snapshot-24",
37
+ "@instructure/console": "10.25.0",
38
+ "@instructure/emotion": "10.25.0",
39
+ "@instructure/shared-types": "10.25.0",
40
+ "@instructure/ui-a11y-utils": "10.25.0",
41
+ "@instructure/ui-dom-utils": "10.25.0",
42
+ "@instructure/ui-icons": "10.25.0",
43
+ "@instructure/ui-popover": "10.25.0",
44
+ "@instructure/ui-position": "10.25.0",
45
+ "@instructure/ui-prop-types": "10.25.0",
46
+ "@instructure/ui-react-utils": "10.25.0",
47
+ "@instructure/ui-testable": "10.25.0",
48
+ "@instructure/ui-utils": "10.25.0",
49
+ "@instructure/ui-view": "10.25.0",
50
50
  "keycode": "^2",
51
51
  "prop-types": "^15.8.1"
52
52
  },
@@ -93,7 +93,6 @@ const generateStyle = (
93
93
  lineHeight: componentTheme.lineHeight,
94
94
  fontSize: componentTheme.fontSize,
95
95
  background: componentTheme.background,
96
- transition: 'background 0.2s',
97
96
  // Changing the following to display: flex; causes a VO
98
97
  // bug where items with role menuitem, menuitemcheckbox
99
98
  // and menuitemradio are selected twice with control+
@@ -103,7 +102,6 @@ const generateStyle = (
103
102
  ...roleStyles,
104
103
  '&:focus, &:active, &:hover': {
105
104
  background: componentTheme.activeBackground,
106
- transition: 'background 0s',
107
105
  '[class*="menuItem__label"]': {
108
106
  color: componentTheme.activeLabelColor
109
107
  },