willba-component-library 0.2.21 → 0.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/FilterCalendar/FilterCalendar.d.ts +1 -1
- package/lib/components/FilterCalendar/hooks/useFilterCalendar.d.ts +3 -1
- package/lib/core/components/calendar/CalendarTypes.d.ts +3 -0
- package/lib/core/utils/parseDate.d.ts +2 -1
- package/lib/index.d.ts +4 -1
- package/lib/index.esm.js +94 -30
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +94 -30
- package/lib/index.js.map +1 -1
- package/lib/index.umd.js +94 -30
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/FilterCalendar/FilterCalendar.stories.tsx +9 -836
- package/src/components/FilterCalendar/FilterCalendar.tsx +9 -1
- package/src/components/FilterCalendar/hooks/useFilterCalendar.ts +19 -10
- package/src/core/components/calendar/Calendar.css +6 -0
- package/src/core/components/calendar/Calendar.tsx +85 -8
- package/src/core/components/calendar/CalendarTypes.ts +3 -0
- package/src/core/utils/parseDate.tsx +10 -2
- package/src/locales/en/common.json +2 -2
- package/src/locales/fi/common.json +4 -4
- package/src/locales/fi/filterBar.json +1 -1
|
@@ -16,859 +16,30 @@ export const Primary: Story = {
|
|
|
16
16
|
args: {
|
|
17
17
|
disableCalendarDates: {
|
|
18
18
|
availableDates: [
|
|
19
|
-
{
|
|
20
|
-
checkIn: new Date('2024-06-12'),
|
|
21
|
-
firstCheckOut: new Date('2024-06-14'),
|
|
22
|
-
lastCheckOut: new Date('2024-06-17'),
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
checkIn: new Date('2024-06-13'),
|
|
26
|
-
firstCheckOut: new Date('2024-06-14'),
|
|
27
|
-
lastCheckOut: new Date('2024-06-17'),
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
checkIn: new Date('2024-06-14'),
|
|
31
|
-
firstCheckOut: new Date('2024-06-15'),
|
|
32
|
-
lastCheckOut: new Date('2024-06-17'),
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
checkIn: new Date('2024-06-15'),
|
|
36
|
-
firstCheckOut: new Date('2024-06-16'),
|
|
37
|
-
lastCheckOut: new Date('2024-06-17'),
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
checkIn: new Date('2024-06-16'),
|
|
41
|
-
firstCheckOut: new Date('2024-06-17'),
|
|
42
|
-
lastCheckOut: new Date('2024-06-17'),
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
checkIn: new Date('2024-06-18'),
|
|
46
|
-
firstCheckOut: new Date('2024-06-19'),
|
|
47
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
checkIn: new Date('2024-06-19'),
|
|
51
|
-
firstCheckOut: new Date('2024-06-20'),
|
|
52
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
checkIn: new Date('2024-06-20'),
|
|
56
|
-
firstCheckOut: new Date('2024-06-21'),
|
|
57
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
checkIn: new Date('2024-06-21'),
|
|
61
|
-
firstCheckOut: new Date('2024-06-22'),
|
|
62
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
checkIn: new Date('2024-06-22'),
|
|
66
|
-
firstCheckOut: new Date('2024-06-23'),
|
|
67
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
checkIn: new Date('2024-06-23'),
|
|
71
|
-
firstCheckOut: new Date('2024-06-24'),
|
|
72
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
checkIn: new Date('2024-06-24'),
|
|
76
|
-
firstCheckOut: new Date('2024-06-25'),
|
|
77
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
checkIn: new Date('2024-06-25'),
|
|
81
|
-
firstCheckOut: new Date('2024-06-26'),
|
|
82
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
checkIn: new Date('2024-06-26'),
|
|
86
|
-
firstCheckOut: new Date('2024-06-27'),
|
|
87
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
checkIn: new Date('2024-06-27'),
|
|
91
|
-
firstCheckOut: new Date('2024-06-28'),
|
|
92
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
checkIn: new Date('2024-06-28'),
|
|
96
|
-
firstCheckOut: new Date('2024-06-29'),
|
|
97
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
checkIn: new Date('2024-06-29'),
|
|
101
|
-
firstCheckOut: new Date('2024-06-30'),
|
|
102
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
checkIn: new Date('2024-06-30'),
|
|
106
|
-
firstCheckOut: new Date('2024-07-01'),
|
|
107
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
checkIn: new Date('2024-07-01'),
|
|
111
|
-
firstCheckOut: new Date('2024-07-02'),
|
|
112
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
checkIn: new Date('2024-07-02'),
|
|
116
|
-
firstCheckOut: new Date('2024-07-03'),
|
|
117
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
checkIn: new Date('2024-07-03'),
|
|
121
|
-
firstCheckOut: new Date('2024-07-04'),
|
|
122
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
checkIn: new Date('2024-07-04'),
|
|
126
|
-
firstCheckOut: new Date('2024-07-05'),
|
|
127
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
checkIn: new Date('2024-07-05'),
|
|
131
|
-
firstCheckOut: new Date('2024-07-06'),
|
|
132
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
checkIn: new Date('2024-07-06'),
|
|
136
|
-
firstCheckOut: new Date('2024-07-07'),
|
|
137
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
checkIn: new Date('2024-07-07'),
|
|
141
|
-
firstCheckOut: new Date('2024-07-08'),
|
|
142
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
checkIn: new Date('2024-07-08'),
|
|
146
|
-
firstCheckOut: new Date('2024-07-09'),
|
|
147
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
148
|
-
},
|
|
149
19
|
{
|
|
150
20
|
checkIn: new Date('2024-07-09'),
|
|
151
21
|
firstCheckOut: new Date('2024-07-10'),
|
|
152
|
-
lastCheckOut: new Date('2024-
|
|
22
|
+
lastCheckOut: new Date('2024-07-12'),
|
|
153
23
|
},
|
|
154
24
|
{
|
|
155
25
|
checkIn: new Date('2024-07-10'),
|
|
156
26
|
firstCheckOut: new Date('2024-07-11'),
|
|
157
|
-
lastCheckOut: new Date('2024-
|
|
27
|
+
lastCheckOut: new Date('2024-07-12'),
|
|
158
28
|
},
|
|
159
29
|
{
|
|
160
30
|
checkIn: new Date('2024-07-11'),
|
|
161
31
|
firstCheckOut: new Date('2024-07-12'),
|
|
162
|
-
lastCheckOut: new Date('2024-
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
checkIn: new Date('2024-07-12'),
|
|
166
|
-
firstCheckOut: new Date('2024-07-13'),
|
|
167
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
checkIn: new Date('2024-07-13'),
|
|
171
|
-
firstCheckOut: new Date('2024-07-14'),
|
|
172
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
checkIn: new Date('2024-07-14'),
|
|
176
|
-
firstCheckOut: new Date('2024-07-15'),
|
|
177
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
checkIn: new Date('2024-07-15'),
|
|
181
|
-
firstCheckOut: new Date('2024-07-16'),
|
|
182
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
checkIn: new Date('2024-07-16'),
|
|
186
|
-
firstCheckOut: new Date('2024-07-17'),
|
|
187
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
checkIn: new Date('2024-07-17'),
|
|
191
|
-
firstCheckOut: new Date('2024-07-18'),
|
|
192
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
checkIn: new Date('2024-07-18'),
|
|
196
|
-
firstCheckOut: new Date('2024-07-19'),
|
|
197
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
checkIn: new Date('2024-07-19'),
|
|
201
|
-
firstCheckOut: new Date('2024-07-20'),
|
|
202
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
checkIn: new Date('2024-07-20'),
|
|
206
|
-
firstCheckOut: new Date('2024-07-21'),
|
|
207
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
checkIn: new Date('2024-07-21'),
|
|
211
|
-
firstCheckOut: new Date('2024-07-22'),
|
|
212
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
checkIn: new Date('2024-07-22'),
|
|
216
|
-
firstCheckOut: new Date('2024-07-23'),
|
|
217
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
checkIn: new Date('2024-07-23'),
|
|
221
|
-
firstCheckOut: new Date('2024-07-24'),
|
|
222
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
checkIn: new Date('2024-07-24'),
|
|
226
|
-
firstCheckOut: new Date('2024-07-25'),
|
|
227
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
checkIn: new Date('2024-07-25'),
|
|
231
|
-
firstCheckOut: new Date('2024-07-26'),
|
|
232
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
checkIn: new Date('2024-07-26'),
|
|
236
|
-
firstCheckOut: new Date('2024-07-27'),
|
|
237
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
checkIn: new Date('2024-07-27'),
|
|
241
|
-
firstCheckOut: new Date('2024-07-28'),
|
|
242
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
checkIn: new Date('2024-07-28'),
|
|
246
|
-
firstCheckOut: new Date('2024-07-29'),
|
|
247
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
checkIn: new Date('2024-07-29'),
|
|
251
|
-
firstCheckOut: new Date('2024-07-30'),
|
|
252
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
checkIn: new Date('2024-07-30'),
|
|
256
|
-
firstCheckOut: new Date('2024-07-31'),
|
|
257
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
checkIn: new Date('2024-07-31'),
|
|
261
|
-
firstCheckOut: new Date('2024-08-01'),
|
|
262
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
checkIn: new Date('2024-08-01'),
|
|
266
|
-
firstCheckOut: new Date('2024-08-02'),
|
|
267
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
checkIn: new Date('2024-08-02'),
|
|
271
|
-
firstCheckOut: new Date('2024-08-03'),
|
|
272
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
checkIn: new Date('2024-08-03'),
|
|
276
|
-
firstCheckOut: new Date('2024-08-04'),
|
|
277
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
checkIn: new Date('2024-08-04'),
|
|
281
|
-
firstCheckOut: new Date('2024-08-05'),
|
|
282
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
checkIn: new Date('2024-08-05'),
|
|
286
|
-
firstCheckOut: new Date('2024-08-06'),
|
|
287
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
checkIn: new Date('2024-08-06'),
|
|
291
|
-
firstCheckOut: new Date('2024-08-07'),
|
|
292
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
293
|
-
},
|
|
294
|
-
{
|
|
295
|
-
checkIn: new Date('2024-08-07'),
|
|
296
|
-
firstCheckOut: new Date('2024-08-08'),
|
|
297
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
checkIn: new Date('2024-08-08'),
|
|
301
|
-
firstCheckOut: new Date('2024-08-09'),
|
|
302
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
checkIn: new Date('2024-08-09'),
|
|
306
|
-
firstCheckOut: new Date('2024-08-10'),
|
|
307
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
checkIn: new Date('2024-08-10'),
|
|
311
|
-
firstCheckOut: new Date('2024-08-11'),
|
|
312
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
checkIn: new Date('2024-08-11'),
|
|
316
|
-
firstCheckOut: new Date('2024-08-12'),
|
|
317
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
checkIn: new Date('2024-08-12'),
|
|
321
|
-
firstCheckOut: new Date('2024-08-13'),
|
|
322
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
checkIn: new Date('2024-08-13'),
|
|
326
|
-
firstCheckOut: new Date('2024-08-14'),
|
|
327
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
checkIn: new Date('2024-08-14'),
|
|
331
|
-
firstCheckOut: new Date('2024-08-15'),
|
|
332
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
checkIn: new Date('2024-08-15'),
|
|
336
|
-
firstCheckOut: new Date('2024-08-16'),
|
|
337
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
checkIn: new Date('2024-08-16'),
|
|
341
|
-
firstCheckOut: new Date('2024-08-17'),
|
|
342
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
checkIn: new Date('2024-08-17'),
|
|
346
|
-
firstCheckOut: new Date('2024-08-18'),
|
|
347
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
checkIn: new Date('2024-08-18'),
|
|
351
|
-
firstCheckOut: new Date('2024-08-19'),
|
|
352
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
353
|
-
},
|
|
354
|
-
{
|
|
355
|
-
checkIn: new Date('2024-08-19'),
|
|
356
|
-
firstCheckOut: new Date('2024-08-20'),
|
|
357
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
checkIn: new Date('2024-08-20'),
|
|
361
|
-
firstCheckOut: new Date('2024-08-21'),
|
|
362
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
363
|
-
},
|
|
364
|
-
{
|
|
365
|
-
checkIn: new Date('2024-08-21'),
|
|
366
|
-
firstCheckOut: new Date('2024-08-22'),
|
|
367
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
368
|
-
},
|
|
369
|
-
{
|
|
370
|
-
checkIn: new Date('2024-08-22'),
|
|
371
|
-
firstCheckOut: new Date('2024-08-23'),
|
|
372
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
checkIn: new Date('2024-08-23'),
|
|
376
|
-
firstCheckOut: new Date('2024-08-24'),
|
|
377
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
checkIn: new Date('2024-08-24'),
|
|
381
|
-
firstCheckOut: new Date('2024-08-25'),
|
|
382
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
383
|
-
},
|
|
384
|
-
{
|
|
385
|
-
checkIn: new Date('2024-08-25'),
|
|
386
|
-
firstCheckOut: new Date('2024-08-26'),
|
|
387
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
checkIn: new Date('2024-08-26'),
|
|
391
|
-
firstCheckOut: new Date('2024-08-27'),
|
|
392
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
checkIn: new Date('2024-08-27'),
|
|
396
|
-
firstCheckOut: new Date('2024-08-28'),
|
|
397
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
checkIn: new Date('2024-08-28'),
|
|
401
|
-
firstCheckOut: new Date('2024-08-29'),
|
|
402
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
checkIn: new Date('2024-08-29'),
|
|
406
|
-
firstCheckOut: new Date('2024-08-30'),
|
|
407
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
checkIn: new Date('2024-08-30'),
|
|
411
|
-
firstCheckOut: new Date('2024-08-31'),
|
|
412
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
checkIn: new Date('2024-08-31'),
|
|
416
|
-
firstCheckOut: new Date('2024-09-01'),
|
|
417
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
checkIn: new Date('2024-09-01'),
|
|
421
|
-
firstCheckOut: new Date('2024-09-02'),
|
|
422
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
423
|
-
},
|
|
424
|
-
{
|
|
425
|
-
checkIn: new Date('2024-09-02'),
|
|
426
|
-
firstCheckOut: new Date('2024-09-03'),
|
|
427
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
checkIn: new Date('2024-09-03'),
|
|
431
|
-
firstCheckOut: new Date('2024-09-04'),
|
|
432
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
checkIn: new Date('2024-09-04'),
|
|
436
|
-
firstCheckOut: new Date('2024-09-05'),
|
|
437
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
checkIn: new Date('2024-09-05'),
|
|
441
|
-
firstCheckOut: new Date('2024-09-06'),
|
|
442
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
checkIn: new Date('2024-09-06'),
|
|
446
|
-
firstCheckOut: new Date('2024-09-07'),
|
|
447
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
checkIn: new Date('2024-09-07'),
|
|
451
|
-
firstCheckOut: new Date('2024-09-08'),
|
|
452
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
checkIn: new Date('2024-09-08'),
|
|
456
|
-
firstCheckOut: new Date('2024-09-09'),
|
|
457
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
checkIn: new Date('2024-09-09'),
|
|
461
|
-
firstCheckOut: new Date('2024-09-10'),
|
|
462
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
checkIn: new Date('2024-09-10'),
|
|
466
|
-
firstCheckOut: new Date('2024-09-11'),
|
|
467
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
checkIn: new Date('2024-09-11'),
|
|
471
|
-
firstCheckOut: new Date('2024-09-12'),
|
|
472
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
checkIn: new Date('2024-09-12'),
|
|
476
|
-
firstCheckOut: new Date('2024-09-13'),
|
|
477
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
checkIn: new Date('2024-09-13'),
|
|
481
|
-
firstCheckOut: new Date('2024-09-14'),
|
|
482
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
checkIn: new Date('2024-09-14'),
|
|
486
|
-
firstCheckOut: new Date('2024-09-15'),
|
|
487
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
488
|
-
},
|
|
489
|
-
{
|
|
490
|
-
checkIn: new Date('2024-09-15'),
|
|
491
|
-
firstCheckOut: new Date('2024-09-16'),
|
|
492
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
493
|
-
},
|
|
494
|
-
{
|
|
495
|
-
checkIn: new Date('2024-09-16'),
|
|
496
|
-
firstCheckOut: new Date('2024-09-17'),
|
|
497
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
checkIn: new Date('2024-09-17'),
|
|
501
|
-
firstCheckOut: new Date('2024-09-18'),
|
|
502
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
checkIn: new Date('2024-09-18'),
|
|
506
|
-
firstCheckOut: new Date('2024-09-19'),
|
|
507
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
checkIn: new Date('2024-09-19'),
|
|
511
|
-
firstCheckOut: new Date('2024-09-20'),
|
|
512
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
513
|
-
},
|
|
514
|
-
{
|
|
515
|
-
checkIn: new Date('2024-09-20'),
|
|
516
|
-
firstCheckOut: new Date('2024-09-21'),
|
|
517
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
checkIn: new Date('2024-09-21'),
|
|
521
|
-
firstCheckOut: new Date('2024-09-22'),
|
|
522
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
checkIn: new Date('2024-09-22'),
|
|
526
|
-
firstCheckOut: new Date('2024-09-23'),
|
|
527
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
checkIn: new Date('2024-09-23'),
|
|
531
|
-
firstCheckOut: new Date('2024-09-24'),
|
|
532
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
checkIn: new Date('2024-09-24'),
|
|
536
|
-
firstCheckOut: new Date('2024-09-25'),
|
|
537
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
checkIn: new Date('2024-09-25'),
|
|
541
|
-
firstCheckOut: new Date('2024-09-26'),
|
|
542
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
543
|
-
},
|
|
544
|
-
{
|
|
545
|
-
checkIn: new Date('2024-09-26'),
|
|
546
|
-
firstCheckOut: new Date('2024-09-27'),
|
|
547
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
548
|
-
},
|
|
549
|
-
{
|
|
550
|
-
checkIn: new Date('2024-09-27'),
|
|
551
|
-
firstCheckOut: new Date('2024-09-28'),
|
|
552
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
checkIn: new Date('2024-09-28'),
|
|
556
|
-
firstCheckOut: new Date('2024-09-29'),
|
|
557
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
checkIn: new Date('2024-09-29'),
|
|
561
|
-
firstCheckOut: new Date('2024-09-30'),
|
|
562
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
563
|
-
},
|
|
564
|
-
{
|
|
565
|
-
checkIn: new Date('2024-09-30'),
|
|
566
|
-
firstCheckOut: new Date('2024-10-01'),
|
|
567
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
checkIn: new Date('2024-10-01'),
|
|
571
|
-
firstCheckOut: new Date('2024-10-02'),
|
|
572
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
573
|
-
},
|
|
574
|
-
{
|
|
575
|
-
checkIn: new Date('2024-10-02'),
|
|
576
|
-
firstCheckOut: new Date('2024-10-03'),
|
|
577
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
checkIn: new Date('2024-10-03'),
|
|
581
|
-
firstCheckOut: new Date('2024-10-04'),
|
|
582
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
583
|
-
},
|
|
584
|
-
{
|
|
585
|
-
checkIn: new Date('2024-10-04'),
|
|
586
|
-
firstCheckOut: new Date('2024-10-05'),
|
|
587
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
checkIn: new Date('2024-10-05'),
|
|
591
|
-
firstCheckOut: new Date('2024-10-06'),
|
|
592
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
checkIn: new Date('2024-10-06'),
|
|
596
|
-
firstCheckOut: new Date('2024-10-07'),
|
|
597
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
598
|
-
},
|
|
599
|
-
{
|
|
600
|
-
checkIn: new Date('2024-10-07'),
|
|
601
|
-
firstCheckOut: new Date('2024-10-08'),
|
|
602
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
603
|
-
},
|
|
604
|
-
{
|
|
605
|
-
checkIn: new Date('2024-10-08'),
|
|
606
|
-
firstCheckOut: new Date('2024-10-09'),
|
|
607
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
checkIn: new Date('2024-10-09'),
|
|
611
|
-
firstCheckOut: new Date('2024-10-10'),
|
|
612
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
checkIn: new Date('2024-10-10'),
|
|
616
|
-
firstCheckOut: new Date('2024-10-11'),
|
|
617
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
checkIn: new Date('2024-10-11'),
|
|
621
|
-
firstCheckOut: new Date('2024-10-12'),
|
|
622
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
checkIn: new Date('2024-10-12'),
|
|
626
|
-
firstCheckOut: new Date('2024-10-13'),
|
|
627
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
checkIn: new Date('2024-10-13'),
|
|
631
|
-
firstCheckOut: new Date('2024-10-14'),
|
|
632
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
633
|
-
},
|
|
634
|
-
{
|
|
635
|
-
checkIn: new Date('2024-10-14'),
|
|
636
|
-
firstCheckOut: new Date('2024-10-15'),
|
|
637
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
checkIn: new Date('2024-10-15'),
|
|
641
|
-
firstCheckOut: new Date('2024-10-16'),
|
|
642
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
643
|
-
},
|
|
644
|
-
{
|
|
645
|
-
checkIn: new Date('2024-10-16'),
|
|
646
|
-
firstCheckOut: new Date('2024-10-17'),
|
|
647
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
checkIn: new Date('2024-10-17'),
|
|
651
|
-
firstCheckOut: new Date('2024-10-18'),
|
|
652
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
checkIn: new Date('2024-10-18'),
|
|
656
|
-
firstCheckOut: new Date('2024-10-19'),
|
|
657
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
checkIn: new Date('2024-10-19'),
|
|
661
|
-
firstCheckOut: new Date('2024-10-20'),
|
|
662
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
663
|
-
},
|
|
664
|
-
{
|
|
665
|
-
checkIn: new Date('2024-10-20'),
|
|
666
|
-
firstCheckOut: new Date('2024-10-21'),
|
|
667
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
668
|
-
},
|
|
669
|
-
{
|
|
670
|
-
checkIn: new Date('2024-10-21'),
|
|
671
|
-
firstCheckOut: new Date('2024-10-22'),
|
|
672
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
checkIn: new Date('2024-10-22'),
|
|
676
|
-
firstCheckOut: new Date('2024-10-23'),
|
|
677
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
checkIn: new Date('2024-10-23'),
|
|
681
|
-
firstCheckOut: new Date('2024-10-24'),
|
|
682
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
checkIn: new Date('2024-10-24'),
|
|
686
|
-
firstCheckOut: new Date('2024-10-25'),
|
|
687
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
checkIn: new Date('2024-10-25'),
|
|
691
|
-
firstCheckOut: new Date('2024-10-26'),
|
|
692
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
checkIn: new Date('2024-10-26'),
|
|
696
|
-
firstCheckOut: new Date('2024-10-27'),
|
|
697
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
698
|
-
},
|
|
699
|
-
{
|
|
700
|
-
checkIn: new Date('2024-10-27'),
|
|
701
|
-
firstCheckOut: new Date('2024-10-28'),
|
|
702
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
checkIn: new Date('2024-10-28'),
|
|
706
|
-
firstCheckOut: new Date('2024-10-29'),
|
|
707
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
checkIn: new Date('2024-10-29'),
|
|
711
|
-
firstCheckOut: new Date('2024-10-30'),
|
|
712
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
checkIn: new Date('2024-10-30'),
|
|
716
|
-
firstCheckOut: new Date('2024-10-31'),
|
|
717
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
checkIn: new Date('2024-10-31'),
|
|
721
|
-
firstCheckOut: new Date('2024-11-01'),
|
|
722
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
checkIn: new Date('2024-11-01'),
|
|
726
|
-
firstCheckOut: new Date('2024-11-02'),
|
|
727
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
checkIn: new Date('2024-11-02'),
|
|
731
|
-
firstCheckOut: new Date('2024-11-03'),
|
|
732
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
733
|
-
},
|
|
734
|
-
{
|
|
735
|
-
checkIn: new Date('2024-11-03'),
|
|
736
|
-
firstCheckOut: new Date('2024-11-04'),
|
|
737
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
738
|
-
},
|
|
739
|
-
{
|
|
740
|
-
checkIn: new Date('2024-11-04'),
|
|
741
|
-
firstCheckOut: new Date('2024-11-05'),
|
|
742
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
checkIn: new Date('2024-11-05'),
|
|
746
|
-
firstCheckOut: new Date('2024-11-06'),
|
|
747
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
748
|
-
},
|
|
749
|
-
{
|
|
750
|
-
checkIn: new Date('2024-11-06'),
|
|
751
|
-
firstCheckOut: new Date('2024-11-07'),
|
|
752
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
checkIn: new Date('2024-11-07'),
|
|
756
|
-
firstCheckOut: new Date('2024-11-08'),
|
|
757
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
checkIn: new Date('2024-11-08'),
|
|
761
|
-
firstCheckOut: new Date('2024-11-09'),
|
|
762
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
checkIn: new Date('2024-11-09'),
|
|
766
|
-
firstCheckOut: new Date('2024-11-10'),
|
|
767
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
checkIn: new Date('2024-11-10'),
|
|
771
|
-
firstCheckOut: new Date('2024-11-11'),
|
|
772
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
773
|
-
},
|
|
774
|
-
{
|
|
775
|
-
checkIn: new Date('2024-11-11'),
|
|
776
|
-
firstCheckOut: new Date('2024-11-12'),
|
|
777
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
checkIn: new Date('2024-11-12'),
|
|
781
|
-
firstCheckOut: new Date('2024-11-13'),
|
|
782
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
checkIn: new Date('2024-11-13'),
|
|
786
|
-
firstCheckOut: new Date('2024-11-14'),
|
|
787
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
checkIn: new Date('2024-11-14'),
|
|
791
|
-
firstCheckOut: new Date('2024-11-15'),
|
|
792
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
checkIn: new Date('2024-11-15'),
|
|
796
|
-
firstCheckOut: new Date('2024-11-16'),
|
|
797
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
checkIn: new Date('2024-11-16'),
|
|
801
|
-
firstCheckOut: new Date('2024-11-17'),
|
|
802
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
checkIn: new Date('2024-11-17'),
|
|
806
|
-
firstCheckOut: new Date('2024-11-18'),
|
|
807
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
808
|
-
},
|
|
809
|
-
{
|
|
810
|
-
checkIn: new Date('2024-11-18'),
|
|
811
|
-
firstCheckOut: new Date('2024-11-19'),
|
|
812
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
checkIn: new Date('2024-11-19'),
|
|
816
|
-
firstCheckOut: new Date('2024-11-20'),
|
|
817
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
checkIn: new Date('2024-11-20'),
|
|
821
|
-
firstCheckOut: new Date('2024-11-21'),
|
|
822
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
823
|
-
},
|
|
824
|
-
{
|
|
825
|
-
checkIn: new Date('2024-11-21'),
|
|
826
|
-
firstCheckOut: new Date('2024-11-22'),
|
|
827
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
checkIn: new Date('2024-11-22'),
|
|
831
|
-
firstCheckOut: new Date('2024-11-23'),
|
|
832
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
checkIn: new Date('2024-11-23'),
|
|
836
|
-
firstCheckOut: new Date('2024-11-24'),
|
|
837
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
838
|
-
},
|
|
839
|
-
{
|
|
840
|
-
checkIn: new Date('2024-11-24'),
|
|
841
|
-
firstCheckOut: new Date('2024-11-25'),
|
|
842
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
843
|
-
},
|
|
844
|
-
{
|
|
845
|
-
checkIn: new Date('2024-11-25'),
|
|
846
|
-
firstCheckOut: new Date('2024-11-26'),
|
|
847
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
848
|
-
},
|
|
849
|
-
{
|
|
850
|
-
checkIn: new Date('2024-11-26'),
|
|
851
|
-
firstCheckOut: new Date('2024-11-27'),
|
|
852
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
checkIn: new Date('2024-11-27'),
|
|
856
|
-
firstCheckOut: new Date('2024-11-28'),
|
|
857
|
-
lastCheckOut: new Date('2024-11-28'),
|
|
32
|
+
lastCheckOut: new Date('2024-07-12'),
|
|
858
33
|
},
|
|
859
34
|
],
|
|
860
35
|
disabledDates: [
|
|
861
36
|
{
|
|
862
|
-
to: new Date('2024-
|
|
863
|
-
from: new Date('2024-
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
to: new Date('2024-06-17'),
|
|
867
|
-
from: new Date('2024-06-17'),
|
|
37
|
+
to: new Date('2024-07-08'),
|
|
38
|
+
from: new Date('2024-07-01'),
|
|
868
39
|
},
|
|
869
40
|
{
|
|
870
|
-
to: new Date('2024-
|
|
871
|
-
from: new Date('2024-
|
|
41
|
+
to: new Date('2024-08-31'),
|
|
42
|
+
from: new Date('2024-07-12'),
|
|
872
43
|
},
|
|
873
44
|
],
|
|
874
45
|
},
|
|
@@ -882,6 +53,8 @@ export const Primary: Story = {
|
|
|
882
53
|
onSubmit: (val) => console.log('Submit', val),
|
|
883
54
|
setToggleCalendar: (val) => console.log(val),
|
|
884
55
|
requestDates: (val) => console.log(val),
|
|
56
|
+
showFeedback: true,
|
|
57
|
+
noActiveSelection: true,
|
|
885
58
|
},
|
|
886
59
|
render: (args) => (
|
|
887
60
|
<div style={{ padding: '30px', height: '100vh' }}>
|