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.9.0",
"version": "7.10.0",
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
"sideEffects": false,
"files": [
Expand Down
6 changes: 6 additions & 0 deletions packages/components/releaseNotes/components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# @labkey/components
Components, models, actions, and utility functions for LabKey applications and pages

### version 7.10.0
*Released*: 6 January 2026
- GridColumn: remove width, fixedWidth properties
- Add css class for text align and getTextAlignClassName helper
- Grid: improve styling for columns

### version 7.9.0
*Released*: 6 January 2026
- GitHub Issue 503: Field editor URL option to set target window (i.e. _blank)
Expand Down
3 changes: 2 additions & 1 deletion packages/components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { hasParameter, imageURL, toggleParameter } from './internal/url/ActionUR
import { encodeFormDataQuote } from './internal/url/utils';
import { Container } from './internal/components/base/models/Container';
import { hasAllPermissions, hasAnyPermissions, hasPermissions, User } from './internal/components/base/models/User';
import { GridColumn } from './internal/components/base/models/GridColumn';
import { getTextAlignClassName, GridColumn } from './internal/components/base/models/GridColumn';
import { decodePart, encodePart, getSchemaQuery, resolveKey, SchemaQuery } from './public/SchemaQuery';
import { insertColumnFilter, Operation, QueryColumn, QueryLookup } from './public/QueryColumn';
import { QuerySort } from './public/QuerySort';
Expand Down Expand Up @@ -1426,6 +1426,7 @@ export {
Grid,
GRID_CHECKBOX_OPTIONS,
GridAliquotViewSelector,
getTextAlignClassName,
GridColumn,
GridPanel,
GridPanelWithModel,
Expand Down
Loading