@adaptabletools/adaptable 21.2.2-canary.0 → 21.2.2
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/README.md +4 -6
- package/package.json +1 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +1 -2
- package/src/AdaptableOptions/FilterOptions.d.ts +3 -0
- package/src/AdaptableState/Common/AdaptableColumn.d.ts +6 -0
- package/src/AdaptableState/Common/DataUpdateConfig.d.ts +4 -4
- package/src/AdaptableState/Common/RowDataChangedInfo.d.ts +3 -0
- package/src/AdaptableState/InitialState.d.ts +1 -1
- package/src/AdaptableState/Selection/GridCell.d.ts +9 -0
- package/src/Api/CustomSortApi.d.ts +6 -1
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +2 -1
- package/src/Api/Implementation/CustomSortApiImpl.js +5 -1
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -0
- package/src/Api/Implementation/LayoutApiImpl.js +82 -1
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +12 -0
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ShortcutApiImpl.js +4 -0
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/StyledColumnApiImpl.js +4 -0
- package/src/Api/LayoutApi.d.ts +7 -1
- package/src/Api/ScheduleApi.d.ts +5 -0
- package/src/Api/ShortcutApi.d.ts +5 -0
- package/src/Api/StyledColumnApi.d.ts +5 -0
- package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +6 -6
- package/src/Redux/ActionsReducers/StyledColumnRedux.js +16 -16
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +18 -17
- package/src/Utilities/Constants/DocumentationLinkConstants.js +18 -17
- package/src/Utilities/Services/ModuleService.js +37 -38
- package/src/agGrid/AdaptableLogger.d.ts +3 -0
- package/src/agGrid/AdaptableLogger.js +3 -0
- package/src/agGrid/index.d.ts +6 -0
- package/src/agGrid/index.js +6 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +57 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -105,84 +105,83 @@ export class ModuleService {
|
|
|
105
105
|
}
|
|
106
106
|
getModuleDocumentationPageByModule(adaptableModule) {
|
|
107
107
|
let url = `${HOST_URL_DOCS}/`;
|
|
108
|
-
let learnUrl = url + 'guide/';
|
|
109
108
|
switch (adaptableModule) {
|
|
110
109
|
case 'Alert':
|
|
111
|
-
return
|
|
110
|
+
return url + 'handbook-alerting';
|
|
112
111
|
case 'BulkUpdate':
|
|
113
112
|
return url + 'handbook-editing-bulk-update';
|
|
114
113
|
case 'CalculatedColumn':
|
|
115
|
-
return
|
|
114
|
+
return url + 'handbook-calculated-column';
|
|
116
115
|
case 'CellSummary':
|
|
117
|
-
return
|
|
116
|
+
return url + 'handbook-summarising';
|
|
118
117
|
case 'Charting':
|
|
119
|
-
return
|
|
118
|
+
return url + 'handbook-charts';
|
|
120
119
|
case 'ColumnFilter':
|
|
121
|
-
return
|
|
120
|
+
return url + 'handbook-column-filter';
|
|
122
121
|
case 'ColumnInfo':
|
|
123
|
-
return
|
|
122
|
+
return url + 'dev-guide-column-grid-column-info';
|
|
124
123
|
case 'Comment':
|
|
125
|
-
return
|
|
124
|
+
return url + 'handbook-comments';
|
|
126
125
|
case 'CustomSort':
|
|
127
|
-
return
|
|
126
|
+
return url + 'handbook-custom-sorting';
|
|
128
127
|
case 'Dashboard':
|
|
129
|
-
return
|
|
128
|
+
return url + 'ui-dashboard';
|
|
130
129
|
case 'DataChangeHistory':
|
|
131
|
-
return
|
|
130
|
+
return url + 'handbook-monitoring-data-change-history';
|
|
132
131
|
case 'DataImport':
|
|
133
|
-
return
|
|
132
|
+
return url + 'handbook-importing';
|
|
134
133
|
case 'DataSet':
|
|
135
|
-
return
|
|
134
|
+
return url + 'handbook-data-sets';
|
|
136
135
|
case 'Export':
|
|
137
|
-
return
|
|
136
|
+
return url + 'handbook-exporting';
|
|
138
137
|
case 'Fdc3':
|
|
139
|
-
return
|
|
138
|
+
return url + 'handbook-fdc3';
|
|
140
139
|
case 'FlashingCell':
|
|
141
|
-
return
|
|
140
|
+
return url + 'handbook-flashing-cell';
|
|
142
141
|
case 'FormatColumn':
|
|
143
|
-
return
|
|
142
|
+
return url + 'handbook-column-formatting';
|
|
144
143
|
case 'FreeTextColumn':
|
|
145
|
-
return
|
|
144
|
+
return url + 'handbook-freetext-column';
|
|
146
145
|
case 'GridFilter':
|
|
147
|
-
return
|
|
146
|
+
return url + 'handbook-grid-filter';
|
|
148
147
|
case 'GridInfo':
|
|
149
|
-
return
|
|
148
|
+
return url + 'dev-guide-column-grid-column-info';
|
|
150
149
|
case 'Layout':
|
|
151
|
-
return
|
|
150
|
+
return url + 'handbook-layouts';
|
|
152
151
|
case 'NamedQuery':
|
|
153
|
-
return
|
|
152
|
+
return url + 'handbook-named-queries';
|
|
154
153
|
case 'Note':
|
|
155
|
-
return
|
|
154
|
+
return url + 'handbook-notes';
|
|
156
155
|
case 'PlusMinus':
|
|
157
|
-
return
|
|
156
|
+
return url + 'handbook-editing-plus-minus';
|
|
158
157
|
case 'QuickSearch':
|
|
159
|
-
return
|
|
158
|
+
return url + 'handbook-quick-search';
|
|
160
159
|
case 'Schedule':
|
|
161
|
-
return
|
|
160
|
+
return url + 'handbook-scheduling';
|
|
162
161
|
case 'SettingsPanel':
|
|
163
|
-
return
|
|
162
|
+
return url + 'ui-settings-panel';
|
|
164
163
|
case 'Shortcut':
|
|
165
|
-
return
|
|
164
|
+
return url + 'handbook-editing-shortcut';
|
|
166
165
|
case 'SmartEdit':
|
|
167
|
-
return
|
|
166
|
+
return url + 'handbook-editing-smart-edit';
|
|
168
167
|
case 'StateManagement':
|
|
169
|
-
return
|
|
168
|
+
return url + 'dev-guide-adaptable-state-management';
|
|
170
169
|
case 'StatusBar':
|
|
171
|
-
return
|
|
170
|
+
return url + 'ui-status-bar';
|
|
172
171
|
case 'StyledColumn':
|
|
173
|
-
return
|
|
172
|
+
return url + 'handbook-styled-column-overview';
|
|
174
173
|
case 'SystemStatus':
|
|
175
|
-
return
|
|
174
|
+
return url + 'handbook-system-status-message';
|
|
176
175
|
case 'TeamSharing':
|
|
177
|
-
return
|
|
176
|
+
return url + 'handbook-team-sharing';
|
|
178
177
|
case 'Theme':
|
|
179
|
-
return
|
|
178
|
+
return url + 'handbook-theming';
|
|
180
179
|
case 'ToolPanel':
|
|
181
|
-
return
|
|
180
|
+
return url + 'ui-tool-panel';
|
|
182
181
|
case 'IPushPull':
|
|
183
|
-
return
|
|
182
|
+
return url + 'integrations-ipushpull';
|
|
184
183
|
case 'OpenFin':
|
|
185
|
-
return
|
|
184
|
+
return url + 'integrations-openfin';
|
|
186
185
|
default:
|
|
187
186
|
return 'good';
|
|
188
187
|
}
|
|
@@ -11,6 +11,9 @@ export const errorOnce = (message) => {
|
|
|
11
11
|
console.error(message);
|
|
12
12
|
errorOnceFlags[message] = true;
|
|
13
13
|
};
|
|
14
|
+
/**
|
|
15
|
+
* AdapTable's Logger
|
|
16
|
+
*/
|
|
14
17
|
export class AdaptableLogger {
|
|
15
18
|
// use static loggers whenever access to AdaptableLogger instance is not feasible
|
|
16
19
|
static consoleErrorBase(message, ...optionalParams) {
|
package/src/agGrid/index.d.ts
CHANGED
|
@@ -2,5 +2,11 @@ import { Adaptable, AdaptableNoCodeWizard as ABWizard } from './Adaptable';
|
|
|
2
2
|
import { AdaptableLogger as ABLogger } from './AdaptableLogger';
|
|
3
3
|
export { default as AdaptableWizardView } from '../View/AdaptableWizardView';
|
|
4
4
|
export default Adaptable;
|
|
5
|
+
/**
|
|
6
|
+
* AdapTable's No Code Wizard
|
|
7
|
+
*/
|
|
5
8
|
export declare const AdaptableNoCodeWizard: typeof ABWizard;
|
|
9
|
+
/**
|
|
10
|
+
* AdapTable's Logger
|
|
11
|
+
*/
|
|
6
12
|
export declare const AdaptableLogger: typeof ABLogger;
|
package/src/agGrid/index.js
CHANGED
|
@@ -4,5 +4,11 @@ AdaptableNoCodeWizard as ABWizard, } from './Adaptable';
|
|
|
4
4
|
import { AdaptableLogger as ABLogger } from './AdaptableLogger';
|
|
5
5
|
export { default as AdaptableWizardView } from '../View/AdaptableWizardView';
|
|
6
6
|
export default Adaptable;
|
|
7
|
+
/**
|
|
8
|
+
* AdapTable's No Code Wizard
|
|
9
|
+
*/
|
|
7
10
|
export const AdaptableNoCodeWizard = ABWizard;
|
|
11
|
+
/**
|
|
12
|
+
* AdapTable's Logger
|
|
13
|
+
*/
|
|
8
14
|
export const AdaptableLogger = ABLogger;
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
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" || '',
|
|
3
|
-
PUBLISH_TIMESTAMP:
|
|
4
|
-
VERSION: "21.2.2
|
|
3
|
+
PUBLISH_TIMESTAMP: 1769503255554 || Date.now(),
|
|
4
|
+
VERSION: "21.2.2" || '--current-version--',
|
|
5
5
|
};
|
|
@@ -314,6 +314,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
314
314
|
isOpt: boolean;
|
|
315
315
|
}[];
|
|
316
316
|
};
|
|
317
|
+
AdaptableColumnSummary: {
|
|
318
|
+
name: string;
|
|
319
|
+
kind: string;
|
|
320
|
+
desc: string;
|
|
321
|
+
};
|
|
317
322
|
AdaptableColumnType: {
|
|
318
323
|
name: string;
|
|
319
324
|
kind: string;
|
|
@@ -443,6 +448,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
443
448
|
kind: string;
|
|
444
449
|
desc: string;
|
|
445
450
|
};
|
|
451
|
+
AdaptableFilterComponentLocation: {
|
|
452
|
+
name: string;
|
|
453
|
+
kind: string;
|
|
454
|
+
desc: string;
|
|
455
|
+
};
|
|
446
456
|
AdaptableFilterState: {
|
|
447
457
|
name: string;
|
|
448
458
|
kind: string;
|
|
@@ -547,6 +557,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
547
557
|
kind: string;
|
|
548
558
|
desc: string;
|
|
549
559
|
};
|
|
560
|
+
AdaptableLogger: {
|
|
561
|
+
name: string;
|
|
562
|
+
kind: string;
|
|
563
|
+
desc: string;
|
|
564
|
+
};
|
|
550
565
|
AdaptableMenuItem: {
|
|
551
566
|
name: string;
|
|
552
567
|
kind: string;
|
|
@@ -3896,6 +3911,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3896
3911
|
isOpt: boolean;
|
|
3897
3912
|
})[];
|
|
3898
3913
|
};
|
|
3914
|
+
GridCellWithCount: {
|
|
3915
|
+
name: string;
|
|
3916
|
+
kind: string;
|
|
3917
|
+
desc: string;
|
|
3918
|
+
props: ({
|
|
3919
|
+
name: string;
|
|
3920
|
+
kind: string;
|
|
3921
|
+
desc: string;
|
|
3922
|
+
isOpt?: undefined;
|
|
3923
|
+
} | {
|
|
3924
|
+
name: string;
|
|
3925
|
+
kind: string;
|
|
3926
|
+
desc: string;
|
|
3927
|
+
isOpt: boolean;
|
|
3928
|
+
})[];
|
|
3929
|
+
};
|
|
3899
3930
|
GridDataContextMapping: {
|
|
3900
3931
|
name: string;
|
|
3901
3932
|
kind: string;
|
|
@@ -5168,6 +5199,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5168
5199
|
ref?: undefined;
|
|
5169
5200
|
})[];
|
|
5170
5201
|
};
|
|
5202
|
+
RowDataChangedInfo: {
|
|
5203
|
+
name: string;
|
|
5204
|
+
kind: string;
|
|
5205
|
+
desc: string;
|
|
5206
|
+
props: ({
|
|
5207
|
+
name: string;
|
|
5208
|
+
kind: string;
|
|
5209
|
+
desc: string;
|
|
5210
|
+
ref?: undefined;
|
|
5211
|
+
} | {
|
|
5212
|
+
name: string;
|
|
5213
|
+
kind: string;
|
|
5214
|
+
desc: string;
|
|
5215
|
+
ref: string;
|
|
5216
|
+
})[];
|
|
5217
|
+
};
|
|
5171
5218
|
RowDataChangeTrigger: {
|
|
5172
5219
|
name: string;
|
|
5173
5220
|
kind: string;
|
|
@@ -6070,6 +6117,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
6070
6117
|
ref: string;
|
|
6071
6118
|
}[];
|
|
6072
6119
|
};
|
|
6120
|
+
UniqueGridCell: {
|
|
6121
|
+
name: string;
|
|
6122
|
+
kind: string;
|
|
6123
|
+
desc: string;
|
|
6124
|
+
props: {
|
|
6125
|
+
name: string;
|
|
6126
|
+
kind: string;
|
|
6127
|
+
desc: string;
|
|
6128
|
+
}[];
|
|
6129
|
+
};
|
|
6073
6130
|
UpgradeConfig: {
|
|
6074
6131
|
name: string;
|
|
6075
6132
|
kind: string;
|