@adaptabletools/adaptable-cjs 18.0.0-canary.11 → 18.0.0-canary.13
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/base.css +5 -1
- package/base.css.map +1 -1
- package/index.css +7 -1
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +2 -2
- package/src/AdaptableOptions/ColumnOptions.d.ts +7 -4
- package/src/AdaptableOptions/CommentOptions.d.ts +9 -7
- package/src/AdaptableOptions/MenuOptions.d.ts +1 -53
- package/src/AdaptableOptions/MenuOptions.js +3 -3
- package/src/AdaptableOptions/NoteOptions.d.ts +4 -1
- package/src/Api/AdaptableApi.d.ts +4 -4
- package/src/Api/ColumnApi.d.ts +4 -0
- package/src/Api/CommentApi.d.ts +11 -12
- package/src/Api/ConfigApi.d.ts +3 -4
- package/src/Api/EventApi.d.ts +7 -9
- package/src/Api/Events/CommentChanged.d.ts +11 -0
- package/src/Api/GridApi.d.ts +6 -1
- package/src/Api/Implementation/ActionColumnApiImpl.js +3 -6
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -2
- package/src/Api/Implementation/ApiBase.d.ts +2 -2
- package/src/Api/Implementation/ApiBase.js +1 -1
- package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.js +10 -0
- package/src/Api/Implementation/CommentsApiImpl.d.ts +1 -2
- package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ConfigApiImpl.js +8 -8
- package/src/Api/Implementation/GridApiImpl.d.ts +3 -1
- package/src/Api/Implementation/GridApiImpl.js +17 -1
- package/src/Api/Implementation/{NotesApiImpl.d.ts → NoteApiImpl.d.ts} +8 -8
- package/src/Api/Implementation/{NotesApiImpl.js → NoteApiImpl.js} +14 -14
- package/src/Api/Implementation/OptionsApiImpl.d.ts +4 -5
- package/src/Api/Implementation/OptionsApiImpl.js +2 -12
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +0 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -8
- package/src/Api/Internal/ActionRowInternalApi.js +1 -1
- package/src/Api/Internal/AdaptableInternalApi.d.ts +3 -3
- package/src/Api/Internal/AdaptableInternalApi.js +11 -11
- package/src/Api/Internal/CalculatedColumnInternalApi.js +3 -2
- package/src/Api/Internal/ExportInternalApi.d.ts +2 -1
- package/src/Api/Internal/ExportInternalApi.js +4 -1
- package/src/Api/Internal/Fdc3InternalApi.js +2 -2
- package/src/Api/Internal/FreeTextColumnInternalApi.js +3 -2
- package/src/Api/Internal/GridInternalApi.d.ts +2 -0
- package/src/Api/Internal/GridInternalApi.js +15 -0
- package/src/Api/Internal/{NotesInternalApi.d.ts → NoteInternalApi.d.ts} +1 -1
- package/src/Api/Internal/{NotesInternalApi.js → NoteInternalApi.js} +3 -3
- package/src/Api/NoteApi.d.ts +48 -0
- package/src/Api/OptionsApi.d.ts +8 -12
- package/src/Api/UserInterfaceApi.d.ts +0 -11
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -2
- package/src/PredefinedConfig/CommentState.d.ts +27 -23
- package/src/PredefinedConfig/Common/RowSummary.d.ts +6 -0
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +6 -0
- package/src/PredefinedConfig/Common/Types.d.ts +4 -4
- package/src/PredefinedConfig/Common/Types.js +4 -1
- package/src/PredefinedConfig/{NotesState.d.ts → NoteState.d.ts} +3 -3
- package/src/PredefinedConfig/{CellAddress.js → NoteState.js} +0 -3
- package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -2
- package/src/PredefinedConfig/Selection/GridCell.d.ts +13 -0
- package/src/PredefinedConfig/SystemState.d.ts +2 -3
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +38 -0
- package/src/Redux/ActionsReducers/{NotesRedux.js → NoteRedux.js} +27 -27
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +3 -3
- package/src/Redux/Store/AdaptableStore.js +10 -16
- package/src/Strategy/{CommentsModule.d.ts → CommentModule.d.ts} +1 -5
- package/src/Strategy/{CommentsModule.js → CommentModule.js} +11 -12
- package/src/Strategy/LayoutModule.d.ts +1 -0
- package/src/Strategy/LayoutModule.js +17 -1
- package/src/Strategy/{NotesModule.d.ts → NoteModule.d.ts} +2 -1
- package/src/Strategy/{NotesModule.js → NoteModule.js} +13 -9
- package/src/Strategy/Utilities/getScopeViewItems.js +3 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +10 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -3
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +15 -0
- package/src/Utilities/ObjectFactory.d.ts +3 -3
- package/src/Utilities/ObjectFactory.js +4 -24
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +1 -0
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +12 -10
- package/src/Utilities/Services/CellPopupService.js +2 -2
- package/src/Utilities/Services/Interface/IReportService.d.ts +1 -4
- package/src/Utilities/Services/ModuleService.js +4 -0
- package/src/Utilities/Services/QueryLanguageService.js +2 -2
- package/src/Utilities/Services/ReportService.d.ts +7 -5
- package/src/Utilities/Services/ReportService.js +238 -22
- package/src/Utilities/Services/SummaryService.d.ts +1 -1
- package/src/Utilities/adaptableQlUtils.d.ts +2 -0
- package/src/Utilities/adaptableQlUtils.js +18 -0
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +1 -1
- package/src/View/Comments/CommentsEditor.js +1 -1
- package/src/View/Comments/CommentsPopup.js +8 -4
- package/src/View/Components/NewScopeComponent.js +2 -2
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +6 -6
- package/src/View/Components/ValueSelector/index.d.ts +1 -0
- package/src/View/Components/ValueSelector/index.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +0 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +3 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -1
- package/src/View/Layout/TransposedPopup.js +19 -18
- package/src/View/Layout/Wizard/LayoutWizard.js +11 -2
- package/src/View/Layout/Wizard/sections/RowSummarySection.d.ts +8 -0
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +146 -0
- package/src/View/Note/NotePopup.d.ts +2 -0
- package/src/View/{Notes/NotesPopup.js → Note/NotePopup.js} +8 -8
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
- package/src/agGrid/AdaptableAgGrid.d.ts +2 -0
- package/src/agGrid/AdaptableAgGrid.js +97 -58
- package/src/agGrid/AgGridAdapter.d.ts +2 -0
- package/src/agGrid/AgGridAdapter.js +8 -0
- package/src/agGrid/AgGridColumnAdapter.d.ts +1 -1
- package/src/agGrid/AgGridColumnAdapter.js +4 -4
- package/src/agGrid/AgGridOptionsService.d.ts +4 -1
- package/src/agGrid/AgGridOptionsService.js +22 -0
- package/src/agGrid/defaultAdaptableOptions.js +0 -7
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +2 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +0 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +3 -17
- package/src/components/icons/note.js +2 -2
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +77 -14
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/parser.js +117 -1257
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +2 -1
- package/src/parser/src/types.d.ts +2 -2
- package/src/types.d.ts +23 -20
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/src/Api/Events/CommentsChangedInfo.d.ts +0 -5
- package/src/Api/NotesApi.d.ts +0 -48
- package/src/PredefinedConfig/CellAddress.d.ts +0 -13
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +0 -38
- package/src/View/Notes/NotesPopup.d.ts +0 -2
- /package/src/Api/Events/{CommentsChangedInfo.js → CommentChanged.js} +0 -0
- /package/src/Api/{NotesApi.js → NoteApi.js} +0 -0
- /package/src/PredefinedConfig/{NotesState.js → Common/TransposeConfig.js} +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.d.ts +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.js +0 -0
|
@@ -174,13 +174,6 @@ const DefaultAdaptableOptions = {
|
|
|
174
174
|
menuOptions: {
|
|
175
175
|
customColumnMenu: undefined,
|
|
176
176
|
customContextMenu: undefined,
|
|
177
|
-
showAdaptableContextMenu: true,
|
|
178
|
-
showAdaptableColumnMenu: true,
|
|
179
|
-
showUngroupColumnMenuItem: true,
|
|
180
|
-
columnMenuOrder: ['aggrid', 'adaptable', 'user'],
|
|
181
|
-
contextMenuOrder: ['aggrid', 'adaptable', 'user'],
|
|
182
|
-
columnMenuItems: undefined,
|
|
183
|
-
contextMenuItems: undefined,
|
|
184
177
|
},
|
|
185
178
|
columnFilterOptions: {
|
|
186
179
|
quickFilterOptions: {
|
|
@@ -6,6 +6,7 @@ const react_1 = tslib_1.__importDefault(require("react"));
|
|
|
6
6
|
const react_beautiful_dnd_1 = require("react-beautiful-dnd");
|
|
7
7
|
const rebass_1 = require("rebass");
|
|
8
8
|
const predicate_1 = require("../../../parser/src/predicate");
|
|
9
|
+
const adaptableQlUtils_1 = require("../../../Utilities/adaptableQlUtils");
|
|
9
10
|
const booleanExpressionFunctions_1 = require("../../../Utilities/ExpressionFunctions/booleanExpressionFunctions");
|
|
10
11
|
const AdaptableContext_1 = require("../../../View/AdaptableContext");
|
|
11
12
|
const DropdownButton_1 = tslib_1.__importDefault(require("../../DropdownButton"));
|
|
@@ -114,7 +115,7 @@ const PrimitiveFunctionEditor = (props) => {
|
|
|
114
115
|
}
|
|
115
116
|
columnId = col.replace(/[\[\]]/g, '');
|
|
116
117
|
columnDataType = adaptable.api.columnApi.getColumnDataTypeForColumnId(columnId);
|
|
117
|
-
columnInputDataType = (0,
|
|
118
|
+
columnInputDataType = (0, adaptableQlUtils_1.mapColumnDataTypeToExpressionFunctionType)(columnDataType);
|
|
118
119
|
functionInputInputDataTypes = (_a = booleanExpressionFunctions_1.booleanExpressionFunctions[props.predicate.operator]) === null || _a === void 0 ? void 0 : _a.inputs;
|
|
119
120
|
restOfFunctionInputDataTypes = functionInputInputDataTypes
|
|
120
121
|
? (0, utils_1.getOperatorMatchingInputs)(columnInputDataType, functionInputInputDataTypes)
|
|
@@ -2,7 +2,6 @@ import { QlPredicate, QlPredicateError } from '../../../parser/src/predicate';
|
|
|
2
2
|
import { ExpressionFunctionInputType } from '../../../parser/src/types';
|
|
3
3
|
import { AdaptableColumnDataType, BooleanFunctionName } from '../../../types';
|
|
4
4
|
export declare const reorder: (predicate: QlPredicate, from: string, to: string) => any;
|
|
5
|
-
export declare const mapColumnDataTypeToExpressionFunctionType: (dataType: AdaptableColumnDataType) => ExpressionFunctionInputType;
|
|
6
5
|
export declare const mapExpressionFunctionTypeToColumnDataType: (type: ExpressionFunctionInputType) => AdaptableColumnDataType;
|
|
7
6
|
export declare const getOperatorMatchingInputs: (columnType: ExpressionFunctionInputType, inputs: ExpressionFunctionInputType[] | Array<ExpressionFunctionInputType>[]) => ExpressionFunctionInputType[];
|
|
8
7
|
export declare const getFunctionsForColumnType: (dataType: AdaptableColumnDataType, availableBooleanFunctions: BooleanFunctionName[]) => BooleanFunctionName[];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getUnsuportedExpressionFromQlPredicate = exports.getFunctionsForColumnType = exports.getOperatorMatchingInputs = exports.mapExpressionFunctionTypeToColumnDataType = exports.
|
|
3
|
+
exports.getUnsuportedExpressionFromQlPredicate = exports.getFunctionsForColumnType = exports.getOperatorMatchingInputs = exports.mapExpressionFunctionTypeToColumnDataType = exports.reorder = void 0;
|
|
4
|
+
const adaptableQlUtils_1 = require("../../../Utilities/adaptableQlUtils");
|
|
4
5
|
const predicate_1 = require("../../../parser/src/predicate");
|
|
5
6
|
const booleanExpressionFunctions_1 = require("../../../Utilities/ExpressionFunctions/booleanExpressionFunctions");
|
|
6
7
|
const ObjectExtensions_1 = require("../../../Utilities/Extensions/ObjectExtensions");
|
|
@@ -30,21 +31,6 @@ const reorder = (predicate, from, to) => {
|
|
|
30
31
|
return predicateCopy;
|
|
31
32
|
};
|
|
32
33
|
exports.reorder = reorder;
|
|
33
|
-
const mapColumnDataTypeToExpressionFunctionType = (dataType) => {
|
|
34
|
-
if (dataType === 'Number') {
|
|
35
|
-
return 'number';
|
|
36
|
-
}
|
|
37
|
-
if (dataType === 'Boolean') {
|
|
38
|
-
return 'boolean';
|
|
39
|
-
}
|
|
40
|
-
if (dataType === 'String') {
|
|
41
|
-
return 'text';
|
|
42
|
-
}
|
|
43
|
-
if (dataType === 'Date') {
|
|
44
|
-
return 'date';
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
exports.mapColumnDataTypeToExpressionFunctionType = mapColumnDataTypeToExpressionFunctionType;
|
|
48
34
|
const mapExpressionFunctionTypeToColumnDataType = (type) => {
|
|
49
35
|
if (type === 'number') {
|
|
50
36
|
return 'Number';
|
|
@@ -72,7 +58,7 @@ const getOperatorMatchingInputs = (columnType, inputs) => {
|
|
|
72
58
|
};
|
|
73
59
|
exports.getOperatorMatchingInputs = getOperatorMatchingInputs;
|
|
74
60
|
const getFunctionsForColumnType = (dataType, availableBooleanFunctions) => {
|
|
75
|
-
const columnType = (0,
|
|
61
|
+
const columnType = (0, adaptableQlUtils_1.mapColumnDataTypeToExpressionFunctionType)(dataType);
|
|
76
62
|
return booleanExpressions_1.booleanExpressionsAvailableInQueryBuilder.filter((boolFnName) => {
|
|
77
63
|
if (!availableBooleanFunctions.includes(boolFnName)) {
|
|
78
64
|
return false;
|
|
@@ -3,5 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
const React = tslib_1.__importStar(require("react"));
|
|
5
5
|
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
-
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props
|
|
7
|
-
React.createElement("path", { d: "
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
+
React.createElement("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z" })));
|
package/src/env.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.default = {
|
|
4
4
|
INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
|
|
5
|
-
PUBLISH_TIMESTAMP:
|
|
6
|
-
VERSION: "18.0.0-canary.
|
|
5
|
+
PUBLISH_TIMESTAMP: 1711118652410 || Date.now(),
|
|
6
|
+
VERSION: "18.0.0-canary.13" || '--current-version--',
|
|
7
7
|
};
|
|
@@ -382,11 +382,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
382
382
|
kind: string;
|
|
383
383
|
desc: string;
|
|
384
384
|
isOpt: boolean;
|
|
385
|
+
ref?: undefined;
|
|
385
386
|
} | {
|
|
386
387
|
name: string;
|
|
387
388
|
kind: string;
|
|
388
389
|
desc: string;
|
|
389
390
|
isOpt?: undefined;
|
|
391
|
+
ref?: undefined;
|
|
392
|
+
} | {
|
|
393
|
+
name: string;
|
|
394
|
+
kind: string;
|
|
395
|
+
desc: string;
|
|
396
|
+
isOpt: boolean;
|
|
397
|
+
ref: string;
|
|
390
398
|
})[];
|
|
391
399
|
};
|
|
392
400
|
AdaptableComparerFunction: {
|
|
@@ -1919,6 +1927,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1919
1927
|
desc: string;
|
|
1920
1928
|
}[];
|
|
1921
1929
|
};
|
|
1930
|
+
ColumnTypesContext: {
|
|
1931
|
+
name: string;
|
|
1932
|
+
kind: string;
|
|
1933
|
+
desc: string;
|
|
1934
|
+
};
|
|
1922
1935
|
ColumnValuesComparer: {
|
|
1923
1936
|
name: string;
|
|
1924
1937
|
kind: string;
|
|
@@ -1939,8 +1952,25 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1939
1952
|
name: string;
|
|
1940
1953
|
kind: string;
|
|
1941
1954
|
desc: string;
|
|
1955
|
+
props: {
|
|
1956
|
+
name: string;
|
|
1957
|
+
kind: string;
|
|
1958
|
+
desc: string;
|
|
1959
|
+
ref: string;
|
|
1960
|
+
}[];
|
|
1961
|
+
};
|
|
1962
|
+
CommentOptions: {
|
|
1963
|
+
name: string;
|
|
1964
|
+
kind: string;
|
|
1965
|
+
desc: string;
|
|
1966
|
+
props: {
|
|
1967
|
+
name: string;
|
|
1968
|
+
kind: string;
|
|
1969
|
+
desc: string;
|
|
1970
|
+
isOpt: boolean;
|
|
1971
|
+
}[];
|
|
1942
1972
|
};
|
|
1943
|
-
|
|
1973
|
+
CommentState: {
|
|
1944
1974
|
name: string;
|
|
1945
1975
|
kind: string;
|
|
1946
1976
|
desc: string;
|
|
@@ -1951,6 +1981,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1951
1981
|
isOpt: boolean;
|
|
1952
1982
|
}[];
|
|
1953
1983
|
};
|
|
1984
|
+
CommentThread: {
|
|
1985
|
+
name: string;
|
|
1986
|
+
kind: string;
|
|
1987
|
+
desc: string;
|
|
1988
|
+
props: ({
|
|
1989
|
+
name: string;
|
|
1990
|
+
kind: string;
|
|
1991
|
+
desc: string;
|
|
1992
|
+
isOpt?: undefined;
|
|
1993
|
+
ref?: undefined;
|
|
1994
|
+
} | {
|
|
1995
|
+
name: string;
|
|
1996
|
+
kind: string;
|
|
1997
|
+
desc: string;
|
|
1998
|
+
isOpt: boolean;
|
|
1999
|
+
ref: string;
|
|
2000
|
+
})[];
|
|
2001
|
+
};
|
|
1954
2002
|
CompatibleContext: {
|
|
1955
2003
|
name: string;
|
|
1956
2004
|
kind: string;
|
|
@@ -2872,10 +2920,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2872
2920
|
kind: string;
|
|
2873
2921
|
desc: string;
|
|
2874
2922
|
isOpt: boolean;
|
|
2923
|
+
ref?: undefined;
|
|
2924
|
+
} | {
|
|
2925
|
+
name: string;
|
|
2926
|
+
kind: string;
|
|
2927
|
+
desc: string;
|
|
2928
|
+
isOpt?: undefined;
|
|
2929
|
+
ref?: undefined;
|
|
2875
2930
|
} | {
|
|
2876
2931
|
name: string;
|
|
2877
2932
|
kind: string;
|
|
2878
2933
|
desc: string;
|
|
2934
|
+
ref: string;
|
|
2879
2935
|
isOpt?: undefined;
|
|
2880
2936
|
})[];
|
|
2881
2937
|
};
|
|
@@ -3893,21 +3949,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3893
3949
|
name: string;
|
|
3894
3950
|
kind: string;
|
|
3895
3951
|
desc: string;
|
|
3896
|
-
props:
|
|
3897
|
-
name: string;
|
|
3898
|
-
kind: string;
|
|
3899
|
-
desc: string;
|
|
3900
|
-
isOpt: boolean;
|
|
3901
|
-
gridInfo?: undefined;
|
|
3902
|
-
defVal?: undefined;
|
|
3903
|
-
} | {
|
|
3952
|
+
props: {
|
|
3904
3953
|
name: string;
|
|
3905
3954
|
kind: string;
|
|
3906
3955
|
desc: string;
|
|
3907
3956
|
isOpt: boolean;
|
|
3908
|
-
|
|
3909
|
-
defVal: string;
|
|
3910
|
-
})[];
|
|
3957
|
+
}[];
|
|
3911
3958
|
};
|
|
3912
3959
|
MenuOrderContext: {
|
|
3913
3960
|
name: string;
|
|
@@ -3979,8 +4026,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3979
4026
|
name: string;
|
|
3980
4027
|
kind: string;
|
|
3981
4028
|
desc: string;
|
|
4029
|
+
props: {
|
|
4030
|
+
name: string;
|
|
4031
|
+
kind: string;
|
|
4032
|
+
desc: string;
|
|
4033
|
+
ref: string;
|
|
4034
|
+
}[];
|
|
3982
4035
|
};
|
|
3983
|
-
|
|
4036
|
+
NoteOptions: {
|
|
3984
4037
|
name: string;
|
|
3985
4038
|
kind: string;
|
|
3986
4039
|
desc: string;
|
|
@@ -3991,7 +4044,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3991
4044
|
isOpt: boolean;
|
|
3992
4045
|
}[];
|
|
3993
4046
|
};
|
|
3994
|
-
|
|
4047
|
+
NoteState: {
|
|
3995
4048
|
name: string;
|
|
3996
4049
|
kind: string;
|
|
3997
4050
|
desc: string;
|
|
@@ -4714,6 +4767,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4714
4767
|
ref?: undefined;
|
|
4715
4768
|
})[];
|
|
4716
4769
|
};
|
|
4770
|
+
RowSummary: {
|
|
4771
|
+
name: string;
|
|
4772
|
+
kind: string;
|
|
4773
|
+
desc: string;
|
|
4774
|
+
};
|
|
4775
|
+
RowSummaryPosition: {
|
|
4776
|
+
name: string;
|
|
4777
|
+
kind: string;
|
|
4778
|
+
desc: string;
|
|
4779
|
+
};
|
|
4717
4780
|
Schedule: {
|
|
4718
4781
|
name: string;
|
|
4719
4782
|
kind: string;
|