@bloom-housing/ui-components 7.0.1-alpha.4 → 7.0.2-alpha.0

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,22 @@
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
+ ## [7.0.2-alpha.0](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@7.0.1...@bloom-housing/ui-components@7.0.2-alpha.0) (2022-10-31)
7
+
8
+ **Note:** Version bump only for package @bloom-housing/ui-components
9
+
10
+
11
+
12
+
13
+
14
+ ## [7.0.1](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@7.0.1-alpha.4...@bloom-housing/ui-components@7.0.1) (2022-10-26)
15
+
16
+ **Note:** Version bump only for package @bloom-housing/ui-components
17
+
18
+
19
+
20
+
21
+
6
22
  ## [7.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@7.0.1-alpha.3...@bloom-housing/ui-components@7.0.1-alpha.4) (2022-10-25)
7
23
 
8
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloom-housing/ui-components",
3
- "version": "7.0.1-alpha.4",
3
+ "version": "7.0.2-alpha.0",
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",
@@ -113,5 +113,5 @@
113
113
  "ts-jest": "^26.4.1",
114
114
  "typesafe-actions": "^5.1.0"
115
115
  },
116
- "gitHead": "9c4fe47d6175301eec203c019b326e11e3188317"
116
+ "gitHead": "13c52e506599651ea0fe8a2032fc3eef8fa173f7"
117
117
  }
@@ -111,14 +111,11 @@
111
111
 
112
112
  .ag-body-horizontal-scroll {
113
113
  border-bottom: 1px solid var(--bloom-color-gray-500);
114
- border-radius: var(--bloom-rounded-md);
115
114
  }
116
115
 
117
116
  .ag-root-wrapper {
118
117
  @apply border-b-0;
119
118
  @apply rounded-t-md;
120
- @apply rounded-b-md;
121
- overflow: visible;
122
119
  }
123
120
 
124
121
  .ag-layout-auto-height {
@@ -42,6 +42,7 @@
42
42
 
43
43
  .page-header__breadcrumbs {
44
44
  margin-bottom: 10px;
45
+ margin-top: calc(-1 * var(--bloom-s4));
45
46
  }
46
47
 
47
48
  .page-header__title {
@@ -207,8 +207,12 @@ const AgTable = ({
207
207
 
208
208
  return (
209
209
  <div className={`ag-theme-alpine ag-theme-bloom ${className || ""}`}>
210
- <div className="flex justify-between flex-col md:flex-row">
211
- <div className={`flex flex-wrap ${showSearch ? "mb-5" : "hidden"}`}>
210
+ <div
211
+ className={`flex justify-between flex-col md:flex-row ${
212
+ showSearch || headerContent ? "mb-4" : ""
213
+ }`}
214
+ >
215
+ <div className={`flex flex-wrap ${!showSearch && "hidden"}`}>
212
216
  <div className="md:mr-5 w-full md:w-56">
213
217
  <Field
214
218
  dataTestId="ag-search-input"
@@ -227,7 +231,6 @@ const AgTable = ({
227
231
  )}
228
232
  </div>
229
233
  </div>
230
-
231
234
  {headerContent}
232
235
  </div>
233
236
  <div className="applications-table">
@@ -18,6 +18,7 @@ module.exports = {
18
18
  sm: "var(--bloom-font-size-sm)",
19
19
  tiny: "var(--bloom-font-size-tiny)",
20
20
  base: "var(--bloom-font-size-base)",
21
+ "base-alt": "var(--bloom-font-size-base-alt)",
21
22
  lg: "var(--bloom-font-size-lg)",
22
23
  xl: "var(--bloom-font-size-xl)",
23
24
  "2xl": "var(--bloom-font-size-2xl)",