@@ -40,13 +40,13 @@ type DayJsType = ReturnType<typeof dayjs>
4040const classNameGenerator = tv ( {
4141 slots : {
4242 container :
43- 'smarthr-ui-Calendar shr-inline-block shr-overflow-hidden shr-rounded-m shr-bg-white shr-text-black shr-shadow-layer-3 forced-colors:shr-border-shorthand forced-colors:shr-shadow-none' ,
43+ 'smarthr-ui-Calendar shr-overflow-hidden shr-inline-block shr-rounded-m shr-bg-white shr-text-black shr-shadow-layer-3 forced-colors:shr-border-shorthand forced-colors:shr-shadow-none' ,
4444 header : 'smarthr-ui-Calendar-header shr-border-b-shorthand shr-flex shr-items-center shr-p-1' ,
4545 yearMonth : 'smarthr-ui-Calendar-yearMonth shr-me-0.5 shr-text-base shr-font-bold' ,
4646 monthButtons : 'smarthr-ui-Calendar-monthButtons shr-ms-auto shr-flex' ,
4747 tableLayout : 'shr-relative' ,
4848 yearSelectButton :
49- 'smarthr-ui-Calendar-selectingYear [&[aria-expanded="true"]_.smarthr-ui-Icon]:shr-rotate-180' ,
49+ 'smarthr-ui-Calendar-selectingYear focus-visible:shr-focus-indicator--outer [&[aria-expanded="true"]_.smarthr-ui-Icon]:shr-rotate-180' ,
5050 } ,
5151} )
5252
@@ -261,15 +261,15 @@ const MonthDirectionCluster = memo<{
261261 disabled = { isSelectingYear || prev . isBefore ( from , 'month' ) }
262262 onClick = { onClickMonthPrev }
263263 size = "s"
264- className = "smarthr-ui-Calendar-monthButtonPrev"
264+ className = "smarthr-ui-Calendar-monthButtonPrev focus-visible:shr-focus-indicator--outer "
265265 >
266266 < FaChevronLeftIcon alt = { previousMonthAltText } />
267267 </ Button >
268268 < Button
269269 disabled = { isSelectingYear || next . isAfter ( to , 'month' ) }
270270 onClick = { onClickMonthNext }
271271 size = "s"
272- className = "smarthr-ui-Calendar-monthButtonNext"
272+ className = "smarthr-ui-Calendar-monthButtonNext focus-visible:shr-focus-indicator--outer "
273273 >
274274 < FaChevronRightIcon alt = { nextMonthAltText } />
275275 </ Button >
0 commit comments