@adaptabletools/adaptable 11.0.0-canary.0 → 11.0.0-canary.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 (118) hide show
  1. package/base.css +21 -10
  2. package/bundle.cjs.js +98 -94
  3. package/index.css +23 -10
  4. package/package.json +32 -32
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +0 -1
  8. package/src/AdaptableOptions/DashboardOptions.d.ts +3 -2
  9. package/src/AdaptableOptions/EntitlementOptions.d.ts +1 -1
  10. package/src/AdaptableOptions/GeneralOptions.d.ts +1 -1
  11. package/src/AdaptableOptions/TeamSharingOptions.d.ts +1 -1
  12. package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -1
  13. package/src/Api/Events/SearchChanged.d.ts +1 -1
  14. package/src/Api/GridApi.d.ts +5 -4
  15. package/src/Api/Implementation/DashboardApiImpl.js +1 -1
  16. package/src/Api/Implementation/FlashingCellApiImpl.js +2 -4
  17. package/src/Api/Implementation/GridApiImpl.d.ts +5 -4
  18. package/src/Api/Implementation/GridApiImpl.js +4 -0
  19. package/src/Api/Implementation/InternalApiImpl.d.ts +0 -1
  20. package/src/Api/Implementation/InternalApiImpl.js +1 -9
  21. package/src/Api/Implementation/LayoutApiImpl.js +1 -1
  22. package/src/Api/InternalApi.d.ts +0 -1
  23. package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -12
  24. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
  25. package/src/PredefinedConfig/Common/RowHighlightInfo.d.ts +15 -0
  26. package/src/PredefinedConfig/Common/RowHighlightInfo.js +2 -0
  27. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  28. package/src/PredefinedConfig/DashboardState.d.ts +4 -4
  29. package/src/PredefinedConfig/FlashingCellState.d.ts +2 -1
  30. package/src/PredefinedConfig/SystemState.d.ts +2 -1
  31. package/src/Redux/ActionsReducers/DashboardRedux.d.ts +0 -7
  32. package/src/Redux/ActionsReducers/DashboardRedux.js +1 -11
  33. package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -5
  34. package/src/Redux/ActionsReducers/SystemRedux.js +13 -13
  35. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
  36. package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
  37. package/src/Redux/Store/AdaptableStore.js +13 -3
  38. package/src/Strategy/AlertModule.js +1 -1
  39. package/src/Strategy/DataChangeHistoryModule.js +1 -1
  40. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  41. package/src/Strategy/FlashingCellModule.js +32 -16
  42. package/src/Strategy/TeamSharingModule.js +1 -1
  43. package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +1 -1
  44. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +3 -1
  45. package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.js +1 -1
  46. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
  47. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +2 -3
  48. package/src/Utilities/Extensions/StringExtensions.js +1 -1
  49. package/src/Utilities/Helpers/AdaptableHelper.js +2 -2
  50. package/src/Utilities/ObjectFactory.js +4 -2
  51. package/src/Utilities/Services/LicenseService.js +1 -1
  52. package/src/Utilities/Services/ReportService.js +1 -1
  53. package/src/View/AdaptableView.js +1 -1
  54. package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -1
  55. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +2 -3
  56. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -3
  57. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +10 -23
  58. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +15 -4
  59. package/src/View/Components/FilterForm/QuickFilterForm.js +4 -6
  60. package/src/View/Components/ModuleValueSelector/index.js +1 -1
  61. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +0 -3
  62. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +43 -87
  63. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +10 -0
  64. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +54 -0
  65. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +3 -1
  66. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -6
  67. package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -3
  68. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +6 -14
  69. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.d.ts +2 -0
  70. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +44 -0
  71. package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
  72. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  73. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  74. package/src/View/Components/ToolPanel/ToolPanelPopup.js +4 -4
  75. package/src/View/Components/ValueSelector/index.d.ts +2 -1
  76. package/src/View/Components/ValueSelector/index.js +5 -5
  77. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +10 -5
  78. package/src/View/CustomSort/Wizard/CustomSortWizard.js +16 -4
  79. package/src/View/Dashboard/Dashboard.js +4 -4
  80. package/src/View/Dashboard/DashboardPopup.js +5 -5
  81. package/src/View/Export/Wizard/NewReportWizard.js +13 -3
  82. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +17 -26
  83. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +19 -2
  84. package/src/View/FlashingCell/Wizard/{FlashingCellDurationWizardSection.d.ts → FlashingCellSettingsWizardSection.d.ts} +3 -3
  85. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +81 -0
  86. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +5 -5
  87. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
  88. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +10 -5
  89. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +8 -3
  90. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +13 -5
  91. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +8 -2
  92. package/src/View/Query/QueryViewPanel.js +12 -9
  93. package/src/View/Query/Wizard/NamedQueryWizard.js +3 -1
  94. package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
  95. package/src/View/Schedule/Wizard/ScheduleWizard.js +14 -14
  96. package/src/View/SpecialColumnSettingsWizardStep.d.ts +9 -0
  97. package/src/View/SpecialColumnSettingsWizardStep.js +62 -0
  98. package/src/View/Wizard/AdaptableWizard.js +1 -1
  99. package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -0
  100. package/src/View/Wizard/OnePageAdaptableWizard.js +1 -1
  101. package/src/agGrid/Adaptable.d.ts +0 -2
  102. package/src/agGrid/Adaptable.js +32 -22
  103. package/src/agGrid/agGridHelper.js +2 -3
  104. package/src/agGrid/agGridMenuHelper.js +5 -9
  105. package/src/components/Dashboard/Dashboard.js +1 -1
  106. package/src/components/Dashboard/DashboardManager.d.ts +5 -3
  107. package/src/components/Dashboard/DashboardManager.js +33 -27
  108. package/src/components/DropdownButton/renderItem.js +1 -1
  109. package/src/components/FormLayout/index.js +1 -1
  110. package/src/components/OverlayTrigger/Overlay.js +1 -1
  111. package/src/components/WindowModal/WindowModal.js +17 -2
  112. package/src/components/utils/useDraggable.js +2 -1
  113. package/src/metamodel/adaptable.metamodel.d.ts +9 -0
  114. package/src/metamodel/adaptable.metamodel.js +18 -11
  115. package/src/types.d.ts +2 -1
  116. package/version.d.ts +1 -1
  117. package/version.js +1 -1
  118. package/src/View/FlashingCell/Wizard/FlashingCellDurationWizardSection.js +0 -60

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.