@bloom-housing/ui-components 4.0.1-alpha.7 → 4.0.1-alpha.73

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 (62) hide show
  1. package/.jest/setup-tests.js +8 -0
  2. package/CHANGELOG.md +610 -0
  3. package/README.md +1 -1
  4. package/index.ts +7 -4
  5. package/package.json +5 -5
  6. package/src/actions/Button.tsx +0 -1
  7. package/src/authentication/AuthContext.ts +32 -3
  8. package/src/blocks/ActionBlock.scss +1 -1
  9. package/src/blocks/ImageCard.scss +10 -8
  10. package/src/blocks/ViewItem.tsx +6 -2
  11. package/src/config/NavigationContext.tsx +4 -0
  12. package/src/forms/DOBField.tsx +5 -3
  13. package/src/forms/DateField.tsx +2 -2
  14. package/src/forms/Dropzone.tsx +1 -1
  15. package/src/forms/Field.tsx +9 -6
  16. package/src/forms/FieldGroup.tsx +29 -16
  17. package/src/forms/Select.tsx +2 -2
  18. package/src/forms/TimeField.tsx +2 -2
  19. package/src/global/forms.scss +2 -3
  20. package/src/global/headers.scss +7 -3
  21. package/src/global/lists.scss +4 -5
  22. package/src/global/tables.scss +3 -1
  23. package/src/headers/PageHeader.tsx +5 -1
  24. package/src/helpers/dateToString.ts +4 -2
  25. package/src/helpers/tableSummaries.tsx +1 -1
  26. package/src/helpers/useIntersect.ts +48 -0
  27. package/src/icons/Icon.tsx +8 -1
  28. package/src/icons/Icons.tsx +14 -0
  29. package/src/locales/es.json +108 -2
  30. package/src/locales/general.json +173 -10
  31. package/src/locales/vi.json +109 -3
  32. package/src/locales/zh.json +108 -2
  33. package/src/notifications/AlertBox.scss +2 -1
  34. package/src/notifications/AlertBox.tsx +3 -1
  35. package/src/notifications/AlertNotice.tsx +6 -1
  36. package/src/notifications/ApplicationStatus.scss +2 -7
  37. package/src/notifications/ApplicationStatus.tsx +10 -13
  38. package/src/overlays/Modal.tsx +2 -1
  39. package/src/overlays/Overlay.scss +8 -0
  40. package/src/overlays/Overlay.tsx +2 -1
  41. package/src/page_components/forgot-password/FormForgotPassword.tsx +113 -0
  42. package/src/page_components/listing/ListingCard.tsx +31 -21
  43. package/src/page_components/listing/ListingMap.scss +4 -0
  44. package/src/page_components/listing/ListingMap.tsx +13 -3
  45. package/src/page_components/listing/ListingsGroup.scss +42 -17
  46. package/src/page_components/listing/ListingsGroup.tsx +15 -17
  47. package/src/page_components/listing/UnitTables.tsx +44 -13
  48. package/src/page_components/listing/listing_sidebar/GetApplication.tsx +1 -3
  49. package/src/page_components/listing/listing_sidebar/ListingUpdated.tsx +2 -2
  50. package/src/page_components/listing/listing_sidebar/SubmitApplication.tsx +49 -39
  51. package/src/page_components/listing/listing_sidebar/events/DownloadLotteryResults.tsx +21 -22
  52. package/src/page_components/listing/listing_sidebar/events/EventSection.tsx +54 -0
  53. package/src/page_components/sign-in/FormSignIn.tsx +14 -29
  54. package/src/page_components/sign-in/FormSignInAddPhone.tsx +87 -0
  55. package/src/page_components/sign-in/FormSignInErrorBox.tsx +43 -0
  56. package/src/page_components/sign-in/FormSignInMFACode.tsx +94 -0
  57. package/src/page_components/sign-in/FormSignInMFAType.tsx +93 -0
  58. package/src/tables/StackedTable.tsx +1 -1
  59. package/src/page_components/listing/listing_sidebar/events/EventDateSection.tsx +0 -24
  60. package/src/page_components/listing/listing_sidebar/events/LotteryResultsEvent.tsx +0 -26
  61. package/src/page_components/listing/listing_sidebar/events/OpenHouseEvent.tsx +0 -27
  62. package/src/page_components/listing/listing_sidebar/events/PublicLotteryEvent.tsx +0 -22
