UNPKG
@veccu/react-calendar
Version:
alpha (2.3.1-alpha.8)
latest (2.3.5)
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.1-alpha.8
2.3.1-alpha.7
2.3.1-alpha.6
2.3.1-alpha.5
2.3.1-alpha.4
2.3.1-alpha.3
2.3.1-alpha.2
2.3.1-alpha.1
2.3.0
2.2.2
2.2.1
2.2.0
2.1.3
2.1.2
2.1.1
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
1.0.0-alpha.5
Headless Calendar UI Library with react hooks
github.com/veccu/react-calendar
veccu/react-calendar
@veccu/react-calendar
/
dist
/
plugins
/
withDateProps.d.ts
8 lines
(7 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
DateCell
}
from
'../models'
;
export
default
function
withDateProps
(
baseDate
:
Date
,
cursorDate
:
Date
): <T
extends
DateCell
>
(
cell
: T
) =>
T & {
date
:
number
;
isCurrentMonth
:
boolean
;
isCurrentDate
:
boolean
;
isWeekend
:
boolean
; };