@instructure/ui-options 11.7.2-snapshot-54 → 11.7.2-snapshot-62

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.7.2-snapshot-54](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-54) (2026-04-23)
6
+ ## [11.7.2-snapshot-62](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-62) (2026-04-23)
7
7
 
8
8
 
9
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-options",
3
- "version": "11.7.2-snapshot-54",
3
+ "version": "11.7.2-snapshot-62",
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-54",
19
- "@instructure/shared-types": "11.7.2-snapshot-54",
20
- "@instructure/ui-icons": "11.7.2-snapshot-54",
21
- "@instructure/ui-utils": "11.7.2-snapshot-54",
22
- "@instructure/ui-react-utils": "11.7.2-snapshot-54",
23
- "@instructure/ui-view": "11.7.2-snapshot-54"
18
+ "@instructure/emotion": "11.7.2-snapshot-62",
19
+ "@instructure/shared-types": "11.7.2-snapshot-62",
20
+ "@instructure/ui-react-utils": "11.7.2-snapshot-62",
21
+ "@instructure/ui-utils": "11.7.2-snapshot-62",
22
+ "@instructure/ui-icons": "11.7.2-snapshot-62",
23
+ "@instructure/ui-view": "11.7.2-snapshot-62"
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-54",
31
- "@instructure/ui-themes": "11.7.2-snapshot-54",
32
- "@instructure/ui-babel-preset": "11.7.2-snapshot-54",
33
- "@instructure/ui-color-utils": "11.7.2-snapshot-54"
30
+ "@instructure/ui-axe-check": "11.7.2-snapshot-62",
31
+ "@instructure/ui-babel-preset": "11.7.2-snapshot-62",
32
+ "@instructure/ui-color-utils": "11.7.2-snapshot-62",
33
+ "@instructure/ui-themes": "11.7.2-snapshot-62"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": ">=18 <=19"
@@ -39,7 +39,7 @@ import { ReactNode } from 'react'
39
39
  * @return {Object} The final style object, which will be used in the component
40
40
  */
41
41
  const generateStyle = (
42
- componentTheme: NewComponentTypes['OptionsItem'],
42
+ componentTheme: ReturnType<NewComponentTypes['OptionsItem']>,
43
43
  props: OptionsItemProps
44
44
  ): OptionsItemStyle => {
45
45
  const {
@@ -36,7 +36,7 @@ import type { OptionsSeparatorStyle } from './props'
36
36
  * @return {Object} The final style object, which will be used in the component
37
37
  */
38
38
  const generateStyle = (
39
- componentTheme: NewComponentTypes['OptionsSeparator']
39
+ componentTheme: ReturnType<NewComponentTypes['OptionsSeparator']>
40
40
  ): OptionsSeparatorStyle => {
41
41
  return {
42
42
  separator: {
@@ -36,7 +36,7 @@ import type { OptionsStyle } from './props'
36
36
  * @return {Object} The final style object, which will be used in the component
37
37
  */
38
38
  const generateStyle = (
39
- componentTheme: NewComponentTypes['Options']
39
+ componentTheme: ReturnType<NewComponentTypes['Options']>
40
40
  ): OptionsStyle => {
41
41
  return {
42
42
  options: {