@bloom-housing/ui-components 4.2.2-alpha.26 → 4.2.2-alpha.29

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
+ ## [4.2.2-alpha.29](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.2.2-alpha.28...@bloom-housing/ui-components@4.2.2-alpha.29) (2022-05-11)
7
+
8
+ **Note:** Version bump only for package @bloom-housing/ui-components
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.2.2-alpha.28](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.2.2-alpha.27...@bloom-housing/ui-components@4.2.2-alpha.28) (2022-05-11)
15
+
16
+ **Note:** Version bump only for package @bloom-housing/ui-components
17
+
18
+
19
+
20
+
21
+
22
+ ## [4.2.2-alpha.27](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.2.2-alpha.26...@bloom-housing/ui-components@4.2.2-alpha.27) (2022-05-10)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * site footer overflowing ([#2719](https://github.com/bloom-housing/bloom/issues/2719)) ([b36b9f3](https://github.com/bloom-housing/bloom/commit/b36b9f3b1acad7a3f030662ac396a2375f0b7db3))
28
+
29
+
30
+
31
+
32
+
6
33
  ## [4.2.2-alpha.26](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@4.2.2-alpha.25...@bloom-housing/ui-components@4.2.2-alpha.26) (2022-05-05)
7
34
 
8
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloom-housing/ui-components",
3
- "version": "4.2.2-alpha.26",
3
+ "version": "4.2.2-alpha.29",
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",
@@ -66,11 +66,11 @@
66
66
  "style-loader": "^1.1.3",
67
67
  "ts-jest": "^26.4.1",
68
68
  "ts-loader": "^8.0.4",
69
- "typescript": "^3.9.7",
69
+ "typescript": "^4.5.5",
70
70
  "webpack": "^4.44.2"
71
71
  },
72
72
  "dependencies": {
73
- "@bloom-housing/backend-core": "^4.2.2-alpha.7",
73
+ "@bloom-housing/backend-core": "^4.2.2-alpha.9",
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": "401d36c47d66757a78c54681ed0adce78e8ebc0c"
105
+ "gitHead": "327d483c0ef9be61c68f82a43f75250ba3755b89"
106
106
  }
@@ -143,6 +143,7 @@ const SiteHeader = (props: SiteHeaderProps) => {
143
143
  }
144
144
  dropdownOptionKeyDown(event, index)
145
145
  }}
146
+ data-test-id={`${option.title}-${index}`}
146
147
  >
147
148
  {dropdownOptionContent(option)}
148
149
  </button>
@@ -296,6 +297,7 @@ const SiteHeader = (props: SiteHeaderProps) => {
296
297
  className={`navbar-link ${props.menuItemClassName && props.menuItemClassName}`}
297
298
  href={menuLink.href}
298
299
  key={`${menuLink.title}-${index}`}
300
+ data-test-id={`${menuLink.title}-${index}`}
299
301
  >
300
302
  {menuContent}
301
303
  </LinkComponent>
@@ -334,6 +336,7 @@ const SiteHeader = (props: SiteHeaderProps) => {
334
336
  }}
335
337
  onMouseEnter={() => changeMenuShow(menuLink.title, activeMenus, setActiveMenus)}
336
338
  onMouseLeave={() => changeMenuShow(menuLink.title, activeMenus, setActiveMenus)}
339
+ data-test-id={`${menuLink.title}-${index}`}
337
340
  >
338
341
  {menuContent}
339
342
  </span>
@@ -30,6 +30,7 @@
30
30
 
31
31
  .footer-copyright {
32
32
  width: auto;
33
+ flex-shrink: 0;
33
34
  @screen lg {
34
35
  @apply text-left;
35
36
  }