uikit-react-public 0.44.2 → 0.44.4
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/dist/components/Calendar/Calendar.d.ts +1 -1
- package/dist/components/Calendar/Calendar.stories.d.ts +1 -1
- package/dist/components/Calendar/Calendar.types.d.ts +8 -0
- package/dist/components/Calendar/index.d.ts +1 -1
- package/dist/components/Calendar/subcomponents/Day.d.ts +4 -2
- package/dist/components/Calendar/subcomponents/Day.stories.d.ts +1 -1
- package/dist/components/Calendar/subcomponents/EventDot.d.ts +3 -1
- package/dist/components/Calendar/subcomponents/Grid.d.ts +3 -2
- package/dist/components/Calendar/subcomponents/__tests__/Day.test.d.ts +1 -0
- package/dist/components/Calendar/subcomponents/__tests__/EventDot.test.d.ts +1 -0
- package/dist/components/Datepicker/Datepicker.types.d.ts +2 -1
- package/dist/components/Datepicker/subcomponents/CustomDatepicker.d.ts +3 -2
- package/dist/components/index.d.ts +1 -1
- package/dist/index.js +3275 -3227
- package/lib/components/Accordion/Accordion.tsx +1 -3
- package/lib/components/Accordion/__tests__/__snapshots__/Accordion.test.tsx.snap +2 -2
- package/lib/components/Calendar/Calendar.stories.tsx +47 -12
- package/lib/components/Calendar/Calendar.tsx +2 -0
- package/lib/components/Calendar/Calendar.types.ts +15 -0
- package/lib/components/Calendar/__tests__/Calendar.test.tsx +37 -2
- package/lib/components/Calendar/__tests__/__snapshots__/Calendar.test.tsx.snap +462 -231
- package/lib/components/Calendar/index.ts +6 -1
- package/lib/components/Calendar/subcomponents/Day.tsx +44 -5
- package/lib/components/Calendar/subcomponents/EventDot.tsx +42 -6
- package/lib/components/Calendar/subcomponents/Grid.tsx +4 -1
- package/lib/components/Calendar/subcomponents/__tests__/Day.test.tsx +139 -0
- package/lib/components/Calendar/subcomponents/__tests__/EventDot.test.tsx +78 -0
- package/lib/components/Datepicker/Datepicker.stories.tsx +29 -6
- package/lib/components/Datepicker/Datepicker.types.ts +6 -1
- package/lib/components/Datepicker/__tests__/Datepicker.test.tsx +26 -0
- package/lib/components/Datepicker/subcomponents/CustomDatepicker.tsx +8 -1
- package/lib/components/index.ts +1 -1
- package/package.json +1 -1
|
@@ -203,9 +203,12 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
203
203
|
>
|
|
204
204
|
S
|
|
205
205
|
</div>
|
|
206
|
-
<
|
|
207
|
-
|
|
206
|
+
<button
|
|
207
|
+
aria-label="24 February 2025"
|
|
208
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
208
209
|
data-testid="ucl-uikit-calendar__day"
|
|
210
|
+
tabindex="-1"
|
|
211
|
+
type="button"
|
|
209
212
|
>
|
|
210
213
|
<div
|
|
211
214
|
class="css-1stdm82"
|
|
@@ -215,10 +218,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
215
218
|
<div
|
|
216
219
|
class="css-1dq26wd"
|
|
217
220
|
/>
|
|
218
|
-
</
|
|
219
|
-
<
|
|
220
|
-
|
|
221
|
+
</button>
|
|
222
|
+
<button
|
|
223
|
+
aria-label="25 February 2025"
|
|
224
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
221
225
|
data-testid="ucl-uikit-calendar__day"
|
|
226
|
+
tabindex="-1"
|
|
227
|
+
type="button"
|
|
222
228
|
>
|
|
223
229
|
<div
|
|
224
230
|
class="css-1stdm82"
|
|
@@ -228,10 +234,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
228
234
|
<div
|
|
229
235
|
class="css-1dq26wd"
|
|
230
236
|
/>
|
|
231
|
-
</
|
|
232
|
-
<
|
|
233
|
-
|
|
237
|
+
</button>
|
|
238
|
+
<button
|
|
239
|
+
aria-label="26 February 2025"
|
|
240
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
234
241
|
data-testid="ucl-uikit-calendar__day"
|
|
242
|
+
tabindex="-1"
|
|
243
|
+
type="button"
|
|
235
244
|
>
|
|
236
245
|
<div
|
|
237
246
|
class="css-1stdm82"
|
|
@@ -241,10 +250,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
241
250
|
<div
|
|
242
251
|
class="css-1dq26wd"
|
|
243
252
|
/>
|
|
244
|
-
</
|
|
245
|
-
<
|
|
246
|
-
|
|
253
|
+
</button>
|
|
254
|
+
<button
|
|
255
|
+
aria-label="27 February 2025"
|
|
256
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
247
257
|
data-testid="ucl-uikit-calendar__day"
|
|
258
|
+
tabindex="-1"
|
|
259
|
+
type="button"
|
|
248
260
|
>
|
|
249
261
|
<div
|
|
250
262
|
class="css-1stdm82"
|
|
@@ -254,10 +266,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
254
266
|
<div
|
|
255
267
|
class="css-1dq26wd"
|
|
256
268
|
/>
|
|
257
|
-
</
|
|
258
|
-
<
|
|
259
|
-
|
|
269
|
+
</button>
|
|
270
|
+
<button
|
|
271
|
+
aria-label="28 February 2025"
|
|
272
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
260
273
|
data-testid="ucl-uikit-calendar__day"
|
|
274
|
+
tabindex="-1"
|
|
275
|
+
type="button"
|
|
261
276
|
>
|
|
262
277
|
<div
|
|
263
278
|
class="css-1stdm82"
|
|
@@ -267,10 +282,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
267
282
|
<div
|
|
268
283
|
class="css-1dq26wd"
|
|
269
284
|
/>
|
|
270
|
-
</
|
|
271
|
-
<
|
|
272
|
-
|
|
285
|
+
</button>
|
|
286
|
+
<button
|
|
287
|
+
aria-label="1 March 2025"
|
|
288
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
273
289
|
data-testid="ucl-uikit-calendar__day"
|
|
290
|
+
tabindex="-1"
|
|
291
|
+
type="button"
|
|
274
292
|
>
|
|
275
293
|
<div
|
|
276
294
|
class="css-10nr46e"
|
|
@@ -280,10 +298,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
280
298
|
<div
|
|
281
299
|
class="css-1dq26wd"
|
|
282
300
|
/>
|
|
283
|
-
</
|
|
284
|
-
<
|
|
285
|
-
|
|
301
|
+
</button>
|
|
302
|
+
<button
|
|
303
|
+
aria-label="2 March 2025"
|
|
304
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
286
305
|
data-testid="ucl-uikit-calendar__day"
|
|
306
|
+
tabindex="-1"
|
|
307
|
+
type="button"
|
|
287
308
|
>
|
|
288
309
|
<div
|
|
289
310
|
class="css-10nr46e"
|
|
@@ -293,10 +314,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
293
314
|
<div
|
|
294
315
|
class="css-1dq26wd"
|
|
295
316
|
/>
|
|
296
|
-
</
|
|
297
|
-
<
|
|
298
|
-
|
|
317
|
+
</button>
|
|
318
|
+
<button
|
|
319
|
+
aria-label="3 March 2025"
|
|
320
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
299
321
|
data-testid="ucl-uikit-calendar__day"
|
|
322
|
+
tabindex="-1"
|
|
323
|
+
type="button"
|
|
300
324
|
>
|
|
301
325
|
<div
|
|
302
326
|
class="css-10nr46e"
|
|
@@ -306,10 +330,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
306
330
|
<div
|
|
307
331
|
class="css-1dq26wd"
|
|
308
332
|
/>
|
|
309
|
-
</
|
|
310
|
-
<
|
|
311
|
-
|
|
333
|
+
</button>
|
|
334
|
+
<button
|
|
335
|
+
aria-label="4 March 2025"
|
|
336
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
312
337
|
data-testid="ucl-uikit-calendar__day"
|
|
338
|
+
tabindex="-1"
|
|
339
|
+
type="button"
|
|
313
340
|
>
|
|
314
341
|
<div
|
|
315
342
|
class="css-10nr46e"
|
|
@@ -319,10 +346,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
319
346
|
<div
|
|
320
347
|
class="css-1dq26wd"
|
|
321
348
|
/>
|
|
322
|
-
</
|
|
323
|
-
<
|
|
324
|
-
|
|
349
|
+
</button>
|
|
350
|
+
<button
|
|
351
|
+
aria-label="5 March 2025"
|
|
352
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
325
353
|
data-testid="ucl-uikit-calendar__day"
|
|
354
|
+
tabindex="-1"
|
|
355
|
+
type="button"
|
|
326
356
|
>
|
|
327
357
|
<div
|
|
328
358
|
class="css-10nr46e"
|
|
@@ -332,10 +362,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
332
362
|
<div
|
|
333
363
|
class="css-1dq26wd"
|
|
334
364
|
/>
|
|
335
|
-
</
|
|
336
|
-
<
|
|
337
|
-
|
|
365
|
+
</button>
|
|
366
|
+
<button
|
|
367
|
+
aria-label="6 March 2025"
|
|
368
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
338
369
|
data-testid="ucl-uikit-calendar__day"
|
|
370
|
+
tabindex="-1"
|
|
371
|
+
type="button"
|
|
339
372
|
>
|
|
340
373
|
<div
|
|
341
374
|
class="css-10nr46e"
|
|
@@ -345,10 +378,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
345
378
|
<div
|
|
346
379
|
class="css-1dq26wd"
|
|
347
380
|
/>
|
|
348
|
-
</
|
|
349
|
-
<
|
|
350
|
-
|
|
381
|
+
</button>
|
|
382
|
+
<button
|
|
383
|
+
aria-label="7 March 2025"
|
|
384
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
351
385
|
data-testid="ucl-uikit-calendar__day"
|
|
386
|
+
tabindex="-1"
|
|
387
|
+
type="button"
|
|
352
388
|
>
|
|
353
389
|
<div
|
|
354
390
|
class="css-10nr46e"
|
|
@@ -358,10 +394,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
358
394
|
<div
|
|
359
395
|
class="css-1dq26wd"
|
|
360
396
|
/>
|
|
361
|
-
</
|
|
362
|
-
<
|
|
363
|
-
|
|
397
|
+
</button>
|
|
398
|
+
<button
|
|
399
|
+
aria-label="8 March 2025"
|
|
400
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
364
401
|
data-testid="ucl-uikit-calendar__day"
|
|
402
|
+
tabindex="-1"
|
|
403
|
+
type="button"
|
|
365
404
|
>
|
|
366
405
|
<div
|
|
367
406
|
class="css-10nr46e"
|
|
@@ -371,10 +410,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
371
410
|
<div
|
|
372
411
|
class="css-1dq26wd"
|
|
373
412
|
/>
|
|
374
|
-
</
|
|
375
|
-
<
|
|
376
|
-
|
|
413
|
+
</button>
|
|
414
|
+
<button
|
|
415
|
+
aria-label="9 March 2025"
|
|
416
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
377
417
|
data-testid="ucl-uikit-calendar__day"
|
|
418
|
+
tabindex="-1"
|
|
419
|
+
type="button"
|
|
378
420
|
>
|
|
379
421
|
<div
|
|
380
422
|
class="css-10nr46e"
|
|
@@ -384,10 +426,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
384
426
|
<div
|
|
385
427
|
class="css-1dq26wd"
|
|
386
428
|
/>
|
|
387
|
-
</
|
|
388
|
-
<
|
|
389
|
-
|
|
429
|
+
</button>
|
|
430
|
+
<button
|
|
431
|
+
aria-label="10 March 2025"
|
|
432
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
390
433
|
data-testid="ucl-uikit-calendar__day"
|
|
434
|
+
tabindex="-1"
|
|
435
|
+
type="button"
|
|
391
436
|
>
|
|
392
437
|
<div
|
|
393
438
|
class="css-qif2fi"
|
|
@@ -397,10 +442,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
397
442
|
<div
|
|
398
443
|
class="css-1dq26wd"
|
|
399
444
|
/>
|
|
400
|
-
</
|
|
401
|
-
<
|
|
402
|
-
|
|
445
|
+
</button>
|
|
446
|
+
<button
|
|
447
|
+
aria-label="11 March 2025"
|
|
448
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
403
449
|
data-testid="ucl-uikit-calendar__day"
|
|
450
|
+
tabindex="-1"
|
|
451
|
+
type="button"
|
|
404
452
|
>
|
|
405
453
|
<div
|
|
406
454
|
class="css-10nr46e"
|
|
@@ -410,10 +458,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
410
458
|
<div
|
|
411
459
|
class="css-1dq26wd"
|
|
412
460
|
/>
|
|
413
|
-
</
|
|
414
|
-
<
|
|
415
|
-
|
|
461
|
+
</button>
|
|
462
|
+
<button
|
|
463
|
+
aria-label="12 March 2025"
|
|
464
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
416
465
|
data-testid="ucl-uikit-calendar__day"
|
|
466
|
+
tabindex="-1"
|
|
467
|
+
type="button"
|
|
417
468
|
>
|
|
418
469
|
<div
|
|
419
470
|
class="css-10nr46e"
|
|
@@ -423,10 +474,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
423
474
|
<div
|
|
424
475
|
class="css-1dq26wd"
|
|
425
476
|
/>
|
|
426
|
-
</
|
|
427
|
-
<
|
|
428
|
-
|
|
477
|
+
</button>
|
|
478
|
+
<button
|
|
479
|
+
aria-label="13 March 2025"
|
|
480
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
429
481
|
data-testid="ucl-uikit-calendar__day"
|
|
482
|
+
tabindex="-1"
|
|
483
|
+
type="button"
|
|
430
484
|
>
|
|
431
485
|
<div
|
|
432
486
|
class="css-10nr46e"
|
|
@@ -436,10 +490,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
436
490
|
<div
|
|
437
491
|
class="css-1dq26wd"
|
|
438
492
|
/>
|
|
439
|
-
</
|
|
440
|
-
<
|
|
441
|
-
|
|
493
|
+
</button>
|
|
494
|
+
<button
|
|
495
|
+
aria-label="14 March 2025"
|
|
496
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
442
497
|
data-testid="ucl-uikit-calendar__day"
|
|
498
|
+
tabindex="-1"
|
|
499
|
+
type="button"
|
|
443
500
|
>
|
|
444
501
|
<div
|
|
445
502
|
class="css-10nr46e"
|
|
@@ -449,10 +506,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
449
506
|
<div
|
|
450
507
|
class="css-1dq26wd"
|
|
451
508
|
/>
|
|
452
|
-
</
|
|
453
|
-
<
|
|
454
|
-
|
|
509
|
+
</button>
|
|
510
|
+
<button
|
|
511
|
+
aria-label="15 March 2025"
|
|
512
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
455
513
|
data-testid="ucl-uikit-calendar__day"
|
|
514
|
+
tabindex="-1"
|
|
515
|
+
type="button"
|
|
456
516
|
>
|
|
457
517
|
<div
|
|
458
518
|
class="css-10nr46e"
|
|
@@ -462,10 +522,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
462
522
|
<div
|
|
463
523
|
class="css-1dq26wd"
|
|
464
524
|
/>
|
|
465
|
-
</
|
|
466
|
-
<
|
|
467
|
-
|
|
525
|
+
</button>
|
|
526
|
+
<button
|
|
527
|
+
aria-label="16 March 2025"
|
|
528
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
468
529
|
data-testid="ucl-uikit-calendar__day"
|
|
530
|
+
tabindex="-1"
|
|
531
|
+
type="button"
|
|
469
532
|
>
|
|
470
533
|
<div
|
|
471
534
|
class="css-10nr46e"
|
|
@@ -475,10 +538,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
475
538
|
<div
|
|
476
539
|
class="css-1dq26wd"
|
|
477
540
|
/>
|
|
478
|
-
</
|
|
479
|
-
<
|
|
480
|
-
|
|
541
|
+
</button>
|
|
542
|
+
<button
|
|
543
|
+
aria-label="17 March 2025"
|
|
544
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
481
545
|
data-testid="ucl-uikit-calendar__day"
|
|
546
|
+
tabindex="-1"
|
|
547
|
+
type="button"
|
|
482
548
|
>
|
|
483
549
|
<div
|
|
484
550
|
class="css-10nr46e"
|
|
@@ -488,10 +554,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
488
554
|
<div
|
|
489
555
|
class="css-1dq26wd"
|
|
490
556
|
/>
|
|
491
|
-
</
|
|
492
|
-
<
|
|
493
|
-
|
|
557
|
+
</button>
|
|
558
|
+
<button
|
|
559
|
+
aria-label="18 March 2025"
|
|
560
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
494
561
|
data-testid="ucl-uikit-calendar__day"
|
|
562
|
+
tabindex="-1"
|
|
563
|
+
type="button"
|
|
495
564
|
>
|
|
496
565
|
<div
|
|
497
566
|
class="css-10nr46e"
|
|
@@ -501,10 +570,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
501
570
|
<div
|
|
502
571
|
class="css-1dq26wd"
|
|
503
572
|
/>
|
|
504
|
-
</
|
|
505
|
-
<
|
|
506
|
-
|
|
573
|
+
</button>
|
|
574
|
+
<button
|
|
575
|
+
aria-label="19 March 2025"
|
|
576
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
507
577
|
data-testid="ucl-uikit-calendar__day"
|
|
578
|
+
tabindex="-1"
|
|
579
|
+
type="button"
|
|
508
580
|
>
|
|
509
581
|
<div
|
|
510
582
|
class="css-10nr46e"
|
|
@@ -514,10 +586,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
514
586
|
<div
|
|
515
587
|
class="css-1dq26wd"
|
|
516
588
|
/>
|
|
517
|
-
</
|
|
518
|
-
<
|
|
519
|
-
|
|
589
|
+
</button>
|
|
590
|
+
<button
|
|
591
|
+
aria-label="20 March 2025"
|
|
592
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
520
593
|
data-testid="ucl-uikit-calendar__day"
|
|
594
|
+
tabindex="-1"
|
|
595
|
+
type="button"
|
|
521
596
|
>
|
|
522
597
|
<div
|
|
523
598
|
class="css-10nr46e"
|
|
@@ -527,10 +602,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
527
602
|
<div
|
|
528
603
|
class="css-1dq26wd"
|
|
529
604
|
/>
|
|
530
|
-
</
|
|
531
|
-
<
|
|
532
|
-
|
|
605
|
+
</button>
|
|
606
|
+
<button
|
|
607
|
+
aria-label="21 March 2025"
|
|
608
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
533
609
|
data-testid="ucl-uikit-calendar__day"
|
|
610
|
+
tabindex="-1"
|
|
611
|
+
type="button"
|
|
534
612
|
>
|
|
535
613
|
<div
|
|
536
614
|
class="css-10nr46e"
|
|
@@ -540,10 +618,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
540
618
|
<div
|
|
541
619
|
class="css-1dq26wd"
|
|
542
620
|
/>
|
|
543
|
-
</
|
|
544
|
-
<
|
|
545
|
-
|
|
621
|
+
</button>
|
|
622
|
+
<button
|
|
623
|
+
aria-label="22 March 2025"
|
|
624
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
546
625
|
data-testid="ucl-uikit-calendar__day"
|
|
626
|
+
tabindex="-1"
|
|
627
|
+
type="button"
|
|
547
628
|
>
|
|
548
629
|
<div
|
|
549
630
|
class="css-10nr46e"
|
|
@@ -553,10 +634,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
553
634
|
<div
|
|
554
635
|
class="css-1dq26wd"
|
|
555
636
|
/>
|
|
556
|
-
</
|
|
557
|
-
<
|
|
558
|
-
|
|
637
|
+
</button>
|
|
638
|
+
<button
|
|
639
|
+
aria-label="23 March 2025"
|
|
640
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
559
641
|
data-testid="ucl-uikit-calendar__day"
|
|
642
|
+
tabindex="-1"
|
|
643
|
+
type="button"
|
|
560
644
|
>
|
|
561
645
|
<div
|
|
562
646
|
class="css-10nr46e"
|
|
@@ -566,10 +650,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
566
650
|
<div
|
|
567
651
|
class="css-1dq26wd"
|
|
568
652
|
/>
|
|
569
|
-
</
|
|
570
|
-
<
|
|
571
|
-
|
|
653
|
+
</button>
|
|
654
|
+
<button
|
|
655
|
+
aria-label="24 March 2025"
|
|
656
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
572
657
|
data-testid="ucl-uikit-calendar__day"
|
|
658
|
+
tabindex="-1"
|
|
659
|
+
type="button"
|
|
573
660
|
>
|
|
574
661
|
<div
|
|
575
662
|
class="css-10nr46e"
|
|
@@ -579,10 +666,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
579
666
|
<div
|
|
580
667
|
class="css-1dq26wd"
|
|
581
668
|
/>
|
|
582
|
-
</
|
|
583
|
-
<
|
|
584
|
-
|
|
669
|
+
</button>
|
|
670
|
+
<button
|
|
671
|
+
aria-label="25 March 2025"
|
|
672
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
585
673
|
data-testid="ucl-uikit-calendar__day"
|
|
674
|
+
tabindex="-1"
|
|
675
|
+
type="button"
|
|
586
676
|
>
|
|
587
677
|
<div
|
|
588
678
|
class="css-10nr46e"
|
|
@@ -592,10 +682,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
592
682
|
<div
|
|
593
683
|
class="css-1dq26wd"
|
|
594
684
|
/>
|
|
595
|
-
</
|
|
596
|
-
<
|
|
597
|
-
|
|
685
|
+
</button>
|
|
686
|
+
<button
|
|
687
|
+
aria-label="26 March 2025"
|
|
688
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
598
689
|
data-testid="ucl-uikit-calendar__day"
|
|
690
|
+
tabindex="-1"
|
|
691
|
+
type="button"
|
|
599
692
|
>
|
|
600
693
|
<div
|
|
601
694
|
class="css-10nr46e"
|
|
@@ -605,10 +698,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
605
698
|
<div
|
|
606
699
|
class="css-1dq26wd"
|
|
607
700
|
/>
|
|
608
|
-
</
|
|
609
|
-
<
|
|
610
|
-
|
|
701
|
+
</button>
|
|
702
|
+
<button
|
|
703
|
+
aria-label="27 March 2025"
|
|
704
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
611
705
|
data-testid="ucl-uikit-calendar__day"
|
|
706
|
+
tabindex="-1"
|
|
707
|
+
type="button"
|
|
612
708
|
>
|
|
613
709
|
<div
|
|
614
710
|
class="css-10nr46e"
|
|
@@ -618,10 +714,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
618
714
|
<div
|
|
619
715
|
class="css-1dq26wd"
|
|
620
716
|
/>
|
|
621
|
-
</
|
|
622
|
-
<
|
|
623
|
-
|
|
717
|
+
</button>
|
|
718
|
+
<button
|
|
719
|
+
aria-label="28 March 2025"
|
|
720
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
624
721
|
data-testid="ucl-uikit-calendar__day"
|
|
722
|
+
tabindex="-1"
|
|
723
|
+
type="button"
|
|
625
724
|
>
|
|
626
725
|
<div
|
|
627
726
|
class="css-10nr46e"
|
|
@@ -631,10 +730,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
631
730
|
<div
|
|
632
731
|
class="css-1dq26wd"
|
|
633
732
|
/>
|
|
634
|
-
</
|
|
635
|
-
<
|
|
636
|
-
|
|
733
|
+
</button>
|
|
734
|
+
<button
|
|
735
|
+
aria-label="29 March 2025"
|
|
736
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
637
737
|
data-testid="ucl-uikit-calendar__day"
|
|
738
|
+
tabindex="-1"
|
|
739
|
+
type="button"
|
|
638
740
|
>
|
|
639
741
|
<div
|
|
640
742
|
class="css-10nr46e"
|
|
@@ -644,10 +746,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
644
746
|
<div
|
|
645
747
|
class="css-1dq26wd"
|
|
646
748
|
/>
|
|
647
|
-
</
|
|
648
|
-
<
|
|
649
|
-
|
|
749
|
+
</button>
|
|
750
|
+
<button
|
|
751
|
+
aria-label="30 March 2025"
|
|
752
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
650
753
|
data-testid="ucl-uikit-calendar__day"
|
|
754
|
+
tabindex="-1"
|
|
755
|
+
type="button"
|
|
651
756
|
>
|
|
652
757
|
<div
|
|
653
758
|
class="css-10nr46e"
|
|
@@ -657,10 +762,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
657
762
|
<div
|
|
658
763
|
class="css-1dq26wd"
|
|
659
764
|
/>
|
|
660
|
-
</
|
|
661
|
-
<
|
|
662
|
-
|
|
765
|
+
</button>
|
|
766
|
+
<button
|
|
767
|
+
aria-label="31 March 2025"
|
|
768
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
663
769
|
data-testid="ucl-uikit-calendar__day"
|
|
770
|
+
tabindex="-1"
|
|
771
|
+
type="button"
|
|
664
772
|
>
|
|
665
773
|
<div
|
|
666
774
|
class="css-10nr46e"
|
|
@@ -670,10 +778,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
670
778
|
<div
|
|
671
779
|
class="css-1dq26wd"
|
|
672
780
|
/>
|
|
673
|
-
</
|
|
674
|
-
<
|
|
675
|
-
|
|
781
|
+
</button>
|
|
782
|
+
<button
|
|
783
|
+
aria-label="1 April 2025"
|
|
784
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
676
785
|
data-testid="ucl-uikit-calendar__day"
|
|
786
|
+
tabindex="-1"
|
|
787
|
+
type="button"
|
|
677
788
|
>
|
|
678
789
|
<div
|
|
679
790
|
class="css-1stdm82"
|
|
@@ -683,10 +794,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
683
794
|
<div
|
|
684
795
|
class="css-1dq26wd"
|
|
685
796
|
/>
|
|
686
|
-
</
|
|
687
|
-
<
|
|
688
|
-
|
|
797
|
+
</button>
|
|
798
|
+
<button
|
|
799
|
+
aria-label="2 April 2025"
|
|
800
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
689
801
|
data-testid="ucl-uikit-calendar__day"
|
|
802
|
+
tabindex="-1"
|
|
803
|
+
type="button"
|
|
690
804
|
>
|
|
691
805
|
<div
|
|
692
806
|
class="css-1stdm82"
|
|
@@ -696,10 +810,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
696
810
|
<div
|
|
697
811
|
class="css-1dq26wd"
|
|
698
812
|
/>
|
|
699
|
-
</
|
|
700
|
-
<
|
|
701
|
-
|
|
813
|
+
</button>
|
|
814
|
+
<button
|
|
815
|
+
aria-label="3 April 2025"
|
|
816
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
702
817
|
data-testid="ucl-uikit-calendar__day"
|
|
818
|
+
tabindex="-1"
|
|
819
|
+
type="button"
|
|
703
820
|
>
|
|
704
821
|
<div
|
|
705
822
|
class="css-1stdm82"
|
|
@@ -709,10 +826,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
709
826
|
<div
|
|
710
827
|
class="css-1dq26wd"
|
|
711
828
|
/>
|
|
712
|
-
</
|
|
713
|
-
<
|
|
714
|
-
|
|
829
|
+
</button>
|
|
830
|
+
<button
|
|
831
|
+
aria-label="4 April 2025"
|
|
832
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
715
833
|
data-testid="ucl-uikit-calendar__day"
|
|
834
|
+
tabindex="-1"
|
|
835
|
+
type="button"
|
|
716
836
|
>
|
|
717
837
|
<div
|
|
718
838
|
class="css-1stdm82"
|
|
@@ -722,10 +842,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
722
842
|
<div
|
|
723
843
|
class="css-1dq26wd"
|
|
724
844
|
/>
|
|
725
|
-
</
|
|
726
|
-
<
|
|
727
|
-
|
|
845
|
+
</button>
|
|
846
|
+
<button
|
|
847
|
+
aria-label="5 April 2025"
|
|
848
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
728
849
|
data-testid="ucl-uikit-calendar__day"
|
|
850
|
+
tabindex="-1"
|
|
851
|
+
type="button"
|
|
729
852
|
>
|
|
730
853
|
<div
|
|
731
854
|
class="css-1stdm82"
|
|
@@ -735,10 +858,13 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
735
858
|
<div
|
|
736
859
|
class="css-1dq26wd"
|
|
737
860
|
/>
|
|
738
|
-
</
|
|
739
|
-
<
|
|
740
|
-
|
|
861
|
+
</button>
|
|
862
|
+
<button
|
|
863
|
+
aria-label="6 April 2025"
|
|
864
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
741
865
|
data-testid="ucl-uikit-calendar__day"
|
|
866
|
+
tabindex="-1"
|
|
867
|
+
type="button"
|
|
742
868
|
>
|
|
743
869
|
<div
|
|
744
870
|
class="css-1stdm82"
|
|
@@ -748,7 +874,7 @@ exports[`Calendar > Snapshot: no date provided 1`] = `
|
|
|
748
874
|
<div
|
|
749
875
|
class="css-1dq26wd"
|
|
750
876
|
/>
|
|
751
|
-
</
|
|
877
|
+
</button>
|
|
752
878
|
</div>
|
|
753
879
|
</div>
|
|
754
880
|
</div>
|
|
@@ -957,9 +1083,12 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
957
1083
|
>
|
|
958
1084
|
S
|
|
959
1085
|
</div>
|
|
960
|
-
<
|
|
961
|
-
|
|
1086
|
+
<button
|
|
1087
|
+
aria-label="30 December 2024"
|
|
1088
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
962
1089
|
data-testid="ucl-uikit-calendar__day"
|
|
1090
|
+
tabindex="-1"
|
|
1091
|
+
type="button"
|
|
963
1092
|
>
|
|
964
1093
|
<div
|
|
965
1094
|
class="css-1stdm82"
|
|
@@ -969,10 +1098,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
969
1098
|
<div
|
|
970
1099
|
class="css-1dq26wd"
|
|
971
1100
|
/>
|
|
972
|
-
</
|
|
973
|
-
<
|
|
974
|
-
|
|
1101
|
+
</button>
|
|
1102
|
+
<button
|
|
1103
|
+
aria-label="31 December 2024"
|
|
1104
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
975
1105
|
data-testid="ucl-uikit-calendar__day"
|
|
1106
|
+
tabindex="-1"
|
|
1107
|
+
type="button"
|
|
976
1108
|
>
|
|
977
1109
|
<div
|
|
978
1110
|
class="css-1stdm82"
|
|
@@ -982,10 +1114,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
982
1114
|
<div
|
|
983
1115
|
class="css-1dq26wd"
|
|
984
1116
|
/>
|
|
985
|
-
</
|
|
986
|
-
<
|
|
987
|
-
|
|
1117
|
+
</button>
|
|
1118
|
+
<button
|
|
1119
|
+
aria-label="1 January 2025"
|
|
1120
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
988
1121
|
data-testid="ucl-uikit-calendar__day"
|
|
1122
|
+
tabindex="-1"
|
|
1123
|
+
type="button"
|
|
989
1124
|
>
|
|
990
1125
|
<div
|
|
991
1126
|
class="css-10nr46e"
|
|
@@ -995,10 +1130,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
995
1130
|
<div
|
|
996
1131
|
class="css-1dq26wd"
|
|
997
1132
|
/>
|
|
998
|
-
</
|
|
999
|
-
<
|
|
1000
|
-
|
|
1133
|
+
</button>
|
|
1134
|
+
<button
|
|
1135
|
+
aria-label="2 January 2025"
|
|
1136
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1001
1137
|
data-testid="ucl-uikit-calendar__day"
|
|
1138
|
+
tabindex="-1"
|
|
1139
|
+
type="button"
|
|
1002
1140
|
>
|
|
1003
1141
|
<div
|
|
1004
1142
|
class="css-10nr46e"
|
|
@@ -1008,10 +1146,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1008
1146
|
<div
|
|
1009
1147
|
class="css-1dq26wd"
|
|
1010
1148
|
/>
|
|
1011
|
-
</
|
|
1012
|
-
<
|
|
1013
|
-
|
|
1149
|
+
</button>
|
|
1150
|
+
<button
|
|
1151
|
+
aria-label="3 January 2025"
|
|
1152
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1014
1153
|
data-testid="ucl-uikit-calendar__day"
|
|
1154
|
+
tabindex="-1"
|
|
1155
|
+
type="button"
|
|
1015
1156
|
>
|
|
1016
1157
|
<div
|
|
1017
1158
|
class="css-10nr46e"
|
|
@@ -1021,10 +1162,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1021
1162
|
<div
|
|
1022
1163
|
class="css-1dq26wd"
|
|
1023
1164
|
/>
|
|
1024
|
-
</
|
|
1025
|
-
<
|
|
1026
|
-
|
|
1165
|
+
</button>
|
|
1166
|
+
<button
|
|
1167
|
+
aria-label="4 January 2025"
|
|
1168
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1027
1169
|
data-testid="ucl-uikit-calendar__day"
|
|
1170
|
+
tabindex="-1"
|
|
1171
|
+
type="button"
|
|
1028
1172
|
>
|
|
1029
1173
|
<div
|
|
1030
1174
|
class="css-10nr46e"
|
|
@@ -1034,10 +1178,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1034
1178
|
<div
|
|
1035
1179
|
class="css-1dq26wd"
|
|
1036
1180
|
/>
|
|
1037
|
-
</
|
|
1038
|
-
<
|
|
1039
|
-
|
|
1181
|
+
</button>
|
|
1182
|
+
<button
|
|
1183
|
+
aria-label="5 January 2025"
|
|
1184
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1040
1185
|
data-testid="ucl-uikit-calendar__day"
|
|
1186
|
+
tabindex="-1"
|
|
1187
|
+
type="button"
|
|
1041
1188
|
>
|
|
1042
1189
|
<div
|
|
1043
1190
|
class="css-10nr46e"
|
|
@@ -1047,10 +1194,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1047
1194
|
<div
|
|
1048
1195
|
class="css-1dq26wd"
|
|
1049
1196
|
/>
|
|
1050
|
-
</
|
|
1051
|
-
<
|
|
1052
|
-
|
|
1197
|
+
</button>
|
|
1198
|
+
<button
|
|
1199
|
+
aria-label="6 January 2025"
|
|
1200
|
+
class="ucl-uikit-calendar__day css-t90q6p"
|
|
1053
1201
|
data-testid="ucl-uikit-calendar__day"
|
|
1202
|
+
tabindex="-1"
|
|
1203
|
+
type="button"
|
|
1054
1204
|
>
|
|
1055
1205
|
<div
|
|
1056
1206
|
class="css-10nr46e"
|
|
@@ -1060,10 +1210,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1060
1210
|
<div
|
|
1061
1211
|
class="css-1dq26wd"
|
|
1062
1212
|
/>
|
|
1063
|
-
</
|
|
1064
|
-
<
|
|
1065
|
-
|
|
1213
|
+
</button>
|
|
1214
|
+
<button
|
|
1215
|
+
aria-label="7 January 2025"
|
|
1216
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1066
1217
|
data-testid="ucl-uikit-calendar__day"
|
|
1218
|
+
tabindex="-1"
|
|
1219
|
+
type="button"
|
|
1067
1220
|
>
|
|
1068
1221
|
<div
|
|
1069
1222
|
class="css-10nr46e"
|
|
@@ -1073,10 +1226,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1073
1226
|
<div
|
|
1074
1227
|
class="css-1dq26wd"
|
|
1075
1228
|
/>
|
|
1076
|
-
</
|
|
1077
|
-
<
|
|
1078
|
-
|
|
1229
|
+
</button>
|
|
1230
|
+
<button
|
|
1231
|
+
aria-label="8 January 2025"
|
|
1232
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1079
1233
|
data-testid="ucl-uikit-calendar__day"
|
|
1234
|
+
tabindex="-1"
|
|
1235
|
+
type="button"
|
|
1080
1236
|
>
|
|
1081
1237
|
<div
|
|
1082
1238
|
class="css-10nr46e"
|
|
@@ -1086,10 +1242,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1086
1242
|
<div
|
|
1087
1243
|
class="css-1dq26wd"
|
|
1088
1244
|
/>
|
|
1089
|
-
</
|
|
1090
|
-
<
|
|
1091
|
-
|
|
1245
|
+
</button>
|
|
1246
|
+
<button
|
|
1247
|
+
aria-label="9 January 2025"
|
|
1248
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1092
1249
|
data-testid="ucl-uikit-calendar__day"
|
|
1250
|
+
tabindex="-1"
|
|
1251
|
+
type="button"
|
|
1093
1252
|
>
|
|
1094
1253
|
<div
|
|
1095
1254
|
class="css-10nr46e"
|
|
@@ -1099,10 +1258,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1099
1258
|
<div
|
|
1100
1259
|
class="css-1dq26wd"
|
|
1101
1260
|
/>
|
|
1102
|
-
</
|
|
1103
|
-
<
|
|
1104
|
-
|
|
1261
|
+
</button>
|
|
1262
|
+
<button
|
|
1263
|
+
aria-label="10 January 2025"
|
|
1264
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1105
1265
|
data-testid="ucl-uikit-calendar__day"
|
|
1266
|
+
tabindex="-1"
|
|
1267
|
+
type="button"
|
|
1106
1268
|
>
|
|
1107
1269
|
<div
|
|
1108
1270
|
class="css-10nr46e"
|
|
@@ -1112,10 +1274,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1112
1274
|
<div
|
|
1113
1275
|
class="css-1dq26wd"
|
|
1114
1276
|
/>
|
|
1115
|
-
</
|
|
1116
|
-
<
|
|
1117
|
-
|
|
1277
|
+
</button>
|
|
1278
|
+
<button
|
|
1279
|
+
aria-label="11 January 2025"
|
|
1280
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1118
1281
|
data-testid="ucl-uikit-calendar__day"
|
|
1282
|
+
tabindex="-1"
|
|
1283
|
+
type="button"
|
|
1119
1284
|
>
|
|
1120
1285
|
<div
|
|
1121
1286
|
class="css-10nr46e"
|
|
@@ -1125,10 +1290,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1125
1290
|
<div
|
|
1126
1291
|
class="css-1dq26wd"
|
|
1127
1292
|
/>
|
|
1128
|
-
</
|
|
1129
|
-
<
|
|
1130
|
-
|
|
1293
|
+
</button>
|
|
1294
|
+
<button
|
|
1295
|
+
aria-label="12 January 2025"
|
|
1296
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1131
1297
|
data-testid="ucl-uikit-calendar__day"
|
|
1298
|
+
tabindex="-1"
|
|
1299
|
+
type="button"
|
|
1132
1300
|
>
|
|
1133
1301
|
<div
|
|
1134
1302
|
class="css-10nr46e"
|
|
@@ -1138,10 +1306,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1138
1306
|
<div
|
|
1139
1307
|
class="css-1dq26wd"
|
|
1140
1308
|
/>
|
|
1141
|
-
</
|
|
1142
|
-
<
|
|
1143
|
-
|
|
1309
|
+
</button>
|
|
1310
|
+
<button
|
|
1311
|
+
aria-label="13 January 2025"
|
|
1312
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1144
1313
|
data-testid="ucl-uikit-calendar__day"
|
|
1314
|
+
tabindex="-1"
|
|
1315
|
+
type="button"
|
|
1145
1316
|
>
|
|
1146
1317
|
<div
|
|
1147
1318
|
class="css-10nr46e"
|
|
@@ -1151,10 +1322,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1151
1322
|
<div
|
|
1152
1323
|
class="css-1dq26wd"
|
|
1153
1324
|
/>
|
|
1154
|
-
</
|
|
1155
|
-
<
|
|
1156
|
-
|
|
1325
|
+
</button>
|
|
1326
|
+
<button
|
|
1327
|
+
aria-label="14 January 2025"
|
|
1328
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1157
1329
|
data-testid="ucl-uikit-calendar__day"
|
|
1330
|
+
tabindex="-1"
|
|
1331
|
+
type="button"
|
|
1158
1332
|
>
|
|
1159
1333
|
<div
|
|
1160
1334
|
class="css-10nr46e"
|
|
@@ -1164,10 +1338,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1164
1338
|
<div
|
|
1165
1339
|
class="css-1dq26wd"
|
|
1166
1340
|
/>
|
|
1167
|
-
</
|
|
1168
|
-
<
|
|
1169
|
-
|
|
1341
|
+
</button>
|
|
1342
|
+
<button
|
|
1343
|
+
aria-label="15 January 2025"
|
|
1344
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1170
1345
|
data-testid="ucl-uikit-calendar__day"
|
|
1346
|
+
tabindex="-1"
|
|
1347
|
+
type="button"
|
|
1171
1348
|
>
|
|
1172
1349
|
<div
|
|
1173
1350
|
class="css-10nr46e"
|
|
@@ -1177,10 +1354,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1177
1354
|
<div
|
|
1178
1355
|
class="css-1dq26wd"
|
|
1179
1356
|
/>
|
|
1180
|
-
</
|
|
1181
|
-
<
|
|
1182
|
-
|
|
1357
|
+
</button>
|
|
1358
|
+
<button
|
|
1359
|
+
aria-label="16 January 2025"
|
|
1360
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1183
1361
|
data-testid="ucl-uikit-calendar__day"
|
|
1362
|
+
tabindex="-1"
|
|
1363
|
+
type="button"
|
|
1184
1364
|
>
|
|
1185
1365
|
<div
|
|
1186
1366
|
class="css-10nr46e"
|
|
@@ -1190,10 +1370,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1190
1370
|
<div
|
|
1191
1371
|
class="css-1dq26wd"
|
|
1192
1372
|
/>
|
|
1193
|
-
</
|
|
1194
|
-
<
|
|
1195
|
-
|
|
1373
|
+
</button>
|
|
1374
|
+
<button
|
|
1375
|
+
aria-label="17 January 2025"
|
|
1376
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1196
1377
|
data-testid="ucl-uikit-calendar__day"
|
|
1378
|
+
tabindex="-1"
|
|
1379
|
+
type="button"
|
|
1197
1380
|
>
|
|
1198
1381
|
<div
|
|
1199
1382
|
class="css-10nr46e"
|
|
@@ -1203,10 +1386,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1203
1386
|
<div
|
|
1204
1387
|
class="css-1dq26wd"
|
|
1205
1388
|
/>
|
|
1206
|
-
</
|
|
1207
|
-
<
|
|
1208
|
-
|
|
1389
|
+
</button>
|
|
1390
|
+
<button
|
|
1391
|
+
aria-label="18 January 2025"
|
|
1392
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1209
1393
|
data-testid="ucl-uikit-calendar__day"
|
|
1394
|
+
tabindex="-1"
|
|
1395
|
+
type="button"
|
|
1210
1396
|
>
|
|
1211
1397
|
<div
|
|
1212
1398
|
class="css-10nr46e"
|
|
@@ -1216,10 +1402,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1216
1402
|
<div
|
|
1217
1403
|
class="css-1dq26wd"
|
|
1218
1404
|
/>
|
|
1219
|
-
</
|
|
1220
|
-
<
|
|
1221
|
-
|
|
1405
|
+
</button>
|
|
1406
|
+
<button
|
|
1407
|
+
aria-label="19 January 2025"
|
|
1408
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1222
1409
|
data-testid="ucl-uikit-calendar__day"
|
|
1410
|
+
tabindex="-1"
|
|
1411
|
+
type="button"
|
|
1223
1412
|
>
|
|
1224
1413
|
<div
|
|
1225
1414
|
class="css-10nr46e"
|
|
@@ -1229,10 +1418,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1229
1418
|
<div
|
|
1230
1419
|
class="css-1dq26wd"
|
|
1231
1420
|
/>
|
|
1232
|
-
</
|
|
1233
|
-
<
|
|
1234
|
-
|
|
1421
|
+
</button>
|
|
1422
|
+
<button
|
|
1423
|
+
aria-label="20 January 2025"
|
|
1424
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1235
1425
|
data-testid="ucl-uikit-calendar__day"
|
|
1426
|
+
tabindex="-1"
|
|
1427
|
+
type="button"
|
|
1236
1428
|
>
|
|
1237
1429
|
<div
|
|
1238
1430
|
class="css-10nr46e"
|
|
@@ -1242,10 +1434,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1242
1434
|
<div
|
|
1243
1435
|
class="css-1dq26wd"
|
|
1244
1436
|
/>
|
|
1245
|
-
</
|
|
1246
|
-
<
|
|
1247
|
-
|
|
1437
|
+
</button>
|
|
1438
|
+
<button
|
|
1439
|
+
aria-label="21 January 2025"
|
|
1440
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1248
1441
|
data-testid="ucl-uikit-calendar__day"
|
|
1442
|
+
tabindex="-1"
|
|
1443
|
+
type="button"
|
|
1249
1444
|
>
|
|
1250
1445
|
<div
|
|
1251
1446
|
class="css-10nr46e"
|
|
@@ -1255,10 +1450,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1255
1450
|
<div
|
|
1256
1451
|
class="css-1dq26wd"
|
|
1257
1452
|
/>
|
|
1258
|
-
</
|
|
1259
|
-
<
|
|
1260
|
-
|
|
1453
|
+
</button>
|
|
1454
|
+
<button
|
|
1455
|
+
aria-label="22 January 2025"
|
|
1456
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1261
1457
|
data-testid="ucl-uikit-calendar__day"
|
|
1458
|
+
tabindex="-1"
|
|
1459
|
+
type="button"
|
|
1262
1460
|
>
|
|
1263
1461
|
<div
|
|
1264
1462
|
class="css-10nr46e"
|
|
@@ -1268,10 +1466,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1268
1466
|
<div
|
|
1269
1467
|
class="css-1dq26wd"
|
|
1270
1468
|
/>
|
|
1271
|
-
</
|
|
1272
|
-
<
|
|
1273
|
-
|
|
1469
|
+
</button>
|
|
1470
|
+
<button
|
|
1471
|
+
aria-label="23 January 2025"
|
|
1472
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1274
1473
|
data-testid="ucl-uikit-calendar__day"
|
|
1474
|
+
tabindex="-1"
|
|
1475
|
+
type="button"
|
|
1275
1476
|
>
|
|
1276
1477
|
<div
|
|
1277
1478
|
class="css-10nr46e"
|
|
@@ -1281,10 +1482,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1281
1482
|
<div
|
|
1282
1483
|
class="css-1dq26wd"
|
|
1283
1484
|
/>
|
|
1284
|
-
</
|
|
1285
|
-
<
|
|
1286
|
-
|
|
1485
|
+
</button>
|
|
1486
|
+
<button
|
|
1487
|
+
aria-label="24 January 2025"
|
|
1488
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1287
1489
|
data-testid="ucl-uikit-calendar__day"
|
|
1490
|
+
tabindex="-1"
|
|
1491
|
+
type="button"
|
|
1288
1492
|
>
|
|
1289
1493
|
<div
|
|
1290
1494
|
class="css-10nr46e"
|
|
@@ -1294,10 +1498,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1294
1498
|
<div
|
|
1295
1499
|
class="css-1dq26wd"
|
|
1296
1500
|
/>
|
|
1297
|
-
</
|
|
1298
|
-
<
|
|
1299
|
-
|
|
1501
|
+
</button>
|
|
1502
|
+
<button
|
|
1503
|
+
aria-label="25 January 2025"
|
|
1504
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1300
1505
|
data-testid="ucl-uikit-calendar__day"
|
|
1506
|
+
tabindex="-1"
|
|
1507
|
+
type="button"
|
|
1301
1508
|
>
|
|
1302
1509
|
<div
|
|
1303
1510
|
class="css-10nr46e"
|
|
@@ -1307,10 +1514,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1307
1514
|
<div
|
|
1308
1515
|
class="css-1dq26wd"
|
|
1309
1516
|
/>
|
|
1310
|
-
</
|
|
1311
|
-
<
|
|
1312
|
-
|
|
1517
|
+
</button>
|
|
1518
|
+
<button
|
|
1519
|
+
aria-label="26 January 2025"
|
|
1520
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1313
1521
|
data-testid="ucl-uikit-calendar__day"
|
|
1522
|
+
tabindex="-1"
|
|
1523
|
+
type="button"
|
|
1314
1524
|
>
|
|
1315
1525
|
<div
|
|
1316
1526
|
class="css-10nr46e"
|
|
@@ -1320,10 +1530,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1320
1530
|
<div
|
|
1321
1531
|
class="css-1dq26wd"
|
|
1322
1532
|
/>
|
|
1323
|
-
</
|
|
1324
|
-
<
|
|
1325
|
-
|
|
1533
|
+
</button>
|
|
1534
|
+
<button
|
|
1535
|
+
aria-label="27 January 2025"
|
|
1536
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1326
1537
|
data-testid="ucl-uikit-calendar__day"
|
|
1538
|
+
tabindex="-1"
|
|
1539
|
+
type="button"
|
|
1327
1540
|
>
|
|
1328
1541
|
<div
|
|
1329
1542
|
class="css-10nr46e"
|
|
@@ -1333,10 +1546,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1333
1546
|
<div
|
|
1334
1547
|
class="css-1dq26wd"
|
|
1335
1548
|
/>
|
|
1336
|
-
</
|
|
1337
|
-
<
|
|
1338
|
-
|
|
1549
|
+
</button>
|
|
1550
|
+
<button
|
|
1551
|
+
aria-label="28 January 2025"
|
|
1552
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1339
1553
|
data-testid="ucl-uikit-calendar__day"
|
|
1554
|
+
tabindex="-1"
|
|
1555
|
+
type="button"
|
|
1340
1556
|
>
|
|
1341
1557
|
<div
|
|
1342
1558
|
class="css-10nr46e"
|
|
@@ -1346,10 +1562,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1346
1562
|
<div
|
|
1347
1563
|
class="css-1dq26wd"
|
|
1348
1564
|
/>
|
|
1349
|
-
</
|
|
1350
|
-
<
|
|
1351
|
-
|
|
1565
|
+
</button>
|
|
1566
|
+
<button
|
|
1567
|
+
aria-label="29 January 2025"
|
|
1568
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1352
1569
|
data-testid="ucl-uikit-calendar__day"
|
|
1570
|
+
tabindex="-1"
|
|
1571
|
+
type="button"
|
|
1353
1572
|
>
|
|
1354
1573
|
<div
|
|
1355
1574
|
class="css-10nr46e"
|
|
@@ -1359,10 +1578,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1359
1578
|
<div
|
|
1360
1579
|
class="css-1dq26wd"
|
|
1361
1580
|
/>
|
|
1362
|
-
</
|
|
1363
|
-
<
|
|
1364
|
-
|
|
1581
|
+
</button>
|
|
1582
|
+
<button
|
|
1583
|
+
aria-label="30 January 2025"
|
|
1584
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1365
1585
|
data-testid="ucl-uikit-calendar__day"
|
|
1586
|
+
tabindex="-1"
|
|
1587
|
+
type="button"
|
|
1366
1588
|
>
|
|
1367
1589
|
<div
|
|
1368
1590
|
class="css-10nr46e"
|
|
@@ -1372,10 +1594,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1372
1594
|
<div
|
|
1373
1595
|
class="css-1dq26wd"
|
|
1374
1596
|
/>
|
|
1375
|
-
</
|
|
1376
|
-
<
|
|
1377
|
-
|
|
1597
|
+
</button>
|
|
1598
|
+
<button
|
|
1599
|
+
aria-label="31 January 2025"
|
|
1600
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1378
1601
|
data-testid="ucl-uikit-calendar__day"
|
|
1602
|
+
tabindex="-1"
|
|
1603
|
+
type="button"
|
|
1379
1604
|
>
|
|
1380
1605
|
<div
|
|
1381
1606
|
class="css-10nr46e"
|
|
@@ -1385,10 +1610,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1385
1610
|
<div
|
|
1386
1611
|
class="css-1dq26wd"
|
|
1387
1612
|
/>
|
|
1388
|
-
</
|
|
1389
|
-
<
|
|
1390
|
-
|
|
1613
|
+
</button>
|
|
1614
|
+
<button
|
|
1615
|
+
aria-label="1 February 2025"
|
|
1616
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1391
1617
|
data-testid="ucl-uikit-calendar__day"
|
|
1618
|
+
tabindex="-1"
|
|
1619
|
+
type="button"
|
|
1392
1620
|
>
|
|
1393
1621
|
<div
|
|
1394
1622
|
class="css-1stdm82"
|
|
@@ -1398,10 +1626,13 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1398
1626
|
<div
|
|
1399
1627
|
class="css-1dq26wd"
|
|
1400
1628
|
/>
|
|
1401
|
-
</
|
|
1402
|
-
<
|
|
1403
|
-
|
|
1629
|
+
</button>
|
|
1630
|
+
<button
|
|
1631
|
+
aria-label="2 February 2025"
|
|
1632
|
+
class="ucl-uikit-calendar__day css-q2icho"
|
|
1404
1633
|
data-testid="ucl-uikit-calendar__day"
|
|
1634
|
+
tabindex="-1"
|
|
1635
|
+
type="button"
|
|
1405
1636
|
>
|
|
1406
1637
|
<div
|
|
1407
1638
|
class="css-1stdm82"
|
|
@@ -1411,7 +1642,7 @@ exports[`Calendar > Snapshot: with date provided 1`] = `
|
|
|
1411
1642
|
<div
|
|
1412
1643
|
class="css-1dq26wd"
|
|
1413
1644
|
/>
|
|
1414
|
-
</
|
|
1645
|
+
</button>
|
|
1415
1646
|
</div>
|
|
1416
1647
|
</div>
|
|
1417
1648
|
</div>
|