@adaptabletools/adaptable 11.0.0-canary.6 → 11.0.0-canary.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 (118) hide show
  1. package/agGrid.d.ts +5 -4
  2. package/agGrid.js +7 -5
  3. package/base.css +2 -2
  4. package/bundle.cjs.js +120 -115
  5. package/index.css +2 -2
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
  10. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -5
  11. package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +31 -2
  12. package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
  13. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  14. package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
  15. package/src/AdaptableOptions/StateOptions.d.ts +7 -7
  16. package/src/Api/CalculatedColumnApi.d.ts +2 -9
  17. package/src/Api/GridApi.d.ts +11 -1
  18. package/src/Api/Implementation/ApiBase.d.ts +3 -2
  19. package/src/Api/Implementation/ApiBase.js +5 -2
  20. package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
  21. package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
  22. package/src/Api/Implementation/GridApiImpl.js +27 -4
  23. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
  24. package/src/Api/Implementation/InternalApiImpl.js +5 -4
  25. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +3 -0
  26. package/src/Api/Implementation/QueryLanguageApiImpl.js +15 -2
  27. package/src/Api/InternalApi.d.ts +2 -3
  28. package/src/Api/QueryApi.d.ts +2 -2
  29. package/src/Api/QueryLanguageApi.d.ts +13 -0
  30. package/src/Api/SettingsPanelApi.d.ts +4 -5
  31. package/src/PredefinedConfig/AlertState.d.ts +5 -1
  32. package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
  33. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +0 -1
  34. package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -5
  35. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  36. package/src/PredefinedConfig/Common/Types.d.ts +2 -0
  37. package/src/PredefinedConfig/Common/Types.js +1 -0
  38. package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
  39. package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
  40. package/src/Redux/Store/AdaptableStore.js +27 -2
  41. package/src/Strategy/AlertModule.js +3 -3
  42. package/src/Strategy/CalculatedColumnModule.js +4 -4
  43. package/src/Strategy/ChartingModule.d.ts +3 -3
  44. package/src/Strategy/ChartingModule.js +2 -2
  45. package/src/Strategy/FlashingCellModule.js +2 -2
  46. package/src/Strategy/FreeTextColumnModule.js +1 -0
  47. package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
  48. package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
  49. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
  50. package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
  51. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  52. package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
  53. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -1
  54. package/src/Utilities/Constants/DocumentationLinkConstants.js +3 -2
  55. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +16 -12
  56. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +1 -1
  57. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +18 -1
  58. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +311 -14
  59. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  60. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
  61. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +2 -3
  62. package/src/Utilities/ExpressionFunctions/groupingMap.js +3 -2
  63. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  64. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
  65. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
  66. package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
  67. package/src/Utilities/Services/AlertService.js +5 -1
  68. package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
  69. package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
  70. package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
  71. package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
  72. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +7 -1
  73. package/src/Utilities/Services/LicenseService.js +1 -1
  74. package/src/Utilities/Services/QueryLanguageService.d.ts +9 -2
  75. package/src/Utilities/Services/QueryLanguageService.js +81 -22
  76. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
  77. package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
  78. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
  79. package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
  80. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
  81. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
  82. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
  83. package/src/View/ColorPicker.d.ts +1 -1
  84. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  85. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  86. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  87. package/src/View/Components/EntityRulesEditor/index.js +2 -3
  88. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  89. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  90. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
  91. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  92. package/src/View/Components/ValueSelector/index.js +1 -1
  93. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  94. package/src/View/License/LicenseWatermark.js +1 -1
  95. package/src/agGrid/Adaptable.d.ts +1 -0
  96. package/src/agGrid/Adaptable.js +16 -14
  97. package/src/agGrid/agGridHelper.js +2 -2
  98. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
  99. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
  100. package/src/components/Datepicker/index.d.ts +1 -1
  101. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  102. package/src/components/ExpressionEditor/EditorInput.js +5 -2
  103. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
  104. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
  105. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
  106. package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
  107. package/src/components/ExpressionEditor/index.d.ts +2 -1
  108. package/src/components/ExpressionEditor/index.js +9 -2
  109. package/src/components/Input/index.d.ts +1 -1
  110. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  111. package/src/components/Logo/index.js +8 -7
  112. package/src/components/PopupWithFooter.d.ts +1 -1
  113. package/src/components/Textarea/index.d.ts +1 -1
  114. package/src/metamodel/adaptable.metamodel.d.ts +41 -37
  115. package/src/metamodel/adaptable.metamodel.js +156 -133
  116. package/src/types.d.ts +5 -5
  117. package/version.d.ts +1 -1
  118. package/version.js +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.