@adaptabletools/adaptable 17.0.4 → 17.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle.cjs.js +8 -8
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/GroupingOptions.d.ts +4 -4
- package/src/Api/EventApi.d.ts +16 -4
- package/src/Api/Events/CalculatedColumnChanged.d.ts +19 -0
- package/src/Api/Events/CalculatedColumnChanged.js +2 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.js +16 -0
- package/src/Redux/Store/AdaptableStore.js +2 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -1
- package/src/agGrid/Adaptable.js +9 -6
- package/src/metamodel/adaptable.metamodel.d.ts +16 -16
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +2 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/src/types.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type { DataSetOptions, DataSet, DataSetFormContext, } from './AdaptableOp
|
|
|
23
23
|
export type { CellSummaryOptions } from './AdaptableOptions/CellSummaryOptions';
|
|
24
24
|
export type { CustomSortOptions, ColumnValuesComparer } from './AdaptableOptions/CustomSortOptions';
|
|
25
25
|
export type { NotesOptions, NotableCellContext } from './AdaptableOptions/NotesOptions';
|
|
26
|
-
export type { GroupingOptions,
|
|
26
|
+
export type { GroupingOptions, BalancedGroupsKeyContext, } from './AdaptableOptions/GroupingOptions';
|
|
27
27
|
export type { Glue42PluginOptions } from './AdaptableOptions/Glue42PluginOptions';
|
|
28
28
|
export type { Glue42WebPluginOptions } from './AdaptableOptions/Glue42WebPluginOptions';
|
|
29
29
|
export type { IPushPullPluginOptions } from './AdaptableOptions/IPushPullPluginOptions';
|
|
@@ -118,6 +118,7 @@ export type { CellChangedInfo } from './Api/Events/CellChanged';
|
|
|
118
118
|
export type { TeamSharingEntityChangedInfo } from './Api/Events/TeamSharingEntityChanged';
|
|
119
119
|
export type { GridDataChangedInfo } from './Api/Events/GridDataChanged';
|
|
120
120
|
export type { LayoutChangedInfo } from './Api/Events/LayoutChanged';
|
|
121
|
+
export type { CalculatedColumnChangedInfo } from './Api/Events/CalculatedColumnChanged';
|
|
121
122
|
export type { CustomToolbarConfiguredInfo } from './Api/Events/CustomToolbarConfigured';
|
|
122
123
|
export type { LiveDataChangedInfo, LiveReport } from './Api/Events/LiveDataChanged';
|
|
123
124
|
export type { ChartChangedInfo, ChartingOpenState, ChartDisplayedInfo, } from './Api/Events/ChartChanged';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "17.0.
|
|
1
|
+
declare const _default: "17.0.6";
|
|
2
2
|
export default _default;
|
package/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = '17.0.
|
|
3
|
+
exports.default = '17.0.6'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|