@instructure/ui-simple-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-simple-select
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-simple-select",
3
- "version": "8.38.2-snapshot-6",
3
+ "version": "8.38.2-snapshot-11",
4
4
  "description": "A component for standard select element behavior.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,22 +24,22 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.22.6",
27
- "@instructure/console": "8.38.2-snapshot-6",
28
- "@instructure/shared-types": "8.38.2-snapshot-6",
29
- "@instructure/ui-form-field": "8.38.2-snapshot-6",
30
- "@instructure/ui-position": "8.38.2-snapshot-6",
31
- "@instructure/ui-prop-types": "8.38.2-snapshot-6",
32
- "@instructure/ui-react-utils": "8.38.2-snapshot-6",
33
- "@instructure/ui-select": "8.38.2-snapshot-6",
34
- "@instructure/ui-testable": "8.38.2-snapshot-6",
27
+ "@instructure/console": "8.38.2-snapshot-11",
28
+ "@instructure/shared-types": "8.38.2-snapshot-11",
29
+ "@instructure/ui-form-field": "8.38.2-snapshot-11",
30
+ "@instructure/ui-position": "8.38.2-snapshot-11",
31
+ "@instructure/ui-prop-types": "8.38.2-snapshot-11",
32
+ "@instructure/ui-react-utils": "8.38.2-snapshot-11",
33
+ "@instructure/ui-select": "8.38.2-snapshot-11",
34
+ "@instructure/ui-testable": "8.38.2-snapshot-11",
35
35
  "prop-types": "^15.8.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@instructure/ui-babel-preset": "8.38.2-snapshot-6",
39
- "@instructure/ui-color-utils": "8.38.2-snapshot-6",
40
- "@instructure/ui-icons": "8.38.2-snapshot-6",
41
- "@instructure/ui-test-locator": "8.38.2-snapshot-6",
42
- "@instructure/ui-test-utils": "8.38.2-snapshot-6"
38
+ "@instructure/ui-babel-preset": "8.38.2-snapshot-11",
39
+ "@instructure/ui-color-utils": "8.38.2-snapshot-11",
40
+ "@instructure/ui-icons": "8.38.2-snapshot-11",
41
+ "@instructure/ui-test-locator": "8.38.2-snapshot-11",
42
+ "@instructure/ui-test-utils": "8.38.2-snapshot-11"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "react": ">=16.8 <=18"
@@ -162,3 +162,5 @@ render: true
162
162
  </SimpleSelect.Option>
163
163
  </SimpleSelect>
164
164
  ```
165
+
166
+ > 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 `SimpleSelect.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.