@bloom-housing/ui-components 3.0.1-alpha.2 → 3.0.1-alpha.3
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 +11 -0
- package/package.json +3 -3
- package/src/authentication/AuthContext.ts +3 -0
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
|
+
## [3.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.2...@bloom-housing/ui-components@3.0.1-alpha.3) (2021-11-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add Programs section to listings management ([#2093](https://github.com/bloom-housing/bloom/issues/2093)) ([9bd1fe1](https://github.com/bloom-housing/bloom/commit/9bd1fe1033dee0fb7e73756254474471bc304f5e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.0.1-alpha.2](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@3.0.1-alpha.1...@bloom-housing/ui-components@3.0.1-alpha.2) (2021-11-08)
|
|
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": "3.0.1-alpha.
|
|
3
|
+
"version": "3.0.1-alpha.3",
|
|
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.
|
|
72
|
+
"@bloom-housing/backend-core": "^3.0.1-alpha.3",
|
|
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": "
|
|
103
|
+
"gitHead": "e0fcb37b598e3d6bcd9916b70d7d578322c6196d"
|
|
104
104
|
}
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
UnitTypesService,
|
|
17
17
|
PreferencesService,
|
|
18
18
|
JurisdictionsService,
|
|
19
|
+
ProgramsService,
|
|
19
20
|
} from "@bloom-housing/backend-core/types"
|
|
20
21
|
import {
|
|
21
22
|
createContext,
|
|
@@ -43,6 +44,7 @@ type ContextProps = {
|
|
|
43
44
|
userProfileService: UserProfileService
|
|
44
45
|
authService: AuthService
|
|
45
46
|
preferencesService: PreferencesService
|
|
47
|
+
programsService: ProgramsService
|
|
46
48
|
reservedCommunityTypeService: ReservedCommunityTypesService
|
|
47
49
|
unitPriorityService: UnitAccessibilityPriorityTypesService
|
|
48
50
|
unitTypesService: UnitTypesService
|
|
@@ -230,6 +232,7 @@ export const AuthProvider: FunctionComponent = ({ children }) => {
|
|
|
230
232
|
userProfileService: new UserProfileService(),
|
|
231
233
|
authService: new AuthService(),
|
|
232
234
|
preferencesService: new PreferencesService(),
|
|
235
|
+
programsService: new ProgramsService(),
|
|
233
236
|
reservedCommunityTypeService: new ReservedCommunityTypesService(),
|
|
234
237
|
unitPriorityService: new UnitAccessibilityPriorityTypesService(),
|
|
235
238
|
unitTypesService: new UnitTypesService(),
|