@adaptabletools/adaptable 11.0.0-canary.5 → 11.0.0-canary.6

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 (67) hide show
  1. package/agGrid.d.ts +1 -1
  2. package/agGrid.js +3 -3
  3. package/bundle.cjs.js +117 -117
  4. package/package.json +1 -1
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -1
  8. package/src/AdaptableOptions/ContainerOptions.d.ts +1 -1
  9. package/src/AdaptableOptions/QueryLanguageOptions.d.ts +3 -3
  10. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
  11. package/src/Api/AdaptableApi.d.ts +5 -0
  12. package/src/Api/ColumnApi.d.ts +0 -4
  13. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -1
  14. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  15. package/src/Api/Implementation/AlertApiImpl.js +4 -1
  16. package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
  17. package/src/Api/Implementation/ColumnApiImpl.js +0 -5
  18. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +1 -1
  19. package/src/Api/Implementation/QueryLanguageApiImpl.js +2 -2
  20. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
  21. package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
  22. package/src/Api/QueryLanguageApi.d.ts +10 -10
  23. package/src/Api/SettingsPanelApi.d.ts +17 -0
  24. package/src/Api/SettingsPanelApi.js +2 -0
  25. package/src/PredefinedConfig/AlertState.d.ts +2 -2
  26. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -4
  27. package/src/PredefinedConfig/Common/AdaptableQuery.js +3 -3
  28. package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
  29. package/src/PredefinedConfig/Common/Enums.js +0 -2
  30. package/src/Strategy/AlertModule.js +9 -0
  31. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -2
  32. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.d.ts → aggregatedBooleanExpressionFunctions.d.ts} +1 -1
  33. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.js → aggregatedBooleanExpressionFunctions.js} +3 -3
  34. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +7 -0
  35. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +42 -0
  36. package/src/Utilities/ExpressionFunctions/deepMap.d.ts +35 -0
  37. package/src/Utilities/ExpressionFunctions/deepMap.js +283 -0
  38. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +36 -0
  39. package/src/Utilities/ExpressionFunctions/groupingMap.js +104 -0
  40. package/src/Utilities/Services/AlertService.js +3 -3
  41. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +2 -2
  42. package/src/Utilities/Services/QueryLanguageService.d.ts +2 -2
  43. package/src/Utilities/Services/QueryLanguageService.js +6 -6
  44. package/src/View/AdaptableWizardView/helper.js +2 -2
  45. package/src/View/Alert/Wizard/AlertWizard.js +2 -2
  46. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -2
  47. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
  48. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  49. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
  50. package/src/View/Components/EntityRulesEditor/index.js +9 -9
  51. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +2 -2
  52. package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
  53. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
  54. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
  55. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
  56. package/src/View/Query/Wizard/NamedQueryWizard.js +3 -3
  57. package/src/agGrid/Adaptable.js +1 -2
  58. package/src/agGrid/agGridHelper.js +1 -5
  59. package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
  60. package/src/components/ExpressionEditor/EditorInputReactive.js +1 -1
  61. package/src/components/ExpressionEditor/index.d.ts +1 -1
  62. package/src/components/ExpressionEditor/index.js +3 -3
  63. package/src/metamodel/adaptable.metamodel.d.ts +11 -0
  64. package/src/metamodel/adaptable.metamodel.js +36 -16
  65. package/src/types.d.ts +2 -1
  66. package/version.d.ts +1 -1
  67. package/version.js +1 -1
package/agGrid.d.ts CHANGED
@@ -4,7 +4,7 @@ export declare const AdaptableNoCodeWizard: typeof import("./src/agGrid/Adaptabl
4
4
  export declare const AdaptableBooleanExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/booleanExpressionFunctions").BooleanFunctionName, import("./types").ExpressionFunction>;
5
5
  export declare const AdaptableScalarExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/scalarExpressionFunctions").ScalarFunctionName, import("./types").ExpressionFunction>;
6
6
  export declare const AdaptableObservableExpressionFunctions: Record<"ROW_CHANGE" | "GRID_CHANGE" | "COUNT" | "NONE" | "MIN" | "MAX" | "TIMEFRAME" | "COL" | "WHERE", import("./types").ExpressionFunction>;
7
- export declare const AdaptableAggregationExpressionFunctions: Record<"EQ" | "NEQ" | "LT" | "GT" | "LTE" | "GTE" | "SUM" | "COL" | "WHERE", import("./types").ExpressionFunction>;
7
+ export declare const AdaptableAggregatedBooleanExpressionFunctions: Record<"EQ" | "NEQ" | "LT" | "GT" | "LTE" | "GTE" | "SUM" | "COL" | "WHERE", import("./types").ExpressionFunction>;
8
8
  import { AdaptableNumberEditor } from './src/agGrid/editors/AdaptableNumberEditor';
9
9
  import { AdaptableDateEditor } from './src/agGrid/editors/AdaptableDateEditor';
10
10
  export { AdaptableNumberEditor, AdaptableDateEditor, AdaptableWizardView };
package/agGrid.js CHANGED
@@ -1,19 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptableAggregationExpressionFunctions = exports.AdaptableObservableExpressionFunctions = exports.AdaptableScalarExpressionFunctions = exports.AdaptableBooleanExpressionFunctions = exports.AdaptableNoCodeWizard = void 0;
3
+ exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptableAggregatedBooleanExpressionFunctions = exports.AdaptableObservableExpressionFunctions = exports.AdaptableScalarExpressionFunctions = exports.AdaptableBooleanExpressionFunctions = exports.AdaptableNoCodeWizard = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const agGrid_1 = tslib_1.__importStar(require("./src/agGrid"));
6
6
  Object.defineProperty(exports, "AdaptableWizardView", { enumerable: true, get: function () { return agGrid_1.AdaptableWizardView; } });
7
7
  const booleanExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/booleanExpressionFunctions");
8
8
  const scalarExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/scalarExpressionFunctions");
9
9
  const observableExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/observableExpressionFunctions");
10
- const aggregationExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/aggregationExpressionFunctions");
10
+ const aggregatedBooleanExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions");
11
11
  exports.default = agGrid_1.default;
12
12
  exports.AdaptableNoCodeWizard = agGrid_1.AdaptableNoCodeWizard;
13
13
  exports.AdaptableBooleanExpressionFunctions = booleanExpressionFunctions_1.booleanExpressionFunctions;
14
14
  exports.AdaptableScalarExpressionFunctions = scalarExpressionFunctions_1.scalarExpressionFunctions;
15
15
  exports.AdaptableObservableExpressionFunctions = observableExpressionFunctions_1.observableExpressionFunctions;
16
- exports.AdaptableAggregationExpressionFunctions = aggregationExpressionFunctions_1.aggregationExpressionFunctions;
16
+ exports.AdaptableAggregatedBooleanExpressionFunctions = aggregatedBooleanExpressionFunctions_1.aggregatedBooleanExpressionFunctions;
17
17
  const AdaptableNumberEditor_1 = require("./src/agGrid/editors/AdaptableNumberEditor");
18
18
  Object.defineProperty(exports, "AdaptableNumberEditor", { enumerable: true, get: function () { return AdaptableNumberEditor_1.AdaptableNumberEditor; } });
19
19
  const AdaptableDateEditor_1 = require("./src/agGrid/editors/AdaptableDateEditor");