@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
package/base.css CHANGED
@@ -1539,8 +1539,12 @@
1539
1539
  overflow: auto;
1540
1540
  display: grid;
1541
1541
  padding: var(--ab-space-2);
1542
- grid-template-rows: 1fr 1fr;
1543
- grid-template-columns: 28rem 1fr 1fr;
1542
+ flex: 1 1 0;
1543
+ min-height: 0;
1544
+ grid-template-columns: 28rem 1fr;
1545
+ grid-template-rows: repeat(3, 1fr);
1546
+ grid-column-gap: 0px;
1547
+ grid-row-gap: 0px;
1544
1548
  row-gap: var(--ab-space-2);
1545
1549
  column-gap: var(--ab-space-2);
1546
1550
  grid-gap: var(--ab-space-2); }
@@ -1550,18 +1554,13 @@
1550
1554
  .ab-LayoutEditor__ColumnList {
1551
1555
  overflow: auto; }
1552
1556
  .ab-LayoutEditor__ColumnListPanel {
1553
- grid-row: 1 /3;
1554
- grid-column: 1 /1;
1555
- max-height: initial; }
1557
+ grid-area: 1 / 1 / 4 / 2; }
1556
1558
  .ab-LayoutEditor__ColumnSortListPanel {
1557
- grid-row: 1 /1;
1558
- grid-column: 2 /2; }
1559
+ grid-area: 1 / 2 / 2 / 3; }
1559
1560
  .ab-LayoutEditor__RowGroupsListPanel {
1560
- grid-row: 2 / 2;
1561
- grid-column: 2 /2; }
1561
+ grid-area: 2 / 2 / 3 / 3; }
1562
1562
  .ab-LayoutEditor__PivotListPanel {
1563
- grid-row: 2 / 2;
1564
- grid-column: 3 /3; }
1563
+ grid-area: 3 / 2 / 4 / 3; }
1565
1564
  .ab-LayoutEditor__PivotList--empty,
1566
1565
  .ab-LayoutEditor__RowGroupsList--empty,
1567
1566
  .ab-LayoutEditor__ColumnSortList--empty {
@@ -1654,6 +1653,8 @@
1654
1653
  --ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
1655
1654
  --ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
1656
1655
  --ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
1656
+ :root {
1657
+ --ab-cmp-adaptable-window-popup__box-shadow: var(--ab-cmp-adaptable-popup__box-shadow); }
1657
1658
  :root {
1658
1659
  --ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
1659
1660
  --ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
@@ -2745,6 +2746,13 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2745
2746
  cursor: move; }
2746
2747
  .ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
2747
2748
  cursor: move; }
2749
+ .ab-Window-Modal .ab-Panel__header {
2750
+ cursor: move; }
2751
+ .ab-Window-Modal {
2752
+ max-height: 100%;
2753
+ box-shadow: var(--ab-cmp-adaptable-window-popup__box-shadow); }
2754
+ .ab-Window-Modal .ab-Panel {
2755
+ max-height: initial; }
2748
2756
  .ab-Adaptable-Object-List {
2749
2757
  list-style: none;
2750
2758
  padding: 0; }