Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/components",
"version": "7.38.0",
"version": "7.38.1",
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
"sideEffects": false,
"files": [
Expand Down
4 changes: 4 additions & 0 deletions packages/components/releaseNotes/components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# @labkey/components
Components, models, actions, and utility functions for LabKey applications and pages

### version 7.38.1
*Released*: 26 May 2026
- GitHub Issue 1021: Sample Finder: Long names truncated in Search cards

### version 7.38.0
*Released*: 21 May 2026
- Accessibility improvements for app pages: Keyboard Interactions
Expand Down
5 changes: 4 additions & 1 deletion packages/components/src/theme/cards.scss
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ $circle-size: 12 * $scale;
vertical-align: top;
padding: 10px 0;
text-transform: uppercase;
word-break: break-word;
}

.filter-display__field-boolean {
Expand Down Expand Up @@ -245,7 +246,8 @@ $circle-size: 12 * $scale;
}

.filter-card__header {
height: 59px;
min-height: 59px;
overflow: hidden;
color: white;
padding: 10px 0 10px 20px;

Expand All @@ -256,6 +258,7 @@ $circle-size: 12 * $scale;
& .primary-text {
font-size: 20px;
line-height: 23px;
word-break: break-word;
}

& .secondary-text {
Expand Down