@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.
Files changed (164) hide show
  1. package/README.md +4 -4
  2. package/agGrid.d.ts +5 -4
  3. package/agGrid.js +7 -5
  4. package/base.css +3 -4
  5. package/bundle.cjs.js +120 -115
  6. package/index.css +3 -4
  7. package/package.json +1 -1
  8. package/publishTimestamp.d.ts +1 -1
  9. package/publishTimestamp.js +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -1
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -5
  12. package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -2
  13. package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
  14. package/src/AdaptableOptions/FilterOptions.d.ts +4 -0
  15. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  16. package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
  17. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +7 -6
  18. package/src/AdaptableOptions/StateOptions.d.ts +7 -7
  19. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  20. package/src/Api/CalculatedColumnApi.d.ts +2 -9
  21. package/src/Api/GridApi.d.ts +12 -3
  22. package/src/Api/Implementation/AlertApiImpl.js +1 -2
  23. package/src/Api/Implementation/ApiBase.d.ts +3 -2
  24. package/src/Api/Implementation/ApiBase.js +5 -2
  25. package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
  26. package/src/Api/Implementation/ColumnApiImpl.js +1 -1
  27. package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
  28. package/src/Api/Implementation/GridApiImpl.js +41 -21
  29. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
  30. package/src/Api/Implementation/InternalApiImpl.js +5 -4
  31. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +3 -0
  32. package/src/Api/Implementation/QueryLanguageApiImpl.js +15 -2
  33. package/src/Api/Implementation/SettingsPanelApiImpl.js +1 -1
  34. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  35. package/src/Api/InternalApi.d.ts +2 -3
  36. package/src/Api/QueryApi.d.ts +2 -2
  37. package/src/Api/QueryLanguageApi.d.ts +13 -0
  38. package/src/Api/SettingsPanelApi.d.ts +4 -5
  39. package/src/PredefinedConfig/AlertState.d.ts +5 -1
  40. package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
  41. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
  42. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
  43. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +0 -1
  44. package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -5
  45. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  46. package/src/PredefinedConfig/Common/Types.d.ts +6 -1
  47. package/src/PredefinedConfig/Common/Types.js +1 -0
  48. package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
  49. package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
  50. package/src/PredefinedConfig/PlusMinusState.d.ts +1 -1
  51. package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
  52. package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
  53. package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
  54. package/src/Redux/ActionsReducers/AlertRedux.js +4 -4
  55. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
  56. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +4 -4
  57. package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
  58. package/src/Redux/ActionsReducers/CustomSortRedux.js +4 -4
  59. package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +12 -12
  60. package/src/Redux/ActionsReducers/FlashingCellRedux.js +33 -29
  61. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
  62. package/src/Redux/ActionsReducers/FormatColumnRedux.js +4 -4
  63. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
  64. package/src/Redux/ActionsReducers/PlusMinusRedux.js +4 -4
  65. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
  66. package/src/Redux/ActionsReducers/ScheduleRedux.js +16 -16
  67. package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
  68. package/src/Redux/ActionsReducers/ShortcutRedux.js +4 -4
  69. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  70. package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
  71. package/src/Redux/Store/AdaptableStore.js +47 -22
  72. package/src/Strategy/AlertModule.js +4 -4
  73. package/src/Strategy/CalculatedColumnModule.js +4 -4
  74. package/src/Strategy/ChartingModule.d.ts +3 -3
  75. package/src/Strategy/ChartingModule.js +2 -2
  76. package/src/Strategy/FlashingCellModule.js +4 -4
  77. package/src/Strategy/FreeTextColumnModule.js +1 -0
  78. package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
  79. package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
  80. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
  81. package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
  82. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  83. package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
  84. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +3 -2
  85. package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -10
  86. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +18 -13
  87. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +1 -1
  88. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +18 -1
  89. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +311 -14
  90. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  91. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
  92. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +2 -3
  93. package/src/Utilities/ExpressionFunctions/groupingMap.js +3 -2
  94. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  95. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
  96. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
  97. package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
  98. package/src/Utilities/Services/AlertService.js +5 -1
  99. package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
  100. package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
  101. package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
  102. package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
  103. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +7 -1
  104. package/src/Utilities/Services/LicenseService.js +1 -1
  105. package/src/Utilities/Services/ModuleService.js +33 -40
  106. package/src/Utilities/Services/QueryLanguageService.d.ts +9 -2
  107. package/src/Utilities/Services/QueryLanguageService.js +81 -22
  108. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
  109. package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
  110. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
  111. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  112. package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
  113. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
  114. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
  115. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
  116. package/src/View/ColorPicker.d.ts +1 -1
  117. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  118. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  119. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  120. package/src/View/Components/EntityRulesEditor/index.d.ts +1 -1
  121. package/src/View/Components/EntityRulesEditor/index.js +3 -4
  122. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  123. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  124. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
  125. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
  126. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
  127. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  128. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  129. package/src/View/Components/ValueSelector/index.js +1 -1
  130. package/src/View/Dashboard/DashboardPopup.js +1 -1
  131. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
  132. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  133. package/src/View/License/LicenseWatermark.js +1 -1
  134. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  135. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
  136. package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
  137. package/src/agGrid/Adaptable.d.ts +4 -1
  138. package/src/agGrid/Adaptable.js +71 -48
  139. package/src/agGrid/CheckboxRenderer.d.ts +8 -1
  140. package/src/agGrid/CheckboxRenderer.js +18 -3
  141. package/src/agGrid/agGridHelper.d.ts +1 -1
  142. package/src/agGrid/agGridHelper.js +9 -10
  143. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
  144. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
  145. package/src/components/Datepicker/index.d.ts +1 -1
  146. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  147. package/src/components/ExpressionEditor/EditorInput.js +5 -2
  148. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
  149. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
  150. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
  151. package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
  152. package/src/components/ExpressionEditor/index.d.ts +2 -1
  153. package/src/components/ExpressionEditor/index.js +9 -2
  154. package/src/components/Input/index.d.ts +1 -1
  155. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  156. package/src/components/Logo/index.js +8 -7
  157. package/src/components/PopupWithFooter.d.ts +1 -1
  158. package/src/components/Textarea/index.d.ts +1 -1
  159. package/src/components/icons/calculated-column.js +2 -1
  160. package/src/metamodel/adaptable.metamodel.d.ts +235 -41
  161. package/src/metamodel/adaptable.metamodel.js +435 -149
  162. package/src/types.d.ts +5 -5
  163. package/version.d.ts +1 -1
  164. 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.getQueryLanguageOptions().queryableColumns;
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.getQueryLanguageOptions().moduleExpressionFunctions;
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('CustomSettingsPanelModule', name));
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().customToolPanelButtons) !== null && _a !== void 0 ? _a : [];
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);
@@ -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
- isServerSearchOptionSet(serverSearchOption: ServerSearchOption): boolean;
96
+ runModuleInAdaptableQL(adaptableQLModule: AdaptableQLModule): boolean;
98
97
  buildStandaloneColumnHeader(column: AdaptableColumn): AdaptableMenuItem[];
