@adaptabletools/adaptable 11.0.0-canary.2 → 11.0.0-canary.3

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 (82) hide show
  1. package/base.css +5 -1
  2. package/bundle.cjs.js +93 -89
  3. package/index.css +6 -1
  4. package/package.json +31 -31
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableOptions/EntitlementOptions.d.ts +1 -1
  8. package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -1
  9. package/src/Api/GridApi.d.ts +3 -3
  10. package/src/Api/Implementation/DashboardApiImpl.js +1 -1
  11. package/src/Api/Implementation/FlashingCellApiImpl.js +2 -4
  12. package/src/Api/Implementation/GridApiImpl.d.ts +3 -3
  13. package/src/Api/Implementation/GridApiImpl.js +4 -0
  14. package/src/Api/Implementation/LayoutApiImpl.js +1 -1
  15. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
  16. package/src/PredefinedConfig/FlashingCellState.d.ts +2 -1
  17. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
  18. package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
  19. package/src/Redux/Store/AdaptableStore.js +11 -0
  20. package/src/Strategy/AlertModule.js +1 -1
  21. package/src/Strategy/DataChangeHistoryModule.js +1 -1
  22. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  23. package/src/Strategy/FlashingCellModule.js +32 -16
  24. package/src/Strategy/TeamSharingModule.js +1 -1
  25. package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +1 -1
  26. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +3 -1
  27. package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.js +1 -1
  28. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
  29. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +1 -1
  30. package/src/Utilities/Extensions/StringExtensions.js +1 -1
  31. package/src/Utilities/Helpers/AdaptableHelper.js +2 -2
  32. package/src/Utilities/ObjectFactory.js +4 -2
  33. package/src/Utilities/Services/LicenseService.js +1 -1
  34. package/src/Utilities/Services/ReportService.js +1 -1
  35. package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -1
  36. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +2 -3
  37. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -3
  38. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +15 -4
  39. package/src/View/Components/FilterForm/QuickFilterForm.js +2 -2
  40. package/src/View/Components/ModuleValueSelector/index.js +1 -1
  41. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -3
  42. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +3 -1
  43. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -6
  44. package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
  45. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  46. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  47. package/src/View/Components/ToolPanel/ToolPanelPopup.js +4 -4
  48. package/src/View/Components/ValueSelector/index.d.ts +2 -1
  49. package/src/View/Components/ValueSelector/index.js +5 -5
  50. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +10 -5
  51. package/src/View/CustomSort/Wizard/CustomSortWizard.js +16 -4
  52. package/src/View/Dashboard/Dashboard.js +3 -2
  53. package/src/View/Dashboard/DashboardPopup.js +5 -5
  54. package/src/View/Export/Wizard/NewReportWizard.js +13 -3
  55. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +17 -26
  56. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +19 -2
  57. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +20 -5
  58. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
  59. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
  60. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +10 -5
  61. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +12 -5
  62. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +8 -2
  63. package/src/View/Query/QueryViewPanel.js +12 -9
  64. package/src/View/Query/Wizard/NamedQueryWizard.js +3 -1
  65. package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
  66. package/src/View/Schedule/Wizard/ScheduleWizard.js +14 -14
  67. package/src/View/SpecialColumnSettingsWizardStep.js +3 -2
  68. package/src/View/Wizard/AdaptableWizard.js +1 -1
  69. package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -0
  70. package/src/View/Wizard/OnePageAdaptableWizard.js +1 -1
  71. package/src/agGrid/Adaptable.d.ts +0 -2
  72. package/src/agGrid/Adaptable.js +42 -28
  73. package/src/agGrid/agGridHelper.js +1 -1
  74. package/src/agGrid/agGridMenuHelper.js +1 -1
  75. package/src/components/Dashboard/DashboardManager.d.ts +5 -3
  76. package/src/components/Dashboard/DashboardManager.js +33 -27
  77. package/src/components/DropdownButton/renderItem.js +1 -1
  78. package/src/components/FormLayout/index.js +1 -1
  79. package/src/components/OverlayTrigger/Overlay.js +1 -1
  80. package/src/metamodel/adaptable.metamodel.js +1 -1
  81. package/version.d.ts +1 -1
  82. package/version.js +1 -1
package/base.css CHANGED
@@ -2506,7 +2506,8 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2506
2506
  --ab-cmp-Tag__font-size: var(--ab-font-size-3); }
2507
2507
  .ab-Tag {
2508
2508
  display: inline-flex;
2509
- font-size: var(--ab-cmp-Tag__font-size); }
2509
+ font-size: var(--ab-cmp-Tag__font-size);
2510
+ max-width: 100%; }
2510
2511
  .ab-AdaptableOptions {
2511
2512
  background: var(--ab-cmp-adaptable-options__background-color); }
2512
2513
  .ab-GridOptions {
@@ -2716,6 +2717,9 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2716
2717
  margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
2717
2718
  .ab-Adaptable-Object-List__Item__edit-property {
2718
2719
  visibility: hidden; }
2720
+ .ab-Adaptable-Object-List__Item__values {
2721
+ min-width: 0;
2722
+ word-break: break-all; }
2719
2723
  .ab-Adaptable-Object-List__Item__buttons {
2720
2724
  padding-left: var(--ab-space-2);
2721
2725
  min-width: 80px;