@instructure/ui-select 8.51.1-snapshot-9 → 8.51.1-snapshot-10

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,9 +3,12 @@
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.51.1-snapshot-9](https://github.com/instructure/instructure-ui/compare/v8.51.0...v8.51.1-snapshot-9) (2024-02-01)
6
+ ## [8.51.1-snapshot-10](https://github.com/instructure/instructure-ui/compare/v8.51.0...v8.51.1-snapshot-10) (2024-02-01)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-select
8
+
9
+ ### Bug Fixes
10
+
11
+ * **shared-types:** extend OtherHTMLAttributes with Element ([474fa4d](https://github.com/instructure/instructure-ui/commit/474fa4da4781acc347b993a7c64c52d101b00feb))
9
12
 
10
13
 
11
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-select",
3
- "version": "8.51.1-snapshot-9",
3
+ "version": "8.51.1-snapshot-10",
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.51.1-snapshot-9",
27
- "@instructure/ui-color-utils": "8.51.1-snapshot-9",
28
- "@instructure/ui-test-locator": "8.51.1-snapshot-9",
29
- "@instructure/ui-test-utils": "8.51.1-snapshot-9",
30
- "@instructure/ui-themes": "8.51.1-snapshot-9",
26
+ "@instructure/ui-babel-preset": "8.51.1-snapshot-10",
27
+ "@instructure/ui-color-utils": "8.51.1-snapshot-10",
28
+ "@instructure/ui-test-locator": "8.51.1-snapshot-10",
29
+ "@instructure/ui-test-utils": "8.51.1-snapshot-10",
30
+ "@instructure/ui-themes": "8.51.1-snapshot-10",
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.51.1-snapshot-9",
37
- "@instructure/shared-types": "8.51.1-snapshot-9",
38
- "@instructure/ui-dom-utils": "8.51.1-snapshot-9",
39
- "@instructure/ui-form-field": "8.51.1-snapshot-9",
40
- "@instructure/ui-icons": "8.51.1-snapshot-9",
41
- "@instructure/ui-options": "8.51.1-snapshot-9",
42
- "@instructure/ui-popover": "8.51.1-snapshot-9",
43
- "@instructure/ui-position": "8.51.1-snapshot-9",
44
- "@instructure/ui-prop-types": "8.51.1-snapshot-9",
45
- "@instructure/ui-react-utils": "8.51.1-snapshot-9",
46
- "@instructure/ui-selectable": "8.51.1-snapshot-9",
47
- "@instructure/ui-testable": "8.51.1-snapshot-9",
48
- "@instructure/ui-text-input": "8.51.1-snapshot-9",
49
- "@instructure/ui-utils": "8.51.1-snapshot-9",
50
- "@instructure/ui-view": "8.51.1-snapshot-9",
51
- "@instructure/uid": "8.51.1-snapshot-9",
36
+ "@instructure/emotion": "8.51.1-snapshot-10",
37
+ "@instructure/shared-types": "8.51.1-snapshot-10",
38
+ "@instructure/ui-dom-utils": "8.51.1-snapshot-10",
39
+ "@instructure/ui-form-field": "8.51.1-snapshot-10",
40
+ "@instructure/ui-icons": "8.51.1-snapshot-10",
41
+ "@instructure/ui-options": "8.51.1-snapshot-10",
42
+ "@instructure/ui-popover": "8.51.1-snapshot-10",
43
+ "@instructure/ui-position": "8.51.1-snapshot-10",
44
+ "@instructure/ui-prop-types": "8.51.1-snapshot-10",
45
+ "@instructure/ui-react-utils": "8.51.1-snapshot-10",
46
+ "@instructure/ui-selectable": "8.51.1-snapshot-10",
47
+ "@instructure/ui-testable": "8.51.1-snapshot-10",
48
+ "@instructure/ui-text-input": "8.51.1-snapshot-10",
49
+ "@instructure/ui-utils": "8.51.1-snapshot-10",
50
+ "@instructure/ui-view": "8.51.1-snapshot-10",
51
+ "@instructure/uid": "8.51.1-snapshot-10",
52
52
  "prop-types": "^15.8.1"
53
53
  },
54
54
  "peerDependencies": {
@@ -262,7 +262,10 @@ type AllowedPropKeys = Readonly<Array<PropKeys>>
262
262
 
263
263
  type SelectProps = SelectOwnProps &
264
264
  WithStyleProps<SelectTheme, SelectStyle> &
265
- OtherHTMLAttributes<SelectOwnProps, InputHTMLAttributes<SelectOwnProps>> &
265
+ OtherHTMLAttributes<
266
+ SelectOwnProps,
267
+ InputHTMLAttributes<SelectOwnProps & Element>
268
+ > &
266
269
  WithDeterministicIdProps
267
270
 
268
271
  type SelectStyle = ComponentStyle<'select' | 'icon' | 'assistiveText'>