@bloom-housing/ui-components 3.0.1-alpha.9 → 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.
Files changed (52) hide show
  1. package/.jest/setup-tests.js +3 -0
  2. package/CHANGELOG.md +382 -0
  3. package/index.ts +1 -8
  4. package/jest.config.js +0 -1
  5. package/package.json +4 -6
  6. package/src/actions/Button.tsx +6 -0
  7. package/src/actions/LinkButton.tsx +7 -2
  8. package/src/blocks/DashBlock.tsx +6 -1
  9. package/src/blocks/ViewItem.tsx +2 -1
  10. package/src/forms/DOBField.tsx +3 -0
  11. package/src/forms/DateField.tsx +4 -0
  12. package/src/forms/Field.tsx +3 -0
  13. package/src/forms/FieldGroup.tsx +100 -16
  14. package/src/forms/HouseholdMemberForm.tsx +2 -1
  15. package/src/forms/PhoneField.tsx +2 -1
  16. package/src/forms/Select.tsx +4 -0
  17. package/src/forms/TimeField.tsx +6 -0
  18. package/src/global/forms.scss +1 -0
  19. package/src/headers/Hero.scss +7 -0
  20. package/src/headers/Hero.tsx +3 -3
  21. package/src/headers/PageHeader.tsx +2 -2
  22. package/src/headers/SiteHeader.scss +6 -5
  23. package/src/icons/Icon.tsx +2 -1
  24. package/src/icons/Icons.tsx +7 -2
  25. package/src/locales/es.json +53 -6
  26. package/src/locales/general.json +188 -18
  27. package/src/locales/general_OLD.json +1 -1
  28. package/src/locales/missing-translations.ts +2 -0
  29. package/src/locales/tl.json +5 -0
  30. package/src/locales/vi.json +51 -5
  31. package/src/locales/zh.json +53 -7
  32. package/src/navigation/ProgressNav.tsx +5 -3
  33. package/src/notifications/AlertBox.tsx +1 -1
  34. package/src/notifications/ErrorMessage.tsx +6 -1
  35. package/src/overlays/Modal.scss +4 -1
  36. package/src/overlays/Modal.tsx +5 -6
  37. package/src/page_components/listing/AdditionalFees.tsx +2 -1
  38. package/src/page_components/listing/ListingCard.tsx +1 -1
  39. package/src/page_components/listing/listing_sidebar/GetApplication.tsx +8 -1
  40. package/src/page_components/listing/listing_sidebar/SubmitApplication.tsx +13 -3
  41. package/src/page_components/listing/listing_sidebar/Waitlist.tsx +31 -62
  42. package/src/page_components/listing/listing_sidebar/events/DownloadLotteryResults.tsx +4 -7
  43. package/src/tables/MinimalTable.tsx +2 -0
  44. package/src/tables/StandardTable.tsx +2 -1
  45. package/tsconfig.json +0 -1
  46. package/src/helpers/blankApplication.ts +0 -111
  47. package/src/helpers/localeRoute.tsx +0 -13
  48. package/src/helpers/nextjs.ts +0 -7
  49. package/src/helpers/occupancyFormatting.tsx +0 -46
  50. package/src/helpers/pdfs.ts +0 -19
  51. package/src/helpers/photos.ts +0 -19
  52. package/src/helpers/unitTypes.ts +0 -42
@@ -1,4 +1,5 @@
1
1
  import "@testing-library/jest-dom/extend-expect"
2
+ import { configure } from "@testing-library/dom"
2
3
 
3
4
  import { addTranslation } from "../src/helpers/translator"
4
5
  import general from "../src/locales/general.json"
@@ -18,3 +19,5 @@ window.matchMedia = jest.fn().mockImplementation((query) => {
18
19
  })
19
20
 
20
21
  addTranslation(general)
