@instructure/ui-simple-select 8.51.1-snapshot-9 → 8.51.1-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,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-
|
6
|
+
## [8.51.1-snapshot-11](https://github.com/instructure/instructure-ui/compare/v8.51.0...v8.51.1-snapshot-11) (2024-02-02)
|
7
7
|
|
8
|
-
|
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-simple-select",
|
3
|
-
"version": "8.51.1-snapshot-
|
3
|
+
"version": "8.51.1-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,23 +24,23 @@
|
|
24
24
|
"license": "MIT",
|
25
25
|
"dependencies": {
|
26
26
|
"@babel/runtime": "^7.23.2",
|
27
|
-
"@instructure/console": "8.51.1-snapshot-
|
28
|
-
"@instructure/shared-types": "8.51.1-snapshot-
|
29
|
-
"@instructure/ui-form-field": "8.51.1-snapshot-
|
30
|
-
"@instructure/ui-position": "8.51.1-snapshot-
|
31
|
-
"@instructure/ui-prop-types": "8.51.1-snapshot-
|
32
|
-
"@instructure/ui-react-utils": "8.51.1-snapshot-
|
33
|
-
"@instructure/ui-select": "8.51.1-snapshot-
|
34
|
-
"@instructure/ui-testable": "8.51.1-snapshot-
|
27
|
+
"@instructure/console": "8.51.1-snapshot-11",
|
28
|
+
"@instructure/shared-types": "8.51.1-snapshot-11",
|
29
|
+
"@instructure/ui-form-field": "8.51.1-snapshot-11",
|
30
|
+
"@instructure/ui-position": "8.51.1-snapshot-11",
|
31
|
+
"@instructure/ui-prop-types": "8.51.1-snapshot-11",
|
32
|
+
"@instructure/ui-react-utils": "8.51.1-snapshot-11",
|
33
|
+
"@instructure/ui-select": "8.51.1-snapshot-11",
|
34
|
+
"@instructure/ui-testable": "8.51.1-snapshot-11",
|
35
35
|
"prop-types": "^15.8.1"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
38
|
-
"@instructure/ui-babel-preset": "8.51.1-snapshot-
|
39
|
-
"@instructure/ui-color-utils": "8.51.1-snapshot-
|
40
|
-
"@instructure/ui-icons": "8.51.1-snapshot-
|
41
|
-
"@instructure/ui-test-locator": "8.51.1-snapshot-
|
42
|
-
"@instructure/ui-test-utils": "8.51.1-snapshot-
|
43
|
-
"@instructure/ui-utils": "8.51.1-snapshot-
|
38
|
+
"@instructure/ui-babel-preset": "8.51.1-snapshot-11",
|
39
|
+
"@instructure/ui-color-utils": "8.51.1-snapshot-11",
|
40
|
+
"@instructure/ui-icons": "8.51.1-snapshot-11",
|
41
|
+
"@instructure/ui-test-locator": "8.51.1-snapshot-11",
|
42
|
+
"@instructure/ui-test-utils": "8.51.1-snapshot-11",
|
43
|
+
"@instructure/ui-utils": "8.51.1-snapshot-11",
|
44
44
|
"@testing-library/jest-dom": "^6.1.4",
|
45
45
|
"@testing-library/react": "^14.0.0"
|
46
46
|
},
|
@@ -238,7 +238,7 @@ type SimpleSelectProps = PickPropsWithExceptions<
|
|
238
238
|
SimpleSelectOwnProps &
|
239
239
|
OtherHTMLAttributes<
|
240
240
|
SimpleSelectOwnProps,
|
241
|
-
InputHTMLAttributes<SimpleSelectOwnProps>
|
241
|
+
InputHTMLAttributes<SimpleSelectOwnProps & Element>
|
242
242
|
> &
|
243
243
|
WithDeterministicIdProps
|
244
244
|
|