Skip to content

Commit

Permalink
Support for calculated fields in Field Editor UI for certain data typ…
Browse files Browse the repository at this point in the history
…es (#178)

- Add valueExpression to QueryColumn type
  • Loading branch information
cnathe authored Jul 24, 2024
1 parent 98df578 commit 0680686
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.34.2 - 2024-06-24
- Add valueExpression to QueryColumn type

### 1.34.1 - 2024-06-18
- Issue 50533: furnish server's timezone in server context

Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/api",
"version": "1.34.1",
"version": "1.34.2",
"description": "JavaScript client API for LabKey Server",
"scripts": {
"build": "npm run build:dist && npm run build:docs",
Expand Down
1 change: 1 addition & 0 deletions src/labkey/query/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export interface QueryColumn {
typeName?: string;
typeURI?: string;
userEditable: boolean;
valueExpression?: string;
versionField: boolean;
xtype?: string;
}
Expand Down

0 comments on commit 0680686

Please sign in to comment.