@bloom-housing/ui-components 4.2.2-alpha.21 → 4.2.2-alpha.22

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,17 @@
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.2.2-alpha.22](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.2.2-alpha.21...@bloom-housing/ui-components@4.2.2-alpha.22) (2022-05-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * **backend:** improve ami chart dto definitions ([#2677](https://github.com/bloom-housing/bloom/issues/2677)) ([ca3890e](https://github.com/bloom-housing/bloom/commit/ca3890e2759f230824e31e6bd985300f40b0a0ed))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [4.2.2-alpha.21](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.2.2-alpha.20...@bloom-housing/ui-components@4.2.2-alpha.21) (2022-04-29)
7
18
 
8
19
  **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": "4.2.2-alpha.21",
3
+ "version": "4.2.2-alpha.22",
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",
@@ -70,7 +70,7 @@
70
70
  "webpack": "^4.44.2"
71
71
  },
72
72
  "dependencies": {
73
- "@bloom-housing/backend-core": "^4.2.2-alpha.6",
73
+ "@bloom-housing/backend-core": "^4.2.2-alpha.7",
74
74
  "@mapbox/mapbox-sdk": "^0.13.0",
75
75
  "@types/body-scroll-lock": "^2.6.1",
76
76
  "@types/jwt-decode": "^2.2.1",
@@ -102,5 +102,5 @@
102
102
  "tailwindcss": "2.2.10",
103
103
  "typesafe-actions": "^5.1.0"
104
104
  },
105
- "gitHead": "cd23feffd9ba0b193b00a332458d449ed1350e26"
105
+ "gitHead": "d1e92b646c2942546756f80fecbb624a3e74b1b0"
106
106
  }
@@ -6,9 +6,8 @@ import {
6
6
  Form,
7
7
  Field,
8
8
  emailRegex,
9
- NavigationContext,
10
9
  } from "@bloom-housing/ui-components"
11
- import React, { useEffect, useMemo, useContext } from "react"
10
+ import React, { useEffect, useMemo } from "react"
12
11
  import { useForm } from "react-hook-form"
13
12
 
14
13
  export type ResendConfirmationModalProps = {
@@ -30,7 +29,6 @@ const ResendConfirmationModal = ({
30
29
  onClose,
31
30
  onSubmit,
32
31
  }: ResendConfirmationModalProps) => {
33
- const { router } = useContext(NavigationContext)
34
32
  // eslint-disable-next-line @typescript-eslint/unbound-method
35
33
  const { register, errors, reset, getValues, trigger } = useForm({
36
34
  defaultValues: useMemo(() => {