@adaptabletools/adaptable 11.1.1-canary.0 → 11.1.1-canary.1
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/bundle.cjs.js +8 -8
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
- package/src/AdaptableOptions/AlertOptions.d.ts +2 -2
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +2 -2
- package/src/AdaptableOptions/EditOptions.d.ts +2 -2
- package/src/Api/AlertApi.d.ts +3 -5
- package/src/Api/DataChangeHistoryApi.d.ts +3 -3
- package/src/Api/Events/CellChanged.d.ts +2 -2
- package/src/Api/ExportApi.d.ts +3 -3
- package/src/Api/FreeTextColumnApi.d.ts +3 -3
- package/src/Api/GridApi.d.ts +4 -4
- package/src/Api/Implementation/AlertApiImpl.d.ts +3 -3
- package/src/Api/Implementation/AlertApiImpl.js +20 -20
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +3 -3
- package/src/Api/Implementation/ExportApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ExportApiImpl.js +7 -8
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +2 -2
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +7 -7
- package/src/Api/Implementation/GridApiImpl.d.ts +3 -3
- package/src/Api/Implementation/GridApiImpl.js +5 -5
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -2
- package/src/Api/Implementation/InternalApiImpl.js +6 -6
- package/src/Api/InternalApi.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableFlashingCell.d.ts +2 -2
- package/src/PredefinedConfig/Common/{DataChangedInfo.d.ts → CellDataChangedInfo.d.ts} +1 -5
- package/src/PredefinedConfig/Common/{DataChangedInfo.js → CellDataChangedInfo.js} +0 -0
- package/src/PredefinedConfig/Common/DataChangedScope.d.ts +4 -0
- package/src/PredefinedConfig/Common/DataChangedScope.js +2 -0
- package/src/PredefinedConfig/SystemState.d.ts +2 -2
- package/src/Redux/ActionsReducers/GridRedux.d.ts +5 -5
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +5 -5
- package/src/Redux/ActionsReducers/SystemRedux.js +5 -5
- package/src/Redux/Store/AdaptableStore.js +14 -14
- package/src/Strategy/AlertModule.js +12 -10
- package/src/Strategy/BulkUpdateModule.js +2 -2
- package/src/Strategy/DataChangeHistoryModule.js +8 -6
- package/src/Strategy/FlashingCellModule.d.ts +2 -2
- package/src/Strategy/FlashingCellModule.js +21 -15
- package/src/Strategy/FormatColumnModule.js +4 -2
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
- package/src/Utilities/ObjectFactory.d.ts +2 -2
- package/src/Utilities/ObjectFactory.js +2 -2
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +3 -3
- package/src/Utilities/Services/DataService.d.ts +5 -5
- package/src/Utilities/Services/DataService.js +12 -10
- package/src/Utilities/Services/Interface/IAlertService.d.ts +2 -2
- package/src/Utilities/Services/Interface/IDataService.d.ts +6 -6
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +3 -3
- package/src/Utilities/Services/Interface/IValidationService.d.ts +4 -4
- package/src/Utilities/Services/QueryLanguageService.d.ts +3 -3
- package/src/Utilities/Services/ValidationService.d.ts +4 -4
- package/src/Utilities/Services/ValidationService.js +17 -17
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +2 -2
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.d.ts +2 -2
- package/src/agGrid/Adaptable.d.ts +2 -2
- package/src/agGrid/Adaptable.js +50 -48
- package/src/metamodel/adaptable.metamodel.d.ts +34 -34
- package/src/metamodel/adaptable.metamodel.js +67 -67
- package/src/types.d.ts +2 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -493,11 +493,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
493
493
|
"description": "Defines an Alert fired by AdapTable when a cell is changed",
|
|
494
494
|
"properties": [
|
|
495
495
|
{
|
|
496
|
-
"name": "
|
|
496
|
+
"name": "cellDataChangedInfo",
|
|
497
497
|
"kind": "REFERENCE",
|
|
498
498
|
"description": "Cell DataChange which triggered Alert",
|
|
499
|
-
"uiLabel": "Data Changed Info",
|
|
500
|
-
"reference": "
|
|
499
|
+
"uiLabel": "Cell Data Changed Info",
|
|
500
|
+
"reference": "CellDataChangedInfo"
|
|
501
501
|
}
|
|
502
502
|
]
|
|
503
503
|
},
|
|
@@ -695,12 +695,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
695
695
|
"description": "Defines an Alert fired by AdapTable",
|
|
696
696
|
"properties": [
|
|
697
697
|
{
|
|
698
|
-
"name": "
|
|
698
|
+
"name": "cellDataChangedInfo",
|
|
699
699
|
"kind": "REFERENCE",
|
|
700
700
|
"description": "Data change which triggered the FlashingCell",
|
|
701
|
-
"uiLabel": "Data Changed Info",
|
|
701
|
+
"uiLabel": "Cell Data Changed Info",
|
|
702
702
|
"isOptional": true,
|
|
703
|
-
"reference": "
|
|
703
|
+
"reference": "CellDataChangedInfo"
|
|
704
704
|
},
|
|
705
705
|
{
|
|
706
706
|
"name": "direction",
|
|
@@ -2410,7 +2410,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2410
2410
|
"kind": "REFERENCE",
|
|
2411
2411
|
"description": "Object providing full information of the cell (and column and row) that changed",
|
|
2412
2412
|
"uiLabel": "Cell Change",
|
|
2413
|
-
"reference": "
|
|
2413
|
+
"reference": "CellDataChangedInfo"
|
|
2414
2414
|
}
|
|
2415
2415
|
]
|
|
2416
2416
|
},
|
|
@@ -2446,6 +2446,66 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2446
2446
|
}
|
|
2447
2447
|
]
|
|
2448
2448
|
},
|
|
2449
|
+
"CellDataChangedInfo": {
|
|
2450
|
+
"name": "CellDataChangedInfo",
|
|
2451
|
+
"kind": "Interface",
|
|
2452
|
+
"description": "Defines a Cell Edit - includes full details of old and new values, the column and the enclosing Row",
|
|
2453
|
+
"properties": [
|
|
2454
|
+
{
|
|
2455
|
+
"name": "changedAt",
|
|
2456
|
+
"kind": "number",
|
|
2457
|
+
"description": "Timestamp of change occurrence (in milliseconds)",
|
|
2458
|
+
"uiLabel": "Changed At"
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
"name": "column",
|
|
2462
|
+
"kind": "REFERENCE",
|
|
2463
|
+
"description": "Column in which cell is situated",
|
|
2464
|
+
"uiLabel": "Column",
|
|
2465
|
+
"reference": "AdaptableColumn"
|
|
2466
|
+
},
|
|
2467
|
+
{
|
|
2468
|
+
"name": "newValue",
|
|
2469
|
+
"kind": "unknown",
|
|
2470
|
+
"description": "New value for the cell",
|
|
2471
|
+
"uiLabel": "New Value"
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
"name": "oldValue",
|
|
2475
|
+
"kind": "unknown",
|
|
2476
|
+
"description": "Value in the Cell before the edit",
|
|
2477
|
+
"uiLabel": "Old Value"
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
"name": "primaryKeyValue",
|
|
2481
|
+
"kind": "unknown",
|
|
2482
|
+
"description": "Primary Key Column's value for the row where edited cell is situated",
|
|
2483
|
+
"uiLabel": "Primary Key Value"
|
|
2484
|
+
},
|
|
2485
|
+
{
|
|
2486
|
+
"name": "rowData",
|
|
2487
|
+
"kind": "unknown",
|
|
2488
|
+
"description": "Data in the Row",
|
|
2489
|
+
"uiLabel": "Row Data",
|
|
2490
|
+
"isOptional": true
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
"name": "rowNode",
|
|
2494
|
+
"kind": "REFERENCE",
|
|
2495
|
+
"description": "AG Grid RowNode that contains the cell",
|
|
2496
|
+
"uiLabel": "Row Node",
|
|
2497
|
+
"isOptional": true,
|
|
2498
|
+
"reference": "unknown"
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
"name": "trigger",
|
|
2502
|
+
"kind": "unknown",
|
|
2503
|
+
"description": "What triggered the change - user, background change or a reverted change?",
|
|
2504
|
+
"uiLabel": "Trigger",
|
|
2505
|
+
"isOptional": true
|
|
2506
|
+
}
|
|
2507
|
+
]
|
|
2508
|
+
},
|
|
2449
2509
|
"CellHighlightInfo": {
|
|
2450
2510
|
"name": "CellHighlightInfo",
|
|
2451
2511
|
"kind": "Interface",
|
|
@@ -4364,66 +4424,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4364
4424
|
}
|
|
4365
4425
|
]
|
|
4366
4426
|
},
|
|
4367
|
-
"DataChangedInfo": {
|
|
4368
|
-
"name": "DataChangedInfo",
|
|
4369
|
-
"kind": "Interface",
|
|
4370
|
-
"description": "Defines a Cell Edit - includes full details of old and new values, the column and the enclosing Row",
|
|
4371
|
-
"properties": [
|
|
4372
|
-
{
|
|
4373
|
-
"name": "changedAt",
|
|
4374
|
-
"kind": "number",
|
|
4375
|
-
"description": "Timestamp of change occurrence (in milliseconds)",
|
|
4376
|
-
"uiLabel": "Changed At"
|
|
4377
|
-
},
|
|
4378
|
-
{
|
|
4379
|
-
"name": "column",
|
|
4380
|
-
"kind": "REFERENCE",
|
|
4381
|
-
"description": "Column in which cell is situated",
|
|
4382
|
-
"uiLabel": "Column",
|
|
4383
|
-
"reference": "AdaptableColumn"
|
|
4384
|
-
},
|
|
4385
|
-
{
|
|
4386
|
-
"name": "newValue",
|
|
4387
|
-
"kind": "unknown",
|
|
4388
|
-
"description": "New value for the cell",
|
|
4389
|
-
"uiLabel": "New Value"
|
|
4390
|
-
},
|
|
4391
|
-
{
|
|
4392
|
-
"name": "oldValue",
|
|
4393
|
-
"kind": "unknown",
|
|
4394
|
-
"description": "Value in the Cell before the edit",
|
|
4395
|
-
"uiLabel": "Old Value"
|
|
4396
|
-
},
|
|
4397
|
-
{
|
|
4398
|
-
"name": "primaryKeyValue",
|
|
4399
|
-
"kind": "unknown",
|
|
4400
|
-
"description": "Primary Key Column's value for the row where edited cell is situated",
|
|
4401
|
-
"uiLabel": "Primary Key Value"
|
|
4402
|
-
},
|
|
4403
|
-
{
|
|
4404
|
-
"name": "rowData",
|
|
4405
|
-
"kind": "unknown",
|
|
4406
|
-
"description": "Data in the Row",
|
|
4407
|
-
"uiLabel": "Row Data",
|
|
4408
|
-
"isOptional": true
|
|
4409
|
-
},
|
|
4410
|
-
{
|
|
4411
|
-
"name": "rowNode",
|
|
4412
|
-
"kind": "REFERENCE",
|
|
4413
|
-
"description": "AG Grid RowNode that contains the cell",
|
|
4414
|
-
"uiLabel": "Row Node",
|
|
4415
|
-
"isOptional": true,
|
|
4416
|
-
"reference": "unknown"
|
|
4417
|
-
},
|
|
4418
|
-
{
|
|
4419
|
-
"name": "trigger",
|
|
4420
|
-
"kind": "unknown",
|
|
4421
|
-
"description": "What triggered the change - user, background change or a reverted change?",
|
|
4422
|
-
"uiLabel": "Trigger",
|
|
4423
|
-
"isOptional": true
|
|
4424
|
-
}
|
|
4425
|
-
]
|
|
4426
|
-
},
|
|
4427
4427
|
"DataChangeHistoryApi": {
|
|
4428
4428
|
"name": "DataChangeHistoryApi",
|
|
4429
4429
|
"kind": "Interface",
|
package/src/types.d.ts
CHANGED
|
@@ -114,7 +114,8 @@ export type { CellHighlightInfo } from './PredefinedConfig/Common/CellHighlightI
|
|
|
114
114
|
export type { RowHighlightInfo } from './PredefinedConfig/Common/RowHighlightInfo';
|
|
115
115
|
export type { RowsHighlightInfo } from './PredefinedConfig/Common/RowsHighlightInfo';
|
|
116
116
|
export type { ColumnSort } from './PredefinedConfig/Common/ColumnSort';
|
|
117
|
-
export type {
|
|
117
|
+
export type { CellDataChangedInfo } from './PredefinedConfig/Common/CellDataChangedInfo';
|
|
118
|
+
export type { DataChangedScope } from './PredefinedConfig/Common/DataChangedScope';
|
|
118
119
|
export type { DataUpdateConfig } from './PredefinedConfig/Common/DataUpdateConfig';
|
|
119
120
|
export type { AdaptableFormData, AdaptableForm, AdaptableFormField, } from './PredefinedConfig/Common/AdaptableForm';
|
|
120
121
|
export type { AdaptableButton, ButtonContext } from './PredefinedConfig/Common/AdaptableButton';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "11.1.1-canary.
|
|
1
|
+
declare const _default: "11.1.1-canary.1";
|
|
2
2
|
export default _default;
|
package/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = '11.1.1-canary.
|
|
3
|
+
exports.default = '11.1.1-canary.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|