@bloom-housing/ui-components 4.4.1-alpha.10 → 4.4.1-alpha.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.4.1-alpha.11](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.4.1-alpha.10...@bloom-housing/ui-components@4.4.1-alpha.11) (2022-06-02)
7
+
8
+ **Note:** Version bump only for package @bloom-housing/ui-components
9
+
10
+
11
+
12
+
13
+
6
14
  ## [4.4.1-alpha.10](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.4.1-alpha.9...@bloom-housing/ui-components@4.4.1-alpha.10) (2022-06-01)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloom-housing/ui-components",
3
- "version": "4.4.1-alpha.10",
3
+ "version": "4.4.1-alpha.11",
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,7 +69,7 @@
69
69
  "webpack": "^4.44.2"
70
70
  },
71
71
  "dependencies": {
72
- "@bloom-housing/backend-core": "^4.4.1-alpha.8",
72
+ "@bloom-housing/backend-core": "^4.4.1-alpha.9",
73
73
  "@mapbox/mapbox-sdk": "^0.13.0",
74
74
  "@types/body-scroll-lock": "^2.6.1",
75
75
  "@types/jwt-decode": "^2.2.1",
@@ -103,5 +103,5 @@
103
103
  "tailwindcss": "2.2.10",
104
104
  "typesafe-actions": "^5.1.0"
105
105
  },
106
- "gitHead": "d7d5fcaf26ddfb276c132dc6c6d1f9a3df7e9baa"
106
+ "gitHead": "ddb617c4fc78c200a99925256e9a4e63a8c6affb"
107
107
  }
@@ -610,8 +610,10 @@
610
610
  "listings.apply.submitPaperNoDueDateNoPostMark": "%{developer} is not responsible for lost or delayed mail.",
611
611
  "listings.apply.submitPaperNoDueDatePostMark": "Applications must be received by the deadline. If sending by U.S. Mail, the application must be received by mail no later than %{postmarkReceivedByDate}. Applications received after %{postmarkReceivedByDate} via mail will not be accepted. %{developer} is not responsible for lost or delayed mail.",
612
612
  "listings.availableAndWaitlist": "Available Units & Open Waitlist",
613
+ "listings.availableUnitsDescription": "Applicants will be reviewed in order until all vacancies are filled.",
613
614
  "listings.availableUnitsAndWaitlist": "Available units and waitlist",
614
615
  "listings.availableUnitsAndWaitlistDesc": "Once applicants fill all available units, additional applicants will be placed on the waitlist for <span class='t-italic'>%{number} units</span>",
616
+ "listings.availableUnit": "Available Unit",
615
617
  "listings.availableUnits": "Available Units",
616
618
  "listings.bath": "bath",
617
619
  "listings.browseListings": "Browse Listings",
@@ -17,6 +17,7 @@ export interface QuantityRowSectionProps {
17
17
 
18
18
  const QuantityRowSection = ({ quantityRows, strings }: QuantityRowSectionProps) => {
19
19
  const getRow = (row: QuantityRow) => {
20
+ if (row.amount === null) return null
20
21
  return (
21
22
  <li
22
23
  key={row.text}