22
+
23
+ configure({ testIdAttribute: "data-test-id" })
package/CHANGELOG.md CHANGED
@@ -3,6 +3,388 @@
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.0](https://github.com/seanmalbert/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.48...@bloom-housing/ui-components@4.0.0) (2021-12-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * removes more closed listing application paths ([#2319](https://github.com/seanmalbert/bloom/issues/2319)) ([ff50205](https://github.com/seanmalbert/bloom/commit/ff50205f371ebd63d07168b290733d0f1e2d493c))
12
+
13
+
14
+ ### Code Refactoring
15
+
16
+ * removing helpers from ui-components that are backend dependent ([#2108](https://github.com/seanmalbert/bloom/issues/2108)) ([1d0c1f3](https://github.com/seanmalbert/bloom/commit/1d0c1f340781a3ba76c89462d8bee954dd40b889))
17
+
18
+
19
+ ### Features
20
+
21
+ * adds updating open listing modal ([#2288](https://github.com/seanmalbert/bloom/issues/2288)) ([4f6945f](https://github.com/seanmalbert/bloom/commit/4f6945f04d797fad1b3140bcdc74b134ea42810a))
22
+ * make page header title optional ([6ce7707](https://github.com/seanmalbert/bloom/commit/6ce770790120fe3d472bca2a937a9b9d3faaa943))
23
+
24
+
25
+ ### BREAKING CHANGES
26
+
27
+ * moved some helpers from ui-components to shared-helpers
28
+
29
+
30
+
31
+
32
+
33
+ ## [3.0.1-alpha.48](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.47...@bloom-housing/ui-components@3.0.1-alpha.48) (2021-12-15)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * add mailThin icon to stories ([ba8400b](https://github.com/bloom-housing/bloom/commit/ba8400bed4e9d653f85ec38ef4bca3b74df371dd))
39
+ * make mailThin background transparent ([87b372b](https://github.com/bloom-housing/bloom/commit/87b372b28e1b44c5a450544a2d15f09a84de2ebb))
40
+
41
+
42
+
43
+
44
+
45
+ ## [3.0.1-alpha.47](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.46...@bloom-housing/ui-components@3.0.1-alpha.47) (2021-12-15)
46
+
47
+ **Note:** Version bump only for package @bloom-housing/ui-components
48
+
49
+
50
+
51
+
52
+
53
+ ## [3.0.1-alpha.46](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.45...@bloom-housing/ui-components@3.0.1-alpha.46) (2021-12-15)
54
+
55
+ **Note:** Version bump only for package @bloom-housing/ui-components
56
+
57
+
58
+
59
+
60
+
61
+ ## [3.0.1-alpha.45](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.44...@bloom-housing/ui-components@3.0.1-alpha.45) (2021-12-14)
62
+
63
+ **Note:** Version bump only for package @bloom-housing/ui-components
64
+
65
+
66
+
67
+
68
+
69
+ ## [3.0.1-alpha.44](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.43...@bloom-housing/ui-components@3.0.1-alpha.44) (2021-12-14)
70
+
71
+ **Note:** Version bump only for package @bloom-housing/ui-components
72
+
73
+
74
+
75
+
76
+
77
+ ## [3.0.1-alpha.43](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.42...@bloom-housing/ui-components@3.0.1-alpha.43) (2021-12-13)
78
+
79
+ **Note:** Version bump only for package @bloom-housing/ui-components
80
+
81
+
82
+
83
+
84
+
85
+ ## [3.0.1-alpha.42](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.40...@bloom-housing/ui-components@3.0.1-alpha.42) (2021-12-13)
86
+
87
+
88
+ ### Bug Fixes
89
+
90
+ * fix hero button width with secondary button ([#2306](https://github.com/bloom-housing/bloom/issues/2306)) ([929ac8e](https://github.com/bloom-housing/bloom/commit/929ac8e7fd30718a77a10277323abf1604a45a19))
91
+ * mobile notice text wrap issue ([#2308](https://github.com/bloom-housing/bloom/issues/2308)) ([47fdd7e](https://github.com/bloom-housing/bloom/commit/47fdd7ea0e15ec50888cb00f1caa11df269c9e84))
92
+ * versioning issues ([#2311](https://github.com/bloom-housing/bloom/issues/2311)) ([0b1d143](https://github.com/bloom-housing/bloom/commit/0b1d143ab8b17add9d52533560f28d7a1f6dfd3d))
93
+
94
+
95
+
96
+
97
+
98
+ ## [3.0.1-alpha.40](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.39...@bloom-housing/ui-components@3.0.1-alpha.40) (2021-12-10)
99
+
100
+ **Note:** Version bump only for package @bloom-housing/ui-components
101
+
102
+
103
+
104
+
105
+
106
+ ## [3.0.1-alpha.39](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.38...@bloom-housing/ui-components@3.0.1-alpha.39) (2021-12-09)
107
+
108
+ **Note:** Version bump only for package @bloom-housing/ui-components
109
+
110
+
111
+
112
+
113
+
114
+ ## [3.0.1-alpha.38](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.37...@bloom-housing/ui-components@3.0.1-alpha.38) (2021-12-09)
115
+
116
+ **Note:** Version bump only for package @bloom-housing/ui-components
117
+
118
+
119
+
120
+
121
+
122
+ ## [3.0.1-alpha.37](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.36...@bloom-housing/ui-components@3.0.1-alpha.37) (2021-12-09)
123
+
124
+ **Note:** Version bump only for package @bloom-housing/ui-components
125
+
126
+
127
+
128
+
129
+
130
+ ## [3.0.1-alpha.36](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.35...@bloom-housing/ui-components@3.0.1-alpha.36) (2021-12-09)
131
+
132
+ **Note:** Version bump only for package @bloom-housing/ui-components
133
+
134
+
135
+
136
+
137
+
138
+ ## [3.0.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.34...@bloom-housing/ui-components@3.0.1-alpha.35) (2021-12-08)
139
+
140
+ **Note:** Version bump only for package @bloom-housing/ui-components
141
+
142
+
143
+
144
+
145
+
146
+ ## [3.0.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.33...@bloom-housing/ui-components@3.0.1-alpha.34) (2021-12-07)
147
+
148
+
149
+ ### Bug Fixes
150
+
151
+ * account translations ([#2278](https://github.com/bloom-housing/bloom/issues/2278)) ([1420282](https://github.com/bloom-housing/bloom/commit/1420282ec0de17b8629f2a7dd6c1149f7a1f8894))
152
+
153
+
154
+
155
+
156
+
157
+ ## [3.0.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.32...@bloom-housing/ui-components@3.0.1-alpha.33) (2021-12-07)
158
+
159
+
160
+ ### Features
161
+
162
+ * overrides fallback to english, tagalog support ([#2262](https://github.com/bloom-housing/bloom/issues/2262)) ([679ab9b](https://github.com/bloom-housing/bloom/commit/679ab9b1816d5934f48f02ca5f5696952ef88ae7))
163
+
164
+
165
+
166
+
167
+
168
+ ## [3.0.1-alpha.32](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.31...@bloom-housing/ui-components@3.0.1-alpha.32) (2021-12-07)
169
+
170
+
171
+ ### Bug Fixes
172
+
173
+ * Fix modal styles on mobile ([#2280](https://github.com/bloom-housing/bloom/issues/2280)) ([95f45e5](https://github.com/bloom-housing/bloom/commit/95f45e5a6d2c38c512f59d8cb35847cab59dc8bb)), closes [#2253](https://github.com/bloom-housing/bloom/issues/2253)
174
+
175
+
176
+
177
+
178
+
179
+ ## [3.0.1-alpha.31](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.30...@bloom-housing/ui-components@3.0.1-alpha.31) (2021-12-06)
180
+
181
+ **Note:** Version bump only for package @bloom-housing/ui-components
182
+
183
+
184
+
185
+
186
+
187
+ ## [3.0.1-alpha.30](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.29...@bloom-housing/ui-components@3.0.1-alpha.30) (2021-12-03)
188
+
189
+ **Note:** Version bump only for package @bloom-housing/ui-components
190
+
191
+
192
+
193
+
194
+
195
+ ## [3.0.1-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.28...@bloom-housing/ui-components@3.0.1-alpha.29) (2021-12-03)
196
+
197
+ **Note:** Version bump only for package @bloom-housing/ui-components
198
+
199
+
200
+
201
+
202
+
203
+ ## [3.0.1-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.27...@bloom-housing/ui-components@3.0.1-alpha.28) (2021-12-03)
204
+
205
+ **Note:** Version bump only for package @bloom-housing/ui-components
206
+
207
+
208
+
209
+
210
+
211
+ ## [3.0.1-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.26...@bloom-housing/ui-components@3.0.1-alpha.27) (2021-12-01)
212
+
213
+ **Note:** Version bump only for package @bloom-housing/ui-components
214
+
215
+
216
+
217
+
218
+
219
+ ## [3.0.1-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.25...@bloom-housing/ui-components@3.0.1-alpha.26) (2021-12-01)
220
+
221
+ **Note:** Version bump only for package @bloom-housing/ui-components
222
+
223
+
224
+
225
+
226
+
227
+ ## [3.0.1-alpha.25](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.24...@bloom-housing/ui-components@3.0.1-alpha.25) (2021-11-30)
228
+
229
+ **Note:** Version bump only for package @bloom-housing/ui-components
230
+
231
+
232
+
233
+
234
+
235
+ ## [3.0.1-alpha.24](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.23...@bloom-housing/ui-components@3.0.1-alpha.24) (2021-11-29)
236
+
237
+
238
+ ### Bug Fixes
239
+
240
+ * guard against 0 output ([0ea9012](https://github.com/bloom-housing/bloom/commit/0ea9012fdac02fb1cb4357abec2ec69633902654))
241
+ * remove bold style from current waitlist size ([2e2f414](https://github.com/bloom-housing/bloom/commit/2e2f4141e62c8544c0828b29de0b99bb97abb201))
242
+ * show waitlist values even if they're zero ([6a35e67](https://github.com/bloom-housing/bloom/commit/6a35e679f142105e40719e89bda3d957e3200e1d))
243
+ * simpler conditionals ([f3e588d](https://github.com/bloom-housing/bloom/commit/f3e588d5e6dd0a39d1aed99ef6eba0054540ed14))
244
+ * waitlist: handle both null and undefined ([90fd369](https://github.com/bloom-housing/bloom/commit/90fd369b471c7f9baa0a1d58f452159449fe6fcf))
245
+
246
+
247
+ ### Features
248
+
249
+ * simplify Waitlist component and use more flexible schema ([96df149](https://github.com/bloom-housing/bloom/commit/96df1496f377ddfa6f0e6c016c84954b6a43ff4a))
250
+
251
+
252
+
253
+
254
+
255
+ ## [3.0.1-alpha.23](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.22...@bloom-housing/ui-components@3.0.1-alpha.23) (2021-11-29)
256
+
257
+ **Note:** Version bump only for package @bloom-housing/ui-components
258
+
259
+
260
+
261
+
262
+
263
+ ## [3.0.1-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.21...@bloom-housing/ui-components@3.0.1-alpha.22) (2021-11-23)
264
+
265
+
266
+ ### Bug Fixes
267
+
268
+ * remove alameda reference in demographics ([#2209](https://github.com/bloom-housing/bloom/issues/2209)) ([7d5991c](https://github.com/bloom-housing/bloom/commit/7d5991cbf6dbe0b61f2b14d265e87ce3687f743d))
269
+
270
+
271
+
272
+
273
+
274
+ ## [3.0.1-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.20...@bloom-housing/ui-components@3.0.1-alpha.21) (2021-11-23)
275
+
276
+
277
+ ### Bug Fixes
278
+
279
+ * change the yes/no radio text to be more descriptive ([#2208](https://github.com/bloom-housing/bloom/issues/2208)) ([0c46054](https://github.com/bloom-housing/bloom/commit/0c46054574535523d6f217bb0677bbe732b8945f))
280
+
281
+
282
+
283
+
284
+
285
+ ## [3.0.1-alpha.20](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.19...@bloom-housing/ui-components@3.0.1-alpha.20) (2021-11-23)
286
+
287
+
288
+ ### Bug Fixes
289
+
290
+ * add ariaLabel prop to Button component ([509ddc8](https://github.com/bloom-housing/bloom/commit/509ddc898ba44c05e26f8ed8c777f1ba456eeee5))
291
+
292
+
293
+
294
+
295
+
296
+ ## [3.0.1-alpha.19](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.18...@bloom-housing/ui-components@3.0.1-alpha.19) (2021-11-23)
297
+
298
+
299
+ ### Bug Fixes
300
+
301
+ * add ariaHidden to Icon component ([c7bb86a](https://github.com/bloom-housing/bloom/commit/c7bb86aec6fd5ad386c7ca50087d0113b14503be))
302
+
303
+
304
+
305
+
306
+
307
+ ## [3.0.1-alpha.18](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.17...@bloom-housing/ui-components@3.0.1-alpha.18) (2021-11-23)
308
+
309
+
310
+ ### Features
311
+
312
+ * new demographics sub-race questions ([#2109](https://github.com/bloom-housing/bloom/issues/2109)) ([9ab8926](https://github.com/bloom-housing/bloom/commit/9ab892694c1ad2fa8890b411b3b32af68ade1fc3))
313
+
314
+
315
+
316
+
317
+
318
+ ## [3.0.1-alpha.17](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.16...@bloom-housing/ui-components@3.0.1-alpha.17) (2021-11-22)
319
+
320
+ **Note:** Version bump only for package @bloom-housing/ui-components
321
+
322
+
323
+
324
+
325
+
326
+ ## [3.0.1-alpha.16](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.15...@bloom-housing/ui-components@3.0.1-alpha.16) (2021-11-22)
327
+
328
+ **Note:** Version bump only for package @bloom-housing/ui-components
329
+
330
+
331
+
332
+
333
+
334
+ ## [3.0.1-alpha.15](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.14...@bloom-housing/ui-components@3.0.1-alpha.15) (2021-11-16)
335
+
336
+ **Note:** Version bump only for package @bloom-housing/ui-components
337
+
338
+
339
+
340
+
341
+
342
+ ## [3.0.1-alpha.14](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.13...@bloom-housing/ui-components@3.0.1-alpha.14) (2021-11-16)
343
+
344
+
345
+ ### Bug Fixes
346
+
347
+ * preference cleanup for avance ([d0aebbc](https://github.com/bloom-housing/bloom/commit/d0aebbcd334dfffc4a7a1a39e9964c90155c5bfb))
348
+
349
+
350
+
351
+
352
+
353
+ ## [3.0.1-alpha.13](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.12...@bloom-housing/ui-components@3.0.1-alpha.13) (2021-11-16)
354
+
355
+ **Note:** Version bump only for package @bloom-housing/ui-components
356
+
357
+
358
+
359
+
360
+
361
+ ## [3.0.1-alpha.12](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.11...@bloom-housing/ui-components@3.0.1-alpha.12) (2021-11-16)
362
+
363
+ **Note:** Version bump only for package @bloom-housing/ui-components
364
+
365
+
366
+
367
+
368
+
369
+ ## [3.0.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.10...@bloom-housing/ui-components@3.0.1-alpha.11) (2021-11-15)
370
+
371
+ **Note:** Version bump only for package @bloom-housing/ui-components
372
+
373
+
374
+
375
+
376
+
377
+ ## [3.0.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.9...@bloom-housing/ui-components@3.0.1-alpha.10) (2021-11-12)
378
+
379
+
380
+ ### Features
381
+
382
+ * refactor and add public site application flow cypress tests ([#2118](https://github.com/bloom-housing/bloom/issues/2118)) ([9ec0e8d](https://github.com/bloom-housing/bloom/commit/9ec0e8d05f9570773110754e7fdaf49254d1eab8))
383
+
384
+
385
+
386
+
387
+
6
388
  ## [3.0.1-alpha.9](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.8...@bloom-housing/ui-components@3.0.1-alpha.9) (2021-11-12)
7
389
 
8
390
  **Note:** Version bump only for package @bloom-housing/ui-components
package/index.ts CHANGED
@@ -58,23 +58,16 @@ export * from "./src/helpers/dateToString"
58
58
  export * from "./src/helpers/formOptions"
59
59
  export * from "./src/helpers/links"
60
60
  export * from "./src/helpers/mergeDeep"
61
- export * from "./src/helpers/localeRoute"
62
- export * from "./src/helpers/nextjs"
63
61
  export * from "./src/helpers/numberOrdinal"
64
- export * from "./src/helpers/occupancyFormatting"
65
- export * from "./src/helpers/photos"
66
- export * from "./src/helpers/pdfs"
67
- export * from "./src/helpers/tableSummaries"
68
62
  export * from "./src/helpers/translator"
69
63
  export * from "./src/helpers/debounce"
70
64
  export * from "./src/helpers/validators"
71
- export * from "./src/helpers/blankApplication"
72
65
  export * from "./src/helpers/formatYesNoLabel"
73
66
  export * from "./src/helpers/getTranslationWithArguments"
74
67
  export * from "./src/helpers/preferences"
75
68
  export * from "./src/helpers/resolveObject"
76
69
  export * from "./src/helpers/useMutate"
77
- export * from "./src/helpers/unitTypes"
70
+ export * from "./src/helpers/tableSummaries"
78
71
 
79
72
  /* Icons */
80
73
  export * from "./src/icons/HeaderBadge"
package/jest.config.js CHANGED
@@ -9,7 +9,6 @@ module.exports = {
9
9
  "**/*.tsx",
10
10
  "!**/*.stories.tsx",
11
11
  "<rootDir>/ui-components/src/helpers/*.ts",
12
- "!<rootDir>/ui-components/src/helpers/blankApplication.ts",
13
12
  ],
14
13
  coverageReporters: ["lcov", "text"],
15
14
  coverageDirectory: "test-coverage",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloom-housing/ui-components",
3
- "version": "3.0.1-alpha.9",
3
+ "version": "4.0.0",
4
4
  "author": "Sean Albert <sean.albert@exygy.com>",
5
5
  "description": "Shared user interface components for Bloom affordable housing system",
6
6
  "homepage": "https://github.com/bloom-housing/bloom/tree/master/shared/ui-components",
@@ -69,6 +69,7 @@
69
69
  "webpack": "^4.44.2"
70
70
  },
71
71
  "dependencies": {
72
+ "@bloom-housing/backend-core": "^3.0.1",
72
73
  "@mapbox/mapbox-sdk": "^0.13.0",
73
74
  "@types/body-scroll-lock": "^2.6.1",
74
75
  "@types/jwt-decode": "^2.2.1",
@@ -79,7 +80,7 @@
79
80
  "@types/react-dom": "^16.9.5",
80
81
  "@types/react-text-mask": "^5.4.6",
81
82
  "@types/react-transition-group": "^4.4.0",
82
- "axios": "^0.21.1",
83
+ "axios": "0.21.1",
83
84
  "body-scroll-lock": "^3.1.5",
84
85
  "jwt-decode": "^2.2.0",
85
86
  "markdown-to-jsx": "^6.11.4",
@@ -99,8 +100,5 @@
99
100
  "tailwindcss": "2.2.10",
100
101
  "typesafe-actions": "^5.1.0"
101
102
  },
102
- "peerDependencies": {
103
- "@bloom-housing/backend-core": ">= 2.0.0-pre-tailwind"
104
- },
105
- "gitHead": "22fe6a3536ece3c0860efe1b7f2f382d1f336054"
103
+ "gitHead": "7f017f5b74d996eb9385d767825a2a842f5456ac"
106
104
  }
@@ -19,6 +19,9 @@ export interface ButtonProps extends AppearanceProps {
19
19
  className?: string
20
20
  disabled?: boolean
21
21
  loading?: boolean
22
+ ariaLabel?: string
23
+ dataTestId?: string
24
+ "data-test-id"?: string
22
25
  }
23
26
 
24
27
  export const buttonClassesForProps = (props: Omit<ButtonProps, "onClick">) => {
@@ -67,11 +70,14 @@ const Button = (props: ButtonProps) => {
67
70
 
68
71
  return (
69
72
  <button
73
+ {...props}
70
74
  id={props.id}
71
75
  type={props.type}
72
76
  className={buttonClasses.join(" ")}
73
77
  onClick={props.onClick}
74
78
  disabled={props.disabled || props.loading}
79
+ aria-label={props.ariaLabel}
80
+ data-test-id={props.dataTestId || props["data-test-id"]}
75
81
  >
76
82
  {buttonInner(props)}
77
83
  </button>
@@ -6,6 +6,7 @@ import { isExternalLink } from "../helpers/links"
6
6
 
7
7
  export interface LinkButtonProps extends Omit<ButtonProps, "onClick"> {
8
8
  href: string
9
+ dataTestId?: string
9
10
  }
10
11
 
11
12
  const LinkButton = (props: LinkButtonProps) => {
@@ -14,13 +15,17 @@ const LinkButton = (props: LinkButtonProps) => {
14
15
 
15
16
  if (isExternalLink(props.href)) {
16
17
  return (
17
- <a href={props.href} className={buttonClasses.join(" ")}>
18
+ <a href={props.href} className={buttonClasses.join(" ")} data-test-id={props.dataTestId}>
18
19
  {buttonInner(props)}
19
20
  </a>
20
21
  )
21
22
  } else {
22
23
  return (
23
- <LinkComponent href={props.href} className={buttonClasses.join(" ")}>
24
+ <LinkComponent
25
+ href={props.href}
26
+ className={buttonClasses.join(" ")}
27
+ data-test-id={props.dataTestId}
28
+ >
24
29
  {buttonInner(props)}
25
30
  </LinkComponent>
26
31
  )
@@ -7,6 +7,7 @@ interface DashBlockProps {
7
7
  subtitle?: string
8
8
  icon: React.ReactNode
9
9
  children?: React.ReactNode
10
+ dataTestId?: string
10
11
  }
11
12
  const DashBlock = (props: DashBlockProps) => {
12
13
  const { href, title, subtitle, icon, children } = props
@@ -37,6 +38,10 @@ const DashBlock = (props: DashBlockProps) => {
37
38
  </>
38
39
  )
39
40
  }
40
- return <div className="dash-block">{wrapper}</div>
41
+ return (
42
+ <div className="dash-block" data-test-id={props.dataTestId}>
43
+ {wrapper}
44
+ </div>
45
+ )
41
46
  }
42
47
  export { DashBlock as default, DashBlock }
@@ -10,6 +10,7 @@ export interface ViewItemProps {
10
10
  className?: string
11
11
  truncated?: boolean
12
12
  error?: boolean
13
+ dataTestId?: string
13
14
  }
14
15
 
15
16
  const ViewItem = (props: ViewItemProps) => {
@@ -22,7 +23,7 @@ const ViewItem = (props: ViewItemProps) => {
22
23
  if (props.truncated) valueClassName += " is-truncated"
23
24
 
24
25
  return (
25
- <div id={props.id} className={viewItemClasses.join(" ")}>
26
+ <div id={props.id} className={viewItemClasses.join(" ")} data-test-id={props.dataTestId}>
26
27
  {props.label && (
27
28
  <span className={`view-item__label ${props.error ? "text-alert text-tiny" : ""}`}>
28
29
  {props.label}
@@ -71,6 +71,7 @@ const DOBField = (props: DOBFieldProps) => {
71
71
  }}
72
72
  inputProps={{ maxLength: 2 }}
73
73
  register={register}
74
+ dataTestId={"dob-field-month"}
74
75
  />
75
76
  <Field
76
77
  name={getFieldName("birthDay")}
@@ -92,6 +93,7 @@ const DOBField = (props: DOBFieldProps) => {
92
93
  }}
93
94
  inputProps={{ maxLength: 2 }}
94
95
  register={register}
96
+ dataTestId={"dob-field-day"}
95
97
  />
96
98
  <Field
97
99
  name={getFieldName("birthYear")}
@@ -115,6 +117,7 @@ const DOBField = (props: DOBFieldProps) => {
115
117
  }}
116
118
  inputProps={{ maxLength: 4 }}
117
119
  register={register}
120
+ dataTestId={"dob-field-year"}
118
121
  />
119
122
  </div>
120
123
 
@@ -24,6 +24,7 @@ export interface DateFieldProps {
24
24
  register: UseFormMethods["register"]
25
25
  required?: boolean
26
26
  watch: UseFormMethods["watch"]
27
+ dataTestId?: string
27
28
  }
28
29
 
29
30
  const DateField = (props: DateFieldProps) => {
@@ -60,6 +61,7 @@ const DateField = (props: DateFieldProps) => {
60
61
  }}
61
62
  inputProps={{ maxLength: 2 }}
62
63
  register={register}
64
+ dataTestId={props.dataTestId ? `${props.dataTestId}-month` : undefined}
63
65
  />
64
66
  <Field
65
67
  name={getFieldName("day")}
@@ -80,6 +82,7 @@ const DateField = (props: DateFieldProps) => {
80
82
  }}
81
83
  inputProps={{ maxLength: 2 }}
82
84
  register={register}
85
+ dataTestId={props.dataTestId ? `${props.dataTestId}-day` : undefined}
83
86
  />
84
87
  <Field
85
88
  name={getFieldName("year")}
@@ -102,6 +105,7 @@ const DateField = (props: DateFieldProps) => {
102
105
  }}
103
106
  inputProps={{ maxLength: 4 }}
104
107
  register={register}
108
+ dataTestId={props.dataTestId ? `${props.dataTestId}-year` : undefined}
105
109
  />
106
110
  </div>
107
111
  {props.note && <p className="field-note mb-2 mt-4">{props.note}</p>}
@@ -29,6 +29,7 @@ export interface FieldProps {
29
29
  describedBy?: string
30
30
  getValues?: UseFormMethods["getValues"]
31
31
  setValue?: UseFormMethods["setValue"]
32
+ dataTestId?: string
32
33
  }
33
34
 
34
35
  const Field = (props: FieldProps) => {
@@ -94,6 +95,7 @@ const Field = (props: FieldProps) => {
94
95
  <div className={controlClasses.join(" ")}>
95
96
  {props.prepend && <span className="prepend">{props.prepend}</span>}
96
97
  <input
98
+ {...props}
97
99
  aria-describedby={props.describedBy ? props.describedBy : `${idOrName}`}
98
100
  aria-invalid={!!props.error || false}
99
101
  className="input"
@@ -107,6 +109,7 @@ const Field = (props: FieldProps) => {
107
109
  onPaste={props.onPaste}
108
110
  onDrop={props.onDrop}
109
111
  onChange={props.onChange}
112
+ data-test-id={props.dataTestId}
110
113
  {...inputProps}
111
114
  />
112
115
  {isRadioOrCheckbox && label}