@adaptabletools/adaptable-cjs 18.1.12-canary.0 → 18.1.13
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/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +37 -37
- package/src/Api/Events/GridDataChanged.d.ts +2 -2
- package/src/Api/Implementation/GridApiImpl.js +2 -2
- package/src/Api/Implementation/LayoutApiImpl.js +10 -6
- package/src/PredefinedConfig/PredefinedConfig.d.ts +8 -8
- package/src/Strategy/AlertModule.js +1 -1
- package/src/View/Components/FilterForm/QuickFilterValues.js +4 -0
- package/src/agGrid/AdaptableAgGrid.js +27 -8
- package/src/agGrid/AgGridAdapter.d.ts +1 -0
- package/src/agGrid/AgGridAdapter.js +16 -7
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/tsconfig.cjs.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-cjs",
|
|
3
|
-
"version": "18.1.
|
|
3
|
+
"version": "18.1.13",
|
|
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",
|
|
@@ -94,11 +94,6 @@ export interface AdaptableOptions<TData = any> {
|
|
|
94
94
|
* Options for managing Action Rows
|
|
95
95
|
*/
|
|
96
96
|
actionRowOptions?: ActionRowOptions<TData>;
|
|
97
|
-
/**
|
|
98
|
-
* Options for managing AdapTableQL Expressions
|
|
99
|
-
* @noCodeContainer
|
|
100
|
-
*/
|
|
101
|
-
expressionOptions?: ExpressionOptions<TData>;
|
|
102
97
|
/**
|
|
103
98
|
* Options for managing Alerts in AdapTable
|
|
104
99
|
*
|
|
@@ -125,17 +120,33 @@ export interface AdaptableOptions<TData = any> {
|
|
|
125
120
|
*/
|
|
126
121
|
columnOptions?: ColumnOptions;
|
|
127
122
|
/**
|
|
128
|
-
* Options for
|
|
123
|
+
* Options for managing Column Filters in AdapTable
|
|
124
|
+
*
|
|
125
|
+
* @gridInfoContainer
|
|
126
|
+
* @noCodeContainer
|
|
127
|
+
*
|
|
129
128
|
*/
|
|
130
|
-
|
|
129
|
+
columnFilterOptions?: ColumnFilterOptions<TData>;
|
|
131
130
|
/**
|
|
132
|
-
* Options for managing
|
|
131
|
+
* Options for managing AdapTable Column Menu
|
|
132
|
+
*
|
|
133
|
+
* @gridInfoContainer
|
|
133
134
|
*/
|
|
134
|
-
|
|
135
|
+
columnMenuOptions?: ColumnMenuOptions<TData>;
|
|
135
136
|
/**
|
|
136
137
|
* Options for managing collaborative Comments
|
|
137
138
|
*/
|
|
138
139
|
commentOptions?: CommentOptions<TData>;
|
|
140
|
+
/**
|
|
141
|
+
* Options for setting the 'Div' elements in which AdapTable, AG Grid, popups are placed
|
|
142
|
+
*/
|
|
143
|
+
containerOptions?: ContainerOptions;
|
|
144
|
+
/**
|
|
145
|
+
* Options for managing AdapTable Context Menu
|
|
146
|
+
*
|
|
147
|
+
* @gridInfoContainer
|
|
148
|
+
*/
|
|
149
|
+
contextMenuOptions?: ContextMenuOptions<TData>;
|
|
139
150
|
/**
|
|
140
151
|
* Options for using Custom Sort
|
|
141
152
|
*/
|
|
@@ -154,6 +165,10 @@ export interface AdaptableOptions<TData = any> {
|
|
|
154
165
|
* @noCodeContainer
|
|
155
166
|
*/
|
|
156
167
|
dataChangeHistoryOptions?: DataChangeHistoryOptions<TData>;
|
|
168
|
+
/**
|
|
169
|
+
* Options for managing the Data Import function
|
|
170
|
+
*/
|
|
171
|
+
dataImportOptions?: DataImportOptions;
|
|
157
172
|
/**
|
|
158
173
|
* Options to manage Data Sets
|
|
159
174
|
*/
|
|
@@ -176,18 +191,25 @@ export interface AdaptableOptions<TData = any> {
|
|
|
176
191
|
* @gridInfoContainer
|
|
177
192
|
*/
|
|
178
193
|
exportOptions?: ExportOptions;
|
|
194
|
+
/**
|
|
195
|
+
* Options for managing AdapTableQL Expressions
|
|
196
|
+
* @noCodeContainer
|
|
197
|
+
*/
|
|
198
|
+
expressionOptions?: ExpressionOptions<TData>;
|
|
179
199
|
/**
|
|
180
200
|
* Options for managing FDC3 in AdapTable
|
|
181
201
|
*/
|
|
182
202
|
fdc3Options?: Fdc3Options;
|
|
183
203
|
/**
|
|
184
|
-
* Options for managing
|
|
204
|
+
* Options for managing Flashing Cells - primarily default values
|
|
185
205
|
*
|
|
186
206
|
* @gridInfoContainer
|
|
187
|
-
* @noCodeContainer
|
|
188
|
-
*
|
|
189
207
|
*/
|
|
190
|
-
|
|
208
|
+
flashingCellOptions?: FlashingCellOptions;
|
|
209
|
+
/**
|
|
210
|
+
* Options for providing Custom Display Formats
|
|
211
|
+
*/
|
|
212
|
+
formatColumnOptions?: FormatColumnOptions;
|
|
191
213
|
/**
|
|
192
214
|
* Options for managing the Grid Filter in AdapTable
|
|
193
215
|
*
|
|
@@ -196,16 +218,6 @@ export interface AdaptableOptions<TData = any> {
|
|
|
196
218
|
*
|
|
197
219
|
*/
|
|
198
220
|
gridFilterOptions?: GridFilterOptions<TData>;
|
|
199
|
-
/**
|
|
200
|
-
* Options for managing Flashing Cells - primarily default values
|
|
201
|
-
*
|
|
202
|
-
* @gridInfoContainer
|
|
203
|
-
*/
|
|
204
|
-
flashingCellOptions?: FlashingCellOptions;
|
|
205
|
-
/**
|
|
206
|
-
* Options for providing Custom Display Formats
|
|
207
|
-
*/
|
|
208
|
-
formatColumnOptions?: FormatColumnOptions;
|
|
209
221
|
/**
|
|
210
222
|
* Options related to Row Grouping
|
|
211
223
|
*
|
|
@@ -221,17 +233,9 @@ export interface AdaptableOptions<TData = any> {
|
|
|
221
233
|
*/
|
|
222
234
|
layoutOptions?: LayoutOptions;
|
|
223
235
|
/**
|
|
224
|
-
* Options for managing
|
|
225
|
-
*
|
|
226
|
-
* @gridInfoContainer
|
|
227
|
-
*/
|
|
228
|
-
columnMenuOptions?: ColumnMenuOptions<TData>;
|
|
229
|
-
/**
|
|
230
|
-
* Options for managing AdapTable Context Menu
|
|
231
|
-
*
|
|
232
|
-
* @gridInfoContainer
|
|
236
|
+
* Options for managing personal Notes
|
|
233
237
|
*/
|
|
234
|
-
|
|
238
|
+
noteOptions?: NoteOptions;
|
|
235
239
|
/**
|
|
236
240
|
* Options for managing Notifications in AdapTable
|
|
237
241
|
*
|
|
@@ -280,10 +284,6 @@ export interface AdaptableOptions<TData = any> {
|
|
|
280
284
|
* @gridInfoContainer
|
|
281
285
|
*/
|
|
282
286
|
userInterfaceOptions?: UserInterfaceOptions<TData>;
|
|
283
|
-
/**
|
|
284
|
-
* Options for managing the Data Import function
|
|
285
|
-
*/
|
|
286
|
-
dataImportOptions?: DataImportOptions;
|
|
287
287
|
/**
|
|
288
288
|
* Used for managing the AdapTable Plugins
|
|
289
289
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IRowNode } from '@ag-grid-community/core';
|
|
2
2
|
import { BaseEventInfo } from './BaseEventInfo';
|
|
3
|
-
export type GridDataChangeTrigger = 'Add' | '
|
|
3
|
+
export type GridDataChangeTrigger = 'Add' | 'Update' | 'Delete' | 'Load';
|
|
4
4
|
/**
|
|
5
5
|
* EventInfo returned by GridDataChanged event
|
|
6
6
|
*/ export interface GridDataChangedInfo<TData = any> extends BaseEventInfo {
|
|
@@ -13,7 +13,7 @@ export type GridDataChangeTrigger = 'Add' | 'Edit' | 'Delete' | 'Load';
|
|
|
13
13
|
*/
|
|
14
14
|
dataRows: TData[];
|
|
15
15
|
/**
|
|
16
|
-
* Trigger for row change: Load, Add,
|
|
16
|
+
* Trigger for row change: Load, Add, Update, or Delete
|
|
17
17
|
*/
|
|
18
18
|
rowTrigger: GridDataChangeTrigger;
|
|
19
19
|
/**
|
|
@@ -57,13 +57,13 @@ class GridApiImpl extends ApiBase_1.ApiBase {
|
|
|
57
57
|
}
|
|
58
58
|
async updateGridData(dataRows, dataUpdateConfig) {
|
|
59
59
|
const rowNodes = await this.adaptable.updateRows(dataRows, dataUpdateConfig);
|
|
60
|
-
this.internalApi.fireGridDataChangedEvent(dataRows, rowNodes, '
|
|
60
|
+
this.internalApi.fireGridDataChangedEvent(dataRows, rowNodes, 'Update');
|
|
61
61
|
return rowNodes;
|
|
62
62
|
}
|
|
63
63
|
async addOrUpdateGridData(dataRows, dataUpdateConfig) {
|
|
64
64
|
const { added, updated } = await this.adaptable.addOrUpdateRows(dataRows, dataUpdateConfig);
|
|
65
65
|
if (ArrayExtensions_1.default.IsNotNullOrEmpty(updated)) {
|
|
66
|
-
this.internalApi.fireGridDataChangedEvent(dataRows, updated, '
|
|
66
|
+
this.internalApi.fireGridDataChangedEvent(dataRows, updated, 'Update');
|
|
67
67
|
}
|
|
68
68
|
if (ArrayExtensions_1.default.IsNotNullOrEmpty(added)) {
|
|
69
69
|
this.internalApi.fireGridDataChangedEvent(dataRows, added, 'Add');
|
|
@@ -42,12 +42,16 @@ class LayoutApiImpl extends ApiBase_1.ApiBase {
|
|
|
42
42
|
return this.getCurrentLayout().RowGroupedColumns;
|
|
43
43
|
}
|
|
44
44
|
setLayout(layoutName) {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
45
|
+
var _a;
|
|
46
|
+
if (StringExtensions_1.default.IsNullOrEmpty(layoutName)) {
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
if (((_a = this.getLayoutOptions()) === null || _a === void 0 ? void 0 : _a.autoSaveLayouts) && layoutName === this.getCurrentLayoutName()) {
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
let layout = this.getLayoutByName(layoutName);
|
|
53
|
+
if (this.checkItemExists(layout, layoutName, 'Layout')) {
|
|
54
|
+
this.dispatchAction(LayoutRedux.LayoutSelect(layoutName));
|
|
51
55
|
}
|
|
52
56
|
}
|
|
53
57
|
getCurrentLayout() {
|
|
@@ -43,10 +43,6 @@ export interface PredefinedConfig {
|
|
|
43
43
|
* Supplies a collection of *Custom Sort* objects to allow some columns to be sorted in non-standard (e.g. non alphabetical) ways
|
|
44
44
|
*/
|
|
45
45
|
CustomSort?: CustomSortState;
|
|
46
|
-
/**
|
|
47
|
-
* Collection of personal Notes that are edited at Cell level
|
|
48
|
-
*/
|
|
49
|
-
Note?: NoteState;
|
|
50
46
|
/**
|
|
51
47
|
* Large series of properties to give users full control over the look and feel of the *Dashboard* - the section above the grid with toolbars and buttons
|
|
52
48
|
*/
|
|
@@ -71,14 +67,18 @@ export interface PredefinedConfig {
|
|
|
71
67
|
* Supplies a collection of *Layout* objects to name and manage groups of column visibility, order and sorts.
|
|
72
68
|
*/
|
|
73
69
|
Layout?: LayoutState;
|
|
74
|
-
/**
|
|
75
|
-
* Supplies a collection of *PlusMinus* rule objects to stipulate what happens when the user clicks '+' or '-' in a numeric cell
|
|
76
|
-
*/
|
|
77
|
-
PlusMinus?: PlusMinusState;
|
|
78
70
|
/**
|
|
79
71
|
* Named Queries available for use across multiple AdapTable Modules; and `CurrentQuery` - an Expression to run at start-up
|
|
80
72
|
*/
|
|
81
73
|
NamedQuery?: NamedQueryState;
|
|
74
|
+
/**
|
|
75
|
+
* Collection of personal Notes that are edited at Cell level
|
|
76
|
+
*/
|
|
77
|
+
Note?: NoteState;
|
|
78
|
+
/**
|
|
79
|
+
* Supplies a collection of *PlusMinus* rule objects to stipulate what happens when the user clicks '+' or '-' in a numeric cell
|
|
80
|
+
*/
|
|
81
|
+
PlusMinus?: PlusMinusState;
|
|
82
82
|
/**
|
|
83
83
|
* Configues how Quick Search will run i.e. how and whether to highlight matching cells and to filter out non-matching rows
|
|
84
84
|
*/
|
|
@@ -43,7 +43,7 @@ class AlertModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
43
43
|
this.handleCellDataChanged(cellDataChangedInfo);
|
|
44
44
|
});
|
|
45
45
|
this.api.eventApi.on('GridDataChanged', (gridDataChangedInfo) => {
|
|
46
|
-
if (gridDataChangedInfo.rowTrigger === '
|
|
46
|
+
if (gridDataChangedInfo.rowTrigger === 'Update') {
|
|
47
47
|
// changed row alerts should be handled by standard 'AnyChange' Predicate
|
|
48
48
|
return;
|
|
49
49
|
}
|
|
@@ -152,6 +152,10 @@ const QuickFilterValues = (props) => {
|
|
|
152
152
|
display: 'flex',
|
|
153
153
|
flexFlow: 'column',
|
|
154
154
|
flexWrap: 'nowrap',
|
|
155
|
+
}, handleClasses: {
|
|
156
|
+
right: 'ab-QuickFilter-resize-handle ab-QuickFilter-resize-handle--right',
|
|
157
|
+
bottom: 'ab-QuickFilter-resize-handle ab-QuickFilter-resize-handle--bottom',
|
|
158
|
+
bottomRight: 'ab-QuickFilter-resize-handle ab-QuickFilter-resize-handle--bottom-right',
|
|
155
159
|
}, enable: {
|
|
156
160
|
top: false,
|
|
157
161
|
right: true,
|
|
@@ -439,7 +439,7 @@ class AdaptableAgGrid {
|
|
|
439
439
|
normaliseLayoutState(state, gridOptions) {
|
|
440
440
|
var _a, _b, _c, _d, _e, _f;
|
|
441
441
|
if (this.shouldCreateDefaultLayout(state, this.adaptableOptions)) {
|
|
442
|
-
const defaultLayout = this.createDefaultLayout(state, gridOptions.columnDefs);
|
|
442
|
+
const defaultLayout = this.createDefaultLayout(state, gridOptions.columnDefs, gridOptions.autoGroupColumnDef);
|
|
443
443
|
const layoutState = state.Layout || {};
|
|
444
444
|
const availableLayouts = layoutState.Layouts || [];
|
|
445
445
|
availableLayouts.push(defaultLayout);
|
|
@@ -3734,9 +3734,9 @@ class AdaptableAgGrid {
|
|
|
3734
3734
|
}
|
|
3735
3735
|
return !((_c = layoutState.Layouts) === null || _c === void 0 ? void 0 : _c.length);
|
|
3736
3736
|
}
|
|
3737
|
-
createDefaultLayout(state,
|
|
3738
|
-
var _a, _b;
|
|
3739
|
-
const allColumnDefs = this.agGridAdapter.getFlattenedColDefs(
|
|
3737
|
+
createDefaultLayout(state, agGridColDefs, agGridAutoGroupColDef) {
|
|
3738
|
+
var _a, _b, _c;
|
|
3739
|
+
const allColumnDefs = this.agGridAdapter.getFlattenedColDefs(agGridColDefs);
|
|
3740
3740
|
const defaultLayout = ObjectFactory_1.default.CreateEmptyLayout({
|
|
3741
3741
|
Name: GeneralConstants_1.DEFAULT_LAYOUT,
|
|
3742
3742
|
Columns: allColumnDefs.map((c) => c.colId),
|
|
@@ -3760,12 +3760,23 @@ class AdaptableAgGrid {
|
|
|
3760
3760
|
return acc;
|
|
3761
3761
|
}, []),
|
|
3762
3762
|
});
|
|
3763
|
+
// handle optional 'gridOptions.autoGroupColumnDefs' parameter
|
|
3764
|
+
if (agGridAutoGroupColDef && ((_a = defaultLayout.RowGroupedColumns) === null || _a === void 0 ? void 0 : _a.length)) {
|
|
3765
|
+
defaultLayout.Columns = [GeneralConstants_1.AG_GRID_GROUPED_COLUMN, ...defaultLayout.Columns];
|
|
3766
|
+
}
|
|
3767
|
+
if (agGridAutoGroupColDef === null || agGridAutoGroupColDef === void 0 ? void 0 : agGridAutoGroupColDef.pinned) {
|
|
3768
|
+
defaultLayout.PinnedColumnsMap[GeneralConstants_1.AG_GRID_GROUPED_COLUMN] =
|
|
3769
|
+
agGridAutoGroupColDef.pinned === true ? 'left' : agGridAutoGroupColDef.pinned;
|
|
3770
|
+
}
|
|
3771
|
+
if (agGridAutoGroupColDef === null || agGridAutoGroupColDef === void 0 ? void 0 : agGridAutoGroupColDef.width) {
|
|
3772
|
+
defaultLayout.ColumnWidthMap[GeneralConstants_1.AG_GRID_GROUPED_COLUMN] = agGridAutoGroupColDef.width;
|
|
3773
|
+
}
|
|
3763
3774
|
// ADD special columns
|
|
3764
|
-
const calculatedColumns = ((
|
|
3775
|
+
const calculatedColumns = ((_b = state.CalculatedColumn) === null || _b === void 0 ? void 0 : _b.CalculatedColumns) || [];
|
|
3765
3776
|
if (calculatedColumns.length) {
|
|
3766
3777
|
defaultLayout.Columns.push(...calculatedColumns.map((c) => c.ColumnId));
|
|
3767
3778
|
}
|
|
3768
|
-
const freeTextColumns = ((
|
|
3779
|
+
const freeTextColumns = ((_c = state.FreeTextColumn) === null || _c === void 0 ? void 0 : _c.FreeTextColumns) || [];
|
|
3769
3780
|
if (freeTextColumns.length) {
|
|
3770
3781
|
defaultLayout.Columns.push(...freeTextColumns.map((c) => c.ColumnId));
|
|
3771
3782
|
}
|
|
@@ -3782,13 +3793,11 @@ class AdaptableAgGrid {
|
|
|
3782
3793
|
const expandedState = agGridApi.getState().rowGroupExpansion || { expandedRowGroupIds: [] };
|
|
3783
3794
|
const currentLayoutState = { columnState, expandedState };
|
|
3784
3795
|
try {
|
|
3785
|
-
// TODO
|
|
3786
3796
|
const stringifiedLayoutState = JSON.stringify(currentLayoutState);
|
|
3787
3797
|
if (stringifiedLayoutState === this.previousAgGridLayoutState) {
|
|
3788
3798
|
// same grid column state as a previous,
|
|
3789
3799
|
// so no need to update, as the layout has already been updated
|
|
3790
3800
|
// for this grid column state
|
|
3791
|
-
// console.log('same state as before');
|
|
3792
3801
|
return;
|
|
3793
3802
|
}
|
|
3794
3803
|
this.previousAgGridLayoutState = stringifiedLayoutState;
|
|
@@ -4009,6 +4018,16 @@ class AdaptableAgGrid {
|
|
|
4009
4018
|
const passedColumnDefs = options.columnDefs;
|
|
4010
4019
|
if (passedColumnDefs) {
|
|
4011
4020
|
const colDefsWithSpecialColumns = self.getColumnDefinitionsInclSpecialColumns(passedColumnDefs);
|
|
4021
|
+
const allDisplayedColIds = self.agGridAdapter
|
|
4022
|
+
.getAgGridApi()
|
|
4023
|
+
.getAllDisplayedColumns()
|
|
4024
|
+
.map((col) => col.getColId());
|
|
4025
|
+
// mark as hidden the colDefs of special columns which are not visible
|
|
4026
|
+
self.agGridAdapter.patchColDefs(colDefsWithSpecialColumns, (colDef) => {
|
|
4027
|
+
if (self.api.columnApi.isSpecialColumn(colDef.colId)) {
|
|
4028
|
+
colDef.hide = !allDisplayedColIds.includes(colDef.colId);
|
|
4029
|
+
}
|
|
4030
|
+
});
|
|
4012
4031
|
options['columnDefs'] = colDefsWithSpecialColumns;
|
|
4013
4032
|
self.logger.info(`Added SpecialColumns on GridOptions.columnDefs update (source=${source})`);
|
|
4014
4033
|
}
|
|
@@ -60,6 +60,7 @@ export declare class AgGridAdapter {
|
|
|
60
60
|
* Mutates the colDefs to ensure that each column has a colId
|
|
61
61
|
*/
|
|
62
62
|
assignColumnIdsToColDefs(colDefs?: (ColDef | ColGroupDef)[]): void;
|
|
63
|
+
patchColDefs(colDefs: (ColDef | ColGroupDef)[], patchFn: (colDef: ColDef) => void): void;
|
|
63
64
|
getDefaultColumnDefinition(): GridOptions['defaultColDef'];
|
|
64
65
|
_agGridApi_getValue(colKey: string | Column, rowNode: IRowNode, gridApi?: GridApi): any;
|
|
65
66
|
}
|
|
@@ -574,16 +574,25 @@ class AgGridAdapter {
|
|
|
574
574
|
if (colDef.field && !colDef.colId) {
|
|
575
575
|
colDef.colId = colDef.field;
|
|
576
576
|
}
|
|
577
|
-
if (colDef.
|
|
578
|
-
|
|
577
|
+
if (!colDef.colId) {
|
|
578
|
+
this.logger.warn('A column is missing the colId - please check ', colDef, 'Either pass a "field" property or a "colId" property.');
|
|
579
579
|
}
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
580
|
+
};
|
|
581
|
+
this.patchColDefs(colDefs, assignColId);
|
|
582
|
+
}
|
|
583
|
+
patchColDefs(colDefs = [], patchFn) {
|
|
584
|
+
const applyPatch = (colDef) => {
|
|
585
|
+
if (!colDef) {
|
|
586
|
+
return;
|
|
587
|
+
}
|
|
588
|
+
if (!colDef.children) {
|
|
589
|
+
patchFn(colDef);
|
|
590
|
+
}
|
|
591
|
+
if (colDef.children) {
|
|
592
|
+
colDef.children.forEach((childColDef) => applyPatch(childColDef));
|
|
584
593
|
}
|
|
585
594
|
};
|
|
586
|
-
colDefs.forEach((colDef) =>
|
|
595
|
+
colDefs.forEach((colDef) => applyPatch(colDef));
|
|
587
596
|
}
|
|
588
597
|
getDefaultColumnDefinition() {
|
|
589
598
|
var _a, _b;
|
package/src/env.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.default = {
|
|
4
4
|
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:
|
|
6
|
-
VERSION: "18.1.
|
|
5
|
+
PUBLISH_TIMESTAMP: 1722341727251 || Date.now(),
|
|
6
|
+
VERSION: "18.1.13" || '--current-version--',
|
|
7
7
|
};
|