react-day-picker 8.0.1 → 8.0.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.
Files changed (218) hide show
  1. package/README.md +3 -2
  2. package/dist/components/Caption/Caption.d.ts +2 -2
  3. package/dist/components/CaptionDropdowns/CaptionDropdowns.d.ts +5 -0
  4. package/dist/components/CaptionDropdowns/index.d.ts +1 -0
  5. package/dist/components/CaptionNavigation/CaptionNavigation.d.ts +5 -0
  6. package/dist/components/CaptionNavigation/index.d.ts +1 -0
  7. package/dist/components/Head/utils/getWeekdays.d.ts +4 -2
  8. package/dist/components/Table/utils/daysToMonthWeeks.d.ts +1 -1
  9. package/dist/components/Table/utils/getMonthWeeks.d.ts +1 -1
  10. package/dist/contexts/DayPicker/formatters/formatCaption.d.ts +1 -1
  11. package/dist/contexts/DayPicker/formatters/formatDay.d.ts +1 -1
  12. package/dist/contexts/DayPicker/formatters/formatMonthCaption.d.ts +1 -1
  13. package/dist/contexts/DayPicker/formatters/formatWeekdayName.d.ts +1 -1
  14. package/dist/index.d.ts +2 -0
  15. package/dist/index.esm.js +145 -96
  16. package/dist/index.esm.js.map +1 -1
  17. package/dist/index.js +272 -196
  18. package/dist/index.js.map +1 -1
  19. package/dist/types/DayPickerBase.d.ts +5 -1
  20. package/dist/types/Labels.d.ts +1 -1
  21. package/package.json +15 -14
  22. package/src/DayPicker.tsx +113 -0
  23. package/src/components/Button/Button.test.tsx +47 -0
  24. package/src/components/Button/Button.tsx +36 -0
  25. package/src/components/Button/index.ts +1 -0
  26. package/src/components/Caption/Caption.test.tsx +86 -0
  27. package/src/components/Caption/Caption.tsx +54 -0
  28. package/src/components/Caption/index.ts +1 -0
  29. package/src/components/CaptionDropdowns/CaptionDropdowns.test.tsx +123 -0
  30. package/src/components/CaptionDropdowns/CaptionDropdowns.tsx +43 -0
  31. package/src/components/CaptionDropdowns/index.ts +1 -0
  32. package/src/components/CaptionLabel/CaptionLabel.test.tsx +29 -0
  33. package/src/components/CaptionLabel/CaptionLabel.tsx +32 -0
  34. package/src/components/CaptionLabel/index.ts +1 -0
  35. package/src/components/CaptionNavigation/CaptionNavigation.test.tsx +172 -0
  36. package/src/components/CaptionNavigation/CaptionNavigation.tsx +63 -0
  37. package/src/components/CaptionNavigation/index.ts +1 -0
  38. package/src/components/Day/Day.test.tsx +84 -0
  39. package/src/components/Day/Day.tsx +30 -0
  40. package/src/components/Day/index.ts +1 -0
  41. package/src/components/DayContent/DayContent.test.tsx +51 -0
  42. package/src/components/DayContent/DayContent.tsx +36 -0
  43. package/src/components/DayContent/index.ts +1 -0
  44. package/src/components/Dropdown/Dropdown.test.tsx +73 -0
  45. package/src/components/Dropdown/Dropdown.tsx +56 -0
  46. package/src/components/Dropdown/index.ts +1 -0
  47. package/src/components/Footer/Footer.test.tsx +29 -0
  48. package/src/components/Footer/Footer.tsx +20 -0
  49. package/src/components/Footer/index.ts +1 -0
  50. package/src/components/Head/Head.test.tsx +117 -0
  51. package/src/components/Head/Head.tsx +51 -0
  52. package/src/components/Head/index.ts +1 -0
  53. package/src/components/Head/utils/getWeekdays.test.ts +36 -0
  54. package/src/components/Head/utils/getWeekdays.ts +22 -0
  55. package/src/components/Head/utils/index.ts +1 -0
  56. package/src/components/IconDropdown/IconDropdown.test.tsx +20 -0
  57. package/src/components/IconDropdown/IconDropdown.tsx +24 -0
  58. package/src/components/IconDropdown/index.ts +1 -0
  59. package/src/components/IconLeft/IconLeft.test.tsx +20 -0
  60. package/src/components/IconLeft/IconLeft.tsx +18 -0
  61. package/src/components/IconLeft/index.ts +1 -0
  62. package/src/components/IconRight/IconRight.test.tsx +20 -0
  63. package/src/components/IconRight/IconRight.tsx +17 -0
  64. package/src/components/IconRight/index.ts +1 -0
  65. package/src/components/Month/Month.test.tsx +216 -0
  66. package/src/components/Month/Month.tsx +53 -0
  67. package/src/components/Month/index.ts +1 -0
  68. package/src/components/MonthsDropdown/MonthsDropdown.test.tsx +99 -0
  69. package/src/components/MonthsDropdown/MonthsDropdown.tsx +75 -0
  70. package/src/components/MonthsDropdown/index.ts +1 -0
  71. package/src/components/Navigation/Navigation.test.tsx +129 -0
  72. package/src/components/Navigation/Navigation.tsx +102 -0
  73. package/src/components/Navigation/index.ts +1 -0
  74. package/src/components/Root/Root.test.tsx +123 -0
  75. package/src/components/Root/Root.tsx +58 -0
  76. package/src/components/Root/index.ts +1 -0
  77. package/src/components/Row/Row.test.tsx +69 -0
  78. package/src/components/Row/Row.tsx +51 -0
  79. package/src/components/Row/index.ts +1 -0
  80. package/src/components/Table/Table.test.tsx +42 -0
  81. package/src/components/Table/Table.tsx +60 -0
  82. package/src/components/Table/__snapshots__/Table.test.tsx.snap +1453 -0
  83. package/src/components/Table/index.ts +1 -0
  84. package/src/components/Table/utils/daysToMonthWeeks.ts +47 -0
  85. package/src/components/Table/utils/getMonthWeeks.test.ts +68 -0
  86. package/src/components/Table/utils/getMonthWeeks.ts +55 -0
  87. package/src/components/WeekNumber/WeekNumber.test.tsx +46 -0
  88. package/src/components/WeekNumber/WeekNumber.tsx +58 -0
  89. package/src/components/WeekNumber/__snapshots__/WeekNumber.test.tsx.snap +11 -0
  90. package/src/components/WeekNumber/index.ts +1 -0
  91. package/src/components/YearsDropdown/YearsDropdown.test.tsx +98 -0
  92. package/src/components/YearsDropdown/YearsDropdown.tsx +76 -0
  93. package/src/components/YearsDropdown/index.ts +1 -0
  94. package/src/contexts/DayPicker/DayPickerContext.tsx +156 -0
  95. package/src/contexts/DayPicker/defaultClassNames.ts +58 -0
  96. package/src/contexts/DayPicker/defaultContextValue.ts +37 -0
  97. package/src/contexts/DayPicker/formatters/formatCaption.test.ts +15 -0
  98. package/src/contexts/DayPicker/formatters/formatCaption.ts +12 -0
  99. package/src/contexts/DayPicker/formatters/formatDay.test.ts +7 -0
  100. package/src/contexts/DayPicker/formatters/formatDay.ts +9 -0
  101. package/src/contexts/DayPicker/formatters/formatMonthCaption.test.ts +15 -0
  102. package/src/contexts/DayPicker/formatters/formatMonthCaption.ts +12 -0
  103. package/src/contexts/DayPicker/formatters/formatWeekNumber.test.ts +5 -0
  104. package/src/contexts/DayPicker/formatters/formatWeekNumber.ts +6 -0
  105. package/src/contexts/DayPicker/formatters/formatWeekdayName.test.ts +15 -0
  106. package/src/contexts/DayPicker/formatters/formatWeekdayName.ts +12 -0
  107. package/src/contexts/DayPicker/formatters/formatYearCaption.test.ts +7 -0
  108. package/src/contexts/DayPicker/formatters/formatYearCaption.ts +11 -0
  109. package/src/contexts/DayPicker/formatters/index.ts +6 -0
  110. package/src/contexts/DayPicker/index.ts +2 -0
  111. package/src/contexts/DayPicker/labels/index.ts +7 -0
  112. package/src/contexts/DayPicker/labels/labelDay.test.ts +7 -0
  113. package/src/contexts/DayPicker/labels/labelDay.ts +10 -0
  114. package/src/contexts/DayPicker/labels/labelMonthDropdown.test.ts +5 -0
  115. package/src/contexts/DayPicker/labels/labelMonthDropdown.ts +6 -0
  116. package/src/contexts/DayPicker/labels/labelNext.test.ts +5 -0
  117. package/src/contexts/DayPicker/labels/labelNext.ts +8 -0
  118. package/src/contexts/DayPicker/labels/labelPrevious.test.ts +5 -0
  119. package/src/contexts/DayPicker/labels/labelPrevious.ts +8 -0
  120. package/src/contexts/DayPicker/labels/labelWeekNumber.test.ts +5 -0
  121. package/src/contexts/DayPicker/labels/labelWeekNumber.ts +8 -0
  122. package/src/contexts/DayPicker/labels/labelWeekday.test.ts +15 -0
  123. package/src/contexts/DayPicker/labels/labelWeekday.ts +10 -0
  124. package/src/contexts/DayPicker/labels/labelYearDropdown.test.ts +5 -0
  125. package/src/contexts/DayPicker/labels/labelYearDropdown.ts +6 -0
  126. package/src/contexts/DayPicker/useDayPicker.test.ts +297 -0
  127. package/src/contexts/DayPicker/useDayPicker.ts +17 -0
  128. package/src/contexts/DayPicker/utils/index.ts +1 -0
  129. package/src/contexts/DayPicker/utils/parseFromToProps.test.ts +47 -0
  130. package/src/contexts/DayPicker/utils/parseFromToProps.ts +32 -0
  131. package/src/contexts/Focus/FocusContext.tsx +174 -0
  132. package/src/contexts/Focus/index.ts +2 -0
  133. package/src/contexts/Focus/useFocusContext.test.ts +183 -0
  134. package/src/contexts/Focus/useFocusContext.ts +12 -0
  135. package/src/contexts/Focus/utils/getInitialFocusTarget.test.tsx +12 -0
  136. package/src/contexts/Focus/utils/getInitialFocusTarget.tsx +44 -0
  137. package/src/contexts/Modifiers/ModifiersContext.tsx +44 -0
  138. package/src/contexts/Modifiers/index.ts +2 -0
  139. package/src/contexts/Modifiers/useModifiers.test.ts +46 -0
  140. package/src/contexts/Modifiers/useModifiers.ts +17 -0
  141. package/src/contexts/Modifiers/utils/getActiveModifiers.test.ts +53 -0
  142. package/src/contexts/Modifiers/utils/getActiveModifiers.ts +33 -0
  143. package/src/contexts/Modifiers/utils/getCustomModifiers.test.ts +14 -0
  144. package/src/contexts/Modifiers/utils/getCustomModifiers.ts +14 -0
  145. package/src/contexts/Modifiers/utils/getInternalModifiers.test.ts +146 -0
  146. package/src/contexts/Modifiers/utils/getInternalModifiers.ts +58 -0
  147. package/src/contexts/Modifiers/utils/isDateInRange.test.ts +28 -0
  148. package/src/contexts/Modifiers/utils/isDateInRange.ts +27 -0
  149. package/src/contexts/Modifiers/utils/isMatch.test.ts +92 -0
  150. package/src/contexts/Modifiers/utils/isMatch.ts +76 -0
  151. package/src/contexts/Modifiers/utils/matcherToArray.test.ts +22 -0
  152. package/src/contexts/Modifiers/utils/matcherToArray.ts +14 -0
  153. package/src/contexts/Navigation/NavigationContext.tsx +84 -0
  154. package/src/contexts/Navigation/index.ts +2 -0
  155. package/src/contexts/Navigation/useNavigation.test.ts +126 -0
  156. package/src/contexts/Navigation/useNavigation.ts +12 -0
  157. package/src/contexts/Navigation/useNavigationState.test.ts +36 -0
  158. package/src/contexts/Navigation/useNavigationState.ts +25 -0
  159. package/src/contexts/Navigation/utils/getDisplayMonths.ts +31 -0
  160. package/src/contexts/Navigation/utils/getInitialMonth.test.ts +56 -0
  161. package/src/contexts/Navigation/utils/getInitialMonth.ts +24 -0
  162. package/src/contexts/Navigation/utils/getNextMonth.test.ts +75 -0
  163. package/src/contexts/Navigation/utils/getNextMonth.ts +45 -0
  164. package/src/contexts/Navigation/utils/getPreviousMonth.test.ts +55 -0
  165. package/src/contexts/Navigation/utils/getPreviousMonth.ts +44 -0
  166. package/src/contexts/RootProvider.tsx +37 -0
  167. package/src/contexts/SelectMultiple/SelectMultipleContext.tsx +135 -0
  168. package/src/contexts/SelectMultiple/index.ts +2 -0
  169. package/src/contexts/SelectMultiple/useSelectMultiple.test.ts +191 -0
  170. package/src/contexts/SelectMultiple/useSelectMultiple.ts +17 -0
  171. package/src/contexts/SelectRange/SelectRangeContext.tsx +158 -0
  172. package/src/contexts/SelectRange/index.ts +2 -0
  173. package/src/contexts/SelectRange/useSelectRange.test.ts +282 -0
  174. package/src/contexts/SelectRange/useSelectRange.ts +15 -0
  175. package/src/contexts/SelectRange/utils/addToRange.test.ts +119 -0
  176. package/src/contexts/SelectRange/utils/addToRange.ts +43 -0
  177. package/src/contexts/SelectSingle/SelectSingleContext.tsx +80 -0
  178. package/src/contexts/SelectSingle/index.ts +2 -0
  179. package/src/contexts/SelectSingle/useSelectSingle.test.ts +81 -0
  180. package/src/contexts/SelectSingle/useSelectSingle.ts +17 -0
  181. package/src/hooks/useActiveModifiers/index.ts +1 -0
  182. package/src/hooks/useActiveModifiers/useActiveModifiers.test.tsx +36 -0
  183. package/src/hooks/useActiveModifiers/useActiveModifiers.tsx +18 -0
  184. package/src/hooks/useControlledValue/index.ts +1 -0
  185. package/src/hooks/useControlledValue/useControlledValue.test.ts +68 -0
  186. package/src/hooks/useControlledValue/useControlledValue.ts +24 -0
  187. package/src/hooks/useDayEventHandlers/index.ts +1 -0
  188. package/src/hooks/useDayEventHandlers/useDayEventHandlers.test.tsx +213 -0
  189. package/src/hooks/useDayEventHandlers/useDayEventHandlers.tsx +195 -0
  190. package/src/hooks/useDayRender/index.ts +1 -0
  191. package/src/hooks/useDayRender/useDayRender.test.tsx +304 -0
  192. package/src/hooks/useDayRender/useDayRender.tsx +123 -0
  193. package/src/hooks/useDayRender/utils/getDayClassNames.test.ts +63 -0
  194. package/src/hooks/useDayRender/utils/getDayClassNames.ts +32 -0
  195. package/src/hooks/useDayRender/utils/getDayStyle.ts +19 -0
  196. package/src/hooks/useInput/index.ts +1 -0
  197. package/src/hooks/useInput/useInput.ts +175 -0
  198. package/src/hooks/useInput/utils/isValidDate.tsx +4 -0
  199. package/src/hooks/useSelectedDays/index.ts +1 -0
  200. package/src/hooks/useSelectedDays/useSelectedDays.test.ts +72 -0
  201. package/src/hooks/useSelectedDays/useSelectedDays.ts +32 -0
  202. package/src/index.ts +43 -0
  203. package/src/style.css +310 -0
  204. package/src/style.css.d.ts +38 -0
  205. package/src/types/DayPickerBase.ts +267 -0
  206. package/src/types/DayPickerDefault.ts +15 -0
  207. package/src/types/DayPickerMultiple.ts +26 -0
  208. package/src/types/DayPickerRange.ts +27 -0
  209. package/src/types/DayPickerSingle.ts +24 -0
  210. package/src/types/EventHandlers.ts +87 -0
  211. package/src/types/Formatters.ts +29 -0
  212. package/src/types/Labels.ts +36 -0
  213. package/src/types/Matchers.ts +106 -0
  214. package/src/types/Modifiers.ts +62 -0
  215. package/src/types/Styles.ts +108 -0
  216. package/tsconfig.json +24 -0
  217. package/CHANGELOG.md +0 -26
  218. package/dist/react-day-picker.min.js +0 -1
