@adaptabletools/adaptable-cjs 17.0.0-canary.4 → 18.0.0-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 (285) hide show
  1. package/base.css +62 -14
  2. package/base.css.map +1 -1
  3. package/index.css +267 -165
  4. package/index.css.map +1 -1
  5. package/package.json +5 -4
  6. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -0
  7. package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
  8. package/src/AdaptableOptions/AlertOptions.d.ts +7 -7
  9. package/src/AdaptableOptions/ColumnFilterOptions.d.ts +9 -9
  10. package/src/AdaptableOptions/CommentsOptions.d.ts +28 -0
  11. package/src/AdaptableOptions/EditOptions.d.ts +6 -6
  12. package/src/AdaptableOptions/GridFilterOptions.d.ts +13 -8
  13. package/src/AdaptableOptions/GroupingOptions.d.ts +9 -9
  14. package/src/AdaptableOptions/InteropioPluginOptions.d.ts +10 -0
  15. package/src/AdaptableOptions/MenuOptions.d.ts +18 -4
  16. package/src/AdaptableOptions/MenuOptions.js +14 -6
  17. package/src/AdaptableOptions/NotesOptions.d.ts +2 -9
  18. package/src/Api/AdaptableApi.d.ts +6 -1
  19. package/src/Api/CommentApi.d.ts +58 -0
  20. package/src/Api/EventApi.d.ts +48 -12
  21. package/src/Api/Events/CalculatedColumnChanged.d.ts +19 -0
  22. package/src/Api/Events/CellSelectionChanged.d.ts +11 -0
  23. package/src/Api/Events/CommentsChangedInfo.d.ts +5 -0
  24. package/src/Api/Events/LiveDataChanged.d.ts +3 -3
  25. package/src/Api/Events/RowSelectionChanged.d.ts +11 -0
  26. package/src/Api/GridApi.d.ts +0 -6
  27. package/src/Api/GridFilterApi.d.ts +2 -2
  28. package/src/Api/Implementation/AdaptableApiImpl.d.ts +6 -6
  29. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  30. package/src/Api/Implementation/CommentsApiImpl.d.ts +15 -0
  31. package/src/Api/Implementation/CommentsApiImpl.js +46 -0
  32. package/src/Api/Implementation/ExpressionApiImpl.d.ts +1 -1
  33. package/src/Api/Implementation/ExpressionApiImpl.js +3 -4
  34. package/src/Api/Implementation/GridApiImpl.d.ts +0 -1
  35. package/src/Api/Implementation/GridApiImpl.js +0 -4
  36. package/src/Api/Implementation/GridFilterApiImpl.d.ts +1 -1
  37. package/src/Api/Implementation/GridFilterApiImpl.js +1 -1
  38. package/src/Api/Implementation/NotesApiImpl.d.ts +2 -6
  39. package/src/Api/Implementation/NotesApiImpl.js +1 -15
  40. package/src/Api/Implementation/OptionsApiImpl.d.ts +2 -0
  41. package/src/Api/Implementation/OptionsApiImpl.js +3 -0
  42. package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -6
  43. package/src/Api/Implementation/PluginsApiImpl.js +3 -15
  44. package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -12
  45. package/src/Api/Implementation/ScheduleApiImpl.js +0 -36
  46. package/src/Api/Implementation/ThemeApiImpl.d.ts +1 -0
  47. package/src/Api/Implementation/ThemeApiImpl.js +3 -0
  48. package/src/Api/Internal/ActionRowInternalApi.js +1 -1
  49. package/src/Api/Internal/AdaptableInternalApi.d.ts +2 -0
  50. package/src/Api/Internal/AdaptableInternalApi.js +3 -0
  51. package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -0
  52. package/src/Api/Internal/CalculatedColumnInternalApi.js +16 -0
  53. package/src/Api/Internal/DashboardInternalApi.d.ts +1 -0
  54. package/src/Api/Internal/DashboardInternalApi.js +5 -0
  55. package/src/Api/Internal/DataImportInternalApi.js +2 -0
  56. package/src/Api/Internal/DataSetInternalApi.js +2 -1
  57. package/src/Api/Internal/GridInternalApi.d.ts +3 -1
  58. package/src/Api/Internal/GridInternalApi.js +32 -9
  59. package/src/Api/Internal/LayoutInternalApi.d.ts +2 -2
  60. package/src/Api/Internal/LayoutInternalApi.js +11 -11
  61. package/src/Api/InteropioPluginApi.d.ts +10 -0
  62. package/src/Api/{NotesAPi.d.ts → NotesApi.d.ts} +19 -21
  63. package/src/Api/OptionsApi.d.ts +5 -0
  64. package/src/Api/PluginsApi.d.ts +3 -13
  65. package/src/Api/ScheduleApi.d.ts +1 -48
  66. package/src/Api/ThemeApi.d.ts +5 -0
  67. package/src/PredefinedConfig/AdaptableState.d.ts +4 -2
  68. package/src/PredefinedConfig/CellAddress.d.ts +13 -0
  69. package/src/PredefinedConfig/CellAddress.js +5 -0
  70. package/src/PredefinedConfig/CommentState.d.ts +48 -0
  71. package/src/PredefinedConfig/CommentState.js +2 -0
  72. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  73. package/src/PredefinedConfig/Common/AdaptablePredicate.js +2 -1
  74. package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
  75. package/src/PredefinedConfig/Common/Enums.js +0 -1
  76. package/src/PredefinedConfig/Common/Schedule.d.ts +1 -1
  77. package/src/PredefinedConfig/Common/Types.d.ts +5 -5
  78. package/src/PredefinedConfig/Common/Types.js +0 -2
  79. package/src/PredefinedConfig/NotesState.d.ts +0 -13
  80. package/src/PredefinedConfig/PredefinedConfig.d.ts +3 -0
  81. package/src/PredefinedConfig/ScheduleState.d.ts +0 -5
  82. package/src/PredefinedConfig/SystemState.d.ts +5 -6
  83. package/src/PredefinedConfig/ThemeState.d.ts +1 -1
  84. package/src/Redux/ActionsReducers/CommentsRedux.d.ts +79 -0
  85. package/src/Redux/ActionsReducers/CommentsRedux.js +189 -0
  86. package/src/Redux/ActionsReducers/NotesRedux.js +1 -2
  87. package/src/Redux/ActionsReducers/PluginsRedux.d.ts +0 -48
  88. package/src/Redux/ActionsReducers/PluginsRedux.js +1 -49
  89. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +16 -0
  90. package/src/Redux/ActionsReducers/PlusMinusRedux.js +47 -1
  91. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +0 -53
  92. package/src/Redux/ActionsReducers/ScheduleRedux.js +2 -90
  93. package/src/Redux/ActionsReducers/SystemRedux.d.ts +23 -12
  94. package/src/Redux/ActionsReducers/SystemRedux.js +55 -23
  95. package/src/Redux/Store/AdaptableStore.d.ts +2 -2
  96. package/src/Redux/Store/AdaptableStore.js +107 -46
  97. package/src/Strategy/CommentsModule.d.ts +16 -0
  98. package/src/Strategy/CommentsModule.js +82 -0
  99. package/src/Strategy/LayoutModule.d.ts +12 -4
  100. package/src/Strategy/LayoutModule.js +19 -14
  101. package/src/Strategy/NotesModule.d.ts +0 -13
  102. package/src/Strategy/NotesModule.js +9 -88
  103. package/src/Strategy/PlusMinusModule.js +2 -0
  104. package/src/Strategy/ScheduleModule.js +0 -23
  105. package/src/Strategy/Utilities/Export/getExportRowsViewItems.d.ts +2 -1
  106. package/src/Strategy/Utilities/Export/getExportRowsViewItems.js +14 -5
  107. package/src/Strategy/Utilities/getExpressionViewItems.js +8 -2
  108. package/src/Utilities/Constants/ConfigConstants.d.ts +1 -0
  109. package/src/Utilities/Constants/ConfigConstants.js +2 -1
  110. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  111. package/src/Utilities/Constants/GeneralConstants.js +8 -3
  112. package/src/Utilities/Constants/ModuleConstants.d.ts +3 -3
  113. package/src/Utilities/Constants/ModuleConstants.js +4 -4
  114. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -3
  115. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  116. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +7 -1
  117. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +6 -0
  118. package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
  119. package/src/Utilities/ExpressionFunctions/dateUtils.js +18 -1
  120. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
  121. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +12 -12
  122. package/src/Utilities/Extensions/ArrayExtensions.d.ts +2 -0
  123. package/src/Utilities/Extensions/ArrayExtensions.js +8 -1
  124. package/src/Utilities/Helpers/PreviewHelper.js +5 -2
  125. package/src/Utilities/ObjectFactory.d.ts +19 -22
  126. package/src/Utilities/ObjectFactory.js +51 -60
  127. package/src/Utilities/Services/CellPopupService.d.ts +23 -0
  128. package/src/Utilities/Services/CellPopupService.js +138 -0
  129. package/src/Utilities/Services/Interface/IReportService.d.ts +1 -1
  130. package/src/Utilities/Services/Interface/IThemeService.d.ts +8 -0
  131. package/src/Utilities/Services/ModuleService.js +1 -3
  132. package/src/Utilities/Services/ReportService.d.ts +1 -1
  133. package/src/Utilities/Services/ThemeService.d.ts +3 -0
  134. package/src/Utilities/Services/ThemeService.js +33 -1
  135. package/src/Utilities/Services/ValidationService.js +11 -11
  136. package/src/View/AdaptableView.js +3 -3
  137. package/src/View/AdaptableViewFactory.js +4 -2
  138. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -2
  139. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +1 -1
  140. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +1 -1
  141. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -2
  142. package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -1
  143. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -3
  144. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
  145. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +1 -1
  146. package/src/View/Charting/useChartingElements.js +8 -3
  147. package/src/View/Comments/CommentsEditor.d.ts +7 -0
  148. package/src/View/Comments/CommentsEditor.js +100 -0
  149. package/src/View/Comments/CommentsPopup.d.ts +2 -0
  150. package/src/View/Comments/CommentsPopup.js +87 -0
  151. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +2 -1
  152. package/src/View/Components/CellPopup/index.js +1 -1
  153. package/src/View/Components/FilterForm/FilterForm.js +8 -2
  154. package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -3
  155. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -4
  156. package/src/View/Components/FilterForm/QuickFilterValues.d.ts +2 -2
  157. package/src/View/Components/FilterForm/QuickFilterValues.js +4 -3
  158. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.d.ts +5 -0
  159. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +67 -0
  160. package/src/View/Components/Popups/GridCellPopup/index.d.ts +1 -0
  161. package/src/View/Components/Popups/GridCellPopup/index.js +5 -0
  162. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
  163. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  164. package/src/View/Components/Selectors/PermittedValuesSelector.d.ts +5 -4
  165. package/src/View/Components/Selectors/PermittedValuesSelector.js +25 -3
  166. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -4
  167. package/src/View/Dashboard/ModuleToolbarWrapper.js +1 -1
  168. package/src/View/Dashboard/PinnedDashboard.js +2 -1
  169. package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +2 -2
  170. package/src/View/Export/Wizard/ReportRowsWizardSection.js +3 -1
  171. package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
  172. package/src/View/GridFilter/GridFilterPopup.js +10 -8
  173. package/src/View/GridFilter/GridFilterViewPanel.js +14 -11
  174. package/src/View/GridFilter/NamedQuerySelector.js +1 -1
  175. package/src/View/GridFilter/useGridFilterExpressionEditor.d.ts +3 -0
  176. package/src/View/GridFilter/useGridFilterExpressionEditor.js +17 -6
  177. package/src/View/GridFilter/useGridFilterOptionsForExpressionEditor.js +5 -23
  178. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +3 -2
  179. package/src/View/Layout/Wizard/getGridFilterPreview.d.ts +6 -0
  180. package/src/View/Layout/Wizard/getGridFilterPreview.js +16 -0
  181. package/src/View/Layout/Wizard/sections/FilterSection.js +1 -1
  182. package/src/View/Layout/Wizard/sections/GridFilterSection.js +4 -4
  183. package/src/View/NamedQuery/EditCurrentQueryButton.js +1 -1
  184. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  185. package/src/View/Notes/NoteEditor.d.ts +8 -0
  186. package/src/View/Notes/NoteEditor.js +33 -0
  187. package/src/View/Notes/NotesPopup.d.ts +2 -2
  188. package/src/View/Notes/NotesPopup.js +78 -55
  189. package/src/View/PlusMinus/MovePlusMinus.d.ts +7 -0
  190. package/src/View/PlusMinus/MovePlusMinus.js +27 -0
  191. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +0 -9
  192. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +0 -4
  193. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +2 -8
  194. package/src/View/Schedule/Wizard/ScheduleWizard.js +0 -8
  195. package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +3 -1
  196. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +1 -2
  197. package/src/agGrid/Adaptable.d.ts +7 -0
  198. package/src/agGrid/Adaptable.js +49 -35
  199. package/src/agGrid/BadgeRenderer.js +9 -5
  200. package/src/agGrid/agGridHelper.d.ts +2 -1
  201. package/src/agGrid/agGridHelper.js +15 -3
  202. package/src/agGrid/agGridMenuHelper.d.ts +2 -0
  203. package/src/agGrid/agGridMenuHelper.js +73 -25
  204. package/src/components/Datepicker/index.js +4 -4
  205. package/src/components/ExpressionEditor/ExpressionPreview.d.ts +7 -0
  206. package/src/components/ExpressionEditor/ExpressionPreview.js +25 -0
  207. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +2 -2
  208. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +6 -0
  209. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +40 -11
  210. package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +14 -2
  211. package/src/components/ExpressionEditor/QueryBuilder/booleanExpressions.js +1 -0
  212. package/src/components/ExpressionEditor/QueryBuilder/utils.js +1 -1
  213. package/src/components/ExpressionEditor/index.js +4 -7
  214. package/src/components/InputGroup/InputGroup.d.ts +7 -0
  215. package/src/components/InputGroup/InputGroup.js +12 -0
  216. package/src/components/InputGroup/index.d.ts +1 -0
  217. package/src/components/InputGroup/index.js +4 -0
  218. package/src/components/OverlayTrigger/index.js +7 -2
  219. package/src/components/Select/Select.d.ts +1 -2
  220. package/src/components/Select/Select.js +63 -23
  221. package/src/components/Toastify/index.d.ts +2 -2
  222. package/src/components/Toastify/index.js +1 -1
  223. package/src/components/icons/comments.d.ts +3 -0
  224. package/src/components/icons/comments.js +7 -0
  225. package/src/components/icons/index.js +3 -1
  226. package/src/env.d.ts +3 -1
  227. package/src/env.js +3 -1
  228. package/src/metamodel/adaptable.metamodel.d.ts +72 -158
  229. package/src/metamodel/adaptable.metamodel.js +128 -260
  230. package/src/parser/src/parser.d.ts +2 -0
  231. package/src/parser/src/parser.js +1880 -705
  232. package/src/parser/src/predicate/mapQlPredicateToExpression.js +5 -2
  233. package/src/parser/src/predicate/types.d.ts +1 -1
  234. package/src/parser/src/types.d.ts +1 -1
  235. package/src/renderReactRoot.js +15 -0
  236. package/src/themes/index.js +4 -0
  237. package/src/types.d.ts +10 -13
  238. package/themes/dark.css +3 -3
  239. package/tsconfig.cjs.tsbuildinfo +1 -1
  240. package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +0 -35
  241. package/src/AdaptableOptions/Glue42PluginOptions.d.ts +0 -25
  242. package/src/AdaptableOptions/Glue42WebPluginOptions.d.ts +0 -10
  243. package/src/Api/Events/SelectionChanged.d.ts +0 -16
  244. package/src/Api/FinsembleApi.d.ts +0 -10
  245. package/src/Api/Glue42Api.d.ts +0 -75
  246. package/src/Api/Glue42WebApi.d.ts +0 -10
  247. package/src/PredefinedConfig/Glue42State.d.ts +0 -46
  248. package/src/View/Notes/NotesListing.d.ts +0 -2
  249. package/src/View/Notes/NotesListing.js +0 -88
  250. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.d.ts +0 -9
  251. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +0 -25
  252. package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +0 -9
  253. package/src/bundle-dependencies/bundles/react-toastify/components/Icons.d.ts +0 -24
  254. package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +0 -59
  255. package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +0 -3
  256. package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +0 -3
  257. package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +0 -6
  258. package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +0 -6
  259. package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +0 -39
  260. package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +0 -2
  261. package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +0 -41
  262. package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +0 -2
  263. package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +0 -10
  264. package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +0 -23
  265. package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +0 -5
  266. package/src/bundle-dependencies/bundles/react-toastify/index.js +0 -1
  267. package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +0 -8
  268. package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +0 -269
  269. package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +0 -5
  270. package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +0 -23
  271. package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +0 -43
  272. package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +0 -5
  273. package/src/bundle-dependencies/bundles/react-toastify/utils/mapper.d.ts +0 -2
  274. package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +0 -9
  275. /package/src/AdaptableOptions/{FinsemblePluginOptions.js → CommentsOptions.js} +0 -0
  276. /package/src/AdaptableOptions/{Glue42PluginOptions.js → InteropioPluginOptions.js} +0 -0
  277. /package/src/{AdaptableOptions/Glue42WebPluginOptions.js → Api/CommentApi.js} +0 -0
  278. /package/src/Api/Events/{SelectionChanged.js → CalculatedColumnChanged.js} +0 -0
  279. /package/src/Api/{FinsembleApi.js → Events/CellSelectionChanged.js} +0 -0
  280. /package/src/Api/{Glue42Api.js → Events/CommentsChangedInfo.js} +0 -0
  281. /package/src/Api/{Glue42WebApi.js → Events/RowSelectionChanged.js} +0 -0
  282. /package/src/Api/Internal/{ExpressionnternalApi.d.ts → ExpressionInternalApi.d.ts} +0 -0
  283. /package/src/Api/Internal/{ExpressionnternalApi.js → ExpressionInternalApi.js} +0 -0
  284. /package/src/Api/{NotesAPi.js → InteropioPluginApi.js} +0 -0
  285. /package/src/{PredefinedConfig/Glue42State.js → Api/NotesApi.js} +0 -0
