@bloom-housing/ui-components 3.0.1-alpha.38 → 3.0.1-alpha.41

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,33 @@
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
+ ## [3.0.1-alpha.41](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.40...@bloom-housing/ui-components@3.0.1-alpha.41) (2021-12-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * fix hero secondary button width issue ([a652569](https://github.com/bloom-housing/bloom/commit/a652569017fab7663681a4101ce8cf74ea2f016e))
12
+
13
+
14
+
15
+
16
+
17
+ ## [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)
18
+
19
+ **Note:** Version bump only for package @bloom-housing/ui-components
20
+
21
+
22
+
23
+
24
+
25
+ ## [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)
26
+
27
+ **Note:** Version bump only for package @bloom-housing/ui-components
28
+
29
+
30
+
31
+
32
+
6
33
  ## [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)
7
34
 
8
35
  **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": "3.0.1-alpha.38",
3
+ "version": "3.0.1-alpha.41",
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": "^3.0.1-alpha.34",
72
+ "@bloom-housing/backend-core": "^3.0.1-alpha.35",
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",
@@ -100,5 +100,5 @@
100
100
  "tailwindcss": "2.2.10",
101
101
  "typesafe-actions": "^5.1.0"
102
102
  },
103
- "gitHead": "fb14ea64afdcb055b6345196a0873840649cf1ea"
103
+ "gitHead": "3dfbd3fff6573009448957fe062aa81e2a4b80c6"
104
104
  }
@@ -20,6 +20,13 @@
20
20
  width: 100%;
21
21
  }
22
22
 
