@@ -445,7 +445,7 @@ export default class DateInput extends PureComponent {
445445 < DayInput
446446 key = "day"
447447 { ...this . commonInputProps }
448- dayAriaLabel = { dayAriaLabel }
448+ ariaLabel = { dayAriaLabel }
449449 month = { month }
450450 placeholder = { dayPlaceholder }
451451 showLeadingZeros = { showLeadingZerosFromFormat || showLeadingZeros }
@@ -473,8 +473,8 @@ export default class DateInput extends PureComponent {
473473 < MonthSelect
474474 key = "month"
475475 { ...this . commonInputProps }
476+ ariaLabel = { monthAriaLabel }
476477 locale = { locale }
477- monthAriaLabel = { monthAriaLabel }
478478 placeholder = { monthPlaceholder }
479479 short = { currentMatch . length === 3 }
480480 value = { month }
@@ -489,7 +489,7 @@ export default class DateInput extends PureComponent {
489489 < MonthInput
490490 key = "month"
491491 { ...this . commonInputProps }
492- monthAriaLabel = { monthAriaLabel }
492+ ariaLabel = { monthAriaLabel }
493493 placeholder = { monthPlaceholder }
494494 showLeadingZeros = { showLeadingZerosFromFormat || showLeadingZeros }
495495 value = { month }
@@ -506,10 +506,10 @@ export default class DateInput extends PureComponent {
506506 < YearInput
507507 key = "year"
508508 { ...this . commonInputProps }
509+ ariaLabel = { yearAriaLabel }
509510 placeholder = { yearPlaceholder }
510511 value = { year }
511512 valueType = { this . valueType }
512- yearAriaLabel = { yearAriaLabel }
513513 />
514514 ) ;
515515 }
@@ -546,7 +546,7 @@ export default class DateInput extends PureComponent {
546546 maxDate = { maxDate || defaultMaxDate }
547547 minDate = { minDate || defaultMinDate }
548548 name = { name }
549- nativeInputAriaLabel = { nativeInputAriaLabel }
549+ ariaLabel = { nativeInputAriaLabel }
550550 onChange = { this . onChangeNative }
551551 required = { required }
552552 value = { value }
0 commit comments