We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9535d commit 1058851Copy full SHA for 1058851
pages/index.js
@@ -62,7 +62,28 @@ export default function Playground() {
62
yesterday: "YText",
63
past: period => `P-${period} Text`,
64
currentMonth: "CMText",
65
- pastMonth: "PMText"
+ pastMonth: "PMText",
66
+ last3Days: {
67
+ text: "Last 3 days",
68
+ period: {
69
+ start: new Date(new Date().setDate(new Date().getDate() - 3)),
70
+ end: new Date()
71
+ }
72
+ },
73
+ thisDay: {
74
+ text: "This Day",
75
76
+ start: new Date(),
77
78
79
80
+ next8Days: {
81
+ text: "Next 8 days",
82
83
84
+ end: new Date(new Date().setDate(new Date().getDate() + 8))
85
86
87
},
88
footer: {
89
cancel: "CText",
0 commit comments