@instructure/ui-options 8.50.1-snapshot-1 → 8.50.1-snapshot-13
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 +13 -13
- package/src/Options/README.md +6 -10
- package/tsconfig.build.tsbuildinfo +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
|
-
## [8.50.1-snapshot-
|
|
6
|
+
## [8.50.1-snapshot-13](https://github.com/instructure/instructure-ui/compare/v8.50.0...v8.50.1-snapshot-13) (2023-12-07)
|
|
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": "8.50.1-snapshot-
|
|
3
|
+
"version": "8.50.1-snapshot-13",
|
|
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",
|
|
@@ -23,21 +23,21 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "8.50.1-snapshot-
|
|
27
|
-
"@instructure/ui-color-utils": "8.50.1-snapshot-
|
|
28
|
-
"@instructure/ui-test-locator": "8.50.1-snapshot-
|
|
29
|
-
"@instructure/ui-test-utils": "8.50.1-snapshot-
|
|
30
|
-
"@instructure/ui-themes": "8.50.1-snapshot-
|
|
26
|
+
"@instructure/ui-babel-preset": "8.50.1-snapshot-13",
|
|
27
|
+
"@instructure/ui-color-utils": "8.50.1-snapshot-13",
|
|
28
|
+
"@instructure/ui-test-locator": "8.50.1-snapshot-13",
|
|
29
|
+
"@instructure/ui-test-utils": "8.50.1-snapshot-13",
|
|
30
|
+
"@instructure/ui-themes": "8.50.1-snapshot-13"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@babel/runtime": "^7.23.2",
|
|
34
|
-
"@instructure/emotion": "8.50.1-snapshot-
|
|
35
|
-
"@instructure/shared-types": "8.50.1-snapshot-
|
|
36
|
-
"@instructure/ui-icons": "8.50.1-snapshot-
|
|
37
|
-
"@instructure/ui-prop-types": "8.50.1-snapshot-
|
|
38
|
-
"@instructure/ui-react-utils": "8.50.1-snapshot-
|
|
39
|
-
"@instructure/ui-testable": "8.50.1-snapshot-
|
|
40
|
-
"@instructure/ui-view": "8.50.1-snapshot-
|
|
34
|
+
"@instructure/emotion": "8.50.1-snapshot-13",
|
|
35
|
+
"@instructure/shared-types": "8.50.1-snapshot-13",
|
|
36
|
+
"@instructure/ui-icons": "8.50.1-snapshot-13",
|
|
37
|
+
"@instructure/ui-prop-types": "8.50.1-snapshot-13",
|
|
38
|
+
"@instructure/ui-react-utils": "8.50.1-snapshot-13",
|
|
39
|
+
"@instructure/ui-testable": "8.50.1-snapshot-13",
|
|
40
|
+
"@instructure/ui-view": "8.50.1-snapshot-13",
|
|
41
41
|
"prop-types": "^15.8.1"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
package/src/Options/README.md
CHANGED
|
@@ -8,7 +8,7 @@ The `variant` prop of `Option.Item` provides several visual treatments. Use the
|
|
|
8
8
|
|
|
9
9
|
```js
|
|
10
10
|
---
|
|
11
|
-
|
|
11
|
+
type: example
|
|
12
12
|
---
|
|
13
13
|
<View display="block" width="300px">
|
|
14
14
|
<Options>
|
|
@@ -37,7 +37,7 @@ example: true
|
|
|
37
37
|
|
|
38
38
|
```js
|
|
39
39
|
---
|
|
40
|
-
|
|
40
|
+
type: example
|
|
41
41
|
---
|
|
42
42
|
<View display="block" width="300px">
|
|
43
43
|
<Options role="menu" as="ul">
|
|
@@ -90,8 +90,7 @@ example: true
|
|
|
90
90
|
|
|
91
91
|
```js
|
|
92
92
|
---
|
|
93
|
-
|
|
94
|
-
example: true
|
|
93
|
+
type: example
|
|
95
94
|
---
|
|
96
95
|
class Example extends React.Component {
|
|
97
96
|
constructor (props) {
|
|
@@ -189,8 +188,7 @@ By default, the icons in the `Option.Item` have the same color as the text. If y
|
|
|
189
188
|
|
|
190
189
|
```js
|
|
191
190
|
---
|
|
192
|
-
|
|
193
|
-
example: true
|
|
191
|
+
type: example
|
|
194
192
|
---
|
|
195
193
|
class Example extends React.Component {
|
|
196
194
|
constructor (props) {
|
|
@@ -322,8 +320,7 @@ For longer, multi-line options the problem of the vertical alignment comes up. T
|
|
|
322
320
|
|
|
323
321
|
```js
|
|
324
322
|
---
|
|
325
|
-
|
|
326
|
-
example: true
|
|
323
|
+
type: example
|
|
327
324
|
---
|
|
328
325
|
class Example extends React.Component {
|
|
329
326
|
constructor(props) {
|
|
@@ -390,8 +387,7 @@ Providing a `href` prop will render the option as `<a>` link element.
|
|
|
390
387
|
|
|
391
388
|
```js
|
|
392
389
|
---
|
|
393
|
-
|
|
394
|
-
example: true
|
|
390
|
+
type: example
|
|
395
391
|
---
|
|
396
392
|
class Example extends React.Component {
|
|
397
393
|
constructor(props) {
|