@adaptabletools/adaptable 11.0.0-canary.6 → 11.0.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 (164) hide show
  1. package/README.md +4 -4
  2. package/agGrid.d.ts +5 -4
  3. package/agGrid.js +7 -5
  4. package/base.css +3 -4
  5. package/bundle.cjs.js +120 -115
  6. package/index.css +3 -4
  7. package/package.json +1 -1
  8. package/publishTimestamp.d.ts +1 -1
  9. package/publishTimestamp.js +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -1
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -5
  12. package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -2
  13. package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
  14. package/src/AdaptableOptions/FilterOptions.d.ts +4 -0
  15. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  16. package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
  17. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +7 -6
  18. package/src/AdaptableOptions/StateOptions.d.ts +7 -7
  19. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  20. package/src/Api/CalculatedColumnApi.d.ts +2 -9
  21. package/src/Api/GridApi.d.ts +12 -3
  22. package/src/Api/Implementation/AlertApiImpl.js +1 -2
  23. package/src/Api/Implementation/ApiBase.d.ts +3 -2
  24. package/src/Api/Implementation/ApiBase.js +5 -2
  25. package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
  26. package/src/Api/Implementation/ColumnApiImpl.js +1 -1
  27. package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
  28. package/src/Api/Implementation/GridApiImpl.js +41 -21
  29. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
  30. package/src/Api/Implementation/InternalApiImpl.js +5 -4
  31. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +3 -0
  32. package/src/Api/Implementation/QueryLanguageApiImpl.js +15 -2
  33. package/src/Api/Implementation/SettingsPanelApiImpl.js +1 -1
  34. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  35. package/src/Api/InternalApi.d.ts +2 -3
  36. package/src/Api/QueryApi.d.ts +2 -2
  37. package/src/Api/QueryLanguageApi.d.ts +13 -0
  38. package/src/Api/SettingsPanelApi.d.ts +4 -5
  39. package/src/PredefinedConfig/AlertState.d.ts +5 -1
  40. package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
  41. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
  42. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
  43. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +0 -1
  44. package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -5
  45. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  46. package/src/PredefinedConfig/Common/Types.d.ts +6 -1
  47. package/src/PredefinedConfig/Common/Types.js +1 -0
  48. package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
  49. package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
  50. package/src/PredefinedConfig/PlusMinusState.d.ts +1 -1
  51. package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
  52. package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
  53. package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
  54. package/src/Redux/ActionsReducers/AlertRedux.js +4 -4
  55. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
  56. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +4 -4
  57. package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
  58. package/src/Redux/ActionsReducers/CustomSortRedux.js +4 -4
  59. package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +12 -12
  60. package/src/Redux/ActionsReducers/FlashingCellRedux.js +33 -29
  61. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
  62. package/src/Redux/ActionsReducers/FormatColumnRedux.js +4 -4
  63. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
  64. package/src/Redux/ActionsReducers/PlusMinusRedux.js +4 -4
  65. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
  66. package/src/Redux/ActionsReducers/ScheduleRedux.js +16 -16
  67. package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
  68. package/src/Redux/ActionsReducers/ShortcutRedux.js +4 -4
  69. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  70. package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
  71. package/src/Redux/Store/AdaptableStore.js +47 -22
  72. package/src/Strategy/AlertModule.js +4 -4
  73. package/src/Strategy/CalculatedColumnModule.js +4 -4
  74. package/src/Strategy/ChartingModule.d.ts +3 -3
  75. package/src/Strategy/ChartingModule.js +2 -2
  76. package/src/Strategy/FlashingCellModule.js +4 -4
  77. package/src/Strategy/FreeTextColumnModule.js +1 -0
  78. package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
  79. package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
  80. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
  81. package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
  82. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  83. package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
  84. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +3 -2
  85. package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -10
  86. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +18 -13
  87. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +1 -1
  88. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +18 -1
  89. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +311 -14
  90. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  91. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
  92. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +2 -3
  93. package/src/Utilities/ExpressionFunctions/groupingMap.js +3 -2
  94. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  95. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
  96. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
  97. package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
  98. package/src/Utilities/Services/AlertService.js +5 -1
  99. package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
  100. package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
  101. package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
  102. package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
  103. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +7 -1
  104. package/src/Utilities/Services/LicenseService.js +1 -1
  105. package/src/Utilities/Services/ModuleService.js +33 -40
  106. package/src/Utilities/Services/QueryLanguageService.d.ts +9 -2
  107. package/src/Utilities/Services/QueryLanguageService.js +81 -22
  108. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
  109. package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
  110. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
  111. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  112. package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
  113. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
  114. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
  115. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
  116. package/src/View/ColorPicker.d.ts +1 -1
  117. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  118. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  119. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  120. package/src/View/Components/EntityRulesEditor/index.d.ts +1 -1
  121. package/src/View/Components/EntityRulesEditor/index.js +3 -4
  122. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  123. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  124. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
  125. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
  126. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
  127. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  128. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  129. package/src/View/Components/ValueSelector/index.js +1 -1
  130. package/src/View/Dashboard/DashboardPopup.js +1 -1
  131. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
  132. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  133. package/src/View/License/LicenseWatermark.js +1 -1
  134. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  135. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
  136. package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
  137. package/src/agGrid/Adaptable.d.ts +4 -1
  138. package/src/agGrid/Adaptable.js +71 -48
  139. package/src/agGrid/CheckboxRenderer.d.ts +8 -1
  140. package/src/agGrid/CheckboxRenderer.js +18 -3
  141. package/src/agGrid/agGridHelper.d.ts +1 -1
  142. package/src/agGrid/agGridHelper.js +9 -10
  143. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
  144. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
  145. package/src/components/Datepicker/index.d.ts +1 -1
  146. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  147. package/src/components/ExpressionEditor/EditorInput.js +5 -2
  148. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
  149. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
  150. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
  151. package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
  152. package/src/components/ExpressionEditor/index.d.ts +2 -1
  153. package/src/components/ExpressionEditor/index.js +9 -2
  154. package/src/components/Input/index.d.ts +1 -1
  155. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  156. package/src/components/Logo/index.js +8 -7
  157. package/src/components/PopupWithFooter.d.ts +1 -1
  158. package/src/components/Textarea/index.d.ts +1 -1
  159. package/src/components/icons/calculated-column.js +2 -1
  160. package/src/metamodel/adaptable.metamodel.d.ts +235 -41
  161. package/src/metamodel/adaptable.metamodel.js +435 -149
  162. package/src/types.d.ts +5 -5
  163. package/version.d.ts +1 -1
  164. package/version.js +1 -1
