@adaptabletools/adaptable 13.0.9 → 13.1.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 (96) hide show
  1. package/base.css +92 -0
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +179 -177
  4. package/index.css +107 -0
  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/AdaptableInterfaces/IAdaptable.d.ts +5 -2
  10. package/src/AdaptableOptions/ActionOptions.d.ts +51 -36
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
  12. package/src/AdaptableOptions/ChartingOptions.d.ts +17 -0
  13. package/src/AdaptableOptions/ChartingOptions.js +6 -0
  14. package/src/AdaptableOptions/FinancePluginOptions.d.ts +6 -0
  15. package/src/AdaptableOptions/LayoutOptions.d.ts +1 -2
  16. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
  17. package/src/Api/ChartingApi.d.ts +38 -1
  18. package/src/Api/Implementation/AlertApiImpl.js +4 -0
  19. package/src/Api/Implementation/ChartingApiImpl.d.ts +9 -1
  20. package/src/Api/Implementation/ChartingApiImpl.js +35 -6
  21. package/src/Api/Implementation/GridApiImpl.js +3 -2
  22. package/src/PredefinedConfig/AlertState.d.ts +7 -3
  23. package/src/PredefinedConfig/ChartingState.d.ts +13 -4
  24. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  25. package/src/PredefinedConfig/Common/Types.d.ts +4 -4
  26. package/src/PredefinedConfig/Common/Types.js +3 -0
  27. package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -2
  28. package/src/PredefinedConfig/SystemState.d.ts +9 -0
  29. package/src/Redux/ActionsReducers/ChartingRedux.d.ts +28 -5
  30. package/src/Redux/ActionsReducers/ChartingRedux.js +45 -5
  31. package/src/Redux/ActionsReducers/SystemRedux.d.ts +7 -0
  32. package/src/Redux/ActionsReducers/SystemRedux.js +22 -4
  33. package/src/Strategy/ChartingModule.d.ts +7 -1
  34. package/src/Strategy/ChartingModule.js +97 -0
  35. package/src/Strategy/FlashingCellModule.js +3 -1
  36. package/src/Strategy/Interface/IModule.d.ts +1 -0
  37. package/src/Strategy/LayoutModule.js +1 -1
  38. package/src/Strategy/StyledColumnModule.js +0 -3
  39. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +15 -10
  40. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  41. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
  42. package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
  43. package/src/Utilities/ObjectFactory.d.ts +5 -4
  44. package/src/Utilities/ObjectFactory.js +9 -14
  45. package/src/Utilities/Services/ChartingService.d.ts +10 -0
  46. package/src/Utilities/Services/ChartingService.js +100 -0
  47. package/src/Utilities/Services/Interface/IChartingService.d.ts +5 -0
  48. package/src/Utilities/Services/Interface/IChartingService.js +2 -0
  49. package/src/Utilities/Services/Interface/IRowEditService.d.ts +3 -3
  50. package/src/Utilities/Services/ModuleService.js +2 -0
  51. package/src/Utilities/Services/RowEditService.d.ts +3 -3
  52. package/src/Utilities/Services/RowEditService.js +4 -4
  53. package/src/View/AdaptableViewFactory.js +2 -0
  54. package/src/View/Alert/Wizard/AlertButtonsEditor.js +1 -1
  55. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -5
  56. package/src/View/Components/Charting/ChartingStatusBarPopover.d.ts +2 -0
  57. package/src/View/Components/Charting/ChartingStatusBarPopover.js +23 -0
  58. package/src/View/Components/Charting/ChartingViewPanel.d.ts +3 -0
  59. package/src/View/Components/Charting/ChartingViewPanel.js +79 -0
  60. package/src/View/Components/Charting/ChartingWizard/ChartingWizard.d.ts +6 -0
  61. package/src/View/Components/Charting/ChartingWizard/ChartingWizard.js +37 -0
  62. package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.d.ts +6 -0
  63. package/src/View/Components/Charting/ChartingWizard/PreviewChartSection.js +34 -0
  64. package/src/View/Components/Charting/ChartingWizard/SettingsSection.d.ts +8 -0
  65. package/src/View/Components/Charting/ChartingWizard/SettingsSection.js +53 -0
  66. package/src/View/Components/Charting/ShowChartButton.d.ts +5 -0
  67. package/src/View/Components/Charting/ShowChartButton.js +38 -0
  68. package/src/View/Components/Charting/useChartState.d.ts +9 -0
  69. package/src/View/Components/Charting/useChartState.js +71 -0
  70. package/src/View/Components/ExpressionWizard.js +1 -1
  71. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +8 -7
  72. package/src/View/Components/Popups/AdaptableToaster.js +2 -0
  73. package/src/View/Components/RangesComponent.js +1 -1
  74. package/src/View/Components/StyleComponent.d.ts +1 -0
  75. package/src/View/Components/StyleComponent.js +6 -6
  76. package/src/View/Components/ToolPanel/ToolPanelPopup.js +0 -1
  77. package/src/View/Layout/Wizard/LayoutWizard.js +1 -2
  78. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.js +1 -1
  79. package/src/agGrid/Adaptable.d.ts +8 -4
  80. package/src/agGrid/Adaptable.js +47 -12
  81. package/src/agGrid/agGridHelper.js +0 -1
  82. package/src/{View → components/ColorPicker}/ColorPicker.d.ts +3 -2
  83. package/src/{View → components/ColorPicker}/ColorPicker.js +19 -6
  84. package/src/components/ColorPicker/index.d.ts +1 -0
  85. package/src/components/ColorPicker/index.js +4 -0
  86. package/src/components/ExpressionEditor/BaseEditorInput.js +1 -1
  87. package/src/components/icons/index.js +0 -2
  88. package/src/metamodel/adaptable.metamodel.d.ts +66 -17
  89. package/src/metamodel/adaptable.metamodel.js +1 -1
  90. package/src/types.d.ts +3 -2
  91. package/version.d.ts +1 -1
  92. package/version.js +1 -1
  93. package/src/Strategy/ConditionalStyleModule.d.ts +0 -6
  94. package/src/Strategy/ConditionalStyleModule.js +0 -12
  95. package/src/components/icons/conditional-style.d.ts +0 -3
  96. package/src/components/icons/conditional-style.js +0 -7

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.