@instructure/ui-date-input 8.51.1-snapshot-8 → 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-8](https://github.com/instructure/instructure-ui/compare/v8.51.0...v8.51.1-snapshot-8) (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-date-input
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-date-input",
3
- "version": "8.51.1-snapshot-8",
3
+ "version": "8.51.1-snapshot-10",
4
4
  "description": "A UI component library made by Instructure Inc.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,24 +23,24 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "8.51.1-snapshot-8",
27
- "@instructure/ui-test-locator": "8.51.1-snapshot-8",
28
- "@instructure/ui-test-utils": "8.51.1-snapshot-8"
26
+ "@instructure/ui-babel-preset": "8.51.1-snapshot-10",
27
+ "@instructure/ui-test-locator": "8.51.1-snapshot-10",
28
+ "@instructure/ui-test-utils": "8.51.1-snapshot-10"
29
29
  },
30
30
  "dependencies": {
31
31
  "@babel/runtime": "^7.23.2",
32
- "@instructure/emotion": "8.51.1-snapshot-8",
33
- "@instructure/ui-calendar": "8.51.1-snapshot-8",
34
- "@instructure/ui-form-field": "8.51.1-snapshot-8",
35
- "@instructure/ui-icons": "8.51.1-snapshot-8",
36
- "@instructure/ui-popover": "8.51.1-snapshot-8",
37
- "@instructure/ui-position": "8.51.1-snapshot-8",
38
- "@instructure/ui-prop-types": "8.51.1-snapshot-8",
39
- "@instructure/ui-react-utils": "8.51.1-snapshot-8",
40
- "@instructure/ui-selectable": "8.51.1-snapshot-8",
41
- "@instructure/ui-testable": "8.51.1-snapshot-8",
42
- "@instructure/ui-text-input": "8.51.1-snapshot-8",
43
- "@instructure/ui-utils": "8.51.1-snapshot-8",
32
+ "@instructure/emotion": "8.51.1-snapshot-10",
33
+ "@instructure/ui-calendar": "8.51.1-snapshot-10",
34
+ "@instructure/ui-form-field": "8.51.1-snapshot-10",
35
+ "@instructure/ui-icons": "8.51.1-snapshot-10",
36
+ "@instructure/ui-popover": "8.51.1-snapshot-10",
37
+ "@instructure/ui-position": "8.51.1-snapshot-10",
38
+ "@instructure/ui-prop-types": "8.51.1-snapshot-10",
39
+ "@instructure/ui-react-utils": "8.51.1-snapshot-10",
40
+ "@instructure/ui-selectable": "8.51.1-snapshot-10",
41
+ "@instructure/ui-testable": "8.51.1-snapshot-10",
42
+ "@instructure/ui-text-input": "8.51.1-snapshot-10",
43
+ "@instructure/ui-utils": "8.51.1-snapshot-10",
44
44
  "prop-types": "^15.8.1"
45
45
  },
46
46
  "peerDependencies": {
@@ -203,7 +203,10 @@ type AllowedPropKeys = Readonly<Array<PropKeys>>
203
203
 
204
204
  type DateInputProps = DateInputOwnProps &
205
205
  WithStyleProps<null, DateInputStyle> &
206
- OtherHTMLAttributes<DateInputOwnProps, InputHTMLAttributes<DateInputOwnProps>>
206
+ OtherHTMLAttributes<
207
+ DateInputOwnProps,
208
+ InputHTMLAttributes<DateInputOwnProps & Element>
209
+ >
207
210
 
208
211
  type DateInputStyle = ComponentStyle<'dateInput' | 'assistiveText'>
209
212