@adaptabletools/adaptable 12.1.1 → 12.1.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable",
3
- "version": "12.1.1",
3
+ "version": "12.1.2",
4
4
  "description": "Powerful data-agnostic HTML5 datagrid add-on that sits on top of an underlying grid component and provides all the rich functionality that advanced users expect from their DataGrids and Data Tables",
5
5
  "keywords": [
6
6
  "web-components",
@@ -1,2 +1,2 @@
1
- declare const _default: 1658765730539;
1
+ declare const _default: 1658831451551;
2
2
  export default _default;
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = 1658765730539;
3
+ exports.default = 1658831451551;
@@ -46,7 +46,8 @@ class MetamodelService {
46
46
  }
47
47
  validateOptionsObject(validationErrors, optionsObjectName, optionsObject, optionsObjectMetamodel, optionsObjectDefaultValues) {
48
48
  Object.entries(optionsObject).forEach(([optionKey, optionValue]) => {
49
- const optionMetamodel = optionsObjectMetamodel.properties.find((metamodelProperty) => metamodelProperty.name === optionKey);
49
+ var _a;
50
+ const optionMetamodel = (_a = optionsObjectMetamodel === null || optionsObjectMetamodel === void 0 ? void 0 : optionsObjectMetamodel.properties) === null || _a === void 0 ? void 0 : _a.find((metamodelProperty) => metamodelProperty.name === optionKey);
50
51
  if (!optionMetamodel) {
51
52
  validationErrors.push(`${optionsObjectName}.${optionKey} (value=${optionValue}) :: unknown/unsupported property, will be ignored`);
52
53
  return;
@@ -214,7 +214,7 @@ const ColumnsSection = (props) => {
214
214
  React.createElement(ColumnLabels_1.ColumnLabels, { flexDirection: "row", showBoth: false, labels: {
215
215
  Sortable: 'Sortable',
216
216
  Filterable: 'Filterable',
217
- Aggregatable: 'Shows Aggregations',
217
+ Aggregatable: 'Aggregatable',
218
218
  Groupable: 'Groupable',
219
219
  Moveable: 'Moveable',
220
220
  Pivotable: 'Pivotable',
@@ -2528,6 +2528,8 @@ class Adaptable {
2528
2528
  this.listenerGlobalColumnEventsThatTriggerStateChange = null;
2529
2529
  this.listenerGlobalColumnEventsThatTriggerAutoLayoutSave = null;
2530
2530
  this.listenerGlobalRowGroupEventsThatTriggerAutoLayoutSave = null;
2531
+ this.throttleFilterOnEditDataChange = null;
2532
+ this.throttleFilterOnTickingDataChange = null;
2531
2533
  this.gridOptions.api.__adaptable = null;
2532
2534
  this.gridOptions.api.setColumnDefs = GridApi_setColumnDefs;
2533
2535
  this.gridOptions.getRowStyle = null;
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "12.1.1";
1
+ declare const _default: "12.1.2";
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 = '12.1.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '12.1.2'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version