@adaptabletools/adaptable 15.4.1 → 15.4.3
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 +117 -117
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +3 -0
- package/src/AdaptableInterfaces/IAdaptable.d.ts +0 -2
- package/src/AdaptableOptions/FilterOptions.d.ts +3 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +24 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +3 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +3 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +6 -0
- package/src/Api/BulkUpdateApi.d.ts +3 -3
- package/src/Api/ExportApi.d.ts +3 -3
- package/src/Api/GridApi.d.ts +30 -19
- package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +2 -2
- package/src/Api/Implementation/BulkUpdateApiImpl.js +2 -2
- package/src/Api/Implementation/GridApiImpl.d.ts +5 -13
- package/src/Api/Implementation/GridApiImpl.js +46 -16
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +2 -2
- package/src/Api/Implementation/PlusMinusApiImpl.js +2 -2
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +2 -2
- package/src/Api/Implementation/SmartEditApiImpl.js +2 -2
- package/src/Api/Internal/ActionInternalApi.d.ts +0 -1
- package/src/Api/Internal/ActionInternalApi.js +0 -28
- package/src/Api/Internal/GridInternalApi.d.ts +0 -3
- package/src/Api/Internal/GridInternalApi.js +0 -23
- package/src/Api/PlusMinusApi.d.ts +3 -3
- package/src/Api/SmartEditApi.d.ts +3 -3
- package/src/PredefinedConfig/AlertState.d.ts +8 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +13 -1
- package/src/PredefinedConfig/Common/Entitlement.d.ts +3 -0
- package/src/PredefinedConfig/Selection/GridCell.d.ts +21 -0
- package/src/PredefinedConfig/StyledColumnState.d.ts +3 -0
- package/src/Redux/ActionsReducers/BulkUpdateRedux.d.ts +3 -3
- package/src/Redux/ActionsReducers/BulkUpdateRedux.js +2 -2
- package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +3 -3
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +2 -2
- package/src/Redux/ActionsReducers/SmartEditRedux.d.ts +3 -3
- package/src/Redux/ActionsReducers/SmartEditRedux.js +2 -2
- package/src/Redux/Store/AdaptableStore.js +5 -5
- package/src/Strategy/CalculatedColumnModule.d.ts +4 -1
- package/src/Strategy/CalculatedColumnModule.js +30 -13
- package/src/Strategy/Interface/ISmartEditModule.d.ts +2 -2
- package/src/Strategy/PlusMinusModule.js +10 -1
- package/src/Strategy/SmartEditModule.d.ts +2 -2
- package/src/Strategy/SmartEditModule.js +2 -2
- package/src/Utilities/Helpers/PreviewHelper.d.ts +3 -1
- package/src/Utilities/Helpers/PreviewHelper.js +31 -1
- package/src/View/Components/FilterForm/QuickFilterValues.js +8 -1
- package/src/agGrid/Adaptable.d.ts +0 -1
- package/src/agGrid/Adaptable.js +9 -11
- package/src/metamodel/adaptable.metamodel.d.ts +148 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/types.d.ts +3 -0
- package/src/types.d.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -284,6 +284,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
284
284
|
kind: string;
|
|
285
285
|
desc: string;
|
|
286
286
|
};
|
|
287
|
+
AdaptableColumnPredicate: {
|
|
288
|
+
name: string;
|
|
289
|
+
kind: string;
|
|
290
|
+
desc: string;
|
|
291
|
+
props: {
|
|
292
|
+
name: string;
|
|
293
|
+
kind: string;
|
|
294
|
+
desc: string;
|
|
295
|
+
isOpt: boolean;
|
|
296
|
+
}[];
|
|
297
|
+
};
|
|
287
298
|
AdaptableColumnType: {
|
|
288
299
|
name: string;
|
|
289
300
|
kind: string;
|
|
@@ -514,6 +525,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
514
525
|
kind: string;
|
|
515
526
|
desc: string;
|
|
516
527
|
};
|
|
528
|
+
AdaptableNoCodeWizardOptions: {
|
|
529
|
+
name: string;
|
|
530
|
+
kind: string;
|
|
531
|
+
desc: string;
|
|
532
|
+
};
|
|
517
533
|
AdaptableObject: {
|
|
518
534
|
name: string;
|
|
519
535
|
kind: string;
|
|
@@ -975,6 +991,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
975
991
|
ref?: undefined;
|
|
976
992
|
})[];
|
|
977
993
|
};
|
|
994
|
+
AlertButtonForm: {
|
|
995
|
+
name: string;
|
|
996
|
+
kind: string;
|
|
997
|
+
desc: string;
|
|
998
|
+
};
|
|
978
999
|
AlertDefinition: {
|
|
979
1000
|
name: string;
|
|
980
1001
|
kind: string;
|
|
@@ -1387,6 +1408,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1387
1408
|
kind: string;
|
|
1388
1409
|
desc: string;
|
|
1389
1410
|
};
|
|
1411
|
+
CellUpdateRequest: {
|
|
1412
|
+
name: string;
|
|
1413
|
+
kind: string;
|
|
1414
|
+
desc: string;
|
|
1415
|
+
props: ({
|
|
1416
|
+
name: string;
|
|
1417
|
+
kind: string;
|
|
1418
|
+
desc: string;
|
|
1419
|
+
isOpt?: undefined;
|
|
1420
|
+
} | {
|
|
1421
|
+
name: string;
|
|
1422
|
+
kind: string;
|
|
1423
|
+
desc: string;
|
|
1424
|
+
isOpt: boolean;
|
|
1425
|
+
})[];
|
|
1426
|
+
};
|
|
1390
1427
|
ChartContainer: {
|
|
1391
1428
|
name: string;
|
|
1392
1429
|
kind: string;
|
|
@@ -1992,6 +2029,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1992
2029
|
ref?: undefined;
|
|
1993
2030
|
})[];
|
|
1994
2031
|
};
|
|
2032
|
+
CustomToolPanelButtonContext: {
|
|
2033
|
+
name: string;
|
|
2034
|
+
kind: string;
|
|
2035
|
+
desc: string;
|
|
2036
|
+
props: {
|
|
2037
|
+
name: string;
|
|
2038
|
+
kind: string;
|
|
2039
|
+
desc: string;
|
|
2040
|
+
ref: string;
|
|
2041
|
+
}[];
|
|
2042
|
+
};
|
|
1995
2043
|
DashboardButtonContext: {
|
|
1996
2044
|
name: string;
|
|
1997
2045
|
kind: string;
|
|
@@ -2255,6 +2303,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2255
2303
|
defVal?: undefined;
|
|
2256
2304
|
})[];
|
|
2257
2305
|
};
|
|
2306
|
+
Entitlement: {
|
|
2307
|
+
name: string;
|
|
2308
|
+
kind: string;
|
|
2309
|
+
desc: string;
|
|
2310
|
+
props: {
|
|
2311
|
+
name: string;
|
|
2312
|
+
kind: string;
|
|
2313
|
+
desc: string;
|
|
2314
|
+
ref: string;
|
|
2315
|
+
}[];
|
|
2316
|
+
};
|
|
2258
2317
|
EntitlementContext: {
|
|
2259
2318
|
name: string;
|
|
2260
2319
|
kind: string;
|
|
@@ -2386,6 +2445,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2386
2445
|
isOpt: boolean;
|
|
2387
2446
|
}[];
|
|
2388
2447
|
};
|
|
2448
|
+
ExpressionCategory: {
|
|
2449
|
+
name: string;
|
|
2450
|
+
kind: string;
|
|
2451
|
+
desc: string;
|
|
2452
|
+
};
|
|
2389
2453
|
ExpressionContext: {
|
|
2390
2454
|
name: string;
|
|
2391
2455
|
kind: string;
|
|
@@ -2506,6 +2570,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2506
2570
|
kind: string;
|
|
2507
2571
|
desc: string;
|
|
2508
2572
|
};
|
|
2573
|
+
FDC3DesktopAgent: {
|
|
2574
|
+
name: string;
|
|
2575
|
+
kind: string;
|
|
2576
|
+
desc: string;
|
|
2577
|
+
props: {
|
|
2578
|
+
name: string;
|
|
2579
|
+
kind: string;
|
|
2580
|
+
desc: string;
|
|
2581
|
+
}[];
|
|
2582
|
+
};
|
|
2509
2583
|
FDC3Intent: {
|
|
2510
2584
|
name: string;
|
|
2511
2585
|
kind: string;
|
|
@@ -2527,6 +2601,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2527
2601
|
isOpt: boolean;
|
|
2528
2602
|
})[];
|
|
2529
2603
|
};
|
|
2604
|
+
FilterContext: {
|
|
2605
|
+
name: string;
|
|
2606
|
+
kind: string;
|
|
2607
|
+
desc: string;
|
|
2608
|
+
props: {
|
|
2609
|
+
name: string;
|
|
2610
|
+
kind: string;
|
|
2611
|
+
desc: string;
|
|
2612
|
+
}[];
|
|
2613
|
+
};
|
|
2530
2614
|
FilterOptions: {
|
|
2531
2615
|
name: string;
|
|
2532
2616
|
kind: string;
|
|
@@ -3039,6 +3123,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3039
3123
|
kind: string;
|
|
3040
3124
|
desc: string;
|
|
3041
3125
|
};
|
|
3126
|
+
GridInfoSections: {
|
|
3127
|
+
name: string;
|
|
3128
|
+
kind: string;
|
|
3129
|
+
desc: string;
|
|
3130
|
+
};
|
|
3042
3131
|
GridRow: {
|
|
3043
3132
|
name: string;
|
|
3044
3133
|
kind: string;
|
|
@@ -3301,6 +3390,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3301
3390
|
isOpt: boolean;
|
|
3302
3391
|
}[];
|
|
3303
3392
|
};
|
|
3393
|
+
LayoutTagOptions: {
|
|
3394
|
+
name: string;
|
|
3395
|
+
kind: string;
|
|
3396
|
+
desc: string;
|
|
3397
|
+
props: {
|
|
3398
|
+
name: string;
|
|
3399
|
+
kind: string;
|
|
3400
|
+
desc: string;
|
|
3401
|
+
isOpt: boolean;
|
|
3402
|
+
defVal: string;
|
|
3403
|
+
}[];
|
|
3404
|
+
};
|
|
3304
3405
|
LayoutViewOptions: {
|
|
3305
3406
|
name: string;
|
|
3306
3407
|
kind: string;
|
|
@@ -3436,6 +3537,38 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3436
3537
|
isOpt: boolean;
|
|
3437
3538
|
}[];
|
|
3438
3539
|
};
|
|
3540
|
+
NumericStyledColumn: {
|
|
3541
|
+
name: string;
|
|
3542
|
+
kind: string;
|
|
3543
|
+
desc: string;
|
|
3544
|
+
props: ({
|
|
3545
|
+
name: string;
|
|
3546
|
+
kind: string;
|
|
3547
|
+
desc: string;
|
|
3548
|
+
isOpt: boolean;
|
|
3549
|
+
ref?: undefined;
|
|
3550
|
+
defVal?: undefined;
|
|
3551
|
+
} | {
|
|
3552
|
+
name: string;
|
|
3553
|
+
kind: string;
|
|
3554
|
+
desc: string;
|
|
3555
|
+
isOpt: boolean;
|
|
3556
|
+
ref: string;
|
|
3557
|
+
defVal?: undefined;
|
|
3558
|
+
} | {
|
|
3559
|
+
name: string;
|
|
3560
|
+
kind: string;
|
|
3561
|
+
desc: string;
|
|
3562
|
+
isOpt: boolean;
|
|
3563
|
+
defVal: string;
|
|
3564
|
+
ref: string;
|
|
3565
|
+
})[];
|
|
3566
|
+
};
|
|
3567
|
+
ObjectTagsContext: {
|
|
3568
|
+
name: string;
|
|
3569
|
+
kind: string;
|
|
3570
|
+
desc: string;
|
|
3571
|
+
};
|
|
3439
3572
|
OpenFinPluginOptions: {
|
|
3440
3573
|
name: string;
|
|
3441
3574
|
kind: string;
|
|
@@ -3712,6 +3845,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3712
3845
|
ref?: undefined;
|
|
3713
3846
|
})[];
|
|
3714
3847
|
};
|
|
3848
|
+
PredicateDefInput: {
|
|
3849
|
+
name: string;
|
|
3850
|
+
kind: string;
|
|
3851
|
+
desc: string;
|
|
3852
|
+
};
|
|
3853
|
+
PredicateDefToStringParams: {
|
|
3854
|
+
name: string;
|
|
3855
|
+
kind: string;
|
|
3856
|
+
desc: string;
|
|
3857
|
+
};
|
|
3858
|
+
PredicateModuleScope: {
|
|
3859
|
+
name: string;
|
|
3860
|
+
kind: string;
|
|
3861
|
+
desc: string;
|
|
3862
|
+
};
|
|
3715
3863
|
PredicateOptions: {
|
|
3716
3864
|
name: string;
|
|
3717
3865
|
kind: string;
|