@@ -727,6 +727,35 @@ exports.ADAPTABLE_METAMODEL = {
727
727
  "kind": "A",
728
728
  "desc": "Column Types recognised by AdapTable; to be set in GridOptions"
729
729
  },
730
+ "AdaptableComment": {
731
+ "name": "AdaptableComment",
732
+ "kind": "I",
733
+ "desc": "Note that can be applied to a Cell in AdapTable",
734
+ "props": [
735
+ {
736
+ "name": "AdaptableId",
737
+ "kind": "s",
738
+ "desc": "Id of this AdapTable instance",
739
+ "isOpt": true
740
+ },
741
+ {
742
+ "name": "Author",
743
+ "kind": "u",
744
+ "desc": "Author of the Note",
745
+ "isOpt": true
746
+ },
747
+ {
748
+ "name": "Timestamp",
749
+ "kind": "n",
750
+ "desc": "When Note was made"
751
+ },
752
+ {
753
+ "name": "Value",
754
+ "kind": "s",
755
+ "desc": "Value of the Note"
756
+ }
757
+ ]
758
+ },
730
759
  "AdaptableComparerFunction": {
731
760
  "name": "AdaptableComparerFunction",
732
761
  "kind": "A",
@@ -1209,6 +1238,12 @@ exports.ADAPTABLE_METAMODEL = {
1209
1238
  "noCode": "container",
1210
1239
  "ref": "ColumnOptions"
1211
1240
  },
1241
+ {
1242
+ "name": "commentsOptions",
1243
+ "kind": "u",
1244
+ "desc": "Options for managing AdapTable Comments",
1245
+ "isOpt": true
1246
+ },
1212
1247
  {
1213
1248
  "name": "containerOptions",
1214
1249
  "kind": "R",
@@ -2370,6 +2405,23 @@ exports.ADAPTABLE_METAMODEL = {
2370
2405
  "kind": "I",
2371
2406
  "desc": "System Predicate definition for Badge Style"
2372
2407
  },
2408
+ "BalancedGroupsKeyContext": {
2409
+ "name": "BalancedGroupsKeyContext",
2410
+ "kind": "I",
2411
+ "desc": "Context used when setting a value for Balanced Row Groups",
2412
+ "props": [
2413
+ {
2414
+ "name": "adaptableColumn",
2415
+ "kind": "u",
2416
+ "desc": "AdapTable Column being grouped"
2417
+ },
2418
+ {
2419
+ "name": "params",
2420
+ "kind": "u",
2421
+ "desc": "AG Grid's Key Creator Params"
2422
+ }
2423
+ ]
2424
+ },
2373
2425
  "BaseContext": {
2374
2426
  "name": "BaseContext",
2375
2427
  "kind": "I",
@@ -2560,6 +2612,11 @@ exports.ADAPTABLE_METAMODEL = {
2560
2612
  }
2561
2613
  ]
2562
2614
  },
2615
+ "CellAddress": {
2616
+ "name": "CellAddress",
2617
+ "kind": "A",
2618
+ "desc": "Cell that contains a Note"
2619
+ },
2563
2620
  "CellColorRange": {
2564
2621
  "name": "CellColorRange",
2565
2622
  "kind": "I",
@@ -4628,7 +4685,7 @@ exports.ADAPTABLE_METAMODEL = {
4628
4685
  "name": "report",
4629
4686
  "kind": "R",
4630
4687
  "desc": "The exported report",
4631
- "ref": "Report"
4688
+ "ref": "unknown"
4632
4689
  },
4633
4690
  {
4634
4691
  "name": "reportData",
@@ -5405,55 +5462,6 @@ exports.ADAPTABLE_METAMODEL = {
5405
5462
  }
5406
5463
  ]
5407
5464
  },
5408
- "FinsemblePluginOptions": {
5409
- "name": "FinsemblePluginOptions",
5410
- "kind": "I",
5411
- "desc": "Options required for when using the Finsemble plugin",
5412
- "props": [
5413
- {
5414
- "name": "applicationName",
5415
- "kind": "s",
5416
- "desc": "Application name - used to identify the application in Finsemble console",
5417
- "isOpt": true
5418
- },
5419
- {
5420
- "name": "showAdaptableAlertsAsNotifications",
5421
- "kind": "b",
5422
- "desc": "Should Adaptable's Alerts appear as Finsemble Notifications",
5423
- "isOpt": true,
5424
- "defVal": "true"
5425
- },
5426
- {
5427
- "name": "stateOptions",
5428
- "kind": "R",
5429
- "desc": "Options for managing Adaptable State with Finsemble State",
5430
- "isOpt": true,
5431
- "ref": "FinsemblePluginStateOptions"
5432
- }
5433
- ]
5434
- },
5435
- "FinsemblePluginStateOptions": {
5436
- "name": "FinsemblePluginStateOptions",
5437
- "kind": "I",
5438
- "desc": "Options for managing state while using Finsemble",
5439
- "props": [
5440
- {
5441
- "name": "key",
5442
- "kind": "s",
5443
- "desc": "Key used to persist/load AdapTable State in Finsemble"
5444
- },
5445
- {
5446
- "name": "persistInFinsemble",
5447
- "kind": "b",
5448
- "desc": "Whether to persist AdapTable State inside Finsemble"
5449
- },
5450
- {
5451
- "name": "topic",
5452
- "kind": "s",
5453
- "desc": "Topic used to persist/load AdapTable State in Finsemble"
5454
- }
5455
- ]
5456
- },
5457
5465
  "FlashingCellDefinition": {
5458
5466
  "name": "FlashingCellDefinition",
5459
5467
  "kind": "I",
@@ -5767,119 +5775,6 @@ exports.ADAPTABLE_METAMODEL = {
5767
5775
  }
5768
5776
  ]
5769
5777
  },