@@ -101,6 +101,11 @@ export declare const ADAPTABLE_METAMODEL: {
101
101
  isOptional?: undefined;
102
102
  })[];
103
103
  };
104
+ AdaptableAlertQuery: {
105
+ name: string;
106
+ kind: string;
107
+ description: string;
108
+ };
104
109
  AdaptableApi: {
105
110
  name: string;
106
111
  kind: string;
@@ -139,6 +144,11 @@ export declare const ADAPTABLE_METAMODEL: {
139
144
  reference: string;
140
145
  })[];
141
146
  };
147
+ AdaptableCalculatedColumnQuery: {
148
+ name: string;
149
+ kind: string;
150
+ description: string;
151
+ };
142
152
  AdaptableColumn: {
143
153
  name: string;
144
154
  kind: string;
@@ -310,6 +320,11 @@ export declare const ADAPTABLE_METAMODEL: {
310
320
  kind: string;
311
321
  description: string;
312
322
  };
323
+ AdaptableModule: {
324
+ name: string;
325
+ kind: string;
326
+ description: string;
327
+ };
313
328
  AdaptableObject: {
314
329
  name: string;
315
330
  kind: string;
@@ -349,8 +364,8 @@ export declare const ADAPTABLE_METAMODEL: {
349
364
  description: string;
350
365
  uiLabel: string;
351
366
  isOptional: boolean;
352
- gridInfo: string;
353
367
  reference: string;
368
+ gridInfo?: undefined;
354
369
  defaultValue?: undefined;
355
370
  } | {
356
371
  name: string;
@@ -358,8 +373,8 @@ export declare const ADAPTABLE_METAMODEL: {
358
373
  description: string;
359
374
  uiLabel: string;
360
375
  isOptional: boolean;
376
+ gridInfo: string;
361
377
  reference: string;
362
- gridInfo?: undefined;
363
378
  defaultValue?: undefined;
364
379
  } | {
365
380
  name: string;
@@ -449,6 +464,39 @@ export declare const ADAPTABLE_METAMODEL: {
449
464
  reference?: undefined;
450
465
  })[];
451
466
  };
467
+ AdaptableQLOptions: {
468
+ name: string;
469
+ kind: string;
470
+ description: string;
471
+ properties: ({
472
+ name: string;
473
+ kind: string;
474
+ description: string;
475
+ uiLabel: string;
476
+ isOptional: boolean;
477
+ gridInfo: string;
478
+ defaultValue: string;
479
+ reference?: undefined;
480
+ } | {
481
+ name: string;
482
+ kind: string;
483
+ description: string;
484
+ uiLabel: string;
485
+ isOptional: boolean;
486
+ reference: string;
487
+ gridInfo?: undefined;
488
+ defaultValue?: undefined;
489
+ } | {
490
+ name: string;
491
+ kind: string;
492
+ description: string;
493
+ uiLabel: string;
494
+ isOptional: boolean;
495
+ gridInfo: string;
496
+ defaultValue: string;
497
+ reference: string;
498
+ })[];
499
+ };
452
500
  AdaptableReadyInfo: {
453
501
  name: string;
454
502
  kind: string;
@@ -705,6 +753,11 @@ export declare const ADAPTABLE_METAMODEL: {
705
753
  defaultValue: string;
706
754
  })[];
707
755
  };
756
+ AlertRule: {
757
+ name: string;
758
+ kind: string;
759
+ description: string;
760
+ };
708
761
  AlertState: {
709
762
  name: string;
710
763
  kind: string;
@@ -892,6 +945,24 @@ export declare const ADAPTABLE_METAMODEL: {
892
945
  reference: string;
893
946
  }[];
894
947
  };
948
+ CellColorRange: {
949
+ name: string;
950
+ kind: string;
951
+ description: string;
952
+ properties: ({
953
+ name: string;
954
+ kind: string;
955
+ description: string;
956
+ uiLabel: string;
957
+ isOptional?: undefined;
958
+ } | {
959
+ name: string;
960
+ kind: string;
961
+ description: string;
962
+ uiLabel: string;
963
+ isOptional: boolean;
964
+ })[];
965
+ };
895
966
  CellHighlightInfo: {
896
967
  name: string;
897
968
  kind: string;
@@ -992,6 +1063,17 @@ export declare const ADAPTABLE_METAMODEL: {
992
1063
  uiLabel: string;
993
1064
  }[];
994
1065
  };
1066
+ ColumnComparison: {
1067
+ name: string;
1068
+ kind: string;
1069
+ description: string;
1070
+ properties: {
1071
+ name: string;
1072
+ kind: string;
1073
+ description: string;
1074
+ uiLabel: string;
1075
+ }[];
1076
+ };
995
1077
  ColumnFilter: {
996
1078
  name: string;
997
1079
  kind: string;
@@ -1039,6 +1121,26 @@ export declare const ADAPTABLE_METAMODEL: {
1039
1121
  uiLabel: string;
1040
1122
  }[];
1041
1123
  };
1124
+ ColumnStyle: {
1125
+ name: string;
1126
+ kind: string;
1127
+ description: string;
1128
+ properties: ({
1129
+ name: string;
1130
+ kind: string;
1131
+ description: string;
1132
+ uiLabel: string;
1133
+ isOptional: boolean;
1134
+ reference?: undefined;
1135
+ } | {
1136
+ name: string;
1137
+ kind: string;
1138
+ description: string;
1139
+ uiLabel: string;
1140
+ isOptional: boolean;
1141
+ reference: string;
1142
+ })[];
1143
+ };
1042
1144
  ColumnValuesComparer: {
1043
1145
  name: string;
1044
1146
  kind: string;
@@ -1185,6 +1287,33 @@ export declare const ADAPTABLE_METAMODEL: {
1185
1287
  uiLabel: string;
1186
1288
  }[];
1187
1289
  };
1290
+ CustomSettingsPanel: {
1291
+ name: string;
1292
+ kind: string;
1293
+ description: string;
1294
+ properties: ({
1295
+ name: string;
1296
+ kind: string;
1297
+ description: string;
1298
+ uiLabel: string;
1299
+ isOptional: boolean;
1300
+ reference: string;
1301
+ } | {
1302
+ name: string;
1303
+ kind: string;
1304
+ description: string;
1305
+ uiLabel: string;
1306
+ isOptional?: undefined;
1307
+ reference?: undefined;
1308
+ } | {
1309
+ name: string;
1310
+ kind: string;
1311
+ description: string;
1312
+ uiLabel: string;
1313
+ isOptional: boolean;
1314
+ reference?: undefined;
1315
+ })[];
1316
+ };
1188
1317
  CustomSort: {
1189
1318
  name: string;
1190
1319
  kind: string;
@@ -1292,20 +1421,20 @@ export declare const ADAPTABLE_METAMODEL: {
1292
1421
  description: string;
1293
1422
  uiLabel: string;
1294
1423
  isOptional: boolean;
1295
- reference: string;
1424
+ reference?: undefined;
1296
1425
  } | {
1297
1426
  name: string;
1298
1427
  kind: string;
1299
1428
  description: string;
1300
1429
  uiLabel: string;
1301
- isOptional?: undefined;
1302
- reference?: undefined;
1430
+ isOptional: boolean;
1431
+ reference: string;
1303
1432
  } | {
1304
1433
  name: string;
1305
1434
  kind: string;
1306
1435
  description: string;
1307
1436
  uiLabel: string;
1308
- isOptional: boolean;
1437
+ isOptional?: undefined;
1309
1438
  reference?: undefined;
1310
1439
  })[];
1311
1440
  };
