@adaptabletools/adaptable 11.0.9 → 11.1.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 (112) hide show
  1. package/base.css +19 -11
  2. package/bundle.cjs.js +125 -125
  3. package/index.css +23 -11
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -0
  8. package/src/AdaptableOptions/LayoutOptions.d.ts +5 -1
  9. package/src/Api/AlertApi.d.ts +2 -1
  10. package/src/Api/BulkUpdateApi.d.ts +5 -0
  11. package/src/Api/ConfigApi.d.ts +1 -1
  12. package/src/Api/EventApi.d.ts +1 -1
  13. package/src/Api/Events/GridDataChanged.d.ts +5 -1
  14. package/src/Api/GridApi.d.ts +23 -2
  15. package/src/Api/Implementation/AlertApiImpl.d.ts +4 -1
  16. package/src/Api/Implementation/AlertApiImpl.js +79 -52
  17. package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
  18. package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -0
  19. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  20. package/src/Api/Implementation/ConfigApiImpl.js +7 -2
  21. package/src/Api/Implementation/GridApiImpl.d.ts +9 -1
  22. package/src/Api/Implementation/GridApiImpl.js +24 -3
  23. package/src/Api/Implementation/InternalApiImpl.d.ts +9 -2
  24. package/src/Api/Implementation/InternalApiImpl.js +37 -1
  25. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -1
  26. package/src/Api/Implementation/LayoutApiImpl.js +19 -4
  27. package/src/Api/Implementation/ScheduleApiImpl.js +1 -0
  28. package/src/Api/Implementation/SettingsPanelApiImpl.js +7 -1
  29. package/src/Api/InternalApi.d.ts +9 -2
  30. package/src/Api/LayoutApi.d.ts +14 -3
  31. package/src/PredefinedConfig/AlertState.d.ts +7 -3
  32. package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +35 -6
  33. package/src/PredefinedConfig/Common/AdaptableAlert.js +7 -0
  34. package/src/PredefinedConfig/Common/AdaptablePredicate.js +20 -0
  35. package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -1
  36. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
  37. package/src/PredefinedConfig/Common/Entitlement.d.ts +2 -2
  38. package/src/PredefinedConfig/Common/Menu.d.ts +3 -0
  39. package/src/PredefinedConfig/Common/RowsHighlightInfo.d.ts +15 -0
  40. package/src/PredefinedConfig/Common/RowsHighlightInfo.js +2 -0
  41. package/src/PredefinedConfig/ConfigState.d.ts +4 -1
  42. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  43. package/src/PredefinedConfig/PopupState.d.ts +2 -1
  44. package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
  45. package/src/Redux/ActionsReducers/PopupRedux.d.ts +18 -0
  46. package/src/Redux/ActionsReducers/PopupRedux.js +36 -1
  47. package/src/Redux/ActionsReducers/SystemRedux.d.ts +11 -0
  48. package/src/Redux/ActionsReducers/SystemRedux.js +32 -1
  49. package/src/Redux/Store/AdaptableReduxMerger.d.ts +1 -0
  50. package/src/Redux/Store/AdaptableReduxMerger.js +40 -4
  51. package/src/Redux/Store/AdaptableStore.js +69 -27
  52. package/src/Strategy/AlertModule.d.ts +5 -3
  53. package/src/Strategy/AlertModule.js +60 -16
  54. package/src/Strategy/BulkUpdateModule.js +5 -0
  55. package/src/Strategy/ExportModule.js +1 -0
  56. package/src/Strategy/SmartEditModule.js +6 -0
  57. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  58. package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +1 -1
  59. package/src/Utilities/Defaults/DefaultSettingsPanel.js +6 -2
  60. package/src/Utilities/Interface/MessagePopups.d.ts +13 -0
  61. package/src/Utilities/ObjectFactory.d.ts +8 -6
  62. package/src/Utilities/ObjectFactory.js +26 -12
  63. package/src/Utilities/Services/LicenseService.js +1 -1
  64. package/src/Utilities/Services/ModuleService.js +1 -1
  65. package/src/Utilities/Services/ValidationService.js +1 -0
  66. package/src/View/AdaptableView.js +2 -0
  67. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +16 -9
  68. package/src/View/Alert/Wizard/AlertButtonsEditor.js +13 -3
  69. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -0
  70. package/src/View/Alert/Wizard/AlertWizard.js +83 -1
  71. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
  72. package/src/View/Components/FilterForm/FilterForm.js +2 -2
  73. package/src/View/Components/Panels/PanelFooter.d.ts +10 -0
  74. package/src/View/Components/Panels/PanelFooter.js +14 -0
  75. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +12 -7
  76. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +1 -1
  77. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +3 -1
  78. package/src/View/Components/Popups/{AdaptablePopup/Utilities.d.ts → Utilities.d.ts} +4 -0
  79. package/src/View/Components/Popups/{AdaptablePopup/Utilities.js → Utilities.js} +5 -2
  80. package/src/View/Components/Popups/WindowPopups/WindowPopups.d.ts +6 -0
  81. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +32 -0
  82. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +4 -0
  83. package/src/View/Components/Popups/WindowPopups/windowFactory.js +8 -0
  84. package/src/View/Layout/LayoutEditorStandalonePopup.d.ts +3 -0
  85. package/src/View/Layout/LayoutEditorStandalonePopup.js +76 -0
  86. package/src/View/Layout/LayoutPopup.js +3 -24
  87. package/src/View/Layout/LayoutViewPanel.d.ts +1 -4
  88. package/src/View/Layout/LayoutViewPanel.js +5 -18
  89. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.d.ts +9 -0
  90. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +55 -0
  91. package/src/View/Layout/Wizard/LayoutEditor/index.js +3 -68
  92. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
  93. package/src/View/Layout/Wizard/LayoutEditorWizard.js +35 -7
  94. package/src/View/SystemStatus/SystemStatusEntityRow.js +1 -2
  95. package/src/agGrid/Adaptable.d.ts +4 -2
  96. package/src/agGrid/Adaptable.js +65 -69
  97. package/src/agGrid/agGridHelper.d.ts +1 -1
  98. package/src/agGrid/agGridHelper.js +23 -8
  99. package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
  100. package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
  101. package/src/components/Dialog/index.js +1 -1
  102. package/src/components/Modal/index.js +1 -1
  103. package/src/components/WindowModal/WindowModal.d.ts +10 -8
  104. package/src/components/WindowModal/WindowModal.js +4 -2
  105. package/src/components/WindowModal/useStacking.d.ts +9 -0
  106. package/src/components/WindowModal/useStacking.js +45 -0
  107. package/src/env.js +3 -3
  108. package/src/metamodel/adaptable.metamodel.d.ts +51 -11
  109. package/src/metamodel/adaptable.metamodel.js +122 -21
  110. package/src/types.d.ts +3 -2
  111. package/version.d.ts +1 -1
  112. package/version.js +1 -1

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.