5770
- "Glue42PluginOptions": {
5771
- "name": "Glue42PluginOptions",
5772
- "kind": "I",
5773
- "desc": "Options for using the Glue42 Desktop plugin",
5774
- "props": [
5775
- {
5776
- "name": "gatewayURL",
5777
- "kind": "s",
5778
- "desc": "Gateway URL",
5779
- "isOpt": true
5780
- },
5781
- {
5782
- "name": "glue",
5783
- "kind": "u",
5784
- "desc": "Main Glue desktop object",
5785
- "isOpt": true
5786
- },
5787
- {
5788
- "name": "glue42Office",
5789
- "kind": "u",
5790
- "desc": "Main Glue42 Office object",
5791
- "isOpt": true
5792
- },
5793
- {
5794
- "name": "password",
5795
- "kind": "s",
5796
- "desc": "Password to use to login to Glue42; typically sourced from PC Credentials",
5797
- "isOpt": true
5798
- },
5799
- {
5800
- "name": "username",
5801
- "kind": "s",
5802
- "desc": "UserName to use to login to Glue42; typically sourced from PC Credentials",
5803
- "isOpt": true
5804
- }
5805
- ]
5806
- },
5807
- "Glue42Report": {
5808
- "name": "Glue42Report",
5809
- "kind": "I",
5810
- "desc": "Glue42 report - currently just contains name of Report",
5811
- "props": [
5812
- {
5813
- "name": "ReportName",
5814
- "kind": "s",
5815
- "desc": "The Report's name (as exists in Export State)"
5816
- }
5817
- ]
5818
- },
5819
- "Glue42Schedule": {
5820
- "name": "Glue42Schedule",
5821
- "kind": "I",
5822
- "desc": "Defines Glue42 Scheduled Report; used in Schedule Module (where State is stored)",
5823
- "props": [
5824
- {
5825
- "name": "Glue42Report",
5826
- "kind": "R",
5827
- "desc": "The Glue42 Report which will be sent when the Schedule runs",
5828
- "ref": "Glue42Report"
5829
- },
5830
- {
5831
- "name": "Transmission",
5832
- "kind": "'Snapshot' | 'Live Data'",
5833
- "desc": "Whether its a one-off or 'streaming' transmission"
5834
- }
5835
- ]
5836
- },
5837
- "Glue42State": {
5838
- "name": "Glue42State",
5839
- "kind": "I",
5840
- "desc": "Internal State used by AdapTable for managing the Glue42 plugin",
5841
- "props": [
5842
- {
5843
- "name": "CurrentLiveGlue42Report",
5844
- "kind": "R",
5845
- "desc": "Which Glue42 Report is currently live",
5846
- "isOpt": true,
5847
- "ref": "Glue42Report"
5848
- },
5849
- {
5850
- "name": "Glue42LoginErrorMessage",
5851
- "kind": "s",
5852
- "desc": "Message to show when Login Fails",
5853
- "isOpt": true
5854
- },
5855
- {
5856
- "name": "IsGlue42Available",
5857
- "kind": "b",
5858
- "desc": "Whether Glue42 is available",
5859
- "isOpt": true
5860
- },
5861
- {
5862
- "name": "IsGlue42Running",
5863
- "kind": "b",
5864
- "desc": "Whether Glue42 is running",
5865
- "isOpt": true
5866
- }
5867
- ]
5868
- },
5869
- "Glue42WebPluginOptions": {
5870
- "name": "Glue42WebPluginOptions",
5871
- "kind": "I",
5872
- "desc": "Options for using the Glue42 Web plugin",
5873
- "props": [
5874
- {
5875
- "name": "showAdaptableAlertsAsNotifications",
5876
- "kind": "b",
5877
- "desc": "Converts AdapTable Alerts configured to display in popup as Glue42 Notifications",
5878
- "isOpt": true,
5879
- "defVal": "true"
5880
- }
5881
- ]
5882
- },
5883
5778
  "GradientStyle": {
5884
5779
  "name": "GradientStyle",
5885
5780
  "kind": "I",
@@ -5987,6 +5882,11 @@ exports.ADAPTABLE_METAMODEL = {
5987
5882
  }
5988
5883
  ]
