@adaptabletools/adaptable 13.0.0-canary.9 → 13.0.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 (243) hide show
  1. package/base.css +1454 -840
  2. package/base.css.map +1 -0
  3. package/bundle.cjs.js +238 -220
  4. package/index.css +1505 -850
  5. package/index.css.map +1 -0
  6. package/package.json +6 -6
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -0
  10. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +30 -6
  11. package/src/AdaptableOptions/ExportOptions.d.ts +2 -2
  12. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -5
  13. package/src/AdaptableOptions/LayoutOptions.d.ts +2 -1
  14. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
  15. package/src/Api/AdaptableApi.d.ts +2 -5
  16. package/src/Api/ColumnApi.d.ts +8 -2
  17. package/src/Api/ConfigApi.d.ts +0 -5
  18. package/src/Api/ExportApi.d.ts +6 -6
  19. package/src/Api/FormatColumnApi.d.ts +46 -73
  20. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  21. package/src/Api/Implementation/AdaptableApiImpl.js +2 -3
  22. package/src/Api/Implementation/AlertApiImpl.js +9 -4
  23. package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -1
  24. package/src/Api/Implementation/ColumnApiImpl.js +15 -11
  25. package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -2
  26. package/src/Api/Implementation/ConfigApiImpl.js +0 -11
  27. package/src/Api/Implementation/ExportApiImpl.d.ts +4 -4
  28. package/src/Api/Implementation/ExportApiImpl.js +14 -14
  29. package/src/Api/Implementation/FlashingCellApiImpl.js +4 -1
  30. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +24 -22
  31. package/src/Api/Implementation/FormatColumnApiImpl.js +57 -224
  32. package/src/Api/Implementation/InternalApiImpl.d.ts +1 -1
  33. package/src/Api/Implementation/InternalApiImpl.js +4 -3
  34. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +2 -1
  35. package/src/Api/Implementation/QueryLanguageApiImpl.js +9 -15
  36. package/src/Api/Implementation/ScopeApiImpl.d.ts +1 -1
  37. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +25 -0
  38. package/src/Api/Implementation/StyledColumnApiImpl.js +193 -0
  39. package/src/Api/InternalApi.d.ts +1 -1
  40. package/src/Api/QueryLanguageApi.d.ts +3 -2
  41. package/src/Api/ScopeApi.d.ts +1 -1
  42. package/src/Api/StyledColumnApi.d.ts +106 -0
  43. package/src/Api/{ConditionalStyleApi.js → StyledColumnApi.js} +0 -0
  44. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  45. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  46. package/src/PredefinedConfig/Common/Types.d.ts +3 -3
  47. package/src/PredefinedConfig/Common/Types.js +1 -0
  48. package/src/PredefinedConfig/FormatColumnState.d.ts +6 -90
  49. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
  50. package/src/PredefinedConfig/StyledColumnState.d.ts +119 -0
  51. package/src/{Strategy/Interface/IConditionalStyleModule.js → PredefinedConfig/StyledColumnState.js} +0 -0
  52. package/src/Redux/ActionsReducers/PluginsRedux.d.ts +4 -4
  53. package/src/Redux/ActionsReducers/PluginsRedux.js +5 -5
  54. package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +49 -0
  55. package/src/Redux/ActionsReducers/StyledColumnRedux.js +92 -0
  56. package/src/Redux/DeadRedux.d.ts +6 -0
  57. package/src/Redux/DeadRedux.js +19 -1
  58. package/src/Redux/Store/AdaptableStore.js +9 -8
  59. package/src/Strategy/ConditionalStyleModule.d.ts +2 -27
  60. package/src/Strategy/ConditionalStyleModule.js +0 -219
  61. package/src/Strategy/FormatColumnModule.d.ts +0 -2
  62. package/src/Strategy/FormatColumnModule.js +30 -221
  63. package/src/Strategy/LayoutModule.js +0 -4
  64. package/src/Strategy/StyledColumnModule.d.ts +24 -0
  65. package/src/Strategy/StyledColumnModule.js +165 -0
  66. package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +1 -16
  67. package/src/Strategy/Utilities/getScopeViewItems.js +1 -1
  68. package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
  69. package/src/Utilities/Constants/ModuleConstants.js +4 -1
  70. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -3
  71. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
  72. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -4
  73. package/src/Utilities/ObjectFactory.d.ts +5 -2
  74. package/src/Utilities/ObjectFactory.js +14 -6
  75. package/src/Utilities/Services/ModuleService.js +2 -2
  76. package/src/Utilities/Services/QueryLanguageService.js +1 -1
  77. package/src/Utilities/Services/ReportService.js +6 -6
  78. package/src/View/AdaptablePopover/index.js +1 -1
  79. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +15 -14
  80. package/src/View/Alert/Wizard/AlertButtonsEditor.js +24 -1
  81. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -5
  82. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +3 -3
  83. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -3
  84. package/src/View/Alert/Wizard/isValidAlertRules.js +1 -1
  85. package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
  86. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  87. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -1
  88. package/src/View/Components/AdaptableObjectRow/index.js +1 -6
  89. package/src/View/Components/Buttons/ButtonInfo.d.ts +1 -3
  90. package/src/View/Components/Buttons/ButtonInfo.js +3 -5
  91. package/src/View/Components/EntityRulesEditor/index.js +8 -17
  92. package/src/View/Components/FilterForm/FilterForm.js +11 -16
  93. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  94. package/src/View/Components/FilterForm/QuickFilterForm.js +7 -13
  95. package/src/View/Components/NewScopeComponent.js +3 -3
  96. package/src/View/Components/Panels/PanelWithButton.js +1 -5
  97. package/src/View/Components/Panels/PanelWithImage.js +1 -5
  98. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -2
  99. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +1 -0
  100. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +3 -16
  101. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +1 -1
  102. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +5 -5
  103. package/src/View/Components/RangesComponent.d.ts +8 -1
  104. package/src/View/Components/RangesComponent.js +60 -24
  105. package/src/View/Components/ScopeComponent.js +6 -6
  106. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
  107. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  108. package/src/View/Components/Selectors/ColumnValueSelector.js +2 -2
  109. package/src/View/Components/StyleComponent.js +14 -19
  110. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -11
  111. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +21 -9
  112. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  113. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  114. package/src/View/Dashboard/DashboardPopup.js +1 -1
  115. package/src/View/DataSet/DataSetSelector.js +1 -1
  116. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  117. package/src/View/Export/ExportViewPanel.d.ts +1 -1
  118. package/src/View/Export/ExportViewPanel.js +4 -4
  119. package/src/View/Export/ReportExportDropdown.js +1 -1
  120. package/src/View/Export/Wizard/ReportNameWizardSection.js +10 -11
  121. package/src/View/Filter/FilterSummary.d.ts +1 -1
  122. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  123. package/src/View/FlashingCell/FlashingCellStyle.js +3 -3
  124. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +3 -3
  125. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +6 -6
  126. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +4 -4
  127. package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
  128. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +27 -27
  129. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +4 -5
  130. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
  131. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +2 -6
  132. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +3 -3
  133. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +6 -300
  134. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +3 -10
  135. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
  136. package/src/View/GridInfo/ColumnInfoComponent.js +26 -18
  137. package/src/View/GridInfo/GridInfoPopup.js +10 -9
  138. package/src/View/Layout/LayoutRadioSelector.js +1 -1
  139. package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
  140. package/src/View/Layout/Wizard/Components/ColumnLabels.js +1 -1
  141. package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
  142. package/src/View/Layout/Wizard/sections/ColumnsSection.js +7 -6
  143. package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
  144. package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +1 -1
  145. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +3 -3
  146. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  147. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
  148. package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
  149. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  150. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -5
  151. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +1 -1
  152. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +5 -5
  153. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
  154. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -5
  155. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -2
  156. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +3 -3
  157. package/src/View/SmartEdit/SmartEditPopup.js +3 -3
  158. package/src/View/SpecialColumnSettingsWizardStep.js +10 -10
  159. package/src/View/StateManagement/StateManagementPopup.js +4 -4
  160. package/src/View/StatusBar/StatusBarPopup.js +1 -1
  161. package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +7 -0
  162. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +77 -0
  163. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +9 -0
  164. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +65 -0
  165. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.d.ts +9 -0
  166. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.js +234 -0
  167. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +7 -0
  168. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +59 -0
  169. package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -6
  170. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  171. package/src/View/TeamSharing/SharedEntityObjectView.js +1 -1
  172. package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
  173. package/src/View/Theme/ThemePopup.js +1 -1
  174. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -1
  175. package/src/View/Wizard/OnePageAdaptableWizard.js +1 -2
  176. package/src/agGrid/ActionColumnRenderer.d.ts +2 -0
  177. package/src/agGrid/ActionColumnRenderer.js +94 -62
  178. package/src/agGrid/Adaptable.d.ts +10 -11
  179. package/src/agGrid/Adaptable.js +164 -222
  180. package/src/agGrid/CheckboxRenderer.js +1 -1
  181. package/src/agGrid/FilterWrapper.js +60 -16
  182. package/src/agGrid/FloatingFilterWrapper.d.ts +2 -2
  183. package/src/agGrid/FloatingFilterWrapper.js +71 -32
  184. package/src/agGrid/PercentBarRenderer.d.ts +6 -2
  185. package/src/agGrid/PercentBarRenderer.js +19 -17
  186. package/src/agGrid/agGridHelper.d.ts +6 -2
  187. package/src/agGrid/agGridHelper.js +17 -17
  188. package/src/agGrid/createAgStatusPanelComponent.d.ts +1 -1
  189. package/src/agGrid/createAgStatusPanelComponent.js +17 -0
  190. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +4 -1
  191. package/src/agGrid/editors/AdaptableDateEditor/index.js +84 -17
  192. package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -1
  193. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +2 -3
  194. package/src/agGrid/editors/AdaptableNumberEditor/index.js +78 -27
  195. package/src/agGrid/weightedAverage.js +19 -11
  196. package/src/components/CheckBox/index.js +7 -2
  197. package/src/components/Datepicker/index.d.ts +1 -1
  198. package/src/components/DragAndDropContext/TabList.js +1 -1
  199. package/src/components/DragAndDropContext/UnusedPanel.js +3 -2
  200. package/src/components/ExpressionEditor/BaseEditorInput.js +13 -32
  201. package/src/components/ExpressionEditor/index.js +9 -17
  202. package/src/components/FormLayout/index.js +1 -1
  203. package/src/components/StylePreview.js +2 -1
  204. package/src/components/icons/brush.d.ts +3 -0
  205. package/src/components/icons/brush.js +7 -0
  206. package/src/components/icons/index.js +2 -0
  207. package/src/metamodel/adaptable.metamodel.d.ts +113 -57
  208. package/src/metamodel/adaptable.metamodel.js +1 -1
  209. package/src/renderReactRoot.d.ts +2 -0
  210. package/src/renderReactRoot.js +11 -9
  211. package/src/types.d.ts +5 -5
  212. package/themes/dark.css +8 -4
  213. package/themes/dark.css.map +1 -0
  214. package/themes/light.css +4 -1
  215. package/themes/light.css.map +1 -0
  216. package/version.d.ts +1 -1
  217. package/version.js +1 -1
  218. package/src/AdaptableComponents.d.ts +0 -1
  219. package/src/AdaptableComponents.js +0 -5
  220. package/src/Api/ConditionalStyleApi.d.ts +0 -86
  221. package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +0 -29
  222. package/src/Api/Implementation/ConditionalStyleApiImpl.js +0 -98
  223. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +0 -49
  224. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +0 -95
  225. package/src/Strategy/Interface/IConditionalStyleModule.d.ts +0 -6
  226. package/src/Strategy/Utilities/getStyleViewItems.d.ts +0 -2
  227. package/src/Strategy/Utilities/getStyleViewItems.js +0 -16
  228. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.d.ts +0 -2
  229. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.js +0 -18
  230. package/src/View/ConditionalStyle/ConditionalStyleSummary.d.ts +0 -25
  231. package/src/View/ConditionalStyle/ConditionalStyleSummary.js +0 -108
  232. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.d.ts +0 -9
  233. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +0 -42
  234. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.d.ts +0 -8
  235. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +0 -43
  236. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +0 -8
  237. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +0 -29
  238. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.d.ts +0 -8
  239. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +0 -23
  240. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +0 -6
  241. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +0 -114
  242. package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.d.ts +0 -1
  243. package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.js +0 -4

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.