@bloom-housing/ui-components 5.1.1-alpha.33 → 5.1.1-alpha.35
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,29 @@
|
|
|
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
|
+
## [5.1.1-alpha.35](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@5.1.1-alpha.34...@bloom-housing/ui-components@5.1.1-alpha.35) (2022-09-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* email tests ([#3095](https://github.com/bloom-housing/bloom/issues/3095)) ([a663dfd](https://github.com/bloom-housing/bloom/commit/a663dfd3df457f88130e59c37ea30d70ae2b6d0b))
|
|
12
|
+
* heading size issues on resources page ([#3090](https://github.com/bloom-housing/bloom/issues/3090)) ([d7492a2](https://github.com/bloom-housing/bloom/commit/d7492a2b0fc6ec877fa99d7234a373cca7fd86ac))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [5.1.1-alpha.34](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@5.1.1-alpha.33...@bloom-housing/ui-components@5.1.1-alpha.34) (2022-09-28)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* **preferences:** add delete preference button ([#3075](https://github.com/bloom-housing/bloom/issues/3075)) ([29a079e](https://github.com/bloom-housing/bloom/commit/29a079e23ecc5cd31589993fef0c9de661c6e8c8))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
## [5.1.1-alpha.33](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@5.1.1-alpha.32...@bloom-housing/ui-components@5.1.1-alpha.33) (2022-09-26)
|
|
7
30
|
|
|
8
31
|
**Note:** Version bump only for package @bloom-housing/ui-components
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bloom-housing/ui-components",
|
|
3
|
-
"version": "5.1.1-alpha.
|
|
3
|
+
"version": "5.1.1-alpha.35",
|
|
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",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"ts-jest": "^26.4.1",
|
|
111
111
|
"typesafe-actions": "^5.1.0"
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "0012e4dbac0369854054ddeab37891f5a95e5214"
|
|
114
114
|
}
|
package/src/locales/general.json
CHANGED
|
@@ -363,7 +363,7 @@
|
|
|
363
363
|
"application.review.confirmation.createAccountParagraph": "Creating an account will save your information for future applications, and you can check the status of this application anytime.",
|
|
364
364
|
"application.review.confirmation.createAccountTitle": "Would you like to create an account?",
|
|
365
365
|
"application.review.confirmation.doNotSubmitTitle": "Do not submit another application for this listing.",
|
|
366
|
-
"application.review.confirmation.eligibleApplicants.FCFS": "
|
|
366
|
+
"application.review.confirmation.eligibleApplicants.FCFS": "Eligible applicants will be contacted by on a **first come first serve** basis until vacancies are filled.",
|
|
367
367
|
"application.review.confirmation.eligibleApplicants.lottery": "Eligible applicants will be contacted by the agent in lottery rank order until vacancies are filled.",
|
|
368
368
|
"application.review.confirmation.eligibleApplicants.lotteryDate": "The lottery will be held on **%{lotteryDate}**.",
|
|
369
369
|
"application.review.confirmation.imdone": "No thanks, I'm done.",
|
package/src/overlays/Modal.scss
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as React from "react"
|
|
2
|
+
import { Heading } from "../headers/Heading"
|
|
2
3
|
import "./InfoCardGrid.scss"
|
|
3
4
|
|
|
4
5
|
export interface InfoCardGridProps {
|
|
@@ -10,7 +11,9 @@ export interface InfoCardGridProps {
|
|
|
10
11
|
const InfoCardGrid = (props: InfoCardGridProps) => (
|
|
11
12
|
<section className="info-cards">
|
|
12
13
|
<header className="info-cards__header">
|
|
13
|
-
<
|
|
14
|
+
<Heading style={"sidebarHeader"} priority={2} className={"text-tiny"}>
|
|
15
|
+
{props.title}
|
|
16
|
+
</Heading>
|
|
14
17
|
{props.subtitle && <p className="info-cards__subtitle">{props.subtitle}</p>}
|
|
15
18
|
</header>
|
|
16
19
|
<div className="info-cards__grid">{props.children}</div>
|