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

### version 6.58.8
*Released*: 29 August 2025
- Issue 53773: Updating a field whose name contains a space via file will silently be ignored if the space is not included in the file
- Stop aggressively infer column based on removed internal spaces

### version 6.58.7
*Released*: 29 August 2025
- Update default audit level
Expand Down
2 changes: 2 additions & 0 deletions packages/components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,7 @@ import {
SAMPLE_DATA_EXPORT_CONFIG,
SAMPLE_ID_FIND_FIELD,
SAMPLE_INSERT_EXTRA_COLUMNS,
SAMPLE_IMPORT_EXTRA_ALLOWED_COLUMNS,
SAMPLE_STATE_COLUMN_NAME,
SAMPLE_STATE_TYPE_COLUMN_NAME,
SAMPLE_STATUS_REQUIRED_COLUMNS,
Expand Down Expand Up @@ -1678,6 +1679,7 @@ export {
SAMPLE_ID_FIELD_KEY,
SAMPLE_ID_FIND_FIELD,
SAMPLE_INSERT_EXTRA_COLUMNS,
SAMPLE_IMPORT_EXTRA_ALLOWED_COLUMNS,
SAMPLE_STATE_COLUMN_NAME,
SAMPLE_STATE_TYPE_COLUMN_NAME,
SAMPLE_STATUS_REQUIRED_COLUMNS,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ export const SAMPLE_STORAGE_COLUMNS_WITH_SUBSELECT_EXPR = [
];

export const SAMPLE_INSERT_EXTRA_COLUMNS = [...AMOUNT_AND_UNITS_COLUMNS, ...SAMPLE_STORAGE_COLUMNS, ALIQUOTED_FROM_COL];
export const SAMPLE_IMPORT_EXTRA_ALLOWED_COLUMNS = [...SAMPLE_INSERT_EXTRA_COLUMNS, "SampleID", "EnteredStorage", "ExpirationDate"];

// those lookup values are at Home project level, no need to reload on target folder change
export const SAMPLE_ALL_PROJECT_LOOKUP_FIELDS = ['SampleState', 'Units'];
Expand Down
1 change: 0 additions & 1 deletion packages/components/src/public/QueryColumn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,6 @@ export class QueryColumn implements IQueryColumn {
const isLineageLookup = this.isAncestorInput() || this.isExpInput();
return (
(!isLineageLookup && this.caption?.toLowerCase() === lcName) ||
(!isLineageLookup && this.caption?.replaceAll(' ', '').toLowerCase() === lcName) || // Issue 52193: allow for "SampleID" when caption is "Sample ID", but don't match for simply fewer spaces
this.name?.toLowerCase() === lcName ||
this.fieldKey?.toLowerCase() === lcName
);
Expand Down