@instructure/ui-date-input 11.7.2-snapshot-22 → 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 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-22](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-22) (2026-04-01)
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
- **Note:** Version bump only for package @instructure/ui-date-input
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
 
@@ -231,6 +231,7 @@ const DateInput = /*#__PURE__*/forwardRef(({
231
231
  ref: ref,
232
232
  inputRef: inputRef,
233
233
  renderLabel: renderLabel,
234
+ "aria-label": callRenderProp(renderLabel),
234
235
  onChange: handleInputChange,
235
236
  onBlur: handleBlur,
236
237
  isRequired: isRequired,
@@ -230,6 +230,7 @@ const DateInput2 = /*#__PURE__*/forwardRef(({
230
230
  ...passthroughProps(rest),
231
231
  ref: ref,
232
232
  inputRef: inputRef,
233
+ "aria-label": callRenderProp(renderLabel),
233
234
  renderLabel: renderLabel,
234
235
  onChange: handleInputChange,
235
236
  onBlur: handleBlur,
@@ -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-22",
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/emotion": "11.7.2-snapshot-22",
20
- "@instructure/shared-types": "11.7.2-snapshot-22",
21
- "@instructure/ui-form-field": "11.7.2-snapshot-22",
22
- "@instructure/ui-i18n": "11.7.2-snapshot-22",
23
- "@instructure/ui-calendar": "11.7.2-snapshot-22",
24
- "@instructure/ui-icons": "11.7.2-snapshot-22",
25
- "@instructure/ui-react-utils": "11.7.2-snapshot-22",
26
- "@instructure/ui-popover": "11.7.2-snapshot-22",
27
- "@instructure/ui-selectable": "11.7.2-snapshot-22",
28
- "@instructure/ui-position": "11.7.2-snapshot-22",
29
- "@instructure/ui-text-input": "11.7.2-snapshot-22",
30
- "@instructure/ui-utils": "11.7.2-snapshot-22"
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-babel-preset": "11.7.2-snapshot-22",
38
- "@instructure/ui-buttons": "11.7.2-snapshot-22",
39
- "@instructure/ui-scripts": "11.7.2-snapshot-22"
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"
@@ -265,6 +265,7 @@ const DateInput = forwardRef(
265
265
  ref={ref}
266
266
  inputRef={inputRef}
267
267
  renderLabel={renderLabel}
268
+ aria-label={callRenderProp(renderLabel)}
268
269
  onChange={handleInputChange}
269
270
  onBlur={handleBlur}
270
271
  isRequired={isRequired}
@@ -264,6 +264,7 @@ const DateInput2 = forwardRef(
264
264
  {...passthroughProps(rest)}
265
265
  ref={ref}
266
266
  inputRef={inputRef}
267
+ aria-label={callRenderProp(renderLabel)}
267
268
  renderLabel={renderLabel}
268
269
  onChange={handleInputChange}
269
270
  onBlur={handleBlur}