@adaptabletools/adaptable 14.0.0 → 14.0.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.
Files changed (83) hide show
  1. package/bundle.cjs.js +230 -225
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableOptions/ActionOptions.d.ts +5 -3
  6. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +14 -7
  7. package/src/AdaptableOptions/AdaptableOptions.d.ts +16 -2
  8. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +4 -5
  9. package/src/AdaptableOptions/AlertOptions.d.ts +1 -0
  10. package/src/AdaptableOptions/ChartingOptions.d.ts +1 -0
  11. package/src/AdaptableOptions/ColumnOptions.d.ts +3 -0
  12. package/src/AdaptableOptions/DashboardOptions.d.ts +3 -0
  13. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -0
  14. package/src/AdaptableOptions/ExpressionOptions.d.ts +15 -15
  15. package/src/AdaptableOptions/FilterOptions.d.ts +9 -8
  16. package/src/AdaptableOptions/FinancePluginOptions.d.ts +0 -11
  17. package/src/AdaptableOptions/GeneralOptions.d.ts +3 -9
  18. package/src/AdaptableOptions/LayoutOptions.d.ts +2 -7
  19. package/src/AdaptableOptions/MenuOptions.d.ts +1 -1
  20. package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -0
  21. package/src/AdaptableOptions/SearchOptions.d.ts +1 -0
  22. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +2 -0
  23. package/src/AdaptableOptions/StateOptions.d.ts +0 -4
  24. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -1
  25. package/src/Api/AlertApi.d.ts +3 -3
  26. package/src/Api/GridApi.d.ts +5 -5
  27. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
  28. package/src/Api/Implementation/AlertApiImpl.js +1 -1
  29. package/src/Api/Implementation/GridApiImpl.js +1 -1
  30. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -0
  31. package/src/Api/Implementation/StyledColumnApiImpl.js +6 -0
  32. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +2 -0
  33. package/src/Api/Implementation/TeamSharingApiImpl.js +7 -0
  34. package/src/Api/Internal/LayoutInternalApi.js +1 -2
  35. package/src/Api/Internal/PredicateInternalApi.js +0 -7
  36. package/src/Api/Internal/TeamSharingInternalApi.d.ts +0 -5
  37. package/src/Api/Internal/TeamSharingInternalApi.js +0 -9
  38. package/src/Api/StyledColumnApi.d.ts +7 -2
  39. package/src/Api/TeamSharingApi.d.ts +8 -0
  40. package/src/PredefinedConfig/AlertState.d.ts +1 -1
  41. package/src/PredefinedConfig/CalculatedColumnState.d.ts +2 -6
  42. package/src/PredefinedConfig/Common/Menu.d.ts +5 -5
  43. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +6 -2
  44. package/src/PredefinedConfig/FormatColumnState.d.ts +2 -3
  45. package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -6
  46. package/src/Strategy/CalculatedColumnModule.js +7 -0
  47. package/src/Strategy/ChartingModule.js +2 -4
  48. package/src/Strategy/FreeTextColumnModule.js +24 -5
  49. package/src/Strategy/StyledColumnModule.js +60 -28
  50. package/src/Strategy/TeamSharingModule.js +2 -2
  51. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +0 -3
  52. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +1 -1
  53. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +11 -10
  54. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +11 -7
  55. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -1
  56. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +26 -52
  57. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +13 -13
  58. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
  59. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +101 -44
  60. package/src/Utilities/ObjectFactory.js +1 -1
  61. package/src/View/Components/Charting/ChartingStatusBarPopover.js +19 -14
  62. package/src/View/Components/Charting/ChartingViewPanel.js +2 -67
  63. package/src/View/Components/Charting/DeleteChartButton.d.ts +1 -0
  64. package/src/View/Components/Charting/DeleteChartButton.js +1 -1
  65. package/src/View/Components/Charting/EditChartButton.d.ts +1 -0
  66. package/src/View/Components/Charting/EditChartButton.js +1 -1
  67. package/src/View/Components/Charting/useChartingElements.d.ts +14 -0
  68. package/src/View/Components/Charting/useChartingElements.js +90 -0
  69. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +1 -1
  70. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +18 -10
  71. package/src/View/TeamSharing/SharedEntityObjectView.js +5 -4
  72. package/src/agGrid/Adaptable.d.ts +0 -1
  73. package/src/agGrid/Adaptable.js +15 -24
  74. package/src/components/ExpressionEditor/BaseEditorInput.js +42 -7
  75. package/src/components/ExpressionEditor/editorButtonsCumulativeAggregatedScalar.js +5 -5
  76. package/src/components/ExpressionEditor/editorButtonsSearch.js +8 -12
  77. package/src/metamodel/adaptable.metamodel.d.ts +124 -58
  78. package/src/metamodel/adaptable.metamodel.js +1 -1
  79. package/src/parser/src/types.d.ts +5 -9
  80. package/src/parser/src/utils.js +6 -3
  81. package/src/types.d.ts +3 -3
  82. package/version.d.ts +1 -1
  83. package/version.js +1 -1
