@instructure/ui-select 8.50.1-snapshot-0 → 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 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-0](https://github.com/instructure/instructure-ui/compare/v8.50.0...v8.50.1-snapshot-0) (2023-12-06)
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-select
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-select",
3
- "version": "8.50.1-snapshot-0",
3
+ "version": "8.50.1-snapshot-13",
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,32 +23,32 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "8.50.1-snapshot-0",
27
- "@instructure/ui-color-utils": "8.50.1-snapshot-0",
28
- "@instructure/ui-test-locator": "8.50.1-snapshot-0",
29
- "@instructure/ui-test-utils": "8.50.1-snapshot-0",
30
- "@instructure/ui-themes": "8.50.1-snapshot-0",
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
  "@testing-library/jest-dom": "^6.1.4",
32
32
  "@testing-library/react": "^14.0.0"
33
33
  },
34
34
  "dependencies": {
35
35
  "@babel/runtime": "^7.23.2",
36
- "@instructure/emotion": "8.50.1-snapshot-0",
37
- "@instructure/shared-types": "8.50.1-snapshot-0",
38
- "@instructure/ui-dom-utils": "8.50.1-snapshot-0",
39
- "@instructure/ui-form-field": "8.50.1-snapshot-0",
40
- "@instructure/ui-icons": "8.50.1-snapshot-0",
41
- "@instructure/ui-options": "8.50.1-snapshot-0",
42
- "@instructure/ui-popover": "8.50.1-snapshot-0",
43
- "@instructure/ui-position": "8.50.1-snapshot-0",
44
- "@instructure/ui-prop-types": "8.50.1-snapshot-0",
45
- "@instructure/ui-react-utils": "8.50.1-snapshot-0",
46
- "@instructure/ui-selectable": "8.50.1-snapshot-0",
47
- "@instructure/ui-testable": "8.50.1-snapshot-0",
48
- "@instructure/ui-text-input": "8.50.1-snapshot-0",
49
- "@instructure/ui-utils": "8.50.1-snapshot-0",
50
- "@instructure/ui-view": "8.50.1-snapshot-0",
51
- "@instructure/uid": "8.50.1-snapshot-0",
36
+ "@instructure/emotion": "8.50.1-snapshot-13",
37
+ "@instructure/shared-types": "8.50.1-snapshot-13",
38
+ "@instructure/ui-dom-utils": "8.50.1-snapshot-13",
39
+ "@instructure/ui-form-field": "8.50.1-snapshot-13",
40
+ "@instructure/ui-icons": "8.50.1-snapshot-13",
41
+ "@instructure/ui-options": "8.50.1-snapshot-13",
42
+ "@instructure/ui-popover": "8.50.1-snapshot-13",
43
+ "@instructure/ui-position": "8.50.1-snapshot-13",
44
+ "@instructure/ui-prop-types": "8.50.1-snapshot-13",
45
+ "@instructure/ui-react-utils": "8.50.1-snapshot-13",
46
+ "@instructure/ui-selectable": "8.50.1-snapshot-13",
47
+ "@instructure/ui-testable": "8.50.1-snapshot-13",
48
+ "@instructure/ui-text-input": "8.50.1-snapshot-13",
49
+ "@instructure/ui-utils": "8.50.1-snapshot-13",
50
+ "@instructure/ui-view": "8.50.1-snapshot-13",
51
+ "@instructure/uid": "8.50.1-snapshot-13",
52
52
  "prop-types": "^15.8.1"
53
53
  },
54
54
  "peerDependencies": {
@@ -16,8 +16,7 @@ describes: Select
16
16
 
17
17
  ```javascript
18
18
  ---
19
- example: true
20
- render: false
19
+ type: example
21
20
  ---
22
21
 
23
22
  class SingleSelectExample extends React.Component {
@@ -159,8 +158,7 @@ It's best practice to always provide autocomplete functionality to help users ma
159
158
 
160
159
  ```javascript
161
160
  ---
162
- example: true
163
- render: false
161
+ type: example
164
162
  ---
165
163
 
166
164
  class AutocompleteExample extends React.Component {
@@ -391,8 +389,7 @@ To mark an option as "highlighted", use the option's `isHighlighted` prop. Note
391
389
 
392
390
  ```javascript
393
391
  ---
394
- example: true
395
- render: false
392
+ type: example
396
393
  ---
397
394
 
398
395
  class MultipleSelectExample extends React.Component {
@@ -649,8 +646,7 @@ In addition to `<Select.Option />` Select also accepts `<Select.Group />` as chi
649
646
 
650
647
  ```javascript
651
648
  ---
652
- example: true
653
- render: false
649
+ type: example
654
650
  ---
655
651
 
656
652
  class GroupSelectExample extends React.Component {
@@ -841,8 +837,7 @@ Due to a WebKit bug if you are using `Select.Group` with autocomplete, the scree
841
837
 
842
838
  ```javascript
843
839
  ---
844
- example: true
845
- render: false
840
+ type: example
846
841
  ---
847
842
 
848
843
  class GroupSelectAutocompleteExample extends React.Component {
@@ -1025,8 +1020,7 @@ If no results match the user's search, it's recommended to leave `isShowingOptio
1025
1020
 
1026
1021
  ```javascript
1027
1022
  ---
1028
- example: true
1029
- render: false
1023
+ type: example
1030
1024
  ---
1031
1025
 
1032
1026
  class AsyncExample extends React.Component {
@@ -1249,8 +1243,7 @@ To display icons (or other elements) before or after an option, pass it via the
1249
1243
 
1250
1244
  ```javascript
1251
1245
  ---
1252
- example: true
1253
- render: false
1246
+ type: example
1254
1247
  ---
1255
1248
  class SingleSelectExample extends React.Component {
1256
1249
  state = {