@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
package/base.css CHANGED
@@ -1614,6 +1614,7 @@
1614
1614
  --ab-cmp-adaptable-popup--settings__height: 90vh;
1615
1615
  --ab-cmp-adaptable-popup__height: 90vh;
1616
1616
  --ab-cmp-adaptable-popup__max-height: 1200px;
1617
+ --ab-cmp-adaptable-popup__box-shadow: 2px 2px 14px 0px rgb(0 0 0 / 26%);
1617
1618
  --ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
1618
1619
  --ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid var(--ab-color-defaultbackground);
1619
1620
  --ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
@@ -2506,7 +2507,8 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2506
2507
  --ab-cmp-Tag__font-size: var(--ab-font-size-3); }
2507
2508
  .ab-Tag {
2508
2509
  display: inline-flex;
2509
- font-size: var(--ab-cmp-Tag__font-size); }
2510
+ font-size: var(--ab-cmp-Tag__font-size);
2511
+ max-width: 100%; }
2510
2512
  .ab-AdaptableOptions {
2511
2513
  background: var(--ab-cmp-adaptable-options__background-color); }
2512
2514
  .ab-GridOptions {
@@ -2637,6 +2639,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2637
2639
  .ab-Adaptable-Popup {
2638
2640
  background: var(--ab-cmp-adaptable-popup__background);
2639
2641
  max-height: var(--ab-cmp-adaptable-popup__max-height); }
2642
+ .ab-Adaptable-Popup--window {
2643
+ box-shadow: var(--ab-cmp-adaptable-popup__box-shadow); }
2640
2644
  .ab-Adaptable-Popup__Navigation {
2641
2645
  padding-top: 10px;
2642
2646
  overflow: auto;
@@ -2716,6 +2720,9 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2716
2720
  margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
2717
2721
  .ab-Adaptable-Object-List__Item__edit-property {
2718
2722
  visibility: hidden; }
2723
+ .ab-Adaptable-Object-List__Item__values {
2724
+ min-width: 0;
2725
+ word-break: break-all; }
2719
2726
  .ab-Adaptable-Object-List__Item__buttons {
2720
2727
  padding-left: var(--ab-space-2);
2721
2728
  min-width: 80px;
@@ -2777,21 +2784,25 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2777
2784
  border-style: none;
2778
2785
  --ab-toast-cmp__shadow-color: var(--ab-color-accent);
2779
2786
  box-shadow: 0 0 7px 2px var(--ab-toast-cmp__shadow-color);
2780
- background: var(--ab-toast-cmp__shadow-color); }
2787
+ background: var(--ab-toast-cmp__shadow-color);
2788
+ --toastify-text-color-info: var(--ab-color-text-on-primary);
2789
+ --toastify-text-color-success: var(--ab-color-text-on-primary);
2790
+ --toastify-text-color-warning: var(--ab-color-text-on-primary);
2791
+ --toastify-text-color-error: var(--ab-color-text-on-primary);
2792
+ --toastify-color-info: var(--ab-color-info);
2793
+ --toastify-color-success: var(--ab-color-success);
2794
+ --toastify-color-warning: var(--ab-color-warn);
2795
+ --toastify-color-error: var(--ab-color-error); }
2781
2796
  .Toastify__toast-body {
2782
2797
  padding: 0; }
2783
2798
  .Toastify__toast--info {
2784
- --ab-toast-cmp__shadow-color: var(--ab-color-info);
2785
- color: var(--ab-color-text-on-primary); }
2799
+ --ab-toast-cmp__shadow-color: var(--ab-color-info); }
2786
2800
  .Toastify__toast--success {
2787
- --ab-toast-cmp__shadow-color: var(--ab-color-success);
2788
- color: var(--ab-color-text-on-primary); }
2801
+ --ab-toast-cmp__shadow-color: var(--ab-color-success); }
2789
2802
  .Toastify__toast--warning {
2790
- --ab-toast-cmp__shadow-color: var(--ab-color-warn);
2791
- color: var(--ab-color-text-on-primary); }
2803
+ --ab-toast-cmp__shadow-color: var(--ab-color-warn); }
2792
2804
  .Toastify__toast--error {
2793
- --ab-toast-cmp__shadow-color: var(--ab-color-error);
2794
- color: var(--ab-color-text-on-primary); }
2805
+ --ab-toast-cmp__shadow-color: var(--ab-color-error); }
2795
2806
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
2796
2807
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
2797
2808
  .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar,