diff --git a/src/DateTime.js b/src/DateTime.js index 88a72bfb0..4a194b9aa 100644 --- a/src/DateTime.js +++ b/src/DateTime.js @@ -6,6 +6,7 @@ import MonthsView from './views/MonthsView'; import YearsView from './views/YearsView'; import TimeView from './views/TimeView'; import onClickOutside from 'react-onclickoutside'; +import { callHandler } from './utils'; const viewModes = { YEARS: 'years', @@ -89,7 +90,7 @@ export default class Datetime extends React.Component { return ( { this.renderInput() } -
+
{ this.renderView() }
@@ -586,9 +587,13 @@ export default class Datetime extends React.Component { _onInputKeyDown = e => { if ( !this.callHandler( this.props.inputProps.onKeyDown, e ) ) return; - if ( e.which === 9 && this.props.closeOnTab ) { + if ( (e.which === 9 && this.props.closeOnTab) || e.key === 'Escape' ) { this._closeCalendar(); } + + if ( !this.isOpen() && e.key === 'ArrowDown' ) { + this._openCalendar(); + } } _onInputClick = e => { @@ -599,10 +604,13 @@ export default class Datetime extends React.Component { this._openCalendar(); } - callHandler( method, e ) { - if ( !method ) return true; - return method(e) !== false; + _onPickerKeyDown = (e) => { + if (this.props.input && e.key === 'Escape') { + this._closeCalendar(); + } } + + callHandler = callHandler } function log( message, method ) { diff --git a/src/parts/ViewNavigation.js b/src/parts/ViewNavigation.js index a04d63454..27b43d6c4 100644 --- a/src/parts/ViewNavigation.js +++ b/src/parts/ViewNavigation.js @@ -1,15 +1,16 @@ import React from 'react'; +import { getKeyboardProps } from '../utils'; export default function ViewNavigation( { onClickPrev, onClickSwitch, onClickNext, switchContent, switchColSpan, switchProps } ) { return ( - + - + { switchContent } - + diff --git a/src/utils.js b/src/utils.js new file mode 100644 index 000000000..4de0d94d3 --- /dev/null +++ b/src/utils.js @@ -0,0 +1,9 @@ +export const callHandler = (method, e) => { + if (!method) return true; + return method(e) !== false; +}; + +export const getKeyboardProps = (onClickHandler) => ({ + tabIndex: 0, + onKeyDown: (e) => e.key !== 'Enter' || callHandler(onClickHandler, e), +}); diff --git a/src/views/DaysView.js b/src/views/DaysView.js index 90499e126..86e2defe8 100644 --- a/src/views/DaysView.js +++ b/src/views/DaysView.js @@ -1,5 +1,6 @@ import React from 'react'; import ViewNavigation from '../parts/ViewNavigation'; +import { getKeyboardProps } from '../utils'; export default class DaysView extends React.Component { static defaultProps = { @@ -104,6 +105,7 @@ export default class DaysView extends React.Component { if ( this.props.isValidDate(date) ) { dayProps.onClick = this._setDate; + dayProps = { ...getKeyboardProps(dayProps.onClick), ...dayProps }; } else { className += ' rdtDisabled'; @@ -123,7 +125,9 @@ export default class DaysView extends React.Component { return ( - this.props.showView('time') } + { date.format( this.props.timeFormat ) } @@ -133,6 +137,10 @@ export default class DaysView extends React.Component { ); } + _onFooterClick = () => { + this.props.showView('time'); + } + _setDate = e => { this.props.updateDate( e ); } diff --git a/src/views/MonthsView.js b/src/views/MonthsView.js index 4fa629490..e35fb1a2a 100644 --- a/src/views/MonthsView.js +++ b/src/views/MonthsView.js @@ -1,5 +1,6 @@ import React from 'react'; import ViewNavigation from '../parts/ViewNavigation'; +import { getKeyboardProps } from '../utils'; export default class MonthsView extends React.Component { render() { @@ -52,19 +53,27 @@ export default class MonthsView extends React.Component { const selectedDate = this.props.selectedDate; let className = 'rdtMonth'; let onClick; + let keyboardProps = {}; if ( this.isDisabledMonth( month ) ) { className += ' rdtDisabled'; } else { onClick = this._updateSelectedMonth; + keyboardProps = getKeyboardProps(onClick); } if ( selectedDate && selectedDate.year() === this.props.viewDate.year() && selectedDate.month() === month ) { className += ' rdtActive'; } - let props = {key: month, className, 'data-value': month, onClick }; + let props = { + ...keyboardProps, + key: month, + className, + 'data-value': month, + onClick + }; if ( this.props.renderMonth ) { return this.props.renderMonth( diff --git a/src/views/TimeView.js b/src/views/TimeView.js index 210cdce22..985bc22c0 100644 --- a/src/views/TimeView.js +++ b/src/views/TimeView.js @@ -1,4 +1,5 @@ import React from 'react'; +import { getKeyboardProps } from '../utils'; const timeConstraints = { hours: { @@ -95,11 +96,19 @@ export default class TimeView extends React.Component { } } + const increaseCounter = (e) => { + this.onStartClicking(e, 'increase', type); + }; + + const decreaseCounter = (e) => { + this.onStartClicking(e, 'decrease', type); + }; + return (
- this.onStartClicking( e, 'increase', type)}>▲ +
{ value }
- this.onStartClicking( e, 'decrease', type)}>▼ +
); } @@ -112,7 +121,12 @@ export default class TimeView extends React.Component { return ( - this.props.showView('days') }> + { date.format( this.props.dateFormat ) } @@ -120,6 +134,10 @@ export default class TimeView extends React.Component { ); } + _onHeaderClick = () => { + this.props.showView('days'); + } + onStartClicking( e, action, type ) { if ( e && e.button && e.button !== 0 ) { // Only left clicks, thanks @@ -127,12 +145,15 @@ export default class TimeView extends React.Component { } if ( type === 'ampm' ) return this.toggleDayPart(); - + let update = {}; let body = document.body; update[ type ] = this[ action ]( type ); this.setState( update ); + // keydown event auto repeats + if (e.type === 'keydown') return; + this.timer = setTimeout( () => { this.increaseTimer = setInterval( () => { update[ type ] = this[ action ]( type ); diff --git a/src/views/YearsView.js b/src/views/YearsView.js index 933d7c4dd..7834b158b 100644 --- a/src/views/YearsView.js +++ b/src/views/YearsView.js @@ -1,5 +1,6 @@ import React from 'react'; import ViewNavigation from '../parts/ViewNavigation'; +import { getKeyboardProps } from '../utils'; export default class YearsView extends React.Component { static defaultProps = { @@ -56,19 +57,27 @@ export default class YearsView extends React.Component { const selectedYear = this.getSelectedYear(); let className = 'rdtYear'; let onClick; + let keyboardProps = {}; if ( this.isDisabledYear( year ) ) { className += ' rdtDisabled'; } else { onClick = this._updateSelectedYear; + keyboardProps = getKeyboardProps(onClick); } if ( selectedYear === year ) { className += ' rdtActive'; } - let props = {key: year, className, 'data-value': year, onClick }; + let props = { + ...keyboardProps, + key: year, + className, + 'data-value': year, + onClick + }; return this.props.renderYear( props, diff --git a/test/__snapshots__/snapshots.spec.js.snap b/test/__snapshots__/snapshots.spec.js.snap index 7dcf4ee1b..717a95d9b 100644 --- a/test/__snapshots__/snapshots.spec.js.snap +++ b/test/__snapshots__/snapshots.spec.js.snap @@ -15,6 +15,7 @@ exports[`className: set to arbitraty value 1`] = ` />
‹ @@ -35,12 +38,16 @@ exports[`className: set to arbitraty value 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -93,6 +100,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -102,6 +111,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -111,6 +122,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -120,6 +133,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -129,6 +144,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -138,6 +155,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -147,6 +166,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -158,6 +179,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -167,6 +190,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -176,6 +201,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -185,6 +212,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -194,6 +223,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -203,6 +234,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -212,6 +245,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -223,6 +258,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -232,6 +269,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -241,6 +280,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -250,6 +291,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -259,6 +302,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -268,6 +313,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -277,6 +324,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -288,6 +337,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -297,6 +348,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -306,6 +359,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -315,6 +370,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -324,6 +381,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -333,6 +392,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -342,6 +403,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -353,6 +416,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -362,6 +427,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -371,6 +438,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -380,6 +449,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -389,6 +460,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -398,6 +471,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -407,6 +482,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -418,6 +495,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -427,6 +506,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -436,6 +517,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -445,6 +528,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -454,6 +539,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -463,6 +550,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -472,6 +561,8 @@ exports[`className: set to arbitraty value 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -483,6 +574,8 @@ exports[`className: set to arbitraty value 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -509,6 +602,7 @@ exports[`dateFormat set to false 1`] = ` />
@@ -536,7 +632,9 @@ exports[`dateFormat set to false 1`] = `
@@ -551,7 +649,9 @@ exports[`dateFormat set to false 1`] = ` > @@ -562,7 +662,9 @@ exports[`dateFormat set to false 1`] = `
@@ -572,7 +674,9 @@ exports[`dateFormat set to false 1`] = ` > @@ -583,7 +687,9 @@ exports[`dateFormat set to false 1`] = `
@@ -613,6 +719,7 @@ exports[`dateFormat set to true 1`] = ` />
‹ @@ -633,12 +742,16 @@ exports[`dateFormat set to true 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -691,6 +804,8 @@ exports[`dateFormat set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -700,6 +815,8 @@ exports[`dateFormat set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -709,6 +826,8 @@ exports[`dateFormat set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -718,6 +837,8 @@ exports[`dateFormat set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -727,6 +848,8 @@ exports[`dateFormat set to true 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -736,6 +859,8 @@ exports[`dateFormat set to true 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -745,6 +870,8 @@ exports[`dateFormat set to true 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -756,6 +883,8 @@ exports[`dateFormat set to true 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -765,6 +894,8 @@ exports[`dateFormat set to true 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -774,6 +905,8 @@ exports[`dateFormat set to true 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -783,6 +916,8 @@ exports[`dateFormat set to true 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -792,6 +927,8 @@ exports[`dateFormat set to true 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -801,6 +938,8 @@ exports[`dateFormat set to true 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -810,6 +949,8 @@ exports[`dateFormat set to true 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -821,6 +962,8 @@ exports[`dateFormat set to true 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -830,6 +973,8 @@ exports[`dateFormat set to true 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -839,6 +984,8 @@ exports[`dateFormat set to true 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -848,6 +995,8 @@ exports[`dateFormat set to true 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -857,6 +1006,8 @@ exports[`dateFormat set to true 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -866,6 +1017,8 @@ exports[`dateFormat set to true 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -875,6 +1028,8 @@ exports[`dateFormat set to true 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -886,6 +1041,8 @@ exports[`dateFormat set to true 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -895,6 +1052,8 @@ exports[`dateFormat set to true 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -904,6 +1063,8 @@ exports[`dateFormat set to true 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -913,6 +1074,8 @@ exports[`dateFormat set to true 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -922,6 +1085,8 @@ exports[`dateFormat set to true 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -931,6 +1096,8 @@ exports[`dateFormat set to true 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -940,6 +1107,8 @@ exports[`dateFormat set to true 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -951,6 +1120,8 @@ exports[`dateFormat set to true 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -960,6 +1131,8 @@ exports[`dateFormat set to true 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -969,6 +1142,8 @@ exports[`dateFormat set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -978,6 +1153,8 @@ exports[`dateFormat set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -987,6 +1164,8 @@ exports[`dateFormat set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -996,6 +1175,8 @@ exports[`dateFormat set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -1005,6 +1186,8 @@ exports[`dateFormat set to true 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -1016,6 +1199,8 @@ exports[`dateFormat set to true 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -1025,6 +1210,8 @@ exports[`dateFormat set to true 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -1034,6 +1221,8 @@ exports[`dateFormat set to true 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -1043,6 +1232,8 @@ exports[`dateFormat set to true 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -1052,6 +1243,8 @@ exports[`dateFormat set to true 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -1061,6 +1254,8 @@ exports[`dateFormat set to true 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -1070,6 +1265,8 @@ exports[`dateFormat set to true 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -1081,6 +1278,8 @@ exports[`dateFormat set to true 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -1107,6 +1306,7 @@ exports[`defaultValue: set to arbitrary value 1`] = ` />
‹ @@ -1127,12 +1329,16 @@ exports[`defaultValue: set to arbitrary value 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -1185,6 +1391,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -1194,6 +1402,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -1203,6 +1413,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -1212,6 +1424,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -1221,6 +1435,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -1230,6 +1446,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -1239,6 +1457,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -1250,6 +1470,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -1259,6 +1481,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -1268,6 +1492,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -1277,6 +1503,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -1286,6 +1514,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -1295,6 +1525,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -1304,6 +1536,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -1315,6 +1549,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -1324,6 +1560,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -1333,6 +1571,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -1342,6 +1582,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -1351,6 +1593,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -1360,6 +1604,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -1369,6 +1615,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -1380,6 +1628,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -1389,6 +1639,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -1398,6 +1650,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -1407,6 +1661,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -1416,6 +1672,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -1425,6 +1683,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -1434,6 +1694,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -1445,6 +1707,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -1454,6 +1718,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -1463,6 +1729,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -1472,6 +1740,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -1481,6 +1751,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -1490,6 +1762,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -1499,6 +1773,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -1510,6 +1786,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -1519,6 +1797,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -1528,6 +1808,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -1537,6 +1819,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -1546,6 +1830,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -1555,6 +1841,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -1564,6 +1852,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -1575,6 +1865,8 @@ exports[`defaultValue: set to arbitrary value 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -1601,6 +1893,7 @@ exports[`everything default: renders correctly 1`] = ` />
‹ @@ -1621,12 +1916,16 @@ exports[`everything default: renders correctly 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -1679,6 +1978,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -1688,6 +1989,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -1697,6 +2000,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -1706,6 +2011,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -1715,6 +2022,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -1724,6 +2033,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -1733,6 +2044,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -1744,6 +2057,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -1753,6 +2068,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -1762,6 +2079,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -1771,6 +2090,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -1780,6 +2101,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -1789,6 +2112,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -1798,6 +2123,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -1809,6 +2136,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -1818,6 +2147,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -1827,6 +2158,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -1836,6 +2169,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -1845,6 +2180,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -1854,6 +2191,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -1863,6 +2202,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -1874,6 +2215,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -1883,6 +2226,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -1892,6 +2237,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -1901,6 +2248,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -1910,6 +2259,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -1919,6 +2270,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -1928,6 +2281,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -1939,6 +2294,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -1948,6 +2305,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -1957,6 +2316,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -1966,6 +2327,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -1975,6 +2338,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -1984,6 +2349,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -1993,6 +2360,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -2004,6 +2373,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -2013,6 +2384,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -2022,6 +2395,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -2031,6 +2406,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -2040,6 +2417,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -2049,6 +2428,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -2058,6 +2439,8 @@ exports[`everything default: renders correctly 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -2069,6 +2452,8 @@ exports[`everything default: renders correctly 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -2086,6 +2471,7 @@ exports[`input input: set to false 1`] = ` >
‹ @@ -2106,12 +2494,16 @@ exports[`input input: set to false 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -2164,6 +2556,8 @@ exports[`input input: set to false 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -2173,6 +2567,8 @@ exports[`input input: set to false 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -2182,6 +2578,8 @@ exports[`input input: set to false 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -2191,6 +2589,8 @@ exports[`input input: set to false 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -2200,6 +2600,8 @@ exports[`input input: set to false 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -2209,6 +2611,8 @@ exports[`input input: set to false 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -2218,6 +2622,8 @@ exports[`input input: set to false 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -2229,6 +2635,8 @@ exports[`input input: set to false 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -2238,6 +2646,8 @@ exports[`input input: set to false 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -2247,6 +2657,8 @@ exports[`input input: set to false 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -2256,6 +2668,8 @@ exports[`input input: set to false 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -2265,6 +2679,8 @@ exports[`input input: set to false 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -2274,6 +2690,8 @@ exports[`input input: set to false 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -2283,6 +2701,8 @@ exports[`input input: set to false 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -2294,6 +2714,8 @@ exports[`input input: set to false 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -2303,6 +2725,8 @@ exports[`input input: set to false 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -2312,6 +2736,8 @@ exports[`input input: set to false 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -2321,6 +2747,8 @@ exports[`input input: set to false 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -2330,6 +2758,8 @@ exports[`input input: set to false 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -2339,6 +2769,8 @@ exports[`input input: set to false 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -2348,6 +2780,8 @@ exports[`input input: set to false 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -2359,6 +2793,8 @@ exports[`input input: set to false 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -2368,6 +2804,8 @@ exports[`input input: set to false 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -2377,6 +2815,8 @@ exports[`input input: set to false 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -2386,6 +2826,8 @@ exports[`input input: set to false 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -2395,6 +2837,8 @@ exports[`input input: set to false 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -2404,6 +2848,8 @@ exports[`input input: set to false 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -2413,6 +2859,8 @@ exports[`input input: set to false 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -2424,6 +2872,8 @@ exports[`input input: set to false 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -2433,6 +2883,8 @@ exports[`input input: set to false 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -2442,6 +2894,8 @@ exports[`input input: set to false 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -2451,6 +2905,8 @@ exports[`input input: set to false 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -2460,6 +2916,8 @@ exports[`input input: set to false 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -2469,6 +2927,8 @@ exports[`input input: set to false 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -2478,6 +2938,8 @@ exports[`input input: set to false 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -2489,6 +2951,8 @@ exports[`input input: set to false 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -2498,6 +2962,8 @@ exports[`input input: set to false 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -2507,6 +2973,8 @@ exports[`input input: set to false 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -2516,6 +2984,8 @@ exports[`input input: set to false 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -2525,6 +2995,8 @@ exports[`input input: set to false 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -2534,6 +3006,8 @@ exports[`input input: set to false 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -2543,6 +3017,8 @@ exports[`input input: set to false 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -2554,6 +3030,8 @@ exports[`input input: set to false 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -2580,6 +3058,7 @@ exports[`input input: set to true 1`] = ` />
‹ @@ -2600,12 +3081,16 @@ exports[`input input: set to true 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -2658,6 +3143,8 @@ exports[`input input: set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -2667,6 +3154,8 @@ exports[`input input: set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -2676,6 +3165,8 @@ exports[`input input: set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -2685,6 +3176,8 @@ exports[`input input: set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -2694,6 +3187,8 @@ exports[`input input: set to true 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -2703,6 +3198,8 @@ exports[`input input: set to true 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -2712,6 +3209,8 @@ exports[`input input: set to true 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -2723,6 +3222,8 @@ exports[`input input: set to true 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -2732,6 +3233,8 @@ exports[`input input: set to true 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -2741,6 +3244,8 @@ exports[`input input: set to true 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -2750,6 +3255,8 @@ exports[`input input: set to true 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -2759,6 +3266,8 @@ exports[`input input: set to true 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -2768,6 +3277,8 @@ exports[`input input: set to true 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -2777,6 +3288,8 @@ exports[`input input: set to true 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -2788,6 +3301,8 @@ exports[`input input: set to true 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -2797,6 +3312,8 @@ exports[`input input: set to true 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -2806,6 +3323,8 @@ exports[`input input: set to true 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -2815,6 +3334,8 @@ exports[`input input: set to true 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -2824,6 +3345,8 @@ exports[`input input: set to true 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -2833,6 +3356,8 @@ exports[`input input: set to true 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -2842,6 +3367,8 @@ exports[`input input: set to true 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -2853,6 +3380,8 @@ exports[`input input: set to true 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -2862,6 +3391,8 @@ exports[`input input: set to true 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -2871,6 +3402,8 @@ exports[`input input: set to true 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -2880,6 +3413,8 @@ exports[`input input: set to true 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -2889,6 +3424,8 @@ exports[`input input: set to true 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -2898,6 +3435,8 @@ exports[`input input: set to true 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -2907,6 +3446,8 @@ exports[`input input: set to true 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -2918,6 +3459,8 @@ exports[`input input: set to true 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -2927,6 +3470,8 @@ exports[`input input: set to true 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -2936,6 +3481,8 @@ exports[`input input: set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -2945,6 +3492,8 @@ exports[`input input: set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -2954,6 +3503,8 @@ exports[`input input: set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -2963,6 +3514,8 @@ exports[`input input: set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -2972,6 +3525,8 @@ exports[`input input: set to true 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -2983,6 +3538,8 @@ exports[`input input: set to true 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -2992,6 +3549,8 @@ exports[`input input: set to true 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -3001,6 +3560,8 @@ exports[`input input: set to true 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -3010,6 +3571,8 @@ exports[`input input: set to true 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -3019,6 +3582,8 @@ exports[`input input: set to true 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -3028,6 +3593,8 @@ exports[`input input: set to true 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -3037,6 +3604,8 @@ exports[`input input: set to true 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -3048,6 +3617,8 @@ exports[`input input: set to true 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -3074,6 +3645,7 @@ exports[`inputProps with className specified 1`] = ` />
‹ @@ -3094,12 +3668,16 @@ exports[`inputProps with className specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -3152,6 +3730,8 @@ exports[`inputProps with className specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -3161,6 +3741,8 @@ exports[`inputProps with className specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -3170,6 +3752,8 @@ exports[`inputProps with className specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -3179,6 +3763,8 @@ exports[`inputProps with className specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -3188,6 +3774,8 @@ exports[`inputProps with className specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -3197,6 +3785,8 @@ exports[`inputProps with className specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -3206,6 +3796,8 @@ exports[`inputProps with className specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -3217,6 +3809,8 @@ exports[`inputProps with className specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -3226,6 +3820,8 @@ exports[`inputProps with className specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -3235,6 +3831,8 @@ exports[`inputProps with className specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -3244,6 +3842,8 @@ exports[`inputProps with className specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -3253,6 +3853,8 @@ exports[`inputProps with className specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -3262,6 +3864,8 @@ exports[`inputProps with className specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -3271,6 +3875,8 @@ exports[`inputProps with className specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -3282,6 +3888,8 @@ exports[`inputProps with className specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -3291,6 +3899,8 @@ exports[`inputProps with className specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -3300,6 +3910,8 @@ exports[`inputProps with className specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -3309,6 +3921,8 @@ exports[`inputProps with className specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -3318,6 +3932,8 @@ exports[`inputProps with className specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -3327,6 +3943,8 @@ exports[`inputProps with className specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -3336,6 +3954,8 @@ exports[`inputProps with className specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -3347,6 +3967,8 @@ exports[`inputProps with className specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -3356,6 +3978,8 @@ exports[`inputProps with className specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -3365,6 +3989,8 @@ exports[`inputProps with className specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -3374,6 +4000,8 @@ exports[`inputProps with className specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -3383,6 +4011,8 @@ exports[`inputProps with className specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -3392,6 +4022,8 @@ exports[`inputProps with className specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -3401,6 +4033,8 @@ exports[`inputProps with className specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -3412,6 +4046,8 @@ exports[`inputProps with className specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -3421,6 +4057,8 @@ exports[`inputProps with className specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -3430,6 +4068,8 @@ exports[`inputProps with className specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -3439,6 +4079,8 @@ exports[`inputProps with className specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -3448,6 +4090,8 @@ exports[`inputProps with className specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -3457,6 +4101,8 @@ exports[`inputProps with className specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -3466,6 +4112,8 @@ exports[`inputProps with className specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -3477,6 +4125,8 @@ exports[`inputProps with className specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -3486,6 +4136,8 @@ exports[`inputProps with className specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -3495,6 +4147,8 @@ exports[`inputProps with className specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -3504,6 +4158,8 @@ exports[`inputProps with className specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -3513,6 +4169,8 @@ exports[`inputProps with className specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -3522,6 +4180,8 @@ exports[`inputProps with className specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -3531,6 +4191,8 @@ exports[`inputProps with className specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -3542,6 +4204,8 @@ exports[`inputProps with className specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -3569,6 +4233,7 @@ exports[`inputProps with disabled specified 1`] = ` />
‹ @@ -3589,12 +4256,16 @@ exports[`inputProps with disabled specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -3647,6 +4318,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -3656,6 +4329,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -3665,6 +4340,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -3674,6 +4351,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -3683,6 +4362,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -3692,6 +4373,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -3701,6 +4384,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -3712,6 +4397,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -3721,6 +4408,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -3730,6 +4419,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -3739,6 +4430,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -3748,6 +4441,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -3757,6 +4452,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -3766,6 +4463,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -3777,6 +4476,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -3786,6 +4487,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -3795,6 +4498,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -3804,6 +4509,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -3813,6 +4520,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -3822,6 +4531,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -3831,6 +4542,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -3842,6 +4555,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -3851,6 +4566,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -3860,6 +4577,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -3869,6 +4588,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -3878,6 +4599,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -3887,6 +4610,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -3896,6 +4621,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -3907,6 +4634,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -3916,6 +4645,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -3925,6 +4656,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -3934,6 +4667,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -3943,6 +4678,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -3952,6 +4689,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -3961,6 +4700,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -3972,6 +4713,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -3981,6 +4724,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -3990,6 +4735,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -3999,6 +4746,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -4008,6 +4757,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -4017,6 +4768,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -4026,6 +4779,8 @@ exports[`inputProps with disabled specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -4037,6 +4792,8 @@ exports[`inputProps with disabled specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -4064,6 +4821,7 @@ exports[`inputProps with name specified 1`] = ` />
‹ @@ -4084,12 +4844,16 @@ exports[`inputProps with name specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -4142,6 +4906,8 @@ exports[`inputProps with name specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -4151,6 +4917,8 @@ exports[`inputProps with name specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -4160,6 +4928,8 @@ exports[`inputProps with name specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -4169,6 +4939,8 @@ exports[`inputProps with name specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -4178,6 +4950,8 @@ exports[`inputProps with name specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -4187,6 +4961,8 @@ exports[`inputProps with name specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -4196,6 +4972,8 @@ exports[`inputProps with name specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -4207,6 +4985,8 @@ exports[`inputProps with name specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -4216,6 +4996,8 @@ exports[`inputProps with name specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -4225,6 +5007,8 @@ exports[`inputProps with name specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -4234,6 +5018,8 @@ exports[`inputProps with name specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -4243,6 +5029,8 @@ exports[`inputProps with name specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -4252,6 +5040,8 @@ exports[`inputProps with name specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -4261,6 +5051,8 @@ exports[`inputProps with name specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -4272,6 +5064,8 @@ exports[`inputProps with name specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -4281,6 +5075,8 @@ exports[`inputProps with name specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -4290,6 +5086,8 @@ exports[`inputProps with name specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -4299,6 +5097,8 @@ exports[`inputProps with name specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -4308,6 +5108,8 @@ exports[`inputProps with name specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -4317,6 +5119,8 @@ exports[`inputProps with name specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -4326,6 +5130,8 @@ exports[`inputProps with name specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -4337,6 +5143,8 @@ exports[`inputProps with name specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -4346,6 +5154,8 @@ exports[`inputProps with name specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -4355,6 +5165,8 @@ exports[`inputProps with name specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -4364,6 +5176,8 @@ exports[`inputProps with name specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -4373,6 +5187,8 @@ exports[`inputProps with name specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -4382,6 +5198,8 @@ exports[`inputProps with name specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -4391,6 +5209,8 @@ exports[`inputProps with name specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -4402,6 +5222,8 @@ exports[`inputProps with name specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -4411,6 +5233,8 @@ exports[`inputProps with name specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -4420,6 +5244,8 @@ exports[`inputProps with name specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -4429,6 +5255,8 @@ exports[`inputProps with name specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -4438,6 +5266,8 @@ exports[`inputProps with name specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -4447,6 +5277,8 @@ exports[`inputProps with name specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -4456,6 +5288,8 @@ exports[`inputProps with name specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -4467,6 +5301,8 @@ exports[`inputProps with name specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -4476,6 +5312,8 @@ exports[`inputProps with name specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -4485,6 +5323,8 @@ exports[`inputProps with name specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -4494,6 +5334,8 @@ exports[`inputProps with name specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -4503,6 +5345,8 @@ exports[`inputProps with name specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -4512,6 +5356,8 @@ exports[`inputProps with name specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -4521,6 +5367,8 @@ exports[`inputProps with name specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -4532,6 +5380,8 @@ exports[`inputProps with name specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -4559,6 +5409,7 @@ exports[`inputProps with placeholder specified 1`] = ` />
‹ @@ -4579,12 +5432,16 @@ exports[`inputProps with placeholder specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -4637,6 +5494,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -4646,6 +5505,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -4655,6 +5516,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -4664,6 +5527,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -4673,6 +5538,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -4682,6 +5549,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -4691,6 +5560,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -4702,6 +5573,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -4711,6 +5584,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -4720,6 +5595,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -4729,6 +5606,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -4738,6 +5617,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -4747,6 +5628,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -4756,6 +5639,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -4767,6 +5652,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -4776,6 +5663,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -4785,6 +5674,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -4794,6 +5685,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -4803,6 +5696,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -4812,6 +5707,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -4821,6 +5718,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -4832,6 +5731,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -4841,6 +5742,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -4850,6 +5753,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -4859,6 +5764,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -4868,6 +5775,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -4877,6 +5786,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -4886,6 +5797,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -4897,6 +5810,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -4906,6 +5821,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -4915,6 +5832,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -4924,6 +5843,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -4933,6 +5854,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -4942,6 +5865,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -4951,6 +5876,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -4962,6 +5889,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -4971,6 +5900,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -4980,6 +5911,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -4989,6 +5922,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -4998,6 +5933,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -5007,6 +5944,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -5016,6 +5955,8 @@ exports[`inputProps with placeholder specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -5027,6 +5968,8 @@ exports[`inputProps with placeholder specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -5054,6 +5997,7 @@ exports[`inputProps with required specified 1`] = ` />
‹ @@ -5074,12 +6020,16 @@ exports[`inputProps with required specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -5132,6 +6082,8 @@ exports[`inputProps with required specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -5141,6 +6093,8 @@ exports[`inputProps with required specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -5150,6 +6104,8 @@ exports[`inputProps with required specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -5159,6 +6115,8 @@ exports[`inputProps with required specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -5168,6 +6126,8 @@ exports[`inputProps with required specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -5177,6 +6137,8 @@ exports[`inputProps with required specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -5186,6 +6148,8 @@ exports[`inputProps with required specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -5197,6 +6161,8 @@ exports[`inputProps with required specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -5206,6 +6172,8 @@ exports[`inputProps with required specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -5215,6 +6183,8 @@ exports[`inputProps with required specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -5224,6 +6194,8 @@ exports[`inputProps with required specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -5233,6 +6205,8 @@ exports[`inputProps with required specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -5242,6 +6216,8 @@ exports[`inputProps with required specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -5251,6 +6227,8 @@ exports[`inputProps with required specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -5262,6 +6240,8 @@ exports[`inputProps with required specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -5271,6 +6251,8 @@ exports[`inputProps with required specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -5280,6 +6262,8 @@ exports[`inputProps with required specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -5289,6 +6273,8 @@ exports[`inputProps with required specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -5298,6 +6284,8 @@ exports[`inputProps with required specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -5307,6 +6295,8 @@ exports[`inputProps with required specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -5316,6 +6306,8 @@ exports[`inputProps with required specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -5327,6 +6319,8 @@ exports[`inputProps with required specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -5336,6 +6330,8 @@ exports[`inputProps with required specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -5345,6 +6341,8 @@ exports[`inputProps with required specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -5354,6 +6352,8 @@ exports[`inputProps with required specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -5363,6 +6363,8 @@ exports[`inputProps with required specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -5372,6 +6374,8 @@ exports[`inputProps with required specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -5381,6 +6385,8 @@ exports[`inputProps with required specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -5392,6 +6398,8 @@ exports[`inputProps with required specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -5401,6 +6409,8 @@ exports[`inputProps with required specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -5410,6 +6420,8 @@ exports[`inputProps with required specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -5419,6 +6431,8 @@ exports[`inputProps with required specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -5428,6 +6442,8 @@ exports[`inputProps with required specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -5437,6 +6453,8 @@ exports[`inputProps with required specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -5446,6 +6464,8 @@ exports[`inputProps with required specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -5457,6 +6477,8 @@ exports[`inputProps with required specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -5466,6 +6488,8 @@ exports[`inputProps with required specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -5475,6 +6499,8 @@ exports[`inputProps with required specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -5484,6 +6510,8 @@ exports[`inputProps with required specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -5493,6 +6521,8 @@ exports[`inputProps with required specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -5502,6 +6532,8 @@ exports[`inputProps with required specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -5511,6 +6543,8 @@ exports[`inputProps with required specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -5522,6 +6556,8 @@ exports[`inputProps with required specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -5548,6 +6584,7 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` />
‹ @@ -5568,12 +6607,16 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -5832,6 +6875,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -5841,6 +6886,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -5850,6 +6897,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -5861,6 +6910,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -5870,6 +6921,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -5879,6 +6932,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -5888,6 +6943,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -5897,6 +6954,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -5906,6 +6965,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -5915,6 +6976,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -5926,6 +6989,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -5935,6 +7000,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -5944,6 +7011,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -5953,6 +7022,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -5962,6 +7033,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -5971,6 +7044,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -5980,6 +7055,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -5991,6 +7068,8 @@ exports[`isValidDate: only valid if after yesterday 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -6017,6 +7096,7 @@ exports[`open set to false 1`] = ` />
‹ @@ -6037,12 +7119,16 @@ exports[`open set to false 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -6095,6 +7181,8 @@ exports[`open set to false 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -6104,6 +7192,8 @@ exports[`open set to false 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -6113,6 +7203,8 @@ exports[`open set to false 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -6122,6 +7214,8 @@ exports[`open set to false 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -6131,6 +7225,8 @@ exports[`open set to false 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -6140,6 +7236,8 @@ exports[`open set to false 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -6149,6 +7247,8 @@ exports[`open set to false 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -6160,6 +7260,8 @@ exports[`open set to false 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -6169,6 +7271,8 @@ exports[`open set to false 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -6178,6 +7282,8 @@ exports[`open set to false 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -6187,6 +7293,8 @@ exports[`open set to false 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -6196,6 +7304,8 @@ exports[`open set to false 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -6205,6 +7315,8 @@ exports[`open set to false 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -6214,6 +7326,8 @@ exports[`open set to false 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -6225,6 +7339,8 @@ exports[`open set to false 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -6234,6 +7350,8 @@ exports[`open set to false 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -6243,6 +7361,8 @@ exports[`open set to false 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -6252,6 +7372,8 @@ exports[`open set to false 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -6261,6 +7383,8 @@ exports[`open set to false 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -6270,6 +7394,8 @@ exports[`open set to false 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -6279,6 +7405,8 @@ exports[`open set to false 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -6290,6 +7418,8 @@ exports[`open set to false 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -6299,6 +7429,8 @@ exports[`open set to false 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -6308,6 +7440,8 @@ exports[`open set to false 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -6317,6 +7451,8 @@ exports[`open set to false 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -6326,6 +7462,8 @@ exports[`open set to false 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -6335,6 +7473,8 @@ exports[`open set to false 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -6344,6 +7484,8 @@ exports[`open set to false 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -6355,6 +7497,8 @@ exports[`open set to false 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -6364,6 +7508,8 @@ exports[`open set to false 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -6373,6 +7519,8 @@ exports[`open set to false 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -6382,6 +7530,8 @@ exports[`open set to false 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -6391,6 +7541,8 @@ exports[`open set to false 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -6400,6 +7552,8 @@ exports[`open set to false 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -6409,6 +7563,8 @@ exports[`open set to false 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -6420,6 +7576,8 @@ exports[`open set to false 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -6429,6 +7587,8 @@ exports[`open set to false 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -6438,6 +7598,8 @@ exports[`open set to false 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -6447,6 +7609,8 @@ exports[`open set to false 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -6456,6 +7620,8 @@ exports[`open set to false 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -6465,6 +7631,8 @@ exports[`open set to false 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -6474,6 +7642,8 @@ exports[`open set to false 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -6485,6 +7655,8 @@ exports[`open set to false 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -6511,6 +7683,7 @@ exports[`open set to true 1`] = ` />
‹ @@ -6531,12 +7706,16 @@ exports[`open set to true 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -6589,6 +7768,8 @@ exports[`open set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -6598,6 +7779,8 @@ exports[`open set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -6607,6 +7790,8 @@ exports[`open set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -6616,6 +7801,8 @@ exports[`open set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -6625,6 +7812,8 @@ exports[`open set to true 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -6634,6 +7823,8 @@ exports[`open set to true 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -6643,6 +7834,8 @@ exports[`open set to true 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -6654,6 +7847,8 @@ exports[`open set to true 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -6663,6 +7858,8 @@ exports[`open set to true 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -6672,6 +7869,8 @@ exports[`open set to true 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -6681,6 +7880,8 @@ exports[`open set to true 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -6690,6 +7891,8 @@ exports[`open set to true 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -6699,6 +7902,8 @@ exports[`open set to true 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -6708,6 +7913,8 @@ exports[`open set to true 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -6719,6 +7926,8 @@ exports[`open set to true 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -6728,6 +7937,8 @@ exports[`open set to true 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -6737,6 +7948,8 @@ exports[`open set to true 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -6746,6 +7959,8 @@ exports[`open set to true 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -6755,6 +7970,8 @@ exports[`open set to true 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -6764,6 +7981,8 @@ exports[`open set to true 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -6773,6 +7992,8 @@ exports[`open set to true 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -6784,6 +8005,8 @@ exports[`open set to true 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -6793,6 +8016,8 @@ exports[`open set to true 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -6802,6 +8027,8 @@ exports[`open set to true 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -6811,6 +8038,8 @@ exports[`open set to true 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -6820,6 +8049,8 @@ exports[`open set to true 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -6829,6 +8060,8 @@ exports[`open set to true 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -6838,6 +8071,8 @@ exports[`open set to true 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -6849,6 +8084,8 @@ exports[`open set to true 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -6858,6 +8095,8 @@ exports[`open set to true 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -6867,6 +8106,8 @@ exports[`open set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -6876,6 +8117,8 @@ exports[`open set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -6885,6 +8128,8 @@ exports[`open set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -6894,6 +8139,8 @@ exports[`open set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -6903,6 +8150,8 @@ exports[`open set to true 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -6914,6 +8163,8 @@ exports[`open set to true 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -6923,6 +8174,8 @@ exports[`open set to true 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -6932,6 +8185,8 @@ exports[`open set to true 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -6941,6 +8196,8 @@ exports[`open set to true 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -6950,6 +8207,8 @@ exports[`open set to true 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -6959,6 +8218,8 @@ exports[`open set to true 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -6968,6 +8229,8 @@ exports[`open set to true 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -6979,6 +8242,8 @@ exports[`open set to true 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -7005,6 +8270,7 @@ exports[`renderDay: specified 1`] = ` />
‹ @@ -7025,12 +8293,16 @@ exports[`renderDay: specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -7083,6 +8355,8 @@ exports[`renderDay: specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 027 @@ -7092,6 +8366,8 @@ exports[`renderDay: specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 028 @@ -7101,6 +8377,8 @@ exports[`renderDay: specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 029 @@ -7110,6 +8388,8 @@ exports[`renderDay: specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 030 @@ -7119,6 +8399,8 @@ exports[`renderDay: specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 01 @@ -7128,6 +8410,8 @@ exports[`renderDay: specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 02 @@ -7137,6 +8421,8 @@ exports[`renderDay: specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 03 @@ -7148,6 +8434,8 @@ exports[`renderDay: specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 04 @@ -7157,6 +8445,8 @@ exports[`renderDay: specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 05 @@ -7166,6 +8456,8 @@ exports[`renderDay: specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 06 @@ -7175,6 +8467,8 @@ exports[`renderDay: specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 07 @@ -7184,6 +8478,8 @@ exports[`renderDay: specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 08 @@ -7193,6 +8489,8 @@ exports[`renderDay: specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 09 @@ -7202,6 +8500,8 @@ exports[`renderDay: specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 010 @@ -7213,6 +8513,8 @@ exports[`renderDay: specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 011 @@ -7222,6 +8524,8 @@ exports[`renderDay: specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 012 @@ -7231,6 +8535,8 @@ exports[`renderDay: specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 013 @@ -7240,6 +8546,8 @@ exports[`renderDay: specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 014 @@ -7249,6 +8557,8 @@ exports[`renderDay: specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 015 @@ -7258,6 +8568,8 @@ exports[`renderDay: specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 016 @@ -7267,6 +8579,8 @@ exports[`renderDay: specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 017 @@ -7278,6 +8592,8 @@ exports[`renderDay: specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 018 @@ -7287,6 +8603,8 @@ exports[`renderDay: specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 019 @@ -7296,6 +8614,8 @@ exports[`renderDay: specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 020 @@ -7305,6 +8625,8 @@ exports[`renderDay: specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 021 @@ -7314,6 +8636,8 @@ exports[`renderDay: specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 022 @@ -7323,6 +8647,8 @@ exports[`renderDay: specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 023 @@ -7332,6 +8658,8 @@ exports[`renderDay: specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 024 @@ -7343,6 +8671,8 @@ exports[`renderDay: specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 025 @@ -7352,6 +8682,8 @@ exports[`renderDay: specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 026 @@ -7361,6 +8693,8 @@ exports[`renderDay: specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 027 @@ -7370,6 +8704,8 @@ exports[`renderDay: specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 028 @@ -7379,6 +8715,8 @@ exports[`renderDay: specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 029 @@ -7388,6 +8726,8 @@ exports[`renderDay: specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 030 @@ -7397,6 +8737,8 @@ exports[`renderDay: specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 031 @@ -7408,6 +8750,8 @@ exports[`renderDay: specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 01 @@ -7417,6 +8761,8 @@ exports[`renderDay: specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 02 @@ -7426,6 +8772,8 @@ exports[`renderDay: specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 03 @@ -7435,6 +8783,8 @@ exports[`renderDay: specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 04 @@ -7444,6 +8794,8 @@ exports[`renderDay: specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 05 @@ -7453,6 +8805,8 @@ exports[`renderDay: specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 06 @@ -7462,6 +8816,8 @@ exports[`renderDay: specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 07 @@ -7473,6 +8829,8 @@ exports[`renderDay: specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -7499,6 +8857,7 @@ exports[`renderMonth: specified 1`] = ` />
‹ @@ -7519,12 +8880,16 @@ exports[`renderMonth: specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -7577,6 +8942,8 @@ exports[`renderMonth: specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -7586,6 +8953,8 @@ exports[`renderMonth: specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -7595,6 +8964,8 @@ exports[`renderMonth: specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -7604,6 +8975,8 @@ exports[`renderMonth: specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -7613,6 +8986,8 @@ exports[`renderMonth: specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -7622,6 +8997,8 @@ exports[`renderMonth: specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -7631,6 +9008,8 @@ exports[`renderMonth: specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -7642,6 +9021,8 @@ exports[`renderMonth: specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -7651,6 +9032,8 @@ exports[`renderMonth: specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -7660,6 +9043,8 @@ exports[`renderMonth: specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -7669,6 +9054,8 @@ exports[`renderMonth: specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -7678,6 +9065,8 @@ exports[`renderMonth: specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -7687,6 +9076,8 @@ exports[`renderMonth: specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -7696,6 +9087,8 @@ exports[`renderMonth: specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -7707,6 +9100,8 @@ exports[`renderMonth: specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -7716,6 +9111,8 @@ exports[`renderMonth: specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -7725,6 +9122,8 @@ exports[`renderMonth: specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -7734,6 +9133,8 @@ exports[`renderMonth: specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -7743,6 +9144,8 @@ exports[`renderMonth: specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -7752,6 +9155,8 @@ exports[`renderMonth: specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -7761,6 +9166,8 @@ exports[`renderMonth: specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -7772,6 +9179,8 @@ exports[`renderMonth: specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -7781,6 +9190,8 @@ exports[`renderMonth: specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -7790,6 +9201,8 @@ exports[`renderMonth: specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -7799,6 +9212,8 @@ exports[`renderMonth: specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -7808,6 +9223,8 @@ exports[`renderMonth: specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -7817,6 +9234,8 @@ exports[`renderMonth: specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -7826,6 +9245,8 @@ exports[`renderMonth: specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -7837,6 +9258,8 @@ exports[`renderMonth: specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -7846,6 +9269,8 @@ exports[`renderMonth: specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -7855,6 +9280,8 @@ exports[`renderMonth: specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -7864,6 +9291,8 @@ exports[`renderMonth: specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -7873,6 +9302,8 @@ exports[`renderMonth: specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -7882,6 +9313,8 @@ exports[`renderMonth: specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -7891,6 +9324,8 @@ exports[`renderMonth: specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -7902,6 +9337,8 @@ exports[`renderMonth: specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -7911,6 +9348,8 @@ exports[`renderMonth: specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -7920,6 +9359,8 @@ exports[`renderMonth: specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -7929,6 +9370,8 @@ exports[`renderMonth: specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -7938,6 +9381,8 @@ exports[`renderMonth: specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -7947,6 +9392,8 @@ exports[`renderMonth: specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -7956,6 +9403,8 @@ exports[`renderMonth: specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -7967,6 +9416,8 @@ exports[`renderMonth: specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -7993,6 +9444,7 @@ exports[`renderYear: specified 1`] = ` />
‹ @@ -8013,12 +9467,16 @@ exports[`renderYear: specified 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -8071,6 +9529,8 @@ exports[`renderYear: specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -8080,6 +9540,8 @@ exports[`renderYear: specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -8089,6 +9551,8 @@ exports[`renderYear: specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -8098,6 +9562,8 @@ exports[`renderYear: specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -8107,6 +9573,8 @@ exports[`renderYear: specified 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -8116,6 +9584,8 @@ exports[`renderYear: specified 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -8125,6 +9595,8 @@ exports[`renderYear: specified 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -8136,6 +9608,8 @@ exports[`renderYear: specified 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -8145,6 +9619,8 @@ exports[`renderYear: specified 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -8154,6 +9630,8 @@ exports[`renderYear: specified 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -8163,6 +9641,8 @@ exports[`renderYear: specified 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -8172,6 +9652,8 @@ exports[`renderYear: specified 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -8181,6 +9663,8 @@ exports[`renderYear: specified 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -8190,6 +9674,8 @@ exports[`renderYear: specified 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -8201,6 +9687,8 @@ exports[`renderYear: specified 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -8210,6 +9698,8 @@ exports[`renderYear: specified 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -8219,6 +9709,8 @@ exports[`renderYear: specified 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -8228,6 +9720,8 @@ exports[`renderYear: specified 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -8237,6 +9731,8 @@ exports[`renderYear: specified 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -8246,6 +9742,8 @@ exports[`renderYear: specified 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -8255,6 +9753,8 @@ exports[`renderYear: specified 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -8266,6 +9766,8 @@ exports[`renderYear: specified 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -8275,6 +9777,8 @@ exports[`renderYear: specified 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -8284,6 +9788,8 @@ exports[`renderYear: specified 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -8293,6 +9799,8 @@ exports[`renderYear: specified 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -8302,6 +9810,8 @@ exports[`renderYear: specified 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -8311,6 +9821,8 @@ exports[`renderYear: specified 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -8320,6 +9832,8 @@ exports[`renderYear: specified 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -8331,6 +9845,8 @@ exports[`renderYear: specified 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -8340,6 +9856,8 @@ exports[`renderYear: specified 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -8349,6 +9867,8 @@ exports[`renderYear: specified 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -8358,6 +9878,8 @@ exports[`renderYear: specified 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -8367,6 +9889,8 @@ exports[`renderYear: specified 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -8376,6 +9900,8 @@ exports[`renderYear: specified 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -8385,6 +9911,8 @@ exports[`renderYear: specified 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -8396,6 +9924,8 @@ exports[`renderYear: specified 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -8405,6 +9935,8 @@ exports[`renderYear: specified 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -8414,6 +9946,8 @@ exports[`renderYear: specified 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -8423,6 +9957,8 @@ exports[`renderYear: specified 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -8432,6 +9968,8 @@ exports[`renderYear: specified 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -8441,6 +9979,8 @@ exports[`renderYear: specified 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -8450,6 +9990,8 @@ exports[`renderYear: specified 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -8461,6 +10003,8 @@ exports[`renderYear: specified 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -8487,6 +10031,7 @@ exports[`timeFormat set to false 1`] = ` />
‹ @@ -8507,12 +10054,16 @@ exports[`timeFormat set to false 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -8565,6 +10116,8 @@ exports[`timeFormat set to false 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -8574,6 +10127,8 @@ exports[`timeFormat set to false 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -8583,6 +10138,8 @@ exports[`timeFormat set to false 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -8592,6 +10149,8 @@ exports[`timeFormat set to false 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -8601,6 +10160,8 @@ exports[`timeFormat set to false 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -8610,6 +10171,8 @@ exports[`timeFormat set to false 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -8619,6 +10182,8 @@ exports[`timeFormat set to false 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -8630,6 +10195,8 @@ exports[`timeFormat set to false 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -8639,6 +10206,8 @@ exports[`timeFormat set to false 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -8648,6 +10217,8 @@ exports[`timeFormat set to false 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -8657,6 +10228,8 @@ exports[`timeFormat set to false 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -8666,6 +10239,8 @@ exports[`timeFormat set to false 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -8675,6 +10250,8 @@ exports[`timeFormat set to false 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -8684,6 +10261,8 @@ exports[`timeFormat set to false 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -8695,6 +10274,8 @@ exports[`timeFormat set to false 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -8704,6 +10285,8 @@ exports[`timeFormat set to false 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -8713,6 +10296,8 @@ exports[`timeFormat set to false 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -8722,6 +10307,8 @@ exports[`timeFormat set to false 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -8731,6 +10318,8 @@ exports[`timeFormat set to false 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -8740,6 +10329,8 @@ exports[`timeFormat set to false 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -8749,6 +10340,8 @@ exports[`timeFormat set to false 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -8760,6 +10353,8 @@ exports[`timeFormat set to false 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -8769,6 +10364,8 @@ exports[`timeFormat set to false 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -8778,6 +10375,8 @@ exports[`timeFormat set to false 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -8787,6 +10386,8 @@ exports[`timeFormat set to false 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -8796,6 +10397,8 @@ exports[`timeFormat set to false 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -8805,6 +10408,8 @@ exports[`timeFormat set to false 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -8814,6 +10419,8 @@ exports[`timeFormat set to false 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -8825,6 +10432,8 @@ exports[`timeFormat set to false 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -8834,6 +10443,8 @@ exports[`timeFormat set to false 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -8843,6 +10454,8 @@ exports[`timeFormat set to false 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -8852,6 +10465,8 @@ exports[`timeFormat set to false 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -8861,6 +10476,8 @@ exports[`timeFormat set to false 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -8870,6 +10487,8 @@ exports[`timeFormat set to false 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -8879,6 +10498,8 @@ exports[`timeFormat set to false 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -8890,6 +10511,8 @@ exports[`timeFormat set to false 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -8899,6 +10522,8 @@ exports[`timeFormat set to false 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -8908,6 +10533,8 @@ exports[`timeFormat set to false 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -8917,6 +10544,8 @@ exports[`timeFormat set to false 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -8926,6 +10555,8 @@ exports[`timeFormat set to false 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -8935,6 +10566,8 @@ exports[`timeFormat set to false 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -8944,6 +10577,8 @@ exports[`timeFormat set to false 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -8970,6 +10605,7 @@ exports[`timeFormat set to true 1`] = ` />
‹ @@ -8990,12 +10628,16 @@ exports[`timeFormat set to true 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -9048,6 +10690,8 @@ exports[`timeFormat set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -9057,6 +10701,8 @@ exports[`timeFormat set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -9066,6 +10712,8 @@ exports[`timeFormat set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -9075,6 +10723,8 @@ exports[`timeFormat set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -9084,6 +10734,8 @@ exports[`timeFormat set to true 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -9093,6 +10745,8 @@ exports[`timeFormat set to true 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -9102,6 +10756,8 @@ exports[`timeFormat set to true 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -9113,6 +10769,8 @@ exports[`timeFormat set to true 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -9122,6 +10780,8 @@ exports[`timeFormat set to true 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -9131,6 +10791,8 @@ exports[`timeFormat set to true 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -9140,6 +10802,8 @@ exports[`timeFormat set to true 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -9149,6 +10813,8 @@ exports[`timeFormat set to true 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -9158,6 +10824,8 @@ exports[`timeFormat set to true 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -9167,6 +10835,8 @@ exports[`timeFormat set to true 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -9178,6 +10848,8 @@ exports[`timeFormat set to true 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -9187,6 +10859,8 @@ exports[`timeFormat set to true 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -9196,6 +10870,8 @@ exports[`timeFormat set to true 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -9205,6 +10881,8 @@ exports[`timeFormat set to true 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -9214,6 +10892,8 @@ exports[`timeFormat set to true 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -9223,6 +10903,8 @@ exports[`timeFormat set to true 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -9232,6 +10914,8 @@ exports[`timeFormat set to true 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -9243,6 +10927,8 @@ exports[`timeFormat set to true 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -9252,6 +10938,8 @@ exports[`timeFormat set to true 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -9261,6 +10949,8 @@ exports[`timeFormat set to true 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -9270,6 +10960,8 @@ exports[`timeFormat set to true 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -9279,6 +10971,8 @@ exports[`timeFormat set to true 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -9288,6 +10982,8 @@ exports[`timeFormat set to true 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -9297,6 +10993,8 @@ exports[`timeFormat set to true 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -9308,6 +11006,8 @@ exports[`timeFormat set to true 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -9317,6 +11017,8 @@ exports[`timeFormat set to true 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -9326,6 +11028,8 @@ exports[`timeFormat set to true 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -9335,6 +11039,8 @@ exports[`timeFormat set to true 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -9344,6 +11050,8 @@ exports[`timeFormat set to true 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -9353,6 +11061,8 @@ exports[`timeFormat set to true 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -9362,6 +11072,8 @@ exports[`timeFormat set to true 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -9373,6 +11085,8 @@ exports[`timeFormat set to true 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -9382,6 +11096,8 @@ exports[`timeFormat set to true 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -9391,6 +11107,8 @@ exports[`timeFormat set to true 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -9400,6 +11118,8 @@ exports[`timeFormat set to true 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -9409,6 +11129,8 @@ exports[`timeFormat set to true 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -9418,6 +11140,8 @@ exports[`timeFormat set to true 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -9427,6 +11151,8 @@ exports[`timeFormat set to true 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -9438,6 +11164,8 @@ exports[`timeFormat set to true 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -9464,6 +11192,7 @@ exports[`value: set to arbitrary value 1`] = ` />
‹ @@ -9484,12 +11215,16 @@ exports[`value: set to arbitrary value 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -9542,6 +11277,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -9551,6 +11288,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -9560,6 +11299,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -9569,6 +11310,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -9578,6 +11321,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -9587,6 +11332,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -9596,6 +11343,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -9607,6 +11356,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -9616,6 +11367,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -9625,6 +11378,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -9634,6 +11389,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -9643,6 +11400,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -9652,6 +11411,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -9661,6 +11422,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -9672,6 +11435,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -9681,6 +11446,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -9690,6 +11457,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -9699,6 +11468,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -9708,6 +11479,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -9717,6 +11490,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -9726,6 +11501,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -9737,6 +11514,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -9746,6 +11525,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -9755,6 +11536,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -9764,6 +11547,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -9773,6 +11558,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -9782,6 +11569,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -9791,6 +11580,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -9802,6 +11593,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -9811,6 +11604,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -9820,6 +11615,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -9829,6 +11626,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -9838,6 +11637,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -9847,6 +11648,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -9856,6 +11659,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -9867,6 +11672,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -9876,6 +11683,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -9885,6 +11694,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -9894,6 +11705,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -9903,6 +11716,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -9912,6 +11727,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -9921,6 +11738,8 @@ exports[`value: set to arbitrary value 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -9932,6 +11751,8 @@ exports[`value: set to arbitrary value 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -9958,6 +11779,7 @@ exports[`viewMode set to days 1`] = ` />
‹ @@ -9978,12 +11802,16 @@ exports[`viewMode set to days 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -10036,6 +11864,8 @@ exports[`viewMode set to days 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -10045,6 +11875,8 @@ exports[`viewMode set to days 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -10054,6 +11886,8 @@ exports[`viewMode set to days 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -10063,6 +11897,8 @@ exports[`viewMode set to days 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -10072,6 +11908,8 @@ exports[`viewMode set to days 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -10081,6 +11919,8 @@ exports[`viewMode set to days 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -10090,6 +11930,8 @@ exports[`viewMode set to days 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -10101,6 +11943,8 @@ exports[`viewMode set to days 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -10110,6 +11954,8 @@ exports[`viewMode set to days 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -10119,6 +11965,8 @@ exports[`viewMode set to days 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -10128,6 +11976,8 @@ exports[`viewMode set to days 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -10137,6 +11987,8 @@ exports[`viewMode set to days 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -10146,6 +11998,8 @@ exports[`viewMode set to days 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -10155,6 +12009,8 @@ exports[`viewMode set to days 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -10166,6 +12022,8 @@ exports[`viewMode set to days 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -10175,6 +12033,8 @@ exports[`viewMode set to days 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -10184,6 +12044,8 @@ exports[`viewMode set to days 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -10193,6 +12055,8 @@ exports[`viewMode set to days 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -10202,6 +12066,8 @@ exports[`viewMode set to days 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -10211,6 +12077,8 @@ exports[`viewMode set to days 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -10220,6 +12088,8 @@ exports[`viewMode set to days 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -10231,6 +12101,8 @@ exports[`viewMode set to days 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -10240,6 +12112,8 @@ exports[`viewMode set to days 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -10249,6 +12123,8 @@ exports[`viewMode set to days 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -10258,6 +12134,8 @@ exports[`viewMode set to days 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -10267,6 +12145,8 @@ exports[`viewMode set to days 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -10276,6 +12156,8 @@ exports[`viewMode set to days 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -10285,6 +12167,8 @@ exports[`viewMode set to days 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -10296,6 +12180,8 @@ exports[`viewMode set to days 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -10305,6 +12191,8 @@ exports[`viewMode set to days 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -10314,6 +12202,8 @@ exports[`viewMode set to days 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -10323,6 +12213,8 @@ exports[`viewMode set to days 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -10332,6 +12224,8 @@ exports[`viewMode set to days 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -10341,6 +12235,8 @@ exports[`viewMode set to days 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -10350,6 +12246,8 @@ exports[`viewMode set to days 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -10361,6 +12259,8 @@ exports[`viewMode set to days 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -10370,6 +12270,8 @@ exports[`viewMode set to days 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -10379,6 +12281,8 @@ exports[`viewMode set to days 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -10388,6 +12292,8 @@ exports[`viewMode set to days 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -10397,6 +12303,8 @@ exports[`viewMode set to days 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -10406,6 +12314,8 @@ exports[`viewMode set to days 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -10415,6 +12325,8 @@ exports[`viewMode set to days 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -10426,6 +12338,8 @@ exports[`viewMode set to days 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -10452,6 +12366,7 @@ exports[`viewMode set to months 1`] = ` />
‹ @@ -10472,12 +12389,16 @@ exports[`viewMode set to months 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -10530,6 +12451,8 @@ exports[`viewMode set to months 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -10539,6 +12462,8 @@ exports[`viewMode set to months 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -10548,6 +12473,8 @@ exports[`viewMode set to months 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -10557,6 +12484,8 @@ exports[`viewMode set to months 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -10566,6 +12495,8 @@ exports[`viewMode set to months 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -10575,6 +12506,8 @@ exports[`viewMode set to months 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -10584,6 +12517,8 @@ exports[`viewMode set to months 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -10595,6 +12530,8 @@ exports[`viewMode set to months 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -10604,6 +12541,8 @@ exports[`viewMode set to months 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -10613,6 +12552,8 @@ exports[`viewMode set to months 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -10622,6 +12563,8 @@ exports[`viewMode set to months 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -10631,6 +12574,8 @@ exports[`viewMode set to months 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -10640,6 +12585,8 @@ exports[`viewMode set to months 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -10649,6 +12596,8 @@ exports[`viewMode set to months 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -10660,6 +12609,8 @@ exports[`viewMode set to months 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -10669,6 +12620,8 @@ exports[`viewMode set to months 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -10678,6 +12631,8 @@ exports[`viewMode set to months 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -10687,6 +12642,8 @@ exports[`viewMode set to months 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -10696,6 +12653,8 @@ exports[`viewMode set to months 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -10705,6 +12664,8 @@ exports[`viewMode set to months 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -10714,6 +12675,8 @@ exports[`viewMode set to months 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -10725,6 +12688,8 @@ exports[`viewMode set to months 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -10734,6 +12699,8 @@ exports[`viewMode set to months 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -10743,6 +12710,8 @@ exports[`viewMode set to months 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -10752,6 +12721,8 @@ exports[`viewMode set to months 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -10761,6 +12732,8 @@ exports[`viewMode set to months 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -10770,6 +12743,8 @@ exports[`viewMode set to months 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -10779,6 +12754,8 @@ exports[`viewMode set to months 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -10790,6 +12767,8 @@ exports[`viewMode set to months 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -10799,6 +12778,8 @@ exports[`viewMode set to months 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -10808,6 +12789,8 @@ exports[`viewMode set to months 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -10817,6 +12800,8 @@ exports[`viewMode set to months 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -10826,6 +12811,8 @@ exports[`viewMode set to months 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -10835,6 +12822,8 @@ exports[`viewMode set to months 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -10844,6 +12833,8 @@ exports[`viewMode set to months 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -10855,6 +12846,8 @@ exports[`viewMode set to months 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -10864,6 +12857,8 @@ exports[`viewMode set to months 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -10873,6 +12868,8 @@ exports[`viewMode set to months 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -10882,6 +12879,8 @@ exports[`viewMode set to months 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -10891,6 +12890,8 @@ exports[`viewMode set to months 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -10900,6 +12901,8 @@ exports[`viewMode set to months 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -10909,6 +12912,8 @@ exports[`viewMode set to months 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -10920,6 +12925,8 @@ exports[`viewMode set to months 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -10946,6 +12953,7 @@ exports[`viewMode set to time 1`] = ` />
‹ @@ -10966,12 +12976,16 @@ exports[`viewMode set to time 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -11024,6 +13038,8 @@ exports[`viewMode set to time 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -11033,6 +13049,8 @@ exports[`viewMode set to time 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -11042,6 +13060,8 @@ exports[`viewMode set to time 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -11051,6 +13071,8 @@ exports[`viewMode set to time 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -11060,6 +13082,8 @@ exports[`viewMode set to time 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -11069,6 +13093,8 @@ exports[`viewMode set to time 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -11078,6 +13104,8 @@ exports[`viewMode set to time 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -11089,6 +13117,8 @@ exports[`viewMode set to time 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -11098,6 +13128,8 @@ exports[`viewMode set to time 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -11107,6 +13139,8 @@ exports[`viewMode set to time 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -11116,6 +13150,8 @@ exports[`viewMode set to time 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -11125,6 +13161,8 @@ exports[`viewMode set to time 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -11134,6 +13172,8 @@ exports[`viewMode set to time 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -11143,6 +13183,8 @@ exports[`viewMode set to time 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -11154,6 +13196,8 @@ exports[`viewMode set to time 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -11163,6 +13207,8 @@ exports[`viewMode set to time 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -11172,6 +13218,8 @@ exports[`viewMode set to time 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -11181,6 +13229,8 @@ exports[`viewMode set to time 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -11190,6 +13240,8 @@ exports[`viewMode set to time 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -11199,6 +13251,8 @@ exports[`viewMode set to time 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -11208,6 +13262,8 @@ exports[`viewMode set to time 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -11219,6 +13275,8 @@ exports[`viewMode set to time 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -11228,6 +13286,8 @@ exports[`viewMode set to time 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -11237,6 +13297,8 @@ exports[`viewMode set to time 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -11246,6 +13308,8 @@ exports[`viewMode set to time 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -11255,6 +13319,8 @@ exports[`viewMode set to time 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -11264,6 +13330,8 @@ exports[`viewMode set to time 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -11273,6 +13341,8 @@ exports[`viewMode set to time 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -11284,6 +13354,8 @@ exports[`viewMode set to time 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -11293,6 +13365,8 @@ exports[`viewMode set to time 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -11302,6 +13376,8 @@ exports[`viewMode set to time 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -11311,6 +13387,8 @@ exports[`viewMode set to time 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -11320,6 +13398,8 @@ exports[`viewMode set to time 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -11329,6 +13409,8 @@ exports[`viewMode set to time 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -11338,6 +13420,8 @@ exports[`viewMode set to time 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -11349,6 +13433,8 @@ exports[`viewMode set to time 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -11358,6 +13444,8 @@ exports[`viewMode set to time 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -11367,6 +13455,8 @@ exports[`viewMode set to time 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -11376,6 +13466,8 @@ exports[`viewMode set to time 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -11385,6 +13477,8 @@ exports[`viewMode set to time 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -11394,6 +13488,8 @@ exports[`viewMode set to time 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -11403,6 +13499,8 @@ exports[`viewMode set to time 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -11414,6 +13512,8 @@ exports[`viewMode set to time 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM @@ -11440,6 +13540,7 @@ exports[`viewMode set to years 1`] = ` />
‹ @@ -11460,12 +13563,16 @@ exports[`viewMode set to years 1`] = ` colSpan={5} data-value={11} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > December 2016 › @@ -11518,6 +13625,8 @@ exports[`viewMode set to years 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -11527,6 +13636,8 @@ exports[`viewMode set to years 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -11536,6 +13647,8 @@ exports[`viewMode set to years 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -11545,6 +13658,8 @@ exports[`viewMode set to years 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -11554,6 +13669,8 @@ exports[`viewMode set to years 1`] = ` data-value={1} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -11563,6 +13680,8 @@ exports[`viewMode set to years 1`] = ` data-value={2} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -11572,6 +13691,8 @@ exports[`viewMode set to years 1`] = ` data-value={3} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -11583,6 +13704,8 @@ exports[`viewMode set to years 1`] = ` data-value={4} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -11592,6 +13715,8 @@ exports[`viewMode set to years 1`] = ` data-value={5} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -11601,6 +13726,8 @@ exports[`viewMode set to years 1`] = ` data-value={6} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -11610,6 +13737,8 @@ exports[`viewMode set to years 1`] = ` data-value={7} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -11619,6 +13748,8 @@ exports[`viewMode set to years 1`] = ` data-value={8} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 8 @@ -11628,6 +13759,8 @@ exports[`viewMode set to years 1`] = ` data-value={9} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 9 @@ -11637,6 +13770,8 @@ exports[`viewMode set to years 1`] = ` data-value={10} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 10 @@ -11648,6 +13783,8 @@ exports[`viewMode set to years 1`] = ` data-value={11} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 11 @@ -11657,6 +13794,8 @@ exports[`viewMode set to years 1`] = ` data-value={12} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12 @@ -11666,6 +13805,8 @@ exports[`viewMode set to years 1`] = ` data-value={13} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 13 @@ -11675,6 +13816,8 @@ exports[`viewMode set to years 1`] = ` data-value={14} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 14 @@ -11684,6 +13827,8 @@ exports[`viewMode set to years 1`] = ` data-value={15} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 15 @@ -11693,6 +13838,8 @@ exports[`viewMode set to years 1`] = ` data-value={16} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 16 @@ -11702,6 +13849,8 @@ exports[`viewMode set to years 1`] = ` data-value={17} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 17 @@ -11713,6 +13862,8 @@ exports[`viewMode set to years 1`] = ` data-value={18} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 18 @@ -11722,6 +13873,8 @@ exports[`viewMode set to years 1`] = ` data-value={19} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 19 @@ -11731,6 +13884,8 @@ exports[`viewMode set to years 1`] = ` data-value={20} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 20 @@ -11740,6 +13895,8 @@ exports[`viewMode set to years 1`] = ` data-value={21} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 21 @@ -11749,6 +13906,8 @@ exports[`viewMode set to years 1`] = ` data-value={22} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 22 @@ -11758,6 +13917,8 @@ exports[`viewMode set to years 1`] = ` data-value={23} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 23 @@ -11767,6 +13928,8 @@ exports[`viewMode set to years 1`] = ` data-value={24} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 24 @@ -11778,6 +13941,8 @@ exports[`viewMode set to years 1`] = ` data-value={25} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 25 @@ -11787,6 +13952,8 @@ exports[`viewMode set to years 1`] = ` data-value={26} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 26 @@ -11796,6 +13963,8 @@ exports[`viewMode set to years 1`] = ` data-value={27} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 27 @@ -11805,6 +13974,8 @@ exports[`viewMode set to years 1`] = ` data-value={28} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 28 @@ -11814,6 +13985,8 @@ exports[`viewMode set to years 1`] = ` data-value={29} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 29 @@ -11823,6 +13996,8 @@ exports[`viewMode set to years 1`] = ` data-value={30} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 30 @@ -11832,6 +14007,8 @@ exports[`viewMode set to years 1`] = ` data-value={31} data-year={2016} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 31 @@ -11843,6 +14020,8 @@ exports[`viewMode set to years 1`] = ` data-value={1} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 1 @@ -11852,6 +14031,8 @@ exports[`viewMode set to years 1`] = ` data-value={2} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 2 @@ -11861,6 +14042,8 @@ exports[`viewMode set to years 1`] = ` data-value={3} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 3 @@ -11870,6 +14053,8 @@ exports[`viewMode set to years 1`] = ` data-value={4} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 4 @@ -11879,6 +14064,8 @@ exports[`viewMode set to years 1`] = ` data-value={5} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 5 @@ -11888,6 +14075,8 @@ exports[`viewMode set to years 1`] = ` data-value={6} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 6 @@ -11897,6 +14086,8 @@ exports[`viewMode set to years 1`] = ` data-value={7} data-year={2017} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 7 @@ -11908,6 +14099,8 @@ exports[`viewMode set to years 1`] = ` className="rdtTimeToggle" colSpan={7} onClick={[Function]} + onKeyDown={[Function]} + tabIndex={0} > 12:00 AM diff --git a/test/tests.spec.js b/test/tests.spec.js index 498afa2ec..7090d5388 100644 --- a/test/tests.spec.js +++ b/test/tests.spec.js @@ -8,6 +8,7 @@ import _momentTimezone from 'moment-timezone'; // eslint-disable-line import utils from './testUtils'; import Enzyme from 'enzyme'; import Adapter from 'enzyme-adapter-react-16'; +import { callHandler, getKeyboardProps } from '../src/utils'; moment.locale('en'); @@ -569,6 +570,17 @@ describe('Datetime', () => { expect(utils.isOpen(component)).toBeFalsy(); }); + it('close by ESC key', () => { + const date = new Date(2000, 0, 15, 2, 2, 2, 2), + component = utils.createDatetime({ value: date }); + + expect(utils.isOpen(component)).toBeFalsy(); + utils.openDatepicker(component); + expect(utils.isOpen(component)).toBeTruthy(); + component.find('.form-control').simulate('keyDown', { key: 'Escape', keyCode: 27, which: 27 }); + expect(utils.isOpen(component)).toBeFalsy(); + }); + it('open by click', () => { const date = new Date(2000, 0, 15, 2, 2, 2, 2); const component = utils.createDatetime({ value: date, closeOnClickOutside: true }); @@ -581,6 +593,15 @@ describe('Datetime', () => { expect( component.instance().state.open ).toBeTruthy(); }); + it('open by ArrowDown key', () => { + const date = new Date(2000, 0, 15, 2, 2, 2, 2), + component = utils.createDatetime({ value: date }); + + expect(utils.isOpen(component)).toBeFalsy(); + component.find('.form-control').simulate('keyDown', { key: 'ArrowDown', keyCode: 40, which: 40 }); + expect(utils.isOpen(component)).toBeTruthy(); + }); + it('increase time', () => { let i = 0; const date = new Date(2000, 0, 15, 2, 2, 2, 2), @@ -1512,7 +1533,7 @@ describe('Imperative methods', function() { expect( utils.isMonthView( component ) ).toBeTruthy(); component.instance().navigate( 'days' ); - + // Sync fix setTimeout( () => { expect( utils.isDayView( component ) ).toBeTruthy(); @@ -1532,3 +1553,23 @@ describe('Imperative methods', function() { }); }); + +describe('Utils', () => { + it('callHandler() - method not provided', () => { + expect(callHandler()).toBe(true); + }); + + it('callHandler() - method provided', () => { + const method = jest.fn((arg) => arg); + expect(callHandler(method, true)).toBe(true); + expect(callHandler(method, false)).toBe(false); + }); + + it('getKeyboardProps()', () => { + const onClickHandler = jest.fn(() => false); + const keyboardProps = getKeyboardProps(onClickHandler); + expect(keyboardProps.tabIndex).toBe(0); + expect(keyboardProps.onKeyDown({})).toBe(true); + expect(keyboardProps.onKeyDown({ key: 'Enter'})).toBe(false); + }); +});