@innovaccer/design-system 2.3.0 → 2.4.0-0
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/CHANGELOG.md +35 -0
- package/core/components/atoms/backdrop/Backdrop.tsx +11 -1
- package/core/components/atoms/button/Button.tsx +60 -44
- package/core/components/atoms/button/__stories__/IconButtonGroup.story.tsx +4 -4
- package/core/components/atoms/button/__stories__/IconButtonSecondary.story.tsx +1 -1
- package/core/components/atoms/button/__tests__/Button.test.tsx +36 -1
- package/core/components/atoms/dropdown/DropdownList.tsx +1 -0
- package/core/components/atoms/dropdown/Loading.tsx +9 -9
- package/core/components/atoms/dropdown/__stories__/Options.tsx +2 -0
- package/core/components/atoms/dropdown/__tests__/Dropdown.test.tsx +12 -1
- package/core/components/atoms/dropdown/__tests__/Loading.test.tsx +66 -0
- package/core/components/atoms/dropdown/__tests__/Option.test.tsx +204 -0
- package/core/components/atoms/dropdown/option/CheckboxOption.tsx +1 -0
- package/core/components/atoms/dropdown/option/IconOption.tsx +3 -1
- package/core/components/atoms/dropdown/option/IconWithMetaOption.tsx +3 -1
- package/core/components/atoms/dropdown/option/index.tsx +7 -1
- package/core/components/molecules/dialog/__tests__/__snapshots__/Dialog.test.tsx.snap +13 -0
- package/core/components/molecules/emptyState/__stories__/assets/pageNotLoaded.png +0 -0
- package/core/components/molecules/emptyState/__stories__/variants/noContentAvailable.story.tsx +26 -0
- package/core/components/molecules/emptyState/__stories__/variants/{smallSizeWithButton.story.tsx → noSearchResults.story.tsx} +2 -2
- package/core/components/molecules/emptyState/__stories__/variants/{largeSize.story.tsx → pageNotLoaded.story.tsx} +3 -3
- package/core/components/molecules/fileList/FileIcon.tsx +10 -2
- package/core/components/molecules/fileList/FileListItem.tsx +7 -3
- package/core/components/molecules/fileList/__stories__/__common__/fileListExample.tsx +1 -0
- package/core/components/molecules/fileList/__tests__/FileList.test.tsx +115 -0
- package/core/components/molecules/fileList/__tests__/__snapshots__/FileList.test.tsx.snap +232 -0
- package/core/components/molecules/inputMask/InputMask.tsx +2 -5
- package/core/components/molecules/inputMask/__tests__/InputMask.test.tsx +128 -0
- package/core/components/molecules/inputMask/__tests__/__snapshots__/InputMask.test.tsx.snap +39 -0
- package/core/components/molecules/modal/Modal.tsx +7 -5
- package/core/components/molecules/modal/__tests__/__snapshots__/Modal.test.tsx.snap +18 -0
- package/core/components/molecules/sidesheet/Sidesheet.tsx +5 -3
- package/core/components/molecules/sidesheet/__tests__/__snapshots__/Sidesheet.test.tsx.snap +2 -0
- package/core/components/organisms/calendar/Calendar.tsx +66 -22
- package/core/components/organisms/calendar/__stories__/variants/withEvents.story.tsx +45 -0
- package/core/components/organisms/calendar/__tests__/Calendar.test.tsx +10 -0
- package/core/components/organisms/calendar/__tests__/__snapshots__/Calendar.test.tsx.snap +1096 -1096
- package/core/components/organisms/calendar/config.ts +2 -2
- package/core/components/organisms/calendar/types.ts +1 -0
- package/core/components/organisms/datePicker/DatePicker.tsx +23 -9
- package/core/components/organisms/datePicker/__tests__/{DatePicker.tsx → DatePicker.test.tsx} +16 -1
- package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +2257 -0
- package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +2552 -2550
- package/core/components/organisms/inlineMessage/InlineMessage.tsx +75 -0
- package/core/components/organisms/inlineMessage/__stories__/Default.story.tsx +18 -0
- package/core/components/organisms/inlineMessage/__stories__/Error.story.tsx +19 -0
- package/core/components/organisms/inlineMessage/__stories__/Info.story.tsx +19 -0
- package/core/components/organisms/inlineMessage/__stories__/Success.story.tsx +19 -0
- package/core/components/organisms/inlineMessage/__stories__/Warning.story.tsx +18 -0
- package/core/components/organisms/inlineMessage/__stories__/variants/InlineMessageWithinTable.story.tsx +139 -0
- package/core/components/organisms/inlineMessage/__tests__/InlineMessage.test.tsx +91 -0
- package/core/components/organisms/inlineMessage/__tests__/__snapshots__/InlineMessage.test.tsx.snap +139 -0
- package/core/components/organisms/inlineMessage/index.tsx +1 -0
- package/core/components/organisms/timePicker/__tests__/__snapshots__/TimePicker.test.tsx.snap +8 -0
- package/core/index.tsx +2 -0
- package/core/index.type.tsx +1 -0
- package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +485 -466
- package/css/dist/index.css +72 -8
- package/css/dist/index.css.map +1 -1
- package/css/src/components/calendar.css +37 -5
- package/css/src/components/card.css +1 -1
- package/css/src/components/chipInput.css +2 -2
- package/css/src/components/editableChipInput.css +2 -1
- package/css/src/components/inlineMessage.css +29 -0
- package/dist/core/components/atoms/backdrop/Backdrop.d.ts +1 -0
- package/dist/core/components/atoms/button/Button.d.ts +1 -0
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +28 -27
- package/dist/core/components/organisms/calendar/Calendar.d.ts +6 -1
- package/dist/core/components/organisms/calendar/types.d.ts +3 -0
- package/dist/core/components/organisms/inlineMessage/InlineMessage.d.ts +15 -0
- package/dist/core/components/organisms/inlineMessage/index.d.ts +1 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/index.esm.js +189 -66
- package/dist/index.js +201 -80
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/dts.config.js +13 -0
- package/package.json +4 -2
- package/types/innovaccer-design-system/index.d.ts +39 -0
- package/types/innovaccer-design-system/innovaccer-design-system-tests.ts +0 -0
- package/types/innovaccer-design-system/tsconfig.json +23 -0
- package/types/innovaccer-design-system/tslint.json +1 -0
- package/core/components/molecules/emptyState/__stories__/variants/smallSizeWithoutButton.story.tsx +0 -21
- package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.tsx.snap +0 -2164
|
@@ -17,7 +17,7 @@ exports[`Calendar component
|
|
|
17
17
|
class="Calendar-header"
|
|
18
18
|
>
|
|
19
19
|
<button
|
|
20
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
20
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
21
21
|
data-test="DesignSystem-Button"
|
|
22
22
|
tabindex="0"
|
|
23
23
|
type="button"
|
|
@@ -57,7 +57,7 @@ exports[`Calendar component
|
|
|
57
57
|
</span>
|
|
58
58
|
</div>
|
|
59
59
|
<button
|
|
60
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
60
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
61
61
|
data-test="DesignSystem-Button"
|
|
62
62
|
tabindex="0"
|
|
63
63
|
type="button"
|
|
@@ -81,48 +81,48 @@ exports[`Calendar component
|
|
|
81
81
|
<div
|
|
82
82
|
class="Calendar-dayValues"
|
|
83
83
|
>
|
|
84
|
-
<
|
|
85
|
-
class="
|
|
86
|
-
data-test="DesignSystem-
|
|
87
|
-
>
|
|
88
|
-
|
|
89
|
-
</
|
|
90
|
-
<
|
|
91
|
-
class="
|
|
92
|
-
data-test="DesignSystem-
|
|
93
|
-
>
|
|
94
|
-
|
|
95
|
-
</
|
|
96
|
-
<
|
|
97
|
-
class="
|
|
98
|
-
data-test="DesignSystem-
|
|
99
|
-
>
|
|
100
|
-
|
|
101
|
-
</
|
|
102
|
-
<
|
|
103
|
-
class="
|
|
104
|
-
data-test="DesignSystem-
|
|
105
|
-
>
|
|
106
|
-
|
|
107
|
-
</
|
|
108
|
-
<
|
|
109
|
-
class="
|
|
110
|
-
data-test="DesignSystem-
|
|
111
|
-
>
|
|
112
|
-
|
|
113
|
-
</
|
|
114
|
-
<
|
|
115
|
-
class="
|
|
116
|
-
data-test="DesignSystem-
|
|
117
|
-
>
|
|
118
|
-
|
|
119
|
-
</
|
|
120
|
-
<
|
|
121
|
-
class="
|
|
122
|
-
data-test="DesignSystem-
|
|
123
|
-
>
|
|
124
|
-
|
|
125
|
-
</
|
|
84
|
+
<span
|
|
85
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
86
|
+
data-test="DesignSystem-Text"
|
|
87
|
+
>
|
|
88
|
+
Su
|
|
89
|
+
</span>
|
|
90
|
+
<span
|
|
91
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
92
|
+
data-test="DesignSystem-Text"
|
|
93
|
+
>
|
|
94
|
+
Mo
|
|
95
|
+
</span>
|
|
96
|
+
<span
|
|
97
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
98
|
+
data-test="DesignSystem-Text"
|
|
99
|
+
>
|
|
100
|
+
Tu
|
|
101
|
+
</span>
|
|
102
|
+
<span
|
|
103
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
104
|
+
data-test="DesignSystem-Text"
|
|
105
|
+
>
|
|
106
|
+
We
|
|
107
|
+
</span>
|
|
108
|
+
<span
|
|
109
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
110
|
+
data-test="DesignSystem-Text"
|
|
111
|
+
>
|
|
112
|
+
Th
|
|
113
|
+
</span>
|
|
114
|
+
<span
|
|
115
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
116
|
+
data-test="DesignSystem-Text"
|
|
117
|
+
>
|
|
118
|
+
Fr
|
|
119
|
+
</span>
|
|
120
|
+
<span
|
|
121
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
122
|
+
data-test="DesignSystem-Text"
|
|
123
|
+
>
|
|
124
|
+
Sa
|
|
125
|
+
</span>
|
|
126
126
|
</div>
|
|
127
127
|
<div
|
|
128
128
|
class="Calendar-dateValues"
|
|
@@ -529,7 +529,7 @@ exports[`Calendar component
|
|
|
529
529
|
class="Calendar-header"
|
|
530
530
|
>
|
|
531
531
|
<button
|
|
532
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
532
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
533
533
|
data-test="DesignSystem-Button"
|
|
534
534
|
tabindex="0"
|
|
535
535
|
type="button"
|
|
@@ -569,7 +569,7 @@ exports[`Calendar component
|
|
|
569
569
|
</span>
|
|
570
570
|
</div>
|
|
571
571
|
<button
|
|
572
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
572
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
573
573
|
data-test="DesignSystem-Button"
|
|
574
574
|
disabled=""
|
|
575
575
|
tabindex="0"
|
|
@@ -594,48 +594,48 @@ exports[`Calendar component
|
|
|
594
594
|
<div
|
|
595
595
|
class="Calendar-dayValues"
|
|
596
596
|
>
|
|
597
|
-
<
|
|
598
|
-
class="
|
|
599
|
-
data-test="DesignSystem-
|
|
600
|
-
>
|
|
601
|
-
|
|
602
|
-
</
|
|
603
|
-
<
|
|
604
|
-
class="
|
|
605
|
-
data-test="DesignSystem-
|
|
606
|
-
>
|
|
607
|
-
|
|
608
|
-
</
|
|
609
|
-
<
|
|
610
|
-
class="
|
|
611
|
-
data-test="DesignSystem-
|
|
612
|
-
>
|
|
613
|
-
|
|
614
|
-
</
|
|
615
|
-
<
|
|
616
|
-
class="
|
|
617
|
-
data-test="DesignSystem-
|
|
618
|
-
>
|
|
619
|
-
|
|
620
|
-
</
|
|
621
|
-
<
|
|
622
|
-
class="
|
|
623
|
-
data-test="DesignSystem-
|
|
624
|
-
>
|
|
625
|
-
|
|
626
|
-
</
|
|
627
|
-
<
|
|
628
|
-
class="
|
|
629
|
-
data-test="DesignSystem-
|
|
630
|
-
>
|
|
631
|
-
|
|
632
|
-
</
|
|
633
|
-
<
|
|
634
|
-
class="
|
|
635
|
-
data-test="DesignSystem-
|
|
636
|
-
>
|
|
637
|
-
|
|
638
|
-
</
|
|
597
|
+
<span
|
|
598
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
599
|
+
data-test="DesignSystem-Text"
|
|
600
|
+
>
|
|
601
|
+
Su
|
|
602
|
+
</span>
|
|
603
|
+
<span
|
|
604
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
605
|
+
data-test="DesignSystem-Text"
|
|
606
|
+
>
|
|
607
|
+
Mo
|
|
608
|
+
</span>
|
|
609
|
+
<span
|
|
610
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
611
|
+
data-test="DesignSystem-Text"
|
|
612
|
+
>
|
|
613
|
+
Tu
|
|
614
|
+
</span>
|
|
615
|
+
<span
|
|
616
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
617
|
+
data-test="DesignSystem-Text"
|
|
618
|
+
>
|
|
619
|
+
We
|
|
620
|
+
</span>
|
|
621
|
+
<span
|
|
622
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
623
|
+
data-test="DesignSystem-Text"
|
|
624
|
+
>
|
|
625
|
+
Th
|
|
626
|
+
</span>
|
|
627
|
+
<span
|
|
628
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
629
|
+
data-test="DesignSystem-Text"
|
|
630
|
+
>
|
|
631
|
+
Fr
|
|
632
|
+
</span>
|
|
633
|
+
<span
|
|
634
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
635
|
+
data-test="DesignSystem-Text"
|
|
636
|
+
>
|
|
637
|
+
Sa
|
|
638
|
+
</span>
|
|
639
639
|
</div>
|
|
640
640
|
<div
|
|
641
641
|
class="Calendar-dateValues"
|
|
@@ -1042,7 +1042,7 @@ exports[`Calendar component
|
|
|
1042
1042
|
class="Calendar-header"
|
|
1043
1043
|
>
|
|
1044
1044
|
<button
|
|
1045
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
1045
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
1046
1046
|
data-test="DesignSystem-Button"
|
|
1047
1047
|
disabled=""
|
|
1048
1048
|
tabindex="0"
|
|
@@ -1083,7 +1083,7 @@ exports[`Calendar component
|
|
|
1083
1083
|
</span>
|
|
1084
1084
|
</div>
|
|
1085
1085
|
<button
|
|
1086
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
1086
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
1087
1087
|
data-test="DesignSystem-Button"
|
|
1088
1088
|
tabindex="0"
|
|
1089
1089
|
type="button"
|
|
@@ -1107,48 +1107,48 @@ exports[`Calendar component
|
|
|
1107
1107
|
<div
|
|
1108
1108
|
class="Calendar-dayValues"
|
|
1109
1109
|
>
|
|
1110
|
-
<
|
|
1111
|
-
class="
|
|
1112
|
-
data-test="DesignSystem-
|
|
1113
|
-
>
|
|
1114
|
-
|
|
1115
|
-
</
|
|
1116
|
-
<
|
|
1117
|
-
class="
|
|
1118
|
-
data-test="DesignSystem-
|
|
1119
|
-
>
|
|
1120
|
-
|
|
1121
|
-
</
|
|
1122
|
-
<
|
|
1123
|
-
class="
|
|
1124
|
-
data-test="DesignSystem-
|
|
1125
|
-
>
|
|
1126
|
-
|
|
1127
|
-
</
|
|
1128
|
-
<
|
|
1129
|
-
class="
|
|
1130
|
-
data-test="DesignSystem-
|
|
1131
|
-
>
|
|
1132
|
-
|
|
1133
|
-
</
|
|
1134
|
-
<
|
|
1135
|
-
class="
|
|
1136
|
-
data-test="DesignSystem-
|
|
1137
|
-
>
|
|
1138
|
-
|
|
1139
|
-
</
|
|
1140
|
-
<
|
|
1141
|
-
class="
|
|
1142
|
-
data-test="DesignSystem-
|
|
1143
|
-
>
|
|
1144
|
-
|
|
1145
|
-
</
|
|
1146
|
-
<
|
|
1147
|
-
class="
|
|
1148
|
-
data-test="DesignSystem-
|
|
1149
|
-
>
|
|
1150
|
-
|
|
1151
|
-
</
|
|
1110
|
+
<span
|
|
1111
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1112
|
+
data-test="DesignSystem-Text"
|
|
1113
|
+
>
|
|
1114
|
+
Su
|
|
1115
|
+
</span>
|
|
1116
|
+
<span
|
|
1117
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1118
|
+
data-test="DesignSystem-Text"
|
|
1119
|
+
>
|
|
1120
|
+
Mo
|
|
1121
|
+
</span>
|
|
1122
|
+
<span
|
|
1123
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1124
|
+
data-test="DesignSystem-Text"
|
|
1125
|
+
>
|
|
1126
|
+
Tu
|
|
1127
|
+
</span>
|
|
1128
|
+
<span
|
|
1129
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1130
|
+
data-test="DesignSystem-Text"
|
|
1131
|
+
>
|
|
1132
|
+
We
|
|
1133
|
+
</span>
|
|
1134
|
+
<span
|
|
1135
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1136
|
+
data-test="DesignSystem-Text"
|
|
1137
|
+
>
|
|
1138
|
+
Th
|
|
1139
|
+
</span>
|
|
1140
|
+
<span
|
|
1141
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1142
|
+
data-test="DesignSystem-Text"
|
|
1143
|
+
>
|
|
1144
|
+
Fr
|
|
1145
|
+
</span>
|
|
1146
|
+
<span
|
|
1147
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1148
|
+
data-test="DesignSystem-Text"
|
|
1149
|
+
>
|
|
1150
|
+
Sa
|
|
1151
|
+
</span>
|
|
1152
1152
|
</div>
|
|
1153
1153
|
<div
|
|
1154
1154
|
class="Calendar-dateValues"
|
|
@@ -1555,7 +1555,7 @@ exports[`Calendar component
|
|
|
1555
1555
|
class="Calendar-header"
|
|
1556
1556
|
>
|
|
1557
1557
|
<button
|
|
1558
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
1558
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
1559
1559
|
data-test="DesignSystem-Button"
|
|
1560
1560
|
disabled=""
|
|
1561
1561
|
tabindex="0"
|
|
@@ -1596,7 +1596,7 @@ exports[`Calendar component
|
|
|
1596
1596
|
</span>
|
|
1597
1597
|
</div>
|
|
1598
1598
|
<button
|
|
1599
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
1599
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
1600
1600
|
data-test="DesignSystem-Button"
|
|
1601
1601
|
disabled=""
|
|
1602
1602
|
tabindex="0"
|
|
@@ -1621,48 +1621,48 @@ exports[`Calendar component
|
|
|
1621
1621
|
<div
|
|
1622
1622
|
class="Calendar-dayValues"
|
|
1623
1623
|
>
|
|
1624
|
-
<
|
|
1625
|
-
class="
|
|
1626
|
-
data-test="DesignSystem-
|
|
1627
|
-
>
|
|
1628
|
-
|
|
1629
|
-
</
|
|
1630
|
-
<
|
|
1631
|
-
class="
|
|
1632
|
-
data-test="DesignSystem-
|
|
1633
|
-
>
|
|
1634
|
-
|
|
1635
|
-
</
|
|
1636
|
-
<
|
|
1637
|
-
class="
|
|
1638
|
-
data-test="DesignSystem-
|
|
1639
|
-
>
|
|
1640
|
-
|
|
1641
|
-
</
|
|
1642
|
-
<
|
|
1643
|
-
class="
|
|
1644
|
-
data-test="DesignSystem-
|
|
1645
|
-
>
|
|
1646
|
-
|
|
1647
|
-
</
|
|
1648
|
-
<
|
|
1649
|
-
class="
|
|
1650
|
-
data-test="DesignSystem-
|
|
1651
|
-
>
|
|
1652
|
-
|
|
1653
|
-
</
|
|
1654
|
-
<
|
|
1655
|
-
class="
|
|
1656
|
-
data-test="DesignSystem-
|
|
1657
|
-
>
|
|
1658
|
-
|
|
1659
|
-
</
|
|
1660
|
-
<
|
|
1661
|
-
class="
|
|
1662
|
-
data-test="DesignSystem-
|
|
1663
|
-
>
|
|
1664
|
-
|
|
1665
|
-
</
|
|
1624
|
+
<span
|
|
1625
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1626
|
+
data-test="DesignSystem-Text"
|
|
1627
|
+
>
|
|
1628
|
+
Su
|
|
1629
|
+
</span>
|
|
1630
|
+
<span
|
|
1631
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1632
|
+
data-test="DesignSystem-Text"
|
|
1633
|
+
>
|
|
1634
|
+
Mo
|
|
1635
|
+
</span>
|
|
1636
|
+
<span
|
|
1637
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1638
|
+
data-test="DesignSystem-Text"
|
|
1639
|
+
>
|
|
1640
|
+
Tu
|
|
1641
|
+
</span>
|
|
1642
|
+
<span
|
|
1643
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1644
|
+
data-test="DesignSystem-Text"
|
|
1645
|
+
>
|
|
1646
|
+
We
|
|
1647
|
+
</span>
|
|
1648
|
+
<span
|
|
1649
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1650
|
+
data-test="DesignSystem-Text"
|
|
1651
|
+
>
|
|
1652
|
+
Th
|
|
1653
|
+
</span>
|
|
1654
|
+
<span
|
|
1655
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1656
|
+
data-test="DesignSystem-Text"
|
|
1657
|
+
>
|
|
1658
|
+
Fr
|
|
1659
|
+
</span>
|
|
1660
|
+
<span
|
|
1661
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
1662
|
+
data-test="DesignSystem-Text"
|
|
1663
|
+
>
|
|
1664
|
+
Sa
|
|
1665
|
+
</span>
|
|
1666
1666
|
</div>
|
|
1667
1667
|
<div
|
|
1668
1668
|
class="Calendar-dateValues"
|
|
@@ -2069,7 +2069,7 @@ exports[`Calendar component
|
|
|
2069
2069
|
class="Calendar-header"
|
|
2070
2070
|
>
|
|
2071
2071
|
<button
|
|
2072
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
2072
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
2073
2073
|
data-test="DesignSystem-Button"
|
|
2074
2074
|
tabindex="0"
|
|
2075
2075
|
type="button"
|
|
@@ -2109,7 +2109,7 @@ exports[`Calendar component
|
|
|
2109
2109
|
</span>
|
|
2110
2110
|
</div>
|
|
2111
2111
|
<button
|
|
2112
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
2112
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
2113
2113
|
data-test="DesignSystem-Button"
|
|
2114
2114
|
tabindex="0"
|
|
2115
2115
|
type="button"
|
|
@@ -2133,48 +2133,48 @@ exports[`Calendar component
|
|
|
2133
2133
|
<div
|
|
2134
2134
|
class="Calendar-dayValues"
|
|
2135
2135
|
>
|
|
2136
|
-
<
|
|
2137
|
-
class="
|
|
2138
|
-
data-test="DesignSystem-
|
|
2139
|
-
>
|
|
2140
|
-
|
|
2141
|
-
</
|
|
2142
|
-
<
|
|
2143
|
-
class="
|
|
2144
|
-
data-test="DesignSystem-
|
|
2145
|
-
>
|
|
2146
|
-
|
|
2147
|
-
</
|
|
2148
|
-
<
|
|
2149
|
-
class="
|
|
2150
|
-
data-test="DesignSystem-
|
|
2151
|
-
>
|
|
2152
|
-
|
|
2153
|
-
</
|
|
2154
|
-
<
|
|
2155
|
-
class="
|
|
2156
|
-
data-test="DesignSystem-
|
|
2157
|
-
>
|
|
2158
|
-
|
|
2159
|
-
</
|
|
2160
|
-
<
|
|
2161
|
-
class="
|
|
2162
|
-
data-test="DesignSystem-
|
|
2163
|
-
>
|
|
2164
|
-
|
|
2165
|
-
</
|
|
2166
|
-
<
|
|
2167
|
-
class="
|
|
2168
|
-
data-test="DesignSystem-
|
|
2169
|
-
>
|
|
2170
|
-
|
|
2171
|
-
</
|
|
2172
|
-
<
|
|
2173
|
-
class="
|
|
2174
|
-
data-test="DesignSystem-
|
|
2175
|
-
>
|
|
2176
|
-
|
|
2177
|
-
</
|
|
2136
|
+
<span
|
|
2137
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2138
|
+
data-test="DesignSystem-Text"
|
|
2139
|
+
>
|
|
2140
|
+
Fr
|
|
2141
|
+
</span>
|
|
2142
|
+
<span
|
|
2143
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2144
|
+
data-test="DesignSystem-Text"
|
|
2145
|
+
>
|
|
2146
|
+
Sa
|
|
2147
|
+
</span>
|
|
2148
|
+
<span
|
|
2149
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2150
|
+
data-test="DesignSystem-Text"
|
|
2151
|
+
>
|
|
2152
|
+
Su
|
|
2153
|
+
</span>
|
|
2154
|
+
<span
|
|
2155
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2156
|
+
data-test="DesignSystem-Text"
|
|
2157
|
+
>
|
|
2158
|
+
Mo
|
|
2159
|
+
</span>
|
|
2160
|
+
<span
|
|
2161
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2162
|
+
data-test="DesignSystem-Text"
|
|
2163
|
+
>
|
|
2164
|
+
Tu
|
|
2165
|
+
</span>
|
|
2166
|
+
<span
|
|
2167
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2168
|
+
data-test="DesignSystem-Text"
|
|
2169
|
+
>
|
|
2170
|
+
We
|
|
2171
|
+
</span>
|
|
2172
|
+
<span
|
|
2173
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2174
|
+
data-test="DesignSystem-Text"
|
|
2175
|
+
>
|
|
2176
|
+
Th
|
|
2177
|
+
</span>
|
|
2178
2178
|
</div>
|
|
2179
2179
|
<div
|
|
2180
2180
|
class="Calendar-dateValues"
|
|
@@ -2613,7 +2613,7 @@ exports[`Calendar component
|
|
|
2613
2613
|
class="Calendar-header"
|
|
2614
2614
|
>
|
|
2615
2615
|
<button
|
|
2616
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
2616
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
2617
2617
|
data-test="DesignSystem-Button"
|
|
2618
2618
|
tabindex="0"
|
|
2619
2619
|
type="button"
|
|
@@ -2653,7 +2653,7 @@ exports[`Calendar component
|
|
|
2653
2653
|
</span>
|
|
2654
2654
|
</div>
|
|
2655
2655
|
<button
|
|
2656
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
2656
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
2657
2657
|
data-test="DesignSystem-Button"
|
|
2658
2658
|
tabindex="0"
|
|
2659
2659
|
type="button"
|
|
@@ -2677,48 +2677,48 @@ exports[`Calendar component
|
|
|
2677
2677
|
<div
|
|
2678
2678
|
class="Calendar-dayValues"
|
|
2679
2679
|
>
|
|
2680
|
-
<
|
|
2681
|
-
class="
|
|
2682
|
-
data-test="DesignSystem-
|
|
2683
|
-
>
|
|
2684
|
-
|
|
2685
|
-
</
|
|
2686
|
-
<
|
|
2687
|
-
class="
|
|
2688
|
-
data-test="DesignSystem-
|
|
2689
|
-
>
|
|
2690
|
-
|
|
2691
|
-
</
|
|
2692
|
-
<
|
|
2693
|
-
class="
|
|
2694
|
-
data-test="DesignSystem-
|
|
2695
|
-
>
|
|
2696
|
-
|
|
2697
|
-
</
|
|
2698
|
-
<
|
|
2699
|
-
class="
|
|
2700
|
-
data-test="DesignSystem-
|
|
2701
|
-
>
|
|
2702
|
-
|
|
2703
|
-
</
|
|
2704
|
-
<
|
|
2705
|
-
class="
|
|
2706
|
-
data-test="DesignSystem-
|
|
2707
|
-
>
|
|
2708
|
-
|
|
2709
|
-
</
|
|
2710
|
-
<
|
|
2711
|
-
class="
|
|
2712
|
-
data-test="DesignSystem-
|
|
2713
|
-
>
|
|
2714
|
-
|
|
2715
|
-
</
|
|
2716
|
-
<
|
|
2717
|
-
class="
|
|
2718
|
-
data-test="DesignSystem-
|
|
2719
|
-
>
|
|
2720
|
-
|
|
2721
|
-
</
|
|
2680
|
+
<span
|
|
2681
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2682
|
+
data-test="DesignSystem-Text"
|
|
2683
|
+
>
|
|
2684
|
+
Mo
|
|
2685
|
+
</span>
|
|
2686
|
+
<span
|
|
2687
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2688
|
+
data-test="DesignSystem-Text"
|
|
2689
|
+
>
|
|
2690
|
+
Tu
|
|
2691
|
+
</span>
|
|
2692
|
+
<span
|
|
2693
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2694
|
+
data-test="DesignSystem-Text"
|
|
2695
|
+
>
|
|
2696
|
+
We
|
|
2697
|
+
</span>
|
|
2698
|
+
<span
|
|
2699
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2700
|
+
data-test="DesignSystem-Text"
|
|
2701
|
+
>
|
|
2702
|
+
Th
|
|
2703
|
+
</span>
|
|
2704
|
+
<span
|
|
2705
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2706
|
+
data-test="DesignSystem-Text"
|
|
2707
|
+
>
|
|
2708
|
+
Fr
|
|
2709
|
+
</span>
|
|
2710
|
+
<span
|
|
2711
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2712
|
+
data-test="DesignSystem-Text"
|
|
2713
|
+
>
|
|
2714
|
+
Sa
|
|
2715
|
+
</span>
|
|
2716
|
+
<span
|
|
2717
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
2718
|
+
data-test="DesignSystem-Text"
|
|
2719
|
+
>
|
|
2720
|
+
Su
|
|
2721
|
+
</span>
|
|
2722
2722
|
</div>
|
|
2723
2723
|
<div
|
|
2724
2724
|
class="Calendar-dateValues"
|
|
@@ -3125,7 +3125,7 @@ exports[`Calendar component
|
|
|
3125
3125
|
class="Calendar-header"
|
|
3126
3126
|
>
|
|
3127
3127
|
<button
|
|
3128
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
3128
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
3129
3129
|
data-test="DesignSystem-Button"
|
|
3130
3130
|
tabindex="0"
|
|
3131
3131
|
type="button"
|
|
@@ -3165,7 +3165,7 @@ exports[`Calendar component
|
|
|
3165
3165
|
</span>
|
|
3166
3166
|
</div>
|
|
3167
3167
|
<button
|
|
3168
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
3168
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
3169
3169
|
data-test="DesignSystem-Button"
|
|
3170
3170
|
tabindex="0"
|
|
3171
3171
|
type="button"
|
|
@@ -3189,48 +3189,48 @@ exports[`Calendar component
|
|
|
3189
3189
|
<div
|
|
3190
3190
|
class="Calendar-dayValues"
|
|
3191
3191
|
>
|
|
3192
|
-
<
|
|
3193
|
-
class="
|
|
3194
|
-
data-test="DesignSystem-
|
|
3195
|
-
>
|
|
3196
|
-
|
|
3197
|
-
</
|
|
3198
|
-
<
|
|
3199
|
-
class="
|
|
3200
|
-
data-test="DesignSystem-
|
|
3201
|
-
>
|
|
3202
|
-
|
|
3203
|
-
</
|
|
3204
|
-
<
|
|
3205
|
-
class="
|
|
3206
|
-
data-test="DesignSystem-
|
|
3207
|
-
>
|
|
3208
|
-
|
|
3209
|
-
</
|
|
3210
|
-
<
|
|
3211
|
-
class="
|
|
3212
|
-
data-test="DesignSystem-
|
|
3213
|
-
>
|
|
3214
|
-
|
|
3215
|
-
</
|
|
3216
|
-
<
|
|
3217
|
-
class="
|
|
3218
|
-
data-test="DesignSystem-
|
|
3219
|
-
>
|
|
3220
|
-
|
|
3221
|
-
</
|
|
3222
|
-
<
|
|
3223
|
-
class="
|
|
3224
|
-
data-test="DesignSystem-
|
|
3225
|
-
>
|
|
3226
|
-
|
|
3227
|
-
</
|
|
3228
|
-
<
|
|
3229
|
-
class="
|
|
3230
|
-
data-test="DesignSystem-
|
|
3231
|
-
>
|
|
3232
|
-
|
|
3233
|
-
</
|
|
3192
|
+
<span
|
|
3193
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3194
|
+
data-test="DesignSystem-Text"
|
|
3195
|
+
>
|
|
3196
|
+
Sa
|
|
3197
|
+
</span>
|
|
3198
|
+
<span
|
|
3199
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3200
|
+
data-test="DesignSystem-Text"
|
|
3201
|
+
>
|
|
3202
|
+
Su
|
|
3203
|
+
</span>
|
|
3204
|
+
<span
|
|
3205
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3206
|
+
data-test="DesignSystem-Text"
|
|
3207
|
+
>
|
|
3208
|
+
Mo
|
|
3209
|
+
</span>
|
|
3210
|
+
<span
|
|
3211
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3212
|
+
data-test="DesignSystem-Text"
|
|
3213
|
+
>
|
|
3214
|
+
Tu
|
|
3215
|
+
</span>
|
|
3216
|
+
<span
|
|
3217
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3218
|
+
data-test="DesignSystem-Text"
|
|
3219
|
+
>
|
|
3220
|
+
We
|
|
3221
|
+
</span>
|
|
3222
|
+
<span
|
|
3223
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3224
|
+
data-test="DesignSystem-Text"
|
|
3225
|
+
>
|
|
3226
|
+
Th
|
|
3227
|
+
</span>
|
|
3228
|
+
<span
|
|
3229
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3230
|
+
data-test="DesignSystem-Text"
|
|
3231
|
+
>
|
|
3232
|
+
Fr
|
|
3233
|
+
</span>
|
|
3234
3234
|
</div>
|
|
3235
3235
|
<div
|
|
3236
3236
|
class="Calendar-dateValues"
|
|
@@ -3669,7 +3669,7 @@ exports[`Calendar component
|
|
|
3669
3669
|
class="Calendar-header"
|
|
3670
3670
|
>
|
|
3671
3671
|
<button
|
|
3672
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
3672
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
3673
3673
|
data-test="DesignSystem-Button"
|
|
3674
3674
|
tabindex="0"
|
|
3675
3675
|
type="button"
|
|
@@ -3709,7 +3709,7 @@ exports[`Calendar component
|
|
|
3709
3709
|
</span>
|
|
3710
3710
|
</div>
|
|
3711
3711
|
<button
|
|
3712
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
3712
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
3713
3713
|
data-test="DesignSystem-Button"
|
|
3714
3714
|
tabindex="0"
|
|
3715
3715
|
type="button"
|
|
@@ -3733,48 +3733,48 @@ exports[`Calendar component
|
|
|
3733
3733
|
<div
|
|
3734
3734
|
class="Calendar-dayValues"
|
|
3735
3735
|
>
|
|
3736
|
-
<
|
|
3737
|
-
class="
|
|
3738
|
-
data-test="DesignSystem-
|
|
3739
|
-
>
|
|
3740
|
-
|
|
3741
|
-
</
|
|
3742
|
-
<
|
|
3743
|
-
class="
|
|
3744
|
-
data-test="DesignSystem-
|
|
3745
|
-
>
|
|
3746
|
-
|
|
3747
|
-
</
|
|
3748
|
-
<
|
|
3749
|
-
class="
|
|
3750
|
-
data-test="DesignSystem-
|
|
3751
|
-
>
|
|
3752
|
-
|
|
3753
|
-
</
|
|
3754
|
-
<
|
|
3755
|
-
class="
|
|
3756
|
-
data-test="DesignSystem-
|
|
3757
|
-
>
|
|
3758
|
-
|
|
3759
|
-
</
|
|
3760
|
-
<
|
|
3761
|
-
class="
|
|
3762
|
-
data-test="DesignSystem-
|
|
3763
|
-
>
|
|
3764
|
-
|
|
3765
|
-
</
|
|
3766
|
-
<
|
|
3767
|
-
class="
|
|
3768
|
-
data-test="DesignSystem-
|
|
3769
|
-
>
|
|
3770
|
-
|
|
3771
|
-
</
|
|
3772
|
-
<
|
|
3773
|
-
class="
|
|
3774
|
-
data-test="DesignSystem-
|
|
3775
|
-
>
|
|
3776
|
-
|
|
3777
|
-
</
|
|
3736
|
+
<span
|
|
3737
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3738
|
+
data-test="DesignSystem-Text"
|
|
3739
|
+
>
|
|
3740
|
+
Su
|
|
3741
|
+
</span>
|
|
3742
|
+
<span
|
|
3743
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3744
|
+
data-test="DesignSystem-Text"
|
|
3745
|
+
>
|
|
3746
|
+
Mo
|
|
3747
|
+
</span>
|
|
3748
|
+
<span
|
|
3749
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3750
|
+
data-test="DesignSystem-Text"
|
|
3751
|
+
>
|
|
3752
|
+
Tu
|
|
3753
|
+
</span>
|
|
3754
|
+
<span
|
|
3755
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3756
|
+
data-test="DesignSystem-Text"
|
|
3757
|
+
>
|
|
3758
|
+
We
|
|
3759
|
+
</span>
|
|
3760
|
+
<span
|
|
3761
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3762
|
+
data-test="DesignSystem-Text"
|
|
3763
|
+
>
|
|
3764
|
+
Th
|
|
3765
|
+
</span>
|
|
3766
|
+
<span
|
|
3767
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3768
|
+
data-test="DesignSystem-Text"
|
|
3769
|
+
>
|
|
3770
|
+
Fr
|
|
3771
|
+
</span>
|
|
3772
|
+
<span
|
|
3773
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
3774
|
+
data-test="DesignSystem-Text"
|
|
3775
|
+
>
|
|
3776
|
+
Sa
|
|
3777
|
+
</span>
|
|
3778
3778
|
</div>
|
|
3779
3779
|
<div
|
|
3780
3780
|
class="Calendar-dateValues"
|
|
@@ -4181,7 +4181,7 @@ exports[`Calendar component
|
|
|
4181
4181
|
class="Calendar-header"
|
|
4182
4182
|
>
|
|
4183
4183
|
<button
|
|
4184
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
4184
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
4185
4185
|
data-test="DesignSystem-Button"
|
|
4186
4186
|
tabindex="0"
|
|
4187
4187
|
type="button"
|
|
@@ -4221,7 +4221,7 @@ exports[`Calendar component
|
|
|
4221
4221
|
</span>
|
|
4222
4222
|
</div>
|
|
4223
4223
|
<button
|
|
4224
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
4224
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
4225
4225
|
data-test="DesignSystem-Button"
|
|
4226
4226
|
tabindex="0"
|
|
4227
4227
|
type="button"
|
|
@@ -4245,48 +4245,48 @@ exports[`Calendar component
|
|
|
4245
4245
|
<div
|
|
4246
4246
|
class="Calendar-dayValues"
|
|
4247
4247
|
>
|
|
4248
|
-
<
|
|
4249
|
-
class="
|
|
4250
|
-
data-test="DesignSystem-
|
|
4251
|
-
>
|
|
4252
|
-
|
|
4253
|
-
</
|
|
4254
|
-
<
|
|
4255
|
-
class="
|
|
4256
|
-
data-test="DesignSystem-
|
|
4257
|
-
>
|
|
4258
|
-
|
|
4259
|
-
</
|
|
4260
|
-
<
|
|
4261
|
-
class="
|
|
4262
|
-
data-test="DesignSystem-
|
|
4263
|
-
>
|
|
4264
|
-
|
|
4265
|
-
</
|
|
4266
|
-
<
|
|
4267
|
-
class="
|
|
4268
|
-
data-test="DesignSystem-
|
|
4269
|
-
>
|
|
4270
|
-
|
|
4271
|
-
</
|
|
4272
|
-
<
|
|
4273
|
-
class="
|
|
4274
|
-
data-test="DesignSystem-
|
|
4275
|
-
>
|
|
4276
|
-
|
|
4277
|
-
</
|
|
4278
|
-
<
|
|
4279
|
-
class="
|
|
4280
|
-
data-test="DesignSystem-
|
|
4281
|
-
>
|
|
4282
|
-
|
|
4283
|
-
</
|
|
4284
|
-
<
|
|
4285
|
-
class="
|
|
4286
|
-
data-test="DesignSystem-
|
|
4287
|
-
>
|
|
4288
|
-
|
|
4289
|
-
</
|
|
4248
|
+
<span
|
|
4249
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4250
|
+
data-test="DesignSystem-Text"
|
|
4251
|
+
>
|
|
4252
|
+
Th
|
|
4253
|
+
</span>
|
|
4254
|
+
<span
|
|
4255
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4256
|
+
data-test="DesignSystem-Text"
|
|
4257
|
+
>
|
|
4258
|
+
Fr
|
|
4259
|
+
</span>
|
|
4260
|
+
<span
|
|
4261
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4262
|
+
data-test="DesignSystem-Text"
|
|
4263
|
+
>
|
|
4264
|
+
Sa
|
|
4265
|
+
</span>
|
|
4266
|
+
<span
|
|
4267
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4268
|
+
data-test="DesignSystem-Text"
|
|
4269
|
+
>
|
|
4270
|
+
Su
|
|
4271
|
+
</span>
|
|
4272
|
+
<span
|
|
4273
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4274
|
+
data-test="DesignSystem-Text"
|
|
4275
|
+
>
|
|
4276
|
+
Mo
|
|
4277
|
+
</span>
|
|
4278
|
+
<span
|
|
4279
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4280
|
+
data-test="DesignSystem-Text"
|
|
4281
|
+
>
|
|
4282
|
+
Tu
|
|
4283
|
+
</span>
|
|
4284
|
+
<span
|
|
4285
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4286
|
+
data-test="DesignSystem-Text"
|
|
4287
|
+
>
|
|
4288
|
+
We
|
|
4289
|
+
</span>
|
|
4290
4290
|
</div>
|
|
4291
4291
|
<div
|
|
4292
4292
|
class="Calendar-dateValues"
|
|
@@ -4693,7 +4693,7 @@ exports[`Calendar component
|
|
|
4693
4693
|
class="Calendar-header"
|
|
4694
4694
|
>
|
|
4695
4695
|
<button
|
|
4696
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
4696
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
4697
4697
|
data-test="DesignSystem-Button"
|
|
4698
4698
|
tabindex="0"
|
|
4699
4699
|
type="button"
|
|
@@ -4733,7 +4733,7 @@ exports[`Calendar component
|
|
|
4733
4733
|
</span>
|
|
4734
4734
|
</div>
|
|
4735
4735
|
<button
|
|
4736
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
4736
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
4737
4737
|
data-test="DesignSystem-Button"
|
|
4738
4738
|
tabindex="0"
|
|
4739
4739
|
type="button"
|
|
@@ -4757,48 +4757,48 @@ exports[`Calendar component
|
|
|
4757
4757
|
<div
|
|
4758
4758
|
class="Calendar-dayValues"
|
|
4759
4759
|
>
|
|
4760
|
-
<
|
|
4761
|
-
class="
|
|
4762
|
-
data-test="DesignSystem-
|
|
4763
|
-
>
|
|
4764
|
-
|
|
4765
|
-
</
|
|
4766
|
-
<
|
|
4767
|
-
class="
|
|
4768
|
-
data-test="DesignSystem-
|
|
4769
|
-
>
|
|
4770
|
-
|
|
4771
|
-
</
|
|
4772
|
-
<
|
|
4773
|
-
class="
|
|
4774
|
-
data-test="DesignSystem-
|
|
4775
|
-
>
|
|
4776
|
-
|
|
4777
|
-
</
|
|
4778
|
-
<
|
|
4779
|
-
class="
|
|
4780
|
-
data-test="DesignSystem-
|
|
4781
|
-
>
|
|
4782
|
-
|
|
4783
|
-
</
|
|
4784
|
-
<
|
|
4785
|
-
class="
|
|
4786
|
-
data-test="DesignSystem-
|
|
4787
|
-
>
|
|
4788
|
-
|
|
4789
|
-
</
|
|
4790
|
-
<
|
|
4791
|
-
class="
|
|
4792
|
-
data-test="DesignSystem-
|
|
4793
|
-
>
|
|
4794
|
-
|
|
4795
|
-
</
|
|
4796
|
-
<
|
|
4797
|
-
class="
|
|
4798
|
-
data-test="DesignSystem-
|
|
4799
|
-
>
|
|
4800
|
-
|
|
4801
|
-
</
|
|
4760
|
+
<span
|
|
4761
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4762
|
+
data-test="DesignSystem-Text"
|
|
4763
|
+
>
|
|
4764
|
+
Tu
|
|
4765
|
+
</span>
|
|
4766
|
+
<span
|
|
4767
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4768
|
+
data-test="DesignSystem-Text"
|
|
4769
|
+
>
|
|
4770
|
+
We
|
|
4771
|
+
</span>
|
|
4772
|
+
<span
|
|
4773
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4774
|
+
data-test="DesignSystem-Text"
|
|
4775
|
+
>
|
|
4776
|
+
Th
|
|
4777
|
+
</span>
|
|
4778
|
+
<span
|
|
4779
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4780
|
+
data-test="DesignSystem-Text"
|
|
4781
|
+
>
|
|
4782
|
+
Fr
|
|
4783
|
+
</span>
|
|
4784
|
+
<span
|
|
4785
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4786
|
+
data-test="DesignSystem-Text"
|
|
4787
|
+
>
|
|
4788
|
+
Sa
|
|
4789
|
+
</span>
|
|
4790
|
+
<span
|
|
4791
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4792
|
+
data-test="DesignSystem-Text"
|
|
4793
|
+
>
|
|
4794
|
+
Su
|
|
4795
|
+
</span>
|
|
4796
|
+
<span
|
|
4797
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
4798
|
+
data-test="DesignSystem-Text"
|
|
4799
|
+
>
|
|
4800
|
+
Mo
|
|
4801
|
+
</span>
|
|
4802
4802
|
</div>
|
|
4803
4803
|
<div
|
|
4804
4804
|
class="Calendar-dateValues"
|
|
@@ -5205,7 +5205,7 @@ exports[`Calendar component
|
|
|
5205
5205
|
class="Calendar-header"
|
|
5206
5206
|
>
|
|
5207
5207
|
<button
|
|
5208
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
5208
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
5209
5209
|
data-test="DesignSystem-Button"
|
|
5210
5210
|
tabindex="0"
|
|
5211
5211
|
type="button"
|
|
@@ -5245,7 +5245,7 @@ exports[`Calendar component
|
|
|
5245
5245
|
</span>
|
|
5246
5246
|
</div>
|
|
5247
5247
|
<button
|
|
5248
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
5248
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
5249
5249
|
data-test="DesignSystem-Button"
|
|
5250
5250
|
tabindex="0"
|
|
5251
5251
|
type="button"
|
|
@@ -5269,48 +5269,48 @@ exports[`Calendar component
|
|
|
5269
5269
|
<div
|
|
5270
5270
|
class="Calendar-dayValues"
|
|
5271
5271
|
>
|
|
5272
|
-
<
|
|
5273
|
-
class="
|
|
5274
|
-
data-test="DesignSystem-
|
|
5275
|
-
>
|
|
5276
|
-
|
|
5277
|
-
</
|
|
5278
|
-
<
|
|
5279
|
-
class="
|
|
5280
|
-
data-test="DesignSystem-
|
|
5281
|
-
>
|
|
5282
|
-
|
|
5283
|
-
</
|
|
5284
|
-
<
|
|
5285
|
-
class="
|
|
5286
|
-
data-test="DesignSystem-
|
|
5287
|
-
>
|
|
5288
|
-
|
|
5289
|
-
</
|
|
5290
|
-
<
|
|
5291
|
-
class="
|
|
5292
|
-
data-test="DesignSystem-
|
|
5293
|
-
>
|
|
5294
|
-
|
|
5295
|
-
</
|
|
5296
|
-
<
|
|
5297
|
-
class="
|
|
5298
|
-
data-test="DesignSystem-
|
|
5299
|
-
>
|
|
5300
|
-
|
|
5301
|
-
</
|
|
5302
|
-
<
|
|
5303
|
-
class="
|
|
5304
|
-
data-test="DesignSystem-
|
|
5305
|
-
>
|
|
5306
|
-
|
|
5307
|
-
</
|
|
5308
|
-
<
|
|
5309
|
-
class="
|
|
5310
|
-
data-test="DesignSystem-
|
|
5311
|
-
>
|
|
5312
|
-
|
|
5313
|
-
</
|
|
5272
|
+
<span
|
|
5273
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5274
|
+
data-test="DesignSystem-Text"
|
|
5275
|
+
>
|
|
5276
|
+
We
|
|
5277
|
+
</span>
|
|
5278
|
+
<span
|
|
5279
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5280
|
+
data-test="DesignSystem-Text"
|
|
5281
|
+
>
|
|
5282
|
+
Th
|
|
5283
|
+
</span>
|
|
5284
|
+
<span
|
|
5285
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5286
|
+
data-test="DesignSystem-Text"
|
|
5287
|
+
>
|
|
5288
|
+
Fr
|
|
5289
|
+
</span>
|
|
5290
|
+
<span
|
|
5291
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5292
|
+
data-test="DesignSystem-Text"
|
|
5293
|
+
>
|
|
5294
|
+
Sa
|
|
5295
|
+
</span>
|
|
5296
|
+
<span
|
|
5297
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5298
|
+
data-test="DesignSystem-Text"
|
|
5299
|
+
>
|
|
5300
|
+
Su
|
|
5301
|
+
</span>
|
|
5302
|
+
<span
|
|
5303
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5304
|
+
data-test="DesignSystem-Text"
|
|
5305
|
+
>
|
|
5306
|
+
Mo
|
|
5307
|
+
</span>
|
|
5308
|
+
<span
|
|
5309
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5310
|
+
data-test="DesignSystem-Text"
|
|
5311
|
+
>
|
|
5312
|
+
Tu
|
|
5313
|
+
</span>
|
|
5314
5314
|
</div>
|
|
5315
5315
|
<div
|
|
5316
5316
|
class="Calendar-dateValues"
|
|
@@ -5717,7 +5717,7 @@ exports[`Calendar component
|
|
|
5717
5717
|
class="Calendar-header"
|
|
5718
5718
|
>
|
|
5719
5719
|
<button
|
|
5720
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
5720
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
5721
5721
|
data-test="DesignSystem-Button"
|
|
5722
5722
|
tabindex="0"
|
|
5723
5723
|
type="button"
|
|
@@ -5757,7 +5757,7 @@ exports[`Calendar component
|
|
|
5757
5757
|
</span>
|
|
5758
5758
|
</div>
|
|
5759
5759
|
<button
|
|
5760
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
5760
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
5761
5761
|
data-test="DesignSystem-Button"
|
|
5762
5762
|
tabindex="0"
|
|
5763
5763
|
type="button"
|
|
@@ -5781,48 +5781,48 @@ exports[`Calendar component
|
|
|
5781
5781
|
<div
|
|
5782
5782
|
class="Calendar-dayValues"
|
|
5783
5783
|
>
|
|
5784
|
-
<
|
|
5785
|
-
class="
|
|
5786
|
-
data-test="DesignSystem-
|
|
5787
|
-
>
|
|
5788
|
-
|
|
5789
|
-
</
|
|
5790
|
-
<
|
|
5791
|
-
class="
|
|
5792
|
-
data-test="DesignSystem-
|
|
5793
|
-
>
|
|
5794
|
-
|
|
5795
|
-
</
|
|
5796
|
-
<
|
|
5797
|
-
class="
|
|
5798
|
-
data-test="DesignSystem-
|
|
5799
|
-
>
|
|
5800
|
-
|
|
5801
|
-
</
|
|
5802
|
-
<
|
|
5803
|
-
class="
|
|
5804
|
-
data-test="DesignSystem-
|
|
5805
|
-
>
|
|
5806
|
-
|
|
5807
|
-
</
|
|
5808
|
-
<
|
|
5809
|
-
class="
|
|
5810
|
-
data-test="DesignSystem-
|
|
5811
|
-
>
|
|
5812
|
-
|
|
5813
|
-
</
|
|
5814
|
-
<
|
|
5815
|
-
class="
|
|
5816
|
-
data-test="DesignSystem-
|
|
5817
|
-
>
|
|
5818
|
-
|
|
5819
|
-
</
|
|
5820
|
-
<
|
|
5821
|
-
class="
|
|
5822
|
-
data-test="DesignSystem-
|
|
5823
|
-
>
|
|
5824
|
-
|
|
5825
|
-
</
|
|
5784
|
+
<span
|
|
5785
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5786
|
+
data-test="DesignSystem-Text"
|
|
5787
|
+
>
|
|
5788
|
+
Su
|
|
5789
|
+
</span>
|
|
5790
|
+
<span
|
|
5791
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5792
|
+
data-test="DesignSystem-Text"
|
|
5793
|
+
>
|
|
5794
|
+
Mo
|
|
5795
|
+
</span>
|
|
5796
|
+
<span
|
|
5797
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5798
|
+
data-test="DesignSystem-Text"
|
|
5799
|
+
>
|
|
5800
|
+
Tu
|
|
5801
|
+
</span>
|
|
5802
|
+
<span
|
|
5803
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5804
|
+
data-test="DesignSystem-Text"
|
|
5805
|
+
>
|
|
5806
|
+
We
|
|
5807
|
+
</span>
|
|
5808
|
+
<span
|
|
5809
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5810
|
+
data-test="DesignSystem-Text"
|
|
5811
|
+
>
|
|
5812
|
+
Th
|
|
5813
|
+
</span>
|
|
5814
|
+
<span
|
|
5815
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5816
|
+
data-test="DesignSystem-Text"
|
|
5817
|
+
>
|
|
5818
|
+
Fr
|
|
5819
|
+
</span>
|
|
5820
|
+
<span
|
|
5821
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
5822
|
+
data-test="DesignSystem-Text"
|
|
5823
|
+
>
|
|
5824
|
+
Sa
|
|
5825
|
+
</span>
|
|
5826
5826
|
</div>
|
|
5827
5827
|
<div
|
|
5828
5828
|
class="Calendar-dateValues"
|
|
@@ -6229,7 +6229,7 @@ exports[`Calendar component
|
|
|
6229
6229
|
class="Calendar-header"
|
|
6230
6230
|
>
|
|
6231
6231
|
<button
|
|
6232
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
6232
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
6233
6233
|
data-test="DesignSystem-Button"
|
|
6234
6234
|
tabindex="0"
|
|
6235
6235
|
type="button"
|
|
@@ -6275,48 +6275,48 @@ exports[`Calendar component
|
|
|
6275
6275
|
<div
|
|
6276
6276
|
class="Calendar-dayValues"
|
|
6277
6277
|
>
|
|
6278
|
-
<
|
|
6279
|
-
class="
|
|
6280
|
-
data-test="DesignSystem-
|
|
6281
|
-
>
|
|
6282
|
-
|
|
6283
|
-
</
|
|
6284
|
-
<
|
|
6285
|
-
class="
|
|
6286
|
-
data-test="DesignSystem-
|
|
6287
|
-
>
|
|
6288
|
-
|
|
6289
|
-
</
|
|
6290
|
-
<
|
|
6291
|
-
class="
|
|
6292
|
-
data-test="DesignSystem-
|
|
6293
|
-
>
|
|
6294
|
-
|
|
6295
|
-
</
|
|
6296
|
-
<
|
|
6297
|
-
class="
|
|
6298
|
-
data-test="DesignSystem-
|
|
6299
|
-
>
|
|
6300
|
-
|
|
6301
|
-
</
|
|
6302
|
-
<
|
|
6303
|
-
class="
|
|
6304
|
-
data-test="DesignSystem-
|
|
6305
|
-
>
|
|
6306
|
-
|
|
6307
|
-
</
|
|
6308
|
-
<
|
|
6309
|
-
class="
|
|
6310
|
-
data-test="DesignSystem-
|
|
6311
|
-
>
|
|
6312
|
-
|
|
6313
|
-
</
|
|
6314
|
-
<
|
|
6315
|
-
class="
|
|
6316
|
-
data-test="DesignSystem-
|
|
6317
|
-
>
|
|
6318
|
-
|
|
6319
|
-
</
|
|
6278
|
+
<span
|
|
6279
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6280
|
+
data-test="DesignSystem-Text"
|
|
6281
|
+
>
|
|
6282
|
+
Su
|
|
6283
|
+
</span>
|
|
6284
|
+
<span
|
|
6285
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6286
|
+
data-test="DesignSystem-Text"
|
|
6287
|
+
>
|
|
6288
|
+
Mo
|
|
6289
|
+
</span>
|
|
6290
|
+
<span
|
|
6291
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6292
|
+
data-test="DesignSystem-Text"
|
|
6293
|
+
>
|
|
6294
|
+
Tu
|
|
6295
|
+
</span>
|
|
6296
|
+
<span
|
|
6297
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6298
|
+
data-test="DesignSystem-Text"
|
|
6299
|
+
>
|
|
6300
|
+
We
|
|
6301
|
+
</span>
|
|
6302
|
+
<span
|
|
6303
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6304
|
+
data-test="DesignSystem-Text"
|
|
6305
|
+
>
|
|
6306
|
+
Th
|
|
6307
|
+
</span>
|
|
6308
|
+
<span
|
|
6309
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6310
|
+
data-test="DesignSystem-Text"
|
|
6311
|
+
>
|
|
6312
|
+
Fr
|
|
6313
|
+
</span>
|
|
6314
|
+
<span
|
|
6315
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6316
|
+
data-test="DesignSystem-Text"
|
|
6317
|
+
>
|
|
6318
|
+
Sa
|
|
6319
|
+
</span>
|
|
6320
6320
|
</div>
|
|
6321
6321
|
<div
|
|
6322
6322
|
class="Calendar-dateValues"
|
|
@@ -6731,7 +6731,7 @@ exports[`Calendar component
|
|
|
6731
6731
|
</span>
|
|
6732
6732
|
</div>
|
|
6733
6733
|
<button
|
|
6734
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
6734
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
6735
6735
|
data-test="DesignSystem-Button"
|
|
6736
6736
|
tabindex="0"
|
|
6737
6737
|
type="button"
|
|
@@ -6755,48 +6755,48 @@ exports[`Calendar component
|
|
|
6755
6755
|
<div
|
|
6756
6756
|
class="Calendar-dayValues"
|
|
6757
6757
|
>
|
|
6758
|
-
<
|
|
6759
|
-
class="
|
|
6760
|
-
data-test="DesignSystem-
|
|
6761
|
-
>
|
|
6762
|
-
|
|
6763
|
-
</
|
|
6764
|
-
<
|
|
6765
|
-
class="
|
|
6766
|
-
data-test="DesignSystem-
|
|
6767
|
-
>
|
|
6768
|
-
|
|
6769
|
-
</
|
|
6770
|
-
<
|
|
6771
|
-
class="
|
|
6772
|
-
data-test="DesignSystem-
|
|
6773
|
-
>
|
|
6774
|
-
|
|
6775
|
-
</
|
|
6776
|
-
<
|
|
6777
|
-
class="
|
|
6778
|
-
data-test="DesignSystem-
|
|
6779
|
-
>
|
|
6780
|
-
|
|
6781
|
-
</
|
|
6782
|
-
<
|
|
6783
|
-
class="
|
|
6784
|
-
data-test="DesignSystem-
|
|
6785
|
-
>
|
|
6786
|
-
|
|
6787
|
-
</
|
|
6788
|
-
<
|
|
6789
|
-
class="
|
|
6790
|
-
data-test="DesignSystem-
|
|
6791
|
-
>
|
|
6792
|
-
|
|
6793
|
-
</
|
|
6794
|
-
<
|
|
6795
|
-
class="
|
|
6796
|
-
data-test="DesignSystem-
|
|
6797
|
-
>
|
|
6798
|
-
|
|
6799
|
-
</
|
|
6758
|
+
<span
|
|
6759
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6760
|
+
data-test="DesignSystem-Text"
|
|
6761
|
+
>
|
|
6762
|
+
Su
|
|
6763
|
+
</span>
|
|
6764
|
+
<span
|
|
6765
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6766
|
+
data-test="DesignSystem-Text"
|
|
6767
|
+
>
|
|
6768
|
+
Mo
|
|
6769
|
+
</span>
|
|
6770
|
+
<span
|
|
6771
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6772
|
+
data-test="DesignSystem-Text"
|
|
6773
|
+
>
|
|
6774
|
+
Tu
|
|
6775
|
+
</span>
|
|
6776
|
+
<span
|
|
6777
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6778
|
+
data-test="DesignSystem-Text"
|
|
6779
|
+
>
|
|
6780
|
+
We
|
|
6781
|
+
</span>
|
|
6782
|
+
<span
|
|
6783
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6784
|
+
data-test="DesignSystem-Text"
|
|
6785
|
+
>
|
|
6786
|
+
Th
|
|
6787
|
+
</span>
|
|
6788
|
+
<span
|
|
6789
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6790
|
+
data-test="DesignSystem-Text"
|
|
6791
|
+
>
|
|
6792
|
+
Fr
|
|
6793
|
+
</span>
|
|
6794
|
+
<span
|
|
6795
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
6796
|
+
data-test="DesignSystem-Text"
|
|
6797
|
+
>
|
|
6798
|
+
Sa
|
|
6799
|
+
</span>
|
|
6800
6800
|
</div>
|
|
6801
6801
|
<div
|
|
6802
6802
|
class="Calendar-dateValues"
|
|
@@ -7196,7 +7196,7 @@ exports[`Calendar component
|
|
|
7196
7196
|
class="Calendar-header"
|
|
7197
7197
|
>
|
|
7198
7198
|
<button
|
|
7199
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
7199
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
7200
7200
|
data-test="DesignSystem-Button"
|
|
7201
7201
|
tabindex="0"
|
|
7202
7202
|
type="button"
|
|
@@ -7242,48 +7242,48 @@ exports[`Calendar component
|
|
|
7242
7242
|
<div
|
|
7243
7243
|
class="Calendar-dayValues"
|
|
7244
7244
|
>
|
|
7245
|
-
<
|
|
7246
|
-
class="
|
|
7247
|
-
data-test="DesignSystem-
|
|
7248
|
-
>
|
|
7249
|
-
|
|
7250
|
-
</
|
|
7251
|
-
<
|
|
7252
|
-
class="
|
|
7253
|
-
data-test="DesignSystem-
|
|
7254
|
-
>
|
|
7255
|
-
|
|
7256
|
-
</
|
|
7257
|
-
<
|
|
7258
|
-
class="
|
|
7259
|
-
data-test="DesignSystem-
|
|
7260
|
-
>
|
|
7261
|
-
|
|
7262
|
-
</
|
|
7263
|
-
<
|
|
7264
|
-
class="
|
|
7265
|
-
data-test="DesignSystem-
|
|
7266
|
-
>
|
|
7267
|
-
|
|
7268
|
-
</
|
|
7269
|
-
<
|
|
7270
|
-
class="
|
|
7271
|
-
data-test="DesignSystem-
|
|
7272
|
-
>
|
|
7273
|
-
|
|
7274
|
-
</
|
|
7275
|
-
<
|
|
7276
|
-
class="
|
|
7277
|
-
data-test="DesignSystem-
|
|
7278
|
-
>
|
|
7279
|
-
|
|
7280
|
-
</
|
|
7281
|
-
<
|
|
7282
|
-
class="
|
|
7283
|
-
data-test="DesignSystem-
|
|
7284
|
-
>
|
|
7285
|
-
|
|
7286
|
-
</
|
|
7245
|
+
<span
|
|
7246
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7247
|
+
data-test="DesignSystem-Text"
|
|
7248
|
+
>
|
|
7249
|
+
Su
|
|
7250
|
+
</span>
|
|
7251
|
+
<span
|
|
7252
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7253
|
+
data-test="DesignSystem-Text"
|
|
7254
|
+
>
|
|
7255
|
+
Mo
|
|
7256
|
+
</span>
|
|
7257
|
+
<span
|
|
7258
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7259
|
+
data-test="DesignSystem-Text"
|
|
7260
|
+
>
|
|
7261
|
+
Tu
|
|
7262
|
+
</span>
|
|
7263
|
+
<span
|
|
7264
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7265
|
+
data-test="DesignSystem-Text"
|
|
7266
|
+
>
|
|
7267
|
+
We
|
|
7268
|
+
</span>
|
|
7269
|
+
<span
|
|
7270
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7271
|
+
data-test="DesignSystem-Text"
|
|
7272
|
+
>
|
|
7273
|
+
Th
|
|
7274
|
+
</span>
|
|
7275
|
+
<span
|
|
7276
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7277
|
+
data-test="DesignSystem-Text"
|
|
7278
|
+
>
|
|
7279
|
+
Fr
|
|
7280
|
+
</span>
|
|
7281
|
+
<span
|
|
7282
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7283
|
+
data-test="DesignSystem-Text"
|
|
7284
|
+
>
|
|
7285
|
+
Sa
|
|
7286
|
+
</span>
|
|
7287
7287
|
</div>
|
|
7288
7288
|
<div
|
|
7289
7289
|
class="Calendar-dateValues"
|
|
@@ -7704,48 +7704,48 @@ exports[`Calendar component
|
|
|
7704
7704
|
<div
|
|
7705
7705
|
class="Calendar-dayValues"
|
|
7706
7706
|
>
|
|
7707
|
-
<
|
|
7708
|
-
class="
|
|
7709
|
-
data-test="DesignSystem-
|
|
7710
|
-
>
|
|
7711
|
-
|
|
7712
|
-
</
|
|
7713
|
-
<
|
|
7714
|
-
class="
|
|
7715
|
-
data-test="DesignSystem-
|
|
7716
|
-
>
|
|
7717
|
-
|
|
7718
|
-
</
|
|
7719
|
-
<
|
|
7720
|
-
class="
|
|
7721
|
-
data-test="DesignSystem-
|
|
7722
|
-
>
|
|
7723
|
-
|
|
7724
|
-
</
|
|
7725
|
-
<
|
|
7726
|
-
class="
|
|
7727
|
-
data-test="DesignSystem-
|
|
7728
|
-
>
|
|
7729
|
-
|
|
7730
|
-
</
|
|
7731
|
-
<
|
|
7732
|
-
class="
|
|
7733
|
-
data-test="DesignSystem-
|
|
7734
|
-
>
|
|
7735
|
-
|
|
7736
|
-
</
|
|
7737
|
-
<
|
|
7738
|
-
class="
|
|
7739
|
-
data-test="DesignSystem-
|
|
7740
|
-
>
|
|
7741
|
-
|
|
7742
|
-
</
|
|
7743
|
-
<
|
|
7744
|
-
class="
|
|
7745
|
-
data-test="DesignSystem-
|
|
7746
|
-
>
|
|
7747
|
-
|
|
7748
|
-
</
|
|
7707
|
+
<span
|
|
7708
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7709
|
+
data-test="DesignSystem-Text"
|
|
7710
|
+
>
|
|
7711
|
+
Su
|
|
7712
|
+
</span>
|
|
7713
|
+
<span
|
|
7714
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7715
|
+
data-test="DesignSystem-Text"
|
|
7716
|
+
>
|
|
7717
|
+
Mo
|
|
7718
|
+
</span>
|
|
7719
|
+
<span
|
|
7720
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7721
|
+
data-test="DesignSystem-Text"
|
|
7722
|
+
>
|
|
7723
|
+
Tu
|
|
7724
|
+
</span>
|
|
7725
|
+
<span
|
|
7726
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7727
|
+
data-test="DesignSystem-Text"
|
|
7728
|
+
>
|
|
7729
|
+
We
|
|
7730
|
+
</span>
|
|
7731
|
+
<span
|
|
7732
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7733
|
+
data-test="DesignSystem-Text"
|
|
7734
|
+
>
|
|
7735
|
+
Th
|
|
7736
|
+
</span>
|
|
7737
|
+
<span
|
|
7738
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7739
|
+
data-test="DesignSystem-Text"
|
|
7740
|
+
>
|
|
7741
|
+
Fr
|
|
7742
|
+
</span>
|
|
7743
|
+
<span
|
|
7744
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
7745
|
+
data-test="DesignSystem-Text"
|
|
7746
|
+
>
|
|
7747
|
+
Sa
|
|
7748
|
+
</span>
|
|
7749
7749
|
</div>
|
|
7750
7750
|
<div
|
|
7751
7751
|
class="Calendar-dateValues"
|
|
@@ -8153,7 +8153,7 @@ exports[`Calendar component
|
|
|
8153
8153
|
</span>
|
|
8154
8154
|
</div>
|
|
8155
8155
|
<button
|
|
8156
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
8156
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
8157
8157
|
data-test="DesignSystem-Button"
|
|
8158
8158
|
tabindex="0"
|
|
8159
8159
|
type="button"
|
|
@@ -8177,48 +8177,48 @@ exports[`Calendar component
|
|
|
8177
8177
|
<div
|
|
8178
8178
|
class="Calendar-dayValues"
|
|
8179
8179
|
>
|
|
8180
|
-
<
|
|
8181
|
-
class="
|
|
8182
|
-
data-test="DesignSystem-
|
|
8183
|
-
>
|
|
8184
|
-
|
|
8185
|
-
</
|
|
8186
|
-
<
|
|
8187
|
-
class="
|
|
8188
|
-
data-test="DesignSystem-
|
|
8189
|
-
>
|
|
8190
|
-
|
|
8191
|
-
</
|
|
8192
|
-
<
|
|
8193
|
-
class="
|
|
8194
|
-
data-test="DesignSystem-
|
|
8195
|
-
>
|
|
8196
|
-
|
|
8197
|
-
</
|
|
8198
|
-
<
|
|
8199
|
-
class="
|
|
8200
|
-
data-test="DesignSystem-
|
|
8201
|
-
>
|
|
8202
|
-
|
|
8203
|
-
</
|
|
8204
|
-
<
|
|
8205
|
-
class="
|
|
8206
|
-
data-test="DesignSystem-
|
|
8207
|
-
>
|
|
8208
|
-
|
|
8209
|
-
</
|
|
8210
|
-
<
|
|
8211
|
-
class="
|
|
8212
|
-
data-test="DesignSystem-
|
|
8213
|
-
>
|
|
8214
|
-
|
|
8215
|
-
</
|
|
8216
|
-
<
|
|
8217
|
-
class="
|
|
8218
|
-
data-test="DesignSystem-
|
|
8219
|
-
>
|
|
8220
|
-
|
|
8221
|
-
</
|
|
8180
|
+
<span
|
|
8181
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8182
|
+
data-test="DesignSystem-Text"
|
|
8183
|
+
>
|
|
8184
|
+
Su
|
|
8185
|
+
</span>
|
|
8186
|
+
<span
|
|
8187
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8188
|
+
data-test="DesignSystem-Text"
|
|
8189
|
+
>
|
|
8190
|
+
Mo
|
|
8191
|
+
</span>
|
|
8192
|
+
<span
|
|
8193
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8194
|
+
data-test="DesignSystem-Text"
|
|
8195
|
+
>
|
|
8196
|
+
Tu
|
|
8197
|
+
</span>
|
|
8198
|
+
<span
|
|
8199
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8200
|
+
data-test="DesignSystem-Text"
|
|
8201
|
+
>
|
|
8202
|
+
We
|
|
8203
|
+
</span>
|
|
8204
|
+
<span
|
|
8205
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8206
|
+
data-test="DesignSystem-Text"
|
|
8207
|
+
>
|
|
8208
|
+
Th
|
|
8209
|
+
</span>
|
|
8210
|
+
<span
|
|
8211
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8212
|
+
data-test="DesignSystem-Text"
|
|
8213
|
+
>
|
|
8214
|
+
Fr
|
|
8215
|
+
</span>
|
|
8216
|
+
<span
|
|
8217
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8218
|
+
data-test="DesignSystem-Text"
|
|
8219
|
+
>
|
|
8220
|
+
Sa
|
|
8221
|
+
</span>
|
|
8222
8222
|
</div>
|
|
8223
8223
|
<div
|
|
8224
8224
|
class="Calendar-dateValues"
|
|
@@ -8657,7 +8657,7 @@ exports[`Calendar component
|
|
|
8657
8657
|
class="Calendar-header"
|
|
8658
8658
|
>
|
|
8659
8659
|
<button
|
|
8660
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
8660
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
8661
8661
|
data-test="DesignSystem-Button"
|
|
8662
8662
|
tabindex="0"
|
|
8663
8663
|
type="button"
|
|
@@ -8697,7 +8697,7 @@ exports[`Calendar component
|
|
|
8697
8697
|
</span>
|
|
8698
8698
|
</div>
|
|
8699
8699
|
<button
|
|
8700
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
8700
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
8701
8701
|
data-test="DesignSystem-Button"
|
|
8702
8702
|
tabindex="0"
|
|
8703
8703
|
type="button"
|
|
@@ -8721,48 +8721,48 @@ exports[`Calendar component
|
|
|
8721
8721
|
<div
|
|
8722
8722
|
class="Calendar-dayValues"
|
|
8723
8723
|
>
|
|
8724
|
-
<
|
|
8725
|
-
class="
|
|
8726
|
-
data-test="DesignSystem-
|
|
8727
|
-
>
|
|
8728
|
-
|
|
8729
|
-
</
|
|
8730
|
-
<
|
|
8731
|
-
class="
|
|
8732
|
-
data-test="DesignSystem-
|
|
8733
|
-
>
|
|
8734
|
-
|
|
8735
|
-
</
|
|
8736
|
-
<
|
|
8737
|
-
class="
|
|
8738
|
-
data-test="DesignSystem-
|
|
8739
|
-
>
|
|
8740
|
-
|
|
8741
|
-
</
|
|
8742
|
-
<
|
|
8743
|
-
class="
|
|
8744
|
-
data-test="DesignSystem-
|
|
8745
|
-
>
|
|
8746
|
-
|
|
8747
|
-
</
|
|
8748
|
-
<
|
|
8749
|
-
class="
|
|
8750
|
-
data-test="DesignSystem-
|
|
8751
|
-
>
|
|
8752
|
-
|
|
8753
|
-
</
|
|
8754
|
-
<
|
|
8755
|
-
class="
|
|
8756
|
-
data-test="DesignSystem-
|
|
8757
|
-
>
|
|
8758
|
-
|
|
8759
|
-
</
|
|
8760
|
-
<
|
|
8761
|
-
class="
|
|
8762
|
-
data-test="DesignSystem-
|
|
8763
|
-
>
|
|
8764
|
-
|
|
8765
|
-
</
|
|
8724
|
+
<span
|
|
8725
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8726
|
+
data-test="DesignSystem-Text"
|
|
8727
|
+
>
|
|
8728
|
+
Su
|
|
8729
|
+
</span>
|
|
8730
|
+
<span
|
|
8731
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8732
|
+
data-test="DesignSystem-Text"
|
|
8733
|
+
>
|
|
8734
|
+
Mo
|
|
8735
|
+
</span>
|
|
8736
|
+
<span
|
|
8737
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8738
|
+
data-test="DesignSystem-Text"
|
|
8739
|
+
>
|
|
8740
|
+
Tu
|
|
8741
|
+
</span>
|
|
8742
|
+
<span
|
|
8743
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8744
|
+
data-test="DesignSystem-Text"
|
|
8745
|
+
>
|
|
8746
|
+
We
|
|
8747
|
+
</span>
|
|
8748
|
+
<span
|
|
8749
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8750
|
+
data-test="DesignSystem-Text"
|
|
8751
|
+
>
|
|
8752
|
+
Th
|
|
8753
|
+
</span>
|
|
8754
|
+
<span
|
|
8755
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8756
|
+
data-test="DesignSystem-Text"
|
|
8757
|
+
>
|
|
8758
|
+
Fr
|
|
8759
|
+
</span>
|
|
8760
|
+
<span
|
|
8761
|
+
class="Text Text--default Text--strong Text--regular Calendar-valueWrapper"
|
|
8762
|
+
data-test="DesignSystem-Text"
|
|
8763
|
+
>
|
|
8764
|
+
Sa
|
|
8765
|
+
</span>
|
|
8766
8766
|
</div>
|
|
8767
8767
|
<div
|
|
8768
8768
|
class="Calendar-dateValues"
|
|
@@ -9169,7 +9169,7 @@ exports[`Calendar component
|
|
|
9169
9169
|
class="Calendar-header"
|
|
9170
9170
|
>
|
|
9171
9171
|
<button
|
|
9172
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
9172
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
9173
9173
|
data-test="DesignSystem-Button"
|
|
9174
9174
|
tabindex="0"
|
|
9175
9175
|
type="button"
|
|
@@ -9199,7 +9199,7 @@ exports[`Calendar component
|
|
|
9199
9199
|
</span>
|
|
9200
9200
|
</div>
|
|
9201
9201
|
<button
|
|
9202
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
9202
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
9203
9203
|
data-test="DesignSystem-Button"
|
|
9204
9204
|
tabindex="0"
|
|
9205
9205
|
type="button"
|
|
@@ -9392,7 +9392,7 @@ exports[`Calendar component
|
|
|
9392
9392
|
class="Calendar-header"
|
|
9393
9393
|
>
|
|
9394
9394
|
<button
|
|
9395
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
9395
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
9396
9396
|
data-test="DesignSystem-Button"
|
|
9397
9397
|
tabindex="0"
|
|
9398
9398
|
type="button"
|
|
@@ -9422,7 +9422,7 @@ exports[`Calendar component
|
|
|
9422
9422
|
</span>
|
|
9423
9423
|
</div>
|
|
9424
9424
|
<button
|
|
9425
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
9425
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
9426
9426
|
data-test="DesignSystem-Button"
|
|
9427
9427
|
tabindex="0"
|
|
9428
9428
|
type="button"
|
|
@@ -9615,7 +9615,7 @@ exports[`Calendar component
|
|
|
9615
9615
|
class="Calendar-header"
|
|
9616
9616
|
>
|
|
9617
9617
|
<button
|
|
9618
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
9618
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
9619
9619
|
data-test="DesignSystem-Button"
|
|
9620
9620
|
tabindex="0"
|
|
9621
9621
|
type="button"
|
|
@@ -9655,7 +9655,7 @@ exports[`Calendar component
|
|
|
9655
9655
|
</span>
|
|
9656
9656
|
</div>
|
|
9657
9657
|
<button
|
|
9658
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
9658
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
9659
9659
|
data-test="DesignSystem-Button"
|
|
9660
9660
|
tabindex="0"
|
|
9661
9661
|
type="button"
|
|
@@ -9679,48 +9679,48 @@ exports[`Calendar component
|
|
|
9679
9679
|
<div
|
|
9680
9680
|
class="Calendar-dayValues"
|
|
9681
9681
|
>
|
|
9682
|
-
<
|
|
9683
|
-
class="
|
|
9684
|
-
data-test="DesignSystem-
|
|
9685
|
-
>
|
|
9686
|
-
|
|
9687
|
-
</
|
|
9688
|
-
<
|
|
9689
|
-
class="
|
|
9690
|
-
data-test="DesignSystem-
|
|
9691
|
-
>
|
|
9692
|
-
|
|
9693
|
-
</
|
|
9694
|
-
<
|
|
9695
|
-
class="
|
|
9696
|
-
data-test="DesignSystem-
|
|
9697
|
-
>
|
|
9698
|
-
|
|
9699
|
-
</
|
|
9700
|
-
<
|
|
9701
|
-
class="
|
|
9702
|
-
data-test="DesignSystem-
|
|
9703
|
-
>
|
|
9704
|
-
|
|
9705
|
-
</
|
|
9706
|
-
<
|
|
9707
|
-
class="
|
|
9708
|
-
data-test="DesignSystem-
|
|
9709
|
-
>
|
|
9710
|
-
|
|
9711
|
-
</
|
|
9712
|
-
<
|
|
9713
|
-
class="
|
|
9714
|
-
data-test="DesignSystem-
|
|
9715
|
-
>
|
|
9716
|
-
|
|
9717
|
-
</
|
|
9718
|
-
<
|
|
9719
|
-
class="
|
|
9720
|
-
data-test="DesignSystem-
|
|
9721
|
-
>
|
|
9722
|
-
|
|
9723
|
-
</
|
|
9682
|
+
<span
|
|
9683
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
9684
|
+
data-test="DesignSystem-Text"
|
|
9685
|
+
>
|
|
9686
|
+
Su
|
|
9687
|
+
</span>
|
|
9688
|
+
<span
|
|
9689
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
9690
|
+
data-test="DesignSystem-Text"
|
|
9691
|
+
>
|
|
9692
|
+
Mo
|
|
9693
|
+
</span>
|
|
9694
|
+
<span
|
|
9695
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
9696
|
+
data-test="DesignSystem-Text"
|
|
9697
|
+
>
|
|
9698
|
+
Tu
|
|
9699
|
+
</span>
|
|
9700
|
+
<span
|
|
9701
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
9702
|
+
data-test="DesignSystem-Text"
|
|
9703
|
+
>
|
|
9704
|
+
We
|
|
9705
|
+
</span>
|
|
9706
|
+
<span
|
|
9707
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
9708
|
+
data-test="DesignSystem-Text"
|
|
9709
|
+
>
|
|
9710
|
+
Th
|
|
9711
|
+
</span>
|
|
9712
|
+
<span
|
|
9713
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
9714
|
+
data-test="DesignSystem-Text"
|
|
9715
|
+
>
|
|
9716
|
+
Fr
|
|
9717
|
+
</span>
|
|
9718
|
+
<span
|
|
9719
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
9720
|
+
data-test="DesignSystem-Text"
|
|
9721
|
+
>
|
|
9722
|
+
Sa
|
|
9723
|
+
</span>
|
|
9724
9724
|
</div>
|
|
9725
9725
|
<div
|
|
9726
9726
|
class="Calendar-dateValues"
|
|
@@ -10127,7 +10127,7 @@ exports[`Calendar component
|
|
|
10127
10127
|
class="Calendar-header"
|
|
10128
10128
|
>
|
|
10129
10129
|
<button
|
|
10130
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
10130
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
10131
10131
|
data-test="DesignSystem-Button"
|
|
10132
10132
|
tabindex="0"
|
|
10133
10133
|
type="button"
|
|
@@ -10173,48 +10173,48 @@ exports[`Calendar component
|
|
|
10173
10173
|
<div
|
|
10174
10174
|
class="Calendar-dayValues"
|
|
10175
10175
|
>
|
|
10176
|
-
<
|
|
10177
|
-
class="
|
|
10178
|
-
data-test="DesignSystem-
|
|
10179
|
-
>
|
|
10180
|
-
|
|
10181
|
-
</
|
|
10182
|
-
<
|
|
10183
|
-
class="
|
|
10184
|
-
data-test="DesignSystem-
|
|
10185
|
-
>
|
|
10186
|
-
|
|
10187
|
-
</
|
|
10188
|
-
<
|
|
10189
|
-
class="
|
|
10190
|
-
data-test="DesignSystem-
|
|
10191
|
-
>
|
|
10192
|
-
|
|
10193
|
-
</
|
|
10194
|
-
<
|
|
10195
|
-
class="
|
|
10196
|
-
data-test="DesignSystem-
|
|
10197
|
-
>
|
|
10198
|
-
|
|
10199
|
-
</
|
|
10200
|
-
<
|
|
10201
|
-
class="
|
|
10202
|
-
data-test="DesignSystem-
|
|
10203
|
-
>
|
|
10204
|
-
|
|
10205
|
-
</
|
|
10206
|
-
<
|
|
10207
|
-
class="
|
|
10208
|
-
data-test="DesignSystem-
|
|
10209
|
-
>
|
|
10210
|
-
|
|
10211
|
-
</
|
|
10212
|
-
<
|
|
10213
|
-
class="
|
|
10214
|
-
data-test="DesignSystem-
|
|
10215
|
-
>
|
|
10216
|
-
|
|
10217
|
-
</
|
|
10176
|
+
<span
|
|
10177
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10178
|
+
data-test="DesignSystem-Text"
|
|
10179
|
+
>
|
|
10180
|
+
Su
|
|
10181
|
+
</span>
|
|
10182
|
+
<span
|
|
10183
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10184
|
+
data-test="DesignSystem-Text"
|
|
10185
|
+
>
|
|
10186
|
+
Mo
|
|
10187
|
+
</span>
|
|
10188
|
+
<span
|
|
10189
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10190
|
+
data-test="DesignSystem-Text"
|
|
10191
|
+
>
|
|
10192
|
+
Tu
|
|
10193
|
+
</span>
|
|
10194
|
+
<span
|
|
10195
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10196
|
+
data-test="DesignSystem-Text"
|
|
10197
|
+
>
|
|
10198
|
+
We
|
|
10199
|
+
</span>
|
|
10200
|
+
<span
|
|
10201
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10202
|
+
data-test="DesignSystem-Text"
|
|
10203
|
+
>
|
|
10204
|
+
Th
|
|
10205
|
+
</span>
|
|
10206
|
+
<span
|
|
10207
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10208
|
+
data-test="DesignSystem-Text"
|
|
10209
|
+
>
|
|
10210
|
+
Fr
|
|
10211
|
+
</span>
|
|
10212
|
+
<span
|
|
10213
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10214
|
+
data-test="DesignSystem-Text"
|
|
10215
|
+
>
|
|
10216
|
+
Sa
|
|
10217
|
+
</span>
|
|
10218
10218
|
</div>
|
|
10219
10219
|
<div
|
|
10220
10220
|
class="Calendar-dateValues"
|
|
@@ -10629,7 +10629,7 @@ exports[`Calendar component
|
|
|
10629
10629
|
</span>
|
|
10630
10630
|
</div>
|
|
10631
10631
|
<button
|
|
10632
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
10632
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
10633
10633
|
data-test="DesignSystem-Button"
|
|
10634
10634
|
tabindex="0"
|
|
10635
10635
|
type="button"
|
|
@@ -10653,48 +10653,48 @@ exports[`Calendar component
|
|
|
10653
10653
|
<div
|
|
10654
10654
|
class="Calendar-dayValues"
|
|
10655
10655
|
>
|
|
10656
|
-
<
|
|
10657
|
-
class="
|
|
10658
|
-
data-test="DesignSystem-
|
|
10659
|
-
>
|
|
10660
|
-
|
|
10661
|
-
</
|
|
10662
|
-
<
|
|
10663
|
-
class="
|
|
10664
|
-
data-test="DesignSystem-
|
|
10665
|
-
>
|
|
10666
|
-
|
|
10667
|
-
</
|
|
10668
|
-
<
|
|
10669
|
-
class="
|
|
10670
|
-
data-test="DesignSystem-
|
|
10671
|
-
>
|
|
10672
|
-
|
|
10673
|
-
</
|
|
10674
|
-
<
|
|
10675
|
-
class="
|
|
10676
|
-
data-test="DesignSystem-
|
|
10677
|
-
>
|
|
10678
|
-
|
|
10679
|
-
</
|
|
10680
|
-
<
|
|
10681
|
-
class="
|
|
10682
|
-
data-test="DesignSystem-
|
|
10683
|
-
>
|
|
10684
|
-
|
|
10685
|
-
</
|
|
10686
|
-
<
|
|
10687
|
-
class="
|
|
10688
|
-
data-test="DesignSystem-
|
|
10689
|
-
>
|
|
10690
|
-
|
|
10691
|
-
</
|
|
10692
|
-
<
|
|
10693
|
-
class="
|
|
10694
|
-
data-test="DesignSystem-
|
|
10695
|
-
>
|
|
10696
|
-
|
|
10697
|
-
</
|
|
10656
|
+
<span
|
|
10657
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10658
|
+
data-test="DesignSystem-Text"
|
|
10659
|
+
>
|
|
10660
|
+
Su
|
|
10661
|
+
</span>
|
|
10662
|
+
<span
|
|
10663
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10664
|
+
data-test="DesignSystem-Text"
|
|
10665
|
+
>
|
|
10666
|
+
Mo
|
|
10667
|
+
</span>
|
|
10668
|
+
<span
|
|
10669
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10670
|
+
data-test="DesignSystem-Text"
|
|
10671
|
+
>
|
|
10672
|
+
Tu
|
|
10673
|
+
</span>
|
|
10674
|
+
<span
|
|
10675
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10676
|
+
data-test="DesignSystem-Text"
|
|
10677
|
+
>
|
|
10678
|
+
We
|
|
10679
|
+
</span>
|
|
10680
|
+
<span
|
|
10681
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10682
|
+
data-test="DesignSystem-Text"
|
|
10683
|
+
>
|
|
10684
|
+
Th
|
|
10685
|
+
</span>
|
|
10686
|
+
<span
|
|
10687
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10688
|
+
data-test="DesignSystem-Text"
|
|
10689
|
+
>
|
|
10690
|
+
Fr
|
|
10691
|
+
</span>
|
|
10692
|
+
<span
|
|
10693
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
10694
|
+
data-test="DesignSystem-Text"
|
|
10695
|
+
>
|
|
10696
|
+
Sa
|
|
10697
|
+
</span>
|
|
10698
10698
|
</div>
|
|
10699
10699
|
<div
|
|
10700
10700
|
class="Calendar-dateValues"
|
|
@@ -11094,7 +11094,7 @@ exports[`Calendar component
|
|
|
11094
11094
|
class="Calendar-header"
|
|
11095
11095
|
>
|
|
11096
11096
|
<button
|
|
11097
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
11097
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
11098
11098
|
data-test="DesignSystem-Button"
|
|
11099
11099
|
tabindex="0"
|
|
11100
11100
|
type="button"
|
|
@@ -11140,48 +11140,48 @@ exports[`Calendar component
|
|
|
11140
11140
|
<div
|
|
11141
11141
|
class="Calendar-dayValues"
|
|
11142
11142
|
>
|
|
11143
|
-
<
|
|
11144
|
-
class="
|
|
11145
|
-
data-test="DesignSystem-
|
|
11146
|
-
>
|
|
11147
|
-
|
|
11148
|
-
</
|
|
11149
|
-
<
|
|
11150
|
-
class="
|
|
11151
|
-
data-test="DesignSystem-
|
|
11152
|
-
>
|
|
11153
|
-
|
|
11154
|
-
</
|
|
11155
|
-
<
|
|
11156
|
-
class="
|
|
11157
|
-
data-test="DesignSystem-
|
|
11158
|
-
>
|
|
11159
|
-
|
|
11160
|
-
</
|
|
11161
|
-
<
|
|
11162
|
-
class="
|
|
11163
|
-
data-test="DesignSystem-
|
|
11164
|
-
>
|
|
11165
|
-
|
|
11166
|
-
</
|
|
11167
|
-
<
|
|
11168
|
-
class="
|
|
11169
|
-
data-test="DesignSystem-
|
|
11170
|
-
>
|
|
11171
|
-
|
|
11172
|
-
</
|
|
11173
|
-
<
|
|
11174
|
-
class="
|
|
11175
|
-
data-test="DesignSystem-
|
|
11176
|
-
>
|
|
11177
|
-
|
|
11178
|
-
</
|
|
11179
|
-
<
|
|
11180
|
-
class="
|
|
11181
|
-
data-test="DesignSystem-
|
|
11182
|
-
>
|
|
11183
|
-
|
|
11184
|
-
</
|
|
11143
|
+
<span
|
|
11144
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11145
|
+
data-test="DesignSystem-Text"
|
|
11146
|
+
>
|
|
11147
|
+
Su
|
|
11148
|
+
</span>
|
|
11149
|
+
<span
|
|
11150
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11151
|
+
data-test="DesignSystem-Text"
|
|
11152
|
+
>
|
|
11153
|
+
Mo
|
|
11154
|
+
</span>
|
|
11155
|
+
<span
|
|
11156
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11157
|
+
data-test="DesignSystem-Text"
|
|
11158
|
+
>
|
|
11159
|
+
Tu
|
|
11160
|
+
</span>
|
|
11161
|
+
<span
|
|
11162
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11163
|
+
data-test="DesignSystem-Text"
|
|
11164
|
+
>
|
|
11165
|
+
We
|
|
11166
|
+
</span>
|
|
11167
|
+
<span
|
|
11168
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11169
|
+
data-test="DesignSystem-Text"
|
|
11170
|
+
>
|
|
11171
|
+
Th
|
|
11172
|
+
</span>
|
|
11173
|
+
<span
|
|
11174
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11175
|
+
data-test="DesignSystem-Text"
|
|
11176
|
+
>
|
|
11177
|
+
Fr
|
|
11178
|
+
</span>
|
|
11179
|
+
<span
|
|
11180
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11181
|
+
data-test="DesignSystem-Text"
|
|
11182
|
+
>
|
|
11183
|
+
Sa
|
|
11184
|
+
</span>
|
|
11185
11185
|
</div>
|
|
11186
11186
|
<div
|
|
11187
11187
|
class="Calendar-dateValues"
|
|
@@ -11602,48 +11602,48 @@ exports[`Calendar component
|
|
|
11602
11602
|
<div
|
|
11603
11603
|
class="Calendar-dayValues"
|
|
11604
11604
|
>
|
|
11605
|
-
<
|
|
11606
|
-
class="
|
|
11607
|
-
data-test="DesignSystem-
|
|
11608
|
-
>
|
|
11609
|
-
|
|
11610
|
-
</
|
|
11611
|
-
<
|
|
11612
|
-
class="
|
|
11613
|
-
data-test="DesignSystem-
|
|
11614
|
-
>
|
|
11615
|
-
|
|
11616
|
-
</
|
|
11617
|
-
<
|
|
11618
|
-
class="
|
|
11619
|
-
data-test="DesignSystem-
|
|
11620
|
-
>
|
|
11621
|
-
|
|
11622
|
-
</
|
|
11623
|
-
<
|
|
11624
|
-
class="
|
|
11625
|
-
data-test="DesignSystem-
|
|
11626
|
-
>
|
|
11627
|
-
|
|
11628
|
-
</
|
|
11629
|
-
<
|
|
11630
|
-
class="
|
|
11631
|
-
data-test="DesignSystem-
|
|
11632
|
-
>
|
|
11633
|
-
|
|
11634
|
-
</
|
|
11635
|
-
<
|
|
11636
|
-
class="
|
|
11637
|
-
data-test="DesignSystem-
|
|
11638
|
-
>
|
|
11639
|
-
|
|
11640
|
-
</
|
|
11641
|
-
<
|
|
11642
|
-
class="
|
|
11643
|
-
data-test="DesignSystem-
|
|
11644
|
-
>
|
|
11645
|
-
|
|
11646
|
-
</
|
|
11605
|
+
<span
|
|
11606
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11607
|
+
data-test="DesignSystem-Text"
|
|
11608
|
+
>
|
|
11609
|
+
Su
|
|
11610
|
+
</span>
|
|
11611
|
+
<span
|
|
11612
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11613
|
+
data-test="DesignSystem-Text"
|
|
11614
|
+
>
|
|
11615
|
+
Mo
|
|
11616
|
+
</span>
|
|
11617
|
+
<span
|
|
11618
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11619
|
+
data-test="DesignSystem-Text"
|
|
11620
|
+
>
|
|
11621
|
+
Tu
|
|
11622
|
+
</span>
|
|
11623
|
+
<span
|
|
11624
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11625
|
+
data-test="DesignSystem-Text"
|
|
11626
|
+
>
|
|
11627
|
+
We
|
|
11628
|
+
</span>
|
|
11629
|
+
<span
|
|
11630
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11631
|
+
data-test="DesignSystem-Text"
|
|
11632
|
+
>
|
|
11633
|
+
Th
|
|
11634
|
+
</span>
|
|
11635
|
+
<span
|
|
11636
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11637
|
+
data-test="DesignSystem-Text"
|
|
11638
|
+
>
|
|
11639
|
+
Fr
|
|
11640
|
+
</span>
|
|
11641
|
+
<span
|
|
11642
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
11643
|
+
data-test="DesignSystem-Text"
|
|
11644
|
+
>
|
|
11645
|
+
Sa
|
|
11646
|
+
</span>
|
|
11647
11647
|
</div>
|
|
11648
11648
|
<div
|
|
11649
11649
|
class="Calendar-dateValues"
|
|
@@ -12051,7 +12051,7 @@ exports[`Calendar component
|
|
|
12051
12051
|
</span>
|
|
12052
12052
|
</div>
|
|
12053
12053
|
<button
|
|
12054
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
12054
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
12055
12055
|
data-test="DesignSystem-Button"
|
|
12056
12056
|
tabindex="0"
|
|
12057
12057
|
type="button"
|
|
@@ -12075,48 +12075,48 @@ exports[`Calendar component
|
|
|
12075
12075
|
<div
|
|
12076
12076
|
class="Calendar-dayValues"
|
|
12077
12077
|
>
|
|
12078
|
-
<
|
|
12079
|
-
class="
|
|
12080
|
-
data-test="DesignSystem-
|
|
12081
|
-
>
|
|
12082
|
-
|
|
12083
|
-
</
|
|
12084
|
-
<
|
|
12085
|
-
class="
|
|
12086
|
-
data-test="DesignSystem-
|
|
12087
|
-
>
|
|
12088
|
-
|
|
12089
|
-
</
|
|
12090
|
-
<
|
|
12091
|
-
class="
|
|
12092
|
-
data-test="DesignSystem-
|
|
12093
|
-
>
|
|
12094
|
-
|
|
12095
|
-
</
|
|
12096
|
-
<
|
|
12097
|
-
class="
|
|
12098
|
-
data-test="DesignSystem-
|
|
12099
|
-
>
|
|
12100
|
-
|
|
12101
|
-
</
|
|
12102
|
-
<
|
|
12103
|
-
class="
|
|
12104
|
-
data-test="DesignSystem-
|
|
12105
|
-
>
|
|
12106
|
-
|
|
12107
|
-
</
|
|
12108
|
-
<
|
|
12109
|
-
class="
|
|
12110
|
-
data-test="DesignSystem-
|
|
12111
|
-
>
|
|
12112
|
-
|
|
12113
|
-
</
|
|
12114
|
-
<
|
|
12115
|
-
class="
|
|
12116
|
-
data-test="DesignSystem-
|
|
12117
|
-
>
|
|
12118
|
-
|
|
12119
|
-
</
|
|
12078
|
+
<span
|
|
12079
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12080
|
+
data-test="DesignSystem-Text"
|
|
12081
|
+
>
|
|
12082
|
+
Su
|
|
12083
|
+
</span>
|
|
12084
|
+
<span
|
|
12085
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12086
|
+
data-test="DesignSystem-Text"
|
|
12087
|
+
>
|
|
12088
|
+
Mo
|
|
12089
|
+
</span>
|
|
12090
|
+
<span
|
|
12091
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12092
|
+
data-test="DesignSystem-Text"
|
|
12093
|
+
>
|
|
12094
|
+
Tu
|
|
12095
|
+
</span>
|
|
12096
|
+
<span
|
|
12097
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12098
|
+
data-test="DesignSystem-Text"
|
|
12099
|
+
>
|
|
12100
|
+
We
|
|
12101
|
+
</span>
|
|
12102
|
+
<span
|
|
12103
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12104
|
+
data-test="DesignSystem-Text"
|
|
12105
|
+
>
|
|
12106
|
+
Th
|
|
12107
|
+
</span>
|
|
12108
|
+
<span
|
|
12109
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12110
|
+
data-test="DesignSystem-Text"
|
|
12111
|
+
>
|
|
12112
|
+
Fr
|
|
12113
|
+
</span>
|
|
12114
|
+
<span
|
|
12115
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12116
|
+
data-test="DesignSystem-Text"
|
|
12117
|
+
>
|
|
12118
|
+
Sa
|
|
12119
|
+
</span>
|
|
12120
12120
|
</div>
|
|
12121
12121
|
<div
|
|
12122
12122
|
class="Calendar-dateValues"
|
|
@@ -12555,7 +12555,7 @@ exports[`Calendar component
|
|
|
12555
12555
|
class="Calendar-header"
|
|
12556
12556
|
>
|
|
12557
12557
|
<button
|
|
12558
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
12558
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
12559
12559
|
data-test="DesignSystem-Button"
|
|
12560
12560
|
tabindex="0"
|
|
12561
12561
|
type="button"
|
|
@@ -12595,7 +12595,7 @@ exports[`Calendar component
|
|
|
12595
12595
|
</span>
|
|
12596
12596
|
</div>
|
|
12597
12597
|
<button
|
|
12598
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
12598
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
12599
12599
|
data-test="DesignSystem-Button"
|
|
12600
12600
|
tabindex="0"
|
|
12601
12601
|
type="button"
|
|
@@ -12619,48 +12619,48 @@ exports[`Calendar component
|
|
|
12619
12619
|
<div
|
|
12620
12620
|
class="Calendar-dayValues"
|
|
12621
12621
|
>
|
|
12622
|
-
<
|
|
12623
|
-
class="
|
|
12624
|
-
data-test="DesignSystem-
|
|
12625
|
-
>
|
|
12626
|
-
|
|
12627
|
-
</
|
|
12628
|
-
<
|
|
12629
|
-
class="
|
|
12630
|
-
data-test="DesignSystem-
|
|
12631
|
-
>
|
|
12632
|
-
|
|
12633
|
-
</
|
|
12634
|
-
<
|
|
12635
|
-
class="
|
|
12636
|
-
data-test="DesignSystem-
|
|
12637
|
-
>
|
|
12638
|
-
|
|
12639
|
-
</
|
|
12640
|
-
<
|
|
12641
|
-
class="
|
|
12642
|
-
data-test="DesignSystem-
|
|
12643
|
-
>
|
|
12644
|
-
|
|
12645
|
-
</
|
|
12646
|
-
<
|
|
12647
|
-
class="
|
|
12648
|
-
data-test="DesignSystem-
|
|
12649
|
-
>
|
|
12650
|
-
|
|
12651
|
-
</
|
|
12652
|
-
<
|
|
12653
|
-
class="
|
|
12654
|
-
data-test="DesignSystem-
|
|
12655
|
-
>
|
|
12656
|
-
|
|
12657
|
-
</
|
|
12658
|
-
<
|
|
12659
|
-
class="
|
|
12660
|
-
data-test="DesignSystem-
|
|
12661
|
-
>
|
|
12662
|
-
|
|
12663
|
-
</
|
|
12622
|
+
<span
|
|
12623
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12624
|
+
data-test="DesignSystem-Text"
|
|
12625
|
+
>
|
|
12626
|
+
Su
|
|
12627
|
+
</span>
|
|
12628
|
+
<span
|
|
12629
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12630
|
+
data-test="DesignSystem-Text"
|
|
12631
|
+
>
|
|
12632
|
+
Mo
|
|
12633
|
+
</span>
|
|
12634
|
+
<span
|
|
12635
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12636
|
+
data-test="DesignSystem-Text"
|
|
12637
|
+
>
|
|
12638
|
+
Tu
|
|
12639
|
+
</span>
|
|
12640
|
+
<span
|
|
12641
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12642
|
+
data-test="DesignSystem-Text"
|
|
12643
|
+
>
|
|
12644
|
+
We
|
|
12645
|
+
</span>
|
|
12646
|
+
<span
|
|
12647
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12648
|
+
data-test="DesignSystem-Text"
|
|
12649
|
+
>
|
|
12650
|
+
Th
|
|
12651
|
+
</span>
|
|
12652
|
+
<span
|
|
12653
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12654
|
+
data-test="DesignSystem-Text"
|
|
12655
|
+
>
|
|
12656
|
+
Fr
|
|
12657
|
+
</span>
|
|
12658
|
+
<span
|
|
12659
|
+
class="Text Text--default Text--strong Text--small Calendar-valueWrapper"
|
|
12660
|
+
data-test="DesignSystem-Text"
|
|
12661
|
+
>
|
|
12662
|
+
Sa
|
|
12663
|
+
</span>
|
|
12664
12664
|
</div>
|
|
12665
12665
|
<div
|
|
12666
12666
|
class="Calendar-dateValues"
|
|
@@ -13067,7 +13067,7 @@ exports[`Calendar component
|
|
|
13067
13067
|
class="Calendar-header"
|
|
13068
13068
|
>
|
|
13069
13069
|
<button
|
|
13070
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
13070
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
13071
13071
|
data-test="DesignSystem-Button"
|
|
13072
13072
|
tabindex="0"
|
|
13073
13073
|
type="button"
|
|
@@ -13097,7 +13097,7 @@ exports[`Calendar component
|
|
|
13097
13097
|
</span>
|
|
13098
13098
|
</div>
|
|
13099
13099
|
<button
|
|
13100
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
13100
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
13101
13101
|
data-test="DesignSystem-Button"
|
|
13102
13102
|
tabindex="0"
|
|
13103
13103
|
type="button"
|
|
@@ -13290,7 +13290,7 @@ exports[`Calendar component
|
|
|
13290
13290
|
class="Calendar-header"
|
|
13291
13291
|
>
|
|
13292
13292
|
<button
|
|
13293
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
13293
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--prev"
|
|
13294
13294
|
data-test="DesignSystem-Button"
|
|
13295
13295
|
tabindex="0"
|
|
13296
13296
|
type="button"
|
|
@@ -13320,7 +13320,7 @@ exports[`Calendar component
|
|
|
13320
13320
|
</span>
|
|
13321
13321
|
</div>
|
|
13322
13322
|
<button
|
|
13323
|
-
class="Button Button--regular Button--regularSquare Button--
|
|
13323
|
+
class="Button Button--regular Button--regularSquare Button--basic Calendar-headerIcon Calendar-headerIcon--next"
|
|
13324
13324
|
data-test="DesignSystem-Button"
|
|
13325
13325
|
tabindex="0"
|
|
13326
13326
|
type="button"
|