23
+ .hero__buttons {
24
+ @apply grid;
25
+ @apply md:grid-cols-4;
26
+ @apply gap-5;
27
+ @apply max-w-screen-md;
28
+ @apply m-auto;
29
+ }
23
30
  .hero__title {
24
31
  @apply text-4xl;
25
32
  @apply mb-5;
@@ -46,9 +46,9 @@ const Hero = (props: HeroProps) => {
46
46
  {props.buttonTitle && props.buttonLink && (
47
47
  <>
48
48
  {props.secondaryButtonTitle && props.secondaryButtonLink ? (
49
- <div className="grid md:grid-cols-6 gap-5 max-w-screen-lg m-auto">
49
+ <div className="hero__buttons">
50
50
  <HeroButton
51
- className={"md:col-start-3 with_secondary"}
51
+ className={"md:col-start-2 with_secondary"}
52
52
  href={props.buttonLink}
53
53
  title={props.buttonTitle}
54
54
  />
@@ -291,6 +291,7 @@
291
291
  "otherMutliracial": "Otro / Multirracial",
292
292
  "asian-otherAsian": "De otro país asiático",
293
293
  "asian-chinese": "Chino",
294
+ "asian-asianIndian": "Indio asiático",
294
295
  "declineToRespond": "No desea responder",
295
296
  "asian-filipino": "Filipino",
296
297
  "nativeHawaiianOtherPacificIslander-guamanianOrChamorro": "Guameño o chamorro",
@@ -393,10 +394,17 @@
393
394
  },
394
395
  "createAccount": {
395
396
  "accountConfirmed": "Su cuenta ha sido confirmada correctamente.",
397
+ "password": "Contraseña",
398
+ "noAccount": "No tienes una cuenta?",
396
399
  "anEmailHasBeenSent": "Se ha enviado un email a %{email}",
397
400
  "confirmationInstruction": "Por favor haga clic en el enlace del email que le hemos enviado para completar la creación de su cuenta.",
398
401
  "confirmationNeeded": "Se necesita confirmación",
399
- "resendTheEmail": "Volver a enviar el email"
402
+ "resendTheEmail": "Volver a enviar el email",
403
+ "reEnterEmail": "Vuelva a introducir la dirección de correo electrónico",
404
+ "passwordInfo": "Debe tener al menos 8 caracteres e incluir al menos 1 letra y al menos un número",
405
+ "reEnterPassword": "Reingresa tu contraseña",
406
+ "mustBe8Chars": "debe tener 8 caracteres",
407
+ "yourName": "Su nombre"
400
408
  }
401
409
  },
402
410
  "errors": {
@@ -707,6 +715,7 @@
707
715
  "edit": "Editar",
708
716
  "email": "Email",
709
717
  "emailAddressPlaceholder": "you@myemail.com",
718
+ "description": "Ingrese descripción",
710
719
  "floor": "piso",
711
720
  "floors": "pisos",
712
721
  "getDirections": "Obtener instrucciones para llegar",
@@ -288,9 +288,10 @@
288
288
  "otherMutliracial": "Khác / Đa chủng tộc",
289
289
  "asian-otherAsian": "Người Châu Á Khác",
290
290
  "asian-chinese": "Người Trung Quốc",
291
- "declineToRespond": "Decline to Respond",
291
+ "asian-asianIndian": "Người Ấn Độ Châu Á",
292
+ "declineToRespond": "Từ chối phản hồi",
292
293
  "asian-filipino": "Người Philippines",
293
- "nativeHawaiianOtherPacificIslander-guamanianOrChamorro": "Guamanian or Chamorro",
294
+ "nativeHawaiianOtherPacificIslander-guamanianOrChamorro": "Người Guam hoặc Chamorro",
294
295
  "asian-japanese": "Người Nhật Bản",
295
296
  "asian-korean": "Người Hàn Quốc",
296
297
  "nativeHawaiianOtherPacificIslander-nativeHawaiian": "Người Hawaii Bản Địa",
@@ -392,7 +393,14 @@
392
393
  "anEmailHasBeenSent": "Một email đã được gửi tới %{email}",
393
394
  "confirmationInstruction": "Hãy nhấp vào đường liên kết trong email mà chúng tôi gửi cho quý vị để hoàn thành việc lập tài khoản.",
394
395
  "confirmationNeeded": "Cần xác nhận",
395
- "resendTheEmail": "Gửi lại Email"
396
+ "resendTheEmail": "Gửi lại Email",
397
+ "password": "Mật khẩu",
398
+ "noAccount": "Không có tài khoản?",
399
+ "reEnterEmail": "Nhập lại địa chỉ Email",
400
+ "passwordInfo": "Phải có ít nhất 8 ký tự và bao gồm ít nhất 1 chữ cái và ít nhất một số",
401
+ "reEnterPassword": "Nhập lại mật khẩu của bạn",
402
+ "mustBe8Chars": "phải có 8 ký tự",
403
+ "yourName": "Tên Quý vị"
396
404
  }
397
405
  },
398
406
  "config": {
@@ -706,6 +714,7 @@
706
714
  "edit": "Hiệu đính",
707
715
  "email": "Email",
708
716
  "emailAddressPlaceholder": "you@myemail.com",
717
+ "description": "Nhập mô tả",
709
718
  "floor": "sàn",
710
719
  "floors": "các sàn",
711
720
  "getDirections": "Lấy hướng dẫn chỉ đường",
@@ -288,6 +288,7 @@
288
288
  "otherMutliracial": "其他/混血",
289
289
  "asian-otherAsian": "其他亞裔",
290
290
  "asian-chinese": "中國人",
291
+ "asian-asianIndian": "亞洲 印度人",
291
292
  "declineToRespond": "拒絕回答",
292
293
  "asian-filipino": "菲律賓人",
293
294
  "nativeHawaiianOtherPacificIslander-guamanianOrChamorro": "關島或查莫羅",
@@ -392,7 +393,14 @@
392
393
  "anEmailHasBeenSent": "本電郵已發送至 %{email}",
393
394
  "confirmationInstruction": "請按一下我們發送的電子郵件內連結,並完成建立帳戶程序。",
394
395
  "confirmationNeeded": "需要確認",
395
- "resendTheEmail": "重新發送電子郵件"
396
+ "resendTheEmail": "重新發送電子郵件",
397
+ "password": "密碼",
398
+ "noAccount": "沒有賬戶?",
399
+ "reEnterEmail": "重新輸入電子郵件地址",
400
+ "passwordInfo": "必須至少為 8 個字符,並且至少包含 1 個字母和至少一個數字",
401
+ "reEnterPassword": "重新輸入您的密碼",
402
+ "mustBe8Chars": "必須是 8 個字符",
403
+ "yourName": "您的姓名"
396
404
  }
397
405
  },
398
406
  "config": {
@@ -706,6 +714,7 @@
706
714
  "edit": "編輯",
707
715
  "email": "電子郵件",
708
716
  "emailAddressPlaceholder": "you@myemail.com",
717
+ "description": "輸入說明",
709
718
  "floor": "樓層",
710
719
  "floors": "樓層",
711
720
  "getDirections": "取得路線",