@bloom-housing/ui-components 12.7.5 → 12.7.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloom-housing/ui-components",
3
- "version": "12.7.5",
3
+ "version": "12.7.6",
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/ui-components",
@@ -130,7 +130,6 @@
130
130
  "ag-grid-community": "^26.0.0",
131
131
  "ag-grid-react": "^26.0.0",
132
132
  "aria-autocomplete": "^1.4.0",
133
- "axios": "0.21.2",
134
133
  "dayjs": "^1.10.7",
135
134
  "jwt-decode": "^2.2.0",
136
135
  "markdown-to-jsx": "7.1.8",
@@ -31,16 +31,14 @@
31
31
  .alert-box_inner {
32
32
  margin: auto;
33
33
  max-width: var(--max-width);
34
- padding-right: var(--horizontal-padding);
35
- padding-left: var(--horizontal-padding);
34
+ padding-inline: var(--horizontal-padding);
36
35
  flex: 1;
37
36
  display: flex;
38
37
  align-items: center;
39
38
  }
40
39
 
41
40
  &.narrow {
42
- padding-top: var(--bloom-s1_5);
43
- padding-bottom: var(--bloom-s1_5);
41
+ padding-block: var(--bloom-s1_5);
44
42
  }
45
43
 
46
44
  &.invert {
@@ -105,7 +103,7 @@
105
103
  .alert-box__close {
106
104
  font-size: var(--body-close-font-size);
107
105
  right: var(--horizontal-padding);
108
- margin-left: var(--bloom-s3);
106
+ margin-inline-start: var(--bloom-s3);
109
107
  padding: 0;
110
108
  line-height: var(--bloom-s4);
111
109
  color: var(--close-icon-color);
@@ -116,14 +114,14 @@
116
114
  }
117
115
 
118
116
  .alert-box__icon {
119
- margin-right: var(--bloom-s3);
117
+ margin-inline-end: var(--bloom-s3);
120
118
  }
121
119
 
122
120
  .alert-box__sticky {
123
121
  position: sticky;
124
122
  top: var(--bloom-s3);
125
- margin-top: var(--bloom-s3);
126
- margin-right: var(--bloom-s3);
123
+ margin-block-start: var(--bloom-s3);
124
+ margin-inline-end: var(--bloom-s3);
127
125
  z-index: 10;
128
126
  margin-left: auto;
129
127
  width: fit-content;
@@ -131,5 +129,5 @@
131
129
 
132
130
  .alert-box__sticky + * {
133
131
  --alert-box-height: -3.6rem;
134
- margin-top: var(--alert-box-height);
132
+ margin-block-start: var(--alert-box-height);
135
133
  }