@adaptabletools/adaptable 13.0.0-canary.2 → 13.0.0-canary.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/agGrid.d.ts +23 -1
- package/agGrid.js +23 -1
- package/base.css +1 -0
- package/bundle.cjs.js +158 -158
- package/index.css +1 -0
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +42 -14
- package/src/Api/ConditionalStyleApi.d.ts +20 -0
- package/src/Api/FormatColumnApi.d.ts +42 -3
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +17 -1
- package/src/Api/Implementation/FormatColumnApiImpl.js +94 -14
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +0 -2
- package/src/Api/Implementation/QueryLanguageApiImpl.js +0 -3
- package/src/Api/QueryLanguageApi.d.ts +0 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +37 -37
- package/src/PredefinedConfig/FormatColumnState.d.ts +19 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
- package/src/Redux/Store/AdaptableStore.js +2 -0
- package/src/Strategy/FormatColumnModule.d.ts +2 -9
- package/src/Strategy/FormatColumnModule.js +5 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +5 -5
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +4 -1
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +4 -1
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +4 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
- package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
- package/src/Utilities/Extensions/TypeExtensions.js +5 -0
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/QueryLanguageService.d.ts +5 -3
- package/src/Utilities/Services/QueryLanguageService.js +92 -39
- package/src/Utilities/license/LicenseDetails.d.ts +1 -1
- package/src/Utilities/license/decode.d.ts +1 -0
- package/src/Utilities/license/decode.js +1 -1
- package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
- package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +9 -0
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +66 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +20 -2
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -1
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +14 -0
- package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
- package/src/View/FormatColumn/Wizard/constants.js +4 -0
- package/src/agGrid/Adaptable.d.ts +5 -0
- package/src/agGrid/Adaptable.js +103 -45
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +1 -1
- package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
- package/src/metamodel/adaptable.metamodel.d.ts +47 -29
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/types.d.ts +6 -3
- package/src/types.d.ts +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/agGrid.d.ts
CHANGED
|
@@ -3,9 +3,31 @@ import { AdaptableNumberEditor } from './src/agGrid/editors/AdaptableNumberEdito
|
|
|
3
3
|
import { AdaptableDateEditor } from './src/agGrid/editors/AdaptableDateEditor';
|
|
4
4
|
export default Adaptable;
|
|
5
5
|
export declare const AdaptableNoCodeWizard: typeof import("./src/agGrid/Adaptable").AdaptableNoCodeWizard;
|
|
6
|
+
export declare const AdaptableQL: {
|
|
7
|
+
BooleanExpressions: Record<import("./src/Utilities/ExpressionFunctions/booleanExpressionFunctions").BooleanFunctionName, import("./types").ExpressionFunction>;
|
|
8
|
+
ScalarExpressions: Record<import("./src/Utilities/ExpressionFunctions/scalarExpressionFunctions").ScalarFunctionName, import("./types").ExpressionFunction>;
|
|
9
|
+
ObservableExpressions: Record<import("./src/Utilities/ExpressionFunctions/observableExpressionFunctions").ObservableFunctionName, import("./types").ExpressionFunction>;
|
|
10
|
+
AggregatedBooleanExpressions: Record<import("./src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions").AggregatedBooleanFunctionName, import("./types").ExpressionFunction>;
|
|
11
|
+
AggregatedScalarExpressions: Record<import("./src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions").AggregatedScalarFunctionName, import("./types").ExpressionFunction>;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated use AdaptableQLExpressions.Boolean instead
|
|
15
|
+
*/
|
|
6
16
|
export declare const AdaptableBooleanExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/booleanExpressionFunctions").BooleanFunctionName, import("./types").ExpressionFunction>;
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated use AdaptableQLExpressions.Scalar instead
|
|
19
|
+
*/
|
|
7
20
|
export declare const AdaptableScalarExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/scalarExpressionFunctions").ScalarFunctionName, import("./types").ExpressionFunction>;
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated use AdaptableQLExpressions.Observable instead
|
|
23
|
+
*/
|
|
8
24
|
export declare const AdaptableObservableExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/observableExpressionFunctions").ObservableFunctionName, import("./types").ExpressionFunction>;
|
|
9
|
-
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated use AdaptableQLExpressions.AggregatedBoolean instead
|
|
27
|
+
*/
|
|
28
|
+
export declare const AdaptableAggregatedBooleanExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions").AggregatedBooleanFunctionName, import("./types").ExpressionFunction>;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated use AdaptableQLExpressions.AggregatedScalar instead
|
|
31
|
+
*/
|
|
10
32
|
export declare const AdaptableAggregatedScalarExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions").AggregatedScalarFunctionName, import("./types").ExpressionFunction>;
|
|
11
33
|
export { AdaptableNumberEditor, AdaptableDateEditor, AdaptableWizardView };
|
package/agGrid.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptableAggregatedScalarExpressionFunctions = exports.AdaptableAggregatedBooleanExpressionFunctions = exports.AdaptableObservableExpressionFunctions = exports.AdaptableScalarExpressionFunctions = exports.AdaptableBooleanExpressionFunctions = exports.AdaptableNoCodeWizard = void 0;
|
|
3
|
+
exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptableAggregatedScalarExpressionFunctions = exports.AdaptableAggregatedBooleanExpressionFunctions = exports.AdaptableObservableExpressionFunctions = exports.AdaptableScalarExpressionFunctions = exports.AdaptableBooleanExpressionFunctions = exports.AdaptableQL = exports.AdaptableNoCodeWizard = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const agGrid_1 = tslib_1.__importStar(require("./src/agGrid"));
|
|
6
6
|
Object.defineProperty(exports, "AdaptableWizardView", { enumerable: true, get: function () { return agGrid_1.AdaptableWizardView; } });
|
|
@@ -15,8 +15,30 @@ const AdaptableDateEditor_1 = require("./src/agGrid/editors/AdaptableDateEditor"
|
|
|
15
15
|
Object.defineProperty(exports, "AdaptableDateEditor", { enumerable: true, get: function () { return AdaptableDateEditor_1.AdaptableDateEditor; } });
|
|
16
16
|
exports.default = agGrid_1.default;
|
|
17
17
|
exports.AdaptableNoCodeWizard = agGrid_1.AdaptableNoCodeWizard;
|
|
18
|
+
exports.AdaptableQL = {
|
|
19
|
+
BooleanExpressions: booleanExpressionFunctions_1.booleanExpressionFunctions,
|
|
20
|
+
ScalarExpressions: scalarExpressionFunctions_1.scalarExpressionFunctions,
|
|
21
|
+
ObservableExpressions: observableExpressionFunctions_1.observableExpressionFunctions,
|
|
22
|
+
AggregatedBooleanExpressions: aggregatedBooleanExpressionFunctions_1.aggregatedBooleanExpressionFunctions,
|
|
23
|
+
AggregatedScalarExpressions: aggregatedScalarExpressionFunctions_1.aggregatedScalarExpressionFunctions,
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated use AdaptableQLExpressions.Boolean instead
|
|
27
|
+
*/
|
|
18
28
|
exports.AdaptableBooleanExpressionFunctions = booleanExpressionFunctions_1.booleanExpressionFunctions;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated use AdaptableQLExpressions.Scalar instead
|
|
31
|
+
*/
|
|
19
32
|
exports.AdaptableScalarExpressionFunctions = scalarExpressionFunctions_1.scalarExpressionFunctions;
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated use AdaptableQLExpressions.Observable instead
|
|
35
|
+
*/
|
|
20
36
|
exports.AdaptableObservableExpressionFunctions = observableExpressionFunctions_1.observableExpressionFunctions;
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated use AdaptableQLExpressions.AggregatedBoolean instead
|
|
39
|
+
*/
|
|
21
40
|
exports.AdaptableAggregatedBooleanExpressionFunctions = aggregatedBooleanExpressionFunctions_1.aggregatedBooleanExpressionFunctions;
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated use AdaptableQLExpressions.AggregatedScalar instead
|
|
43
|
+
*/
|
|
22
44
|
exports.AdaptableAggregatedScalarExpressionFunctions = aggregatedScalarExpressionFunctions_1.aggregatedScalarExpressionFunctions;
|
package/base.css
CHANGED
|
@@ -2827,6 +2827,7 @@ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2827
2827
|
.ab-Datepicker-Overlay .rdp.rdp-with_weeknumber .rdp-row td:nth-child(8) {
|
|
2828
2828
|
display: table-cell; }
|
|
2829
2829
|
.ab-ToggleButton {
|
|
2830
|
+
user-select: none;
|
|
2830
2831
|
position: relative;
|
|
2831
2832
|
display: inline-block;
|
|
2832
2833
|
min-width: 40px;
|