@adaptabletools/adaptable-cjs 17.0.0-canary.4 → 18.0.0-canary.1

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 (288) 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 +3 -7
  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.d.ts +1 -1
  87. package/src/Redux/ActionsReducers/NotesRedux.js +4 -5
  88. package/src/Redux/ActionsReducers/PluginsRedux.d.ts +0 -48
  89. package/src/Redux/ActionsReducers/PluginsRedux.js +1 -49
  90. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +16 -0
  91. package/src/Redux/ActionsReducers/PlusMinusRedux.js +47 -1
  92. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +0 -53
  93. package/src/Redux/ActionsReducers/ScheduleRedux.js +2 -90
  94. package/src/Redux/ActionsReducers/SystemRedux.d.ts +23 -12
  95. package/src/Redux/ActionsReducers/SystemRedux.js +55 -23
  96. package/src/Redux/Store/AdaptableStore.d.ts +2 -2
  97. package/src/Redux/Store/AdaptableStore.js +107 -46
  98. package/src/Strategy/CommentsModule.d.ts +16 -0
  99. package/src/Strategy/CommentsModule.js +82 -0
  100. package/src/Strategy/LayoutModule.d.ts +12 -4
  101. package/src/Strategy/LayoutModule.js +19 -14
  102. package/src/Strategy/NotesModule.d.ts +0 -13
  103. package/src/Strategy/NotesModule.js +9 -88
  104. package/src/Strategy/PlusMinusModule.js +2 -0
  105. package/src/Strategy/ScheduleModule.js +0 -23
  106. package/src/Strategy/Utilities/Export/getExportRowsViewItems.d.ts +2 -1
  107. package/src/Strategy/Utilities/Export/getExportRowsViewItems.js +14 -5
  108. package/src/Strategy/Utilities/getExpressionViewItems.js +8 -2
  109. package/src/Utilities/Constants/ConfigConstants.d.ts +1 -0
  110. package/src/Utilities/Constants/ConfigConstants.js +2 -1
  111. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  112. package/src/Utilities/Constants/GeneralConstants.js +8 -3
  113. package/src/Utilities/Constants/ModuleConstants.d.ts +3 -3
  114. package/src/Utilities/Constants/ModuleConstants.js +4 -4
  115. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -3
  116. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  117. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +7 -1
  118. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +6 -0
  119. package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
  120. package/src/Utilities/ExpressionFunctions/dateUtils.js +18 -1
  121. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
  122. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +12 -12
  123. package/src/Utilities/Extensions/ArrayExtensions.d.ts +2 -0
  124. package/src/Utilities/Extensions/ArrayExtensions.js +8 -1
  125. package/src/Utilities/Helpers/PreviewHelper.js +5 -2
  126. package/src/Utilities/ObjectFactory.d.ts +19 -22
  127. package/src/Utilities/ObjectFactory.js +51 -60
  128. package/src/Utilities/Services/CellPopupService.d.ts +23 -0
  129. package/src/Utilities/Services/CellPopupService.js +138 -0
  130. package/src/Utilities/Services/Interface/IReportService.d.ts +1 -1
  131. package/src/Utilities/Services/Interface/IThemeService.d.ts +8 -0
  132. package/src/Utilities/Services/ModuleService.js +1 -3
  133. package/src/Utilities/Services/ReportService.d.ts +1 -1
  134. package/src/Utilities/Services/ThemeService.d.ts +3 -0
  135. package/src/Utilities/Services/ThemeService.js +33 -1
  136. package/src/Utilities/Services/ValidationService.js +11 -11
  137. package/src/View/AdaptableView.js +3 -3
  138. package/src/View/AdaptableViewFactory.js +4 -2
  139. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -2
  140. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +1 -1
  141. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +1 -1
  142. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -2
  143. package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -1
  144. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -3
  145. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
  146. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +1 -1
  147. package/src/View/Charting/useChartingElements.js +8 -3
  148. package/src/View/Comments/CommentsEditor.d.ts +7 -0
  149. package/src/View/Comments/CommentsEditor.js +100 -0
  150. package/src/View/Comments/CommentsPopup.d.ts +2 -0
  151. package/src/View/Comments/CommentsPopup.js +87 -0
  152. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +2 -1
  153. package/src/View/Components/CellPopup/index.js +1 -1
  154. package/src/View/Components/FilterForm/FilterForm.js +8 -2
  155. package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -3
  156. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -4
  157. package/src/View/Components/FilterForm/QuickFilterValues.d.ts +2 -2
  158. package/src/View/Components/FilterForm/QuickFilterValues.js +4 -3
  159. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.d.ts +5 -0
  160. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +67 -0
  161. package/src/View/Components/Popups/GridCellPopup/index.d.ts +1 -0
  162. package/src/View/Components/Popups/GridCellPopup/index.js +5 -0
  163. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
  164. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  165. package/src/View/Components/Selectors/PermittedValuesSelector.d.ts +5 -4
  166. package/src/View/Components/Selectors/PermittedValuesSelector.js +25 -3
  167. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -4
  168. package/src/View/Dashboard/ModuleToolbarWrapper.js +1 -1
  169. package/src/View/Dashboard/PinnedDashboard.js +2 -1
  170. package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +2 -2
  171. package/src/View/Export/Wizard/ReportRowsWizardSection.js +3 -1
  172. package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
  173. package/src/View/GridFilter/GridFilterPopup.js +10 -8
  174. package/src/View/GridFilter/GridFilterViewPanel.js +51 -14
  175. package/src/View/GridFilter/NamedQuerySelector.js +1 -1
  176. package/src/View/GridFilter/useGridFilterExpressionEditor.d.ts +3 -0
  177. package/src/View/GridFilter/useGridFilterExpressionEditor.js +17 -6
  178. package/src/View/GridFilter/useGridFilterOptionsForExpressionEditor.js +5 -23
  179. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +3 -2
  180. package/src/View/Layout/Wizard/getGridFilterPreview.d.ts +6 -0
  181. package/src/View/Layout/Wizard/getGridFilterPreview.js +16 -0
  182. package/src/View/Layout/Wizard/sections/FilterSection.js +1 -1
  183. package/src/View/Layout/Wizard/sections/GridFilterSection.js +4 -4
  184. package/src/View/NamedQuery/EditCurrentQueryButton.js +1 -1
  185. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  186. package/src/View/Notes/NoteEditor.d.ts +8 -0
  187. package/src/View/Notes/NoteEditor.js +33 -0
  188. package/src/View/Notes/NotesPopup.d.ts +2 -2
  189. package/src/View/Notes/NotesPopup.js +78 -55
  190. package/src/View/PlusMinus/MovePlusMinus.d.ts +7 -0
  191. package/src/View/PlusMinus/MovePlusMinus.js +27 -0
  192. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +0 -9
  193. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +0 -4
  194. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +2 -8
  195. package/src/View/Schedule/Wizard/ScheduleWizard.js +0 -8
  196. package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +3 -1
  197. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +1 -2
  198. package/src/agGrid/Adaptable.d.ts +7 -0
  199. package/src/agGrid/Adaptable.js +49 -35
  200. package/src/agGrid/BadgeRenderer.js +9 -5
  201. package/src/agGrid/agGridHelper.d.ts +2 -1
  202. package/src/agGrid/agGridHelper.js +15 -3
  203. package/src/agGrid/agGridMenuHelper.d.ts +2 -0
  204. package/src/agGrid/agGridMenuHelper.js +73 -25
  205. package/src/components/Datepicker/index.js +4 -4
  206. package/src/components/ExpressionEditor/ExpressionPreview.d.ts +7 -0
  207. package/src/components/ExpressionEditor/ExpressionPreview.js +25 -0
  208. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +2 -2
  209. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +6 -0
  210. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +40 -11
  211. package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +14 -2
  212. package/src/components/ExpressionEditor/QueryBuilder/booleanExpressions.js +1 -0
  213. package/src/components/ExpressionEditor/QueryBuilder/utils.js +1 -1
  214. package/src/components/ExpressionEditor/index.js +4 -7
  215. package/src/components/InputGroup/InputGroup.d.ts +7 -0
  216. package/src/components/InputGroup/InputGroup.js +12 -0
  217. package/src/components/InputGroup/index.d.ts +1 -0
  218. package/src/components/InputGroup/index.js +4 -0
  219. package/src/components/OverlayTrigger/index.js +7 -2
  220. package/src/components/Select/Select.d.ts +1 -2
  221. package/src/components/Select/Select.js +63 -23
  222. package/src/components/Textarea/index.d.ts +9 -0
  223. package/src/components/Textarea/index.js +50 -2
  224. package/src/components/Toastify/index.d.ts +2 -2
  225. package/src/components/Toastify/index.js +1 -1
  226. package/src/components/icons/comments.d.ts +3 -0
  227. package/src/components/icons/comments.js +7 -0
  228. package/src/components/icons/index.js +3 -1
  229. package/src/env.d.ts +3 -1
  230. package/src/env.js +3 -1
  231. package/src/metamodel/adaptable.metamodel.d.ts +72 -158
  232. package/src/metamodel/adaptable.metamodel.js +138 -260
  233. package/src/parser/src/parser.d.ts +2 -0
  234. package/src/parser/src/parser.js +1880 -705
  235. package/src/parser/src/predicate/mapQlPredicateToExpression.js +5 -2
  236. package/src/parser/src/predicate/types.d.ts +1 -1
  237. package/src/parser/src/types.d.ts +1 -1
  238. package/src/renderReactRoot.js +15 -0
  239. package/src/themes/index.js +4 -0
  240. package/src/types.d.ts +10 -13
  241. package/themes/dark.css +3 -3
  242. package/tsconfig.cjs.tsbuildinfo +1 -1
  243. package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +0 -35
  244. package/src/AdaptableOptions/Glue42PluginOptions.d.ts +0 -25
  245. package/src/AdaptableOptions/Glue42WebPluginOptions.d.ts +0 -10
  246. package/src/Api/Events/SelectionChanged.d.ts +0 -16
  247. package/src/Api/FinsembleApi.d.ts +0 -10
  248. package/src/Api/Glue42Api.d.ts +0 -75
  249. package/src/Api/Glue42WebApi.d.ts +0 -10
  250. package/src/PredefinedConfig/Glue42State.d.ts +0 -46
  251. package/src/View/Notes/NotesListing.d.ts +0 -2
  252. package/src/View/Notes/NotesListing.js +0 -88
  253. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.d.ts +0 -9
  254. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +0 -25
  255. package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +0 -9
  256. package/src/bundle-dependencies/bundles/react-toastify/components/Icons.d.ts +0 -24
  257. package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +0 -59
  258. package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +0 -3
  259. package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +0 -3
  260. package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +0 -6
  261. package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +0 -6
  262. package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +0 -39
  263. package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +0 -2
  264. package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +0 -41
  265. package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +0 -2
  266. package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +0 -10
  267. package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +0 -23
  268. package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +0 -5
  269. package/src/bundle-dependencies/bundles/react-toastify/index.js +0 -1
  270. package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +0 -8
  271. package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +0 -269
  272. package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +0 -5
  273. package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +0 -23
  274. package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +0 -43
  275. package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +0 -5
  276. package/src/bundle-dependencies/bundles/react-toastify/utils/mapper.d.ts +0 -2
  277. package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +0 -9
  278. /package/src/AdaptableOptions/{FinsemblePluginOptions.js → CommentsOptions.js} +0 -0
  279. /package/src/AdaptableOptions/{Glue42PluginOptions.js → InteropioPluginOptions.js} +0 -0
  280. /package/src/{AdaptableOptions/Glue42WebPluginOptions.js → Api/CommentApi.js} +0 -0
  281. /package/src/Api/Events/{SelectionChanged.js → CalculatedColumnChanged.js} +0 -0
  282. /package/src/Api/{FinsembleApi.js → Events/CellSelectionChanged.js} +0 -0
  283. /package/src/Api/{Glue42Api.js → Events/CommentsChangedInfo.js} +0 -0
  284. /package/src/Api/{Glue42WebApi.js → Events/RowSelectionChanged.js} +0 -0
  285. /package/src/Api/Internal/{ExpressionnternalApi.d.ts → ExpressionInternalApi.d.ts} +0 -0
  286. /package/src/Api/Internal/{ExpressionnternalApi.js → ExpressionInternalApi.js} +0 -0
  287. /package/src/Api/{NotesAPi.js → InteropioPluginApi.js} +0 -0
  288. /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",
