@adaptabletools/adaptable 15.2.3 → 15.3.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.3.1",
|
|
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",
|
package/publishTimestamp.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: 1683896553708;
|
|
2
2
|
export default _default;
|
package/publishTimestamp.js
CHANGED
|
@@ -6,7 +6,7 @@ import { ExpressionOptions } from './ExpressionOptions';
|
|
|
6
6
|
import { PredicateOptions } from './PredicateOptions';
|
|
7
7
|
import { AdaptableObject } from '../types';
|
|
8
8
|
/**
|
|
9
|
-
* Options for managing AdapTableQL
|
|
9
|
+
* Options for managing AdapTableQL: AdapTable's Query Language which evaluates Predicates and Expressions
|
|
10
10
|
*/
|
|
11
11
|
export interface AdaptableQLOptions<TData = any> {
|
|
12
12
|
/**
|
|
@@ -18,7 +18,7 @@ export interface AdaptableQLOptions<TData = any> {
|
|
|
18
18
|
*/
|
|
19
19
|
caseSensitiveTextComparisons?: boolean;
|
|
20
20
|
/**
|
|
21
|
-
* Whether a Module (or
|
|
21
|
+
* Whether a Module (or specific expression) should be evaluated by AdapTableQL
|
|
22
22
|
* @defaultValue All Modules are evaluated by AdapTable
|
|
23
23
|
*/
|
|
24
24
|
evaluateAdaptableQLExternally?: (context: EvaluateExpressionExternallyContext<TData>) => boolean;
|
|
@@ -35,7 +35,7 @@ export interface AdaptableQLOptions<TData = any> {
|
|
|
35
35
|
*/
|
|
36
36
|
customPredicateDefs?: AdaptablePredicateDef[];
|
|
37
37
|
/**
|
|
38
|
-
* Reference a Column's Header (FriendlyName) in all Expression overviews (instead of ColumnId)
|
|
38
|
+
* Reference a Column's Header (i.e. FriendlyName) in all Expression overviews (instead of ColumnId)
|
|
39
39
|
*
|
|
40
40
|
* @defaultValue true
|
|
41
41
|
* @noCodeItem
|
|
@@ -51,7 +51,7 @@ export interface EvaluateExpressionExternallyContext<TData = any> extends BaseCo
|
|
|
51
51
|
*/
|
|
52
52
|
module: AdaptableQLModule;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* AdapTable Object which contains the Expression or Predicates
|
|
55
55
|
*/
|
|
56
56
|
object?: AdaptableObject;
|
|
57
57
|
/**
|