@adaptabletools/adaptable 12.0.4 → 12.0.7

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.
Files changed (39) hide show
  1. package/bundle.cjs.js +92 -92
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableOptions/ExportOptions.d.ts +3 -3
  6. package/src/Api/GridApi.d.ts +2 -1
  7. package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
  8. package/src/Api/Implementation/GridApiImpl.js +1 -1
  9. package/src/Api/Implementation/InternalApiImpl.js +3 -0
  10. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  11. package/src/Strategy/AlertModule.js +2 -2
  12. package/src/Strategy/FlashingCellModule.js +2 -2
  13. package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -2
  14. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -4
  15. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +7 -7
  16. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +3 -3
  17. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +5 -5
  18. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +11 -11
  19. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +2 -2
  20. package/src/Utilities/Services/QueryLanguageService.js +4 -4
  21. package/src/Utilities/Services/ReportService.js +1 -1
  22. package/src/Utilities/Services/RowEditService.js +4 -1
  23. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.d.ts +8 -0
  24. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/{ConfigurationForm.js → AdaptableOptionsForm.js} +3 -39
  25. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +27 -3
  26. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/{ConfigurationForm.d.ts → EntitlementsForm.d.ts} +3 -3
  27. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +17 -0
  28. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.d.ts +8 -0
  29. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +54 -0
  30. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +0 -1
  31. package/src/agGrid/Adaptable.js +9 -7
  32. package/src/agGrid/agGridHelper.js +2 -2
  33. package/src/components/ExpressionEditor/BaseEditorInput.js +4 -1
  34. package/src/components/ExpressionEditor/index.js +2 -2
  35. package/src/metamodel/adaptable.metamodel.d.ts +5 -5
  36. package/src/metamodel/adaptable.metamodel.js +1 -1
  37. package/src/parser/src/types.d.ts +4 -8
  38. package/version.d.ts +1 -1
  39. package/version.js +1 -1
@@ -1,4 +1,4 @@
1
- import { AdaptableApi } from '../../Api/AdaptableApi';
1
+ import { BaseContext } from '../../../types';
2
2
  export declare type AST = AST_Expression[];
3
3
  export declare type AST_Expression = AST_Expression[] | AST_Function | boolean | number | string;
4
4
  export declare type AST_Function = {
@@ -14,21 +14,17 @@ export declare type Token = {
14
14
  /**
15
15
  * Provides context to an Expression Function, including current row node and AdaptableApi
16
16
  */
17
- export interface ExpressionContext {
17
+ export interface ExpressionContext extends BaseContext {
18
18
  /**
19
19
  * Current row node in grid being evaluated
20
20
  */
21
21
  node: any;
22
- /**
23
- * Main Adaptable Api object
24
- */
25
- api: AdaptableApi;
26
22
  /**
27
23
  * All Expression Functions available to AdapTableQL
28
24
  */
29
25
  functions: ExpressionFunctionMap;
30
26
  /**
31
- * All Expression Functions available to AdapTableQL in the (optional) WHERE clause
27
+ * Expression Functions available to AdapTableQL in (optional) WHERE clause
32
28
  */
33
29
  whereClauseFunctions?: ExpressionFunctionMap;
34
30
  /**
@@ -36,7 +32,7 @@ export interface ExpressionContext {
36
32
  */
37
33
  filterFn?: (any: any) => boolean;
38
34
  /**
39
- * All shared(named) query evaluations are tracked in order to detect circular dependencies
35
+ * All Named Query evaluations: tracked in order to detect circular dependencies
40
36
  */
41
37
  namedQueryCallStack?: string[];
42
38
  }
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "12.0.4";
1
+ declare const _default: "12.0.7";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '12.0.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '12.0.7'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version