5989
5884
  },
5885
+ "GridFilterEditor": {
5886
+ "name": "GridFilterEditor",
5887
+ "kind": "A",
5888
+ "desc": "List of all the Module buttons Adaptable provides - each Module has a popup for which this is a shortcut button"
5889
+ },
5990
5890
  "GridFilterOptions": {
5991
5891
  "name": "GridFilterOptions",
5992
5892
  "kind": "I",
@@ -5994,10 +5894,11 @@ exports.ADAPTABLE_METAMODEL = {
5994
5894
  "props": [
5995
5895
  {
5996
5896
  "name": "availableFilterEditors",
5997
- "kind": "'ExpressionEditor' | 'QueryBuilder' | 'Both'",
5998
- "desc": "Where Grid Filter can be edited - Expression Editor, Query Builder or Both",
5897
+ "kind": "R",
5898
+ "desc": "Which UI Components can be used to edit a Grid Filter: Expression Editor, Query Builder or Both",
5999
5899
  "isOpt": true,
6000
- "defVal": "'Both'"
5900
+ "defVal": "['ExpressionEditor', 'QueryBuilder']",
5901
+ "ref": "unknown"
6001
5902
  },
6002
5903
  {
6003
5904
  "name": "clearGridFilterOnStartUp",
@@ -6054,6 +5955,12 @@ exports.ADAPTABLE_METAMODEL = {
6054
5955
  "noCode": "item",
6055
5956
  "defVal": "true"
6056
5957
  },
5958
+ {
5959
+ "name": "balancedGroupsKey",
5960
+ "kind": "u",
5961
+ "desc": "Value to use for 'Balanced Groups' (string columns only)",
5962
+ "isOpt": true
5963
+ },
6057
5964
  {
6058
5965
  "name": "restoreUngroupedColumns",
6059
5966
  "kind": "b",
@@ -6069,12 +5976,6 @@ exports.ADAPTABLE_METAMODEL = {
6069
5976
  "isOpt": true,
6070
5977
  "gridInfo": "item",
6071
5978
  "defVal": "false"
6072
- },
6073
- {
6074
- "name": "unbalancedGroupsKey",
6075
- "kind": "u",
6076
- "desc": "Value to use for 'Unbalanced Groups' (string columns)",
6077
- "isOpt": true
6078
5979
  }
6079
5980
  ]
6080
5981
  },
@@ -6785,24 +6686,7 @@ exports.ADAPTABLE_METAMODEL = {
6785
6686
  "NotableCellContext": {
6786
6687
  "name": "NotableCellContext",
6787
6688
  "kind": "I",
6788
- "desc": "Context used when determining if a Note can be added to a Cell",
6789
- "props": [
6790
- {
6791
- "name": "columnId",
6792
- "kind": "s",
6793
- "desc": "Column where Note will be displayed"
6794
- },
6795
- {
6796
- "name": "primaryKeyValue",
6797
- "kind": "s",
6798
- "desc": "Value in Primary Key Column"
6799
- }
6800
- ]
6801
- },
6802
- "NoteGridCell": {
6803
- "name": "NoteGridCell",
6804
- "kind": "A",
6805
- "desc": "Cell that contains a Note"
6689
+ "desc": "Context used when determining if a Note can be added to a Cell"
6806
6690
  },
6807
6691
  "NotesOptions": {
6808
6692
  "name": "NotesOptions",
@@ -7383,6 +7267,13 @@ exports.ADAPTABLE_METAMODEL = {
7383
7267
  "isOpt": true,
7384
7268
  "ref": "NamedQueryState"
7385
7269
  },
7270
+ {
7271
+ "name": "Notes",
7272
+ "kind": "R",
7273
+ "desc": "Collection of notes that can be edited on cell level",
7274
+ "isOpt": true,
7275
+ "ref": "unknown"
7276
+ },
7386
7277
  {
7387
7278
  "name": "PlusMinus",
7388
7279
  "kind": "R",
@@ -7567,7 +7458,7 @@ exports.ADAPTABLE_METAMODEL = {
7567
7458
  "name": "report",
7568
7459
  "kind": "R",
7569
7460
  "desc": "Report being exported",
7570
- "ref": "Report"
7461
+ "ref": "unknown"
7571
7462
  }
7572
7463
  ]
7573
7464
  },
@@ -7640,15 +7531,6 @@ exports.ADAPTABLE_METAMODEL = {
7640
7531
  "noCode": "item",
7641
7532
  "defVal": "'mouseenter'"
7642
7533
  },
7643
- {
7644
- "name": "quickFilterValuesTrigger",
7645
- "kind": "'mouseenter' | 'click'",
7646
- "desc": "Open Quick Filter Values dropdown with mouse hover or click",
7647
- "isOpt": true,
7648
- "gridInfo": "item",
7649
- "noCode": "item",
7650
- "defVal": "'mouseenter'"
7651
- },
7652
7534
  {
7653
7535
  "name": "quickFilterValuesWidth",
7654
7536
  "kind": "'auto' | number",
@@ -7868,8 +7750,8 @@ exports.ADAPTABLE_METAMODEL = {
7868
7750
  }
7869
7751
  ]
7870
7752
  },
7871
- "Report": {
7872
- "name": "Report",
7753
+ "Report_2": {
7754
+ "name": "Report_2",
7873
7755
  "kind": "I",
7874
7756
  "desc": "A Report which can export data from AdapTable",
7875
7757
  "props": [
@@ -7920,7 +7802,7 @@ exports.ADAPTABLE_METAMODEL = {
7920
7802
  "name": "report",
7921
7803
  "kind": "R",
7922
7804
  "desc": "Definition of Report being Run",
7923
- "ref": "Report"
7805
+ "ref": "unknown"
7924
7806
  },
7925
7807
  {
7926
7808
  "name": "reportData",
@@ -8155,12 +8037,6 @@ exports.ADAPTABLE_METAMODEL = {
8155
8037
  "kind": "I",
8156
8038
  "desc": "Predefined Configuration for the Schedule Module",
8157
8039
  "props": [
8158
- {
8159
- "name": "Glue42Schedules",
8160
- "kind": "a",
8161
- "desc": "Schedules connected to Glue42 exports - available if Glue42 plugin is running",
8162
- "isOpt": true
8163
- },
8164
8040
  {
8165
8041
  "name": "IPushPullSchedules",
8166
8042
  "kind": "a",
@@ -8228,6 +8104,40 @@ exports.ADAPTABLE_METAMODEL = {
8228
8104
  }
8229
8105
  ]
8230
8106
  },
8107
+ "ServerValidationResult": {
8108
+ "name": "ServerValidationResult",
8109
+ "kind": "I",
8110
+ "desc": "Used for Server Validation ie. after an edit in AG Grid which must be checked on Server",
8111
+ "props": [
8112
+ {
8113
+ "name": "messageType",
8114
+ "kind": "R",
8115
+ "desc": "Type of Message to Display",
8116
+ "isOpt": true,
8117
+ "defVal": "Info",
8118
+ "ref": "AdaptableMessageType"
8119
+ },
8120
+ {
8121
+ "name": "newCellValue",
8122
+ "kind": "u",
8123
+ "desc": "Cell Value to use for after Server Validation",
8124
+ "isOpt": true
8125
+ },
8126
+ {
8127
+ "name": "validationHeader",
8128
+ "kind": "s",
8129
+ "desc": "Header to diplay with validation",
8130
+ "isOpt": true,
8131
+ "defVal": "'Server Validation Message',"
8132
+ },
8133
+ {
8134
+ "name": "validationMessage",
8135
+ "kind": "s",
8136
+ "desc": "Message to diplay with validation",
8137
+ "isOpt": true
8138
+ }
8139
+ ]
8140
+ },
8231
8141
  "SetPrimaryKeyValueContext": {
8232
8142
  "name": "SetPrimaryKeyValueContext",
8233
8143
  "kind": "I",
@@ -9014,23 +8924,6 @@ exports.ADAPTABLE_METAMODEL = {
9014
8924
  }
9015
8925
  ]
9016
8926
  },
9017
- "UnbalancedGroupsKeyContext": {
9018
- "name": "UnbalancedGroupsKeyContext",
9019
- "kind": "I",
9020
- "desc": "Context used when setting a value for Unbalanced Row Groups",
9021
- "props": [
9022
- {
9023
- "name": "adaptableColumn",
9024
- "kind": "u",
9025
- "desc": "AdapTable Column being grouped"
9026
- },
9027
- {
9028
- "name": "params",
9029
- "kind": "u",
9030
- "desc": "AG Grid's Key Creator Params"
9031
- }
9032
- ]
9033
- },
9034
8927
  "UserColumnMenuItem": {
9035
8928
  "name": "UserColumnMenuItem",
9036
8929
  "kind": "I",
@@ -9315,40 +9208,6 @@ exports.ADAPTABLE_METAMODEL = {
9315
9208
  }
9316
9209
  ]
9317
9210
  },
9318
- "ValidationResult": {
9319
- "name": "ValidationResult",
9320
- "kind": "I",
9321
- "desc": "Used for Server Validation ie. after an edit in AG Grid which must be checked on Server",
9322
- "props": [
9323
- {
9324
- "name": "MessageType",
9325
- "kind": "R",
9326
- "desc": "Type of Message to Display",
9327
- "isOpt": true,
9328
- "defVal": "Info",
9329
- "ref": "AdaptableMessageType"
9330
- },
9331
- {
9332
- "name": "NewValue",
9333
- "kind": "u",
9334
- "desc": "Cell Value to use for after Server Validation",
9335
- "isOpt": true
9336
- },
9337
- {
9338
- "name": "ValidationHeader",
9339
- "kind": "s",
9340
- "desc": "Header to diplay with validation",
9341
- "isOpt": true,
9342
- "defVal": "'Server Validation Message',"
9343
- },
9344
- {
9345
- "name": "ValidationMessage",
9346
- "kind": "s",
9347
- "desc": "Message to diplay with validation",
9348
- "isOpt": true
9349
- }
9350
- ]
9351
- },
9352
9211
  "ValuationContext": {
9353
9212
  "name": "ValuationContext",
9354
9213
  "kind": "A",
@@ -9415,6 +9274,15 @@ exports.ADAPTABLE_METAMODEL = {
9415
9274
  "isOpt": true,
9416
9275
  "gridInfo": "item",
9417
9276
  "defVal": "false"
9277
+ },
9278
+ {
9279
+ "name": "valuesFilterTrigger",
9280
+ "kind": "'mouseenter' | 'click'",
9281
+ "desc": "Open Values dropdown with mouse hover or click",
9282
+ "isOpt": true,
9283
+ "gridInfo": "item",
9284
+ "noCode": "item",
9285
+ "defVal": "'mouseenter'"
9418
9286
  }
9419
9287
  ]
9420
9288
  },
@@ -0,0 +1,2 @@
1
+ declare var parser: any;
2
+ export default parser;