@adaptabletools/adaptable 14.0.3 → 14.0.4

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 (201) hide show
  1. package/base.css +7 -1
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +170 -169
  4. package/index.css +76 -62
  5. package/index.css.map +1 -1
  6. package/package.json +2 -2
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/ActionOptions.d.ts +3 -0
  10. package/src/AdaptableOptions/AdaptablePlugin.d.ts +3 -0
  11. package/src/AdaptableOptions/AdaptablePlugin.js +3 -0
  12. package/src/AdaptableOptions/ChartingOptions.d.ts +1 -1
  13. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +26 -26
  14. package/src/AdaptableOptions/ExportOptions.d.ts +17 -3
  15. package/src/Api/CalculatedColumnApi.d.ts +9 -0
  16. package/src/Api/ChartingApi.d.ts +41 -14
  17. package/src/Api/ColumnApi.d.ts +4 -0
  18. package/src/Api/DataSetApi.d.ts +2 -2
  19. package/src/Api/EventApi.d.ts +15 -1
  20. package/src/Api/Events/ChartStateChangeInfo.d.ts +5 -0
  21. package/src/Api/Events/ChartStateChangeInfo.js +2 -0
  22. package/src/Api/ExportApi.d.ts +5 -0
  23. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +2 -0
  24. package/src/Api/Implementation/CalculatedColumnApiImpl.js +24 -0
  25. package/src/Api/Implementation/ChartingApiImpl.d.ts +16 -2
  26. package/src/Api/Implementation/ChartingApiImpl.js +54 -2
  27. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  28. package/src/Api/Implementation/ColumnApiImpl.js +3 -0
  29. package/src/Api/Implementation/ExportApiImpl.d.ts +2 -0
  30. package/src/Api/Implementation/ExportApiImpl.js +10 -0
  31. package/src/Api/Implementation/PredicateApiImpl.d.ts +6 -4
  32. package/src/Api/Implementation/PredicateApiImpl.js +20 -1
  33. package/src/Api/Implementation/QueryApiImpl.js +8 -2
  34. package/src/Api/Internal/AdaptableInternalApi.d.ts +7 -1
  35. package/src/Api/Internal/AdaptableInternalApi.js +2 -1
  36. package/src/Api/Internal/AlertInternalApi.js +1 -1
  37. package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -0
  38. package/src/Api/Internal/CalculatedColumnInternalApi.js +9 -0
  39. package/src/Api/Internal/ChartingInternalApi.d.ts +6 -0
  40. package/src/Api/Internal/ChartingInternalApi.js +24 -0
  41. package/src/Api/Internal/FormatColumnInternalApi.d.ts +5 -0
  42. package/src/Api/Internal/FormatColumnInternalApi.js +25 -1
  43. package/src/Api/PredicateApi.d.ts +17 -1
  44. package/src/PredefinedConfig/AlertState.d.ts +5 -2
  45. package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +6 -0
  46. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +15 -11
  47. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +6 -0
  48. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  49. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +6 -0
  50. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +15 -0
  51. package/src/PredefinedConfig/Common/Enums.d.ts +2 -1
  52. package/src/PredefinedConfig/Common/Enums.js +1 -0
  53. package/src/PredefinedConfig/Common/FDC3Context.d.ts +3 -0
  54. package/src/PredefinedConfig/Common/Types.d.ts +21 -6
  55. package/src/PredefinedConfig/Common/Types.js +1 -3
  56. package/src/PredefinedConfig/FlashingCellState.d.ts +2 -2
  57. package/src/PredefinedConfig/FormatColumnState.d.ts +3 -2
  58. package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
  59. package/src/PredefinedConfig/PredefinedConfig.d.ts +4 -4
  60. package/src/PredefinedConfig/ThemeState.d.ts +0 -4
  61. package/src/Redux/ActionsReducers/PopupRedux.d.ts +2 -0
  62. package/src/Redux/ActionsReducers/PopupRedux.js +2 -0
  63. package/src/Redux/ActionsReducers/StatusBarRedux.d.ts +2 -2
  64. package/src/Redux/ActionsReducers/StatusBarRedux.js +4 -4
  65. package/src/Redux/Store/AdaptableStore.js +1 -11
  66. package/src/Strategy/AlertModule.js +7 -3
  67. package/src/Strategy/ChartingModule.js +5 -3
  68. package/src/Strategy/ExportModule.d.ts +1 -0
  69. package/src/Strategy/ExportModule.js +43 -0
  70. package/src/Strategy/FlashingCellModule.js +1 -1
  71. package/src/Strategy/FormatColumnModule.js +7 -2
  72. package/src/Strategy/Interface/IModule.d.ts +1 -1
  73. package/src/Strategy/LayoutModule.js +8 -1
  74. package/src/Strategy/StyledColumnModule.js +5 -0
  75. package/src/Strategy/ThemeModule.js +8 -2
  76. package/src/Strategy/Utilities/Alert/getAlertPreviewViewItems.js +2 -2
  77. package/src/Strategy/Utilities/Alert/getAlertTypeViewItems.d.ts +5 -0
  78. package/src/Strategy/Utilities/Alert/getAlertTypeViewItems.js +13 -0
  79. package/src/Strategy/Utilities/getObjectTagsViewItems.js +3 -3
  80. package/src/Utilities/Constants/ModuleConstants.d.ts +0 -3
  81. package/src/Utilities/Constants/ModuleConstants.js +2 -5
  82. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  83. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +1 -1
  84. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +3 -1
  85. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -1
  86. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +64 -3
  87. package/src/Utilities/Interface/MessagePopups.d.ts +1 -0
  88. package/src/Utilities/Services/AggregatedScalarLiveValue.js +13 -0
  89. package/src/Utilities/Services/ChartingService.d.ts +8 -0
  90. package/src/Utilities/Services/ChartingService.js +15 -0
  91. package/src/Utilities/Services/ReportService.js +1 -1
  92. package/src/View/AdaptableViewFactory.js +1 -1
  93. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +3 -2
  94. package/src/View/Alert/Utilities/getAlertType.d.ts +15 -0
  95. package/src/View/Alert/Utilities/getAlertType.js +58 -0
  96. package/src/View/Alert/Utilities/getAvailablePredicates.d.ts +3 -0
  97. package/src/View/Alert/Utilities/getAvailablePredicates.js +19 -0
  98. package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +37 -0
  99. package/src/View/Alert/Utilities/getDefaultAlertDefinition.js +32 -0
  100. package/src/View/Alert/Utilities/mapAlertDefinition.d.ts +2 -0
  101. package/src/View/Alert/Utilities/mapAlertDefinition.js +38 -0
  102. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +4 -2
  103. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +18 -11
  104. package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +2 -0
  105. package/src/View/Alert/Wizard/AlertButtonsEditor.js +15 -6
  106. package/src/View/Alert/Wizard/AlertMessageWizardSection.d.ts +10 -0
  107. package/src/View/Alert/Wizard/AlertMessageWizardSection.js +57 -0
  108. package/src/View/Alert/Wizard/{AlertDisplayWizardSection.d.ts → AlertNotificationWizardSection.d.ts} +7 -5
  109. package/src/View/Alert/Wizard/{AlertDisplayWizardSection.js → AlertNotificationWizardSection.js} +12 -50
  110. package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +7 -4
  111. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +66 -6
  112. package/src/View/Alert/Wizard/AlertScopeWizardSection.d.ts +2 -0
  113. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +41 -2
  114. package/src/View/Alert/Wizard/AlertTypeWizardSection.d.ts +9 -0
  115. package/src/View/Alert/Wizard/AlertTypeWizardSection.js +27 -0
  116. package/src/View/Alert/Wizard/AlertWizard.js +53 -98
  117. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +1 -6
  118. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +4 -39
  119. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +1 -1
  120. package/src/View/{Components/Charting → Charting}/ChartingStatusBarPopover.d.ts +0 -0
  121. package/src/View/{Components/Charting → Charting}/ChartingStatusBarPopover.js +2 -2
  122. package/src/View/{Components/Charting → Charting}/ChartingViewPanel.d.ts +1 -1
  123. package/src/View/{Components/Charting → Charting}/ChartingViewPanel.js +0 -0
  124. package/src/View/{Components/Charting → Charting}/ChartingWizard/ChartingWizard.d.ts +2 -2
  125. package/src/View/{Components/Charting → Charting}/ChartingWizard/ChartingWizard.js +12 -2
  126. package/src/View/{Components/Charting → Charting}/ChartingWizard/PreviewChartSection.d.ts +1 -1
  127. package/src/View/{Components/Charting → Charting}/ChartingWizard/PreviewChartSection.js +2 -2
  128. package/src/View/{Components/Charting → Charting}/ChartingWizard/SettingsSection.d.ts +1 -1
  129. package/src/View/{Components/Charting → Charting}/ChartingWizard/SettingsSection.js +4 -4
  130. package/src/View/{Components/Charting → Charting}/DeleteChartButton.d.ts +1 -1
  131. package/src/View/{Components/Charting → Charting}/DeleteChartButton.js +3 -3
  132. package/src/View/{Components/Charting → Charting}/EditChartButton.d.ts +1 -1
  133. package/src/View/{Components/Charting → Charting}/EditChartButton.js +3 -3
  134. package/src/View/{Components/Charting → Charting}/ShowChartButton.d.ts +1 -1
  135. package/src/View/{Components/Charting → Charting}/ShowChartButton.js +5 -5
  136. package/src/View/{Components/Charting → Charting}/useChartState.d.ts +1 -1
  137. package/src/View/{Components/Charting → Charting}/useChartState.js +5 -5
  138. package/src/View/{Components/Charting → Charting}/useChartingElements.d.ts +1 -1
  139. package/src/View/{Components/Charting → Charting}/useChartingElements.js +6 -6
  140. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicateEditor.d.ts +12 -0
  141. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicateEditor.js +85 -0
  142. package/src/View/Components/EntityRulesEditor/{PredicatesEditor.d.ts → EntityRulePredicatesEditor/EntityRulePredicatesEditor.d.ts} +6 -4
  143. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.js +87 -0
  144. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/index.d.ts +1 -0
  145. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/index.js +5 -0
  146. package/src/View/Components/EntityRulesEditor/Utilities.js +7 -1
  147. package/src/View/Components/EntityRulesEditor/index.d.ts +4 -2
  148. package/src/View/Components/EntityRulesEditor/index.js +27 -10
  149. package/src/View/Components/NewScopeComponent.d.ts +9 -5
  150. package/src/View/Components/NewScopeComponent.js +19 -10
  151. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +2 -2
  152. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
  153. package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
  154. package/src/View/Components/PredicateEditor/PredicateEditor.js +16 -5
  155. package/src/View/Components/PreviewResultsPanel.js +30 -3
  156. package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
  157. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -0
  158. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +1 -1
  159. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +1 -1
  160. package/src/View/Export/ExportTablePopup.d.ts +3 -0
  161. package/src/View/Export/ExportTablePopup.js +59 -0
  162. package/src/View/Export/Wizard/NewReportWizard.js +1 -1
  163. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +1 -1
  164. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +1 -1
  165. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -2
  166. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +1 -1
  167. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
  168. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
  169. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +1 -1
  170. package/src/View/GridInfo/GridInfoPopup.js +1 -1
  171. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +1 -1
  172. package/src/View/Query/Wizard/NamedQueryWizard.js +1 -1
  173. package/src/View/Schedule/Wizard/ScheduleWizard.js +1 -1
  174. package/src/View/Shortcut/Wizard/ShortcutWizard.js +1 -1
  175. package/src/View/StatusBar/StatusBarPanel.d.ts +3 -4
  176. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +7 -4
  177. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +5 -5
  178. package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
  179. package/src/View/Theme/ThemeStatusPanelPopover.js +10 -2
  180. package/src/View/Wizard/TypeRadio.d.ts +7 -0
  181. package/src/View/Wizard/TypeRadio.js +12 -0
  182. package/src/agGrid/Adaptable.d.ts +3 -1
  183. package/src/agGrid/Adaptable.js +28 -4
  184. package/src/agGrid/agGridHelper.d.ts +1 -0
  185. package/src/agGrid/agGridHelper.js +15 -0
  186. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +4 -0
  187. package/src/components/ExpressionEditor/editorButtonsAggregatedBoolean.js +5 -0
  188. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +5 -0
  189. package/src/components/icons/index.js +4 -0
  190. package/src/components/icons/visibility-off.d.ts +3 -0
  191. package/src/components/icons/visibility-off.js +7 -0
  192. package/src/components/icons/visibility.d.ts +3 -0
  193. package/src/components/icons/visibility.js +8 -0
  194. package/src/metamodel/adaptable.metamodel.d.ts +124 -0
  195. package/src/metamodel/adaptable.metamodel.js +1 -1
  196. package/src/types.d.ts +4 -4
  197. package/version.d.ts +1 -1
  198. package/version.js +1 -1
  199. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +0 -9
  200. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +0 -30
  201. package/src/View/Components/EntityRulesEditor/PredicatesEditor.js +0 -86

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.