@@ -1767,6 +1896,30 @@ export declare const ADAPTABLE_METAMODEL: {
1767
1896
  kind: string;
1768
1897
  description: string;
1769
1898
  };
1899
+ ExpressionOptions: {
1900
+ name: string;
1901
+ kind: string;
1902
+ description: string;
1903
+ properties: ({
1904
+ name: string;
1905
+ kind: string;
1906
+ description: string;
1907
+ uiLabel: string;
1908
+ isOptional: boolean;
1909
+ gridInfo: string;
1910
+ defaultValue: string;
1911
+ reference: string;
1912
+ } | {
1913
+ name: string;
1914
+ kind: string;
1915
+ description: string;
1916
+ uiLabel: string;
1917
+ isOptional: boolean;
1918
+ gridInfo: string;
1919
+ defaultValue: string;
1920
+ reference?: undefined;
1921
+ })[];
1922
+ };
1770
1923
  FDC3Context: {
1771
1924
  name: string;
1772
1925
  kind: string;
@@ -1845,6 +1998,15 @@ export declare const ADAPTABLE_METAMODEL: {
1845
1998
  defaultValue: string;
1846
1999
  gridInfo?: undefined;
1847
2000
  reference?: undefined;
2001
+ } | {
2002
+ name: string;
2003
+ kind: string;
2004
+ description: string;
2005
+ uiLabel: string;
2006
+ isOptional: boolean;
2007
+ gridInfo?: undefined;
2008
+ defaultValue?: undefined;
2009
+ reference?: undefined;
1848
2010
  } | {
1849
2011
  name: string;
1850
2012
  kind: string;
@@ -2247,6 +2409,26 @@ export declare const ADAPTABLE_METAMODEL: {
2247
2409
  reference?: undefined;
2248
2410
  })[];
2249
2411
  };