@@ -0,0 +1,1453 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`should render correctly 1`] = `
4
+ <table
5
+ class="rdp-table"
6
+ role="grid"
7
+ >
8
+ <thead
9
+ class="rdp-head"
10
+ >
11
+ <tr
12
+ class="rdp-head_row"
13
+ >
14
+ <th
15
+ class="rdp-head_cell"
16
+ scope="col"
17
+ >
18
+ <span
19
+ aria-hidden="true"
20
+ >
21
+ Su
22
+ </span>
23
+ <span
24
+ class="rdp-vhidden"
25
+ >
26
+ Sunday
27
+ </span>
28
+ </th>
29
+ <th
30
+ class="rdp-head_cell"
31
+ scope="col"
32
+ >
33
+ <span
34
+ aria-hidden="true"
35
+ >
36
+ Mo
37
+ </span>
38
+ <span
39
+ class="rdp-vhidden"
40
+ >
41
+ Monday
42
+ </span>
43
+ </th>
44
+ <th
45
+ class="rdp-head_cell"
46
+ scope="col"
47
+ >
48
+ <span
49
+ aria-hidden="true"
50
+ >
51
+ Tu
52
+ </span>
53
+ <span
54
+ class="rdp-vhidden"
55
+ >
56
+ Tuesday
57
+ </span>
58
+ </th>
59
+ <th
60
+ class="rdp-head_cell"
61
+ scope="col"
62
+ >
63
+ <span
64
+ aria-hidden="true"
65
+ >
66
+ We
67
+ </span>
68
+ <span
69
+ class="rdp-vhidden"
70
+ >
71
+ Wednesday
72
+ </span>
73
+ </th>
74
+ <th
75
+ class="rdp-head_cell"
76
+ scope="col"
77
+ >
78
+ <span
79
+ aria-hidden="true"
80
+ >
81
+ Th
82
+ </span>
83
+ <span
84
+ class="rdp-vhidden"
85
+ >
86
+ Thursday
87
+ </span>
88
+ </th>
89
+ <th
90
+ class="rdp-head_cell"
91
+ scope="col"
92
+ >
93
+ <span
94
+ aria-hidden="true"
95
+ >
96
+ Fr
97
+ </span>
98
+ <span
99
+ class="rdp-vhidden"
100
+ >
101
+ Friday
102
+ </span>
103
+ </th>
104
+ <th
105
+ class="rdp-head_cell"
106
+ scope="col"
107
+ >
108
+ <span
109
+ aria-hidden="true"
110
+ >
111
+ Sa
112
+ </span>
113
+ <span
114
+ class="rdp-vhidden"
115
+ >
116
+ Saturday
117
+ </span>
118
+ </th>
119
+ </tr>
120
+ </thead>
121
+ <tbody
122
+ class="rdp-tbody"
123
+ >
124
+ <tr
125
+ class="rdp-row"
126
+ >
127
+ <td
128
+ class="rdp-cell"
129
+ />
130
+ <td
131
+ class="rdp-cell"
132
+ />
133
+ <td
134
+ class="rdp-cell"
135
+ />
136
+ <td
137
+ class="rdp-cell"
138
+ />
139
+ <td
140
+ class="rdp-cell"
141
+ />
142
+ <td
143
+ class="rdp-cell"
144
+ />
145
+ <td
146
+ class="rdp-cell"
147
+ >
148
+ <div
149
+ class="rdp-day"
150
+ >
151
+ <span
152
+ aria-hidden="true"
153
+ >
154
+ 1
155
+ </span>
156
+ <span
157
+ class="rdp-vhidden"
158
+ >
159
+ 1st February (Saturday)
160
+ </span>
161
+ </div>
162
+ </td>
163
+ </tr>
164
+ <tr
165
+ class="rdp-row"
166
+ >
167
+ <td
168
+ class="rdp-cell"
169
+ >
170
+ <div
171
+ class="rdp-day"
172
+ >
173
+ <span
174
+ aria-hidden="true"
175
+ >
176
+ 2
177
+ </span>
178
+ <span
179
+ class="rdp-vhidden"
180
+ >
181
+ 2nd February (Sunday)
182
+ </span>
183
+ </div>
184
+ </td>
185
+ <td
186
+ class="rdp-cell"
187
+ >
188
+ <div
189
+ class="rdp-day"
190
+ >
191
+ <span
192
+ aria-hidden="true"
193
+ >
194
+ 3
195
+ </span>
196
+ <span
197
+ class="rdp-vhidden"
198
+ >
199
+ 3rd February (Monday)
200
+ </span>
201
+ </div>
202
+ </td>
203
+ <td
204
+ class="rdp-cell"
205
+ >
206
+ <div
207
+ class="rdp-day"
208
+ >
209
+ <span
210
+ aria-hidden="true"
211
+ >
212
+ 4
213
+ </span>
214
+ <span
215
+ class="rdp-vhidden"
216
+ >
217
+ 4th February (Tuesday)
218
+ </span>
219
+ </div>
220
+ </td>
221
+ <td
222
+ class="rdp-cell"
223
+ >
224
+ <div
225
+ class="rdp-day"
226
+ >
227
+ <span
228
+ aria-hidden="true"
229
+ >
230
+ 5
231
+ </span>
232
+ <span
233
+ class="rdp-vhidden"
234
+ >
235
+ 5th February (Wednesday)
236
+ </span>
237
+ </div>
238
+ </td>
239
+ <td
240
+ class="rdp-cell"
241
+ >
242
+ <div
243
+ class="rdp-day"
244
+ >
245
+ <span
246
+ aria-hidden="true"
247
+ >
248
+ 6
249
+ </span>
250
+ <span
251
+ class="rdp-vhidden"
252
+ >
253
+ 6th February (Thursday)
254
+ </span>
255
+ </div>
256
+ </td>
257
+ <td
258
+ class="rdp-cell"
259
+ >
260
+ <div
261
+ class="rdp-day"
262
+ >
263
+ <span
264
+ aria-hidden="true"
265
+ >
266
+ 7
267
+ </span>
268
+ <span
269
+ class="rdp-vhidden"
270
+ >
271
+ 7th February (Friday)
272
+ </span>
273
+ </div>
274
+ </td>
275
+ <td
276
+ class="rdp-cell"
277
+ >
278
+ <div
279
+ class="rdp-day"
280
+ >
281
+ <span
282
+ aria-hidden="true"
283
+ >
284
+ 8
285
+ </span>
286
+ <span
287
+ class="rdp-vhidden"
288
+ >
289
+ 8th February (Saturday)
290
+ </span>
291
+ </div>
292
+ </td>
293
+ </tr>
294
+ <tr
295
+ class="rdp-row"
296
+ >
297
+ <td
298
+ class="rdp-cell"
299
+ >
300
+ <div
301
+ class="rdp-day"
302
+ >
303
+ <span
304
+ aria-hidden="true"
305
+ >
306
+ 9
307
+ </span>
308
+ <span
309
+ class="rdp-vhidden"
310
+ >
311
+ 9th February (Sunday)
312
+ </span>
313
+ </div>
314
+ </td>
315
+ <td
316
+ class="rdp-cell"
317
+ >
318
+ <div
319
+ class="rdp-day"
320
+ >
321
+ <span
322
+ aria-hidden="true"
323
+ >
324
+ 10
325
+ </span>
326
+ <span
327
+ class="rdp-vhidden"
328
+ >
329
+ 10th February (Monday)
330
+ </span>
331
+ </div>
332
+ </td>
333
+ <td
334
+ class="rdp-cell"
335
+ >
336
+ <div
337
+ class="rdp-day"
338
+ >
339
+ <span
340
+ aria-hidden="true"
341
+ >
342
+ 11
343
+ </span>
344
+ <span
345
+ class="rdp-vhidden"
346
+ >
347
+ 11th February (Tuesday)
348
+ </span>
349
+ </div>
350
+ </td>
351
+ <td
352
+ class="rdp-cell"
353
+ >
354
+ <div
355
+ class="rdp-day"
356
+ >
357
+ <span
358
+ aria-hidden="true"
359
+ >
360
+ 12
361
+ </span>
362
+ <span
363
+ class="rdp-vhidden"
364
+ >
365
+ 12th February (Wednesday)
366
+ </span>
367
+ </div>
368
+ </td>
369
+ <td
370
+ class="rdp-cell"
371
+ >
372
+ <div
373
+ class="rdp-day"
374
+ >
375
+ <span
376
+ aria-hidden="true"
377
+ >
378
+ 13
379
+ </span>
380
+ <span
381
+ class="rdp-vhidden"
382
+ >
383
+ 13th February (Thursday)
384
+ </span>
385
+ </div>
386
+ </td>
387
+ <td
388
+ class="rdp-cell"
389
+ >
390
+ <div
391
+ class="rdp-day"
392
+ >
393
+ <span
394
+ aria-hidden="true"
395
+ >
396
+ 14
397
+ </span>
398
+ <span
399
+ class="rdp-vhidden"
400
+ >
401
+ 14th February (Friday)
402
+ </span>
403
+ </div>
404
+ </td>
405
+ <td
406
+ class="rdp-cell"
407
+ >
408
+ <div
409
+ class="rdp-day"
410
+ >
411
+ <span
412
+ aria-hidden="true"
413
+ >
414
+ 15
415
+ </span>
416
+ <span
417
+ class="rdp-vhidden"
418
+ >
419
+ 15th February (Saturday)
420
+ </span>
421
+ </div>
422
+ </td>
423
+ </tr>
424
+ <tr
425
+ class="rdp-row"
426
+ >
427
+ <td
428
+ class="rdp-cell"
429
+ >
430
+ <div
431
+ class="rdp-day"
432
+ >
433
+ <span
434
+ aria-hidden="true"
435
+ >
436
+ 16
437
+ </span>
438
+ <span
439
+ class="rdp-vhidden"
440
+ >
441
+ 16th February (Sunday)
442
+ </span>
443
+ </div>
444
+ </td>
445
+ <td
446
+ class="rdp-cell"
447
+ >
448
+ <div
449
+ class="rdp-day"
450
+ >
451
+ <span
452
+ aria-hidden="true"
453
+ >
454
+ 17
455
+ </span>
456
+ <span
457
+ class="rdp-vhidden"
458
+ >
459
+ 17th February (Monday)
460
+ </span>
461
+ </div>
462
+ </td>
463
+ <td
464
+ class="rdp-cell"
465
+ >
466
+ <div
467
+ class="rdp-day"
468
+ >
469
+ <span
470
+ aria-hidden="true"
471
+ >
472
+ 18
473
+ </span>
474
+ <span
475
+ class="rdp-vhidden"
476
+ >
477
+ 18th February (Tuesday)
478
+ </span>
479
+ </div>
480
+ </td>
481
+ <td
482
+ class="rdp-cell"
483
+ >
484
+ <div
485
+ class="rdp-day"
486
+ >
487
+ <span
488
+ aria-hidden="true"
489
+ >
490
+ 19
491
+ </span>
492
+ <span
493
+ class="rdp-vhidden"
494
+ >
495
+ 19th February (Wednesday)
496
+ </span>
497
+ </div>
498
+ </td>
499
+ <td
500
+ class="rdp-cell"
501
+ >
502
+ <div
503
+ class="rdp-day"
504
+ >
505
+ <span
506
+ aria-hidden="true"
507
+ >
508
+ 20
509
+ </span>
510
+ <span
511
+ class="rdp-vhidden"
512
+ >
513
+ 20th February (Thursday)
514
+ </span>
515
+ </div>
516
+ </td>
517
+ <td
518
+ class="rdp-cell"
519
+ >
520
+ <div
521
+ class="rdp-day"
522
+ >
523
+ <span
524
+ aria-hidden="true"
525
+ >
526
+ 21
527
+ </span>
528
+ <span
529
+ class="rdp-vhidden"
530
+ >
531
+ 21st February (Friday)
532
+ </span>
533
+ </div>
534
+ </td>
535
+ <td
536
+ class="rdp-cell"
537
+ >
538
+ <div
539
+ class="rdp-day"
540
+ >
541
+ <span
542
+ aria-hidden="true"
543
+ >
544
+ 22
545
+ </span>
546
+ <span
547
+ class="rdp-vhidden"
548
+ >
549
+ 22nd February (Saturday)
550
+ </span>
551
+ </div>
552
+ </td>
553
+ </tr>
554
+ <tr
555
+ class="rdp-row"
556
+ >
557
+ <td
558
+ class="rdp-cell"
559
+ >
560
+ <div
561
+ class="rdp-day"
562
+ >
563
+ <span
564
+ aria-hidden="true"
565
+ >
566
+ 23
567
+ </span>
568
+ <span
569
+ class="rdp-vhidden"
570
+ >
571
+ 23rd February (Sunday)
572
+ </span>
573
+ </div>
574
+ </td>
575
+ <td
576
+ class="rdp-cell"
577
+ >
578
+ <div
579
+ class="rdp-day"
580
+ >
581
+ <span
582
+ aria-hidden="true"
583
+ >
584
+ 24
585
+ </span>
586
+ <span
587
+ class="rdp-vhidden"
588
+ >
589
+ 24th February (Monday)
590
+ </span>
591
+ </div>
592
+ </td>
593
+ <td
594
+ class="rdp-cell"
595
+ >
596
+ <div
597
+ class="rdp-day"
598
+ >
599
+ <span
600
+ aria-hidden="true"
601
+ >
602
+ 25
603
+ </span>
604
+ <span
605
+ class="rdp-vhidden"
606
+ >
607
+ 25th February (Tuesday)
608
+ </span>
609
+ </div>
610
+ </td>
611
+ <td
612
+ class="rdp-cell"
613
+ >
614
+ <div
615
+ class="rdp-day"
616
+ >
617
+ <span
618
+ aria-hidden="true"
619
+ >
620
+ 26
621
+ </span>
622
+ <span
623
+ class="rdp-vhidden"
624
+ >
625
+ 26th February (Wednesday)
626
+ </span>
627
+ </div>
628
+ </td>
629
+ <td
630
+ class="rdp-cell"
631
+ >
632
+ <div
633
+ class="rdp-day"
634
+ >
635
+ <span
636
+ aria-hidden="true"
637
+ >
638
+ 27
639
+ </span>
640
+ <span
641
+ class="rdp-vhidden"
642
+ >
643
+ 27th February (Thursday)
644
+ </span>
645
+ </div>
646
+ </td>
647
+ <td
648
+ class="rdp-cell"
649
+ >
650
+ <div
651
+ class="rdp-day"
652
+ >
653
+ <span
654
+ aria-hidden="true"
655
+ >
656
+ 28
657
+ </span>
658
+ <span
659
+ class="rdp-vhidden"
660
+ >
661
+ 28th February (Friday)
662
+ </span>
663
+ </div>
664
+ </td>
665
+ <td
666
+ class="rdp-cell"
667
+ >
668
+ <div
669
+ class="rdp-day"
670
+ >
671
+ <span
672
+ aria-hidden="true"
673
+ >
674
+ 29
675
+ </span>
676
+ <span
677
+ class="rdp-vhidden"
678
+ >
679
+ 29th February (Saturday)
680
+ </span>
681
+ </div>
682
+ </td>
683
+ </tr>
684
+ </tbody>
685
+ </table>
686
+ `;
687
+
688
+ exports[`when showing the week numbers should render correctly 1`] = `
689
+ <table
690
+ class="rdp-table"
691
+ role="grid"
692
+ >
693
+ <thead
694
+ class="rdp-head"
695
+ >
696
+ <tr
697
+ class="rdp-head_row"
698
+ >
699
+ <th
700
+ class="rdp-head_cell"
701
+ scope="col"
702
+ />
703
+ <th
704
+ class="rdp-head_cell"
705
+ scope="col"
706
+ >
707
+ <span
708
+ aria-hidden="true"
709
+ >
710
+ Su
711
+ </span>
712
+ <span
713
+ class="rdp-vhidden"
714
+ >
715
+ Sunday
716
+ </span>
717
+ </th>
718
+ <th
719
+ class="rdp-head_cell"
720
+ scope="col"
721
+ >
722
+ <span
723
+ aria-hidden="true"
724
+ >
725
+ Mo
726
+ </span>
727
+ <span
728
+ class="rdp-vhidden"
729
+ >
730
+ Monday
731
+ </span>
732
+ </th>
733
+ <th
734
+ class="rdp-head_cell"
735
+ scope="col"
736
+ >
737
+ <span
738
+ aria-hidden="true"
739
+ >
740
+ Tu
741
+ </span>
742
+ <span
743
+ class="rdp-vhidden"
744
+ >
745
+ Tuesday
746
+ </span>
747
+ </th>
748
+ <th
749
+ class="rdp-head_cell"
750
+ scope="col"
751
+ >
752
+ <span
753
+ aria-hidden="true"
754
+ >
755
+ We
756
+ </span>
757
+ <span
758
+ class="rdp-vhidden"
759
+ >
760
+ Wednesday
761
+ </span>
762
+ </th>
763
+ <th
764
+ class="rdp-head_cell"
765
+ scope="col"
766
+ >
767
+ <span
768
+ aria-hidden="true"
769
+ >
770
+ Th
771
+ </span>
772
+ <span
773
+ class="rdp-vhidden"
774
+ >
775
+ Thursday
776
+ </span>
777
+ </th>
778
+ <th
779
+ class="rdp-head_cell"
780
+ scope="col"
781
+ >
782
+ <span
783
+ aria-hidden="true"
784
+ >
785
+ Fr
786
+ </span>
787
+ <span
788
+ class="rdp-vhidden"
789
+ >
790
+ Friday
791
+ </span>
792
+ </th>
793
+ <th
794
+ class="rdp-head_cell"
795
+ scope="col"
796
+ >
797
+ <span
798
+ aria-hidden="true"
799
+ >
800
+ Sa
801
+ </span>
802
+ <span
803
+ class="rdp-vhidden"
804
+ >
805
+ Saturday
806
+ </span>
807
+ </th>
808
+ </tr>
809
+ </thead>
810
+ <tbody
811
+ class="rdp-tbody"
812
+ >
813
+ <tr
814
+ class="rdp-row"
815
+ >
816
+ <td
817
+ class="rdp-cell"
818
+ >
819
+ <span
820
+ class="rdp-weeknumber"
821
+ >
822
+ 5
823
+ </span>
824
+ </td>
825
+ <td
826
+ class="rdp-cell"
827
+ />
828
+ <td
829
+ class="rdp-cell"
830
+ />
831
+ <td
832
+ class="rdp-cell"
833
+ />
834
+ <td
835
+ class="rdp-cell"
836
+ />
837
+ <td
838
+ class="rdp-cell"
839
+ />
840
+ <td
841
+ class="rdp-cell"
842
+ />
843
+ <td
844
+ class="rdp-cell"
845
+ >
846
+ <div
847
+ class="rdp-day"
848
+ >
849
+ <span
850
+ aria-hidden="true"
851
+ >
852
+ 1
853
+ </span>
854
+ <span
855
+ class="rdp-vhidden"
856
+ >
857
+ 1st February (Saturday)
858
+ </span>
859
+ </div>
860
+ </td>
861
+ </tr>
862
+ <tr
863
+ class="rdp-row"
864
+ >
865
+ <td
866
+ class="rdp-cell"
867
+ >
868
+ <span
869
+ class="rdp-weeknumber"
870
+ >
871
+ 6
872
+ </span>
873
+ </td>
874
+ <td
875
+ class="rdp-cell"
876
+ >
877
+ <div
878
+ class="rdp-day"
879
+ >
880
+ <span
881
+ aria-hidden="true"
882
+ >
883
+ 2
884
+ </span>
885
+ <span
886
+ class="rdp-vhidden"
887
+ >
888
+ 2nd February (Sunday)
889
+ </span>
890
+ </div>
891
+ </td>
892
+ <td
893
+ class="rdp-cell"
894
+ >
895
+ <div
896
+ class="rdp-day"
897
+ >
898
+ <span
899
+ aria-hidden="true"
900
+ >
901
+ 3
902
+ </span>
903
+ <span
904
+ class="rdp-vhidden"
905
+ >
906
+ 3rd February (Monday)
907
+ </span>
908
+ </div>
909
+ </td>
910
+ <td
911
+ class="rdp-cell"
912
+ >
913
+ <div
914
+ class="rdp-day"
915
+ >
916
+ <span
917
+ aria-hidden="true"
918
+ >
919
+ 4
920
+ </span>
921
+ <span
922
+ class="rdp-vhidden"
923
+ >
924
+ 4th February (Tuesday)
925
+ </span>
926
+ </div>
927
+ </td>
928
+ <td
929
+ class="rdp-cell"
930
+ >
931
+ <div
932
+ class="rdp-day"
933
+ >
934
+ <span
935
+ aria-hidden="true"
936
+ >
937
+ 5
938
+ </span>
939
+ <span
940
+ class="rdp-vhidden"
941
+ >
942
+ 5th February (Wednesday)
943
+ </span>
944
+ </div>
945
+ </td>
946
+ <td
947
+ class="rdp-cell"
948
+ >
949
+ <div
950
+ class="rdp-day"
951
+ >
952
+ <span
953
+ aria-hidden="true"
954
+ >
955
+ 6
956
+ </span>
957
+ <span
958
+ class="rdp-vhidden"
959
+ >
960
+ 6th February (Thursday)
961
+ </span>
962
+ </div>
963
+ </td>
964
+ <td
965
+ class="rdp-cell"
966
+ >
967
+ <div
968
+ class="rdp-day"
969
+ >
970
+ <span
971
+ aria-hidden="true"
972
+ >
973
+ 7
974
+ </span>
975
+ <span
976
+ class="rdp-vhidden"
977
+ >
978
+ 7th February (Friday)
979
+ </span>
980
+ </div>
981
+ </td>
982
+ <td
983
+ class="rdp-cell"
984
+ >
985
+ <div
986
+ class="rdp-day"
987
+ >
988
+ <span
989
+ aria-hidden="true"
990
+ >
991
+ 8
992
+ </span>
993
+ <span
994
+ class="rdp-vhidden"
995
+ >
996
+ 8th February (Saturday)
997
+ </span>
998
+ </div>
999
+ </td>
1000
+ </tr>
1001
+ <tr
1002
+ class="rdp-row"
1003
+ >
1004
+ <td
1005
+ class="rdp-cell"
1006
+ >
1007
+ <span
1008
+ class="rdp-weeknumber"
1009
+ >
1010
+ 7
1011
+ </span>
1012
+ </td>
1013
+ <td
1014
+ class="rdp-cell"
1015
+ >
1016
+ <div
1017
+ class="rdp-day"
1018
+ >
1019
+ <span
1020
+ aria-hidden="true"
1021
+ >
1022
+ 9
1023
+ </span>
1024
+ <span
1025
+ class="rdp-vhidden"
1026
+ >
1027
+ 9th February (Sunday)
1028
+ </span>
1029
+ </div>
1030
+ </td>
1031
+ <td
1032
+ class="rdp-cell"
1033
+ >
1034
+ <div
1035
+ class="rdp-day"
1036
+ >
1037
+ <span
1038
+ aria-hidden="true"
1039
+ >
1040
+ 10
1041
+ </span>
1042
+ <span
1043
+ class="rdp-vhidden"
1044
+ >
1045
+ 10th February (Monday)
1046
+ </span>
1047
+ </div>
1048
+ </td>
1049
+ <td
1050
+ class="rdp-cell"
1051
+ >
1052
+ <div
1053
+ class="rdp-day"
1054
+ >
1055
+ <span
1056
+ aria-hidden="true"
1057
+ >
1058
+ 11
1059
+ </span>
1060
+ <span
1061
+ class="rdp-vhidden"
1062
+ >
1063
+ 11th February (Tuesday)
1064
+ </span>
1065
+ </div>
1066
+ </td>
1067
+ <td
1068
+ class="rdp-cell"
1069
+ >
1070
+ <div
1071
+ class="rdp-day"
1072
+ >
1073
+ <span
1074
+ aria-hidden="true"
1075
+ >
1076
+ 12
1077
+ </span>
1078
+ <span
1079
+ class="rdp-vhidden"
1080
+ >
1081
+ 12th February (Wednesday)
1082
+ </span>
1083
+ </div>
1084
+ </td>
1085
+ <td
1086
+ class="rdp-cell"
1087
+ >
1088
+ <div
1089
+ class="rdp-day"
1090
+ >
1091
+ <span
1092
+ aria-hidden="true"
1093
+ >
1094
+ 13
1095
+ </span>
1096
+ <span
1097
+ class="rdp-vhidden"
1098
+ >
1099
+ 13th February (Thursday)
1100
+ </span>
1101
+ </div>
1102
+ </td>
1103
+ <td
1104
+ class="rdp-cell"
1105
+ >
1106
+ <div
1107
+ class="rdp-day"
1108
+ >
1109
+ <span
1110
+ aria-hidden="true"
1111
+ >
1112
+ 14
1113
+ </span>
1114
+ <span
1115
+ class="rdp-vhidden"
1116
+ >
1117
+ 14th February (Friday)
1118
+ </span>
1119
+ </div>
1120
+ </td>
1121
+ <td
1122
+ class="rdp-cell"
1123
+ >
1124
+ <div
1125
+ class="rdp-day"
1126
+ >
1127
+ <span
1128
+ aria-hidden="true"
1129
+ >
1130
+ 15
1131
+ </span>
1132
+ <span
1133
+ class="rdp-vhidden"
1134
+ >
1135
+ 15th February (Saturday)
1136
+ </span>
1137
+ </div>
1138
+ </td>
1139
+ </tr>
1140
+ <tr
1141
+ class="rdp-row"
1142
+ >
1143
+ <td
1144
+ class="rdp-cell"
1145
+ >
1146
+ <span
1147
+ class="rdp-weeknumber"
1148
+ >
1149
+ 8
1150
+ </span>
1151
+ </td>
1152
+ <td
1153
+ class="rdp-cell"
1154
+ >
1155
+ <div
1156
+ class="rdp-day"
1157
+ >
1158
+ <span
1159
+ aria-hidden="true"
1160
+ >
1161
+ 16
1162
+ </span>
1163
+ <span
1164
+ class="rdp-vhidden"
1165
+ >
1166
+ 16th February (Sunday)
1167
+ </span>
1168
+ </div>
1169
+ </td>
1170
+ <td
1171
+ class="rdp-cell"
1172
+ >
1173
+ <div
1174
+ class="rdp-day"
1175
+ >
1176
+ <span
1177
+ aria-hidden="true"
1178
+ >
1179
+ 17
1180
+ </span>
1181
+ <span
1182
+ class="rdp-vhidden"
1183
+ >
1184
+ 17th February (Monday)
1185
+ </span>
1186
+ </div>
1187
+ </td>
1188
+ <td
1189
+ class="rdp-cell"
1190
+ >
1191
+ <div
1192
+ class="rdp-day"
1193
+ >
1194
+ <span
1195
+ aria-hidden="true"
1196
+ >
1197
+ 18
1198
+ </span>
1199
+ <span
1200
+ class="rdp-vhidden"
1201
+ >
1202
+ 18th February (Tuesday)
1203
+ </span>
1204
+ </div>
1205
+ </td>
1206
+ <td
1207
+ class="rdp-cell"
1208
+ >
1209
+ <div
1210
+ class="rdp-day"
1211
+ >
1212
+ <span
1213
+ aria-hidden="true"
1214
+ >
1215
+ 19
1216
+ </span>
1217
+ <span
1218
+ class="rdp-vhidden"
1219
+ >
1220
+ 19th February (Wednesday)
1221
+ </span>
1222
+ </div>
1223
+ </td>
1224
+ <td
1225
+ class="rdp-cell"
1226
+ >
1227
+ <div
1228
+ class="rdp-day"
1229
+ >
1230
+ <span
1231
+ aria-hidden="true"
1232
+ >
1233
+ 20
1234
+ </span>
1235
+ <span
1236
+ class="rdp-vhidden"
1237
+ >
1238
+ 20th February (Thursday)
1239
+ </span>
1240
+ </div>
1241
+ </td>
1242
+ <td
1243
+ class="rdp-cell"
1244
+ >
1245
+ <div
1246
+ class="rdp-day"
1247
+ >
1248
+ <span
1249
+ aria-hidden="true"
1250
+ >
1251
+ 21
1252
+ </span>
1253
+ <span
1254
+ class="rdp-vhidden"
1255
+ >
1256
+ 21st February (Friday)
1257
+ </span>
1258
+ </div>
1259
+ </td>
1260
+ <td
1261
+ class="rdp-cell"
1262
+ >
1263
+ <div
1264
+ class="rdp-day"
1265
+ >
1266
+ <span
1267
+ aria-hidden="true"
1268
+ >
1269
+ 22
1270
+ </span>
1271
+ <span
1272
+ class="rdp-vhidden"
1273
+ >
1274
+ 22nd February (Saturday)
1275
+ </span>
1276
+ </div>
1277
+ </td>
1278
+ </tr>
1279
+ <tr
1280
+ class="rdp-row"
1281
+ >
1282
+ <td
1283
+ class="rdp-cell"
1284
+ >
1285
+ <span
1286
+ class="rdp-weeknumber"
1287
+ >
1288
+ 9
1289
+ </span>
1290
+ </td>
1291
+ <td
1292
+ class="rdp-cell"
1293
+ >
1294
+ <div
1295
+ class="rdp-day"
1296
+ >
1297
+ <span
1298
+ aria-hidden="true"
1299
+ >
1300
+ 23
1301
+ </span>
1302
+ <span
1303
+ class="rdp-vhidden"
1304
+ >
1305
+ 23rd February (Sunday)
1306
+ </span>
1307
+ </div>
1308
+ </td>
1309
+ <td
1310
+ class="rdp-cell"
1311
+ >
1312
+ <div
1313
+ class="rdp-day"
1314
+ >
1315
+ <span
1316
+ aria-hidden="true"
1317
+ >
1318
+ 24
1319
+ </span>
1320
+ <span
1321
+ class="rdp-vhidden"
1322
+ >
1323
+ 24th February (Monday)
1324
+ </span>
1325
+ </div>
1326
+ </td>
1327
+ <td
1328
+ class="rdp-cell"
1329
+ >
1330
+ <div
1331
+ class="rdp-day"
1332
+ >
1333
+ <span
1334
+ aria-hidden="true"
1335
+ >
1336
+ 25
1337
+ </span>
1338
+ <span
1339
+ class="rdp-vhidden"
1340
+ >
1341
+ 25th February (Tuesday)
1342
+ </span>
1343
+ </div>
1344
+ </td>
1345
+ <td
1346
+ class="rdp-cell"
1347
+ >
1348
+ <div
1349
+ class="rdp-day"
1350
+ >
1351
+ <span
1352
+ aria-hidden="true"
1353
+ >
1354
+ 26
1355
+ </span>
1356
+ <span
1357
+ class="rdp-vhidden"
1358
+ >
1359
+ 26th February (Wednesday)
1360
+ </span>
1361
+ </div>
1362
+ </td>
1363
+ <td
1364
+ class="rdp-cell"
1365
+ >
1366
+ <div
1367
+ class="rdp-day"
1368
+ >
1369
+ <span
1370
+ aria-hidden="true"
1371
+ >
1372
+ 27
1373
+ </span>
1374
+ <span
1375
+ class="rdp-vhidden"
1376
+ >
1377
+ 27th February (Thursday)
1378
+ </span>
1379
+ </div>
1380
+ </td>
1381
+ <td
1382
+ class="rdp-cell"
1383
+ >
1384
+ <div
1385
+ class="rdp-day"
1386
+ >
1387
+ <span
1388
+ aria-hidden="true"
1389
+ >
1390
+ 28
1391
+ </span>
1392
+ <span
1393
+ class="rdp-vhidden"
1394
+ >
1395
+ 28th February (Friday)
1396
+ </span>
1397
+ </div>
1398
+ </td>
1399
+ <td
1400
+ class="rdp-cell"
1401
+ >
1402
+ <div
1403
+ class="rdp-day"
1404
+ >
1405
+ <span
1406
+ aria-hidden="true"
1407
+ >
1408
+ 29
1409
+ </span>
1410
+ <span
1411
+ class="rdp-vhidden"
1412
+ >
1413
+ 29th February (Saturday)
1414
+ </span>
1415
+ </div>
1416
+ </td>
1417
+ </tr>
1418
+ </tbody>
1419
+ </table>
1420
+ `;
1421
+
1422
+ exports[`when using custom components should render correctly 1`] = `
1423
+ <table
1424
+ class="rdp-table"
1425
+ role="grid"
1426
+ >
1427
+ <div>
1428
+ CustomHead
1429
+ </div>
1430
+ <tbody
1431
+ class="rdp-tbody"
1432
+ >
1433
+ <div>
1434
+ CustomRow
1435
+ </div>
1436
+ <div>
1437
+ CustomRow
1438
+ </div>
1439
+ <div>
1440
+ CustomRow
1441
+ </div>
1442
+ <div>
1443
+ CustomRow
1444
+ </div>
1445
+ <div>
1446
+ CustomRow
1447
+ </div>
1448
+ </tbody>
1449
+ <div>
1450
+ CustomFooter
1451
+ </div>
1452
+ </table>
1453
+ `;