@instructure/ui-menu 10.16.3-snapshot--1 → 10.16.3

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.16.3-snapshot--1](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3-snapshot--1) (2025-04-24)
6
+ ## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-menu
8
+
9
+ ### Bug Fixes
10
+
11
+ * **ui-options,ui-menu:** improve hover animations ([fed526c](https://github.com/instructure/instructure-ui/commit/fed526c735cfdc7678fc1ecee3ddf89aedded135))
9
12
 
10
13
 
11
14
 
@@ -84,6 +84,7 @@ const generateStyle = (componentTheme, props) => {
84
84
  ...roleStyles,
85
85
  '&:focus, &:active, &:hover': {
86
86
  background: componentTheme.activeBackground,
87
+ transition: 'background 0s',
87
88
  '[class*="menuItem__label"]': {
88
89
  color: componentTheme.activeLabelColor
89
90
  },
@@ -90,6 +90,7 @@ const generateStyle = (componentTheme, props) => {
90
90
  ...roleStyles,
91
91
  '&:focus, &:active, &:hover': {
92
92
  background: componentTheme.activeBackground,
93
+ transition: 'background 0s',
93
94
  '[class*="menuItem__label"]': {
94
95
  color: componentTheme.activeLabelColor
95
96
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-menu",
3
- "version": "10.16.3-snapshot--1",
3
+ "version": "10.16.3",
4
4
  "description": "A dropdown menu component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,11 +23,11 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-axe-check": "10.16.3-snapshot--1",
27
- "@instructure/ui-babel-preset": "10.16.3-snapshot--1",
28
- "@instructure/ui-color-utils": "10.16.3-snapshot--1",
29
- "@instructure/ui-test-utils": "10.16.3-snapshot--1",
30
- "@instructure/ui-themes": "10.16.3-snapshot--1",
26
+ "@instructure/ui-axe-check": "10.16.3",
27
+ "@instructure/ui-babel-preset": "10.16.3",
28
+ "@instructure/ui-color-utils": "10.16.3",
29
+ "@instructure/ui-test-utils": "10.16.3",
30
+ "@instructure/ui-themes": "10.16.3",
31
31
  "@testing-library/jest-dom": "^6.6.3",
32
32
  "@testing-library/react": "^16.0.1",
33
33
  "@testing-library/user-event": "^14.5.2",
@@ -35,19 +35,19 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@babel/runtime": "^7.26.0",
38
- "@instructure/console": "10.16.3-snapshot--1",
39
- "@instructure/emotion": "10.16.3-snapshot--1",
40
- "@instructure/shared-types": "10.16.3-snapshot--1",
41
- "@instructure/ui-a11y-utils": "10.16.3-snapshot--1",
42
- "@instructure/ui-dom-utils": "10.16.3-snapshot--1",
43
- "@instructure/ui-icons": "10.16.3-snapshot--1",
44
- "@instructure/ui-popover": "10.16.3-snapshot--1",
45
- "@instructure/ui-position": "10.16.3-snapshot--1",
46
- "@instructure/ui-prop-types": "10.16.3-snapshot--1",
47
- "@instructure/ui-react-utils": "10.16.3-snapshot--1",
48
- "@instructure/ui-testable": "10.16.3-snapshot--1",
49
- "@instructure/ui-utils": "10.16.3-snapshot--1",
50
- "@instructure/ui-view": "10.16.3-snapshot--1",
38
+ "@instructure/console": "10.16.3",
39
+ "@instructure/emotion": "10.16.3",
40
+ "@instructure/shared-types": "10.16.3",
41
+ "@instructure/ui-a11y-utils": "10.16.3",
42
+ "@instructure/ui-dom-utils": "10.16.3",
43
+ "@instructure/ui-icons": "10.16.3",
44
+ "@instructure/ui-popover": "10.16.3",
45
+ "@instructure/ui-position": "10.16.3",
46
+ "@instructure/ui-prop-types": "10.16.3",
47
+ "@instructure/ui-react-utils": "10.16.3",
48
+ "@instructure/ui-testable": "10.16.3",
49
+ "@instructure/ui-utils": "10.16.3",
50
+ "@instructure/ui-view": "10.16.3",
51
51
  "keycode": "^2",
52
52
  "prop-types": "^15.8.1"
53
53
  },
@@ -103,6 +103,7 @@ const generateStyle = (
103
103
  ...roleStyles,
104
104
  '&:focus, &:active, &:hover': {
105
105
  background: componentTheme.activeBackground,
106
+ transition: 'background 0s',
106
107
  '[class*="menuItem__label"]': {
107
108
  color: componentTheme.activeLabelColor
108
109
  },