@adaptabletools/adaptable-cjs 22.0.0-canary.6 → 22.0.0-canary.8
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 +63 -74
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +6 -6
- package/src/AdaptableOptions/ContainerOptions.d.ts +55 -15
- package/src/AdaptableState/AdaptableState.d.ts +2 -0
- package/src/AdaptableState/AlertState.d.ts +1 -2
- package/src/AdaptableState/Common/AdaptableColumnContext.d.ts +9 -0
- package/src/AdaptableState/Common/AdaptableObject.d.ts +4 -0
- package/src/AdaptableState/Common/AdaptableRowContext.d.ts +11 -0
- package/src/AdaptableState/Common/AdaptableRowContext.js +2 -0
- package/src/AdaptableState/Common/BaseContext.d.ts +2 -0
- package/src/AdaptableState/Common/DataUpdateConfig.d.ts +7 -0
- package/src/AdaptableState/Common/NamedObject.d.ts +10 -0
- package/src/AdaptableState/Common/NamedObject.js +2 -0
- package/src/AdaptableState/Common/RowSummary.d.ts +1 -1
- package/src/AdaptableState/Common/Schedule.d.ts +2 -2
- package/src/AdaptableState/Common/SuspendableObject.d.ts +10 -0
- package/src/AdaptableState/Common/SuspendableObject.js +2 -0
- package/src/AdaptableState/Common/TransposeConfig.d.ts +11 -9
- package/src/AdaptableState/CustomSortState.d.ts +1 -1
- package/src/AdaptableState/FormatColumnState.d.ts +1 -1
- package/src/AdaptableState/InitialState.d.ts +9 -0
- package/src/AdaptableState/LayoutState.d.ts +2 -3
- package/src/AdaptableState/PlusMinusState.d.ts +1 -1
- package/src/AdaptableState/ShortcutState.d.ts +1 -1
- package/src/AdaptableState/StyledColumnState.d.ts +1 -1
- package/src/AdaptableState/UserInterfaceState.d.ts +14 -0
- package/src/AdaptableState/UserInterfaceState.js +2 -0
- package/src/Api/AlertApi.d.ts +6 -0
- package/src/Api/CustomSortApi.d.ts +6 -0
- package/src/Api/FlashingCellApi.d.ts +6 -0
- package/src/Api/FormatColumnApi.d.ts +10 -4
- package/src/Api/GridApi.d.ts +5 -9
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -0
- package/src/Api/Implementation/AlertApiImpl.js +5 -6
- package/src/Api/Implementation/ChartingApiImpl.js +2 -2
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +1 -0
- package/src/Api/Implementation/CustomSortApiImpl.js +3 -0
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +1 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +3 -0
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +6 -5
- package/src/Api/Implementation/FormatColumnApiImpl.js +6 -5
- package/src/Api/Implementation/GridApiImpl.d.ts +2 -6
- package/src/Api/Implementation/GridApiImpl.js +9 -9
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -0
- package/src/Api/Implementation/LayoutApiImpl.js +4 -1
- package/src/Api/Implementation/NamedQueryApiImpl.js +2 -2
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +1 -0
- package/src/Api/Implementation/PlusMinusApiImpl.js +3 -0
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +3 -0
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ShortcutApiImpl.js +3 -0
- package/src/Api/Implementation/SystemStatusApiImpl.js +6 -9
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +5 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.js +13 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.js +2 -2
- package/src/Api/Internal/FreeTextColumnInternalApi.js +2 -2
- package/src/Api/Internal/LayoutInternalApi.js +1 -1
- package/src/Api/Internal/NamedQueryInternalApi.js +4 -4
- package/src/Api/LayoutApi.d.ts +6 -0
- package/src/Api/PlusMinusApi.d.ts +6 -0
- package/src/Api/ScheduleApi.d.ts +6 -0
- package/src/Api/ShortcutApi.d.ts +6 -0
- package/src/Api/UserInterfaceApi.d.ts +17 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +8 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +17 -1
- package/src/Redux/ActionsReducers/UserInterfaceRedux.d.ts +11 -0
- package/src/Redux/ActionsReducers/UserInterfaceRedux.js +26 -0
- package/src/Redux/Store/AdaptableStore.js +45 -16
- package/src/Strategy/BulkUpdateModule.js +8 -8
- package/src/Strategy/PlusMinusModule.js +1 -1
- package/src/Strategy/QuickSearchModule.js +1 -1
- package/src/Strategy/SettingsPanelModule.js +11 -7
- package/src/Strategy/SmartEditModule.js +10 -10
- package/src/Utilities/Services/DataService.js +1 -1
- package/src/Utilities/Services/Fdc3Service.js +4 -4
- package/src/Utilities/Services/ModuleService.js +1 -3
- package/src/Utilities/Services/ThemeService.js +2 -6
- package/src/Utilities/Services/ValidationService.js +1 -1
- package/src/Utilities/logDeprecation.js +3 -4
- package/src/Utilities/resolveContainerElement.d.ts +23 -0
- package/src/Utilities/resolveContainerElement.js +47 -0
- package/src/View/Alert/Wizard/isValidAlertRules.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
- package/src/View/Charting/ChartingWizard/AgChargingWizard/SettingsSection.js +2 -2
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.js +2 -2
- package/src/View/Components/CellPopup/index.js +1 -1
- package/src/View/Components/ColumnFilter/components/ColumnFilterInput.js +1 -1
- package/src/View/Components/EntityRulesEditor/Utilities.js +5 -5
- package/src/View/Components/NewScopeComponent.js +3 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +1 -8
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +1 -1
- package/src/View/Components/Popups/WindowPopups/WindowPopups.js +35 -0
- package/src/View/Components/WizardSummaryPage.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +3 -3
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
- package/src/View/Dashboard/CustomToolbar.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +1 -1
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +3 -3
- package/src/View/Layout/LayoutViewPanel.js +1 -1
- package/src/View/Layout/TransposedPopup.js +144 -138
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/FilterSection.js +1 -1
- package/src/View/Layout/Wizard/sections/GridFilterSection.js +1 -1
- package/src/View/Layout/Wizard/sections/PivotAggregationsSection.js +3 -3
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +1 -1
- package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +2 -2
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +5 -5
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +11 -11
- package/src/View/StateManagement/handleExportState.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +1 -1
- package/src/View/UIHelper.d.ts +2 -1
- package/src/View/UIHelper.js +8 -14
- package/src/agGrid/Adaptable.js +11 -11
- package/src/agGrid/AdaptableAgGrid.d.ts +12 -8
- package/src/agGrid/AdaptableAgGrid.js +150 -82
- package/src/agGrid/AgGridAdapter.js +8 -8
- package/src/agGrid/AgGridColumnAdapter.js +1 -1
- package/src/agGrid/AgGridExportAdapter.js +5 -5
- package/src/agGrid/AgGridFloatingFilterAdapter.js +1 -1
- package/src/agGrid/AgGridMenuAdapter.js +9 -1
- package/src/agGrid/AgGridThemeAdapter.js +2 -2
- package/src/components/CheckBox/index.js +1 -1
- package/src/components/Dropdown/Arrows.js +1 -1
- package/src/components/ExpressionEditor/DataTableEditor.js +3 -3
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/OverlayTrigger/index.js +1 -1
- package/src/components/Select/Select.js +1 -1
- package/src/components/Tree/TreeDropdown/index.js +1 -1
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +62 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/migration/AdaptableUpgradeHelper.js +2 -2
- package/src/migration/VersionUpgrade17.js +4 -4
- package/src/migration/VersionUpgrade20.js +4 -4
- package/src/types.d.ts +5 -2
- package/themes/dark.css +30 -29
- package/themes/light.css +4 -2
- package/tsconfig.cjs.tsbuildinfo +1 -1
|
@@ -661,7 +661,7 @@ class AgGridColumnAdapter {
|
|
|
661
661
|
if (typeof original_filter !== 'boolean' &&
|
|
662
662
|
typeof original_filter?.handler !== 'function' &&
|
|
663
663
|
!pivotMode) {
|
|
664
|
-
this.adaptableApi.consoleError(`Column
|
|
664
|
+
this.adaptableApi.consoleError(`Column "${colId}" has a custom filter in colDef.filter, but Adaptable filtering only accepts boolean (true/false) values for this property.`);
|
|
665
665
|
return false;
|
|
666
666
|
}
|
|
667
667
|
return {
|
|
@@ -70,7 +70,7 @@ class AgGridExportAdapter {
|
|
|
70
70
|
try {
|
|
71
71
|
if (showProgressIndicator) {
|
|
72
72
|
this.adaptableApi.userInterfaceApi.showProgressIndicator({
|
|
73
|
-
text:
|
|
73
|
+
text: `Exporting ${report.Name}...`,
|
|
74
74
|
});
|
|
75
75
|
// waitForTimeout required to give the ProgressIndicator rendering a head-start (see rAF in ProgressIndicator implementation)
|
|
76
76
|
// see #raf_progress_indicator
|
|
@@ -124,7 +124,7 @@ class AgGridExportAdapter {
|
|
|
124
124
|
};
|
|
125
125
|
}
|
|
126
126
|
catch (error) {
|
|
127
|
-
this.logger.consoleError(`
|
|
127
|
+
this.logger.consoleError(`Export failed: report="${report.Name}", format="${format}", destination="${config.destination}".`, error.stack);
|
|
128
128
|
}
|
|
129
129
|
finally {
|
|
130
130
|
/**
|
|
@@ -146,7 +146,7 @@ class AgGridExportAdapter {
|
|
|
146
146
|
const exportContext = this.buildExportProcessContext(config);
|
|
147
147
|
let exportParams = this.buildExportParams(exportContext);
|
|
148
148
|
if (typeof config?.customExportParams === 'function') {
|
|
149
|
-
this.logger.info(`
|
|
149
|
+
this.logger.info(`Applying custom export params: report="${config.report.Name}", format="${config.format}".`);
|
|
150
150
|
exportParams = config.customExportParams(exportParams);
|
|
151
151
|
}
|
|
152
152
|
exportContext.exportedColumnIds = exportParams.columnKeys;
|
|
@@ -512,7 +512,7 @@ class AgGridExportAdapter {
|
|
|
512
512
|
const columnId = column.getId();
|
|
513
513
|
const adaptableColumn = getAdaptableColumnWithColumnId(columnId);
|
|
514
514
|
if (!adaptableColumn) {
|
|
515
|
-
this.logger.warn(`Export
|
|
515
|
+
this.logger.warn(`Export styling: column "${columnId}" not found in Adaptable.`);
|
|
516
516
|
return;
|
|
517
517
|
}
|
|
518
518
|
let headerClassParams = {
|
|
@@ -575,7 +575,7 @@ class AgGridExportAdapter {
|
|
|
575
575
|
const columnId = column.getId();
|
|
576
576
|
const adaptableColumn = getAdaptableColumnWithColumnId(columnId);
|
|
577
577
|
if (!adaptableColumn) {
|
|
578
|
-
this.logger.warn(`Export
|
|
578
|
+
this.logger.warn(`Export styling: column "${columnId}" not found in Adaptable.`);
|
|
579
579
|
return;
|
|
580
580
|
}
|
|
581
581
|
const isDateCellExportedAsFormattedValue = this.isDateCellExportedAsFormattedValue(adaptableColumn, exportContext);
|
|
@@ -58,7 +58,7 @@ const AgGridFloatingFilterAdapterFactory = (adaptable) => {
|
|
|
58
58
|
// Find and update header cell
|
|
59
59
|
const headerCell = findParentWithClass(filterContainer, 'ag-header-cell', stopClasses);
|
|
60
60
|
if (headerCell?.classList.contains('ag-floating-filter')) {
|
|
61
|
-
headerCell.style.padding = 'var(--ab-space
|
|
61
|
+
headerCell.style.padding = 'var(--ab-base-space)';
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
return class AgGridFloatingFilterAdapter {
|
|
@@ -21,12 +21,16 @@ class AgGridMenuAdapter {
|
|
|
21
21
|
this._adaptableInstance = null;
|
|
22
22
|
}
|
|
23
23
|
buildColumnMenu(params, originalGetMainMenuItems) {
|
|
24
|
-
const columnMenuOptions = this.adaptableOptions.columnMenuOptions;
|
|
25
24
|
const agGridMenuItems = (params.defaultItems ? [...params.defaultItems] : []);
|
|
26
25
|
if (!params.column) {
|
|
27
26
|
// return only AG Grid context if the Adaptable column is not found (should not happen)
|
|
28
27
|
return agGridMenuItems;
|
|
29
28
|
}
|
|
29
|
+
// If Adaptable UI is hidden, return only AG Grid default items
|
|
30
|
+
if (!this.adaptableApi.userInterfaceApi.isAdaptableUIVisible()) {
|
|
31
|
+
return agGridMenuItems;
|
|
32
|
+
}
|
|
33
|
+
const columnMenuOptions = this.adaptableOptions.columnMenuOptions;
|
|
30
34
|
const adaptableColumn = this.adaptableApi.columnApi.getColumnWithColumnId(params.column?.getColId());
|
|
31
35
|
const menuContext = this.createColumnMenuContextObject(adaptableColumn, params.column);
|
|
32
36
|
/**
|
|
@@ -64,6 +68,10 @@ class AgGridMenuAdapter {
|
|
|
64
68
|
if (!params.column) {
|
|
65
69
|
return [];
|
|
66
70
|
}
|
|
71
|
+
// If Adaptable UI is hidden, return only AG Grid default items
|
|
72
|
+
if (!this.adaptableApi.userInterfaceApi.isAdaptableUIVisible()) {
|
|
73
|
+
return (params.defaultItems ? [...params.defaultItems] : []);
|
|
74
|
+
}
|
|
67
75
|
// we do this in order to refresh the internal state of selected cells (technically query the AG Grid cellRanges)
|
|
68
76
|
// (right-click selected the current cell, but this was not reflected in the internal state of the selected cells)
|
|
69
77
|
this._adaptableInstance.refreshSelectedCellsState();
|
|
@@ -104,9 +104,9 @@ class AgGridThemeAdapter {
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
else {
|
|
107
|
-
this.logger.warn('
|
|
107
|
+
this.logger.warn('AG Grid container not found. Defaulting to ag-theme-balham for the light theme.');
|
|
108
108
|
}
|
|
109
|
-
this.logger.warn('No ag-theme
|
|
109
|
+
this.logger.warn('No ag-theme-* class found on the grid container. Defaulting to ag-theme-balham.');
|
|
110
110
|
// fallback to the default light theme
|
|
111
111
|
return 'ag-theme-balham';
|
|
112
112
|
}
|
|
@@ -9,7 +9,7 @@ const clsx_1 = tslib_1.__importDefault(require("clsx"));
|
|
|
9
9
|
const Square = (props) => {
|
|
10
10
|
return React.createElement("div", { className: `ab-CheckBox__square ab-CheckBox__square--${props.type}` });
|
|
11
11
|
};
|
|
12
|
-
const CheckBox = ({ children, checked, onChange, value, name, disabled, readOnly, variant = 'default', gapDistance = 'var(--ab-space
|
|
12
|
+
const CheckBox = ({ children, checked, onChange, value, name, disabled, readOnly, variant = 'default', gapDistance = 'var(--ab-base-space)', childrenPosition = 'end', as = 'label', ...props }) => {
|
|
13
13
|
const [stateChecked, setStateChecked] = (0, react_1.useState)(false);
|
|
14
14
|
const computedChecked = checked !== undefined ? checked : stateChecked;
|
|
15
15
|
const onInputChange = (event) => {
|
|
@@ -11,7 +11,7 @@ const Arrows = () => {
|
|
|
11
11
|
// background: 'var(--ab-color-defaultbackground)',
|
|
12
12
|
fill: 'var(--ab-cmp-dropdown__fill)',
|
|
13
13
|
top: '50%',
|
|
14
|
-
right: 'var(--ab-space
|
|
14
|
+
right: 'var(--ab-base-space)',
|
|
15
15
|
transform: 'translate3d(0px, -50%, 0px)',
|
|
16
16
|
cursor: 'pointer',
|
|
17
17
|
} },
|
|
@@ -39,11 +39,11 @@ const DataTableEditor = ({ fields, dataFormatter, data: initialData, type = 'col
|
|
|
39
39
|
hasFriendlyNames && (React.createElement(CheckBox_1.CheckBox, { checked: showColumnIds, onChange: (checked) => setShowValues(checked), style: {
|
|
40
40
|
float: 'right',
|
|
41
41
|
margin: 0,
|
|
42
|
-
paddingTop: 'var(--ab-space
|
|
43
|
-
paddingBottom: 'var(--ab-space
|
|
42
|
+
paddingTop: 'var(--ab-base-space)',
|
|
43
|
+
paddingBottom: 'var(--ab-base-space)',
|
|
44
44
|
} }, labels?.showIds ?? 'Show Column IDs')),
|
|
45
45
|
React.createElement(AdaptableFormControlTextClear_1.AdaptableFormControlTextClear, { value: searchInputValue, OnTextChange: setSearchInputValue, placeholder: labels?.filterPlaceholder ?? 'Filter columns...', style: { flex: 1, marginBottom: 3 } })),
|
|
46
|
-
React.createElement(FormLayout_1.default, { className: "ab-ExpressionEditor__columns", gridColumnGap: "var(--ab-space
|
|
46
|
+
React.createElement(FormLayout_1.default, { className: "ab-ExpressionEditor__columns", gridColumnGap: "var(--ab-base-space)", gridRowGap: "var(--ab-base-space)", sizes: ['auto', '1fr'], style: { alignItems: 'stretch', overflow: 'auto' } }, fields
|
|
47
47
|
.filter((field) => {
|
|
48
48
|
if (!searchInputValue) {
|
|
49
49
|
return true;
|
|
@@ -18,7 +18,7 @@ const defaultColumns = {
|
|
|
18
18
|
};
|
|
19
19
|
const PLACEHOLDER = React.createElement("div", null);
|
|
20
20
|
const FormLayout = (props) => {
|
|
21
|
-
let { placeholder = PLACEHOLDER, columns = ['label', 'children'], defaultComponent = Flex_1.Box, sizes = ['auto', '1fr'], gridColumnGap = 'var(--ab-space
|
|
21
|
+
let { placeholder = PLACEHOLDER, columns = ['label', 'children'], defaultComponent = Flex_1.Box, sizes = ['auto', '1fr'], gridColumnGap = 'calc(var(--ab-base-space) * 2)', gridRowGap = 'calc(var(--ab-base-space) * 2)', style, childrenToColumns = true, ...boxProps } = props;
|
|
22
22
|
columns = columns.map((c) => {
|
|
23
23
|
if (typeof c === 'string' || typeof c === 'number') {
|
|
24
24
|
c = {
|
|
@@ -159,7 +159,7 @@ const OverlayTrigger = React.forwardRef((givenProps, ref) => {
|
|
|
159
159
|
target = targetProp(target);
|
|
160
160
|
}
|
|
161
161
|
if (!target) {
|
|
162
|
-
adaptable.logger.warn('
|
|
162
|
+
adaptable.logger.warn('OverlayTrigger target not found. Ensure a child element is rendered inside the OverlayTrigger component.');
|
|
163
163
|
return;
|
|
164
164
|
}
|
|
165
165
|
targetRef.current = target;
|
|
@@ -703,7 +703,7 @@ const Select = function (props) {
|
|
|
703
703
|
valueContainer: (baseStyle) => {
|
|
704
704
|
return {
|
|
705
705
|
...baseStyle,
|
|
706
|
-
padding: props.size === 'small' ? `0 var(--ab-space
|
|
706
|
+
padding: props.size === 'small' ? `0 var(--ab-base-space)` : baseStyle.padding,
|
|
707
707
|
...props.styles?.valueContainer,
|
|
708
708
|
};
|
|
709
709
|
},
|
|
@@ -226,7 +226,7 @@ function TreeDropdown(props) {
|
|
|
226
226
|
};
|
|
227
227
|
if (!hasChildren) {
|
|
228
228
|
// @ts-ignore - don't leave any space for the > expand icon, as there are no children
|
|
229
|
-
treeListStyle['--infinite-group-row-column-nesting'] = 'var(--ab-space
|
|
229
|
+
treeListStyle['--infinite-group-row-column-nesting'] = 'calc(var(--ab-base-space) * 2)';
|
|
230
230
|
}
|
|
231
231
|
const treeList = (React.createElement(TreeList_1.TreeList, { primaryKey: props.primaryKey ?? 'id', treeFilterFunction: filterFunction, columnHeaderHeight: 30, onReady: ({ api }) => {
|
|
232
232
|
setTreeListApi(api);
|
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.0.0-canary.
|
|
5
|
+
PUBLISH_TIMESTAMP: 1770905067216 || Date.now(),
|
|
6
|
+
VERSION: "22.0.0-canary.8" || '--current-version--',
|
|
7
7
|
};
|
|
@@ -314,6 +314,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
314
314
|
isOpt: boolean;
|
|
315
315
|
}[];
|
|
316
316
|
};
|
|
317
|
+
AdaptableColumnsContext: {
|
|
318
|
+
name: string;
|
|
319
|
+
kind: string;
|
|
320
|
+
desc: string;
|
|
321
|
+
props: {
|
|
322
|
+
name: string;
|
|
323
|
+
kind: string;
|
|
324
|
+
desc: string;
|
|
325
|
+
}[];
|
|
326
|
+
};
|
|
317
327
|
AdaptableColumnSummary: {
|
|
318
328
|
name: string;
|
|
319
329
|
kind: string;
|
|
@@ -364,6 +374,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
364
374
|
ref: string;
|
|
365
375
|
}[];
|
|
366
376
|
};
|
|
377
|
+
AdaptableContainerValue: {
|
|
378
|
+
name: string;
|
|
379
|
+
kind: string;
|
|
380
|
+
desc: string;
|
|
381
|
+
};
|
|
367
382
|
AdaptableContextMenuItem: {
|
|
368
383
|
name: string;
|
|
369
384
|
kind: string;
|
|
@@ -384,6 +399,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
384
399
|
desc: string;
|
|
385
400
|
}[];
|
|
386
401
|
};
|
|
402
|
+
AdaptableCSSSelector: {
|
|
403
|
+
name: string;
|
|
404
|
+
kind: string;
|
|
405
|
+
desc: string;
|
|
406
|
+
props: {
|
|
407
|
+
name: string;
|
|
408
|
+
kind: string;
|
|
409
|
+
desc: string;
|
|
410
|
+
}[];
|
|
411
|
+
};
|
|
387
412
|
AdaptableCustomIcon: {
|
|
388
413
|
name: string;
|
|
389
414
|
kind: string;
|
|
@@ -889,6 +914,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
889
914
|
desc: string;
|
|
890
915
|
}[];
|
|
891
916
|
};
|
|
917
|
+
AdaptableRowContext: {
|
|
918
|
+
name: string;
|
|
919
|
+
kind: string;
|
|
920
|
+
desc: string;
|
|
921
|
+
props: {
|
|
922
|
+
name: string;
|
|
923
|
+
kind: string;
|
|
924
|
+
desc: string;
|
|
925
|
+
}[];
|
|
926
|
+
};
|
|
892
927
|
AdaptableSaveStateFunction: {
|
|
893
928
|
name: string;
|
|
894
929
|
kind: string;
|
|
@@ -2244,6 +2279,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2244
2279
|
ref: string;
|
|
2245
2280
|
})[];
|
|
2246
2281
|
};
|
|
2282
|
+
ContainerContext: {
|
|
2283
|
+
name: string;
|
|
2284
|
+
kind: string;
|
|
2285
|
+
desc: string;
|
|
2286
|
+
};
|
|
2247
2287
|
ContainerOptions: {
|
|
2248
2288
|
name: string;
|
|
2249
2289
|
kind: string;
|
|
@@ -4148,6 +4188,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4148
4188
|
isOpt?: undefined;
|
|
4149
4189
|
})[];
|
|
4150
4190
|
};
|
|
4191
|
+
InitContainerContext: {
|
|
4192
|
+
name: string;
|
|
4193
|
+
kind: string;
|
|
4194
|
+
desc: string;
|
|
4195
|
+
props: {
|
|
4196
|
+
name: string;
|
|
4197
|
+
kind: string;
|
|
4198
|
+
desc: string;
|
|
4199
|
+
}[];
|
|
4200
|
+
};
|
|
4151
4201
|
InitialState: {
|
|
4152
4202
|
name: string;
|
|
4153
4203
|
kind: string;
|
|
@@ -6310,6 +6360,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
6310
6360
|
noCode?: undefined;
|
|
6311
6361
|
})[];
|
|
6312
6362
|
};
|
|
6363
|
+
UserInterfaceState: {
|
|
6364
|
+
name: string;
|
|
6365
|
+
kind: string;
|
|
6366
|
+
desc: string;
|
|
6367
|
+
props: {
|
|
6368
|
+
name: string;
|
|
6369
|
+
kind: string;
|
|
6370
|
+
desc: string;
|
|
6371
|
+
isOpt: boolean;
|
|
6372
|
+
defVal: string;
|
|
6373
|
+
}[];
|
|
6374
|
+
};
|
|
6313
6375
|
UserMenuItem: {
|
|
6314
6376
|
name: string;
|
|
6315
6377
|
kind: string;
|