@adaptabletools/adaptable 10.0.4-canary.1 → 10.0.4-canary.2
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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/base.css +16 -6
- package/bundle.cjs.js +350 -0
- package/index.css +20 -6
- package/package.json +1 -5
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +14 -12
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
- package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
- package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
- package/src/AdaptableOptions/EditOptions.d.ts +2 -3
- package/src/AdaptableOptions/FilterOptions.d.ts +8 -8
- package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
- package/src/AdaptableOptions/MenuOptions.d.ts +11 -11
- package/src/AdaptableOptions/NotificationsOptions.d.ts +8 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -3
- package/src/Api/AdaptableApi.d.ts +12 -12
- package/src/Api/ColumnApi.d.ts +10 -5
- package/src/Api/EventApi.d.ts +1 -1
- package/src/Api/Events/AdaptableReady.d.ts +3 -2
- package/src/Api/GridApi.d.ts +10 -10
- package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -3
- package/src/Api/Implementation/ColumnApiImpl.js +11 -9
- package/src/Api/Implementation/ConfigApiImpl.js +0 -24
- package/src/Api/Implementation/GridApiImpl.d.ts +2 -2
- package/src/Api/Implementation/GridApiImpl.js +3 -4
- package/src/Api/Implementation/InternalApiImpl.d.ts +1 -1
- package/src/Api/Implementation/InternalApiImpl.js +2 -2
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +15 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
- package/src/Api/Implementation/PluginsApiImpl.js +1 -1
- package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
- package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +3 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -4
- package/src/Api/InternalApi.d.ts +1 -1
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/PluginsApi.d.ts +1 -7
- package/src/Api/TeamSharingApi.d.ts +1 -1
- package/src/Api/ThemeApi.d.ts +2 -2
- package/src/Api/UserInterfaceApi.d.ts +3 -3
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -10
- package/src/PredefinedConfig/AlertState.d.ts +1 -1
- package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +40 -17
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +5 -5
- package/src/PredefinedConfig/Common/Types.js +9 -7
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
- package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
- package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
- package/src/PredefinedConfig/ExportState.d.ts +3 -3
- package/src/PredefinedConfig/FilterState.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -40
- package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
- package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
- package/src/PredefinedConfig/ThemeState.d.ts +5 -1
- package/src/Redux/ActionsReducers/DashboardRedux.js +2 -1
- package/src/Redux/ActionsReducers/GridRedux.d.ts +3 -2
- package/src/Redux/ActionsReducers/GridRedux.js +2 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +12 -2
- package/src/Redux/ActionsReducers/LayoutRedux.js +24 -1
- package/src/Redux/DeadRedux.d.ts +4 -8
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +6 -1
- package/src/Redux/Store/AdaptableStore.d.ts +3 -3
- package/src/Redux/Store/AdaptableStore.js +18 -13
- package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
- package/src/Strategy/AlertModule.d.ts +2 -2
- package/src/Strategy/AlertModule.js +1 -94
- package/src/Strategy/BulkUpdateModule.d.ts +2 -2
- package/src/Strategy/BulkUpdateModule.js +4 -4
- package/src/Strategy/CellSummaryModule.d.ts +2 -2
- package/src/Strategy/DashboardModule.d.ts +2 -2
- package/src/Strategy/DataChangeHistoryModule.js +2 -2
- package/src/Strategy/ExportModule.d.ts +2 -2
- package/src/Strategy/FilterModule.d.ts +2 -2
- package/src/Strategy/FormatColumnModule.js +1 -1
- package/src/Strategy/GridInfoModule.d.ts +2 -2
- package/src/Strategy/Interface/IModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.js +21 -8
- package/src/Strategy/SmartEditModule.d.ts +2 -2
- package/src/Strategy/SmartEditModule.js +3 -4
- package/src/Strategy/SystemStatusModule.d.ts +2 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +8 -7
- package/src/Utilities/Helpers/PreviewHelper.js +2 -2
- package/src/Utilities/Interface/Preview.d.ts +2 -1
- package/src/Utilities/Services/LicenseService.js +16 -2
- package/src/Utilities/Services/ValidationService.js +1 -1
- package/src/View/AdaptableViewFactory.d.ts +2 -1
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +7 -7
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
- package/src/View/Components/FilterForm/FilterForm.js +5 -7
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
- package/src/View/Components/FilterForm/QuickFilterForm.js +3 -5
- package/src/View/Components/Panels/FilterFormPanel.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +423 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +22 -9
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -4
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -3
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +3 -1
- package/src/View/CustomSort/CustomSortEntityRow.js +3 -3
- package/src/View/CustomSort/CustomSortPopup.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
- package/src/View/Dashboard/Dashboard.js +3 -3
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -5
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +6 -6
- package/src/View/Export/ExportViewPanel.js +6 -6
- package/src/View/GridInfo/GridOptionsComponent.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -2
- package/src/View/Query/QueryViewPanel.js +1 -1
- package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
- package/src/View/Schedule/SchedulePopup.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +1 -1
- package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
- package/src/View/StateManagement/StateManagementPopup.js +21 -114
- package/src/View/StateManagement/StateManagementViewPanel.d.ts +5 -0
- package/src/View/StateManagement/StateManagementViewPanel.js +22 -0
- package/src/View/StateManagement/components/ClearButton.d.ts +6 -0
- package/src/View/StateManagement/components/ClearButton.js +9 -0
- package/src/View/StateManagement/components/ExportDropdown.d.ts +8 -0
- package/src/View/StateManagement/components/ExportDropdown.js +43 -0
- package/src/View/StateManagement/components/LoadButton.d.ts +7 -0
- package/src/View/StateManagement/components/LoadButton.js +38 -0
- package/src/View/StateManagement/handleExportState.d.ts +1 -0
- package/src/View/StateManagement/handleExportState.js +22 -0
- package/src/View/Theme/ThemeViewPanel.js +1 -1
- package/src/agGrid/Adaptable.d.ts +9 -8
- package/src/agGrid/Adaptable.js +99 -78
- package/src/agGrid/agGridHelper.d.ts +4 -4
- package/src/agGrid/agGridHelper.js +15 -16
- package/src/agGrid/agGridMenuHelper.d.ts +15 -13
- package/src/agGrid/agGridMenuHelper.js +53 -45
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -6
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -2
- package/src/agGrid/editors/AdaptableDateEditor/index.js +16 -6
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +1 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +7 -2
- package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
- package/src/components/Datepicker/index.js +9 -5
- package/src/components/Modal/index.d.ts +1 -1
- package/src/components/OverlayTrigger/index.js +3 -3
- package/src/components/OverlayTrigger/useAgGridClassName.d.ts +2 -0
- package/src/components/OverlayTrigger/{useVendorClassName.js → useAgGridClassName.js} +3 -3
- package/src/components/ProgressIndicator/ProgressIndicator.js +1 -1
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/upload.d.ts +3 -0
- package/src/components/icons/upload.js +8 -0
- package/src/metamodel/adaptable.metamodel.d.ts +52 -37
- package/src/metamodel/adaptable.metamodel.js +261 -265
- package/src/types.d.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
- package/src/PredefinedConfig/DeprecatedState.js +0 -5
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
|
@@ -449,6 +449,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
449
449
|
kind: string;
|
|
450
450
|
description: string;
|
|
451
451
|
uiLabel: string;
|
|
452
|
+
reference: string;
|
|
452
453
|
}[];
|
|
453
454
|
};
|
|
454
455
|
AdaptableScope: {
|
|
@@ -522,13 +523,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
522
523
|
kind: string;
|
|
523
524
|
description: string;
|
|
524
525
|
uiLabel: string;
|
|
525
|
-
isOptional
|
|
526
|
+
isOptional: boolean;
|
|
526
527
|
} | {
|
|
527
528
|
name: string;
|
|
528
529
|
kind: string;
|
|
529
530
|
description: string;
|
|
530
531
|
uiLabel: string;
|
|
531
|
-
isOptional
|
|
532
|
+
isOptional?: undefined;
|
|
532
533
|
})[];
|
|
533
534
|
};
|
|
534
535
|
AdaptableToolPanelDefinition: {
|
|
@@ -1013,34 +1014,46 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1013
1014
|
reference: string;
|
|
1014
1015
|
})[];
|
|
1015
1016
|
};
|
|
1016
|
-
|
|
1017
|
+
ColumnMenuContext: {
|
|
1017
1018
|
name: string;
|
|
1018
1019
|
kind: string;
|
|
1019
1020
|
description: string;
|
|
1020
|
-
properties: {
|
|
1021
|
+
properties: ({
|
|
1021
1022
|
name: string;
|
|
1022
1023
|
kind: string;
|
|
1023
1024
|
description: string;
|
|
1024
1025
|
uiLabel: string;
|
|
1025
|
-
|
|
1026
|
+
reference: string;
|
|
1027
|
+
} | {
|
|
1028
|
+
name: string;
|
|
1029
|
+
kind: string;
|
|
1030
|
+
description: string;
|
|
1031
|
+
uiLabel: string;
|
|
1032
|
+
reference?: undefined;
|
|
1033
|
+
})[];
|
|
1026
1034
|
};
|
|
1027
|
-
|
|
1035
|
+
ColumnSort: {
|
|
1028
1036
|
name: string;
|
|
1029
1037
|
kind: string;
|
|
1030
1038
|
description: string;
|
|
1031
|
-
properties:
|
|
1039
|
+
properties: {
|
|
1032
1040
|
name: string;
|
|
1033
1041
|
kind: string;
|
|
1034
1042
|
description: string;
|
|
1035
1043
|
uiLabel: string;
|
|
1036
|
-
|
|
1037
|
-
|
|
1044
|
+
}[];
|
|
1045
|
+
};
|
|
1046
|
+
ColumnValuesComparer: {
|
|
1047
|
+
name: string;
|
|
1048
|
+
kind: string;
|
|
1049
|
+
description: string;
|
|
1050
|
+
properties: {
|
|
1038
1051
|
name: string;
|
|
1039
1052
|
kind: string;
|
|
1040
1053
|
description: string;
|
|
1041
1054
|
uiLabel: string;
|
|
1042
1055
|
reference: string;
|
|
1043
|
-
}
|
|
1056
|
+
}[];
|
|
1044
1057
|
};
|
|
1045
1058
|
ConditionalStyle: {
|
|
1046
1059
|
name: string;
|
|
@@ -1129,6 +1142,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1129
1142
|
defaultValue: string;
|
|
1130
1143
|
}[];
|
|
1131
1144
|
};
|
|
1145
|
+
ContextMenuContext: {
|
|
1146
|
+
name: string;
|
|
1147
|
+
kind: string;
|
|
1148
|
+
description: string;
|
|
1149
|
+
properties: ({
|
|
1150
|
+
name: string;
|
|
1151
|
+
kind: string;
|
|
1152
|
+
description: string;
|
|
1153
|
+
uiLabel: string;
|
|
1154
|
+
reference: string;
|
|
1155
|
+
} | {
|
|
1156
|
+
name: string;
|
|
1157
|
+
kind: string;
|
|
1158
|
+
description: string;
|
|
1159
|
+
uiLabel: string;
|
|
1160
|
+
reference?: undefined;
|
|
1161
|
+
})[];
|
|
1162
|
+
};
|
|
1132
1163
|
CustomDestination: {
|
|
1133
1164
|
name: string;
|
|
1134
1165
|
kind: string;
|
|
@@ -2433,24 +2464,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2433
2464
|
reference: string;
|
|
2434
2465
|
})[];
|
|
2435
2466
|
};
|
|
2436
|
-
MenuContext: {
|
|
2437
|
-
name: string;
|
|
2438
|
-
kind: string;
|
|
2439
|
-
description: string;
|
|
2440
|
-
properties: ({
|
|
2441
|
-
name: string;
|
|
2442
|
-
kind: string;
|
|
2443
|
-
description: string;
|
|
2444
|
-
uiLabel: string;
|
|
2445
|
-
reference: string;
|
|
2446
|
-
} | {
|
|
2447
|
-
name: string;
|
|
2448
|
-
kind: string;
|
|
2449
|
-
description: string;
|
|
2450
|
-
uiLabel: string;
|
|
2451
|
-
reference?: undefined;
|
|
2452
|
-
})[];
|
|
2453
|
-
};
|
|
2454
2467
|
MenuOptions: {
|
|
2455
2468
|
name: string;
|
|
2456
2469
|
kind: string;
|
|
@@ -2529,6 +2542,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2529
2542
|
gridInfo: string;
|
|
2530
2543
|
defaultValue: string;
|
|
2531
2544
|
reference: string;
|
|
2545
|
+
} | {
|
|
2546
|
+
name: string;
|
|
2547
|
+
kind: string;
|
|
2548
|
+
description: string;
|
|
2549
|
+
uiLabel: string;
|
|
2550
|
+
isOptional: boolean;
|
|
2551
|
+
defaultValue: string;
|
|
2552
|
+
gridInfo?: undefined;
|
|
2553
|
+
reference?: undefined;
|
|
2532
2554
|
})[];
|
|
2533
2555
|
};
|
|
2534
2556
|
NumberFormatterOptions: {
|
|
@@ -2679,21 +2701,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2679
2701
|
name: string;
|
|
2680
2702
|
kind: string;
|
|
2681
2703
|
description: string;
|
|
2682
|
-
properties:
|
|
2683
|
-
name: string;
|
|
2684
|
-
kind: string;
|
|
2685
|
-
description: string;
|
|
2686
|
-
uiLabel: string;
|
|
2687
|
-
isOptional: boolean;
|
|
2688
|
-
reference?: undefined;
|
|
2689
|
-
} | {
|
|
2704
|
+
properties: {
|
|
2690
2705
|
name: string;
|
|
2691
2706
|
kind: string;
|
|
2692
2707
|
description: string;
|
|
2693
2708
|
uiLabel: string;
|
|
2694
2709
|
isOptional: boolean;
|
|
2695
2710
|
reference: string;
|
|
2696
|
-
}
|
|
2711
|
+
}[];
|
|
2697
2712
|
};
|
|
2698
2713
|
PredicateApi: {
|
|
2699
2714
|
name: string;
|