@adaptabletools/adaptable 16.0.8 → 16.0.10-canary.0

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 (197) hide show
  1. package/base.css +14 -14
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +169 -169
  4. package/index.css +14 -14
  5. package/index.css.map +1 -1
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/AdaptableOptions.d.ts +2 -2
  10. package/src/AdaptableOptions/ChartingOptions.d.ts +40 -0
  11. package/src/AdaptableOptions/ColumnOptions.d.ts +17 -0
  12. package/src/AdaptableOptions/NotesOptions.d.ts +23 -0
  13. package/src/AdaptableOptions/QuickSearchOptions.d.ts +8 -0
  14. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -0
  15. package/src/Api/AdaptableApi.d.ts +3 -3
  16. package/src/Api/ChartingApi.d.ts +30 -0
  17. package/src/Api/ColumnApi.d.ts +5 -0
  18. package/src/Api/ConfigApi.d.ts +4 -3
  19. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  20. package/src/Api/Implementation/AdaptableApiImpl.js +2 -2
  21. package/src/Api/Implementation/ApiBase.d.ts +2 -2
  22. package/src/Api/Implementation/ApiBase.js +2 -2
  23. package/src/Api/Implementation/ChartingApiImpl.d.ts +8 -2
  24. package/src/Api/Implementation/ChartingApiImpl.js +64 -0
  25. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  26. package/src/Api/Implementation/ColumnApiImpl.js +4 -0
  27. package/src/Api/Implementation/ConfigApiImpl.d.ts +3 -2
  28. package/src/Api/Implementation/ConfigApiImpl.js +9 -9
  29. package/src/Api/Implementation/NotesApiImpl.d.ts +20 -0
  30. package/src/Api/Implementation/NotesApiImpl.js +58 -0
  31. package/src/Api/Implementation/OptionsApiImpl.d.ts +2 -2
  32. package/src/Api/Implementation/OptionsApiImpl.js +2 -2
  33. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -0
  34. package/src/Api/Implementation/UserInterfaceApiImpl.js +8 -0
  35. package/src/Api/Internal/AdaptableInternalApi.d.ts +0 -2
  36. package/src/Api/Internal/AdaptableInternalApi.js +0 -6
  37. package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -0
  38. package/src/Api/Internal/CalculatedColumnInternalApi.js +12 -0
  39. package/src/Api/Internal/ChartingInternalApi.d.ts +7 -0
  40. package/src/Api/Internal/ChartingInternalApi.js +45 -0
  41. package/src/Api/Internal/ColumnInternalApi.d.ts +3 -0
  42. package/src/Api/Internal/ColumnInternalApi.js +3 -0
  43. package/src/Api/NotesAPi.d.ts +50 -0
  44. package/src/Api/OptionsApi.d.ts +3 -3
  45. package/src/Api/UserInterfaceApi.d.ts +8 -0
  46. package/src/PredefinedConfig/AdaptableState.d.ts +2 -2
  47. package/src/PredefinedConfig/ChartingState.d.ts +22 -0
  48. package/src/PredefinedConfig/ChartingState.js +9 -0
  49. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +12 -0
  50. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  51. package/src/PredefinedConfig/Common/Menu.d.ts +1 -1
  52. package/src/PredefinedConfig/Common/Types.d.ts +2 -2
  53. package/src/PredefinedConfig/Common/Types.js +1 -1
  54. package/src/PredefinedConfig/NotesState.d.ts +59 -0
  55. package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -2
  56. package/src/PredefinedConfig/SystemState.d.ts +5 -3
  57. package/src/Redux/ActionsReducers/ChartingRedux.d.ts +28 -3
  58. package/src/Redux/ActionsReducers/ChartingRedux.js +52 -5
  59. package/src/Redux/ActionsReducers/NotesRedux.d.ts +39 -0
  60. package/src/Redux/ActionsReducers/NotesRedux.js +88 -0
  61. package/src/Redux/ActionsReducers/SystemRedux.d.ts +10 -10
  62. package/src/Redux/ActionsReducers/SystemRedux.js +23 -22
  63. package/src/Redux/Store/AdaptableStore.js +19 -11
  64. package/src/Strategy/ChartingModule.d.ts +5 -2
  65. package/src/Strategy/ChartingModule.js +28 -7
  66. package/src/Strategy/ColumnInfoModule.d.ts +11 -0
  67. package/src/Strategy/ColumnInfoModule.js +47 -0
  68. package/src/Strategy/DataSetModule.js +1 -0
  69. package/src/Strategy/Fdc3Module.js +28 -26
  70. package/src/Strategy/FilterModule.js +5 -0
  71. package/src/Strategy/GridInfoModule.js +13 -82
  72. package/src/Strategy/Interface/IModule.d.ts +2 -0
  73. package/src/Strategy/{CommentsModule.d.ts → NotesModule.d.ts} +6 -6
  74. package/src/Strategy/{CommentsModule.js → NotesModule.js} +41 -41
  75. package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.d.ts +2 -0
  76. package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +20 -18
  77. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -0
  78. package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -1
  79. package/src/Utilities/Constants/ModuleConstants.d.ts +6 -3
  80. package/src/Utilities/Constants/ModuleConstants.js +8 -5
  81. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -1
  82. package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -1
  83. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -2
  84. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +36 -10
  85. package/src/Utilities/Extensions/ObjectExtensions.d.ts +1 -0
  86. package/src/Utilities/Extensions/ObjectExtensions.js +5 -1
  87. package/src/Utilities/ObjectFactory.d.ts +2 -1
  88. package/src/Utilities/ObjectFactory.js +10 -2
  89. package/src/Utilities/Services/Interface/IEntitlementService.d.ts +4 -0
  90. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +1 -1
  91. package/src/Utilities/Services/QueryLanguageService.d.ts +1 -2
  92. package/src/Utilities/Services/QueryLanguageService.js +1 -6
  93. package/src/Utilities/Services/ValidationService.js +15 -5
  94. package/src/View/AdaptableView.js +2 -2
  95. package/src/View/AdaptableViewFactory.js +5 -3
  96. package/src/View/Alert/Wizard/AlertButtonsEditor.js +20 -4
  97. package/src/View/Alert/Wizard/AlertWizard.js +14 -7
  98. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  99. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.d.ts +2 -0
  100. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +25 -46
  101. package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.d.ts +8 -0
  102. package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.js +19 -0
  103. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +2 -0
  104. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +44 -3
  105. package/src/View/CalculatedColumn/utils.d.ts +2 -0
  106. package/src/View/CalculatedColumn/utils.js +14 -0
  107. package/src/View/Charting/ChartingWizard/AgChargingWizard/AgChargingWizard.d.ts +6 -0
  108. package/src/View/Charting/ChartingWizard/AgChargingWizard/AgChargingWizard.js +47 -0
  109. package/src/View/Charting/ChartingWizard/{PreviewChartSection.d.ts → AgChargingWizard/PreviewChartSection.d.ts} +1 -1
  110. package/src/View/Charting/ChartingWizard/{PreviewChartSection.js → AgChargingWizard/PreviewChartSection.js} +2 -2
  111. package/src/View/Charting/ChartingWizard/{SettingsSection.d.ts → AgChargingWizard/SettingsSection.d.ts} +1 -1
  112. package/src/View/Charting/ChartingWizard/{SettingsSection.js → AgChargingWizard/SettingsSection.js} +4 -4
  113. package/src/View/Charting/ChartingWizard/AgChargingWizard/index.d.ts +1 -0
  114. package/src/View/Charting/ChartingWizard/AgChargingWizard/index.js +4 -0
  115. package/src/View/Charting/ChartingWizard/ChartingWizard.d.ts +4 -3
  116. package/src/View/Charting/ChartingWizard/ChartingWizard.js +12 -39
  117. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.d.ts +6 -0
  118. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.js +59 -0
  119. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.d.ts +9 -0
  120. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.js +25 -0
  121. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/index.d.ts +1 -0
  122. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/index.js +4 -0
  123. package/src/View/Charting/ChartingWizard/index.d.ts +1 -0
  124. package/src/View/Charting/ChartingWizard/index.js +4 -0
  125. package/src/View/Charting/DeleteChartButton.d.ts +2 -1
  126. package/src/View/Charting/DeleteChartButton.js +4 -2
  127. package/src/View/Charting/EditChartButton.d.ts +2 -1
  128. package/src/View/Charting/ShowChartButton.js +47 -16
  129. package/src/View/Charting/{useChartState.d.ts → useAgChartState.d.ts} +1 -1
  130. package/src/View/Charting/{useChartState.js → useAgChartState.js} +7 -7
  131. package/src/View/Charting/useChartingElements.d.ts +2 -1
  132. package/src/View/Charting/useChartingElements.js +36 -26
  133. package/src/View/Charting/useExternalChartState.d.ts +7 -0
  134. package/src/View/Charting/useExternalChartState.js +56 -0
  135. package/src/View/ColumnInfo/ColumnInfo.d.ts +5 -0
  136. package/src/View/ColumnInfo/ColumnInfo.js +185 -0
  137. package/src/View/ColumnInfo/ColumnInfoPopup.d.ts +3 -0
  138. package/src/View/ColumnInfo/ColumnInfoPopup.js +15 -0
  139. package/src/View/Components/AdaptableIconSelector/index.d.ts +1 -1
  140. package/src/View/Components/Selectors/ColumnSelector.js +1 -1
  141. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +6 -1
  142. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +9 -0
  143. package/src/View/GridInfo/{AdaptableObjectsSummary.js → GridInfoPopup/AdaptableObjectsSummary.js} +2 -2
  144. package/src/View/GridInfo/{AdaptableOptionsComponent.d.ts → GridInfoPopup/AdaptableOptionsComponent.d.ts} +1 -1
  145. package/src/View/GridInfo/{AdaptableOptionsComponent.js → GridInfoPopup/AdaptableOptionsComponent.js} +6 -6
  146. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.d.ts +6 -0
  147. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +82 -0
  148. package/src/View/GridInfo/GridInfoPopup/index.d.ts +1 -0
  149. package/src/View/GridInfo/GridInfoPopup/index.js +4 -0
  150. package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
  151. package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
  152. package/src/View/Notes/NotesListing.d.ts +2 -0
  153. package/src/View/{Comments/CommentListing.js → Notes/NotesListing.js} +13 -14
  154. package/src/View/Notes/NotesPopup.d.ts +2 -0
  155. package/src/View/{Comments/CommentPopup.js → Notes/NotesPopup.js} +21 -21
  156. package/src/View/Shortcut/Wizard/ShortcutWizard.js +6 -1
  157. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +14 -0
  158. package/src/agGrid/Adaptable.d.ts +1 -1
  159. package/src/agGrid/Adaptable.js +28 -16
  160. package/src/agGrid/agGridHelper.d.ts +3 -3
  161. package/src/agGrid/agGridHelper.js +56 -30
  162. package/src/agGrid/agGridMenuHelper.js +4 -2
  163. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  164. package/src/components/ExpressionEditor/EditorInput.js +15 -6
  165. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +5 -10
  166. package/src/components/ExpressionEditor/editorButtonsCumulativeAggregatedScalar.js +5 -5
  167. package/src/components/ExpressionEditor/editorButtonsQuantileAggregatedScalar.d.ts +2 -0
  168. package/src/components/ExpressionEditor/editorButtonsQuantileAggregatedScalar.js +25 -0
  169. package/src/components/ExpressionEditor/index.d.ts +1 -1
  170. package/src/components/ExpressionEditor/index.js +2 -1
  171. package/src/components/icons/index.js +2 -0
  172. package/src/components/icons/note.d.ts +3 -0
  173. package/src/components/icons/note.js +7 -0
  174. package/src/metamodel/adaptable.metamodel.d.ts +72 -59
  175. package/src/metamodel/adaptable.metamodel.js +1 -1
  176. package/src/types.d.ts +4 -4
  177. package/version.d.ts +1 -1
  178. package/version.js +1 -1
  179. package/src/AdaptableOptions/CommentsOptions.d.ts +0 -23
  180. package/src/Api/CommentsApi.d.ts +0 -50
  181. package/src/Api/Implementation/CommentsApiImpl.d.ts +0 -20
  182. package/src/Api/Implementation/CommentsApiImpl.js +0 -58
  183. package/src/PredefinedConfig/CommentsState.d.ts +0 -59
  184. package/src/Redux/ActionsReducers/CommentsRedux.d.ts +0 -39
  185. package/src/Redux/ActionsReducers/CommentsRedux.js +0 -92
  186. package/src/View/Comments/CommentListing.d.ts +0 -2
  187. package/src/View/Comments/CommentPopup.d.ts +0 -2
  188. package/src/View/GridInfo/ColumnInfoComponent.d.ts +0 -20
  189. package/src/View/GridInfo/ColumnInfoComponent.js +0 -176
  190. package/src/View/GridInfo/GridInfoPopup.d.ts +0 -16
  191. package/src/View/GridInfo/GridInfoPopup.js +0 -117
  192. package/src/View/GridInfo/GridOptionsComponent.d.ts +0 -16
  193. package/src/View/GridInfo/GridOptionsComponent.js +0 -36
  194. /package/src/AdaptableOptions/{CommentsOptions.js → NotesOptions.js} +0 -0
  195. /package/src/Api/{CommentsApi.js → NotesAPi.js} +0 -0
  196. /package/src/PredefinedConfig/{CommentsState.js → NotesState.js} +0 -0
  197. /package/src/View/GridInfo/{AdaptableObjectsSummary.d.ts → GridInfoPopup/AdaptableObjectsSummary.d.ts} +0 -0

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.