99
98
  getCustomSortComparer(column: AdaptableColumn): ColumnValuesComparer | undefined;
100
99
  clearFlashingCellState(): void;
@@ -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
- * Retuns the Current Query
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 settings panel to specified module,
8
- * when not specified it opens the first available module
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 a the settings panel to the custom module
14
- * @param name name of the custom settings panel
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
- }, XOR<AdaptableBooleanQuery, XOR<AdaptableObservableQuery, AdaptableAggregatedBooleanQuery>>>;
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 Expression used by AdapTableQL to evaluate Column's value
32
+ * Scalar/AggregatedScalar Query used by AdapTableQL to evaluate Column's value
32
33
  */
33
- Query?: AdaptableScalarQuery;
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
  /**
@@ -61,6 +61,9 @@ export interface DateFormatterOptions {
61
61
  */
62
62
  Pattern?: string;
63
63
  }
64
+ /**
65
+ * Formatter Options for String Columns
66
+ */
64
67
  export interface StringFormatterOptions {
65
68
  /**
66
69
  * Sets text to Upper or Lower case
@@ -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 = exports.getAdaptableQueryExpression = void 0;
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
  };
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Base Settings for SpecialColumns
2
+ * Base Settings for Calculated Columns and FreeText Columns
3
3
  */
4
4
  export interface SpecialColumnSettings {
5
5
  /**
@@ -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
- 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' | 'CustomSettingsPanelModule';
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';
@@ -41,3 +41,4 @@ exports.ALL_TOOL_PANELS = [
41
41
  'SystemStatus',
42
42
  'Theme',
43
43
  ];
44
+ // | 'QuickSearch'
@@ -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 Adaptable
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 Query to determine whether to apply the Nudge
27
+ * (Optional) Boolean Expression to determine whether to apply the Nudge
28
28
  */
29
29
  Rule?: AdaptableBooleanQuery;
30
30
  }
@@ -1,5 +1,7 @@
1
1
  export interface GridCellRange {
2
2
  columnIds: string[];
3
- primaryKeyValueStart: any;
3
+ primaryKeyValueStart?: any;
4
4
  primaryKeyValueEnd?: any;
5
+ rowIndexStart?: any;
6
+ rowIndexEnd?: any;
5
7
  }
@@ -29,4 +29,7 @@ export interface AdaptableToolPanelDefinition {
29
29
  */
30
30
  VisibilityMode?: 'expanded' | 'collapsed';
31
31
  }
32
+ /**
33
+ * Whether a ToolPanel displays as expanded or collapsed
34
+ */
32
35
  export declare type ToolPanelVisibilityMode = 'expanded' | 'collapsed';
@@ -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 ALERT_DEFINITION_UN_SUSPEND = "ALERT_DEFINITION_UN_SUSPEND";
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.ALERT_DEFINITION_UN_SUSPEND = exports.ALERT_DEFINITION_SUSPEND = exports.ALERT_DEFINITION_DELETE = exports.ALERT_DEFINITION_EDIT = exports.ALERT_DEFINITION_ADD = void 0;
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.ALERT_DEFINITION_UN_SUSPEND = 'ALERT_DEFINITION_UN_SUSPEND';
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.ALERT_DEFINITION_UN_SUSPEND,
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.ALERT_DEFINITION_UN_SUSPEND: {
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 CONDITIONAL_STYLE_UN_SUSPEND = "CONDITIONAL_STYLE_UN_SUSPEND";
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.CONDITIONAL_STYLE_UN_SUSPEND = exports.CONDITIONAL_STYLE_SUSPEND = exports.CONDITIONAL_STYLE_READY = exports.CONDITIONAL_STYLE_DELETE = exports.CONDITIONAL_STYLE_EDIT = exports.CONDITIONAL_STYLE_ADD = void 0;
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.CONDITIONAL_STYLE_UN_SUSPEND = 'CONDITIONAL_STYLE_UN_SUSPEND';
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.CONDITIONAL_STYLE_UN_SUSPEND,
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.CONDITIONAL_STYLE_UN_SUSPEND: {
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 CUSTOM_SORT_UN_SUSPEND = "CUSTOM_SORT_UN_SUSPEND";
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.CUSTOM_SORT_UN_SUSPEND = exports.CUSTOM_SORT_SUSPEND = exports.CUSTOM_SORT_DELETE = exports.CUSTOM_SORT_EDIT = exports.CUSTOM_SORT_ADD = void 0;
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.CUSTOM_SORT_UN_SUSPEND = 'CUSTOM_SORT_UN_SUSPEND';
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.CUSTOM_SORT_UN_SUSPEND,
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.CUSTOM_SORT_UN_SUSPEND: {
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 Alert Definition has been added
5
+ * @ReduxAction A Flashing Cell Definition has been added
6
6
  */
7
- export declare const FLASHING_ALERT_DEFINITION_ADD = "FLASHING_ALERT_DEFINITION_ADD";
7
+ export declare const FLASHING_CELL_DEFINITION_ADD = "FLASHING_CELL_DEFINITION_ADD";
8
8
  /**
9
- * @ReduxAction A Flashing Alert Definition has been edited
9
+ * @ReduxAction A Flashing Cell Definition has been edited
10
10
  */
11
- export declare const FLASHING_ALERT_DEFINITION_EDIT = "FLASHING_ALERT_DEFINITION_EDIT";
11
+ export declare const FLASHING_CELL_DEFINITION_EDIT = "FLASHING_CELL_DEFINITION_EDIT";
12
12
  /**
13
- * @ReduxAction A Flashing Alert Definition has been deleted
13
+ * @ReduxAction A Flashing Cell Definition has been deleted
14
14
  */
15
- export declare const FLASHING_ALERT_DEFINITION_DELETE = "FLASHING_ALERT_DEFINITION_DELETE";
15
+ export declare const FLASHING_CELL_DEFINITION_DELETE = "FLASHING_CELL_DEFINITION_DELETE";
16
16
  /**
17
- * @ReduxAction Flashing Alert Definition Style is suspended
17
+ * @ReduxAction Flashing Cell Definition Style is suspended
18
18
  */
19
- export declare const FLASHING_ALERT_DEFINITION_SUSPEND = "FLASHING_ALERT_DEFINITION_SUSPEND";
19
+ export declare const FLASHING_CELL_DEFINITION_SUSPEND = "FLASHING_CELL_DEFINITION_SUSPEND";
20
20
  /**
21
- * @ReduxAction Flashing Alert Definition is un-suspended, or activated
21
+ * @ReduxAction Flashing Cell Definition is un-suspended, or activated
22
22
  */
23
- export declare const FLASHING_ALERT_DEFINITION_UN_SUSPEND = "FLASHING_ALERT_DEFINITION_UN_SUSPEND";
23
+ export declare const FLASHING_CELL_DEFINITION_UNSUSPEND = "FLASHING_CELL_DEFINITION_UNSUSPEND";
24
24
  /**
25
- * @ReduxAction Flashing cell Module is ready
25
+ * @ReduxAction Flashing Cell Module is ready
26
26
  */
27
27
  export declare const FLASHING_CELL_READY = "FLASHING_CELL_READY";
28
- export declare const FLASHING_ALERT_DEFINITION_SET = "FLASHING_ALERT_DEFINITION_SET";
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
  }