@adaptabletools/adaptable-cjs 22.1.0-canary.1 → 22.1.1-canary.0
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/index.css +8 -9
- package/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
- package/src/AdaptableOptions/AdaptableOptions.d.ts +2 -21
- package/src/AdaptableOptions/AlertOptions.d.ts +0 -5
- package/src/AdaptableOptions/CellSummaryOptions.d.ts +2 -0
- package/src/AdaptableOptions/ChartingOptions.d.ts +2 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +0 -2
- package/src/AdaptableOptions/CommentOptions.d.ts +6 -0
- package/src/AdaptableOptions/ContainerOptions.d.ts +0 -6
- package/src/AdaptableOptions/DashboardOptions.d.ts +0 -2
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +0 -2
- package/src/AdaptableOptions/DataSetOptions.d.ts +2 -0
- package/src/AdaptableOptions/DefaultAdaptableOptions.js +34 -2
- package/src/AdaptableOptions/EditOptions.d.ts +0 -1
- package/src/AdaptableOptions/EntitlementOptions.d.ts +0 -2
- package/src/AdaptableOptions/ExportOptions.d.ts +1 -7
- package/src/AdaptableOptions/ExpressionOptions.d.ts +0 -18
- package/src/AdaptableOptions/Fdc3Options.d.ts +5 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +3 -18
- package/src/AdaptableOptions/NoteOptions.d.ts +6 -0
- package/src/AdaptableOptions/NotificationsOptions.d.ts +0 -10
- package/src/AdaptableOptions/PredicateOptions.d.ts +12 -1
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +0 -4
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +15 -5
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +0 -4
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -1
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +6 -7
- package/src/AdaptableState/Common/AdaptableFormat.d.ts +9 -0
- package/src/AdaptableState/Common/AdaptableFormatPresets.d.ts +31 -0
- package/src/AdaptableState/Common/AdaptableFormatPresets.js +186 -0
- package/src/AdaptableState/Common/Menu.d.ts +1 -1
- package/src/AdaptableState/Common/Menu.js +2 -0
- package/src/AdaptableState/FormatColumnState.d.ts +6 -3
- package/src/Api/EventApi.d.ts +6 -6
- package/src/Api/Implementation/EntitlementApiImpl.js +5 -4
- package/src/Api/Implementation/FormatColumnApiImpl.js +8 -3
- package/src/Api/Implementation/GridApiImpl.js +1 -12
- package/src/Api/Internal/FormatColumnInternalApi.js +4 -2
- package/src/Api/Internal/LayoutInternalApi.js +5 -2
- package/src/Redux/Store/AdaptableStore.js +4 -4
- package/src/Strategy/AdaptableModuleBase.js +8 -7
- package/src/Strategy/AlertModule.d.ts +1 -1
- package/src/Strategy/BulkUpdateModule.d.ts +1 -1
- package/src/Strategy/BulkUpdateModule.js +2 -1
- package/src/Strategy/CalculatedColumnModule.d.ts +1 -1
- package/src/Strategy/CellSummaryModule.d.ts +1 -1
- package/src/Strategy/CellSummaryModule.js +2 -1
- package/src/Strategy/ColumnFilterModule.js +7 -3
- package/src/Strategy/ColumnInfoModule.d.ts +1 -1
- package/src/Strategy/ColumnInfoModule.js +2 -1
- package/src/Strategy/CommentModule.d.ts +1 -1
- package/src/Strategy/CommentModule.js +12 -2
- package/src/Strategy/ExportModule.d.ts +1 -1
- package/src/Strategy/Fdc3Module.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/GridFilterModule.js +2 -1
- package/src/Strategy/GridInfoModule.d.ts +1 -1
- package/src/Strategy/GridInfoModule.js +2 -1
- package/src/Strategy/LayoutModule.d.ts +1 -1
- package/src/Strategy/NamedQueryModule.js +0 -16
- package/src/Strategy/NoteModule.d.ts +1 -1
- package/src/Strategy/NoteModule.js +16 -3
- package/src/Strategy/PlusMinusModule.js +8 -2
- package/src/Strategy/ScheduleModule.js +5 -4
- package/src/Strategy/SettingsPanelModule.d.ts +1 -1
- package/src/Strategy/ShortcutModule.js +5 -4
- package/src/Strategy/SmartEditModule.d.ts +1 -1
- package/src/Strategy/SmartEditModule.js +4 -4
- package/src/Strategy/SystemStatusModule.d.ts +1 -1
- package/src/Utilities/Constants/GeneralConstants.d.ts +4 -0
- package/src/Utilities/Constants/GeneralConstants.js +5 -1
- package/src/Utilities/Extensions/NumberExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/NumberExtensions.js +9 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +3 -2
- package/src/Utilities/Helpers/FormatHelper.js +26 -15
- package/src/Utilities/Services/AnnotationsService.js +10 -1
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +0 -1
- package/src/Utilities/Services/MetamodelService.d.ts +0 -2
- package/src/Utilities/Services/MetamodelService.js +6 -12
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +7 -6
- package/src/View/Alert/AlertEmptyView.js +2 -1
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -1
- package/src/View/Comments/CommentsEditor.js +2 -1
- package/src/View/Comments/CommentsPopup.js +3 -1
- package/src/View/Components/Buttons/ButtonBase/index.js +3 -2
- package/src/View/Components/Buttons/EntityListActionButtons.js +7 -6
- package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.js +2 -1
- package/src/View/Components/ColumnFilter/components/ColumnFilterInput.js +3 -2
- package/src/View/Components/ColumnFilter/components/ColumnFilterInputList.js +4 -1
- package/src/View/Components/Panels/PanelDashboard/index.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -1
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +2 -1
- package/src/View/Dashboard/CustomDashboardButton.js +3 -2
- package/src/View/Dashboard/Dashboard.js +3 -2
- package/src/View/Dashboard/DashboardPopup.js +3 -2
- package/src/View/Dashboard/PinnedToolbarsSelector.js +2 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -1
- package/src/View/Export/ExportViewPanel.js +3 -1
- package/src/View/Filter/FilterViewPanel.js +2 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +137 -181
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +20 -8
- package/src/View/GridFilter/GridFilterPopupUI/index.d.ts +3 -2
- package/src/View/GridFilter/GridFilterPopupUI/index.js +2 -1
- package/src/View/GridFilter/GridFilterViewPanel.js +3 -2
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +179 -6
- package/src/View/Layout/LayoutCloneButton.js +2 -1
- package/src/View/Layout/LayoutViewPanel.js +3 -1
- package/src/View/Layout/TransposedPopup.js +2 -1
- package/src/View/Layout/Wizard/sections/RowSelectionSection.js +6 -6
- package/src/View/Note/NotePopup.js +3 -1
- package/src/View/SmartEdit/SmartEditViewPanel.js +2 -1
- package/src/View/StateManagement/StateManagementViewPanel.js +3 -1
- package/src/View/StatusBar/StatusBarPopup.js +2 -1
- package/src/View/Theme/ThemeEditor.js +2 -1
- package/src/View/Theme/ThemePopup.js +2 -1
- package/src/View/Theme/ThemeSelector.js +3 -1
- package/src/View/Theme/ThemeViewPanel.js +3 -1
- package/src/View/Wizard/OnePageWizards.js +3 -2
- package/src/agGrid/AdaptableAgGrid.d.ts +2 -2
- package/src/agGrid/AdaptableAgGrid.js +7 -29
- package/src/agGrid/AgGridAdapter.js +1 -1
- package/src/agGrid/AgGridColumnAdapter.js +11 -4
- package/src/agGrid/AgGridExportAdapter.js +4 -2
- package/src/agGrid/cellRenderers/ActionColumnRenderer.js +2 -1
- package/src/components/Dashboard/Dashboard.js +2 -1
- package/src/components/Dashboard/DashboardToolbar.js +2 -1
- package/src/components/Datepicker/index.js +2 -1
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +1 -1
- package/src/components/Select/Select.js +4 -3
- package/src/components/SimpleButton/index.js +3 -2
- package/src/env.js +2 -2
- package/src/metamodel/adaptable-metamodel-model.d.ts +0 -2
- package/src/metamodel/adaptable.metamodel.d.ts +10 -197
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +2 -0
- package/src/types.js +5 -1
- package/themes/dark.css +3 -1
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/index.css.map +0 -1
|
@@ -7,6 +7,7 @@ const React = tslib_1.__importStar(require("react"));
|
|
|
7
7
|
const useRerender_1 = require("../../components/utils/useRerender");
|
|
8
8
|
const renderWithAdaptableContext_1 = require("../../View/renderWithAdaptableContext");
|
|
9
9
|
const LayoutRedux_1 = require("../../Redux/ActionsReducers/LayoutRedux");
|
|
10
|
+
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
10
11
|
const ActionButtons = (props) => {
|
|
11
12
|
const { buttons, adaptableApi, context, rerender } = props;
|
|
12
13
|
return (React.createElement(React.Fragment, null, buttons.map((button, index) => {
|
|
@@ -34,7 +35,7 @@ const ActionButtons = (props) => {
|
|
|
34
35
|
button.icon?.name ??
|
|
35
36
|
button.tooltip ??
|
|
36
37
|
`${index + 1}`;
|
|
37
|
-
return (React.createElement(SimpleButton_1.default, { key: button.Uuid, "data-name": `action-button-${identifier}`, variant: buttonStyle?.variant ?? 'text', disabled: disabled, tooltip: buttonTooltip, icon: buttonIcon, tone: buttonStyle?.tone ?? 'none', onClick: handleClick, className: buttonStyle?.className, accessLevel:
|
|
38
|
+
return (React.createElement(SimpleButton_1.default, { key: button.Uuid, "data-name": `action-button-${identifier}`, variant: buttonStyle?.variant ?? 'text', disabled: disabled, tooltip: buttonTooltip, icon: buttonIcon, tone: buttonStyle?.tone ?? 'none', onClick: handleClick, className: buttonStyle?.className, accessLevel: GeneralConstants_1.ACCESS_LEVEL_FULL }, buttonLabel));
|
|
38
39
|
})));
|
|
39
40
|
};
|
|
40
41
|
const ReactActionColumnRenderer = (props) => {
|
|
@@ -8,6 +8,7 @@ const join_1 = tslib_1.__importDefault(require("../utils/join"));
|
|
|
8
8
|
const useProperty_1 = tslib_1.__importDefault(require("../utils/useProperty"));
|
|
9
9
|
const DashboardToolbar_1 = require("./DashboardToolbar");
|
|
10
10
|
const DropdownButton_1 = tslib_1.__importDefault(require("../DropdownButton"));
|
|
11
|
+
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
11
12
|
function Dashboard(props) {
|
|
12
13
|
const { title, children, left, right, onShowDashboardPopup } = props;
|
|
13
14
|
const [activeTabIndex, setActiveTabIndex] = (0, useProperty_1.default)(props, 'activeTabIndex', 0);
|
|
@@ -68,7 +69,7 @@ function Dashboard(props) {
|
|
|
68
69
|
!floating && renderTabs()),
|
|
69
70
|
floating ? (React.createElement("div", { className: "ab-Dashboard__title", ref: handleRef, key: "title-drag", style: { cursor: 'move' } }, title)) : (React.createElement("div", { className: "ab-Dashboard__title", key: "title" }, title)),
|
|
70
71
|
React.createElement("div", { className: "ab-Dashboard__header-right" }, right)));
|
|
71
|
-
const renderHomeToolbar = () => (React.createElement(DashboardToolbar_1.DashboardToolbar, { onConfigure: onShowDashboardPopup, className: "ab-Dashboard__home-toolbar", title: title, tooltip: `Configure Dashboard`, showConfigure: true, showClose: false, accessLevel:
|
|
72
|
+
const renderHomeToolbar = () => (React.createElement(DashboardToolbar_1.DashboardToolbar, { onConfigure: onShowDashboardPopup, className: "ab-Dashboard__home-toolbar", title: title, tooltip: `Configure Dashboard`, showConfigure: true, showClose: false, accessLevel: GeneralConstants_1.ACCESS_LEVEL_FULL },
|
|
72
73
|
left,
|
|
73
74
|
right,
|
|
74
75
|
children && children.length > 1,
|
|
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
6
|
const SimpleButton_1 = tslib_1.__importDefault(require("../SimpleButton"));
|
|
7
7
|
const join_1 = tslib_1.__importDefault(require("../utils/join"));
|
|
8
|
+
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
8
9
|
const Flex_1 = require("../Flex");
|
|
9
10
|
function DashboardToolbar(props) {
|
|
10
11
|
return (React.createElement("div", { className: (0, join_1.default)('ab-Dashboard__toolbar', props.className) },
|
|
@@ -12,5 +13,5 @@ function DashboardToolbar(props) {
|
|
|
12
13
|
React.createElement(Flex_1.Flex, { className: "ab-Dashboard__toolbar-title twa:items-center twa:justify-center twa:px-2 twa:pb-1 twa:opacity-70", flexDirection: "row" },
|
|
13
14
|
React.createElement("span", { className: "twa:text-2" }, props.title),
|
|
14
15
|
props.showConfigure && (React.createElement(SimpleButton_1.default, { "aria-label": `Configure ${props.title}`, icon: "spanner", variant: "text", tone: "none", "data-name": "configure", iconSize: 16, className: "twa:ml-1", tooltip: props.tooltip || `Configure ${props.title}`, onClick: () => props.onConfigure() })),
|
|
15
|
-
props.showClose && (React.createElement(SimpleButton_1.default, { "aria-label": `Close ${props.title}`, style: { alignSelf: 'flex-end' }, disabled: props.accessLevel ==
|
|
16
|
+
props.showClose && (React.createElement(SimpleButton_1.default, { "aria-label": `Close ${props.title}`, style: { alignSelf: 'flex-end' }, disabled: props.accessLevel == GeneralConstants_1.ACCESS_LEVEL_READ_ONLY, "data-name": "close", icon: "close", variant: "text", tone: "none", iconSize: 16, className: "twa:ml-1", tooltip: props.tooltip || `Close ${props.title} Toolbar`, onClick: () => props.onClose?.() })))));
|
|
16
17
|
}
|
|
@@ -8,6 +8,7 @@ const react_1 = require("react");
|
|
|
8
8
|
const useProperty_1 = tslib_1.__importDefault(require("../utils/useProperty"));
|
|
9
9
|
const FieldWrap_1 = tslib_1.__importDefault(require("../FieldWrap"));
|
|
10
10
|
const SimpleButton_1 = tslib_1.__importDefault(require("../SimpleButton"));
|
|
11
|
+
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
11
12
|
const FormatHelper_1 = require("../../Utilities/Helpers/FormatHelper");
|
|
12
13
|
const DatepickerContext_1 = require("./DatepickerContext");
|
|
13
14
|
const react_day_picker_1 = require("react-day-picker");
|
|
@@ -113,7 +114,7 @@ exports.Datepicker = React.forwardRef((props, ref) => {
|
|
|
113
114
|
const clearButton = showClearButton !== false ? (React.createElement(SimpleButton_1.default, { "data-name": "clear", variant: "text", tooltip: "Clear", iconSize: 20, className: "twa:p-0", icon: "close", onMouseDown: (e) => {
|
|
114
115
|
e.preventDefault();
|
|
115
116
|
clearValue();
|
|
116
|
-
}, accessLevel:
|
|
117
|
+
}, accessLevel: GeneralConstants_1.ACCESS_LEVEL_FULL })) : null;
|
|
117
118
|
const calendarButton = (React.createElement(SimpleButton_1.default, { disabled: disabled, variant: "text", icon: "calendar", tooltip: "Date", iconSize: 20, className: "twa:p-0", onClick: () => setVisible(true) }));
|
|
118
119
|
const overlayDOMRef = (0, react_1.useRef)(null);
|
|
119
120
|
return (React.createElement(Flex_1.Flex, { className: "twa:flex-1" },
|
|
@@ -135,7 +135,7 @@ const PrimitiveValueInput = (props) => {
|
|
|
135
135
|
} }));
|
|
136
136
|
}
|
|
137
137
|
else if (!['date', 'boolean'].includes(props.inputType)) {
|
|
138
|
-
editor = (react_1.default.createElement(PermittedValuesSelector_1.PermittedValuesSelector, { allowNewValues: true, searchable: '
|
|
138
|
+
editor = (react_1.default.createElement(PermittedValuesSelector_1.PermittedValuesSelector, { allowNewValues: true, searchable: 'inline', value: props.value, columnId: (0, utils_1.mapColumnExpressionToColumnId)(props.lefthandColumnIdParam), onChange: (value) => {
|
|
139
139
|
props.onChange(value);
|
|
140
140
|
} }));
|
|
141
141
|
}
|
|
@@ -6,6 +6,7 @@ const date_fns_1 = require("date-fns");
|
|
|
6
6
|
const React = tslib_1.__importStar(require("react"));
|
|
7
7
|
const react_select_1 = tslib_1.__importStar(require("react-select"));
|
|
8
8
|
const creatable_1 = tslib_1.__importDefault(require("react-select/creatable"));
|
|
9
|
+
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
9
10
|
const icons_1 = require("../icons");
|
|
10
11
|
const infinite_react_1 = require("@infinite-table/infinite-react");
|
|
11
12
|
const react_1 = require("react");
|
|
@@ -195,11 +196,11 @@ const Select = function (props) {
|
|
|
195
196
|
}
|
|
196
197
|
}
|
|
197
198
|
let disabled = props.disabled ?? false;
|
|
198
|
-
const accessLevel = props.accessLevel ??
|
|
199
|
-
if (accessLevel ===
|
|
199
|
+
const accessLevel = props.accessLevel ?? GeneralConstants_1.ACCESS_LEVEL_FULL;
|
|
200
|
+
if (accessLevel === GeneralConstants_1.ACCESS_LEVEL_HIDDEN) {
|
|
200
201
|
return null;
|
|
201
202
|
}
|
|
202
|
-
if (accessLevel ===
|
|
203
|
+
if (accessLevel === GeneralConstants_1.ACCESS_LEVEL_READ_ONLY) {
|
|
203
204
|
disabled = true;
|
|
204
205
|
}
|
|
205
206
|
/**
|
|
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
6
|
const icons_1 = require("../icons");
|
|
7
7
|
const Tooltip_1 = tslib_1.__importDefault(require("../Tooltip"));
|
|
8
|
+
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
8
9
|
const Icon_1 = require("../Icon");
|
|
9
10
|
const Flex_1 = require("../Flex");
|
|
10
11
|
const clsx_1 = tslib_1.__importDefault(require("clsx"));
|
|
@@ -65,10 +66,10 @@ const SimpleButton = React.forwardRef((givenProps, theRef) => {
|
|
|
65
66
|
buttonProps.type = type ? type : 'button';
|
|
66
67
|
buttonProps.as = 'button';
|
|
67
68
|
}
|
|
68
|
-
if (accessLevel ===
|
|
69
|
+
if (accessLevel === GeneralConstants_1.ACCESS_LEVEL_HIDDEN) {
|
|
69
70
|
return null;
|
|
70
71
|
}
|
|
71
|
-
if (accessLevel ===
|
|
72
|
+
if (accessLevel === GeneralConstants_1.ACCESS_LEVEL_READ_ONLY) {
|
|
72
73
|
disabled = true;
|
|
73
74
|
}
|
|
74
75
|
const ariaLabel = buttonProps['aria-label'] ||
|
package/src/env.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.default = {
|
|
4
4
|
NEXT_PUBLIC_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: "22.1.
|
|
5
|
+
PUBLISH_TIMESTAMP: 1778764905506 || Date.now(),
|
|
6
|
+
VERSION: "22.1.1-canary.0" || '--current-version--',
|
|
7
7
|
};
|
|
@@ -20,8 +20,6 @@ export interface MetamodelItemProperty {
|
|
|
20
20
|
r?: string;
|
|
21
21
|
/** Whether the property is optional */
|
|
22
22
|
o?: boolean;
|
|
23
|
-
/** Grid Info role: 'item' or 'container' */
|
|
24
|
-
g?: 'item' | 'container';
|
|
25
23
|
/** No-Code role: 'item' or 'container' */
|
|
26
24
|
nC?: 'item' | 'container';
|
|
27
25
|
}
|
|
@@ -451,6 +451,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
451
451
|
AdaptableNotes: {
|
|
452
452
|
k: string;
|
|
453
453
|
};
|
|
454
|
+
AdaptableNumericFormatPreset: {
|
|
455
|
+
k: string;
|
|
456
|
+
};
|
|
454
457
|
AdaptableObject: {
|
|
455
458
|
k: string;
|
|
456
459
|
p: ({
|
|
@@ -497,7 +500,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
497
500
|
o: boolean;
|
|
498
501
|
d?: undefined;
|
|
499
502
|
nC?: undefined;
|
|
500
|
-
g?: undefined;
|
|
501
503
|
r?: undefined;
|
|
502
504
|
} | {
|
|
503
505
|
n: string;
|
|
@@ -505,15 +507,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
505
507
|
d: string;
|
|
506
508
|
nC: string;
|
|
507
509
|
o: boolean;
|
|
508
|
-
g: string;
|
|
509
|
-
r?: undefined;
|
|
510
|
-
} | {
|
|
511
|
-
n: string;
|
|
512
|
-
k: string;
|
|
513
|
-
o: boolean;
|
|
514
|
-
g: string;
|
|
515
|
-
d?: undefined;
|
|
516
|
-
nC?: undefined;
|
|
517
510
|
r?: undefined;
|
|
518
511
|
} | {
|
|
519
512
|
n: string;
|
|
@@ -522,7 +515,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
522
515
|
r: string;
|
|
523
516
|
d?: undefined;
|
|
524
517
|
nC?: undefined;
|
|
525
|
-
g?: undefined;
|
|
526
518
|
} | {
|
|
527
519
|
n: string;
|
|
528
520
|
k: string;
|
|
@@ -530,31 +522,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
530
522
|
nC: string;
|
|
531
523
|
o: boolean;
|
|
532
524
|
r: string;
|
|
533
|
-
g?: undefined;
|
|
534
|
-
} | {
|
|
535
|
-
n: string;
|
|
536
|
-
k: string;
|
|
537
|
-
d: string;
|
|
538
|
-
nC: string;
|
|
539
|
-
o: boolean;
|
|
540
|
-
g: string;
|
|
541
|
-
r: string;
|
|
542
|
-
} | {
|
|
543
|
-
n: string;
|
|
544
|
-
k: string;
|
|
545
|
-
o: boolean;
|
|
546
|
-
g: string;
|
|
547
|
-
r: string;
|
|
548
|
-
d?: undefined;
|
|
549
|
-
nC?: undefined;
|
|
550
|
-
} | {
|
|
551
|
-
n: string;
|
|
552
|
-
k: string;
|
|
553
|
-
d: string;
|
|
554
|
-
nC: string;
|
|
555
|
-
o: boolean;
|
|
556
|
-
g?: undefined;
|
|
557
|
-
r?: undefined;
|
|
558
525
|
} | {
|
|
559
526
|
n: string;
|
|
560
527
|
k: string;
|
|
@@ -562,11 +529,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
562
529
|
o?: undefined;
|
|
563
530
|
d?: undefined;
|
|
564
531
|
nC?: undefined;
|
|
565
|
-
g?: undefined;
|
|
566
532
|
} | {
|
|
567
533
|
n: string;
|
|
568
534
|
k: string;
|
|
569
|
-
g: string;
|
|
570
535
|
o?: undefined;
|
|
571
536
|
d?: undefined;
|
|
572
537
|
nC?: undefined;
|
|
@@ -1012,16 +977,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1012
977
|
n: string;
|
|
1013
978
|
k: string;
|
|
1014
979
|
o: boolean;
|
|
1015
|
-
g?: undefined;
|
|
1016
|
-
r?: undefined;
|
|
1017
|
-
d?: undefined;
|
|
1018
|
-
nC?: undefined;
|
|
1019
|
-
l?: undefined;
|
|
1020
|
-
} | {
|
|
1021
|
-
n: string;
|
|
1022
|
-
k: string;
|
|
1023
|
-
o: boolean;
|
|
1024
|
-
g: string;
|
|
1025
980
|
r?: undefined;
|
|
1026
981
|
d?: undefined;
|
|
1027
982
|
nC?: undefined;
|
|
@@ -1030,7 +985,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1030
985
|
n: string;
|
|
1031
986
|
k: string;
|
|
1032
987
|
o: boolean;
|
|
1033
|
-
g: string;
|
|
1034
988
|
r: string;
|
|
1035
989
|
d?: undefined;
|
|
1036
990
|
nC?: undefined;
|
|
@@ -1041,7 +995,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1041
995
|
d: string;
|
|
1042
996
|
nC: string;
|
|
1043
997
|
o: boolean;
|
|
1044
|
-
g: string;
|
|
1045
998
|
r?: undefined;
|
|
1046
999
|
l?: undefined;
|
|
1047
1000
|
} | {
|
|
@@ -1051,7 +1004,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1051
1004
|
l: string;
|
|
1052
1005
|
nC: string;
|
|
1053
1006
|
o: boolean;
|
|
1054
|
-
g: string;
|
|
1055
1007
|
r?: undefined;
|
|
1056
1008
|
})[];
|
|
1057
1009
|
};
|
|
@@ -1577,14 +1529,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1577
1529
|
n: string;
|
|
1578
1530
|
k: string;
|
|
1579
1531
|
o: boolean;
|
|
1580
|
-
g: string;
|
|
1581
|
-
d?: undefined;
|
|
1582
|
-
nC?: undefined;
|
|
1583
|
-
} | {
|
|
1584
|
-
n: string;
|
|
1585
|
-
k: string;
|
|
1586
|
-
o: boolean;
|
|
1587
|
-
g?: undefined;
|
|
1588
1532
|
d?: undefined;
|
|
1589
1533
|
nC?: undefined;
|
|
1590
1534
|
} | {
|
|
@@ -1593,14 +1537,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1593
1537
|
d: string;
|
|
1594
1538
|
nC: string;
|
|
1595
1539
|
o: boolean;
|
|
1596
|
-
g: string;
|
|
1597
|
-
} | {
|
|
1598
|
-
n: string;
|
|
1599
|
-
k: string;
|
|
1600
|
-
d: string;
|
|
1601
|
-
nC: string;
|
|
1602
|
-
o: boolean;
|
|
1603
|
-
g?: undefined;
|
|
1604
1540
|
})[];
|
|
1605
1541
|
};
|
|
1606
1542
|
ColumnFilterPredicate: {
|
|
@@ -1665,14 +1601,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1665
1601
|
d: string;
|
|
1666
1602
|
nC: string;
|
|
1667
1603
|
o: boolean;
|
|
1668
|
-
g: string;
|
|
1669
1604
|
} | {
|
|
1670
1605
|
n: string;
|
|
1671
1606
|
k: string;
|
|
1672
1607
|
o: boolean;
|
|
1673
1608
|
d?: undefined;
|
|
1674
1609
|
nC?: undefined;
|
|
1675
|
-
g?: undefined;
|
|
1676
1610
|
})[];
|
|
1677
1611
|
};
|
|
1678
1612
|
ColumnScope: {
|
|
@@ -1787,7 +1721,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1787
1721
|
n: string;
|
|
1788
1722
|
k: string;
|
|
1789
1723
|
o: boolean;
|
|
1790
|
-
g: string;
|
|
1791
1724
|
}[];
|
|
1792
1725
|
};
|
|
1793
1726
|
ContextMenuApi: {
|
|
@@ -2231,14 +2164,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2231
2164
|
nC: string;
|
|
2232
2165
|
o: boolean;
|
|
2233
2166
|
r: string;
|
|
2234
|
-
g?: undefined;
|
|
2235
2167
|
} | {
|
|
2236
2168
|
n: string;
|
|
2237
2169
|
k: string;
|
|
2238
2170
|
d: string;
|
|
2239
2171
|
nC: string;
|
|
2240
2172
|
o: boolean;
|
|
2241
|
-
g: string;
|
|
2242
2173
|
r?: undefined;
|
|
2243
2174
|
} | {
|
|
2244
2175
|
n: string;
|
|
@@ -2247,7 +2178,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2247
2178
|
d?: undefined;
|
|
2248
2179
|
nC?: undefined;
|
|
2249
2180
|
r?: undefined;
|
|
2250
|
-
g?: undefined;
|
|
2251
2181
|
})[];
|
|
2252
2182
|
};
|
|
2253
2183
|
DashboardState: {
|
|
@@ -2304,21 +2234,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2304
2234
|
d: string;
|
|
2305
2235
|
nC: string;
|
|
2306
2236
|
o: boolean;
|
|
2307
|
-
g: string;
|
|
2308
2237
|
} | {
|
|
2309
2238
|
n: string;
|
|
2310
2239
|
k: string;
|
|
2311
2240
|
o: boolean;
|
|
2312
2241
|
d?: undefined;
|
|
2313
2242
|
nC?: undefined;
|
|
2314
|
-
g?: undefined;
|
|
2315
|
-
} | {
|
|
2316
|
-
n: string;
|
|
2317
|
-
k: string;
|
|
2318
|
-
o: boolean;
|
|
2319
|
-
g: string;
|
|
2320
|
-
d?: undefined;
|
|
2321
|
-
nC?: undefined;
|
|
2322
2243
|
})[];
|
|
2323
2244
|
};
|
|
2324
2245
|
DataFormatDataType: {
|
|
@@ -2491,6 +2412,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2491
2412
|
k: string;
|
|
2492
2413
|
}[];
|
|
2493
2414
|
};
|
|
2415
|
+
DisplayFormat: {
|
|
2416
|
+
k: string;
|
|
2417
|
+
};
|
|
2494
2418
|
EditedRowInfo: {
|
|
2495
2419
|
k: string;
|
|
2496
2420
|
p: ({
|
|
@@ -2505,17 +2429,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2505
2429
|
};
|
|
2506
2430
|
EditOptions: {
|
|
2507
2431
|
k: string;
|
|
2508
|
-
p:
|
|
2509
|
-
n: string;
|
|
2510
|
-
k: string;
|
|
2511
|
-
o: boolean;
|
|
2512
|
-
g?: undefined;
|
|
2513
|
-
} | {
|
|
2432
|
+
p: {
|
|
2514
2433
|
n: string;
|
|
2515
2434
|
k: string;
|
|
2516
2435
|
o: boolean;
|
|
2517
|
-
|
|
2518
|
-
})[];
|
|
2436
|
+
}[];
|
|
2519
2437
|
};
|
|
2520
2438
|
EditRowFormContext: {
|
|
2521
2439
|
k: string;
|
|
@@ -2553,7 +2471,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2553
2471
|
n: string;
|
|
2554
2472
|
k: string;
|
|
2555
2473
|
o: boolean;
|
|
2556
|
-
g: string;
|
|
2557
2474
|
}[];
|
|
2558
2475
|
};
|
|
2559
2476
|
EvaluateExpressionExternallyContext: {
|
|
@@ -2624,17 +2541,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2624
2541
|
};
|
|
2625
2542
|
ExportOptions: {
|
|
2626
2543
|
k: string;
|
|
2627
|
-
p:
|
|
2628
|
-
n: string;
|
|
2629
|
-
k: string;
|
|
2630
|
-
o: boolean;
|
|
2631
|
-
g: string;
|
|
2632
|
-
} | {
|
|
2544
|
+
p: {
|
|
2633
2545
|
n: string;
|
|
2634
2546
|
k: string;
|
|
2635
2547
|
o: boolean;
|
|
2636
|
-
|
|
2637
|
-
})[];
|
|
2548
|
+
}[];
|
|
2638
2549
|
};
|
|
2639
2550
|
ExportResultData: {
|
|
2640
2551
|
k: string;
|
|
@@ -2723,28 +2634,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2723
2634
|
d: string;
|
|
2724
2635
|
nC: string;
|
|
2725
2636
|
o: boolean;
|
|
2726
|
-
g: string;
|
|
2727
|
-
} | {
|
|
2728
|
-
n: string;
|
|
2729
|
-
k: string;
|
|
2730
|
-
o: boolean;
|
|
2731
|
-
d?: undefined;
|
|
2732
|
-
nC?: undefined;
|
|
2733
|
-
g?: undefined;
|
|
2734
2637
|
} | {
|
|
2735
2638
|
n: string;
|
|
2736
2639
|
k: string;
|
|
2737
2640
|
o: boolean;
|
|
2738
|
-
g: string;
|
|
2739
2641
|
d?: undefined;
|
|
2740
2642
|
nC?: undefined;
|
|
2741
|
-
} | {
|
|
2742
|
-
n: string;
|
|
2743
|
-
k: string;
|
|
2744
|
-
d: string;
|
|
2745
|
-
nC: string;
|
|
2746
|
-
o: boolean;
|
|
2747
|
-
g?: undefined;
|
|
2748
2643
|
})[];
|
|
2749
2644
|
};
|
|
2750
2645
|
ExtendedLayout: {
|
|
@@ -2955,7 +2850,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2955
2850
|
d: string;
|
|
2956
2851
|
nC: string;
|
|
2957
2852
|
o: boolean;
|
|
2958
|
-
g: string;
|
|
2959
2853
|
r?: undefined;
|
|
2960
2854
|
} | {
|
|
2961
2855
|
n: string;
|
|
@@ -2964,30 +2858,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2964
2858
|
r: string;
|
|
2965
2859
|
d?: undefined;
|
|
2966
2860
|
nC?: undefined;
|
|
2967
|
-
g?: undefined;
|
|
2968
2861
|
} | {
|
|
2969
2862
|
n: string;
|
|
2970
2863
|
k: string;
|
|
2971
2864
|
o: boolean;
|
|
2972
2865
|
d?: undefined;
|
|
2973
2866
|
nC?: undefined;
|
|
2974
|
-
g?: undefined;
|
|
2975
|
-
r?: undefined;
|
|
2976
|
-
} | {
|
|
2977
|
-
n: string;
|
|
2978
|
-
k: string;
|
|
2979
|
-
o: boolean;
|
|
2980
|
-
g: string;
|
|
2981
|
-
d?: undefined;
|
|
2982
|
-
nC?: undefined;
|
|
2983
|
-
r?: undefined;
|
|
2984
|
-
} | {
|
|
2985
|
-
n: string;
|
|
2986
|
-
k: string;
|
|
2987
|
-
d: string;
|
|
2988
|
-
nC: string;
|
|
2989
|
-
o: boolean;
|
|
2990
|
-
g?: undefined;
|
|
2991
2867
|
r?: undefined;
|
|
2992
2868
|
})[];
|
|
2993
2869
|
};
|
|
@@ -3649,7 +3525,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3649
3525
|
n: string;
|
|
3650
3526
|
k: string;
|
|
3651
3527
|
o: boolean;
|
|
3652
|
-
g: string;
|
|
3653
3528
|
}[];
|
|
3654
3529
|
};
|
|
3655
3530
|
ModuleExpressionFunctionsContext: {
|
|
@@ -3727,20 +3602,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3727
3602
|
n: string;
|
|
3728
3603
|
k: string;
|
|
3729
3604
|
o: boolean;
|
|
3730
|
-
g: string;
|
|
3731
3605
|
r?: undefined;
|
|
3732
3606
|
} | {
|
|
3733
3607
|
n: string;
|
|
3734
3608
|
k: string;
|
|
3735
3609
|
o: boolean;
|
|
3736
|
-
g: string;
|
|
3737
3610
|
r: string;
|
|
3738
|
-
} | {
|
|
3739
|
-
n: string;
|
|
3740
|
-
k: string;
|
|
3741
|
-
o: boolean;
|
|
3742
|
-
g?: undefined;
|
|
3743
|
-
r?: undefined;
|
|
3744
3611
|
})[];
|
|
3745
3612
|
};
|
|
3746
3613
|
NumberFormatterOptions: {
|
|
@@ -3996,21 +3863,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3996
3863
|
d: string;
|
|
3997
3864
|
nC: string;
|
|
3998
3865
|
o: boolean;
|
|
3999
|
-
g: string;
|
|
4000
3866
|
} | {
|
|
4001
3867
|
n: string;
|
|
4002
3868
|
k: string;
|
|
4003
3869
|
o: boolean;
|
|
4004
3870
|
d?: undefined;
|
|
4005
3871
|
nC?: undefined;
|
|
4006
|
-
g?: undefined;
|
|
4007
|
-
} | {
|
|
4008
|
-
n: string;
|
|
4009
|
-
k: string;
|
|
4010
|
-
d: string;
|
|
4011
|
-
nC: string;
|
|
4012
|
-
o: boolean;
|
|
4013
|
-
g?: undefined;
|
|
4014
3872
|
})[];
|
|
4015
3873
|
};
|
|
4016
3874
|
PredicatesOperator: {
|
|
@@ -4072,7 +3930,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4072
3930
|
n: string;
|
|
4073
3931
|
k: string;
|
|
4074
3932
|
o: boolean;
|
|
4075
|
-
g: string;
|
|
4076
3933
|
d?: undefined;
|
|
4077
3934
|
nC?: undefined;
|
|
4078
3935
|
} | {
|
|
@@ -4081,14 +3938,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4081
3938
|
d: string;
|
|
4082
3939
|
nC: string;
|
|
4083
3940
|
o: boolean;
|
|
4084
|
-
g: string;
|
|
4085
|
-
} | {
|
|
4086
|
-
n: string;
|
|
4087
|
-
k: string;
|
|
4088
|
-
o: boolean;
|
|
4089
|
-
g?: undefined;
|
|
4090
|
-
d?: undefined;
|
|
4091
|
-
nC?: undefined;
|
|
4092
3941
|
})[];
|
|
4093
3942
|
};
|
|
4094
3943
|
QuickSearchState: {
|
|
@@ -4489,7 +4338,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4489
4338
|
d: string;
|
|
4490
4339
|
nC: string;
|
|
4491
4340
|
o: boolean;
|
|
4492
|
-
g: string;
|
|
4493
4341
|
r?: undefined;
|
|
4494
4342
|
} | {
|
|
4495
4343
|
n: string;
|
|
@@ -4497,7 +4345,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4497
4345
|
o: boolean;
|
|
4498
4346
|
d?: undefined;
|
|
4499
4347
|
nC?: undefined;
|
|
4500
|
-
g?: undefined;
|
|
4501
4348
|
r?: undefined;
|
|
4502
4349
|
} | {
|
|
4503
4350
|
n: string;
|
|
@@ -4506,15 +4353,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4506
4353
|
r: string;
|
|
4507
4354
|
d?: undefined;
|
|
4508
4355
|
nC?: undefined;
|
|
4509
|
-
g?: undefined;
|
|
4510
|
-
} | {
|
|
4511
|
-
n: string;
|
|
4512
|
-
k: string;
|
|
4513
|
-
o: boolean;
|
|
4514
|
-
g: string;
|
|
4515
|
-
d?: undefined;
|
|
4516
|
-
nC?: undefined;
|
|
4517
|
-
r?: undefined;
|
|
4518
4356
|
})[];
|
|
4519
4357
|
};
|
|
4520
4358
|
SharedEntitiesContext: {
|
|
@@ -4854,22 +4692,10 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4854
4692
|
n: string;
|
|
4855
4693
|
k: string;
|
|
4856
4694
|
o: boolean;
|
|
4857
|
-
g?: undefined;
|
|
4858
4695
|
} | {
|
|
4859
4696
|
n: string;
|
|
4860
4697
|
k: string;
|
|
4861
|
-
g: string;
|
|
4862
4698
|
o?: undefined;
|
|
4863
|
-
} | {
|
|
4864
|
-
n: string;
|
|
4865
|
-
k: string;
|
|
4866
|
-
o?: undefined;
|
|
4867
|
-
g?: undefined;
|
|
4868
|
-
} | {
|
|
4869
|
-
n: string;
|
|
4870
|
-
k: string;
|
|
4871
|
-
o: boolean;
|
|
4872
|
-
g: string;
|
|
4873
4699
|
})[];
|
|
4874
4700
|
};
|
|
4875
4701
|
TeamSharingState: {
|
|
@@ -4933,14 +4759,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4933
4759
|
o: boolean;
|
|
4934
4760
|
d?: undefined;
|
|
4935
4761
|
nC?: undefined;
|
|
4936
|
-
g?: undefined;
|
|
4937
4762
|
} | {
|
|
4938
4763
|
n: string;
|
|
4939
4764
|
k: string;
|
|
4940
4765
|
d: string;
|
|
4941
4766
|
nC: string;
|
|
4942
4767
|
o: boolean;
|
|
4943
|
-
g: string;
|
|
4944
4768
|
})[];
|
|
4945
4769
|
};
|
|
4946
4770
|
ToolPanelState: {
|
|
@@ -5038,7 +4862,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5038
4862
|
r?: undefined;
|
|
5039
4863
|
d?: undefined;
|
|
5040
4864
|
nC?: undefined;
|
|
5041
|
-
g?: undefined;
|
|
5042
4865
|
} | {
|
|
5043
4866
|
n: string;
|
|
5044
4867
|
k: string;
|
|
@@ -5046,7 +4869,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5046
4869
|
r: string;
|
|
5047
4870
|
d?: undefined;
|
|
5048
4871
|
nC?: undefined;
|
|
5049
|
-
g?: undefined;
|
|
5050
4872
|
} | {
|
|
5051
4873
|
n: string;
|
|
5052
4874
|
k: string;
|
|
@@ -5054,15 +4876,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5054
4876
|
nC: string;
|
|
5055
4877
|
o: boolean;
|
|
5056
4878
|
r?: undefined;
|
|
5057
|
-
g?: undefined;
|
|
5058
|
-
} | {
|
|
5059
|
-
n: string;
|
|
5060
|
-
k: string;
|
|
5061
|
-
o: boolean;
|
|
5062
|
-
g: string;
|
|
5063
|
-
r?: undefined;
|
|
5064
|
-
d?: undefined;
|
|
5065
|
-
nC?: undefined;
|
|
5066
4879
|
})[];
|
|
5067
4880
|
};
|
|
5068
4881
|
UserInterfaceState: {
|