@adaptabletools/adaptable 11.0.0-canary.6 → 11.0.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/README.md +4 -4
- package/agGrid.d.ts +5 -4
- package/agGrid.js +7 -5
- package/base.css +3 -4
- package/bundle.cjs.js +120 -115
- package/index.css +3 -4
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -5
- package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -2
- package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +4 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
- package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +7 -6
- package/src/AdaptableOptions/StateOptions.d.ts +7 -7
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/Api/CalculatedColumnApi.d.ts +2 -9
- package/src/Api/GridApi.d.ts +12 -3
- package/src/Api/Implementation/AlertApiImpl.js +1 -2
- package/src/Api/Implementation/ApiBase.d.ts +3 -2
- package/src/Api/Implementation/ApiBase.js +5 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
- package/src/Api/Implementation/ColumnApiImpl.js +1 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
- package/src/Api/Implementation/GridApiImpl.js +41 -21
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
- package/src/Api/Implementation/InternalApiImpl.js +5 -4
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +3 -0
- package/src/Api/Implementation/QueryLanguageApiImpl.js +15 -2
- package/src/Api/Implementation/SettingsPanelApiImpl.js +1 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
- package/src/Api/InternalApi.d.ts +2 -3
- package/src/Api/QueryApi.d.ts +2 -2
- package/src/Api/QueryLanguageApi.d.ts +13 -0
- package/src/Api/SettingsPanelApi.d.ts +4 -5
- package/src/PredefinedConfig/AlertState.d.ts +5 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +0 -1
- package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -5
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +6 -1
- package/src/PredefinedConfig/Common/Types.js +1 -0
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
- package/src/PredefinedConfig/PlusMinusState.d.ts +1 -1
- package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
- package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/AlertRedux.js +4 -4
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +4 -4
- package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/CustomSortRedux.js +4 -4
- package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +12 -12
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +33 -29
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +4 -4
- package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +4 -4
- package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
- package/src/Redux/ActionsReducers/ScheduleRedux.js +16 -16
- package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ShortcutRedux.js +4 -4
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
- package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
- package/src/Redux/Store/AdaptableStore.js +47 -22
- package/src/Strategy/AlertModule.js +4 -4
- package/src/Strategy/CalculatedColumnModule.js +4 -4
- package/src/Strategy/ChartingModule.d.ts +3 -3
- package/src/Strategy/ChartingModule.js +2 -2
- package/src/Strategy/FlashingCellModule.js +4 -4
- package/src/Strategy/FreeTextColumnModule.js +1 -0
- package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
- package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
- package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
- package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +3 -2
- package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -10
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +18 -13
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +18 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +311 -14
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
- package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +2 -3
- package/src/Utilities/ExpressionFunctions/groupingMap.js +3 -2
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
- package/src/Utilities/Services/AlertService.js +5 -1
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
- package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +7 -1
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/ModuleService.js +33 -40
- package/src/Utilities/Services/QueryLanguageService.d.ts +9 -2
- package/src/Utilities/Services/QueryLanguageService.js +81 -22
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
- package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/EntityRulesEditor/index.d.ts +1 -1
- package/src/View/Components/EntityRulesEditor/index.js +3 -4
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ValueSelector/index.js +1 -1
- package/src/View/Dashboard/DashboardPopup.js +1 -1
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
- package/src/View/License/LicenseWatermark.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
- package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
- package/src/agGrid/Adaptable.d.ts +4 -1
- package/src/agGrid/Adaptable.js +71 -48
- package/src/agGrid/CheckboxRenderer.d.ts +8 -1
- package/src/agGrid/CheckboxRenderer.js +18 -3
- package/src/agGrid/agGridHelper.d.ts +1 -1
- package/src/agGrid/agGridHelper.js +9 -10
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +5 -2
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
- package/src/components/ExpressionEditor/index.d.ts +2 -1
- package/src/components/ExpressionEditor/index.js +9 -2
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/Logo/index.js +8 -7
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/icons/calculated-column.js +2 -1
- package/src/metamodel/adaptable.metamodel.d.ts +235 -41
- package/src/metamodel/adaptable.metamodel.js +435 -149
- package/src/types.d.ts +5 -5
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -34,6 +34,15 @@ class QueryLanguageApiImpl extends ApiBase_1.ApiBase {
|
|
|
34
34
|
}
|
|
35
35
|
return isValid;
|
|
36
36
|
}
|
|
37
|
+
isValidAggregatedScalarExpression(expression, module, validationErrorMessage) {
|
|
38
|
+
const { isValid, errorMessage } = this.adaptable.api.internalApi
|
|
39
|
+
.getQueryLanguageService()
|
|
40
|
+
.validateAggregatedScalar(expression, module);
|
|
41
|
+
if (!isValid && validationErrorMessage) {
|
|
42
|
+
LoggingHelper_1.LogAdaptableWarning(`${validationErrorMessage} :: ${errorMessage}`);
|
|
43
|
+
}
|
|
44
|
+
return isValid;
|
|
45
|
+
}
|
|
37
46
|
getASTForExpression(query) {
|
|
38
47
|
return parser.getAST(query);
|
|
39
48
|
}
|
|
@@ -51,7 +60,7 @@ class QueryLanguageApiImpl extends ApiBase_1.ApiBase {
|
|
|
51
60
|
}
|
|
52
61
|
}
|
|
53
62
|
getQueryableColumnIds() {
|
|
54
|
-
let queryableColumns = this.
|
|
63
|
+
let queryableColumns = this.getExpressionOptions().queryableColumns;
|
|
55
64
|
if (!queryableColumns) {
|
|
56
65
|
return undefined;
|
|
57
66
|
}
|
|
@@ -67,7 +76,11 @@ class QueryLanguageApiImpl extends ApiBase_1.ApiBase {
|
|
|
67
76
|
}
|
|
68
77
|
}
|
|
69
78
|
getModuleExpressionFunctionMap() {
|
|
70
|
-
return this.
|
|
79
|
+
return this.getExpressionOptions().moduleExpressionFunctions;
|
|
80
|
+
}
|
|
81
|
+
getAdaptableQueryExpression(query) {
|
|
82
|
+
var _a, _b, _c, _d;
|
|
83
|
+
return ((_d = (_c = (_b = (_a = query.BooleanExpression) !== null && _a !== void 0 ? _a : query.ScalarExpression) !== null && _b !== void 0 ? _b : query.ObservableExpression) !== null && _c !== void 0 ? _c : query.AggregatedBooleanExpression) !== null && _d !== void 0 ? _d : query.AggregatedScalarExpression);
|
|
71
84
|
}
|
|
72
85
|
}
|
|
73
86
|
exports.QueryLanguageApiImpl = QueryLanguageApiImpl;
|
|
@@ -9,7 +9,7 @@ class SettingsPanelApiImpl extends ApiBase_1.ApiBase {
|
|
|
9
9
|
this.dispatchAction(PopupRedux.PopupShowScreen(moduleName));
|
|
10
10
|
}
|
|
11
11
|
showCustomSettingsPanel(name) {
|
|
12
|
-
this.dispatchAction(PopupRedux.PopupShowScreen(
|
|
12
|
+
this.dispatchAction(PopupRedux.PopupShowScreen(null, name));
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
exports.SettingsPanelApiImpl = SettingsPanelApiImpl;
|
|
@@ -30,7 +30,7 @@ class ToolPanelApiImpl extends ApiBase_1.ApiBase {
|
|
|
30
30
|
}
|
|
31
31
|
getCustomToolPanelButtons() {
|
|
32
32
|
var _a;
|
|
33
|
-
return (_a = this.getToolPanelOptions().
|
|
33
|
+
return (_a = this.getToolPanelOptions().customButtons) !== null && _a !== void 0 ? _a : [];
|
|
34
34
|
}
|
|
35
35
|
getCustomToolPanelByName(name) {
|
|
36
36
|
return this.getCustomToolPanels().find((customToolPanel) => customToolPanel.name === name);
|
package/src/Api/InternalApi.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { AdaptableColumn } from '../PredefinedConfig/Common/AdaptableColumn';
|
|
|
6
6
|
import { AdaptableMenuItem } from '../PredefinedConfig/Common/Menu';
|
|
7
7
|
import { SelectedCellInfo } from '../PredefinedConfig/Selection/SelectedCellInfo';
|
|
8
8
|
import { SelectedRowInfo } from '../PredefinedConfig/Selection/SelectedRowInfo';
|
|
9
|
-
import { AdaptableModule } from '../PredefinedConfig/Common/Types';
|
|
9
|
+
import { AdaptableModule, AdaptableQLModule } from '../PredefinedConfig/Common/Types';
|
|
10
10
|
import { GridCell } from '../PredefinedConfig/Selection/GridCell';
|
|
11
11
|
import { IAdaptable } from '../AdaptableInterfaces/IAdaptable';
|
|
12
12
|
import { IValidationService } from '../Utilities/Services/Interface/IValidationService';
|
|
@@ -15,7 +15,6 @@ import { IReportService } from '../Utilities/Services/Interface/IReportService';
|
|
|
15
15
|
import { ICalculatedColumnExpressionService } from '../Utilities/Services/Interface/ICalculatedColumnExpressionService';
|
|
16
16
|
import { AdaptableOptions } from '../AdaptableOptions/AdaptableOptions';
|
|
17
17
|
import { Layout } from '../PredefinedConfig/LayoutState';
|
|
18
|
-
import { ServerSearchOption } from '../AdaptableOptions/SearchOptions';
|
|
19
18
|
import { AdaptableAlert } from '../PredefinedConfig/Common/AdaptableAlert';
|
|
20
19
|
import { IDataService } from '../Utilities/Services/Interface/IDataService';
|
|
21
20
|
import { AdaptableMessageType, DataChangedInfo, SystemStatusMessageInfo } from '../types';
|
|
@@ -94,7 +93,7 @@ export interface InternalApi {
|
|
|
94
93
|
getTeamSharingService(): ITeamSharingService;
|
|
95
94
|
getMetamodelService(): IMetamodelService;
|
|
96
95
|
getModuleFriendlyName(adaptableModule: AdaptableModule): string;
|
|
97
|
-
|
|
96
|
+
runModuleInAdaptableQL(adaptableQLModule: AdaptableQLModule): boolean;
|
|
98
97
|
buildStandaloneColumnHeader(column: AdaptableColumn): AdaptableMenuItem[];
|
|
99
98
|
getCustomSortComparer(column: AdaptableColumn): ColumnValuesComparer | undefined;
|
|
100
99
|
clearFlashingCellState(): void;
|
package/src/Api/QueryApi.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export interface QueryApi {
|
|
|
45
45
|
showExpandedQueryPopup(): void;
|
|
46
46
|
/**
|
|
47
47
|
* Set a Query as Current Query
|
|
48
|
-
* @param query Query to set
|
|
48
|
+
* @param query - Query to set
|
|
49
49
|
*/
|
|
50
50
|
setCurrentQuery(query: string): void;
|
|
51
51
|
/**
|
|
@@ -53,7 +53,7 @@ export interface QueryApi {
|
|
|
53
53
|
*/
|
|
54
54
|
clearCurrentQuery(): void;
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* Returns the Current Query
|
|
57
57
|
*/
|
|
58
58
|
getCurrentQuery(): string | undefined;
|
|
59
59
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AdaptableModule } from '../PredefinedConfig/Common/Types';
|
|
2
2
|
import { ExpressionFunctionMap } from '../types';
|
|
3
|
+
import { AdaptableQuery } from '../PredefinedConfig/Common/AdaptableQuery';
|
|
3
4
|
/**
|
|
4
5
|
* Manages AdapTableQL (Query Language)
|
|
5
6
|
*/
|
|
@@ -25,6 +26,13 @@ export interface QueryLanguageApi {
|
|
|
25
26
|
* @param validationErrorMessage - optional validation error message; if provided, the error will be logged
|
|
26
27
|
*/
|
|
27
28
|
isValidAggregatedBooleanExpression(expression: string, module: AdaptableModule, validationErrorMessage?: string): boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Whether the given AggregatedScalarExpression is valid
|
|
31
|
+
* @param expression - AggregatedScalarExpression to check
|
|
32
|
+
* @param module - module specific query
|
|
33
|
+
* @param validationErrorMessage - optional validation error message; if provided, the error will be logged
|
|
34
|
+
*/
|
|
35
|
+
isValidAggregatedScalarExpression(expression: string, module: AdaptableModule, validationErrorMessage?: string): boolean;
|
|
28
36
|
/**
|
|
29
37
|
* Returns all Columns referenced in a QueryExpression
|
|
30
38
|
* @param expression - expression to check
|
|
@@ -43,4 +51,9 @@ export interface QueryLanguageApi {
|
|
|
43
51
|
* @param expression expression to be run
|
|
44
52
|
*/
|
|
45
53
|
getASTForExpression(expression: string): any;
|
|
54
|
+
/**
|
|
55
|
+
* Returns the Expression string of the given AdaptableQuery, which may be either a Boolean, an AggregatedBoolean, a Scalar, an AggregatedScalar or an ObservableExpression expression
|
|
56
|
+
* @param query - the AdaptableQuery
|
|
57
|
+
*/
|
|
58
|
+
getAdaptableQueryExpression(query: Partial<AdaptableQuery>): string | undefined;
|
|
46
59
|
}
|
|
@@ -4,14 +4,13 @@ import { AdaptableModule } from '../../types';
|
|
|
4
4
|
**/
|
|
5
5
|
export interface SettingsPanelApi {
|
|
6
6
|
/**
|
|
7
|
-
* Opens
|
|
8
|
-
*
|
|
9
|
-
* @param moduleName module name
|
|
7
|
+
* Opens Settings Panel and displays specified Module (if provided) or first available one
|
|
8
|
+
* @param moduleName name of Module to display
|
|
10
9
|
*/
|
|
11
10
|
showSettingsPanel(moduleName?: AdaptableModule): void;
|
|
12
11
|
/**
|
|
13
|
-
* Opens
|
|
14
|
-
* @param name name of
|
|
12
|
+
* Opens Settings Panel with the Custom Settings Panel, provided by name, displayed
|
|
13
|
+
* @param name name of Custom Settings Panel to display
|
|
15
14
|
*/
|
|
16
15
|
showCustomSettingsPanel(name: string): void;
|
|
17
16
|
}
|
|
@@ -60,7 +60,11 @@ export interface AlertDefinitionPredicate extends AdaptablePredicate {
|
|
|
60
60
|
*/
|
|
61
61
|
export declare type AlertRule = XOR<{
|
|
62
62
|
Predicate: AlertDefinitionPredicate;
|
|
63
|
-
},
|
|
63
|
+
}, AdaptableAlertQuery>;
|
|
64
|
+
/**
|
|
65
|
+
* Alert Query which may be either a Boolean, Observable or AggregatedBoolean Expression
|
|
66
|
+
*/
|
|
67
|
+
export declare type AdaptableAlertQuery = XOR<AdaptableBooleanQuery, XOR<AdaptableObservableQuery, AdaptableAggregatedBooleanQuery>>;
|
|
64
68
|
export declare type AdaptableAlertAction = 'highlight-cell' | 'jump-to-cell' | 'jump-to-row' | 'jump-to-column' | 'suspend' | 'undo';
|
|
65
69
|
/**
|
|
66
70
|
* Defines a button that appears in an Alert Form
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ConfigState } from './ConfigState';
|
|
2
2
|
import { AdaptableObject } from './Common/AdaptableObject';
|
|
3
|
-
import { AdaptableScalarQuery } from './Common/AdaptableQuery';
|
|
3
|
+
import { AdaptableAggregatedScalarQuery, AdaptableScalarQuery } from './Common/AdaptableQuery';
|
|
4
4
|
import { SpecialColumnSettings } from './Common/SpecialColumnSettings';
|
|
5
|
+
import { XOR } from '../Utilities/Extensions/TypeExtensions';
|
|
5
6
|
/**
|
|
6
7
|
* Predefined Configuration for Calculated Column Module
|
|
7
8
|
**/
|
|
@@ -28,9 +29,9 @@ export interface CalculatedColumn extends AdaptableObject {
|
|
|
28
29
|
*/
|
|
29
30
|
CalculatedColumnSettings?: CalculatedColumnSettings;
|
|
30
31
|
/**
|
|
31
|
-
* Scalar
|
|
32
|
+
* Scalar/AggregatedScalar Query used by AdapTableQL to evaluate Column's value
|
|
32
33
|
*/
|
|
33
|
-
Query?:
|
|
34
|
+
Query?: AdaptableCalculatedColumnQuery;
|
|
34
35
|
}
|
|
35
36
|
/**
|
|
36
37
|
* Set of optional properties that define a Calculated Column's behaviour
|
|
@@ -46,3 +47,7 @@ export interface CalculatedColumnSettings extends SpecialColumnSettings {
|
|
|
46
47
|
*/
|
|
47
48
|
ShowToolTip?: boolean;
|
|
48
49
|
}
|
|
50
|
+
/**
|
|
51
|
+
* Calculated Column Query which may be a Scalar or an AggregatedScalar Expression
|
|
52
|
+
*/
|
|
53
|
+
export declare type AdaptableCalculatedColumnQuery = XOR<AdaptableScalarQuery, AdaptableAggregatedScalarQuery>;
|
|
@@ -46,7 +46,7 @@ export interface AdaptableColumn extends AdaptableColumnBase {
|
|
|
46
46
|
*/
|
|
47
47
|
flex?: number;
|
|
48
48
|
/**
|
|
49
|
-
* Is column editable
|
|
49
|
+
* Is the column editable; returns FALSE if the column has conditional/dynamic editability, assuming some rows are editable
|
|
50
50
|
*/
|
|
51
51
|
readOnly: boolean;
|
|
52
52
|
/**
|
|
@@ -18,5 +18,4 @@ export interface AdaptableAggregatedScalarQuery {
|
|
|
18
18
|
* An AdaptableQuery can be either a Boolean, Scalar, Observable, AggregatedBoolean, or AggregatedScalar expression
|
|
19
19
|
*/
|
|
20
20
|
export declare type AdaptableQuery = XOR<AdaptableBooleanQuery, XOR<AdaptableScalarQuery, XOR<AdaptableObservableQuery, XOR<AdaptableAggregatedBooleanQuery, AdaptableAggregatedScalarQuery>>>>;
|
|
21
|
-
export declare const getAdaptableQueryExpression: (query: Partial<AdaptableQuery>) => string | undefined;
|
|
22
21
|
export declare const isReactiveQuery: (query: Partial<AdaptableQuery>) => boolean;
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isReactiveQuery =
|
|
4
|
-
exports.getAdaptableQueryExpression = (query) => {
|
|
5
|
-
var _a, _b, _c, _d;
|
|
6
|
-
return ((_d = (_c = (_b = (_a = query.BooleanExpression) !== null && _a !== void 0 ? _a : query.ScalarExpression) !== null && _b !== void 0 ? _b : query.ObservableExpression) !== null && _c !== void 0 ? _c : query.AggregatedBooleanExpression) !== null && _d !== void 0 ? _d : query.AggregatedScalarExpression);
|
|
7
|
-
};
|
|
3
|
+
exports.isReactiveQuery = void 0;
|
|
8
4
|
exports.isReactiveQuery = (query) => {
|
|
9
5
|
return !!query.ObservableExpression || !!query.AggregatedBooleanExpression;
|
|
10
6
|
};
|
|
@@ -22,8 +22,13 @@ export declare type AdaptableModuleButtons = AdaptableModuleButton[];
|
|
|
22
22
|
export declare type AdaptableModuleButton = 'Alert' | 'FlashingCell' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'FormatColumn' | 'FreeTextColumn' | 'Glue42' | 'GridInfo' | 'Layout' | 'OpenFin' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'SettingsPanel' | 'Shortcut' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'TeamSharing' | 'Theme';
|
|
23
23
|
export declare type AdaptableStateKeys = AdaptableStateKey[];
|
|
24
24
|
export declare type AdaptableStateKey = 'Alert' | 'FlashingCell' | 'Application' | 'CalculatedColumn' | 'Charting' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataSource' | 'Export' | 'Filter' | 'FormatColumn' | 'FreeTextColumn' | 'Glue42' | 'IPushPull' | 'Layout' | 'OpenFin' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'Shortcut' | 'Theme' | 'ToolPanel';
|
|
25
|
-
|
|
25
|
+
/**
|
|
26
|
+
* Modules provided by AdapTable, subject to Entitlements and usually have Predefined Config
|
|
27
|
+
*/
|
|
28
|
+
export declare type AdaptableModule = 'Alert' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'Charting' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'Glue42' | 'GridInfo' | 'IPushPull' | 'Layout' | 'OpenFin' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'SettingsPanel' | 'Shortcut' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
|
|
26
29
|
export declare type AdaptableSettingsPanel = 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'GridInfo' | 'Layout' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'Shortcut' | 'StateManagement' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
|
|
27
30
|
export declare type TypeHint<Base, Literals> = (Base & {
|
|
28
31
|
__subType?: true;
|
|
29
32
|
}) | Literals;
|
|
33
|
+
export declare type AdaptableQLModules = AdaptableQLModule[];
|
|
34
|
+
export declare type AdaptableQLModule = 'Filter' | 'Query';
|
|
@@ -11,7 +11,7 @@ import { SuspendableObject } from './Common/SuspendableObject';
|
|
|
11
11
|
**/
|
|
12
12
|
export interface ConditionalStyleState extends ConfigState {
|
|
13
13
|
/**
|
|
14
|
-
* Array of Conditional Styles to ship with
|
|
14
|
+
* Array of Conditional Styles to ship with AdapTable
|
|
15
15
|
*/
|
|
16
16
|
ConditionalStyles?: ConditionalStyle[];
|
|
17
17
|
}
|
|
@@ -32,7 +32,7 @@ export interface ConditionalStyle extends SuspendableObject {
|
|
|
32
32
|
*/
|
|
33
33
|
Style: AdaptableStyle;
|
|
34
34
|
/**
|
|
35
|
-
* Whether to apply Style in Grouped Rows
|
|
35
|
+
* Whether to apply Style in Grouped Rows and when Pivoting
|
|
36
36
|
* @defaultValue false
|
|
37
37
|
*/
|
|
38
38
|
IncludeGroupedRows?: boolean;
|
|
@@ -48,6 +48,9 @@ export interface FormatColumn extends SuspendableObject {
|
|
|
48
48
|
*/
|
|
49
49
|
IncludeGroupedRows?: boolean;
|
|
50
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* Special Style used when Formatting Columns: Gradient, PercentBar or CheckBox
|
|
53
|
+
*/
|
|
51
54
|
export interface ColumnStyle {
|
|
52
55
|
/**
|
|
53
56
|
* Style a numeric column so each cell value shows a gradient shade
|
|
@@ -62,6 +65,9 @@ export interface ColumnStyle {
|
|
|
62
65
|
*/
|
|
63
66
|
CheckBoxStyle?: boolean;
|
|
64
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* Style used to display Percent Bars in Format Column
|
|
70
|
+
*/
|
|
65
71
|
export interface PercentBarStyle {
|
|
66
72
|
/**
|
|
67
73
|
* Ranges (e.g. to allow a traffic light effect)
|
|
@@ -85,6 +91,9 @@ export interface PercentBarStyle {
|
|
|
85
91
|
*/
|
|
86
92
|
BackColor?: string;
|
|
87
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* Used to display Gradient Styles in Format Column
|
|
96
|
+
*/
|
|
88
97
|
export interface GradientStyle {
|
|
89
98
|
/**
|
|
90
99
|
* Ranges (e.g. to allow a traffic light effect)
|
|
@@ -95,6 +104,9 @@ export interface GradientStyle {
|
|
|
95
104
|
*/
|
|
96
105
|
ColumnComparison?: ColumnComparison;
|
|
97
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* Defines which Colours to show in Gradient and Percent Bar Styles
|
|
109
|
+
*/
|
|
98
110
|
export interface CellColorRange {
|
|
99
111
|
/**
|
|
100
112
|
* Start number of Range
|
|
@@ -113,6 +125,9 @@ export interface CellColorRange {
|
|
|
113
125
|
*/
|
|
114
126
|
ReverseGradient?: boolean;
|
|
115
127
|
}
|
|
128
|
+
/**
|
|
129
|
+
* Enables a Percent Bar or Gradient Style to use another column in its calculations
|
|
130
|
+
*/
|
|
116
131
|
export interface ColumnComparison {
|
|
117
132
|
/**
|
|
118
133
|
* Start value - either numeric or Column name
|
|
@@ -24,7 +24,7 @@ export interface PlusMinusNudge extends SuspendableObject {
|
|
|
24
24
|
*/
|
|
25
25
|
NudgeValue: number;
|
|
26
26
|
/**
|
|
27
|
-
* (Optional) Boolean
|
|
27
|
+
* (Optional) Boolean Expression to determine whether to apply the Nudge
|
|
28
28
|
*/
|
|
29
29
|
Rule?: AdaptableBooleanQuery;
|
|
30
30
|
}
|
|
@@ -19,7 +19,7 @@ export declare const ALERT_DEFINITION_SUSPEND = "ALERT_DEFINITION_SUSPEND";
|
|
|
19
19
|
/**
|
|
20
20
|
* @ReduxAction Alert Definition is un-suspended, or activated
|
|
21
21
|
*/
|
|
22
|
-
export declare const
|
|
22
|
+
export declare const ALERT_DEFINITION_UNSUSPEND = "ALERT_DEFINITION_UNSUSPEND";
|
|
23
23
|
export declare const ALERT_CLEAR_FLASHING_CELLS = "ALERT_CLEAR_FLASHING_CELLS";
|
|
24
24
|
/**
|
|
25
25
|
* @ReduxAction Alert Module is ready
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AlertReducer = exports.AlertClearFlashingCells = exports.AlertReady = exports.AlertDefinitionUnSuspend = exports.AlertDefinitionSuspend = exports.AlertDefinitionDelete = exports.AlertDefinitionEdit = exports.AlertDefinitionAdd = exports.ALERT_READY = exports.ALERT_CLEAR_FLASHING_CELLS = exports.
|
|
3
|
+
exports.AlertReducer = exports.AlertClearFlashingCells = exports.AlertReady = exports.AlertDefinitionUnSuspend = exports.AlertDefinitionSuspend = exports.AlertDefinitionDelete = exports.AlertDefinitionEdit = exports.AlertDefinitionAdd = exports.ALERT_READY = exports.ALERT_CLEAR_FLASHING_CELLS = exports.ALERT_DEFINITION_UNSUSPEND = exports.ALERT_DEFINITION_SUSPEND = exports.ALERT_DEFINITION_DELETE = exports.ALERT_DEFINITION_EDIT = exports.ALERT_DEFINITION_ADD = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
6
6
|
const AdaptableHelper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/AdaptableHelper"));
|
|
@@ -24,7 +24,7 @@ exports.ALERT_DEFINITION_SUSPEND = 'ALERT_DEFINITION_SUSPEND';
|
|
|
24
24
|
/**
|
|
25
25
|
* @ReduxAction Alert Definition is un-suspended, or activated
|
|
26
26
|
*/
|
|
27
|
-
exports.
|
|
27
|
+
exports.ALERT_DEFINITION_UNSUSPEND = 'ALERT_DEFINITION_UNSUSPEND';
|
|
28
28
|
exports.ALERT_CLEAR_FLASHING_CELLS = 'ALERT_CLEAR_FLASHING_CELLS';
|
|
29
29
|
/**
|
|
30
30
|
* @ReduxAction Alert Module is ready
|
|
@@ -47,7 +47,7 @@ exports.AlertDefinitionSuspend = (alertDefinition) => ({
|
|
|
47
47
|
alertDefinition,
|
|
48
48
|
});
|
|
49
49
|
exports.AlertDefinitionUnSuspend = (alertDefinition) => ({
|
|
50
|
-
type: exports.
|
|
50
|
+
type: exports.ALERT_DEFINITION_UNSUSPEND,
|
|
51
51
|
alertDefinition,
|
|
52
52
|
});
|
|
53
53
|
exports.AlertReady = (alertState) => ({
|
|
@@ -84,7 +84,7 @@ exports.AlertReducer = (state = initialState, action) => {
|
|
|
84
84
|
case exports.ALERT_DEFINITION_SUSPEND: {
|
|
85
85
|
return Object.assign(Object.assign({}, state), { AlertDefinitions: utils_1.changeIsSuspendInList(action.alertDefinition, state.AlertDefinitions, true) });
|
|
86
86
|
}
|
|
87
|
-
case exports.
|
|
87
|
+
case exports.ALERT_DEFINITION_UNSUSPEND: {
|
|
88
88
|
return Object.assign(Object.assign({}, state), { AlertDefinitions: utils_1.changeIsSuspendInList(action.alertDefinition, state.AlertDefinitions, false) });
|
|
89
89
|
}
|
|
90
90
|
case exports.ALERT_CLEAR_FLASHING_CELLS: {
|
|
@@ -23,7 +23,7 @@ export declare const CONDITIONAL_STYLE_SUSPEND = "CONDITIONAL_STYLE_SUSPEND";
|
|
|
23
23
|
/**
|
|
24
24
|
* @ReduxAction Conditional Style is un-suspended, or activated
|
|
25
25
|
*/
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const CONDITIONAL_STYLE_UNSUSPEND = "CONDITIONAL_STYLE_UNSUSPEND";
|
|
27
27
|
export interface ConditionalStyleAction extends Redux.Action {
|
|
28
28
|
conditionalStyle: ConditionalStyle;
|
|
29
29
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ConditionalStyleReducer = exports.ConditionalStyleUnSuspend = exports.ConditionalStyleSuspend = exports.ConditionalStyleReady = exports.ConditionalStyleDelete = exports.ConditionalStyleEdit = exports.ConditionalStyleAdd = exports.
|
|
3
|
+
exports.ConditionalStyleReducer = exports.ConditionalStyleUnSuspend = exports.ConditionalStyleSuspend = exports.ConditionalStyleReady = exports.ConditionalStyleDelete = exports.ConditionalStyleEdit = exports.ConditionalStyleAdd = exports.CONDITIONAL_STYLE_UNSUSPEND = exports.CONDITIONAL_STYLE_SUSPEND = exports.CONDITIONAL_STYLE_READY = exports.CONDITIONAL_STYLE_DELETE = exports.CONDITIONAL_STYLE_EDIT = exports.CONDITIONAL_STYLE_ADD = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
6
6
|
const AdaptableHelper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/AdaptableHelper"));
|
|
@@ -28,7 +28,7 @@ exports.CONDITIONAL_STYLE_SUSPEND = 'CONDITIONAL_STYLE_SUSPEND';
|
|
|
28
28
|
/**
|
|
29
29
|
* @ReduxAction Conditional Style is un-suspended, or activated
|
|
30
30
|
*/
|
|
31
|
-
exports.
|
|
31
|
+
exports.CONDITIONAL_STYLE_UNSUSPEND = 'CONDITIONAL_STYLE_UNSUSPEND';
|
|
32
32
|
exports.ConditionalStyleAdd = (conditionalStyle) => ({
|
|
33
33
|
type: exports.CONDITIONAL_STYLE_ADD,
|
|
34
34
|
conditionalStyle,
|
|
@@ -50,7 +50,7 @@ exports.ConditionalStyleSuspend = (conditionalStyle) => ({
|
|
|
50
50
|
conditionalStyle,
|
|
51
51
|
});
|
|
52
52
|
exports.ConditionalStyleUnSuspend = (conditionalStyle) => ({
|
|
53
|
-
type: exports.
|
|
53
|
+
type: exports.CONDITIONAL_STYLE_UNSUSPEND,
|
|
54
54
|
conditionalStyle,
|
|
55
55
|
});
|
|
56
56
|
const initialState = {
|
|
@@ -79,7 +79,7 @@ exports.ConditionalStyleReducer = (state = initialState, action) => {
|
|
|
79
79
|
case exports.CONDITIONAL_STYLE_SUSPEND: {
|
|
80
80
|
return Object.assign(Object.assign({}, state), { ConditionalStyles: utils_1.changeIsSuspendInList(action.conditionalStyle, state.ConditionalStyles, true) });
|
|
81
81
|
}
|
|
82
|
-
case exports.
|
|
82
|
+
case exports.CONDITIONAL_STYLE_UNSUSPEND: {
|
|
83
83
|
return Object.assign(Object.assign({}, state), { ConditionalStyles: utils_1.changeIsSuspendInList(action.conditionalStyle, state.ConditionalStyles, false) });
|
|
84
84
|
}
|
|
85
85
|
default:
|
|
@@ -19,7 +19,7 @@ export declare const CUSTOM_SORT_SUSPEND = "CUSTOM_SORT_SUSPEND";
|
|
|
19
19
|
/**
|
|
20
20
|
* @ReduxAction A Custom Sort has been un-suspended (activated)
|
|
21
21
|
*/
|
|
22
|
-
export declare const
|
|
22
|
+
export declare const CUSTOM_SORT_UNSUSPEND = "CUSTOM_SORT_UNSUSPEND";
|
|
23
23
|
/**
|
|
24
24
|
* @ReduxAction Custom Sort Module is ready
|
|
25
25
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CustomSortReducer = exports.CustomSortReady = exports.CustomSortUnSuspend = exports.CustomSortSuspend = exports.CustomSortDelete = exports.CustomSortEdit = exports.CustomSortAdd = exports.CUSTOM_SORT_READY = exports.
|
|
3
|
+
exports.CustomSortReducer = exports.CustomSortReady = exports.CustomSortUnSuspend = exports.CustomSortSuspend = exports.CustomSortDelete = exports.CustomSortEdit = exports.CustomSortAdd = exports.CUSTOM_SORT_READY = exports.CUSTOM_SORT_UNSUSPEND = exports.CUSTOM_SORT_SUSPEND = exports.CUSTOM_SORT_DELETE = exports.CUSTOM_SORT_EDIT = exports.CUSTOM_SORT_ADD = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
6
6
|
const AdaptableHelper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/AdaptableHelper"));
|
|
@@ -24,7 +24,7 @@ exports.CUSTOM_SORT_SUSPEND = 'CUSTOM_SORT_SUSPEND';
|
|
|
24
24
|
/**
|
|
25
25
|
* @ReduxAction A Custom Sort has been un-suspended (activated)
|
|
26
26
|
*/
|
|
27
|
-
exports.
|
|
27
|
+
exports.CUSTOM_SORT_UNSUSPEND = 'CUSTOM_SORT_UNSUSPEND';
|
|
28
28
|
/**
|
|
29
29
|
* @ReduxAction Custom Sort Module is ready
|
|
30
30
|
*/
|
|
@@ -46,7 +46,7 @@ exports.CustomSortSuspend = (customSort) => ({
|
|
|
46
46
|
customSort,
|
|
47
47
|
});
|
|
48
48
|
exports.CustomSortUnSuspend = (customSort) => ({
|
|
49
|
-
type: exports.
|
|
49
|
+
type: exports.CUSTOM_SORT_UNSUSPEND,
|
|
50
50
|
customSort,
|
|
51
51
|
});
|
|
52
52
|
exports.CustomSortReady = (customSortState) => ({
|
|
@@ -77,7 +77,7 @@ exports.CustomSortReducer = (state = initialState, action) => {
|
|
|
77
77
|
case exports.CUSTOM_SORT_SUSPEND: {
|
|
78
78
|
return Object.assign(Object.assign({}, state), { CustomSorts: utils_1.changeIsSuspendInList(action.customSort, state.CustomSorts, true) });
|
|
79
79
|
}
|
|
80
|
-
case exports.
|
|
80
|
+
case exports.CUSTOM_SORT_UNSUSPEND: {
|
|
81
81
|
return Object.assign(Object.assign({}, state), { CustomSorts: utils_1.changeIsSuspendInList(action.customSort, state.CustomSorts, false) });
|
|
82
82
|
}
|
|
83
83
|
default:
|
|
@@ -2,30 +2,30 @@ import { FlashingCellState } from '../../PredefinedConfig/FlashingCellState';
|
|
|
2
2
|
import * as Redux from 'redux';
|
|
3
3
|
import { FlashingCellDefinition } from '../../PredefinedConfig/FlashingCellState';
|
|
4
4
|
/**
|
|
5
|
-
* @ReduxAction A Flashing
|
|
5
|
+
* @ReduxAction A Flashing Cell Definition has been added
|
|
6
6
|
*/
|
|
7
|
-
export declare const
|
|
7
|
+
export declare const FLASHING_CELL_DEFINITION_ADD = "FLASHING_CELL_DEFINITION_ADD";
|
|
8
8
|
/**
|
|
9
|
-
* @ReduxAction A Flashing
|
|
9
|
+
* @ReduxAction A Flashing Cell Definition has been edited
|
|
10
10
|
*/
|
|
11
|
-
export declare const
|
|
11
|
+
export declare const FLASHING_CELL_DEFINITION_EDIT = "FLASHING_CELL_DEFINITION_EDIT";
|
|
12
12
|
/**
|
|
13
|
-
* @ReduxAction A Flashing
|
|
13
|
+
* @ReduxAction A Flashing Cell Definition has been deleted
|
|
14
14
|
*/
|
|
15
|
-
export declare const
|
|
15
|
+
export declare const FLASHING_CELL_DEFINITION_DELETE = "FLASHING_CELL_DEFINITION_DELETE";
|
|
16
16
|
/**
|
|
17
|
-
* @ReduxAction Flashing
|
|
17
|
+
* @ReduxAction Flashing Cell Definition Style is suspended
|
|
18
18
|
*/
|
|
19
|
-
export declare const
|
|
19
|
+
export declare const FLASHING_CELL_DEFINITION_SUSPEND = "FLASHING_CELL_DEFINITION_SUSPEND";
|
|
20
20
|
/**
|
|
21
|
-
* @ReduxAction Flashing
|
|
21
|
+
* @ReduxAction Flashing Cell Definition is un-suspended, or activated
|
|
22
22
|
*/
|
|
23
|
-
export declare const
|
|
23
|
+
export declare const FLASHING_CELL_DEFINITION_UNSUSPEND = "FLASHING_CELL_DEFINITION_UNSUSPEND";
|
|
24
24
|
/**
|
|
25
|
-
* @ReduxAction Flashing
|
|
25
|
+
* @ReduxAction Flashing Cell Module is ready
|
|
26
26
|
*/
|
|
27
27
|
export declare const FLASHING_CELL_READY = "FLASHING_CELL_READY";
|
|
28
|
-
export declare const
|
|
28
|
+
export declare const FLASHING_CELL_DEFINITION_SET = "FLASHING_CELL_DEFINITION_SET";
|
|
29
29
|
export interface FlashingCellDefinitionAction extends Redux.Action {
|
|
30
30
|
flashingCellDefinition: FlashingCellDefinition;
|
|
31
31
|
}
|