@@ -3459,6 +3516,11 @@ exports.ADAPTABLE_METAMODEL = {
3459
3516
  "name": "defaultAgGridMenuItems",
3460
3517
  "kind": "a",
3461
3518
  "desc": "Default AG Grid Menu Items"
3519
+ },
3520
+ {
3521
+ "name": "structuredAdaptableMenuItems",
3522
+ "kind": "a",
3523
+ "desc": "All Adaptable Menu Items sorted and grouped"
3462
3524
  }
3463
3525
  ]
3464
3526
  },
@@ -3481,6 +3543,11 @@ exports.ADAPTABLE_METAMODEL = {
3481
3543
  "name": "defaultAgGridMenuItems",
3482
3544
  "kind": "a",
3483
3545
  "desc": "Default AG Grid Menu Items"
3546
+ },
3547
+ {
3548
+ "name": "structuredAdaptableMenuItems",
3549
+ "kind": "a",
3550
+ "desc": "All Adaptable Menu Items sorted and grouped"
3484
3551
  }
3485
3552
  ]
3486
3553
  },
@@ -4628,7 +4695,7 @@ exports.ADAPTABLE_METAMODEL = {
4628
4695
  "name": "report",
4629
4696
  "kind": "R",
4630
4697
  "desc": "The exported report",
4631
- "ref": "Report"
4698
+ "ref": "unknown"
4632
4699
  },
