@instructure/ui-select 8.38.2-snapshot-6 → 8.38.2-snapshot-11

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
- ## [8.38.2-snapshot-6](https://github.com/instructure/instructure-ui/compare/v8.38.1...v8.38.2-snapshot-6) (2023-07-17)
6
+ ## [8.38.2-snapshot-11](https://github.com/instructure/instructure-ui/compare/v8.38.1...v8.38.2-snapshot-11) (2023-07-21)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-select
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-select",
3
- "version": "8.38.2-snapshot-6",
3
+ "version": "8.38.2-snapshot-11",
4
4
  "description": "A component for select and autocomplete behavior.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,30 +23,30 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "8.38.2-snapshot-6",
27
- "@instructure/ui-color-utils": "8.38.2-snapshot-6",
28
- "@instructure/ui-test-locator": "8.38.2-snapshot-6",
29
- "@instructure/ui-test-utils": "8.38.2-snapshot-6",
30
- "@instructure/ui-themes": "8.38.2-snapshot-6"
26
+ "@instructure/ui-babel-preset": "8.38.2-snapshot-11",
27
+ "@instructure/ui-color-utils": "8.38.2-snapshot-11",
28
+ "@instructure/ui-test-locator": "8.38.2-snapshot-11",
29
+ "@instructure/ui-test-utils": "8.38.2-snapshot-11",
30
+ "@instructure/ui-themes": "8.38.2-snapshot-11"
31
31
  },
32
32
  "dependencies": {
33
33
  "@babel/runtime": "^7.22.6",
34
- "@instructure/emotion": "8.38.2-snapshot-6",
35
- "@instructure/shared-types": "8.38.2-snapshot-6",
36
- "@instructure/ui-dom-utils": "8.38.2-snapshot-6",
37
- "@instructure/ui-form-field": "8.38.2-snapshot-6",
38
- "@instructure/ui-icons": "8.38.2-snapshot-6",
39
- "@instructure/ui-options": "8.38.2-snapshot-6",
40
- "@instructure/ui-popover": "8.38.2-snapshot-6",
41
- "@instructure/ui-position": "8.38.2-snapshot-6",
42
- "@instructure/ui-prop-types": "8.38.2-snapshot-6",
43
- "@instructure/ui-react-utils": "8.38.2-snapshot-6",
44
- "@instructure/ui-selectable": "8.38.2-snapshot-6",
45
- "@instructure/ui-testable": "8.38.2-snapshot-6",
46
- "@instructure/ui-text-input": "8.38.2-snapshot-6",
47
- "@instructure/ui-utils": "8.38.2-snapshot-6",
48
- "@instructure/ui-view": "8.38.2-snapshot-6",
49
- "@instructure/uid": "8.38.2-snapshot-6",
34
+ "@instructure/emotion": "8.38.2-snapshot-11",
35
+ "@instructure/shared-types": "8.38.2-snapshot-11",
36
+ "@instructure/ui-dom-utils": "8.38.2-snapshot-11",
37
+ "@instructure/ui-form-field": "8.38.2-snapshot-11",
38
+ "@instructure/ui-icons": "8.38.2-snapshot-11",
39
+ "@instructure/ui-options": "8.38.2-snapshot-11",
40
+ "@instructure/ui-popover": "8.38.2-snapshot-11",
41
+ "@instructure/ui-position": "8.38.2-snapshot-11",
42
+ "@instructure/ui-prop-types": "8.38.2-snapshot-11",
43
+ "@instructure/ui-react-utils": "8.38.2-snapshot-11",
44
+ "@instructure/ui-selectable": "8.38.2-snapshot-11",
45
+ "@instructure/ui-testable": "8.38.2-snapshot-11",
46
+ "@instructure/ui-text-input": "8.38.2-snapshot-11",
47
+ "@instructure/ui-utils": "8.38.2-snapshot-11",
48
+ "@instructure/ui-view": "8.38.2-snapshot-11",
49
+ "@instructure/uid": "8.38.2-snapshot-11",
50
50
  "prop-types": "^15.8.1"
51
51
  },
52
52
  "peerDependencies": {
@@ -1208,3 +1208,5 @@ render(
1208
1208
  #### Providing assistive text for screen readers
1209
1209
 
1210
1210
  It's important to ensure screen reader users receive instruction and feedback while interacting with a `Select`, but screen reader support for the `combobox` role varies. The `assistiveText` prop should always be used to explain how a keyboard user can make a selection. Additionally, a live region should be updated with feedback as the component is interacted with, such as when options are filtered or highlighted. Using an [Alert](#Alert) with the `screenReaderOnly` prop is the easiest way to do this.
1211
+
1212
+ > Note: This component uses a native `input` field to render the selected value. When it's included in a native HTML `form`, the text value will be sent to the backend instead of anything specified in the `value` field of the `Select.Option`-s. We do not recommend to use this component this way, rather write your own code that collects information and sends it to the backend.