@adaptabletools/adaptable 21.0.0-canary.3 → 21.0.0-canary.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +7 -9
- package/src/Api/Internal/AlertInternalApi.js +1 -1
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +2 -13
- package/src/Api/Internal/FormatColumnInternalApi.js +4 -14
- package/src/Strategy/FlashingCellModule.js +3 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +8 -0
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +5 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +5 -2
- package/src/Utilities/Services/QueryLanguageService.js +4 -3
- package/src/agGrid/AgGridColumnAdapter.js +10 -2
- package/src/components/Modal/index.d.ts +0 -1
- package/src/components/Modal/index.js +4 -2
- package/src/components/OverlayTrigger/index.js +3 -1
- package/src/components/Select/Select.js +3 -2
- package/src/components/WindowModal/useStacking.js +12 -3
- package/src/components/overlayBaseZIndex.d.ts +1 -0
- package/src/components/overlayBaseZIndex.js +1 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +26 -2
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/types.d.ts +5 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IRowNode } from 'ag-grid-enterprise';
|
|
1
|
+
import { Column, IRowNode } from 'ag-grid-enterprise';
|
|
2
2
|
import { BaseContext, CellDataChangedInfo } from '../../../types';
|
|
3
3
|
/**
|
|
4
4
|
* An AST Expression
|
|
@@ -62,6 +62,10 @@ export interface ExpressionContext extends BaseContext {
|
|
|
62
62
|
* Changed cell data
|
|
63
63
|
*/
|
|
64
64
|
dataChangedEvent?: CellDataChangedInfo;
|
|
65
|
+
/**
|
|
66
|
+
* Pivot Result Column when evaluating a Pivoted Column
|
|
67
|
+
*/
|
|
68
|
+
pivotResultColumn?: Column;
|
|
65
69
|
}
|
|
66
70
|
/**
|
|
67
71
|
* Key-Value map of Expression Names and their implementation
|