@adaptabletools/adaptable-cjs 20.0.0-canary.0 → 20.0.0-canary.10
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 +317 -866
- package/base.css.map +1 -1
- package/index.css +317 -866
- package/index.css.map +1 -1
- package/package.json +3 -3
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -1
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +2 -2
- package/src/AdaptableOptions/CellSummaryOptions.d.ts +1 -1
- package/src/AdaptableOptions/ContainerOptions.d.ts +0 -7
- package/src/AdaptableOptions/DefaultAdaptableOptions.js +2 -2
- package/src/AdaptableOptions/EditOptions.d.ts +14 -3
- package/src/AdaptableOptions/ExportOptions.d.ts +11 -20
- package/src/AdaptableOptions/FilterOptions.d.ts +2 -2
- package/src/AdaptableOptions/PredicateOptions.d.ts +4 -4
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +7 -0
- package/src/Api/ColumnScopeApi.d.ts +2 -2
- package/src/Api/ExportApi.d.ts +1 -6
- package/src/Api/Fdc3Api.d.ts +5 -3
- package/src/Api/Implementation/AdaptableApiImpl.js +1 -0
- package/src/Api/Implementation/ColumnScopeApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ColumnScopeApiImpl.js +1 -1
- package/src/Api/Implementation/ExportApiImpl.d.ts +1 -2
- package/src/Api/Implementation/ExportApiImpl.js +17 -10
- package/src/Api/Implementation/Fdc3ApiImpl.d.ts +3 -3
- package/src/Api/Implementation/Fdc3ApiImpl.js +4 -4
- package/src/Api/Implementation/LayoutHelpers.js +8 -27
- package/src/Api/Implementation/ScheduleApiImpl.js +1 -1
- package/src/Api/Implementation/StyledColumnApiImpl.js +1 -1
- package/src/Api/Implementation/ThemeApiImpl.js +3 -1
- package/src/Api/Internal/ActionColumnInternalApi.js +16 -19
- package/src/Api/Internal/AdaptableInternalApi.js +1 -1
- package/src/Api/Internal/EventInternalApi.js +6 -1
- package/src/Api/Internal/ExportInternalApi.d.ts +10 -6
- package/src/Api/Internal/ExportInternalApi.js +105 -136
- package/src/Api/Internal/RowFormInternalApi.js +1 -1
- package/src/Api/ThemeApi.d.ts +2 -0
- package/src/PredefinedConfig/AlertState.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -5
- package/src/PredefinedConfig/Common/AdaptableColumnContext.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +0 -16
- package/src/PredefinedConfig/Common/RowSummary.d.ts +1 -1
- package/src/PredefinedConfig/Common/RowSummary.js +3 -3
- package/src/PredefinedConfig/ExportState.d.ts +10 -17
- package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +20 -16
- package/src/PredefinedConfig/StyledColumnState.d.ts +1 -1
- package/src/Redux/Store/AdaptableStore.js +1 -1
- package/src/Strategy/StyledColumnModule.js +6 -6
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +2 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +12 -1
- package/src/Utilities/ObjectFactory.js +1 -0
- package/src/Utilities/Services/Fdc3Service.d.ts +2 -2
- package/src/Utilities/Services/Fdc3Service.js +7 -2
- package/src/Utilities/Services/RowSummaryService.js +1 -1
- package/src/Utilities/Services/ThemeService.d.ts +1 -1
- package/src/Utilities/Services/ThemeService.js +5 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +41 -0
- package/src/View/Components/ColumnFilter/utils.js +2 -2
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +4 -1
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +7 -2
- package/src/View/Layout/Wizard/LayoutWizard.js +1 -1
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.d.ts +2 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +18 -2
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +4 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -1
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.d.ts +3 -4
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +348 -191
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +4 -4
- package/src/agGrid/AdaptableAgGrid.d.ts +3 -8
- package/src/agGrid/AdaptableAgGrid.js +40 -117
- package/src/agGrid/AgGridAdapter.d.ts +1 -1
- package/src/agGrid/AgGridAdapter.js +5 -6
- package/src/agGrid/AgGridColumnAdapter.js +6 -11
- package/src/agGrid/AgGridExportAdapter.d.ts +24 -1
- package/src/agGrid/AgGridExportAdapter.js +24 -25
- package/src/agGrid/AgGridThemeAdapter.d.ts +19 -0
- package/src/agGrid/AgGridThemeAdapter.js +126 -0
- package/src/agGrid/cellRenderers/BadgeRenderer.js +2 -1
- package/src/components/ColorPicker/ColorPicker.js +2 -2
- package/src/components/OverlayTrigger/useAgGridClassName.js +1 -1
- package/src/components/Select/Select.d.ts +1 -0
- package/src/components/Select/Select.js +29 -6
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +26 -20
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/migration/VersionUpgrade20.d.ts +1 -0
- package/src/migration/VersionUpgrade20.js +103 -3
- package/src/types.d.ts +3 -3
- package/tsconfig.cjs.tsbuildinfo +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AdaptableAgGrid } from './AdaptableAgGrid';
|
|
2
|
+
import { AgGridThemeMode } from './AgGridAdapter';
|
|
3
|
+
import { AdaptableTheme } from '../PredefinedConfig/ThemeState';
|
|
4
|
+
export declare class AgGridThemeAdapter {
|
|
5
|
+
private _adaptableInstance;
|
|
6
|
+
private agGridThemeMode;
|
|
7
|
+
constructor(_adaptableInstance: AdaptableAgGrid);
|
|
8
|
+
destroy(): void;
|
|
9
|
+
get logger(): import("./AdaptableLogger").AdaptableLogger;
|
|
10
|
+
get api(): import("../types").AdaptableApi;
|
|
11
|
+
setAgGridThemeMode(themeMode: AgGridThemeMode): void;
|
|
12
|
+
getAgGridThemeMode(): AgGridThemeMode;
|
|
13
|
+
applyAgGridThemeOnAdaptableThemeChange(adaptableTheme: AdaptableTheme, variantTheme: string, agGridContainer: HTMLElement, themesToRemove: AdaptableTheme[]): void;
|
|
14
|
+
private getAgGridContainerElement;
|
|
15
|
+
private legacy_applyAgGridThemeOnAdaptableThemeChange;
|
|
16
|
+
getAgGridCurrentThemeClassNames(): string;
|
|
17
|
+
private getAgGridLightThemeName;
|
|
18
|
+
private legacy_getAgGridCurrentThemeClassNames;
|
|
19
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgGridThemeAdapter = void 0;
|
|
4
|
+
const GeneralConstants_1 = require("../Utilities/Constants/GeneralConstants");
|
|
5
|
+
class AgGridThemeAdapter {
|
|
6
|
+
constructor(_adaptableInstance) {
|
|
7
|
+
this._adaptableInstance = _adaptableInstance;
|
|
8
|
+
}
|
|
9
|
+
destroy() { }
|
|
10
|
+
get logger() {
|
|
11
|
+
return this._adaptableInstance.logger;
|
|
12
|
+
}
|
|
13
|
+
get api() {
|
|
14
|
+
return this._adaptableInstance.api;
|
|
15
|
+
}
|
|
16
|
+
setAgGridThemeMode(themeMode) {
|
|
17
|
+
this.agGridThemeMode = themeMode;
|
|
18
|
+
}
|
|
19
|
+
getAgGridThemeMode() {
|
|
20
|
+
return this.agGridThemeMode;
|
|
21
|
+
}
|
|
22
|
+
applyAgGridThemeOnAdaptableThemeChange(adaptableTheme, variantTheme, agGridContainer, themesToRemove) {
|
|
23
|
+
if (this.agGridThemeMode === 'legacy') {
|
|
24
|
+
this.legacy_applyAgGridThemeOnAdaptableThemeChange(adaptableTheme, variantTheme, agGridContainer, themesToRemove);
|
|
25
|
+
}
|
|
26
|
+
const themeName = adaptableTheme.Name;
|
|
27
|
+
const isSystemTheme = this.api.themeApi.internalApi.isSystemTheme(themeName);
|
|
28
|
+
if (adaptableTheme && (isSystemTheme || variantTheme)) {
|
|
29
|
+
if ((variantTheme || themeName) === GeneralConstants_1.LIGHT_THEME) {
|
|
30
|
+
document.body.dataset.agThemeMode = 'light';
|
|
31
|
+
}
|
|
32
|
+
if ((variantTheme || themeName) === GeneralConstants_1.DARK_THEME) {
|
|
33
|
+
document.body.dataset.agThemeMode = 'dark';
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
getAgGridContainerElement() {
|
|
38
|
+
return this._adaptableInstance.getAgGridContainerElement();
|
|
39
|
+
}
|
|
40
|
+
legacy_applyAgGridThemeOnAdaptableThemeChange(adaptableTheme, variantTheme, agGridContainer, themesToRemove) {
|
|
41
|
+
const themeName = adaptableTheme.Name;
|
|
42
|
+
const isSystemTheme = this.api.themeApi.internalApi.isSystemTheme(themeName);
|
|
43
|
+
const getAgGridLightThemeName = () => this.getAgGridLightThemeName();
|
|
44
|
+
const getAgGridDarkThemeName = () => getAgGridLightThemeName() + '-dark';
|
|
45
|
+
if (adaptableTheme && (isSystemTheme || variantTheme)) {
|
|
46
|
+
if ((variantTheme || themeName) === GeneralConstants_1.LIGHT_THEME) {
|
|
47
|
+
adaptableTheme.AgGridClassName =
|
|
48
|
+
adaptableTheme.AgGridClassName || getAgGridLightThemeName();
|
|
49
|
+
}
|
|
50
|
+
if ((variantTheme || themeName) === GeneralConstants_1.DARK_THEME) {
|
|
51
|
+
adaptableTheme.AgGridClassName = adaptableTheme.AgGridClassName || getAgGridDarkThemeName();
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
if (!adaptableTheme.AgGridClassName) {
|
|
55
|
+
// default AG Grid to its light theme
|
|
56
|
+
adaptableTheme.AgGridClassName = getAgGridLightThemeName();
|
|
57
|
+
}
|
|
58
|
+
if (agGridContainer != null) {
|
|
59
|
+
if (themesToRemove.length) {
|
|
60
|
+
themesToRemove.forEach((theme) => {
|
|
61
|
+
if (theme.AgGridClassName) {
|
|
62
|
+
agGridContainer.classList.remove(theme.AgGridClassName);
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
// also remove all AG Grid theme class names
|
|
67
|
+
const agGridClassNamesToRemove = [];
|
|
68
|
+
agGridContainer.classList.forEach((x) => {
|
|
69
|
+
if (x && x.indexOf('ag-theme-') === 0) {
|
|
70
|
+
agGridClassNamesToRemove.push(x);
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
agGridClassNamesToRemove.forEach((x) => agGridContainer.classList.remove(x));
|
|
74
|
+
if (adaptableTheme && adaptableTheme.AgGridClassName) {
|
|
75
|
+
agGridContainer.classList.add(adaptableTheme.AgGridClassName);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
getAgGridCurrentThemeClassNames() {
|
|
80
|
+
if (this.agGridThemeMode === 'legacy') {
|
|
81
|
+
this.legacy_getAgGridCurrentThemeClassNames();
|
|
82
|
+
}
|
|
83
|
+
const currentAgGridTheme = this._adaptableInstance.agGridAdapter.getGridOption('theme');
|
|
84
|
+
if (currentAgGridTheme === 'legacy') {
|
|
85
|
+
return this.legacy_getAgGridCurrentThemeClassNames();
|
|
86
|
+
}
|
|
87
|
+
// @ts-ignore no other way than to use internals
|
|
88
|
+
const currentAgGridTheme__cssClassCache = currentAgGridTheme?._cssClassCache;
|
|
89
|
+
return currentAgGridTheme__cssClassCache ?? '';
|
|
90
|
+
}
|
|
91
|
+
getAgGridLightThemeName() {
|
|
92
|
+
const container = this.getAgGridContainerElement();
|
|
93
|
+
if (container && container.classList) {
|
|
94
|
+
// we detect the ag theme class
|
|
95
|
+
const classList = container.classList;
|
|
96
|
+
for (let i = 0, len = classList.length; i < len; i++) {
|
|
97
|
+
const cls = classList[i];
|
|
98
|
+
if (cls.indexOf('ag-theme-') === 0) {
|
|
99
|
+
// even if dark theme is included, we compute the light theme name out of it
|
|
100
|
+
return cls.replace('-dark', '');
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
this.logger.warn('No AgGrid container found, defaulting to ag-theme-balham for the light theme');
|
|
106
|
+
}
|
|
107
|
+
this.logger.warn('No ag-theme- class found on the grid container, defaulting to ag-theme-balham');
|
|
108
|
+
// fallback to the default light theme
|
|
109
|
+
return 'ag-theme-balham';
|
|
110
|
+
}
|
|
111
|
+
legacy_getAgGridCurrentThemeClassNames() {
|
|
112
|
+
const container = this.getAgGridContainerElement();
|
|
113
|
+
if (container && container.classList) {
|
|
114
|
+
// we detect the ag theme class
|
|
115
|
+
const classList = container.classList;
|
|
116
|
+
for (let i = 0, len = classList.length; i < len; i++) {
|
|
117
|
+
const cls = classList[i];
|
|
118
|
+
if (cls.indexOf('ag-theme-') === 0) {
|
|
119
|
+
return cls;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
return this.getAgGridLightThemeName();
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
exports.AgGridThemeAdapter = AgGridThemeAdapter;
|
|
@@ -39,7 +39,8 @@ const getBadgeRendererForColumn = (badgeStyle, abColumn, api) => {
|
|
|
39
39
|
this.eGui.innerHTML = formattedValue;
|
|
40
40
|
return;
|
|
41
41
|
}
|
|
42
|
-
|
|
42
|
+
const arrayTypes = ['numberArray', 'textArray'];
|
|
43
|
+
if (arrayTypes.includes(abColumn.dataType)) {
|
|
43
44
|
this.renderArrayValues(params, adaptableApi);
|
|
44
45
|
}
|
|
45
46
|
else {
|
|
@@ -35,11 +35,11 @@ exports.ColorPicker = React.forwardRef((props, ref) => {
|
|
|
35
35
|
}, value: preparedValue, ref: ref, type: "color", style: {
|
|
36
36
|
width: 70,
|
|
37
37
|
padding: 0 /* we need this to be 0, since otherwise on Windows browsers, the chosen color cannot be seen */,
|
|
38
|
-
}, list: "ABcolorChoices" }),
|
|
38
|
+
}, list: "ABcolorChoices", title: props.title }),
|
|
39
39
|
ABcolorChoices,
|
|
40
40
|
includeAlpha && (React.createElement(rebass_1.Flex, { alignItems: "center" },
|
|
41
41
|
React.createElement(rebass_1.Box, { mr: 1 }, "Opacity"),
|
|
42
|
-
React.createElement(Input_1.default, { className: "ab-ColorPicker-range", style: { background: rangeBackround }, value: alpha, onChange: (event) => {
|
|
42
|
+
React.createElement(Input_1.default, { disabled: props.disabled, className: "ab-ColorPicker-range", style: { background: rangeBackround }, value: alpha, onChange: (event) => {
|
|
43
43
|
const color = (0, tinycolor2_1.default)(value).setAlpha(event.target.value).toRgbString();
|
|
44
44
|
props.onChange(color);
|
|
45
45
|
}, min: 0, max: 1, step: 0.01, type: "range" })))));
|
|
@@ -6,7 +6,7 @@ const useAgGridClassName = (deps = []) => {
|
|
|
6
6
|
const adaptable = (0, AdaptableContext_1.useAdaptable)();
|
|
7
7
|
return (0, react_1.useMemo)(() => {
|
|
8
8
|
if (adaptable) {
|
|
9
|
-
return adaptable.
|
|
9
|
+
return adaptable.agGridThemeAdapter.getAgGridCurrentThemeClassNames();
|
|
10
10
|
}
|
|
11
11
|
return '';
|
|
12
12
|
}, deps);
|
|
@@ -17,6 +17,7 @@ export type SelectProps<SelectValue extends unknown, IsMulti extends boolean = f
|
|
|
17
17
|
isClearable?: boolean;
|
|
18
18
|
closeMenuOnSelect?: boolean;
|
|
19
19
|
hideSelectedOptions?: boolean;
|
|
20
|
+
showHeaderSelectionCheckbox?: boolean;
|
|
20
21
|
isMulti?: IsMulti;
|
|
21
22
|
onChange: (value: IsMulti extends true ? SelectValue[] : SelectValue) => void;
|
|
22
23
|
value: IsMulti extends true ? SelectValue[] : SelectValue;
|
|
@@ -31,9 +31,17 @@ const INFINITE_COLUMNS_WITH_CHECKBOX = {
|
|
|
31
31
|
style: {
|
|
32
32
|
lineHeight: '30px',
|
|
33
33
|
},
|
|
34
|
+
resizable: false,
|
|
35
|
+
defaultSortable: false,
|
|
34
36
|
renderSelectionCheckBox: ({ renderBag }) => {
|
|
35
37
|
return (React.createElement(rebass_1.Box, { display: 'inline-block', style: checkboxStyle }, renderBag.selectionCheckBox));
|
|
36
38
|
},
|
|
39
|
+
renderHeader: (headerParams) => {
|
|
40
|
+
return (React.createElement(React.Fragment, null,
|
|
41
|
+
headerParams.renderBag.selectionCheckBox,
|
|
42
|
+
headerParams.allRowsSelected ? 'Deselect All' : 'Select All'));
|
|
43
|
+
},
|
|
44
|
+
renderMenuIcon: false,
|
|
37
45
|
},
|
|
38
46
|
};
|
|
39
47
|
const INFINITE_COLUMNS_WITH_RADIO = {
|
|
@@ -91,6 +99,7 @@ const Select = function (props) {
|
|
|
91
99
|
};
|
|
92
100
|
const renderMultipleValues = props.renderMultipleValues;
|
|
93
101
|
const isMulti = props.isMulti ?? Array.isArray(props.value);
|
|
102
|
+
const showHeaderSelectionCheckbox = props.showHeaderSelectionCheckbox ?? false;
|
|
94
103
|
let selectedOption = null;
|
|
95
104
|
if (isMulti) {
|
|
96
105
|
selectedOption =
|
|
@@ -216,10 +225,24 @@ const Select = function (props) {
|
|
|
216
225
|
}
|
|
217
226
|
: selectedRows[0];
|
|
218
227
|
}, [selectedRows, isMulti]);
|
|
219
|
-
const onRowSelectionChange = React.useCallback((
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
228
|
+
const onRowSelectionChange = React.useCallback((selectionParams) => {
|
|
229
|
+
let selection = [];
|
|
230
|
+
const { selectedRows, defaultSelection, deselectedRows } = selectionParams;
|
|
231
|
+
if (defaultSelection === true && deselectedRows.length === 0) {
|
|
232
|
+
// all selected
|
|
233
|
+
selection = options.map((option) => {
|
|
234
|
+
return { value: option.value };
|
|
235
|
+
});
|
|
236
|
+
}
|
|
237
|
+
else if (defaultSelection === false && selectedRows.length === 0) {
|
|
238
|
+
// none selected
|
|
239
|
+
selection = [];
|
|
240
|
+
}
|
|
241
|
+
else {
|
|
242
|
+
selection = selectedRows.map((row) => {
|
|
243
|
+
return { value: row };
|
|
244
|
+
});
|
|
245
|
+
}
|
|
223
246
|
//@ts-ignore
|
|
224
247
|
setValue(selection, 'select-option');
|
|
225
248
|
}, [setValue]);
|
|
@@ -243,9 +266,9 @@ const Select = function (props) {
|
|
|
243
266
|
data: props.options, primaryKey: "value", selectionMode: isMulti ? 'multi-row' : 'single-row',
|
|
244
267
|
// @ts-ignore
|
|
245
268
|
onRowSelectionChange: isLoading ? null : isMulti ? onRowSelectionChange : onSingleRowSelectionChange, rowSelection: rowSelection, filterFunction: filterFunction, isRowDisabled: isRowDisabled },
|
|
246
|
-
React.createElement(infinite_react_1.InfiniteTable, { header: false, rowClassName: rowClassName, showZebraRows: false, onCellClick: isLoading ? null : onCellClick, keyboardNavigation: isLoading ? false : 'row', activeRowIndex: focusedOptionIndex, keyboardSelection: true, rowHeight: ROW_HEIGHT, columns: isMulti ? INFINITE_COLUMNS_WITH_CHECKBOX : INFINITE_COLUMNS_WITH_RADIO, domProps: INFINITE_DOM_PROPS })));
|
|
269
|
+
React.createElement(infinite_react_1.InfiniteTable, { header: isMulti && showHeaderSelectionCheckbox ? true : false, rowClassName: rowClassName, showZebraRows: false, onCellClick: isLoading ? null : onCellClick, keyboardNavigation: isLoading ? false : 'row', activeRowIndex: focusedOptionIndex, keyboardSelection: true, rowHeight: ROW_HEIGHT, columns: isMulti ? INFINITE_COLUMNS_WITH_CHECKBOX : INFINITE_COLUMNS_WITH_RADIO, domProps: INFINITE_DOM_PROPS })));
|
|
247
270
|
};
|
|
248
|
-
}, [isMulti]);
|
|
271
|
+
}, [isMulti, showHeaderSelectionCheckbox]);
|
|
249
272
|
const DropdownIndicator = React.useMemo(() => {
|
|
250
273
|
return (props) => {
|
|
251
274
|
return (React.createElement(react_select_1.components.DropdownIndicator, { ...props },
|
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: "20.0.0-canary.
|
|
5
|
+
PUBLISH_TIMESTAMP: 1741781327852 || Date.now(),
|
|
6
|
+
VERSION: "20.0.0-canary.10" || '--current-version--',
|
|
7
7
|
};
|
|
@@ -309,11 +309,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
309
309
|
isOpt: boolean;
|
|
310
310
|
}[];
|
|
311
311
|
};
|
|
312
|
-
AdaptableColumnType: {
|
|
313
|
-
name: string;
|
|
314
|
-
kind: string;
|
|
315
|
-
desc: string;
|
|
316
|
-
};
|
|
317
312
|
AdaptableComment: {
|
|
318
313
|
name: string;
|
|
319
314
|
kind: string;
|
|
@@ -920,6 +915,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
920
915
|
desc: string;
|
|
921
916
|
}[];
|
|
922
917
|
};
|
|
918
|
+
AdaptableSpecialColumnType: {
|
|
919
|
+
name: string;
|
|
920
|
+
kind: string;
|
|
921
|
+
desc: string;
|
|
922
|
+
};
|
|
923
923
|
AdaptableState: {
|
|
924
924
|
name: string;
|
|
925
925
|
kind: string;
|
|
@@ -2289,6 +2289,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2289
2289
|
ref?: undefined;
|
|
2290
2290
|
})[];
|
|
2291
2291
|
};
|
|
2292
|
+
CustomEditColumnValueInfo: {
|
|
2293
|
+
name: string;
|
|
2294
|
+
kind: string;
|
|
2295
|
+
desc: string;
|
|
2296
|
+
props: ({
|
|
2297
|
+
name: string;
|
|
2298
|
+
kind: string;
|
|
2299
|
+
desc: string;
|
|
2300
|
+
isOpt: boolean;
|
|
2301
|
+
} | {
|
|
2302
|
+
name: string;
|
|
2303
|
+
kind: string;
|
|
2304
|
+
desc: string;
|
|
2305
|
+
isOpt?: undefined;
|
|
2306
|
+
})[];
|
|
2307
|
+
};
|
|
2292
2308
|
CustomEditColumnValuesContext: {
|
|
2293
2309
|
name: string;
|
|
2294
2310
|
kind: string;
|
|
@@ -2721,16 +2737,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2721
2737
|
kind: string;
|
|
2722
2738
|
desc: string;
|
|
2723
2739
|
};
|
|
2724
|
-
DataFormatTypeContext: {
|
|
2725
|
-
name: string;
|
|
2726
|
-
kind: string;
|
|
2727
|
-
desc: string;
|
|
2728
|
-
props: {
|
|
2729
|
-
name: string;
|
|
2730
|
-
kind: string;
|
|
2731
|
-
desc: string;
|
|
2732
|
-
}[];
|
|
2733
|
-
};
|
|
2734
2740
|
DataImportFileHandler: {
|
|
2735
2741
|
name: string;
|
|
2736
2742
|
kind: string;
|
|
@@ -2967,11 +2973,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2967
2973
|
ref: string;
|
|
2968
2974
|
})[];
|
|
2969
2975
|
};
|
|
2970
|
-
ExportableColumnContext: {
|
|
2971
|
-
name: string;
|
|
2972
|
-
kind: string;
|
|
2973
|
-
desc: string;
|
|
2974
|
-
};
|
|
2975
2976
|
ExportFormContext: {
|
|
2976
2977
|
name: string;
|
|
2977
2978
|
kind: string;
|
|
@@ -3010,6 +3011,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3010
3011
|
gridInfo?: undefined;
|
|
3011
3012
|
})[];
|
|
3012
3013
|
};
|
|
3014
|
+
ExportResultData: {
|
|
3015
|
+
name: string;
|
|
3016
|
+
kind: string;
|
|
3017
|
+
desc: string;
|
|
3018
|
+
};
|
|
3013
3019
|
ExportState: {
|
|
3014
3020
|
name: string;
|
|
3015
3021
|
kind: string;
|