@instructure/ui-date-input 11.7.2-snapshot-21 → 11.7.2-snapshot-23
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 +5 -2
- package/es/DateInput/v2/index.js +1 -0
- package/es/DateInput2/v1/index.js +1 -0
- package/lib/DateInput/v2/index.js +1 -0
- package/lib/DateInput2/v1/index.js +1 -0
- package/package.json +16 -16
- package/src/DateInput/v2/index.tsx +1 -0
- package/src/DateInput2/v1/index.tsx +1 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/DateInput/v2/index.d.ts.map +1 -1
- package/types/DateInput2/v1/index.d.ts.map +1 -1
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
|
-
## [11.7.2-snapshot-
|
|
6
|
+
## [11.7.2-snapshot-23](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-23) (2026-04-01)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **ui-date-input:** voicover: read only textinput label, ignore children ([cd26015](https://github.com/instructure/instructure-ui/commit/cd26015f8d759e1dab931b0f691e345006ecb4b8))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/es/DateInput/v2/index.js
CHANGED
|
@@ -239,6 +239,7 @@ const DateInput = exports.DateInput = /*#__PURE__*/(0, _react.forwardRef)(({
|
|
|
239
239
|
ref: ref,
|
|
240
240
|
inputRef: inputRef,
|
|
241
241
|
renderLabel: renderLabel,
|
|
242
|
+
"aria-label": (0, _callRenderProp.callRenderProp)(renderLabel),
|
|
242
243
|
onChange: handleInputChange,
|
|
243
244
|
onBlur: handleBlur,
|
|
244
245
|
isRequired: isRequired,
|
|
@@ -238,6 +238,7 @@ const DateInput2 = exports.DateInput2 = /*#__PURE__*/(0, _react.forwardRef)(({
|
|
|
238
238
|
...(0, _passthroughProps.passthroughProps)(rest),
|
|
239
239
|
ref: ref,
|
|
240
240
|
inputRef: inputRef,
|
|
241
|
+
"aria-label": (0, _callRenderProp.callRenderProp)(renderLabel),
|
|
241
242
|
renderLabel: renderLabel,
|
|
242
243
|
onChange: handleInputChange,
|
|
243
244
|
onBlur: handleBlur,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-date-input",
|
|
3
|
-
"version": "11.7.2-snapshot-
|
|
3
|
+
"version": "11.7.2-snapshot-23",
|
|
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",
|
|
@@ -16,27 +16,27 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.27.6",
|
|
18
18
|
"moment-timezone": "^0.6.0",
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/
|
|
24
|
-
"@instructure/ui-icons": "11.7.2-snapshot-
|
|
25
|
-
"@instructure/ui-popover": "11.7.2-snapshot-
|
|
26
|
-
"@instructure/ui-position": "11.7.2-snapshot-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-
|
|
29
|
-
"@instructure/ui-text-input": "11.7.2-snapshot-
|
|
30
|
-
"@instructure/ui-utils": "11.7.2-snapshot-
|
|
19
|
+
"@instructure/emotion": "11.7.2-snapshot-23",
|
|
20
|
+
"@instructure/shared-types": "11.7.2-snapshot-23",
|
|
21
|
+
"@instructure/ui-form-field": "11.7.2-snapshot-23",
|
|
22
|
+
"@instructure/ui-calendar": "11.7.2-snapshot-23",
|
|
23
|
+
"@instructure/ui-i18n": "11.7.2-snapshot-23",
|
|
24
|
+
"@instructure/ui-icons": "11.7.2-snapshot-23",
|
|
25
|
+
"@instructure/ui-popover": "11.7.2-snapshot-23",
|
|
26
|
+
"@instructure/ui-position": "11.7.2-snapshot-23",
|
|
27
|
+
"@instructure/ui-react-utils": "11.7.2-snapshot-23",
|
|
28
|
+
"@instructure/ui-selectable": "11.7.2-snapshot-23",
|
|
29
|
+
"@instructure/ui-text-input": "11.7.2-snapshot-23",
|
|
30
|
+
"@instructure/ui-utils": "11.7.2-snapshot-23"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@testing-library/jest-dom": "^6.6.3",
|
|
34
34
|
"@testing-library/react": "15.0.7",
|
|
35
35
|
"@testing-library/user-event": "^14.6.1",
|
|
36
36
|
"vitest": "^3.2.2",
|
|
37
|
-
"@instructure/ui-
|
|
38
|
-
"@instructure/ui-
|
|
39
|
-
"@instructure/ui-scripts": "11.7.2-snapshot-
|
|
37
|
+
"@instructure/ui-babel-preset": "11.7.2-snapshot-23",
|
|
38
|
+
"@instructure/ui-buttons": "11.7.2-snapshot-23",
|
|
39
|
+
"@instructure/ui-scripts": "11.7.2-snapshot-23"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"react": ">=18 <=19"
|