@cerebruminc/cerebellum 19.0.0 → 19.0.1
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
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# react-component-lib-boilerplate
|
|
2
2
|
|
|
3
|
+
## [19.0.1](https://github.com/cerebruminc/cerebellum/compare/v19.0.0...v19.0.1) (2026-07-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* prevent organization list clipping ([a557f91](https://github.com/cerebruminc/cerebellum/commit/a557f91cf28526e7007a058524e6f1b2cd627750))
|
|
9
|
+
|
|
3
10
|
## [19.0.0](https://github.com/cerebruminc/cerebellum/compare/v18.0.0...v19.0.0) (2026-07-23)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -77,9 +77,11 @@
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.scrollingGroup {
|
|
80
|
+
box-sizing: border-box;
|
|
80
81
|
height: var(--uc-scroller-height, auto);
|
|
81
82
|
overflow-y: var(--uc-scroller-overflow, hidden);
|
|
82
|
-
|
|
83
|
+
/* Keep this aligned with ORG_SCROLLER_PADDING in UserCard.tsx. */
|
|
84
|
+
padding: 0 42px 40px;
|
|
83
85
|
position: relative;
|
|
84
86
|
|
|
85
87
|
/* Scrollbar */
|
|
@@ -367,4 +369,4 @@
|
|
|
367
369
|
justify-content: center;
|
|
368
370
|
height: 100%;
|
|
369
371
|
width: calc(100vw - 200px);
|
|
370
|
-
}
|
|
372
|
+
}
|
|
@@ -17,7 +17,8 @@ import { useWindowDimensions } from "./useWindowResize";
|
|
|
17
17
|
|
|
18
18
|
const USER_DETAILS_PADDING = 21;
|
|
19
19
|
const BASE_HEIGHT_OFFSET = 20;
|
|
20
|
-
|
|
20
|
+
// Keep this aligned with the scrollingGroup bottom padding in UserCard.module.css.
|
|
21
|
+
const ORG_SCROLLER_PADDING = 40;
|
|
21
22
|
|
|
22
23
|
const FLUFF = 25; // Something is off in the measurements. This corrects it. It may be a Storybook issue.
|
|
23
24
|
const SIGN_OUT_HEIGHT = 80;
|