@@ -18,6 +18,14 @@ window.matchMedia = jest.fn().mockImplementation((query) => {
18
18
  }
19
19
  })
20
20
 
21
+ window.IntersectionObserver = class {
22
+ constructor(root, options) {
23
+ // no-op
24
+ }
25
+ observe = jest.fn()
26
+ disconnect = jest.fn()
27
+ }
28
+
21
29
  addTranslation(general)
22
30
 
23
31
  configure({ testIdAttribute: "data-test-id" })
package/CHANGELOG.md CHANGED
@@ -3,6 +3,616 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.0.1-alpha.73](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.72...@bloom-housing/ui-components@4.0.1-alpha.73) (2022-02-18)
7
+
8
+ **Note:** Version bump only for package @bloom-housing/ui-components
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.0.1-alpha.72](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.71...@bloom-housing/ui-components@4.0.1-alpha.72) (2022-02-17)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * support text wrapping in ApplicationStatus ([#2504](https://github.com/bloom-housing/bloom/issues/2504)) ([d730fa9](https://github.com/bloom-housing/bloom/commit/d730fa9fc6df7d9e99bb5b7fad65b1ab743776b4))
20
+
21
+
22
+
23
+
24
+
25
+ ## [4.0.1-alpha.71](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.70...@bloom-housing/ui-components@4.0.1-alpha.71) (2022-02-17)
26
+
27
+ **Note:** Version bump only for package @bloom-housing/ui-components
28
+
29
+
30
+
31
+
32
+
33
+ ## [4.0.1-alpha.70](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.69...@bloom-housing/ui-components@4.0.1-alpha.70) (2022-02-17)
34
+
35
+ **Note:** Version bump only for package @bloom-housing/ui-components
36
+
37
+
38
+
39
+
40
+
41
+ ## [4.0.1-alpha.69](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.68...@bloom-housing/ui-components@4.0.1-alpha.69) (2022-02-16)
42
+
43
+ **Note:** Version bump only for package @bloom-housing/ui-components
44
+
45
+
46
+
47
+
48
+
49
+ ## [4.0.1-alpha.68](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.67...@bloom-housing/ui-components@4.0.1-alpha.68) (2022-02-16)
50
+
51
+ **Note:** Version bump only for package @bloom-housing/ui-components
52
+
53
+
54
+
55
+
56
+
57
+ ## [4.0.1-alpha.67](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.66...@bloom-housing/ui-components@4.0.1-alpha.67) (2022-02-16)
58
+
59
+
60
+ ### Features
61
+
62
+ * alert-box line-height ([3e8aafb](https://github.com/bloom-housing/bloom/commit/3e8aafb8272c05670c81aeef5809d88f1d1ba18e))
63
+
64
+
65
+
66
+
67
+
68
+ ## [4.0.1-alpha.66](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.65...@bloom-housing/ui-components@4.0.1-alpha.66) (2022-02-16)
69
+
70
+
71
+ ### Bug Fixes
72
+
73
+ * use the correct AlertBox component for preview listing notice ([#2497](https://github.com/bloom-housing/bloom/issues/2497)) ([f985c44](https://github.com/bloom-housing/bloom/commit/f985c444aaed31504a1e1ce7173c6e15194e2af6))
74
+
75
+
76
+
77
+
78
+
79
+ ## [4.0.1-alpha.65](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.64...@bloom-housing/ui-components@4.0.1-alpha.65) (2022-02-16)
80
+
81
+
82
+ ### Bug Fixes
83
+
84
+ * add icons to unit accordions if enabled ([#2372](https://github.com/bloom-housing/bloom/issues/2372)) ([#2489](https://github.com/bloom-housing/bloom/issues/2489)) ([55e4dc9](https://github.com/bloom-housing/bloom/commit/55e4dc9a95b9fe9125153b43556fd64d06506f24))
85
+
86
+
87
+
88
+
89
+
90
+ ## [4.0.1-alpha.64](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.63...@bloom-housing/ui-components@4.0.1-alpha.64) (2022-02-16)
91
+
92
+ **Note:** Version bump only for package @bloom-housing/ui-components
93
+
94
+
95
+
96
+
97
+
98
+ ## [4.0.1-alpha.63](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.62...@bloom-housing/ui-components@4.0.1-alpha.63) (2022-02-15)
99
+
100
+ **Note:** Version bump only for package @bloom-housing/ui-components
101
+
102
+
103
+
104
+
105
+
106
+ ## [4.0.1-alpha.62](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.61...@bloom-housing/ui-components@4.0.1-alpha.62) (2022-02-15)
107
+
108
+
109
+ ### Code Refactoring
110
+
111
+ * remove backend dependencies from events components, consolidate ([#2495](https://github.com/bloom-housing/bloom/issues/2495)) ([d884689](https://github.com/bloom-housing/bloom/commit/d88468965bc67c74b8b3eaced20c77472e90331f))
112
+
113
+
114
+ ### BREAKING CHANGES
115
+
116
+ * consolidated all event section components in one new component, uptake will require removing the deprecated components and uptaking EventSection
117
+
118
+
119
+
120
+
121
+
122
+ ## [4.0.1-alpha.61](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.60...@bloom-housing/ui-components@4.0.1-alpha.61) (2022-02-15)
123
+
124
+ **Note:** Version bump only for package @bloom-housing/ui-components
125
+
126
+
127
+
128
+
129
+
130
+ ## [4.0.1-alpha.60](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.59...@bloom-housing/ui-components@4.0.1-alpha.60) (2022-02-15)
131
+
132
+ **Note:** Version bump only for package @bloom-housing/ui-components
133
+
134
+
135
+
136
+
137
+
138
+ ## [4.0.1-alpha.59](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.58...@bloom-housing/ui-components@4.0.1-alpha.59) (2022-02-15)
139
+
140
+
141
+ ### Features
142
+
143
+ * **backend:** add partners portal users multi factor authentication ([#2291](https://github.com/bloom-housing/bloom/issues/2291)) ([5b10098](https://github.com/bloom-housing/bloom/commit/5b10098d8668f9f42c60e90236db16d6cc517793)), closes [#2461](https://github.com/bloom-housing/bloom/issues/2461) [#2485](https://github.com/bloom-housing/bloom/issues/2485)
144
+
145
+
146
+
147
+
148
+
149
+ ## [4.0.1-alpha.58](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.57...@bloom-housing/ui-components@4.0.1-alpha.58) (2022-02-14)
150
+
151
+
152
+ ### Bug Fixes
153
+
154
+ * remove shared-helpers dependency from FormSignIn ([#2499](https://github.com/bloom-housing/bloom/issues/2499)) ([de4e696](https://github.com/bloom-housing/bloom/commit/de4e696957935de7f7834ef5bbe5c6edd3262a8b))
155
+
156
+
157
+
158
+
159
+
160
+ ## [4.0.1-alpha.57](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.56...@bloom-housing/ui-components@4.0.1-alpha.57) (2022-02-14)
161
+
162
+
163
+ ### Bug Fixes
164
+
165
+ * remove shared-helpers dependency from FormForgotPassword ([#2498](https://github.com/bloom-housing/bloom/issues/2498)) ([779707d](https://github.com/bloom-housing/bloom/commit/779707d9087b3330a1b4cd65d5bde31521fa7d6a))
166
+
167
+
168
+
169
+
170
+
171
+ ## [4.0.1-alpha.56](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.55...@bloom-housing/ui-components@4.0.1-alpha.56) (2022-02-12)
172
+
173
+
174
+ ### Bug Fixes
175
+
176
+ * allow headers in responsive mobile tables to wrap text ([#2496](https://github.com/bloom-housing/bloom/issues/2496)) ([7d5a73e](https://github.com/bloom-housing/bloom/commit/7d5a73e5ee2213fb126fced86d94a55668941ed9))
177
+
178
+
179
+
180
+
181
+
182
+ ## [4.0.1-alpha.55](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.54...@bloom-housing/ui-components@4.0.1-alpha.55) (2022-02-10)
183
+
184
+
185
+ ### Bug Fixes
186
+
187
+ * image gradient obscures image on mobile, is harsh in safari ([#2487](https://github.com/bloom-housing/bloom/issues/2487)) ([78785ff](https://github.com/bloom-housing/bloom/commit/78785ff0646e94fa751584ee090eacaec1994e36))
188
+
189
+
190
+
191
+
192
+
193
+ ## [4.0.1-alpha.54](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.53...@bloom-housing/ui-components@4.0.1-alpha.54) (2022-02-10)
194
+
195
+ **Note:** Version bump only for package @bloom-housing/ui-components
196
+
197
+
198
+
199
+
200
+
201
+ ## [4.0.1-alpha.53](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.52...@bloom-housing/ui-components@4.0.1-alpha.53) (2022-02-10)
202
+
203
+
204
+ ### Features
205
+
206
+ * only show MapBox map when it's in the viewport ([#2470](https://github.com/bloom-housing/bloom/issues/2470)) ([86f9d6c](https://github.com/bloom-housing/bloom/commit/86f9d6cccd7de7e635ae4eab5b1e1358faf834e4))
207
+
208
+
209
+
210
+
211
+
212
+ ## [4.0.1-alpha.52](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.51...@bloom-housing/ui-components@4.0.1-alpha.52) (2022-02-10)
213
+
214
+ **Note:** Version bump only for package @bloom-housing/ui-components
215
+
216
+
217
+
218
+
219
+
220
+ ## [4.0.1-alpha.51](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.50...@bloom-housing/ui-components@4.0.1-alpha.51) (2022-02-09)
221
+
222
+ **Note:** Version bump only for package @bloom-housing/ui-components
223
+
224
+
225
+
226
+
227
+
228
+ ## [4.0.1-alpha.50](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.49...@bloom-housing/ui-components@4.0.1-alpha.50) (2022-02-09)
229
+
230
+ **Note:** Version bump only for package @bloom-housing/ui-components
231
+
232
+
233
+
234
+
235
+
236
+ ## [4.0.1-alpha.49](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.48...@bloom-housing/ui-components@4.0.1-alpha.49) (2022-02-09)
237
+
238
+ **Note:** Version bump only for package @bloom-housing/ui-components
239
+
240
+
241
+
242
+
243
+
244
+ ## [4.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.47...@bloom-housing/ui-components@4.0.1-alpha.48) (2022-02-09)
245
+
246
+ **Note:** Version bump only for package @bloom-housing/ui-components
247
+
248
+
249
+
250
+
251
+
252
+ ## [4.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.46...@bloom-housing/ui-components@4.0.1-alpha.47) (2022-02-09)
253
+
254
+ **Note:** Version bump only for package @bloom-housing/ui-components
255
+
256
+
257
+
258
+
259
+
260
+ ## [4.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.45...@bloom-housing/ui-components@4.0.1-alpha.46) (2022-02-08)
261
+
262
+ **Note:** Version bump only for package @bloom-housing/ui-components
263
+
264
+
265
+
266
+
267
+
268
+ ## [4.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.44...@bloom-housing/ui-components@4.0.1-alpha.45) (2022-02-07)
269
+
270
+ **Note:** Version bump only for package @bloom-housing/ui-components
271
+
272
+
273
+
274
+
275
+
276
+ ## [4.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.43...@bloom-housing/ui-components@4.0.1-alpha.44) (2022-02-02)
277
+
278
+
279
+ ### Bug Fixes
280
+
281
+ * unit accordion radio button not showing default value ([#2451](https://github.com/bloom-housing/bloom/issues/2451)) ([4ed8103](https://github.com/bloom-housing/bloom/commit/4ed81039b9130d0433b11df2bdabc495ce2b9f24))
282
+
283
+
284
+
285
+
286
+
287
+ ## [4.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.42...@bloom-housing/ui-components@4.0.1-alpha.43) (2022-02-02)
288
+
289
+ **Note:** Version bump only for package @bloom-housing/ui-components
290
+
291
+
292
+
293
+
294
+
295
+ ## [4.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.41...@bloom-housing/ui-components@4.0.1-alpha.42) (2022-02-02)
296
+
297
+ **Note:** Version bump only for package @bloom-housing/ui-components
298
+
299
+
300
+
301
+
302
+
303
+ ## [4.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.40...@bloom-housing/ui-components@4.0.1-alpha.41) (2022-02-02)
304
+
305
+ **Note:** Version bump only for package @bloom-housing/ui-components
306
+
307
+
308
+
309
+
310
+
311
+ ## [4.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.39...@bloom-housing/ui-components@4.0.1-alpha.40) (2022-02-01)
312
+
313
+ **Note:** Version bump only for package @bloom-housing/ui-components
314
+
315
+
316
+
317
+
318
+
319
+ ## [4.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.38...@bloom-housing/ui-components@4.0.1-alpha.39) (2022-02-01)
320
+
321
+ **Note:** Version bump only for package @bloom-housing/ui-components
322
+
323
+
324
+
325
+
326
+
327
+ ## [4.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.37...@bloom-housing/ui-components@4.0.1-alpha.38) (2022-02-01)
328
+
329
+ **Note:** Version bump only for package @bloom-housing/ui-components
330
+
331
+
332
+
333
+
334
+
335
+ ## [4.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.36...@bloom-housing/ui-components@4.0.1-alpha.37) (2022-02-01)
336
+
337
+ **Note:** Version bump only for package @bloom-housing/ui-components
338
+
339
+
340
+
341
+
342
+
343
+ ## [4.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.35...@bloom-housing/ui-components@4.0.1-alpha.36) (2022-02-01)
344
+
345
+ **Note:** Version bump only for package @bloom-housing/ui-components
346
+
347
+
348
+
349
+
350
+
351
+ ## [4.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.34...@bloom-housing/ui-components@4.0.1-alpha.35) (2022-02-01)
352
+
353
+
354
+ ### Features
355
+
356
+ * partners terms page ([#2440](https://github.com/bloom-housing/bloom/issues/2440)) ([63105bc](https://github.com/bloom-housing/bloom/commit/63105bcedfe371a4a9995e25b1e5aba67d06ad0c))
357
+
358
+
359
+
360
+
361
+
362
+ ## [4.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.33...@bloom-housing/ui-components@4.0.1-alpha.34) (2022-02-01)
363
+
364
+ **Note:** Version bump only for package @bloom-housing/ui-components
365
+
366
+
367
+
368
+
369
+
370
+ ## [4.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.32...@bloom-housing/ui-components@4.0.1-alpha.33) (2022-02-01)
371
+
372
+ **Note:** Version bump only for package @bloom-housing/ui-components
373
+
374
+
375
+
376
+
377
+
378
+ ## [4.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.31...@bloom-housing/ui-components@4.0.1-alpha.32) (2022-02-01)
379
+
380
+ **Note:** Version bump only for package @bloom-housing/ui-components
381
+
382
+
383
+
384
+
385
+
386
+ ## [4.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.30...@bloom-housing/ui-components@4.0.1-alpha.31) (2022-01-31)
387
+
388
+ **Note:** Version bump only for package @bloom-housing/ui-components
389
+
390
+
391
+
392
+
393
+
394
+ ## [4.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.29...@bloom-housing/ui-components@4.0.1-alpha.30) (2022-01-31)
395
+
396
+ **Note:** Version bump only for package @bloom-housing/ui-components
397
+
398
+
399
+
400
+
401
+
402
+ ## [4.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.28...@bloom-housing/ui-components@4.0.1-alpha.29) (2022-01-27)
403
+
404
+
405
+ ### Features
406
+
407
+ * outdated password messaging updates ([b14e19d](https://github.com/bloom-housing/bloom/commit/b14e19d43099af2ba721d8aaaeeb2be886d05111))
408
+
409
+
410
+
411
+
412
+
413
+ ## [4.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.27...@bloom-housing/ui-components@4.0.1-alpha.28) (2022-01-26)
414
+
415
+ **Note:** Version bump only for package @bloom-housing/ui-components
416
+
417
+
418
+
419
+
420
+
421
+ ## [4.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.26...@bloom-housing/ui-components@4.0.1-alpha.27) (2022-01-26)
422
+
423
+
424
+ ### Bug Fixes
425
+
426
+ * Fix infinite page width ([#2434](https://github.com/bloom-housing/bloom/issues/2434)) ([12ac594](https://github.com/bloom-housing/bloom/commit/12ac594a7aa5a04370b20b19d6fff3189c0cfeee)), closes [#2374](https://github.com/bloom-housing/bloom/issues/2374)
427
+
428
+
429
+
430
+
431
+
432
+ ## [4.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.25...@bloom-housing/ui-components@4.0.1-alpha.26) (2022-01-24)
433
+
434
+ **Note:** Version bump only for package @bloom-housing/ui-components
435
+
436
+
437
+
438
+
439
+
440
+ ## [4.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.24...@bloom-housing/ui-components@4.0.1-alpha.25) (2022-01-24)
441
+
442
+ **Note:** Version bump only for package @bloom-housing/ui-components
443
+
444
+
445
+
446
+
447
+
448
+ ## [4.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.23...@bloom-housing/ui-components@4.0.1-alpha.24) (2022-01-20)
449
+
450
+
451
+ ### Features
452
+
453
+ * listing card takes optional children ([#2407](https://github.com/bloom-housing/bloom/issues/2407)) ([3c73a11](https://github.com/bloom-housing/bloom/commit/3c73a1144748fca6d50e5e0b220230eb8bf48dc6))
454
+
455
+
456
+
457
+
458
+
459
+ ## [4.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.22...@bloom-housing/ui-components@4.0.1-alpha.23) (2022-01-14)
460
+
461
+
462
+ ### Bug Fixes
463
+
464
+ * patches translations for preferences ([#2410](https://github.com/bloom-housing/bloom/issues/2410)) ([7906e6b](https://github.com/bloom-housing/bloom/commit/7906e6bc035fab4deea79ea51833a0ef29926d45))
465
+
466
+
467
+
468
+
469
+
470
+ ## [4.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.21...@bloom-housing/ui-components@4.0.1-alpha.22) (2022-01-13)
471
+
472
+ **Note:** Version bump only for package @bloom-housing/ui-components
473
+
474
+
475
+
476
+
477
+
478
+ ## [4.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.20...@bloom-housing/ui-components@4.0.1-alpha.21) (2022-01-13)
479
+
480
+
481
+ ### Bug Fixes
482
+
483
+ * dates showing as invalid in send by mail section ([#2362](https://github.com/bloom-housing/bloom/issues/2362)) ([3567388](https://github.com/bloom-housing/bloom/commit/35673882d87e2b524b2c94d1fb7b40c9d777f0a3))
484
+
485
+
486
+ ### BREAKING CHANGES
487
+
488
+ * remove applicationDueTime field and consolidated into applicationDueDate
489
+
490
+
491
+
492
+
493
+
494
+ ## [4.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.19...@bloom-housing/ui-components@4.0.1-alpha.20) (2022-01-13)
495
+
496
+ **Note:** Version bump only for package @bloom-housing/ui-components
497
+
498
+
499
+
500
+
501
+
502
+ ## [4.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.18...@bloom-housing/ui-components@4.0.1-alpha.19) (2022-01-11)
503
+
504
+
505
+ ### Bug Fixes
506
+
507
+ * use drag n drop ([a354904](https://github.com/bloom-housing/bloom/commit/a3549045d4f0da64692318f84f0336f1287ad48a))
508
+
509
+
510
+
511
+
512
+
513
+ ## [4.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.17...@bloom-housing/ui-components@4.0.1-alpha.18) (2022-01-08)
514
+
515
+
516
+ ### Bug Fixes
517
+
518
+ * ensure dayjs parsing strings will work as expected ([eb44939](https://github.com/bloom-housing/bloom/commit/eb449395ebea3a3b4b58eb217df1e1313c722a0d))
519
+
520
+
521
+
522
+
523
+
524
+ ## [4.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.16...@bloom-housing/ui-components@4.0.1-alpha.17) (2022-01-07)
525
+
526
+
527
+ ### Bug Fixes
528
+
529
+ * listings group expandable section css updates ([#2377](https://github.com/bloom-housing/bloom/issues/2377)) ([fba77ef](https://github.com/bloom-housing/bloom/commit/fba77efc25ccb213a0e18a8b58ddf8ada07fbb8c))
530
+
531
+
532
+
533
+
534
+
535
+ ## [4.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.15...@bloom-housing/ui-components@4.0.1-alpha.16) (2022-01-07)
536
+
537
+ **Note:** Version bump only for package @bloom-housing/ui-components
538
+
539
+
540
+
541
+
542
+
543
+ ## [4.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.14...@bloom-housing/ui-components@4.0.1-alpha.15) (2022-01-07)
544
+
545
+ **Note:** Version bump only for package @bloom-housing/ui-components
546
+
547
+
548
+
549
+
550
+
551
+ ## [4.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.13...@bloom-housing/ui-components@4.0.1-alpha.14) (2022-01-04)
552
+
553
+
554
+ ### Bug Fixes
555
+
556
+ * move type declarations out of shared-helpers ([#2356](https://github.com/bloom-housing/bloom/issues/2356)) ([2fd4a87](https://github.com/bloom-housing/bloom/commit/2fd4a8743414df113ec0f653c143fd16e8c57c55))
557
+
558
+
559
+
560
+
561
+
562
+ ## [4.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.12...@bloom-housing/ui-components@4.0.1-alpha.13) (2022-01-04)
563
+
564
+ **Note:** Version bump only for package @bloom-housing/ui-components
565
+
566
+
567
+
568
+
569
+
570
+ ## [4.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.11...@bloom-housing/ui-components@4.0.1-alpha.12) (2022-01-04)
571
+
572
+ **Note:** Version bump only for package @bloom-housing/ui-components
573
+
574
+
575
+
576
+
577
+
578
+ ## [4.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.10...@bloom-housing/ui-components@4.0.1-alpha.11) (2022-01-03)
579
+
580
+ **Note:** Version bump only for package @bloom-housing/ui-components
581
+
582
+
583
+
584
+
585
+
586
+ ## [4.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.9...@bloom-housing/ui-components@4.0.1-alpha.10) (2022-01-03)
587
+
588
+
589
+ ### Bug Fixes
590
+
591
+ * remove next dependency from ui-components ([#2352](https://github.com/bloom-housing/bloom/issues/2352)) ([136e8a1](https://github.com/bloom-housing/bloom/commit/136e8a1af2b4f285644caa9a18d60121f4d82566))
592
+
593
+
594
+
595
+
596
+
597
+ ## [4.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.8...@bloom-housing/ui-components@4.0.1-alpha.9) (2022-01-03)
598
+
599
+ **Note:** Version bump only for package @bloom-housing/ui-components
600
+
601
+
602
+
603
+
604
+
605
+ ## [4.0.1-alpha.8](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.1-alpha.7...@bloom-housing/ui-components@4.0.1-alpha.8) (2022-01-03)
606
+
607
+
608
+ ### Bug Fixes
609
+
610
+ * apply action block style to button class not component ([#2348](https://github.com/bloom-housing/bloom/issues/2348)) ([cd79ee5](https://github.com/bloom-housing/bloom/commit/cd79ee558554815f4b8421740e4850484a97ad21))
611
+
612
+
613
+
614
+
615
+
6
616
  ## [4.0.1-alpha.7](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.0.0...@bloom-housing/ui-components@4.0.1-alpha.7) (2022-01-03)
7
617
 
8
618
 
package/README.md CHANGED
@@ -91,7 +91,7 @@ Vendor Plugins
91
91
 
92
92
  ### Accessibility Considerations
93
93
 
94
- - Storybook A11t test suite runs on all PRs
94
+ - Storybook A11Y test suite runs on all PRs
95
95
  - Storybook AXE panel when looking at an individual component can be useful
96
96
  - Keyboard accessibility
97
97
  - Consider aria roles, focus state
package/index.ts CHANGED
@@ -66,6 +66,7 @@ export * from "./src/helpers/formatYesNoLabel"
66
66
  export * from "./src/helpers/getTranslationWithArguments"
67
67
  export * from "./src/helpers/preferences"
68
68
  export * from "./src/helpers/resolveObject"
69
+ export * from "./src/helpers/useIntersect"
69
70
  export * from "./src/helpers/useMutate"
70
71
  export * from "./src/helpers/tableSummaries"
71
72
 
@@ -115,11 +116,13 @@ export * from "./src/page_components/listing/listing_sidebar/SubmitApplication"
115
116
  export * from "./src/page_components/listing/listing_sidebar/Waitlist"
116
117
  export * from "./src/page_components/listing/listing_sidebar/WhatToExpect"
117
118
  export * from "./src/page_components/listing/listing_sidebar/events/DownloadLotteryResults"
118
- export * from "./src/page_components/listing/listing_sidebar/events/OpenHouseEvent"
119
- export * from "./src/page_components/listing/listing_sidebar/events/LotteryResultsEvent"
120
- export * from "./src/page_components/listing/listing_sidebar/events/PublicLotteryEvent"
121
- export * from "./src/page_components/listing/listing_sidebar/events/EventDateSection"
119
+ export * from "./src/page_components/listing/listing_sidebar/events/EventSection"
122
120
  export * from "./src/page_components/sign-in/FormSignIn"
121
+ export * from "./src/page_components/sign-in/FormSignInMFAType"
122
+ export * from "./src/page_components/sign-in/FormSignInMFACode"
123
+ export * from "./src/page_components/sign-in/FormSignInAddPhone"
124
+ export * from "./src/page_components/sign-in/FormSignInErrorBox"
125
+ export * from "./src/page_components/forgot-password/FormForgotPassword"
123
126
 
124
127
  /* Responsive Wrappers */
125
128
  export * from "./src/sections/ResponsiveWrappers"