@adaptabletools/adaptable 15.4.2 → 15.4.3
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 +72 -72
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +3 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +3 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +24 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +3 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +3 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +6 -0
- package/src/Api/ExportApi.d.ts +3 -3
- package/src/Api/GridApi.d.ts +20 -0
- package/src/Api/Implementation/GridApiImpl.js +3 -3
- package/src/PredefinedConfig/AlertState.d.ts +8 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +13 -1
- package/src/PredefinedConfig/Common/Entitlement.d.ts +3 -0
- package/src/PredefinedConfig/StyledColumnState.d.ts +3 -0
- package/src/View/Components/FilterForm/QuickFilterValues.js +8 -1
- package/src/agGrid/Adaptable.js +9 -8
- package/src/metamodel/adaptable.metamodel.d.ts +132 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/types.d.ts +3 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -81,6 +81,9 @@ export interface ExpressionFunction {
|
|
|
81
81
|
*/
|
|
82
82
|
hasEagerEvaluation?: boolean;
|
|
83
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* Categories for Expression Functions
|
|
86
|
+
*/
|
|
84
87
|
export declare type ExpressionCategory = 'logical' | 'comparison' | 'strings' | 'maths' | 'dates' | 'conditional' | 'special' | string;
|
|
85
88
|
/**
|
|
86
89
|
* Defines how an AdaptableQL Function is described in Expression Editor
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "15.4.
|
|
1
|
+
declare const _default: "15.4.3";
|
|
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 = '15.4.
|
|
3
|
+
exports.default = '15.4.3'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|