@instructure/ui-options 11.7.3-snapshot-3 → 11.7.3-snapshot-6
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 +1 -1
- package/package.json +11 -11
- package/src/Options/v2/Item/props.ts +5 -2
- package/src/Options/v2/Separator/props.ts +5 -2
- package/src/Options/v2/props.ts +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Options/v2/Item/props.d.ts +3 -2
- package/types/Options/v2/Item/props.d.ts.map +1 -1
- package/types/Options/v2/Separator/props.d.ts +3 -2
- package/types/Options/v2/Separator/props.d.ts.map +1 -1
- package/types/Options/v2/props.d.ts +3 -2
- package/types/Options/v2/props.d.ts.map +1 -1
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.3-snapshot-
|
|
6
|
+
## [11.7.3-snapshot-6](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-6) (2026-04-29)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-options
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-options",
|
|
3
|
-
"version": "11.7.3-snapshot-
|
|
3
|
+
"version": "11.7.3-snapshot-6",
|
|
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.3-snapshot-
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/ui-utils": "11.7.3-snapshot-
|
|
23
|
-
"@instructure/ui-view": "11.7.3-snapshot-
|
|
18
|
+
"@instructure/emotion": "11.7.3-snapshot-6",
|
|
19
|
+
"@instructure/ui-icons": "11.7.3-snapshot-6",
|
|
20
|
+
"@instructure/shared-types": "11.7.3-snapshot-6",
|
|
21
|
+
"@instructure/ui-themes": "11.7.3-snapshot-6",
|
|
22
|
+
"@instructure/ui-react-utils": "11.7.3-snapshot-6",
|
|
23
|
+
"@instructure/ui-view": "11.7.3-snapshot-6",
|
|
24
|
+
"@instructure/ui-utils": "11.7.3-snapshot-6"
|
|
24
25
|
},
|
|
25
26
|
"devDependencies": {
|
|
26
27
|
"@testing-library/jest-dom": "^6.6.3",
|
|
27
28
|
"@testing-library/react": "15.0.7",
|
|
28
29
|
"@testing-library/user-event": "^14.6.1",
|
|
29
30
|
"vitest": "^3.2.2",
|
|
30
|
-
"@instructure/ui-axe-check": "11.7.3-snapshot-
|
|
31
|
-
"@instructure/ui-babel-preset": "11.7.3-snapshot-
|
|
32
|
-
"@instructure/ui-color-utils": "11.7.3-snapshot-
|
|
33
|
-
"@instructure/ui-themes": "11.7.3-snapshot-3"
|
|
31
|
+
"@instructure/ui-axe-check": "11.7.3-snapshot-6",
|
|
32
|
+
"@instructure/ui-babel-preset": "11.7.3-snapshot-6",
|
|
33
|
+
"@instructure/ui-color-utils": "11.7.3-snapshot-6"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": ">=18 <=19"
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
|
|
25
25
|
import type {
|
|
26
26
|
AsElementType,
|
|
27
|
-
OptionsItemTheme,
|
|
28
27
|
OtherHTMLAttributes,
|
|
29
28
|
Renderable
|
|
30
29
|
} from '@instructure/shared-types'
|
|
31
30
|
import type { WithDeterministicIdProps } from '@instructure/ui-react-utils'
|
|
32
31
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'
|
|
32
|
+
import type { NewComponentTypes } from '@instructure/ui-themes'
|
|
33
33
|
|
|
34
34
|
type OptionsItemRenderProps = {
|
|
35
35
|
children?: Renderable
|
|
@@ -103,7 +103,10 @@ type PropKeys = keyof OptionsItemOwnProps
|
|
|
103
103
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
104
104
|
|
|
105
105
|
type OptionsItemProps = OptionsItemOwnProps &
|
|
106
|
-
WithStyleProps<
|
|
106
|
+
WithStyleProps<
|
|
107
|
+
ReturnType<NewComponentTypes['OptionsItem']>,
|
|
108
|
+
OptionsItemStyle
|
|
109
|
+
> &
|
|
107
110
|
WithDeterministicIdProps &
|
|
108
111
|
OtherHTMLAttributes<OptionsItemOwnProps>
|
|
109
112
|
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
|
|
25
25
|
import type {
|
|
26
26
|
AsElementType,
|
|
27
|
-
OptionsSeparatorTheme,
|
|
28
27
|
OtherHTMLAttributes
|
|
29
28
|
} from '@instructure/shared-types'
|
|
30
29
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'
|
|
30
|
+
import type { NewComponentTypes } from '@instructure/ui-themes'
|
|
31
31
|
import { AllHTMLAttributes } from 'react'
|
|
32
32
|
|
|
33
33
|
type OptionsSeparatorOwnProps = {
|
|
@@ -42,7 +42,10 @@ type PropKeys = keyof OptionsSeparatorOwnProps
|
|
|
42
42
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
43
43
|
|
|
44
44
|
type OptionsSeparatorProps = OptionsSeparatorOwnProps &
|
|
45
|
-
WithStyleProps<
|
|
45
|
+
WithStyleProps<
|
|
46
|
+
ReturnType<NewComponentTypes['OptionsSeparator']>,
|
|
47
|
+
OptionsSeparatorStyle
|
|
48
|
+
> &
|
|
46
49
|
OtherHTMLAttributes<OptionsSeparatorOwnProps, AllHTMLAttributes<any>>
|
|
47
50
|
|
|
48
51
|
type OptionsSeparatorStyle = ComponentStyle<'separator'>
|
package/src/Options/v2/props.ts
CHANGED
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
import React from 'react'
|
|
25
25
|
import type {
|
|
26
26
|
AsElementType,
|
|
27
|
-
OptionsTheme,
|
|
28
27
|
OtherHTMLAttributes
|
|
29
28
|
} from '@instructure/shared-types'
|
|
30
29
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'
|
|
30
|
+
import type { NewComponentTypes } from '@instructure/ui-themes'
|
|
31
31
|
import type { WithDeterministicIdProps } from '@instructure/ui-react-utils'
|
|
32
32
|
import { Renderable } from '@instructure/shared-types'
|
|
33
33
|
|
|
@@ -59,7 +59,7 @@ type PropKeys = keyof OptionsOwnProps
|
|
|
59
59
|
type AllowedPropKeys = Readonly<Array<PropKeys>>
|
|
60
60
|
|
|
61
61
|
type OptionsProps = OptionsOwnProps &
|
|
62
|
-
WithStyleProps<
|
|
62
|
+
WithStyleProps<ReturnType<NewComponentTypes['Options']>, OptionsStyle> &
|
|
63
63
|
OtherHTMLAttributes<OptionsOwnProps> &
|
|
64
64
|
WithDeterministicIdProps
|
|
65
65
|
|