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
12 changes: 6 additions & 6 deletions packages/components/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/components",
"version": "7.42.1",
"version": "7.42.2",
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
"sideEffects": false,
"files": [
Expand Down Expand Up @@ -48,7 +48,7 @@
"homepage": "https://github.com/LabKey/labkey-ui-components#readme",
"dependencies": {
"@hello-pangea/dnd": "18.0.1",
"@labkey/api": "1.51.4",
"@labkey/api": "1.51.5",
"@testing-library/dom": "~10.4.1",
"@testing-library/jest-dom": "~6.9.1",
"@testing-library/react": "~16.3.2",
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.42.2
*Released*: 22 June 2026
- Styling update for user comment on large storage modal

### version 7.42.1
*Released*: 17 June 2026
- Package updates
Expand Down
9 changes: 9 additions & 0 deletions packages/components/src/theme/form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,15 @@ textarea.form-control {
min-width: 175px;
}

.modal-footer .inline-comment.inline-comment-large textarea {
@media (max-width: 924px) {
min-width: 300px;
}
@media (min-width: 925px) {
min-width: 450px;
}
}

.modal-footer .inline-comment .inline-comment-label {
margin-bottom: 0;
}
Expand Down