@apolitical/component-library 8.7.32 → 8.7.33-ck

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": "@apolitical/component-library",
3
- "version": "8.7.32",
3
+ "version": "8.7.33-ck",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
@@ -30,7 +30,7 @@
30
30
  "lodash.isequal": "4.5.0",
31
31
  "lodash.set": "4.3.2",
32
32
  "markdown-to-jsx": "7.3.2",
33
- "posthog-js": "1.161.5",
33
+ "posthog-js": "1.264.2",
34
34
  "react": "18.2.0",
35
35
  "react-cookie": "6.1.1",
36
36
  "react-dom": "18.2.0",
@@ -213,6 +213,27 @@ $font-size-md: 1rem;
213
213
  align-content: space-between;
214
214
  }
215
215
 
216
+ // align-self
217
+ .u-self-center {
218
+ align-self: center;
219
+ }
220
+
221
+ .u-self-start {
222
+ align-self: start;
223
+ }
224
+
225
+ .u-self-end {
226
+ align-self: end;
227
+ }
228
+
229
+ .u-self-stretch {
230
+ align-self: stretch;
231
+ }
232
+
233
+ .u-self-baseline {
234
+ align-self: baseline;
235
+ }
236
+
216
237
  // display
217
238
  .u-block {
218
239
  display: block;