@@ -119,6 +119,11 @@ export declare const ADAPTABLE_METAMODEL: {
119
119
  reference: string;
120
120
  }[];
121
121
  };
122
+ ActionRowButtonsContext: {
123
+ name: string;
124
+ kind: string;
125
+ description: string;
126
+ };
122
127
  ActionRowButtonType: {
123
128
  name: string;
124
129
  kind: string;
@@ -465,6 +470,11 @@ export declare const ADAPTABLE_METAMODEL: {
465
470
  reference?: undefined;
466
471
  })[];
467
472
  };
473
+ AdaptableFrameworkComponent: {
474
+ name: string;
475
+ kind: string;
476
+ description: string;
477
+ };
468
478
  AdaptableIcon: {
469
479
  name: string;
470
480
  kind: string;
@@ -606,6 +616,16 @@ export declare const ADAPTABLE_METAMODEL: {
606
616
  noCode: string;
607
617
  defaultValue: string;
608
618
  reference?: undefined;
619
+ } | {
620
+ name: string;
621
+ kind: string;
622
+ description: string;
623
+ uiLabel: string;
624
+ isOptional: boolean;
625
+ noCode: string;
626
+ reference: string;
627
+ gridInfo?: undefined;
628
+ defaultValue?: undefined;
609
629
  } | {
610
630
  name: string;
611
631
  kind: string;
@@ -616,6 +636,16 @@ export declare const ADAPTABLE_METAMODEL: {
616
636
  defaultValue: string;
617
637
  reference?: undefined;
618
638
  noCode?: undefined;
639
+ } | {
640
+ name: string;
641
+ kind: string;
642
+ description: string;
643
+ uiLabel: string;
644
+ isOptional: boolean;
645
+ gridInfo: string;
646
+ noCode: string;
647
+ reference: string;
648
+ defaultValue?: undefined;
619
649
  } | {
620
650
  name: string;
621
651
  kind: string;
@@ -743,9 +773,9 @@ export declare const ADAPTABLE_METAMODEL: {
743
773
  description: string;
744
774
  uiLabel: string;
745
775
  isOptional: boolean;
776
+ noCode: string;
746
777
  defaultValue: string;
747
778
  gridInfo?: undefined;
748
- noCode?: undefined;
749
779
  reference?: undefined;
750
780
  } | {
751
781
  name: string;
@@ -847,19 +877,12 @@ export declare const ADAPTABLE_METAMODEL: {
847
877
  name: string;
848
878
  kind: string;
849
879
  description: string;
850
- properties: ({
851
- name: string;
852
- kind: string;
853
- description: string;
854
- uiLabel: string;
855
- isOptional?: undefined;
856
- } | {
880
+ properties: {
857
881
  name: string;
858
882
  kind: string;
859
883
  description: string;
860
884
  uiLabel: string;
861
- isOptional: boolean;
862
- })[];
885
+ }[];
863
886
  };
864
887
  AdaptableStateReloadedInfo: {
865
888
  name: string;
@@ -1083,6 +1106,16 @@ export declare const ADAPTABLE_METAMODEL: {
1083
1106
  isOptional: boolean;
1084
1107
  gridInfo?: undefined;
1085
1108
  defaultValue?: undefined;
1109
+ noCode?: undefined;
1110
+ } | {
1111
+ name: string;
1112
+ kind: string;
1113
+ description: string;
1114
+ uiLabel: string;
1115
+ isOptional: boolean;
1116
+ gridInfo: string;
1117
+ defaultValue: string;
1118
+ noCode?: undefined;
1086
1119
  } | {
1087
1120
  name: string;
1088
1121
  kind: string;
@@ -1090,6 +1123,7 @@ export declare const ADAPTABLE_METAMODEL: {
1090
1123
  uiLabel: string;
1091
1124
  isOptional: boolean;
1092
1125
  gridInfo: string;
1126
+ noCode: string;
1093
1127
  defaultValue: string;
1094
1128
  } | {
1095
1129
  name: string;
@@ -1099,6 +1133,7 @@ export declare const ADAPTABLE_METAMODEL: {
1099
1133
  isOptional: boolean;
1100
1134
  defaultValue: string;
1101
1135
  gridInfo?: undefined;
1136
+ noCode?: undefined;
1102
1137
  })[];
1103
1138
  };
1104
1139
  AlertProperties: {
@@ -1285,15 +1320,15 @@ export declare const ADAPTABLE_METAMODEL: {
1285
1320
  kind: string;
1286
1321
  description: string;
1287
1322
  uiLabel: string;
1288
- isOptional: boolean;
1289
1323
  reference: string;
1324
+ isOptional?: undefined;
1290
1325
  } | {
1291
1326
  name: string;
1292
1327
  kind: string;
1293
1328
  description: string;
1294
1329
  uiLabel: string;
1295
- isOptional?: undefined;
1296
1330
  reference?: undefined;
1331
+ isOptional?: undefined;
1297
1332
  } | {
1298
1333
  name: string;
1299
1334
  kind: string;
@@ -1301,13 +1336,6 @@ export declare const ADAPTABLE_METAMODEL: {
1301
1336
  uiLabel: string;
1302
1337
  isOptional: boolean;
1303
1338
  reference?: undefined;
1304
- } | {
1305
- name: string;
1306
- kind: string;
1307
- description: string;
1308
- uiLabel: string;
1309
- reference: string;
1310
- isOptional?: undefined;
1311
1339
  })[];
1312
1340
  };
1313
1341
  CalculatedColumnApi: {
@@ -1325,21 +1353,14 @@ export declare const ADAPTABLE_METAMODEL: {
1325
1353
  name: string;
1326
1354
  kind: string;
1327
1355
  description: string;
1328
- properties: ({
1329
- name: string;
1330
- kind: string;
1331
- description: string;
1332
- uiLabel: string;
1333
- isOptional?: undefined;
1334
- defaultValue?: undefined;
1335
- } | {
1356
+ properties: {
1336
1357
  name: string;
1337
1358
  kind: string;
1338
1359
  description: string;
1339
1360
  uiLabel: string;
1340
1361
  isOptional: boolean;
1341
1362
  defaultValue: string;
1342
- })[];
1363
+ }[];
1343
1364
  };
1344
1365
  CalculatedColumnState: {
1345
1366
  name: string;
@@ -1565,6 +1586,7 @@ export declare const ADAPTABLE_METAMODEL: {
1565
1586
  description: string;
1566
1587
  uiLabel: string;
1567
1588
  isOptional: boolean;
1589
+ noCode?: undefined;
1568
1590
  defaultValue?: undefined;
1569
1591
  } | {
1570
1592
  name: string;
@@ -1572,6 +1594,7 @@ export declare const ADAPTABLE_METAMODEL: {
1572
1594
  description: string;
1573
1595
  uiLabel: string;
1574
1596
  isOptional: boolean;
1597
+ noCode: string;
1575
1598
  defaultValue: string;
1576
1599
  })[];
1577
1600
  };
@@ -1702,6 +1725,7 @@ export declare const ADAPTABLE_METAMODEL: {
1702
1725
  uiLabel: string;
1703
1726
  isOptional: boolean;
1704
1727
  gridInfo: string;
1728
+ noCode: string;
1705
1729
  defaultValue: string;
1706
1730
  } | {
1707
1731
  name: string;
@@ -1711,6 +1735,7 @@ export declare const ADAPTABLE_METAMODEL: {
1711
1735
  isOptional: boolean;
1712
1736
  defaultValue: string;
1713
1737
  gridInfo?: undefined;
1738
+ noCode?: undefined;
1714
1739
  })[];
1715
1740
  };
1716
1741
  ColumnSort: {
@@ -2052,6 +2077,19 @@ export declare const ADAPTABLE_METAMODEL: {
2052
2077
  name: string;
2053
2078
  kind: string;
2054
2079
  description: string;
2080
+ properties: ({
2081
+ name: string;
2082
+ kind: string;
2083
+ description: string;
2084
+ uiLabel: string;
2085
+ reference: string;
2086
+ } | {
2087
+ name: string;
2088
+ kind: string;
2089
+ description: string;
2090
+ uiLabel: string;
2091
+ reference?: undefined;
2092
+ })[];
2055
2093
  };
2056
2094
  CustomSettingsPanel: {
2057
2095
  name: string;
@@ -2261,6 +2299,7 @@ export declare const ADAPTABLE_METAMODEL: {
2261
2299
  description: string;
2262
2300
  uiLabel: string;
2263
2301
  isOptional: boolean;
2302
+ noCode: string;
2264
2303
  defaultValue: string;
2265
2304
  gridInfo?: undefined;
2266
2305
  } | {
@@ -2270,6 +2309,7 @@ export declare const ADAPTABLE_METAMODEL: {
2270
2309
  uiLabel: string;
2271
2310
  isOptional: boolean;
2272
2311
  gridInfo: string;
2312
+ noCode: string;
2273
2313
  defaultValue: string;
2274
2314
  } | {
2275
2315
  name: string;
@@ -2277,6 +2317,7 @@ export declare const ADAPTABLE_METAMODEL: {
2277
2317
  description: string;
2278
2318
  uiLabel: string;
2279
2319
  isOptional: boolean;
2320
+ noCode?: undefined;
2280
2321
  defaultValue?: undefined;
2281
2322
  gridInfo?: undefined;
2282
2323
  })[];
@@ -2375,6 +2416,7 @@ export declare const ADAPTABLE_METAMODEL: {
2375
2416
  uiLabel: string;
2376
2417
  isOptional: boolean;
2377
2418
  gridInfo: string;
2419
+ noCode: string;
2378
2420
  defaultValue: string;
2379
2421
  } | {
2380
2422
  name: string;
@@ -2384,6 +2426,16 @@ export declare const ADAPTABLE_METAMODEL: {
2384
2426
  isOptional: boolean;
2385
2427
  defaultValue: string;
2386
2428
  gridInfo?: undefined;
2429
+ noCode?: undefined;
2430
+ } | {
2431
+ name: string;
2432
+ kind: string;
2433
+ description: string;
2434
+ uiLabel: string;
2435
+ isOptional: boolean;
2436
+ gridInfo: string;
2437
+ defaultValue: string;
2438
+ noCode?: undefined;
2387
2439
  })[];
2388
2440
  };
2389
2441
  DataSet: {
@@ -2770,6 +2822,13 @@ export declare const ADAPTABLE_METAMODEL: {
2770
2822
  kind: string;
2771
2823
  description: string;
2772
2824
  properties: ({
2825
+ name: string;
2826
+ kind: string;
2827
+ description: string;
2828
+ uiLabel: string;
2829
+ isOptional: boolean;
2830
+ reference: string;
2831
+ } | {
2773
2832
  name: string;
2774
2833
  kind: string;
2775
2834
  description: string;
@@ -2961,16 +3020,6 @@ export declare const ADAPTABLE_METAMODEL: {
2961
3020
  gridInfo?: undefined;
2962
3021
  noCode?: undefined;
2963
3022
  reference?: undefined;
2964
- } | {
2965
- name: string;
2966
- kind: string;
2967
- description: string;
2968
- uiLabel: string;
2969
- isOptional: boolean;
2970
- reference: string;
2971
- gridInfo?: undefined;
2972
- noCode?: undefined;
2973
- defaultValue?: undefined;
2974
3023
  } | {
2975
3024
  name: string;
2976
3025
  kind: string;
@@ -3260,32 +3309,24 @@ export declare const ADAPTABLE_METAMODEL: {
3260
3309
  kind: string;
3261
3310
  description: string;
3262
3311
  uiLabel: string;
3263
- defaultValue?: undefined;
3264
- isOptional?: undefined;
3265
- reference?: undefined;
3266
- } | {
3267
- name: string;
3268
- kind: string;
3269
- description: string;
3270
- uiLabel: string;
3271
- defaultValue: string;
3272
3312
  isOptional?: undefined;
3273
3313
  reference?: undefined;
3314
+ defaultValue?: undefined;
3274
3315
  } | {
3275
3316
  name: string;
3276
3317
  kind: string;
3277
3318
  description: string;
3278
3319
  uiLabel: string;
3279
3320
  isOptional: boolean;
3280
- defaultValue?: undefined;
3281
3321
  reference?: undefined;
3322
+ defaultValue?: undefined;
3282
3323
  } | {
3283
3324
  name: string;
3284
3325
  kind: string;
3285
3326
  description: string;
3286
3327
  uiLabel: string;
3287
- isOptional: boolean;
3288
3328
  reference: string;
3329
+ isOptional?: undefined;
3289
3330
  defaultValue?: undefined;
3290
3331
  } | {
3291
3332
  name: string;
@@ -3347,9 +3388,9 @@ export declare const ADAPTABLE_METAMODEL: {
3347
3388
  uiLabel: string;
3348
3389
  isOptional: boolean;
3349
3390
  defaultValue: string;
3391
+ noCode?: undefined;
3350
3392
  gridInfo?: undefined;
3351
3393
  reference?: undefined;
3352
- noCode?: undefined;
3353
3394
  } | {
3354
3395
  name: string;
3355
3396
  kind: string;
@@ -3357,19 +3398,29 @@ export declare const ADAPTABLE_METAMODEL: {
3357
3398
  uiLabel: string;
3358
3399
  isOptional: boolean;
3359
3400
  defaultValue?: undefined;
3401
+ noCode?: undefined;
3360
3402
  gridInfo?: undefined;
3361
3403
  reference?: undefined;
3362
- noCode?: undefined;
3363
3404
  } | {
3364
3405
  name: string;
3365
3406
  kind: string;
3366
3407
  description: string;
3367
3408
  uiLabel: string;
3368
3409
  isOptional: boolean;
3369
- gridInfo: string;
3410
+ noCode: string;
3370
3411
  defaultValue: string;
3412
+ gridInfo?: undefined;
3371
3413
  reference?: undefined;
3414
+ } | {
3415
+ name: string;
3416
+ kind: string;
3417
+ description: string;
3418
+ uiLabel: string;
3419
+ isOptional: boolean;
3420
+ gridInfo: string;
3421
+ defaultValue: string;
3372
3422
  noCode?: undefined;
3423
+ reference?: undefined;
3373
3424
  } | {
3374
3425
  name: string;
3375
3426
  kind: string;
@@ -3378,8 +3429,8 @@ export declare const ADAPTABLE_METAMODEL: {
3378
3429
  isOptional: boolean;
3379
3430
  defaultValue: string;
3380
3431
  reference: string;
3381
- gridInfo?: undefined;
3382
3432
  noCode?: undefined;
3433
+ gridInfo?: undefined;
3383
3434
  } | {
3384
3435
  name: string;
3385
3436
  kind: string;
@@ -4738,6 +4789,7 @@ export declare const ADAPTABLE_METAMODEL: {
4738
4789
  isOptional: boolean;
4739
4790
  gridInfo: string;
4740
4791
  defaultValue: string;
4792
+ noCode?: undefined;
4741
4793
  } | {
4742
4794
  name: string;
4743
4795
  kind: string;
@@ -4746,6 +4798,16 @@ export declare const ADAPTABLE_METAMODEL: {
4746
4798
  isOptional: boolean;
4747
4799
  defaultValue: string;
4748
4800
  gridInfo?: undefined;
4801
+ noCode?: undefined;
4802
+ } | {
4803
+ name: string;
4804
+ kind: string;
4805
+ description: string;
4806
+ uiLabel: string;
4807
+ isOptional: boolean;
4808
+ gridInfo: string;
4809
+ noCode: string;
4810
+ defaultValue: string;
4749
4811
  })[];
4750
4812
  };
4751
4813
  SelectedCellInfo: {
@@ -4928,6 +4990,13 @@ export declare const ADAPTABLE_METAMODEL: {
4928
4990
  uiLabel: string;
4929
4991
  isOptional: boolean;
4930
4992
  defaultValue?: undefined;
4993
+ } | {
4994
+ name: string;
4995
+ kind: string;
4996
+ description: string;
4997
+ uiLabel: string;
4998
+ isOptional?: undefined;
4999
+ defaultValue?: undefined;
4931
5000
  })[];
4932
5001
  };
4933
5002
  StateOptions: {
@@ -5329,6 +5398,7 @@ export declare const ADAPTABLE_METAMODEL: {
5329
5398
  uiLabel: string;
5330
5399
  isOptional: boolean;
5331
5400
  gridInfo?: undefined;
5401
+ noCode?: undefined;
5332
5402
  defaultValue?: undefined;
5333
5403
  } | {
5334
5404
  name: string;
@@ -5337,6 +5407,7 @@ export declare const ADAPTABLE_METAMODEL: {
5337
5407
  uiLabel: string;
5338
5408
  isOptional: boolean;
5339
5409
  gridInfo: string;
5410
+ noCode: string;
5340
5411
  defaultValue: string;
5341
5412
  })[];
5342
5413
  };
@@ -5480,9 +5551,4 @@ export declare const ADAPTABLE_METAMODEL: {
5480
5551
  isOptional: boolean;
5481
5552
  }[];
5482
5553
  };
5483
- WeightedAverageColumn: {
5484
- name: string;
5485
- kind: string;
5486
- description: string;
5487
- };
5488
5554
  };