@adaptabletools/adaptable-cjs 22.0.0-canary.8 → 22.0.0-canary.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/agGrid.d.ts CHANGED
@@ -27,38 +27,38 @@ export declare const AdaptableColumnType: {
27
27
  /**
28
28
  * A column that is never displayed in the UI, but it's still available programmatically.
29
29
  */
30
- HiddenColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
30
+ HiddenColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
31
31
  /**
32
32
  * A column that is calculated based on other columns in the table.
33
33
  */
34
- CalculatedColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
34
+ CalculatedColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
35
35
  /**
36
36
  * A column that is NOT stored in the grid but in the state, allowing run-time users to "attach" custom data
37
37
  */
38
- FreeTextColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
38
+ FreeTextColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
39
39
  /**
40
40
  * A column that is used to display an action button or link.
41
41
  */
42
- ActionColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
42
+ ActionColumn: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
43
43
  /**
44
44
  * A column that is used to display FDC3 data/actions.
45
45
  */
46
- Fdc3Column: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
46
+ Fdc3Column: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
47
47
  /**
48
48
  * Any column that is used to display Pivot Totals: PivotGrandTotal, PivotGroupTotal or PivotAggregationTotal
49
49
  */
50
- PivotAnyTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
50
+ PivotAnyTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
51
51
  /**
52
52
  * A column that is used to display the Grand Total of ALL Pivot Columns.
53
53
  */
54
- PivotGrandTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
54
+ PivotGrandTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
55
55
  /**
56
56
  * A column that is used to display a single Total for EACH Pivot Column Group.
57
57
  */
58
- PivotColumnTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
58
+ PivotColumnTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
59
59
  /**
60
60
  * A column that is used to display the Totals of Pivot Aggregation Columns.
61
61
  */
62
- PivotAggregationTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnType;
62
+ PivotAggregationTotal: import("./src/AdaptableState/Common/AdaptableColumn").AdaptableColumnTypeName;
63
63
  };
64
64
  export { iconToString as getIconSVG, AdaptableReactPercentageEditor, AdaptableReactNumberEditor, AdaptableReactDateEditor, AdaptablePercentageEditor, AdaptableNumberEditor, AdaptableDateEditor, AdaptableWizardView, AdaptableUpgradeHelper, type UpgradeConfig, };
package/agGrid.js CHANGED
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
+ // TODO: remove this file in v23
2
3
  Object.defineProperty(exports, "__esModule", { value: true });
3
4
  exports.AdaptableUpgradeHelper = exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptablePercentageEditor = exports.AdaptableReactDateEditor = exports.AdaptableReactNumberEditor = exports.AdaptableReactPercentageEditor = exports.getIconSVG = exports.AdaptableColumnType = exports.AdaptableQL = exports._AdaptableLogger = exports.AdaptableNoCodeWizard = exports._AdaptableAgGrid = void 0;
4
5
  const tslib_1 = require("tslib");
