@adaptabletools/adaptable 15.4.3 → 16.0.0-canary.1
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 +1 -1
- package/base.css.map +1 -1
- package/bundle.cjs.js +234 -228
- package/index.css +1 -1
- package/index.css.map +1 -1
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +8 -2
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +82 -0
- package/src/AdaptableOptions/{ActionOptions.d.ts → ActionRowOptions.d.ts} +15 -90
- package/src/AdaptableOptions/AdaptableOptions.d.ts +32 -12
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -12
- package/src/AdaptableOptions/AlertOptions.d.ts +9 -0
- package/src/AdaptableOptions/CalendarOptions.d.ts +11 -0
- package/src/AdaptableOptions/CellSummaryOptions.d.ts +10 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +0 -4
- package/src/AdaptableOptions/CustomSortOptions.d.ts +24 -0
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +5 -1
- package/src/AdaptableOptions/DataSetOptions.d.ts +41 -0
- package/src/AdaptableOptions/DataSetOptions.js +2 -0
- package/src/AdaptableOptions/EditOptions.d.ts +4 -4
- package/src/AdaptableOptions/EntitlementOptions.d.ts +0 -16
- package/src/AdaptableOptions/ExportOptions.d.ts +2 -4
- package/src/AdaptableOptions/ExpressionOptions.d.ts +7 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/GroupingOptions.d.ts +50 -0
- package/src/AdaptableOptions/GroupingOptions.js +2 -0
- package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +9 -0
- package/src/AdaptableOptions/PredicateOptions.d.ts +4 -0
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +0 -8
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +30 -1
- package/src/Api/ActionColumnApi.d.ts +10 -0
- package/src/Api/ActionColumnApi.js +2 -0
- package/src/Api/{ActionApi.d.ts → ActionRowApi.d.ts} +4 -15
- package/src/Api/ActionRowApi.js +2 -0
- package/src/Api/AdaptableApi.d.ts +11 -6
- package/src/Api/AlertApi.d.ts +2 -111
- package/src/Api/BulkUpdateApi.d.ts +0 -7
- package/src/Api/CalculatedColumnApi.d.ts +0 -31
- package/src/Api/CalendarApi.d.ts +1 -1
- package/src/Api/CellSummaryApi.d.ts +0 -7
- package/src/Api/ChartingApi.d.ts +0 -7
- package/src/Api/ColumnApi.d.ts +1 -131
- package/src/Api/ConfigApi.d.ts +1 -7
- package/src/Api/CustomSortApi.d.ts +0 -25
- package/src/Api/DashboardApi.d.ts +0 -16
- package/src/Api/DataChangeHistoryApi.d.ts +0 -7
- package/src/Api/DataSetApi.d.ts +1 -16
- package/src/Api/EventApi.d.ts +1 -9
- package/src/Api/Events/AdaptableStateChanged.d.ts +0 -8
- package/src/Api/Events/AdaptableStateReloaded.d.ts +0 -4
- package/src/Api/Events/BaseEventInfo.d.ts +9 -1
- package/src/Api/Events/LiveDataChanged.d.ts +3 -7
- package/src/Api/ExportApi.d.ts +7 -31
- package/src/Api/{QueryLanguageApi.d.ts → ExpressionApi.d.ts} +2 -2
- package/src/Api/ExpressionApi.js +2 -0
- package/src/Api/FilterApi.d.ts +1 -59
- package/src/Api/FlashingCellApi.d.ts +0 -15
- package/src/Api/FormatColumnApi.d.ts +1 -91
- package/src/Api/FreeTextColumnApi.d.ts +0 -39
- package/src/Api/GridApi.d.ts +0 -31
- package/src/Api/Implementation/ActionColumnApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ActionColumnApiImpl.js +14 -0
- package/src/Api/Implementation/ActionRowApiImpl.d.ts +12 -0
- package/src/Api/Implementation/{ActionApiImpl.js → ActionRowApiImpl.js} +8 -15
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +6 -4
- package/src/Api/Implementation/AdaptableApiImpl.js +7 -5
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -43
- package/src/Api/Implementation/AlertApiImpl.js +4 -94
- package/src/Api/Implementation/ApiBase.d.ts +15 -5
- package/src/Api/Implementation/ApiBase.js +26 -8
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +0 -7
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +0 -32
- package/src/Api/Implementation/CalendarApiImpl.d.ts +1 -0
- package/src/Api/Implementation/CalendarApiImpl.js +20 -17
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +0 -1
- package/src/Api/Implementation/CellSummaryApiImpl.js +3 -6
- package/src/Api/Implementation/ChartingApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ChartingApiImpl.js +0 -5
- package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -35
- package/src/Api/Implementation/ColumnApiImpl.js +1 -138
- package/src/Api/Implementation/ConfigApiImpl.js +2 -1
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +1 -5
- package/src/Api/Implementation/CustomSortApiImpl.js +0 -16
- package/src/Api/Implementation/DashboardApiImpl.d.ts +0 -4
- package/src/Api/Implementation/DashboardApiImpl.js +2 -24
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +0 -1
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +0 -5
- package/src/Api/Implementation/DataSetApiImpl.d.ts +1 -4
- package/src/Api/Implementation/DataSetApiImpl.js +1 -14
- package/src/Api/Implementation/ExportApiImpl.d.ts +4 -10
- package/src/Api/Implementation/ExportApiImpl.js +15 -34
- package/src/Api/Implementation/{QueryLanguageApiImpl.d.ts → ExpressionApiImpl.d.ts} +4 -4
- package/src/Api/Implementation/{QueryLanguageApiImpl.js → ExpressionApiImpl.js} +7 -5
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -17
- package/src/Api/Implementation/FilterApiImpl.js +0 -53
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +0 -3
- package/src/Api/Implementation/FlashingCellApiImpl.js +2 -13
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +2 -34
- package/src/Api/Implementation/FormatColumnApiImpl.js +0 -73
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -8
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -29
- package/src/Api/Implementation/GridApiImpl.d.ts +0 -7
- package/src/Api/Implementation/GridApiImpl.js +3 -32
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -6
- package/src/Api/Implementation/LayoutApiImpl.js +2 -27
- package/src/Api/Implementation/OptionsApiImpl.d.ts +10 -5
- package/src/Api/Implementation/OptionsApiImpl.js +19 -7
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +0 -1
- package/src/Api/Implementation/PlusMinusApiImpl.js +0 -5
- package/src/Api/Implementation/PredicateApiImpl.d.ts +1 -8
- package/src/Api/Implementation/PredicateApiImpl.js +2 -30
- package/src/Api/Implementation/QueryApiImpl.d.ts +0 -5
- package/src/Api/Implementation/QueryApiImpl.js +0 -21
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +0 -1
- package/src/Api/Implementation/QuickSearchApiImpl.js +0 -5
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -18
- package/src/Api/Implementation/ScheduleApiImpl.js +0 -69
- package/src/Api/Implementation/ScopeApiImpl.js +1 -1
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +0 -2
- package/src/Api/Implementation/SettingsPanelApiImpl.js +0 -9
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -6
- package/src/Api/Implementation/ShortcutApiImpl.js +0 -21
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +0 -1
- package/src/Api/Implementation/SmartEditApiImpl.js +0 -5
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -5
- package/src/Api/Implementation/StyledColumnApiImpl.js +2 -17
- package/src/Api/Implementation/SystemStatusApiImpl.d.ts +0 -2
- package/src/Api/Implementation/SystemStatusApiImpl.js +0 -9
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +0 -5
- package/src/Api/Implementation/TeamSharingApiImpl.js +0 -21
- package/src/Api/Implementation/ThemeApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ThemeApiImpl.js +2 -17
- package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +4 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.js +17 -10
- package/src/Api/Internal/{ActionInternalApi.d.ts → ActionRowInternalApi.d.ts} +2 -2
- package/src/Api/Internal/{ActionInternalApi.js → ActionRowInternalApi.js} +12 -5
- package/src/Api/Internal/AdaptableInternalApi.d.ts +1 -10
- package/src/Api/Internal/AdaptableInternalApi.js +9 -20
- package/src/Api/Internal/AlertInternalApi.js +9 -6
- package/src/Api/Internal/CalculatedColumnInternalApi.js +2 -2
- package/src/Api/Internal/CustomSortInternalApi.d.ts +1 -1
- package/src/Api/Internal/CustomSortInternalApi.js +1 -1
- package/src/Api/Internal/DashboardInternalApi.js +2 -0
- package/src/Api/Internal/DataSetInternalApi.d.ts +1 -1
- package/src/Api/Internal/DataSetInternalApi.js +2 -1
- package/src/Api/Internal/ExportInternalApi.js +1 -1
- package/src/Api/Internal/{QueryLanguageInternalApi.d.ts → ExpressionnternalApi.d.ts} +1 -1
- package/src/Api/Internal/{QueryLanguageInternalApi.js → ExpressionnternalApi.js} +9 -5
- package/src/Api/Internal/FilterInternalApi.js +4 -1
- package/src/Api/Internal/FormatColumnInternalApi.js +1 -1
- package/src/Api/Internal/GridInternalApi.js +8 -0
- package/src/Api/Internal/LayoutInternalApi.js +6 -1
- package/src/Api/Internal/PredicateInternalApi.js +10 -0
- package/src/Api/Internal/QueryInternalApi.js +3 -1
- package/src/Api/Internal/SystemStatusInternalApi.js +4 -1
- package/src/Api/Internal/TeamSharingInternalApi.js +2 -0
- package/src/Api/LayoutApi.d.ts +3 -27
- package/src/Api/OptionsApi.d.ts +28 -10
- package/src/Api/PlusMinusApi.d.ts +0 -7
- package/src/Api/PredicateApi.d.ts +1 -32
- package/src/Api/QueryApi.d.ts +0 -23
- package/src/Api/QuickSearchApi.d.ts +0 -4
- package/src/Api/ScheduleApi.d.ts +0 -81
- package/src/Api/SettingsPanelApi.d.ts +0 -11
- package/src/Api/ShortcutApi.d.ts +0 -25
- package/src/Api/SmartEditApi.d.ts +0 -7
- package/src/Api/StyledColumnApi.d.ts +0 -21
- package/src/Api/SystemStatusApi.d.ts +0 -11
- package/src/Api/TeamSharingApi.d.ts +0 -23
- package/src/Api/ThemeApi.d.ts +0 -19
- package/src/Api/UserInterfaceApi.d.ts +4 -9
- package/src/PredefinedConfig/AlertState.d.ts +4 -1
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +4 -1
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +3 -0
- package/src/PredefinedConfig/Common/BaseContext.d.ts +8 -0
- package/src/PredefinedConfig/Common/CellSummary.d.ts +1 -0
- package/src/PredefinedConfig/Common/DataChangedScope.d.ts +9 -0
- package/src/PredefinedConfig/Common/Entitlement.d.ts +1 -1
- package/src/PredefinedConfig/Common/Enums.d.ts +2 -1
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/LayoutState.d.ts +0 -6
- package/src/PredefinedConfig/SystemState.d.ts +1 -1
- package/src/PredefinedConfig/TeamSharingState.d.ts +1 -1
- package/src/PredefinedConfig/ThemeState.d.ts +3 -0
- package/src/Strategy/AdaptableModuleBase.js +3 -3
- package/src/Strategy/AlertModule.js +3 -3
- package/src/Strategy/CalculatedColumnModule.js +2 -2
- package/src/Strategy/CellSummaryModule.js +3 -0
- package/src/Strategy/DataSetModule.d.ts +1 -1
- package/src/Strategy/DataSetModule.js +1 -1
- package/src/Strategy/ExportModule.js +4 -0
- package/src/Strategy/FlashingCellModule.js +4 -4
- package/src/Strategy/FormatColumnModule.js +3 -3
- package/src/Strategy/QueryModule.js +1 -1
- package/src/Strategy/SmartEditModule.js +2 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +25 -23
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +4 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +12 -6
- package/src/Utilities/Helpers/FormatHelper.js +7 -0
- package/src/Utilities/ObjectFactory.d.ts +2 -2
- package/src/Utilities/ObjectFactory.js +7 -4
- package/src/Utilities/Services/AlertService.js +1 -1
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +2 -2
- package/src/Utilities/Services/ChartingService.js +2 -0
- package/src/Utilities/Services/EntitlementService.js +2 -2
- package/src/Utilities/Services/MetamodelService.js +4 -0
- package/src/Utilities/Services/ModuleService.js +10 -10
- package/src/Utilities/Services/QueryLanguageService.js +16 -0
- package/src/Utilities/Services/ReportService.js +8 -6
- package/src/Utilities/Services/RowEditService.js +4 -2
- package/src/Utilities/Services/ValidationService.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +5 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +9 -9
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +3 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.js +4 -4
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +3 -3
- package/src/View/AdaptableWizardView/Wizard.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.js +1 -1
- package/src/View/Components/AdaptableIconSelector/index.d.ts +6 -0
- package/src/View/Components/AdaptableIconSelector/index.js +18 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +2 -2
- package/src/View/Components/AdaptableViewIcon/index.d.ts +10 -0
- package/src/View/Components/AdaptableViewIcon/index.js +18 -0
- package/src/View/Components/EntityRulesEditor/Utilities.js +3 -3
- package/src/View/Components/ExternalRenderer.js +14 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +4 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +2 -0
- package/src/View/Components/RangesComponent.d.ts +4 -4
- package/src/View/Components/RangesComponent.js +13 -22
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +2 -0
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
- package/src/View/Dashboard/CustomDashboardButton.js +2 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +13 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +11 -7
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
- package/src/View/DataChangeHistory/buildActionColumnButton.js +3 -2
- package/src/View/Export/ExportViewPanel.d.ts +1 -1
- package/src/View/Export/ExportViewPanel.js +4 -4
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +3 -1
- package/src/View/GridInfo/GridInfoPopup.d.ts +0 -1
- package/src/View/GridInfo/GridInfoPopup.js +1 -2
- package/src/View/GridInfo/GridOptionsComponent.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +1 -1
- package/src/View/Layout/PivotDetailsPopoup.js +2 -0
- package/src/View/Layout/SaveLayoutButton.js +1 -1
- package/src/View/Layout/Wizard/LayoutWizard.js +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +8 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
- package/src/agGrid/ActionColumnRenderer.js +5 -1
- package/src/agGrid/Adaptable.d.ts +21 -10
- package/src/agGrid/Adaptable.js +164 -63
- package/src/agGrid/BadgeRenderer.js +10 -2
- package/src/agGrid/CheckboxRenderer.d.ts +1 -2
- package/src/agGrid/agGridHelper.js +4 -5
- package/src/agGrid/agGridMenuHelper.js +4 -0
- package/src/agGrid/attachAddaptableColumnTypes.d.ts +11 -11
- package/src/agGrid/editors/AdaptableDateEditor/index.js +2 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +2 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +6 -3
- package/src/components/AdaptableIconComponent/index.js +6 -3
- package/src/components/ExpressionEditor/BaseEditorInput.js +2 -0
- package/src/components/ExpressionEditor/index.js +1 -1
- package/src/components/IconSelector/IconSelector.d.ts +2 -0
- package/src/components/IconSelector/IconSelector.js +21 -5
- package/src/components/Input/NumberInput.d.ts +10 -0
- package/src/components/Input/NumberInput.js +46 -0
- package/src/metamodel/adaptable.metamodel.d.ts +230 -145
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +14 -8
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -159
- package/src/Api/Events/SearchChanged.d.ts +0 -12
- package/src/Api/Implementation/ActionApiImpl.d.ts +0 -14
- /package/src/AdaptableOptions/{ActionOptions.js → ActionColumnOptions.js} +0 -0
- /package/src/AdaptableOptions/{GeneralOptions.js → ActionRowOptions.js} +0 -0
- /package/src/{Api/ActionApi.js → AdaptableOptions/CalendarOptions.js} +0 -0
- /package/src/{Api/Events/SearchChanged.js → AdaptableOptions/CellSummaryOptions.js} +0 -0
- /package/src/{Api/QueryLanguageApi.js → AdaptableOptions/CustomSortOptions.js} +0 -0
package/src/types.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export type { ExpressionFunction, ExpressionFunctionDocBlock, ExpressionFunctionHandler, ExpressionContext, ExpressionFunctionMap, ExpressionCategory, } from './../src/parser/src/types';
|
|
2
|
+
export type { AgGridConfig } from './AdaptableInterfaces/IAdaptable';
|
|
2
3
|
export type { AdaptableNoCodeWizardOptions, IAdaptableNoCodeWizard, } from './AdaptableInterfaces/AdaptableNoCodeWizard';
|
|
3
4
|
export type { BooleanFunctionName } from './Utilities/ExpressionFunctions/booleanExpressionFunctions';
|
|
4
5
|
export type { ScalarFunctionName } from './Utilities/ExpressionFunctions/scalarExpressionFunctions';
|
|
@@ -12,10 +13,14 @@ export type { FlashingCellOptions } from './AdaptableOptions/FlashingCellOptions
|
|
|
12
13
|
export type { TOAST_POSITIONS, NotificationsOptions, } from './AdaptableOptions/NotificationsOptions';
|
|
13
14
|
export type { AlertOptions, ActionHandler, AlertForm, AlertFormContext, AlertMessageContext, } from './AdaptableOptions/AlertOptions';
|
|
14
15
|
export type { DashboardOptions, CustomToolbar, DashboardButtonContext, CustomToolbarButtonContext, } from './AdaptableOptions/DashboardOptions';
|
|
15
|
-
export type { EditOptions, ValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, ServerValidationContext, CellEditableContext } from './AdaptableOptions/EditOptions';
|
|
16
|
-
export type { ActionRowButtonOptions, ActionRowFormOptions, ActionRowParamContext, ActionRowParamFieldContext, CreateActionRowFormContext, EditActionRowFormContext,
|
|
17
|
-
export type {
|
|
18
|
-
export type {
|
|
16
|
+
export type { EditOptions, ValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, ServerValidationContext, CellEditableContext, } from './AdaptableOptions/EditOptions';
|
|
17
|
+
export type { ActionRowOptions, ActionRowButtonOptions, ActionRowFormOptions, ActionRowParamContext, ActionRowParamFieldContext, CreateActionRowFormContext, EditActionRowFormContext, ActionRowFormContext, ActionRowButtonType, ActionRowButtonConfigurationContext, ActionRowButtonsContext, } from './AdaptableOptions/ActionRowOptions';
|
|
18
|
+
export type { ActionColumnContext, ActionColumn, ActionColumnSettings, ActionColumnOptions, } from './AdaptableOptions/ActionColumnOptions';
|
|
19
|
+
export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, ExternalReport, PreProcessExportContext, AdaptableReportColumn, DataFormatType, ExportFormContext, ReportContext, ExportableColumnContext, } from './AdaptableOptions/ExportOptions';
|
|
20
|
+
export type { DataSetOptions, DataSet, DataSetFormContext, } from './AdaptableOptions/DataSetOptions';
|
|
21
|
+
export type { CellSummaryOptions } from './AdaptableOptions/CellSummaryOptions';
|
|
22
|
+
export type { CustomSortOptions, ColumnValuesComparer } from './AdaptableOptions/CustomSortOptions';
|
|
23
|
+
export type { GroupingOptions, UnbalancedGroupsKeyContext, } from './AdaptableOptions/GroupingOptions';
|
|
19
24
|
export type { Glue42PluginOptions } from './AdaptableOptions/Glue42PluginOptions';
|
|
20
25
|
export type { Glue42WebPluginOptions } from './AdaptableOptions/Glue42WebPluginOptions';
|
|
21
26
|
export type { IPushPullPluginOptions } from './AdaptableOptions/IPushPullPluginOptions';
|
|
@@ -43,6 +48,7 @@ export type { EntitlementOptions, EntitlementContext, DefaultAccessLevelContext,
|
|
|
43
48
|
export type { EvaluateExpressionExternallyContext, AdaptableQLOptions, } from './AdaptableOptions/AdaptableQLOptions';
|
|
44
49
|
export type { ExpressionOptions, ModuleExpressionFunctions, ModuleExpressionFunctionsMap, GlobalExpressionFunctionsContext, ModuleExpressionFunctionsContext, CustomQueryVariableContext, QueryableColumnContext, } from './AdaptableOptions/ExpressionOptions';
|
|
45
50
|
export type { PredicateOptions, SystemPredicatesContext, } from './AdaptableOptions/PredicateOptions';
|
|
51
|
+
export type { CalendarOptions } from './AdaptableOptions/CalendarOptions';
|
|
46
52
|
export type { DataChangeHistoryOptions, DataChangeHistoryButton, DataChangeHistoryContext, AdaptableDataChangeHistoryAction, } from './AdaptableOptions/DataChangeHistoryOptions';
|
|
47
53
|
export type { LayoutAssociatedObjectLoadConfig } from './Api/Implementation/ApiBase';
|
|
48
54
|
export type { AdaptableApi } from './Api/AdaptableApi';
|
|
@@ -53,7 +59,8 @@ export type { CalendarApi } from './Api/CalendarApi';
|
|
|
53
59
|
export type { CalculatedColumnApi } from './Api/CalculatedColumnApi';
|
|
54
60
|
export type { CellSummaryApi } from './Api/CellSummaryApi';
|
|
55
61
|
export type { ColumnApi } from './Api/ColumnApi';
|
|
56
|
-
export type {
|
|
62
|
+
export type { ActionColumnApi } from './Api/ActionColumnApi';
|
|
63
|
+
export type { ActionRowApi } from './Api/ActionRowApi';
|
|
57
64
|
export type { ChartingApi } from './Api/ChartingApi';
|
|
58
65
|
export type { ConfigApi } from './Api/ConfigApi';
|
|
59
66
|
export type { CustomSortApi } from './Api/CustomSortApi';
|
|
@@ -79,7 +86,7 @@ export type { PluginsApi } from './Api/PluginsApi';
|
|
|
79
86
|
export type { PlusMinusApi } from './Api/PlusMinusApi';
|
|
80
87
|
export type { PredicateApi } from './Api/PredicateApi';
|
|
81
88
|
export type { QueryApi } from './Api/QueryApi';
|
|
82
|
-
export type {
|
|
89
|
+
export type { ExpressionApi } from './Api/ExpressionApi';
|
|
83
90
|
export type { QuickSearchApi } from './Api/QuickSearchApi';
|
|
84
91
|
export type { ScheduleApi } from './Api/ScheduleApi';
|
|
85
92
|
export type { SettingsPanelApi } from './Api/SettingsPanelApi';
|
|
@@ -111,7 +118,6 @@ export type { ActionRowSubmittedInfo, ActionRowType, CreatedActionRowInfo, Edite
|
|
|
111
118
|
export type { FilterAppliedInfo } from './Api/Events/FilterApplied';
|
|
112
119
|
export type { QueryRunInfo } from './Api/Events/QueryRun';
|
|
113
120
|
export type { GridSortedInfo, AdaptableSortState } from './Api/Events/GridSorted';
|
|
114
|
-
export type { SearchChangedInfo } from './Api/Events/SearchChanged';
|
|
115
121
|
export type { AdaptableSearchState } from './Api/Events/AdaptableSearchState';
|
|
116
122
|
export type { DataSetSelectedInfo } from './Api/Events/DataSetSelected';
|
|
117
123
|
export type { SelectionChangedInfo } from './Api/Events/SelectionChanged';
|
|
@@ -163,7 +169,7 @@ export type { DashboardState, DashboardTab, AdaptableCoordinate, } from './Prede
|
|
|
163
169
|
export type { ExportState, Report, ReportData, ReportSchedule, SystemReportName, SystemReportNames, ReportRowScope, ReportColumnScope, } from './PredefinedConfig/ExportState';
|
|
164
170
|
export type { ColumnFilter, ColumnFilterPredicate, SystemFilterPredicateIds, SystemFilterPredicateId, } from './PredefinedConfig/Common/ColumnFilter';
|
|
165
171
|
export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, SystemFormatColumnPredicateIds, } from './PredefinedConfig/FormatColumnState';
|
|
166
|
-
export type { StyledColumn, StyledColumnState, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, NumericStyledColumn, RangeValueType, SparkLineStyle, BadgeStyle, BadgeStyleDefinition, BadgeStylePredicate, SystemBadgeStylePredicateId, SystemBadgeStylePredicateIds } from './PredefinedConfig/StyledColumnState';
|
|
172
|
+
export type { StyledColumn, StyledColumnState, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, NumericStyledColumn, RangeValueType, SparkLineStyle, BadgeStyle, BadgeStyleDefinition, BadgeStylePredicate, SystemBadgeStylePredicateId, SystemBadgeStylePredicateIds, } from './PredefinedConfig/StyledColumnState';
|
|
167
173
|
export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeTextColumnSettings, } from './PredefinedConfig/FreeTextColumnState';
|
|
168
174
|
export type { StatusBarState, AdaptableStatusBar } from './PredefinedConfig/StatusBarState';
|
|
169
175
|
export type { Glue42Report, Glue42Schedule, Glue42State } from './PredefinedConfig/Glue42State';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "
|
|
1
|
+
declare const _default: "16.0.0-canary.1";
|
|
2
2
|
export default _default;
|
package/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = '
|
|
3
|
+
exports.default = '16.0.0-canary.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
import { AdaptableColumn, AdaptableForm, AdaptableObject, AdaptableScope, BaseContext } from '../../types';
|
|
2
|
-
import { AdaptableComparerFunction } from '../PredefinedConfig/Common/AdaptableComparerFunction';
|
|
3
|
-
import { AlternativeModuleName } from '../PredefinedConfig/Common/AlternativeModuleName';
|
|
4
|
-
import { FormContext } from '../PredefinedConfig/Common/FormContext';
|
|
5
|
-
import { CellSummaryOperation } from '../PredefinedConfig/Common/CellSummary';
|
|
6
|
-
import { KeyCreatorParams } from '@ag-grid-community/core';
|
|
7
|
-
/**
|
|
8
|
-
* General options for configuring AdapTable including managing Primary Keys
|
|
9
|
-
*/
|
|
10
|
-
export interface GeneralOptions<TData = any> {
|
|
11
|
-
/**
|
|
12
|
-
* Shows Alert if Primary Key column in Adaptable Options is not present or incorrect
|
|
13
|
-
*
|
|
14
|
-
* @defaultValue false
|
|
15
|
-
* @gridInfoItem
|
|
16
|
-
* @noCodeItem
|
|
17
|
-
* @uiLabel Show Missing Primary Key Warning
|
|
18
|
-
*/
|
|
19
|
-
showMissingPrimaryKeyAlert?: boolean;
|
|
20
|
-
/**
|
|
21
|
-
* Show aggregated totals row at top of Grid when row grouping
|
|
22
|
-
*
|
|
23
|
-
* @defaultValue false
|
|
24
|
-
* @gridInfoItem
|
|
25
|
-
*/
|
|
26
|
-
showGroupingTotalsAsHeader?: boolean;
|
|
27
|
-
/**
|
|
28
|
-
* Alternative names to use for Adaptable Modules in toolbars and menus
|
|
29
|
-
*
|
|
30
|
-
* @defaultValue null
|
|
31
|
-
*/
|
|
32
|
-
alternativeModuleNames?: AlternativeModuleName[];
|
|
33
|
-
/**
|
|
34
|
-
* Holidays - used to determine Working Days
|
|
35
|
-
* @defaultValue null
|
|
36
|
-
*/
|
|
37
|
-
holidays?: Holidays;
|
|
38
|
-
/**
|
|
39
|
-
* English variant to use in UI labels
|
|
40
|
-
*
|
|
41
|
-
* @defaultValue 'GB'
|
|
42
|
-
* @gridInfoItem
|
|
43
|
-
*/
|
|
44
|
-
englishVariant?: 'GB' | 'US';
|
|
45
|
-
/**
|
|
46
|
-
* Custom Cell Summary Operations to add to shipped set
|
|
47
|
-
*/
|
|
48
|
-
cellSummaryOperations?: CellSummaryOperation<TData>[];
|
|
49
|
-
/**
|
|
50
|
-
* CustomSort column comparer functions
|
|
51
|
-
*/
|
|
52
|
-
customSortComparers?: ColumnValuesComparer<TData>[];
|
|
53
|
-
/**
|
|
54
|
-
* Collection of Data Sets to provide Data to AdapTable
|
|
55
|
-
*/
|
|
56
|
-
dataSets?: DataSet[];
|
|
57
|
-
/**
|
|
58
|
-
* Value to use for 'Unbalanced Groups' (string columns)
|
|
59
|
-
*/
|
|
60
|
-
unbalancedGroupsKey?: string | ((context: UnbalancedGroupsKeyContext<TData>) => string);
|
|
61
|
-
/**
|
|
62
|
-
* Places ungrouped columns at pre-grouping indexed position
|
|
63
|
-
* @defaultValue false
|
|
64
|
-
* @noCodeItem
|
|
65
|
-
*/
|
|
66
|
-
restoreUngroupedColumns?: boolean;
|
|
67
|
-
/**
|
|
68
|
-
* Hides confirmation dialog which displays whenever an AdaptableObject is deleted
|
|
69
|
-
* @defaultValue false
|
|
70
|
-
* @noCodeItem
|
|
71
|
-
*/
|
|
72
|
-
disableDeleteConfirmation?: boolean;
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* Comparer object for Column Values - used for custom sorting
|
|
76
|
-
*/
|
|
77
|
-
export interface ColumnValuesComparer<TData = any> {
|
|
78
|
-
/**
|
|
79
|
-
* Column for which to compare values
|
|
80
|
-
*/
|
|
81
|
-
scope: AdaptableScope;
|
|
82
|
-
/**
|
|
83
|
-
* Comparer function to use
|
|
84
|
-
*/
|
|
85
|
-
comparer: AdaptableComparerFunction<TData>;
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* Defines a Data Set object that can provide data to AdapTable
|
|
89
|
-
*/
|
|
90
|
-
export interface DataSet extends AdaptableObject {
|
|
91
|
-
/**
|
|
92
|
-
* Name of Data Set
|
|
93
|
-
*/
|
|
94
|
-
name: string;
|
|
95
|
-
/**
|
|
96
|
-
* Describes the Data Set
|
|
97
|
-
*/
|
|
98
|
-
description: string;
|
|
99
|
-
/**
|
|
100
|
-
* Params for Data Set popup form
|
|
101
|
-
*/
|
|
102
|
-
form?: AdaptableForm<DataSetFormContext>;
|
|
103
|
-
/**
|
|
104
|
-
* Additional info for Data Set
|
|
105
|
-
*/
|
|
106
|
-
info?: Record<string, string | number | boolean | Date>;
|
|
107
|
-
}
|
|
108
|
-
/**
|
|
109
|
-
* Used when a DataSet displays a Form
|
|
110
|
-
*/
|
|
111
|
-
export interface DataSetFormContext extends FormContext {
|
|
112
|
-
/**
|
|
113
|
-
* The DataSet which triggered the Form
|
|
114
|
-
*/
|
|
115
|
-
dataSet: DataSet;
|
|
116
|
-
}
|
|
117
|
-
/**
|
|
118
|
-
* Context used when setting a value for Unbalanced Row Groups
|
|
119
|
-
*/
|
|
120
|
-
export interface UnbalancedGroupsKeyContext<TData = any> extends BaseContext {
|
|
121
|
-
/**
|
|
122
|
-
* Adaptable Column being grouped
|
|
123
|
-
*/
|
|
124
|
-
adaptableColumn: AdaptableColumn<TData>;
|
|
125
|
-
/**
|
|
126
|
-
* AG Grid's Key Creator Params
|
|
127
|
-
*/
|
|
128
|
-
params: KeyCreatorParams<TData>;
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* Holidays - can be list or function (latter takes preference)
|
|
132
|
-
*/
|
|
133
|
-
export interface Holidays {
|
|
134
|
-
/**
|
|
135
|
-
* Holidays provided as valid ISO date strings
|
|
136
|
-
*/
|
|
137
|
-
list?: string[];
|
|
138
|
-
/**
|
|
139
|
-
* Function which returns true if given date is a holiday
|
|
140
|
-
*/
|
|
141
|
-
isHoliday?: (holidayContext: HolidayContext) => boolean;
|
|
142
|
-
}
|
|
143
|
-
/**
|
|
144
|
-
* Context used for isHoliday function
|
|
145
|
-
*/
|
|
146
|
-
export interface HolidayContext extends BaseContext {
|
|
147
|
-
/**
|
|
148
|
-
* Date being checked
|
|
149
|
-
*/
|
|
150
|
-
dateToCheck: Date;
|
|
151
|
-
/**
|
|
152
|
-
* Name of Current User
|
|
153
|
-
*/
|
|
154
|
-
userName: string;
|
|
155
|
-
/**
|
|
156
|
-
* Id of current AdapTable instance
|
|
157
|
-
*/
|
|
158
|
-
adaptableId: string;
|
|
159
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { BaseEventInfo } from './BaseEventInfo';
|
|
2
|
-
import { AdaptableSortState } from '../../types';
|
|
3
|
-
import { AdaptableSearchState } from './AdaptableSearchState';
|
|
4
|
-
/**
|
|
5
|
-
* Deprecated Search Changed Event - use `QueryRun` or `FilterApplied` instead
|
|
6
|
-
* @deprecated Use QueryRun and or FilterApplied
|
|
7
|
-
*/
|
|
8
|
-
export interface SearchChangedInfo extends BaseEventInfo {
|
|
9
|
-
searchChangedTrigger: 'CurrentQuery' | 'Filter' | 'DataChange' | 'Sort';
|
|
10
|
-
adaptableSearchState: AdaptableSearchState;
|
|
11
|
-
adaptableSortState: AdaptableSortState;
|
|
12
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ActionApi, ActionColumn, ActionRowButtonType } from '../../../types';
|
|
2
|
-
import { ApiBase } from './ApiBase';
|
|
3
|
-
import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
|
|
4
|
-
import { ActionInternalApi } from '../Internal/ActionInternalApi';
|
|
5
|
-
export declare class ActionApiImpl extends ApiBase implements ActionApi {
|
|
6
|
-
internalApi: ActionInternalApi;
|
|
7
|
-
constructor(adaptable: IAdaptable);
|
|
8
|
-
getActionColumns(): ActionColumn[];
|
|
9
|
-
getActionRowButtons(): ActionRowButtonType[];
|
|
10
|
-
displayEditActionRow(primaryKey: any): void;
|
|
11
|
-
displayCreateActionRow(): void;
|
|
12
|
-
displayCloneActionRow(primaryKey?: any): void;
|
|
13
|
-
getAllActionColumn(): ActionColumn[];
|
|
14
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|