@adaptabletools/adaptable 11.1.14 → 11.2.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 (198) hide show
  1. package/base.css +2 -0
  2. package/bundle.cjs.js +98 -98
  3. package/index.css +3 -0
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableOptions/AlertOptions.d.ts +8 -2
  8. package/src/AdaptableOptions/DashboardOptions.d.ts +4 -3
  9. package/src/AdaptableOptions/ExportOptions.d.ts +2 -2
  10. package/src/AdaptableOptions/FilterOptions.d.ts +5 -4
  11. package/src/AdaptableOptions/LayoutOptions.d.ts +56 -10
  12. package/src/AdaptableOptions/ToolPanelOptions.d.ts +4 -3
  13. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +18 -16
  14. package/src/Api/AdaptableApi.d.ts +10 -0
  15. package/src/Api/AlertApi.d.ts +3 -1
  16. package/src/Api/ConditionalStyleApi.d.ts +3 -1
  17. package/src/Api/ConfigApi.d.ts +3 -3
  18. package/src/Api/CustomSortApi.d.ts +3 -1
  19. package/src/Api/EventApi.d.ts +1 -0
  20. package/src/Api/Events/LayoutChanged.d.ts +1 -1
  21. package/src/Api/ExportApi.d.ts +16 -0
  22. package/src/Api/FinanceApi.d.ts +104 -3
  23. package/src/Api/FlashingCellApi.d.ts +3 -1
  24. package/src/Api/FormatColumnApi.d.ts +3 -1
  25. package/src/Api/Implementation/AdaptableApiImpl.d.ts +6 -0
  26. package/src/Api/Implementation/AdaptableApiImpl.js +53 -0
  27. package/src/Api/Implementation/AlertApiImpl.d.ts +3 -1
  28. package/src/Api/Implementation/AlertApiImpl.js +7 -6
  29. package/src/Api/Implementation/ApiBase.d.ts +1 -1
  30. package/src/Api/Implementation/ApiBase.js +5 -2
  31. package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +3 -1
  32. package/src/Api/Implementation/ConditionalStyleApiImpl.js +5 -4
  33. package/src/Api/Implementation/ConfigApiImpl.js +5 -1
  34. package/src/Api/Implementation/CustomSortApiImpl.d.ts +3 -1
  35. package/src/Api/Implementation/CustomSortApiImpl.js +6 -5
  36. package/src/Api/Implementation/EventApiImpl.d.ts +1 -0
  37. package/src/Api/Implementation/EventApiImpl.js +3 -0
  38. package/src/Api/Implementation/ExportApiImpl.d.ts +3 -0
  39. package/src/Api/Implementation/ExportApiImpl.js +10 -0
  40. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +3 -1
  41. package/src/Api/Implementation/FlashingCellApiImpl.js +8 -6
  42. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +3 -1
  43. package/src/Api/Implementation/FormatColumnApiImpl.js +7 -6
  44. package/src/Api/Implementation/InternalApiImpl.d.ts +14 -5
  45. package/src/Api/Implementation/InternalApiImpl.js +75 -3
  46. package/src/Api/Implementation/PlusMinusApiImpl.d.ts +3 -1
  47. package/src/Api/Implementation/PlusMinusApiImpl.js +6 -8
  48. package/src/Api/Implementation/ScheduleApiImpl.d.ts +17 -6
  49. package/src/Api/Implementation/ScheduleApiImpl.js +25 -12
  50. package/src/Api/Implementation/ShortcutApiImpl.d.ts +3 -1
  51. package/src/Api/Implementation/ShortcutApiImpl.js +5 -4
  52. package/src/Api/Implementation/ToolPanelApiImpl.d.ts +1 -2
  53. package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
  54. package/src/Api/Implementation/UserInterfaceApiImpl.js +2 -2
  55. package/src/Api/InternalApi.d.ts +14 -7
  56. package/src/Api/LayoutApi.d.ts +4 -6
  57. package/src/Api/PlusMinusApi.d.ts +3 -1
  58. package/src/Api/ScheduleApi.d.ts +20 -6
  59. package/src/Api/ShortcutApi.d.ts +3 -1
  60. package/src/Api/ToolPanelApi.d.ts +1 -2
  61. package/src/PredefinedConfig/AlertState.d.ts +3 -3
  62. package/src/PredefinedConfig/Common/AdaptableButton.d.ts +2 -5
  63. package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +2 -1
  64. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +4 -3
  65. package/src/PredefinedConfig/Common/AdaptableObject.d.ts +18 -1
  66. package/src/PredefinedConfig/Common/AdaptablePredicate.js +9 -0
  67. package/src/PredefinedConfig/Common/BaseContext.d.ts +10 -0
  68. package/src/PredefinedConfig/Common/BaseContext.js +2 -0
  69. package/src/PredefinedConfig/Common/CellSummary.d.ts +3 -3
  70. package/src/PredefinedConfig/Common/FDC3Context.d.ts +9 -9
  71. package/src/PredefinedConfig/Common/Menu.d.ts +4 -13
  72. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +4 -0
  73. package/src/PredefinedConfig/DataSourceState.d.ts +2 -2
  74. package/src/PredefinedConfig/FilterState.d.ts +1 -1
  75. package/src/PredefinedConfig/SystemState.d.ts +1 -0
  76. package/src/PredefinedConfig/Uuid.js +1 -0
  77. package/src/Redux/ActionsReducers/PopupRedux.d.ts +5 -5
  78. package/src/Redux/ActionsReducers/SystemRedux.d.ts +5 -0
  79. package/src/Redux/ActionsReducers/SystemRedux.js +11 -1
  80. package/src/Redux/Store/AdaptableStore.d.ts +1 -0
  81. package/src/Redux/Store/AdaptableStore.js +6 -1
  82. package/src/Redux/Store/Interface/IAdaptableStore.d.ts +1 -0
  83. package/src/Strategy/AdaptableModuleBase.d.ts +5 -0
  84. package/src/Strategy/AdaptableModuleBase.js +9 -0
  85. package/src/Strategy/AlertModule.d.ts +4 -1
  86. package/src/Strategy/AlertModule.js +12 -4
  87. package/src/Strategy/CalculatedColumnModule.d.ts +3 -17
  88. package/src/Strategy/CalculatedColumnModule.js +2 -0
  89. package/src/Strategy/ConditionalStyleModule.d.ts +4 -1
  90. package/src/Strategy/ConditionalStyleModule.js +12 -4
  91. package/src/Strategy/CustomSortModule.d.ts +4 -1
  92. package/src/Strategy/CustomSortModule.js +10 -3
  93. package/src/Strategy/DataSourceModule.js +2 -0
  94. package/src/Strategy/ExportModule.d.ts +5 -3
  95. package/src/Strategy/ExportModule.js +10 -0
  96. package/src/Strategy/FlashingCellModule.d.ts +4 -1
  97. package/src/Strategy/FlashingCellModule.js +10 -5
  98. package/src/Strategy/FormatColumnModule.d.ts +4 -1
  99. package/src/Strategy/FormatColumnModule.js +10 -3
  100. package/src/Strategy/FreeTextColumnModule.js +2 -0
  101. package/src/Strategy/Interface/IModule.d.ts +6 -3
  102. package/src/Strategy/Interface/IScheduleModule.d.ts +1 -1
  103. package/src/Strategy/LayoutModule.d.ts +2 -1
  104. package/src/Strategy/LayoutModule.js +35 -2
  105. package/src/Strategy/PlusMinusModule.d.ts +4 -1
  106. package/src/Strategy/PlusMinusModule.js +15 -7
  107. package/src/Strategy/QueryModule.d.ts +2 -8
  108. package/src/Strategy/QueryModule.js +2 -0
  109. package/src/Strategy/ScheduleModule.d.ts +8 -4
  110. package/src/Strategy/ScheduleModule.js +16 -9
  111. package/src/Strategy/ShortcutModule.d.ts +4 -1
  112. package/src/Strategy/ShortcutModule.js +14 -4
  113. package/src/Strategy/StatusBarModule.d.ts +2 -1
  114. package/src/Strategy/StatusBarModule.js +2 -3
  115. package/src/Strategy/Utilities/getAlertBehaviourViewItems.d.ts +2 -2
  116. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +2 -2
  117. package/src/Strategy/Utilities/getObjectTagsViewItems.d.ts +4 -0
  118. package/src/Strategy/Utilities/getObjectTagsViewItems.js +13 -0
  119. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -1
  120. package/src/Utilities/Emitter.d.ts +1 -0
  121. package/src/Utilities/Emitter.js +9 -0
  122. package/src/Utilities/Extensions/TypeExtensions.d.ts +2 -0
  123. package/src/Utilities/Interface/MessagePopups.d.ts +3 -3
  124. package/src/Utilities/ObjectFactory.d.ts +2 -2
  125. package/src/Utilities/Services/AlertService.js +1 -1
  126. package/src/Utilities/Services/DataService.js +1 -1
  127. package/src/Utilities/Services/Interface/IModuleService.d.ts +1 -1
  128. package/src/Utilities/Services/ModuleService.d.ts +1 -1
  129. package/src/Utilities/Services/ModuleService.js +1 -0
  130. package/src/View/Alert/AlertStatusSubPanel.js +2 -1
  131. package/src/View/Alert/Wizard/AlertWizard.js +9 -0
  132. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +9 -4
  133. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +9 -0
  134. package/src/View/ColorPicker.d.ts +1 -1
  135. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  136. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  137. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -0
  138. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  139. package/src/View/Components/FilterForm/FilterForm.js +1 -1
  140. package/src/View/Components/FilterForm/QuickFilterForm.js +11 -7
  141. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  142. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  143. package/src/View/Components/Panels/PanelWithImage.d.ts +3 -3
  144. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +22 -0
  145. package/src/View/Components/Popups/AdaptableToaster.js +3 -1
  146. package/src/View/Components/Popups/FormPopups/FormPopups.d.ts +3 -3
  147. package/src/View/Components/TagValueSelector/index.d.ts +13 -0
  148. package/src/View/Components/TagValueSelector/index.js +22 -0
  149. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +2 -2
  150. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +9 -0
  151. package/src/View/CustomSort/Wizard/CustomSortWizard.js +9 -0
  152. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +1 -1
  153. package/src/View/DataSource/Wizard/DataSourceWizard.js +10 -0
  154. package/src/View/Export/ExportSelector.d.ts +4 -0
  155. package/src/View/Export/ExportSelector.js +75 -0
  156. package/src/View/Export/ExportViewPanel.js +6 -7
  157. package/src/View/Export/ReportExportDropdown.d.ts +2 -5
  158. package/src/View/Export/Wizard/NewReportWizard.js +9 -0
  159. package/src/View/Export/constants.d.ts +2 -0
  160. package/src/View/Export/constants.js +5 -0
  161. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +9 -0
  162. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +9 -0
  163. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +9 -0
  164. package/src/View/GridInfo/GridOptionsComponent.d.ts +0 -1
  165. package/src/View/GridInfo/GridOptionsComponent.js +0 -1
  166. package/src/View/Layout/LayoutCloneButton.d.ts +6 -0
  167. package/src/View/Layout/LayoutCloneButton.js +15 -0
  168. package/src/View/Layout/LayoutRadioSelector.d.ts +2 -1
  169. package/src/View/Layout/LayoutRadioSelector.js +1 -1
  170. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -1
  171. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
  172. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +9 -0
  173. package/src/View/Query/Wizard/NamedQueryWizard.js +9 -0
  174. package/src/View/Schedule/Wizard/ScheduleWizard.js +10 -0
  175. package/src/View/Shortcut/Wizard/ShortcutWizard.js +10 -0
  176. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  177. package/src/View/StatusBar/StatusBarPopup.js +1 -1
  178. package/src/View/Wizard/ObjectTagsWizardSection.d.ts +8 -0
  179. package/src/View/Wizard/ObjectTagsWizardSection.js +22 -0
  180. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -0
  181. package/src/View/Wizard/OnePageAdaptableWizard.js +12 -5
  182. package/src/agGrid/Adaptable.d.ts +14 -1
  183. package/src/agGrid/Adaptable.js +103 -68
  184. package/src/agGrid/agGridHelper.js +2 -1
  185. package/src/agGrid/createAgStatusPanelComponent.js +1 -0
  186. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +8 -7
  187. package/src/components/Datepicker/index.d.ts +1 -1
  188. package/src/components/ExpressionEditor/index.js +5 -2
  189. package/src/components/Input/index.d.ts +1 -1
  190. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  191. package/src/components/PopupWithFooter.d.ts +1 -1
  192. package/src/components/Textarea/index.d.ts +1 -1
  193. package/src/components/WindowModal/useStacking.js +2 -2
  194. package/src/metamodel/adaptable.metamodel.d.ts +44 -2
  195. package/src/metamodel/adaptable.metamodel.js +229 -21
  196. package/src/types.d.ts +6 -5
  197. package/version.d.ts +1 -1
  198. package/version.js +1 -1
package/base.css CHANGED
@@ -2786,6 +2786,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2786
2786
  width: var(--ab-cmp-adaptable-object-list-item-label__width); }
2787
2787
  .ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
2788
2788
  visibility: visible; }
2789
+ .ab-StatusBar {
2790
+ display: flex; }
2789
2791
  .ab-StatusBar__SubPanel {
2790
2792
  padding: var(--ab-cmp-adaptable-statusbar-sub-panel__padding);
2791
2793
  border: 0;