package/index.d.ts ADDED
@@ -0,0 +1,66 @@
1
+ import Adaptable, { AdaptableWizardView } from './src/agGrid';
2
+ import { AdaptableAgGrid } from './src/agGrid/AdaptableAgGrid';
3
+ import { AdaptableNumberEditor, AdaptableReactNumberEditor } from './src/agGrid/editors/AdaptableNumberEditor';
4
+ import { AdaptablePercentageEditor, AdaptableReactPercentageEditor } from './src/agGrid/editors/AdaptablePercentageEditor';
5
+ import { AdaptableDateEditor, AdaptableReactDateEditor } from './src/agGrid/editors/AdaptableDateEditor';
6
+ import { getAbstractSyntaxTree } from './src/parser/src';
7
+ import { getTokens } from './src/parser/src/tokenizer';
8
+ import { AdaptableUpgradeHelper, type UpgradeConfig } from './src/migration/AdaptableUpgradeHelper';
9
+ import { iconToString } from './src/components/icons';
10
+ export * from './src/types';
11
+ export default Adaptable;
12
+ export { Adaptable };
13
+ export declare const _AdaptableAgGrid: typeof AdaptableAgGrid;
14
+ export declare const AdaptableNoCodeWizard: typeof import("./src/agGrid/Adaptable").AdaptableNoCodeWizard;
15
+ export declare const _AdaptableLogger: typeof import("./src/types").AdaptableLogger;
16
+ export declare const AdaptableQL: {
17
+ BooleanFunctions: import("./src/types").BooleanFunctionName[];
18
+ ScalarFunctions: import("./src/types").ScalarFunctionName[];
19
+ ObservableFunctions: import("./src/types").ObservableFunctionName[];
20
+ AggregatedBooleanFunctions: import("./src/types").AggregatedBooleanFunctionName[];
21
+ AggregatedScalarFunctions: import("./src/types").AggregatedScalarFunctionName[];
22
+ getAbstractSyntaxTree: typeof getAbstractSyntaxTree;
23
+ getTokens: typeof getTokens;
24
+ };
25
+ /**
26
+ * AdapTable Column Types
27
+ */
28
+ export declare const AdaptableColumnType: {
29
+ /**
30
+ * A column that is never displayed in the UI, but it's still available programmatically.
31
+ */
32
+ HiddenColumn: import("./src/types").AdaptableColumnTypeName;
33
+ /**
34
+ * A column that is calculated based on other columns in the table.
35
+ */
36
+ CalculatedColumn: import("./src/types").AdaptableColumnTypeName;
37
+ /**
38
+ * A column that is NOT stored in the grid but in the state, allowing run-time users to "attach" custom data
39
+ */
40
+ FreeTextColumn: import("./src/types").AdaptableColumnTypeName;
41
+ /**
42
+ * A column that is used to display an action button or link.
43
+ */
44
+ ActionColumn: import("./src/types").AdaptableColumnTypeName;
45
+ /**
46
+ * A column that is used to display FDC3 data/actions.
47
+ */
48
+ Fdc3Column: import("./src/types").AdaptableColumnTypeName;
49
+ /**
50
+ * Any column that is used to display Pivot Totals: PivotGrandTotal, PivotGroupTotal or PivotAggregationTotal
51
+ */
52
+ PivotAnyTotal: import("./src/types").AdaptableColumnTypeName;
53
+ /**
54
+ * A column that is used to display the Grand Total of ALL Pivot Columns.
55
+ */
56
+ PivotGrandTotal: import("./src/types").AdaptableColumnTypeName;
57
+ /**
58
+ * A column that is used to display a single Total for EACH Pivot Column Group.
59
+ */
60
+ PivotColumnTotal: import("./src/types").AdaptableColumnTypeName;
61
+ /**
62
+ * A column that is used to display the Totals of Pivot Aggregation Columns.
63
+ */
64
+ PivotAggregationTotal: import("./src/types").AdaptableColumnTypeName;
65
+ };
66
+ export { iconToString as getIconSVG, AdaptableReactPercentageEditor, AdaptableReactNumberEditor, AdaptableReactDateEditor, AdaptablePercentageEditor, AdaptableNumberEditor, AdaptableDateEditor, AdaptableWizardView, AdaptableUpgradeHelper, type UpgradeConfig, };
package/index.js ADDED
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AdaptableUpgradeHelper = exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptablePercentageEditor = exports.AdaptableReactDateEditor = exports.AdaptableReactNumberEditor = exports.AdaptableReactPercentageEditor = exports.getIconSVG = exports.AdaptableColumnType = exports.AdaptableQL = exports._AdaptableLogger = exports.AdaptableNoCodeWizard = exports._AdaptableAgGrid = exports.Adaptable = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const agGrid_1 = tslib_1.__importStar(require("./src/agGrid"));
6
+ exports.Adaptable = agGrid_1.default;
7
+ Object.defineProperty(exports, "AdaptableWizardView", { enumerable: true, get: function () { return agGrid_1.AdaptableWizardView; } });
8
+ const AdaptableAgGrid_1 = require("./src/agGrid/AdaptableAgGrid");
9
+ const booleanExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/booleanExpressionFunctions");
10
+ const scalarExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/scalarExpressionFunctions");
11
+ const observableExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/observableExpressionFunctions");
12
+ const aggregatedBooleanExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions");
13
+ const aggregatedScalarExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions");
14
+ const AdaptableNumberEditor_1 = require("./src/agGrid/editors/AdaptableNumberEditor");
15
+ Object.defineProperty(exports, "AdaptableNumberEditor", { enumerable: true, get: function () { return AdaptableNumberEditor_1.AdaptableNumberEditor; } });
16
+ Object.defineProperty(exports, "AdaptableReactNumberEditor", { enumerable: true, get: function () { return AdaptableNumberEditor_1.AdaptableReactNumberEditor; } });
17
+ const AdaptablePercentageEditor_1 = require("./src/agGrid/editors/AdaptablePercentageEditor");
18
+ Object.defineProperty(exports, "AdaptablePercentageEditor", { enumerable: true, get: function () { return AdaptablePercentageEditor_1.AdaptablePercentageEditor; } });
19
+ Object.defineProperty(exports, "AdaptableReactPercentageEditor", { enumerable: true, get: function () { return AdaptablePercentageEditor_1.AdaptableReactPercentageEditor; } });
20
+ const AdaptableDateEditor_1 = require("./src/agGrid/editors/AdaptableDateEditor");
21
+ Object.defineProperty(exports, "AdaptableDateEditor", { enumerable: true, get: function () { return AdaptableDateEditor_1.AdaptableDateEditor; } });
22
+ Object.defineProperty(exports, "AdaptableReactDateEditor", { enumerable: true, get: function () { return AdaptableDateEditor_1.AdaptableReactDateEditor; } });
23
+ const src_1 = require("./src/parser/src");
24
+ const tokenizer_1 = require("./src/parser/src/tokenizer");
25
+ const AdaptableUpgradeHelper_1 = require("./src/migration/AdaptableUpgradeHelper");
26
+ Object.defineProperty(exports, "AdaptableUpgradeHelper", { enumerable: true, get: function () { return AdaptableUpgradeHelper_1.AdaptableUpgradeHelper; } });
27
+ const AdaptableColumn_1 = require("./src/AdaptableState/Common/AdaptableColumn");
28
+ const icons_1 = require("./src/components/icons");
29
+ Object.defineProperty(exports, "getIconSVG", { enumerable: true, get: function () { return icons_1.iconToString; } });
30
+ tslib_1.__exportStar(require("./src/types"), exports);
31
+ // TODO remove default export in v23
32
+ exports.default = agGrid_1.default;
33
+ exports._AdaptableAgGrid = AdaptableAgGrid_1.AdaptableAgGrid;
34
+ exports.AdaptableNoCodeWizard = agGrid_1.AdaptableNoCodeWizard;
35
+ exports._AdaptableLogger = agGrid_1.AdaptableLogger;
36
+ exports.AdaptableQL = {
37
+ BooleanFunctions: booleanExpressionFunctions_1.booleanExpressionFunctionsNames,
38
+ ScalarFunctions: scalarExpressionFunctions_1.scalarExpressionFunctionNames,
39
+ ObservableFunctions: observableExpressionFunctions_1.observableExpressionFunctionNames,
40
+ AggregatedBooleanFunctions: aggregatedBooleanExpressionFunctions_1.aggregatedBooleanExpressionFunctionNames,
41
+ AggregatedScalarFunctions: aggregatedScalarExpressionFunctions_1.aggregatedScalarExpressionFunctionNames,
42
+ getAbstractSyntaxTree: src_1.getAbstractSyntaxTree,
43
+ getTokens: tokenizer_1.getTokens,
44
+ };
45
+ /**
46
+ * AdapTable Column Types
47
+ */
48
+ exports.AdaptableColumnType = {
49
+ /**
50
+ * A column that is never displayed in the UI, but it's still available programmatically.
51
+ */
52
+ HiddenColumn: AdaptableColumn_1.HIDDEN_COLUMN_TYPE,
53
+ /**
54
+ * A column that is calculated based on other columns in the table.
55
+ */
56
+ CalculatedColumn: AdaptableColumn_1.CALCULATED_COLUMN_TYPE,
57
+ /**
58
+ * A column that is NOT stored in the grid but in the state, allowing run-time users to "attach" custom data
59
+ */
60
+ FreeTextColumn: AdaptableColumn_1.FREE_TEXT_COLUMN_TYPE,
61
+ /**
62
+ * A column that is used to display an action button or link.
63
+ */
64
+ ActionColumn: AdaptableColumn_1.ACTION_COLUMN_TYPE,
65
+ /**
66
+ * A column that is used to display FDC3 data/actions.
67
+ */
68
+ Fdc3Column: AdaptableColumn_1.FDC3_COLUMN_TYPE,
69
+ /**
70
+ * Any column that is used to display Pivot Totals: PivotGrandTotal, PivotGroupTotal or PivotAggregationTotal
71
+ */
72
+ PivotAnyTotal: AdaptableColumn_1.PIVOT_ANY_TOTAL_COLUMN_TYPE,
73
+ /**
74
+ * A column that is used to display the Grand Total of ALL Pivot Columns.
75
+ */
76
+ PivotGrandTotal: AdaptableColumn_1.PIVOT_GRAND_TOTAL_COLUMN_TYPE,
77
+ /**
78
+ * A column that is used to display a single Total for EACH Pivot Column Group.
79
+ */
80
+ PivotColumnTotal: AdaptableColumn_1.PIVOT_COLUMN_TOTAL_COLUMN_TYPE,
81
+ /**
82
+ * A column that is used to display the Totals of Pivot Aggregation Columns.
83
+ */
84
+ PivotAggregationTotal: AdaptableColumn_1.PIVOT_AGGREGATION_TOTAL_COLUMN_TYPE,
85
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-cjs",
3
- "version": "22.0.0-canary.8",
3
+ "version": "22.0.0-canary.9",
4
4
  "description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
5
5
  "keywords": [
6
6
  "web-components",
@@ -35,8 +35,8 @@
35
35
  "email": "jonny.wolfson@adaptabletools.com"
36
36
  }
37
37
  ],
