@adaptabletools/adaptable 12.0.5 → 12.0.8

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 (32) 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/Api/GridApi.d.ts +2 -1
  6. package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
  7. package/src/Api/Implementation/GridApiImpl.js +1 -1
  8. package/src/Api/Implementation/InternalApiImpl.js +3 -0
  9. package/src/PredefinedConfig/Common/CellSummary.d.ts +2 -6
  10. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  11. package/src/Strategy/AlertModule.js +2 -2
  12. package/src/Strategy/CellSummaryModule.js +4 -3
  13. package/src/Strategy/FlashingCellModule.js +2 -2
  14. package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -2
  15. package/src/Utilities/Services/ReportService.js +1 -1
  16. package/src/Utilities/Services/RowEditService.js +4 -1
  17. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.d.ts +8 -0
  18. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/{ConfigurationForm.js → AdaptableOptionsForm.js} +3 -39
  19. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +27 -3
  20. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/{ConfigurationForm.d.ts → EntitlementsForm.d.ts} +3 -3
  21. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +17 -0
  22. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.d.ts +8 -0
  23. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +54 -0
  24. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +0 -1
  25. package/src/agGrid/Adaptable.js +9 -7
  26. package/src/agGrid/agGridHelper.js +2 -2
  27. package/src/components/ExpressionEditor/BaseEditorInput.js +3 -0
  28. package/src/components/ExpressionEditor/index.js +2 -2
  29. package/src/metamodel/adaptable.metamodel.js +1 -1
  30. package/src/parser/src/types.d.ts +2 -2
  31. package/version.d.ts +1 -1
  32. package/version.js +1 -1
@@ -24,7 +24,7 @@ export interface ExpressionContext extends BaseContext {
24
24
  */
25
25
  functions: ExpressionFunctionMap;
26
26
  /**
27
- * All Expression Functions available to AdapTableQL in the (optional) WHERE clause
27
+ * Expression Functions available to AdapTableQL in (optional) WHERE clause
28
28
  */
29
29
  whereClauseFunctions?: ExpressionFunctionMap;
30
30
  /**
@@ -32,7 +32,7 @@ export interface ExpressionContext extends BaseContext {
32
32
  */
33
33
  filterFn?: (any: any) => boolean;
34
34
  /**
35
- * 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
36
36
  */
37
37
  namedQueryCallStack?: string[];
38
38
  }
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "12.0.5";
1
+ declare const _default: "12.0.8";
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.5'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '12.0.8'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version