2412
+ GradientStyle: {
2413
+ name: string;
2414
+ kind: string;
2415
+ description: string;
2416
+ properties: ({
2417
+ name: string;
2418
+ kind: string;
2419
+ description: string;
2420
+ uiLabel: string;
2421
+ isOptional: boolean;
2422
+ reference?: undefined;
2423
+ } | {
2424
+ name: string;
2425
+ kind: string;
2426
+ description: string;
2427
+ uiLabel: string;
2428
+ isOptional: boolean;
2429
+ reference: string;
2430
+ })[];
2431
+ };
2250
2432
  GridApi: {
2251
2433
  name: string;
2252
2434
  kind: string;
@@ -2671,6 +2853,36 @@ export declare const ADAPTABLE_METAMODEL: {
2671
2853
  kind: string;
2672
2854
  description: string;
2673
2855
  };
2856
+ PercentBarStyle: {
2857
+ name: string;
2858
+ kind: string;
2859
+ description: string;
2860
+ properties: ({
2861
+ name: string;
2862
+ kind: string;
2863
+ description: string;
2864
+ uiLabel: string;
2865
+ isOptional: boolean;
2866
+ defaultValue: string;
2867
+ reference?: undefined;
2868
+ } | {
2869
+ name: string;
2870
+ kind: string;
2871
+ description: string;
2872
+ uiLabel: string;
2873
+ isOptional: boolean;
2874
+ defaultValue?: undefined;
2875
+ reference?: undefined;
2876
+ } | {
2877
+ name: string;
2878
+ kind: string;
2879
+ description: string;
2880
+ uiLabel: string;
2881
+ isOptional: boolean;
2882
+ reference: string;
2883
+ defaultValue?: undefined;
2884
+ })[];
2885
+ };
2674
2886
  PermittedValues: {
2675
2887
  name: string;
2676
2888
  kind: string;
@@ -2808,30 +3020,6 @@ export declare const ADAPTABLE_METAMODEL: {
2808
3020
  uiLabel: string;
2809
3021
  }[];
2810
3022
  };
2811
- QueryLanguageOptions: {
2812
- name: string;
2813
- kind: string;
2814
- description: string;
2815
- properties: ({
2816
- name: string;
2817
- kind: string;
2818
- description: string;
2819
- uiLabel: string;
2820
- isOptional: boolean;
2821
- gridInfo: string;
2822
- defaultValue: string;
2823
- reference: string;
2824
- } | {
2825
- name: string;
2826
- kind: string;
2827
- description: string;
2828
- uiLabel: string;
2829
- isOptional: boolean;
2830
- gridInfo: string;
2831
- defaultValue: string;
2832
- reference?: undefined;
2833
- })[];
2834
- };
2835
3023
  QueryState: {
2836
3024
  name: string;
2837
3025
  kind: string;
@@ -3032,7 +3220,6 @@ export declare const ADAPTABLE_METAMODEL: {
3032
3220
  isOptional: boolean;
3033
3221
  gridInfo: string;
3034
3222
  defaultValue: string;
3035
- reference?: undefined;
3036
3223
  } | {
3037
3224
  name: string;
3038
3225
  kind: string;
@@ -3041,16 +3228,6 @@ export declare const ADAPTABLE_METAMODEL: {
3041
3228
  isOptional: boolean;
3042
3229
  defaultValue: string;
3043
3230
  gridInfo?: undefined;
3044
- reference?: undefined;
3045
- } | {
3046
- name: string;
3047
- kind: string;
3048
- description: string;
3049
- uiLabel: string;
3050
- isOptional: boolean;
3051
- gridInfo: string;
3052
- defaultValue: string;
3053
- reference: string;
3054
3231
  })[];
3055
3232
  };
3056
3233
  SelectedCellInfo: {
@@ -3216,6 +3393,18 @@ export declare const ADAPTABLE_METAMODEL: {
3216
3393
  reference?: undefined;
3217
3394
  })[];
3218
3395
  };
3396
+ StringFormatterOptions: {
3397
+ name: string;
3398
+ kind: string;
3399
+ description: string;
3400
+ properties: {
3401
+ name: string;
3402
+ kind: string;
3403
+ description: string;
3404
+ uiLabel: string;
3405
+ isOptional: boolean;
3406
+ }[];
3407
+ };
3219
3408
  SuspendableObject: {
3220
3409
  name: string;
3221
3410
  kind: string;
@@ -3451,6 +3640,11 @@ export declare const ADAPTABLE_METAMODEL: {
3451
3640
  reference?: undefined;
3452
3641
  })[];
3453
3642
  };
3643
+ ToolPanelVisibilityMode: {
3644
+ name: string;
3645
+ kind: string;
3646
+ description: string;
3647
+ };
3454
3648
  UserInterfaceApi: {
3455
3649
  name: string;
3456
3650
  kind: string;