@adaptabletools/adaptable 13.0.7 → 13.0.9
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/bundle.cjs.js +186 -186
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +9 -205
- package/src/AdaptableOptions/ExpressionOptions.d.ts +204 -0
- package/src/AdaptableOptions/ExpressionOptions.js +2 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +4 -13
- package/src/AdaptableOptions/PredicateOptions.d.ts +32 -0
- package/src/AdaptableOptions/PredicateOptions.js +2 -0
- package/src/Api/AdaptableApi.d.ts +5 -0
- package/src/Api/AlertApi.d.ts +0 -4
- package/src/Api/EntitlementApi.d.ts +31 -0
- package/src/Api/EntitlementApi.js +2 -0
- package/src/Api/FilterApi.d.ts +1 -5
- package/src/Api/FinanceApi.d.ts +17 -9
- package/src/Api/FlashingCellApi.d.ts +4 -4
- package/src/Api/FormatColumnApi.d.ts +0 -4
- package/src/Api/GridApi.d.ts +1 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +0 -1
- package/src/Api/Implementation/AlertApiImpl.js +3 -4
- package/src/Api/Implementation/ApiBase.d.ts +2 -1
- package/src/Api/Implementation/EntitlementApiImpl.d.ts +11 -0
- package/src/Api/Implementation/EntitlementApiImpl.js +25 -0
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -3
- package/src/Api/Implementation/FilterApiImpl.js +4 -20
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.js +7 -4
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +1 -2
- package/src/Api/Implementation/FormatColumnApiImpl.js +5 -5
- package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
- package/src/Api/Implementation/PredicateApiImpl.d.ts +10 -2
- package/src/Api/Implementation/PredicateApiImpl.js +83 -0
- package/src/Api/InternalApi.d.ts +2 -2
- package/src/Api/PredicateApi.d.ts +18 -2
- package/src/PredefinedConfig/AlertState.d.ts +8 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +5 -2
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +4 -1
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +2 -2
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +1 -0
- package/src/PredefinedConfig/FlashingCellState.d.ts +8 -1
- package/src/PredefinedConfig/FormatColumnState.d.ts +8 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +7 -1
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +1 -0
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +1 -1
- package/src/agGrid/Adaptable.d.ts +1 -0
- package/src/agGrid/Adaptable.js +16 -8
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/SizedContainer/index.d.ts +1 -1
- package/src/metamodel/adaptable.metamodel.d.ts +50 -8
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +10 -7
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/src/types.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export type { MasterDetailPluginOptions } from './AdaptableOptions/MasterDetailP
|
|
|
24
24
|
export type { FinsemblePluginOptions, FinsemblePluginStateOptions, } from './AdaptableOptions/FinsemblePluginOptions';
|
|
25
25
|
export type { FinancePluginOptions, WeightedAverageColumn, FDC3Column, InstrumentColumn, PositionColumn, CountryColumn, InstrumentIntent, InstrumentIntents, PositionIntent, PositionIntents, ContactIntent, ContactIntents, CountryIntent, CountryIntents, ContactColumn, OrganizationColumn, OrganizationIntent, OrganizationIntents, FDC3Intent, RaiseFDC3IntentContext, FDC3DesktopAgent, CustomFDC3Column, CustomFDC3Intent, } from './AdaptableOptions/FinancePluginOptions';
|
|
26
26
|
export type { DateInputOptions } from './AdaptableOptions/DateInputOptions';
|
|
27
|
-
export type { FilterOptions
|
|
27
|
+
export type { FilterOptions } from './AdaptableOptions/FilterOptions';
|
|
28
28
|
export type { SearchOptions } from './AdaptableOptions/SearchOptions';
|
|
29
29
|
export type { ColumnOptions, ColumnFriendlyNameContext } from './AdaptableOptions/ColumnOptions';
|
|
30
30
|
export type { AdaptablePersistStateFunction, AdaptableStateFunctionConfig, AdaptableLoadStateFunction, AdaptableSaveStateFunction, AdaptableClearStateFunction, StateOptions, } from './AdaptableOptions/StateOptions';
|
|
@@ -38,7 +38,9 @@ export type { UserInterfaceOptions, BasePermittedValues, PermittedValues, EditLo
|
|
|
38
38
|
export type { MenuOptions } from './AdaptableOptions/MenuOptions';
|
|
39
39
|
export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
|
|
40
40
|
export type { EntitlementOptions, EntitlementContext, DefaultAccessLevelContext, } from './AdaptableOptions/EntitlementOptions';
|
|
41
|
-
export type {
|
|
41
|
+
export type { EvaluateExpressionExternallyContext, AdaptableQLOptions, } from './AdaptableOptions/AdaptableQLOptions';
|
|
42
|
+
export type { ExpressionOptions, ModuleExpressionFunctions, ModuleExpressionFunctionsMap, GlobalExpressionFunctionsContext, ModuleExpressionFunctionsContext, CustomQueryVariableContext, QueryableColumnContext, } from './AdaptableOptions/ExpressionOptions';
|
|
43
|
+
export type { PredicateOptions, SystemPredicatesContext, } from './AdaptableOptions/PredicateOptions';
|
|
42
44
|
export type { DataChangeHistoryOptions, DataChangeHistoryButton, DataChangeHistoryContext, AdaptableDataChangeHistoryAction, } from './AdaptableOptions/DataChangeHistoryOptions';
|
|
43
45
|
export type { LayoutAssociatedObjectLoadConfig } from './Api/Implementation/ApiBase';
|
|
44
46
|
export type { AdaptableApi } from './Api/AdaptableApi';
|
|
@@ -56,6 +58,7 @@ export type { CustomSortApi } from './Api/CustomSortApi';
|
|
|
56
58
|
export type { DashboardApi } from './Api/DashboardApi';
|
|
57
59
|
export type { DataSetApi } from './Api/DataSetApi';
|
|
58
60
|
export type { DataChangeHistoryApi } from './Api/DataChangeHistoryApi';
|
|
61
|
+
export type { EntitlementApi } from './Api/EntitlementApi';
|
|
59
62
|
export type { ExportApi } from './Api/ExportApi';
|
|
60
63
|
export type { FilterApi } from './Api/FilterApi';
|
|
61
64
|
export type { FinanceApi } from './Api/FinanceApi';
|
|
@@ -111,12 +114,12 @@ export type { ThemeChangedInfo } from './Api/Events/ThemeChanged';
|
|
|
111
114
|
export type { DashboardChangedInfo } from './Api/Events/DashboardChanged';
|
|
112
115
|
export type { AdaptableStateChangedInfo } from './Api/Events/AdaptableStateChanged';
|
|
113
116
|
export type { AdaptableState, AdaptablePersistentState } from './PredefinedConfig/AdaptableState';
|
|
114
|
-
export type { AlertDefinition, AlertProperties, AlertState, AlertButtonForm, AlertButton, AdaptableAlertAction, AlertDefinitionPredicate, AlertRule, AdaptableAlertQuery, } from './PredefinedConfig/AlertState';
|
|
117
|
+
export type { AlertDefinition, AlertProperties, AlertState, AlertButtonForm, AlertButton, AdaptableAlertAction, AlertDefinitionPredicate, AlertRule, AdaptableAlertQuery, SystemAlertPredicateId, SystemAlertPredicateIds, } from './PredefinedConfig/AlertState';
|
|
115
118
|
export type { ApplicationDataEntry, ApplicationState } from './PredefinedConfig/ApplicationState';
|
|
116
119
|
export type { SpecialColumnSettings } from './PredefinedConfig/Common/SpecialColumnSettings';
|
|
117
120
|
export type { CalculatedColumn, CalculatedColumnSettings, CalculatedColumnState, AdaptableCalculatedColumnQuery, } from './PredefinedConfig/CalculatedColumnState';
|
|
118
121
|
export type { CellSummmary, CellSummaryOperation, CellSummaryOperationContext, } from './PredefinedConfig/Common/CellSummary';
|
|
119
|
-
export type { FlashingCellDefinition, FlashingCellState, } from './PredefinedConfig/FlashingCellState';
|
|
122
|
+
export type { FlashingCellDefinition, FlashingCellState, SystemFlashingCellPredicateId, SystemFlashingCellPredicateIds, } from './PredefinedConfig/FlashingCellState';
|
|
120
123
|
export type { AdaptableAlert, AdaptableAlertType, AdaptableGenericAlert, AdaptableCellChangedAlert, AdaptableRowChangedAlert, AdaptableAlertBase, } from './PredefinedConfig/Common/AdaptableAlert';
|
|
121
124
|
export type { AdaptableFlashingCell } from './PredefinedConfig/Common/AdaptableFlashingCell';
|
|
122
125
|
export type { AdaptableColumn, AdaptableColumnBase, AdaptableColumnDataType, } from './PredefinedConfig/Common/AdaptableColumn';
|
|
@@ -128,8 +131,8 @@ export type { AdaptableMessageType } from './PredefinedConfig/Common/AdaptableMe
|
|
|
128
131
|
export type { AdaptableObject, AdaptableObjectTag, } from './PredefinedConfig/Common/AdaptableObject';
|
|
129
132
|
export type { SuspendableObject } from './PredefinedConfig/Common/SuspendableObject';
|
|
130
133
|
export type { AdaptableQuery, AdaptableAggregatedBooleanQuery, AdaptableAggregatedScalarQuery, AdaptableBooleanQuery, AdaptableObservableQuery, AdaptableScalarQuery, } from './PredefinedConfig/Common/AdaptableQuery';
|
|
131
|
-
export type { AdaptablePredicate, AdaptablePredicateDef,
|
|
132
|
-
export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, FDC3ContextType, CustomFDC3Context, } from './PredefinedConfig/Common/FDC3Context';
|
|
134
|
+
export type { AdaptablePredicate, AdaptablePredicateDef, PredicateModuleScope, PredicateDefHandlerParams, PredicateDefInput, PredicateDefToStringParams, ColumnFilterDef, } from './PredefinedConfig/Common/AdaptablePredicate';
|
|
135
|
+
export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, FDC3ContextType, CustomFDC3Context, ContextData, } from './PredefinedConfig/Common/FDC3Context';
|
|
133
136
|
export type { AdaptableScope } from './PredefinedConfig/Common/AdaptableScope';
|
|
134
137
|
export type { AdaptableStyle } from './PredefinedConfig/Common/AdaptableStyle';
|
|
135
138
|
export type { AdaptableBaseIcon, AdaptableIcon, AdaptableInternalIcon, AdaptableExternalIcon, AdaptableInternalIconName, AdaptableElementIcon, } from './PredefinedConfig/Common/AdaptableIcon';
|
|
@@ -153,7 +156,7 @@ export type { CustomSort, CustomSortState } from './PredefinedConfig/CustomSortS
|
|
|
153
156
|
export type { DashboardState, DashboardTab, AdaptableCoordinate, } from './PredefinedConfig/DashboardState';
|
|
154
157
|
export type { ExportState, Report, ReportData, ReportSchedule, SystemReportName, SystemReportNames, ReportRowScope, ReportColumnScope, } from './PredefinedConfig/ExportState';
|
|
155
158
|
export type { ColumnFilter, ColumnFilterPredicate, SystemFilterPredicateIds, SystemFilterPredicateId, } from './PredefinedConfig/Common/ColumnFilter';
|
|
156
|
-
export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, } from './PredefinedConfig/FormatColumnState';
|
|
159
|
+
export type { FormatColumn, FormatColumnState, FormatColumnRule, FormatColumnPredicate, SystemFormatColumnPredicateId, SystemFormatColumnPredicateIds, } from './PredefinedConfig/FormatColumnState';
|
|
157
160
|
export type { StyledColumn, StyledColumnState, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, NumericStyledColumn, RangeValueType, } from './PredefinedConfig/StyledColumnState';
|
|
158
161
|
export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeTextColumnSettings, } from './PredefinedConfig/FreeTextColumnState';
|
|
159
162
|
export type { StatusBarState, AdaptableStatusBar } from './PredefinedConfig/StatusBarState';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "13.0.
|
|
1
|
+
declare const _default: "13.0.9";
|
|
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 = '13.0.
|
|
3
|
+
exports.default = '13.0.9'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|