@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.
- package/base.css +21 -10
- package/bundle.cjs.js +98 -94
- package/index.css +23 -10
- package/package.json +32 -32
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +0 -1
- package/src/AdaptableOptions/DashboardOptions.d.ts +3 -2
- package/src/AdaptableOptions/EntitlementOptions.d.ts +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +1 -1
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +1 -1
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -1
- package/src/Api/Events/SearchChanged.d.ts +1 -1
- package/src/Api/GridApi.d.ts +5 -4
- package/src/Api/Implementation/DashboardApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.js +2 -4
- package/src/Api/Implementation/GridApiImpl.d.ts +5 -4
- package/src/Api/Implementation/GridApiImpl.js +4 -0
- package/src/Api/Implementation/InternalApiImpl.d.ts +0 -1
- package/src/Api/Implementation/InternalApiImpl.js +1 -9
- package/src/Api/Implementation/LayoutApiImpl.js +1 -1
- package/src/Api/InternalApi.d.ts +0 -1
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -12
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/RowHighlightInfo.d.ts +15 -0
- package/src/PredefinedConfig/Common/RowHighlightInfo.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +1 -1
- package/src/PredefinedConfig/DashboardState.d.ts +4 -4
- package/src/PredefinedConfig/FlashingCellState.d.ts +2 -1
- package/src/PredefinedConfig/SystemState.d.ts +2 -1
- package/src/Redux/ActionsReducers/DashboardRedux.d.ts +0 -7
- package/src/Redux/ActionsReducers/DashboardRedux.js +1 -11
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -5
- package/src/Redux/ActionsReducers/SystemRedux.js +13 -13
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
- package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
- package/src/Redux/Store/AdaptableStore.js +13 -3
- package/src/Strategy/AlertModule.js +1 -1
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +32 -16
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/getFlashingTargetViewItems.js +3 -1
- package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +2 -3
- package/src/Utilities/Extensions/StringExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -2
- package/src/Utilities/ObjectFactory.js +4 -2
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/ReportService.js +1 -1
- package/src/View/AdaptableView.js +1 -1
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -1
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +2 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +10 -23
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +15 -4
- package/src/View/Components/FilterForm/QuickFilterForm.js +4 -6
- package/src/View/Components/ModuleValueSelector/index.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +0 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +43 -87
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +10 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +54 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +3 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -6
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -3
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +6 -14
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.d.ts +2 -0
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +44 -0
- package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +4 -4
- package/src/View/Components/ValueSelector/index.d.ts +2 -1
- package/src/View/Components/ValueSelector/index.js +5 -5
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +10 -5
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +16 -4
- package/src/View/Dashboard/Dashboard.js +4 -4
- package/src/View/Dashboard/DashboardPopup.js +5 -5
- package/src/View/Export/Wizard/NewReportWizard.js +13 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +17 -26
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +19 -2
- package/src/View/FlashingCell/Wizard/{FlashingCellDurationWizardSection.d.ts → FlashingCellSettingsWizardSection.d.ts} +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +81 -0
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +5 -5
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +10 -5
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +8 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +13 -5
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +8 -2
- package/src/View/Query/QueryViewPanel.js +12 -9
- package/src/View/Query/Wizard/NamedQueryWizard.js +3 -1
- package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleWizard.js +14 -14
- package/src/View/SpecialColumnSettingsWizardStep.d.ts +9 -0
- package/src/View/SpecialColumnSettingsWizardStep.js +62 -0
- package/src/View/Wizard/AdaptableWizard.js +1 -1
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +1 -1
- package/src/agGrid/Adaptable.d.ts +0 -2
- package/src/agGrid/Adaptable.js +32 -22
- package/src/agGrid/agGridHelper.js +2 -3
- package/src/agGrid/agGridMenuHelper.js +5 -9
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/Dashboard/DashboardManager.d.ts +5 -3
- package/src/components/Dashboard/DashboardManager.js +33 -27
- package/src/components/DropdownButton/renderItem.js +1 -1
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/OverlayTrigger/Overlay.js +1 -1
- package/src/components/WindowModal/WindowModal.js +17 -2
- package/src/components/utils/useDraggable.js +2 -1
- package/src/metamodel/adaptable.metamodel.d.ts +9 -0
- package/src/metamodel/adaptable.metamodel.js +18 -11
- package/src/types.d.ts +2 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- 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,
|