38
- "main": "agGrid.js",
39
- "typings": "types.d.ts",
38
+ "main": "index.js",
39
+ "typings": "index.d.ts",
40
40
  "dependencies": {
41
41
  "@adaptabletools/react-beautiful-dnd": "14.0.8",
42
42
  "@finos/fdc3": "2.1.0",
@@ -1,5 +1,5 @@
1
1
  import { Column } from 'ag-grid-enterprise';
2
- import { AdaptableColumnGroup, AdaptableColumnType, BaseContext, Layout } from '../types';
2
+ import { AdaptableColumnGroup, AdaptableColumnTypeName, BaseContext, Layout } from '../types';
3
3
  import { TypeHint } from '../AdaptableState/Common/Types';
4
4
  /**
5
5
  * Options related to managing Columns in Adaptable.
@@ -18,7 +18,7 @@ export interface ColumnOptions {
18
18
  * Optional list of Column Types - used for Scope and creating Special Columns
19
19
  * @defaultValue Empty Array
20
20
  */
21
- columnTypes?: TypeHint<string, AdaptableColumnType>[] | ((context: ColumnTypesContext) => TypeHint<string, AdaptableColumnType>[]);
21
+ columnTypes?: TypeHint<string, AdaptableColumnTypeName>[] | ((context: ColumnTypesContext) => TypeHint<string, AdaptableColumnTypeName>[]);
22
22
  /**
23
23
  * Log warning to console if AdapTable cannot find a column
24
24
  *
@@ -9,17 +9,17 @@ export type AdaptableColumnDataType = 'text' | 'number' | 'boolean' | 'date' | '
9
9
  /**
10
10
  * Column Types recognised by AdapTable; to be set in GridOptions
11
11
  */
12
- export type AdaptableColumnType = 'hiddenColumn' | 'calculatedColumn' | 'freeTextColumn' | 'actionColumn' | 'fdc3Column' | 'pivotAnyTotal' | 'pivotGrandTotal' | 'pivotColumnTotal' | 'pivotAggregationTotal';
13
- export declare const HIDDEN_COLUMN_TYPE: AdaptableColumnType;
12
+ export type AdaptableColumnTypeName = 'hiddenColumn' | 'calculatedColumn' | 'freeTextColumn' | 'actionColumn' | 'fdc3Column' | 'pivotAnyTotal' | 'pivotGrandTotal' | 'pivotColumnTotal' | 'pivotAggregationTotal';
13
+ export declare const HIDDEN_COLUMN_TYPE: AdaptableColumnTypeName;
14
14
  export declare const hiddenColDefConfig: ColDef;
15
- export declare const CALCULATED_COLUMN_TYPE: AdaptableColumnType;
16
- export declare const FREE_TEXT_COLUMN_TYPE: AdaptableColumnType;
17
- export declare const ACTION_COLUMN_TYPE: AdaptableColumnType;
18
- export declare const FDC3_COLUMN_TYPE: AdaptableColumnType;
19
- export declare const PIVOT_ANY_TOTAL_COLUMN_TYPE: AdaptableColumnType;
20
- export declare const PIVOT_GRAND_TOTAL_COLUMN_TYPE: AdaptableColumnType;
21
- export declare const PIVOT_COLUMN_TOTAL_COLUMN_TYPE: AdaptableColumnType;
22
- export declare const PIVOT_AGGREGATION_TOTAL_COLUMN_TYPE: AdaptableColumnType;
15
+ export declare const CALCULATED_COLUMN_TYPE: AdaptableColumnTypeName;
16
+ export declare const FREE_TEXT_COLUMN_TYPE: AdaptableColumnTypeName;
17
+ export declare const ACTION_COLUMN_TYPE: AdaptableColumnTypeName;
18
+ export declare const FDC3_COLUMN_TYPE: AdaptableColumnTypeName;
19
+ export declare const PIVOT_ANY_TOTAL_COLUMN_TYPE: AdaptableColumnTypeName;
20
+ export declare const PIVOT_GRAND_TOTAL_COLUMN_TYPE: AdaptableColumnTypeName;
21
+ export declare const PIVOT_COLUMN_TOTAL_COLUMN_TYPE: AdaptableColumnTypeName;
22
+ export declare const PIVOT_AGGREGATION_TOTAL_COLUMN_TYPE: AdaptableColumnTypeName;
23
23
  export declare function getColumnTypeFriendlyName(columnType: string): string;
24
24
  /**
25
25
  * Base class for AdapTable Column containing most important properties
@@ -83,7 +83,7 @@ export declare class ColumnApiImpl extends ApiBase implements ColumnApi {
83
83
  getPrimaryKeyColumn(): AdaptableColumn<any>;
84
84
  getDefaultAggFunc(columnId: string): string;
85
85
  openColumnInfoSettingsPanel(): void;
86
- getColumnTypes(): import("../../AdaptableState/Common/Types").TypeHint<string, import("../../types").AdaptableColumnType>[];
86
+ getColumnTypes(): import("../../AdaptableState/Common/Types").TypeHint<string, import("../../types").AdaptableColumnTypeName>[];
87
87
  getColumnsByColumnType(columnType: string): AdaptableColumn[];
88
88
  getRowGroupedColumns(): AdaptableColumn[];
89
89
  setColumnCaption(columnId: string, caption: string): void;
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
5
- PUBLISH_TIMESTAMP: 1770905067216 || Date.now(),
6
- VERSION: "22.0.0-canary.8" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1770908616549 || Date.now(),
6
+ VERSION: "22.0.0-canary.9" || '--current-version--',
7
7
  };
package/src/types.d.ts CHANGED
@@ -150,7 +150,7 @@ export type { CellSummmaryInfo, CustomCellSummaryOperation, CustomCellSummaryOpe
150
150
  export type { FlashingCellDefinition, FlashingCellState, SystemFlashingCellPredicateId, SystemFlashingCellPredicateIds, } from './AdaptableState/FlashingCellState';
151
151
  export type { AdaptableAlert, AdaptableAlertType, AdaptableGenericAlert, AdaptableCellChangedAlert, AdaptableRowChangedAlert, AdaptableAlertBase, } from './AdaptableState/Common/AdaptableAlert';
152
152
  export type { AdaptableFlashingCell } from './AdaptableState/Common/AdaptableFlashingCell';
153
- export type { AdaptableColumn, AdaptableColumnBase, AdaptableColumnType, AdaptableColumnDataType, AdaptableColumnGroup, AdaptableColumnSummary, } from './AdaptableState/Common/AdaptableColumn';
153
+ export type { AdaptableColumn, AdaptableColumnBase, AdaptableColumnTypeName, AdaptableColumnDataType, AdaptableColumnGroup, AdaptableColumnSummary, } from './AdaptableState/Common/AdaptableColumn';
154
154
  export type { AdaptableField } from './AdaptableState/Common/AdaptableField';
155
155
  export type { AdaptableComparerFunction } from './AdaptableState/Common/AdaptableComparerFunction';
156
156
  export type { SystemStatusMessageInfo } from './AdaptableState/Common/SystemStatusMessageInfo';
@@ -177,7 +177,7 @@ export type { AdaptableFormData, AdaptableForm, AdaptableFormField, AdaptableFor
177
177
  export type { AdaptableButton } from './AdaptableState/Common/AdaptableButton';
178
178
  export type { AdaptableMenuItem, UserMenuItem, ColumnMenuContext, ContextMenuContext, AdaptableContextMenuItem, AdaptableColumnMenuItem, AdaptableColumnMenuItemName, AdaptableContextMenuItemName, AgGridMenuItem, MenuCategory, MenuSeparator, } from './AdaptableState/Common/Menu';
179
179
  export type { BaseContext } from './AdaptableState/Common/BaseContext';
180
- export type { AdaptableColumnContext, AdaptableColumnsContext } from './AdaptableState/Common/AdaptableColumnContext';
180
+ export type { AdaptableColumnContext, AdaptableColumnsContext, } from './AdaptableState/Common/AdaptableColumnContext';
181
181
  export type { AdaptableRowContext } from './AdaptableState/Common/AdaptableRowContext';
182
182
  export type { FormContext } from './AdaptableState/Common/FormContext';
183
183
  export type { Schedule } from './AdaptableState/Common/Schedule';