@instructure/ui-options 11.7.2-snapshot-47 → 11.7.2-snapshot-49
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,16 +3,20 @@
|
|
|
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.7.2-snapshot-
|
|
6
|
+
## [11.7.2-snapshot-49](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-49) (2026-04-16)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
10
10
|
|
|
11
|
+
* **many:** rework Select, SimpleSelect and TimeSelect ([fb95519](https://github.com/instructure/instructure-ui/commit/fb9551958326bdc8e95d55075c27c7e078c0c69c))
|
|
11
12
|
* **ui,ui-options,ui-drilldown:** rework Drilldown ([0562fe2](https://github.com/instructure/instructure-ui/commit/0562fe2b43e3235fc78c4981ada504c1a2f10d1a))
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
### BREAKING CHANGES
|
|
15
16
|
|
|
17
|
+
* **many:** contains breaking changes due to component using the new theming system
|
|
18
|
+
|
|
19
|
+
INSTUI-4807
|
|
16
20
|
* **ui,ui-options,ui-drilldown:** contains breaking changes due to component using the new theming system
|
|
17
21
|
|
|
18
22
|
INSTUI-4792
|
|
@@ -64,7 +64,7 @@ const generateStyle = (componentTheme, props) => {
|
|
|
64
64
|
},
|
|
65
65
|
'selected-highlighted': {
|
|
66
66
|
background: componentTheme.selectedHighlightedBackground,
|
|
67
|
-
color: componentTheme.
|
|
67
|
+
color: componentTheme.selectedLabelColor
|
|
68
68
|
},
|
|
69
69
|
default: {
|
|
70
70
|
transition: 'background 200ms'
|
|
@@ -70,7 +70,7 @@ const generateStyle = (componentTheme, props) => {
|
|
|
70
70
|
},
|
|
71
71
|
'selected-highlighted': {
|
|
72
72
|
background: componentTheme.selectedHighlightedBackground,
|
|
73
|
-
color: componentTheme.
|
|
73
|
+
color: componentTheme.selectedLabelColor
|
|
74
74
|
},
|
|
75
75
|
default: {
|
|
76
76
|
transition: 'background 200ms'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-options",
|
|
3
|
-
"version": "11.7.2-snapshot-
|
|
3
|
+
"version": "11.7.2-snapshot-49",
|
|
4
4
|
"description": "A view-only component for composing interactive lists and menus.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -15,22 +15,22 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.27.6",
|
|
18
|
-
"@instructure/emotion": "11.7.2-snapshot-
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/ui-react-utils": "11.7.2-snapshot-
|
|
22
|
-
"@instructure/ui-utils": "11.7.2-snapshot-
|
|
23
|
-
"@instructure/ui-view": "11.7.2-snapshot-
|
|
18
|
+
"@instructure/emotion": "11.7.2-snapshot-49",
|
|
19
|
+
"@instructure/shared-types": "11.7.2-snapshot-49",
|
|
20
|
+
"@instructure/ui-icons": "11.7.2-snapshot-49",
|
|
21
|
+
"@instructure/ui-react-utils": "11.7.2-snapshot-49",
|
|
22
|
+
"@instructure/ui-utils": "11.7.2-snapshot-49",
|
|
23
|
+
"@instructure/ui-view": "11.7.2-snapshot-49"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@testing-library/jest-dom": "^6.6.3",
|
|
27
27
|
"@testing-library/react": "15.0.7",
|
|
28
28
|
"@testing-library/user-event": "^14.6.1",
|
|
29
29
|
"vitest": "^3.2.2",
|
|
30
|
-
"@instructure/ui-axe-check": "11.7.2-snapshot-
|
|
31
|
-
"@instructure/ui-babel-preset": "11.7.2-snapshot-
|
|
32
|
-
"@instructure/ui-color-utils": "11.7.2-snapshot-
|
|
33
|
-
"@instructure/ui-themes": "11.7.2-snapshot-
|
|
30
|
+
"@instructure/ui-axe-check": "11.7.2-snapshot-49",
|
|
31
|
+
"@instructure/ui-babel-preset": "11.7.2-snapshot-49",
|
|
32
|
+
"@instructure/ui-color-utils": "11.7.2-snapshot-49",
|
|
33
|
+
"@instructure/ui-themes": "11.7.2-snapshot-49"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": ">=18 <=19"
|
|
@@ -71,7 +71,7 @@ const generateStyle = (
|
|
|
71
71
|
},
|
|
72
72
|
'selected-highlighted': {
|
|
73
73
|
background: componentTheme.selectedHighlightedBackground,
|
|
74
|
-
color: componentTheme.
|
|
74
|
+
color: componentTheme.selectedLabelColor
|
|
75
75
|
},
|
|
76
76
|
default: {
|
|
77
77
|
transition: 'background 200ms'
|