4633
4700
  {
4634
4701
  "name": "reportData",
@@ -5405,55 +5472,6 @@ exports.ADAPTABLE_METAMODEL = {
5405
5472
  }
5406
5473
  ]
5407
5474
  },
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
5475
  "FlashingCellDefinition": {
5458
5476
  "name": "FlashingCellDefinition",
5459
5477
  "kind": "I",
@@ -5767,119 +5785,6 @@ exports.ADAPTABLE_METAMODEL = {
5767
5785
  }
5768
5786
  ]
5769
5787
  },
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
5788
  "GradientStyle": {
5884
5789
  "name": "GradientStyle",
5885
5790
  "kind": "I",
@@ -5987,6 +5892,11 @@ exports.ADAPTABLE_METAMODEL = {
5987
5892
  }
5988
5893
  ]
5989
5894
  },
5895
+ "GridFilterEditor": {
5896
+ "name": "GridFilterEditor",
5897
+ "kind": "A",
5898
+ "desc": "List of all the Module buttons Adaptable provides - each Module has a popup for which this is a shortcut button"
5899
+ },
5990
5900
  "GridFilterOptions": {
5991
5901
  "name": "GridFilterOptions",
5992
5902
  "kind": "I",
@@ -5994,10 +5904,11 @@ exports.ADAPTABLE_METAMODEL = {
5994
5904
  "props": [
5995
5905
  {
5996
5906
  "name": "availableFilterEditors",
5997
- "kind": "'ExpressionEditor' | 'QueryBuilder' | 'Both'",
5998
- "desc": "Where Grid Filter can be edited - Expression Editor, Query Builder or Both",
5907
+ "kind": "R",
5908
+ "desc": "Which UI Components can be used to edit a Grid Filter: Expression Editor, Query Builder or Both",
5999
5909
  "isOpt": true,
6000
- "defVal": "'Both'"
5910
+ "defVal": "['ExpressionEditor', 'QueryBuilder']",
5911
+ "ref": "unknown"
6001
5912
  },
6002
5913
  {
6003
5914
  "name": "clearGridFilterOnStartUp",
@@ -6054,6 +5965,12 @@ exports.ADAPTABLE_METAMODEL = {
6054
5965
  "noCode": "item",
6055
5966
  "defVal": "true"
6056
5967
  },
5968
+ {
5969
+ "name": "balancedGroupsKey",
5970
+ "kind": "u",
5971
+ "desc": "Value to use for 'Balanced Groups' (string columns only)",
5972
+ "isOpt": true
5973
+ },
6057
5974
  {
6058
5975
  "name": "restoreUngroupedColumns",
6059
5976
  "kind": "b",
@@ -6069,12 +5986,6 @@ exports.ADAPTABLE_METAMODEL = {
6069
5986
  "isOpt": true,
6070
5987
  "gridInfo": "item",
6071
5988
  "defVal": "false"
6072
- },
6073
- {
6074
- "name": "unbalancedGroupsKey",
6075
- "kind": "u",
6076
- "desc": "Value to use for 'Unbalanced Groups' (string columns)",
6077
- "isOpt": true
6078
5989
  }
6079
5990
  ]
6080
5991
  },
@@ -6785,24 +6696,7 @@ exports.ADAPTABLE_METAMODEL = {
6785
6696
  "NotableCellContext": {
6786
6697
  "name": "NotableCellContext",
6787
6698
  "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"
6699
+ "desc": "Context used when determining if a Note can be added to a Cell"
6806
6700
  },
6807
6701
  "NotesOptions": {
6808
6702
  "name": "NotesOptions",
@@ -7383,6 +7277,13 @@ exports.ADAPTABLE_METAMODEL = {
7383
7277
  "isOpt": true,
7384
7278
  "ref": "NamedQueryState"
7385
7279
  },
7280
+ {
7281
+ "name": "Notes",
7282
+ "kind": "R",
7283
+ "desc": "Collection of notes that can be edited on cell level",
7284
+ "isOpt": true,
7285
+ "ref": "unknown"
7286
+ },
7386
7287
  {
7387
7288
  "name": "PlusMinus",
7388
7289
  "kind": "R",
@@ -7567,7 +7468,7 @@ exports.ADAPTABLE_METAMODEL = {
7567
7468
  "name": "report",
7568
7469
  "kind": "R",
7569
7470
  "desc": "Report being exported",
7570
- "ref": "Report"
7471
+ "ref": "unknown"
7571
7472
  }
7572
7473
  ]
7573
7474
  },
@@ -7640,15 +7541,6 @@ exports.ADAPTABLE_METAMODEL = {
7640
7541
  "noCode": "item",
7641
7542
  "defVal": "'mouseenter'"
7642
7543
  },
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
7544
  {
7653
7545
  "name": "quickFilterValuesWidth",
7654
7546
  "kind": "'auto' | number",
@@ -7868,8 +7760,8 @@ exports.ADAPTABLE_METAMODEL = {
7868
7760
  }
7869
7761
  ]
7870
7762
  },
7871
- "Report": {
7872
- "name": "Report",
7763
+ "Report_2": {
7764
+ "name": "Report_2",
7873
7765
  "kind": "I",
7874
7766
  "desc": "A Report which can export data from AdapTable",
7875
7767
  "props": [
@@ -7920,7 +7812,7 @@ exports.ADAPTABLE_METAMODEL = {
7920
7812
  "name": "report",
7921
7813
  "kind": "R",
7922
7814
  "desc": "Definition of Report being Run",
7923
- "ref": "Report"
7815
+ "ref": "unknown"
7924
7816
  },
7925
7817
  {
7926
7818
  "name": "reportData",
@@ -8155,12 +8047,6 @@ exports.ADAPTABLE_METAMODEL = {
8155
8047
  "kind": "I",
8156
8048
  "desc": "Predefined Configuration for the Schedule Module",
8157
8049
  "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
8050
  {
8165
8051
  "name": "IPushPullSchedules",
8166
8052
  "kind": "a",
@@ -8228,6 +8114,40 @@ exports.ADAPTABLE_METAMODEL = {
8228
8114
  }
8229
8115
  ]
8230
8116
  },
8117
+ "ServerValidationResult": {
8118
+ "name": "ServerValidationResult",
8119
+ "kind": "I",
8120
+ "desc": "Used for Server Validation ie. after an edit in AG Grid which must be checked on Server",
8121
+ "props": [
8122
+ {
8123
+ "name": "messageType",
8124
+ "kind": "R",
8125
+ "desc": "Type of Message to Display",
8126
+ "isOpt": true,
8127
+ "defVal": "Info",
8128
+ "ref": "AdaptableMessageType"
8129
+ },
8130
+ {
8131
+ "name": "newCellValue",
8132
+ "kind": "u",
8133
+ "desc": "Cell Value to use for after Server Validation",
8134
+ "isOpt": true
8135
+ },
8136
+ {
8137
+ "name": "validationHeader",
8138
+ "kind": "s",
8139
+ "desc": "Header to diplay with validation",
8140
+ "isOpt": true,
8141
+ "defVal": "'Server Validation Message',"
8142
+ },
8143
+ {
8144
+ "name": "validationMessage",
8145
+ "kind": "s",
8146
+ "desc": "Message to diplay with validation",
8147
+ "isOpt": true
8148
+ }
8149
+ ]
8150
+ },
8231
8151
  "SetPrimaryKeyValueContext": {
8232
8152
  "name": "SetPrimaryKeyValueContext",
8233
8153
  "kind": "I",
@@ -9014,23 +8934,6 @@ exports.ADAPTABLE_METAMODEL = {
9014
8934
  }
9015
8935
  ]
9016
8936
  },
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
8937
  "UserColumnMenuItem": {
9035
8938
  "name": "UserColumnMenuItem",
9036
8939
  "kind": "I",
@@ -9315,40 +9218,6 @@ exports.ADAPTABLE_METAMODEL = {
9315
9218
  }
9316
9219
  ]
9317
9220
  },
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
9221
  "ValuationContext": {
9353
9222
  "name": "ValuationContext",
9354
9223
  "kind": "A",
@@ -9415,6 +9284,15 @@ exports.ADAPTABLE_METAMODEL = {
9415
9284
  "isOpt": true,
9416
9285
  "gridInfo": "item",
9417
9286
  "defVal": "false"
9287
+ },
9288
+ {
9289
+ "name": "valuesFilterTrigger",
9290
+ "kind": "'mouseenter' | 'click'",
9291
+ "desc": "Open Values dropdown with mouse hover or click",
9292
+ "isOpt": true,
9293
+ "gridInfo": "item",
9294
+ "noCode": "item",
9295
+ "defVal": "'mouseenter'"
9418
9296
  }
9419
9297
  ]
9420
9298
  },
@@ -0,0 +1,2 @@
1
+ declare var parser: any;
2
+ export default parser;