@adaptabletools/adaptable 10.0.4-canary.5 → 11.0.0-canary.0

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 (179) hide show
  1. package/base.css +1 -5
  2. package/bundle.cjs.js +115 -113
  3. package/index.css +1 -7
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +9 -3
  8. package/src/AdaptableOptions/AdaptableOptions.d.ts +13 -2
  9. package/src/AdaptableOptions/ContainerOptions.d.ts +0 -7
  10. package/src/AdaptableOptions/DashboardOptions.d.ts +4 -7
  11. package/src/AdaptableOptions/FlashingCellOptions.d.ts +31 -0
  12. package/src/AdaptableOptions/{ChartPluginOptions.js → FlashingCellOptions.js} +0 -0
  13. package/src/AdaptableOptions/GeneralOptions.d.ts +1 -1
  14. package/src/AdaptableOptions/MenuOptions.d.ts +2 -2
  15. package/src/AdaptableOptions/NotificationsOptions.d.ts +0 -7
  16. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +14 -2
  17. package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -14
  18. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +5 -0
  19. package/src/Api/AdaptableApi.d.ts +6 -6
  20. package/src/Api/ChartingApi.d.ts +9 -0
  21. package/src/Api/{ChartApi.js → ChartingApi.js} +0 -0
  22. package/src/Api/ColumnApi.d.ts +11 -1
  23. package/src/Api/ConfigApi.d.ts +0 -12
  24. package/src/Api/EventApi.d.ts +3 -3
  25. package/src/Api/Events/AdaptableReady.d.ts +1 -1
  26. package/src/Api/Events/FlashingCellDisplayed.d.ts +2 -2
  27. package/src/Api/FlashingCellApi.d.ts +35 -24
  28. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  29. package/src/Api/Implementation/AdaptableApiImpl.js +2 -2
  30. package/src/Api/Implementation/CalculatedColumnApiImpl.js +1 -1
  31. package/src/Api/Implementation/ChartingApiImpl.d.ts +5 -0
  32. package/src/Api/Implementation/ChartingApiImpl.js +10 -0
  33. package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -1
  34. package/src/Api/Implementation/ColumnApiImpl.js +9 -3
  35. package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
  36. package/src/Api/Implementation/ConfigApiImpl.js +0 -16
  37. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +8 -4
  38. package/src/Api/Implementation/FlashingCellApiImpl.js +39 -24
  39. package/src/Api/Implementation/FreeTextColumnApiImpl.js +1 -1
  40. package/src/Api/Implementation/GridApiImpl.js +1 -1
  41. package/src/Api/Implementation/InternalApiImpl.d.ts +0 -4
  42. package/src/Api/Implementation/InternalApiImpl.js +1 -7
  43. package/src/Api/Implementation/PluginsApiImpl.d.ts +0 -2
  44. package/src/Api/Implementation/PluginsApiImpl.js +0 -6
  45. package/src/Api/Implementation/PlusMinusApiImpl.js +1 -1
  46. package/src/Api/Implementation/QueryApiImpl.js +1 -1
  47. package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
  48. package/src/Api/InternalApi.d.ts +0 -4
  49. package/src/Api/PluginsApi.d.ts +0 -2
  50. package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
  51. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
  52. package/src/PredefinedConfig/Common/AdaptablePredicate.js +38 -38
  53. package/src/PredefinedConfig/Common/Enums.js +1 -0
  54. package/src/PredefinedConfig/Common/Menu.d.ts +15 -19
  55. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +4 -0
  56. package/src/PredefinedConfig/Common/Types.d.ts +5 -5
  57. package/src/PredefinedConfig/Common/Types.js +0 -2
  58. package/src/PredefinedConfig/FlashingCellState.d.ts +14 -19
  59. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
  60. package/src/PredefinedConfig/SystemState.d.ts +0 -4
  61. package/src/PredefinedConfig/ThemeState.d.ts +2 -1
  62. package/src/Redux/ActionsReducers/DashboardRedux.js +1 -1
  63. package/src/Redux/ActionsReducers/PopupRedux.d.ts +0 -2
  64. package/src/Redux/ActionsReducers/SystemRedux.d.ts +0 -12
  65. package/src/Redux/ActionsReducers/SystemRedux.js +1 -21
  66. package/src/Redux/ActionsReducers/ToolPanelRedux.js +1 -2
  67. package/src/Redux/Store/AdaptableStore.js +10 -20
  68. package/src/Strategy/AdaptableModuleBase.d.ts +1 -1
  69. package/src/Strategy/AdaptableModuleBase.js +0 -3
  70. package/src/Strategy/AlertModule.js +1 -1
  71. package/src/Strategy/CalculatedColumnModule.js +17 -12
  72. package/src/Strategy/ChartingModule.d.ts +7 -0
  73. package/src/Strategy/ChartingModule.js +15 -0
  74. package/src/Strategy/ConditionalStyleModule.js +1 -1
  75. package/src/Strategy/FilterModule.js +3 -2
  76. package/src/Strategy/FlashingCellModule.js +4 -4
  77. package/src/Strategy/FormatColumnModule.js +2 -2
  78. package/src/Strategy/Interface/IModule.d.ts +0 -1
  79. package/src/Strategy/LayoutModule.js +15 -3
  80. package/src/Strategy/QueryModule.d.ts +1 -1
  81. package/src/Strategy/QueryModule.js +1 -3
  82. package/src/Strategy/SetingsPanelModule.d.ts +1 -0
  83. package/src/Strategy/SetingsPanelModule.js +7 -1
  84. package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +5 -0
  85. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +9 -0
  86. package/src/Strategy/Utilities/getFormatColumnStyleViewItems.d.ts +3 -0
  87. package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +10 -0
  88. package/src/Utilities/Constants/ConfigConstants.d.ts +0 -1
  89. package/src/Utilities/Constants/ConfigConstants.js +1 -2
  90. package/src/Utilities/Constants/GeneralConstants.d.ts +0 -9
  91. package/src/Utilities/Constants/GeneralConstants.js +1 -12
  92. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -2
  93. package/src/Utilities/Constants/ModuleConstants.js +2 -3
  94. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +19 -18
  95. package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +2 -1
  96. package/src/Utilities/Helpers/AdaptableHelper.js +2 -2
  97. package/src/Utilities/Interface/MessagePopups.d.ts +0 -3
  98. package/src/Utilities/ObjectFactory.d.ts +0 -10
  99. package/src/Utilities/ObjectFactory.js +2 -65
  100. package/src/Utilities/Services/EntitlementService.js +1 -1
  101. package/src/Utilities/Services/ModuleService.js +7 -11
  102. package/src/View/AdaptableView.js +1 -7
  103. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +4 -3
  104. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -1
  105. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +9 -9
  106. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +3 -3
  107. package/src/View/AdaptableWizardView/index.js +1 -1
  108. package/src/View/Alert/AlertEmptyView.js +1 -1
  109. package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -0
  110. package/src/View/Alert/Wizard/AlertWizard.js +3 -3
  111. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +1 -0
  112. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +4 -1
  113. package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +0 -1
  114. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +1 -0
  115. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
  116. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -1
  117. package/src/View/Components/ModuleValueSelector/index.d.ts +3 -1
  118. package/src/View/Components/ModuleValueSelector/index.js +1 -1
  119. package/src/View/Components/NewScopeComponent.js +1 -1
  120. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +5 -4
  121. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +45 -80
  122. package/src/View/Components/ToolPanel/ToolPanelPopup.js +8 -1
  123. package/src/View/Components/ValueSelector/index.d.ts +1 -0
  124. package/src/View/Components/ValueSelector/index.js +2 -2
  125. package/src/View/Dashboard/Dashboard.js +11 -34
  126. package/src/View/Dashboard/DashboardPopup.js +22 -14
  127. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -2
  128. package/src/View/FlashingCell/Wizard/FlashingCellDurationWizardSection.js +1 -1
  129. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +6 -6
  130. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -3
  131. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
  132. package/src/View/GridInfo/GridInfoPopup.js +3 -2
  133. package/src/View/Query/Wizard/NamedQueryWizard.js +10 -7
  134. package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
  135. package/src/View/Shortcut/shortcutKeys.js +0 -1
  136. package/src/View/UIHelper.d.ts +0 -4
  137. package/src/View/UIHelper.js +1 -34
  138. package/src/agGrid/Adaptable.d.ts +10 -5
  139. package/src/agGrid/Adaptable.js +59 -49
  140. package/src/agGrid/agGridHelper.d.ts +1 -2
  141. package/src/agGrid/agGridHelper.js +7 -4
  142. package/src/agGrid/agGridMenuHelper.js +11 -7
  143. package/src/components/ApplicationIcon.d.ts +1 -1
  144. package/src/components/icons/column-add.d.ts +3 -0
  145. package/src/components/icons/column-add.js +10 -0
  146. package/src/components/icons/index.js +2 -0
  147. package/src/metamodel/adaptable.metamodel.d.ts +58 -91
  148. package/src/metamodel/adaptable.metamodel.js +239 -288
  149. package/src/types.d.ts +4 -7
  150. package/version.d.ts +1 -1
  151. package/version.js +1 -1
  152. package/src/AdaptableOptions/ChartPluginOptions.d.ts +0 -20
  153. package/src/Api/ChartApi.d.ts +0 -20
  154. package/src/Api/Implementation/SparklineColumnApiImpl.d.ts +0 -9
  155. package/src/Api/Implementation/SparklineColumnApiImpl.js +0 -24
  156. package/src/Api/SparklineColumnApi.d.ts +0 -23
  157. package/src/Api/SparklineColumnApi.js +0 -2
  158. package/src/PredefinedConfig/ChartState.d.ts +0 -144
  159. package/src/PredefinedConfig/ChartState.js +0 -2
  160. package/src/PredefinedConfig/Common/ChartEnums.d.ts +0 -123
  161. package/src/PredefinedConfig/Common/ChartEnums.js +0 -152
  162. package/src/PredefinedConfig/SparklineColumnState.d.ts +0 -40
  163. package/src/PredefinedConfig/SparklineColumnState.js +0 -2
  164. package/src/Redux/ActionsReducers/SparklineColumnRedux.d.ts +0 -35
  165. package/src/Redux/ActionsReducers/SparklineColumnRedux.js +0 -70
  166. package/src/Utilities/Defaults/DefaultCategoryChartProperties.d.ts +0 -2
  167. package/src/Utilities/Defaults/DefaultCategoryChartProperties.js +0 -56
  168. package/src/Utilities/Defaults/DefaultPieChartProperties.d.ts +0 -2
  169. package/src/Utilities/Defaults/DefaultPieChartProperties.js +0 -13
  170. package/src/Utilities/Defaults/DefaultSparklinesChartProperties.d.ts +0 -2
  171. package/src/Utilities/Defaults/DefaultSparklinesChartProperties.js +0 -25
  172. package/src/View/Components/Panels/PanelWithIImageThreeButtons.d.ts +0 -11
  173. package/src/View/Components/Panels/PanelWithIImageThreeButtons.js +0 -28
  174. package/src/View/Components/Popups/AdaptableChart.d.ts +0 -18
  175. package/src/View/Components/Popups/AdaptableChart.js +0 -40
  176. package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.d.ts +0 -7
  177. package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.js +0 -2
  178. package/src/components/ChartContainer/index.d.ts +0 -15
  179. package/src/components/ChartContainer/index.js +0 -22
@@ -193,7 +193,7 @@ export declare const ADAPTABLE_METAMODEL: {
193
193
  uiLabel: string;
194
194
  }[];
195
195
  };
196
- AdaptableFlashingAlert: {
196
+ AdaptableFlashingCell: {
197
197
  name: string;
198
198
  kind: string;
199
199
  description: string;
@@ -349,36 +349,45 @@ export declare const ADAPTABLE_METAMODEL: {
349
349
  description: string;
350
350
  uiLabel: string;
351
351
  isOptional: boolean;
352
- defaultValue: string;
352
+ reference: string;
353
353
  gridInfo?: undefined;
354
- reference?: undefined;
354
+ defaultValue?: undefined;
355
355
  } | {
356
356
  name: string;
357
357
  kind: string;
358
358
  description: string;
359
359
  uiLabel: string;
360
360
  isOptional: boolean;
361
- reference: string;
362
361
  gridInfo?: undefined;
363
362
  defaultValue?: undefined;
363
+ reference?: undefined;
364
364
  } | {
365
365
  name: string;
366
366
  kind: string;
367
367
  description: string;
368
368
  uiLabel: string;
369
369
  isOptional: boolean;
370
- gridInfo?: undefined;
370
+ gridInfo: string;
371
+ reference: string;
371
372
  defaultValue?: undefined;
372
- reference?: undefined;
373
373
  } | {
374
374
  name: string;
375
375
  kind: string;
376
376
  description: string;
377
377
  uiLabel: string;
378
378
  isOptional: boolean;
379
- gridInfo: string;
379
+ defaultValue: string;
380
380
  reference: string;
381
- defaultValue?: undefined;
381
+ gridInfo?: undefined;
382
+ } | {
383
+ name: string;
384
+ kind: string;
385
+ description: string;
386
+ uiLabel: string;
387
+ isOptional: boolean;
388
+ defaultValue: string;
389
+ gridInfo?: undefined;
390
+ reference?: undefined;
382
391
  } | {
383
392
  name: string;
384
393
  kind: string;
@@ -917,35 +926,6 @@ export declare const ADAPTABLE_METAMODEL: {
917
926
  kind: string;
918
927
  description: string;
919
928
  };
920
- ChartApi: {
921
- name: string;
922
- kind: string;
923
- description: string;
924
- properties: {
925
- name: string;
926
- kind: string;
927
- description: string;
928
- uiLabel: string;
929
- }[];
930
- };
931
- ChartDefinition: {
932
- name: string;
933
- kind: string;
934
- description: string;
935
- };
936
- ChartPluginOptions: {
937
- name: string;
938
- kind: string;
939
- description: string;
940
- properties: {
941
- name: string;
942
- kind: string;
943
- description: string;
944
- uiLabel: string;
945
- isOptional: boolean;
946
- defaultValue: string;
947
- }[];
948
- };
949
929
  CheckboxColumnClickedInfo: {
950
930
  name: string;
951
931
  kind: string;
@@ -1339,6 +1319,14 @@ export declare const ADAPTABLE_METAMODEL: {
1339
1319
  kind: string;
1340
1320
  description: string;
1341
1321
  properties: ({
1322
+ name: string;
1323
+ kind: string;
1324
+ description: string;
1325
+ uiLabel: string;
1326
+ isOptional: boolean;
1327
+ defaultValue: string;
1328
+ gridInfo?: undefined;
1329
+ } | {
1342
1330
  name: string;
1343
1331
  kind: string;
1344
1332
  description: string;
@@ -1352,8 +1340,8 @@ export declare const ADAPTABLE_METAMODEL: {
1352
1340
  description: string;
1353
1341
  uiLabel: string;
1354
1342
  isOptional: boolean;
1355
- gridInfo?: undefined;
1356
1343
  defaultValue?: undefined;
1344
+ gridInfo?: undefined;
1357
1345
  })[];
1358
1346
  };
1359
1347
  DashboardState: {
@@ -1887,7 +1875,7 @@ export declare const ADAPTABLE_METAMODEL: {
1887
1875
  isOptional: boolean;
1888
1876
  }[];
1889
1877
  };
1890
- FlashingCellDefinition: {
1878
+ FlashingCellApi: {
1891
1879
  name: string;
1892
1880
  kind: string;
1893
1881
  description: string;
@@ -1896,9 +1884,38 @@ export declare const ADAPTABLE_METAMODEL: {
1896
1884
  kind: string;
1897
1885
  description: string;
1898
1886
  uiLabel: string;
1899
- reference: string;
1900
1887
  }[];
1901
1888
  };
1889
+ FlashingCellDefinition: {
1890
+ name: string;
1891
+ kind: string;
1892
+ description: string;
1893
+ properties: ({
1894
+ name: string;
1895
+ kind: string;
1896
+ description: string;
1897
+ uiLabel: string;
1898
+ isOptional: boolean;
1899
+ defaultValue: string;
1900
+ reference: string;
1901
+ } | {
1902
+ name: string;
1903
+ kind: string;
1904
+ description: string;
1905
+ uiLabel: string;
1906
+ isOptional: boolean;
1907
+ defaultValue: string;
1908
+ reference?: undefined;
1909
+ } | {
1910
+ name: string;
1911
+ kind: string;
1912
+ description: string;
1913
+ uiLabel: string;
1914
+ reference: string;
1915
+ isOptional?: undefined;
1916
+ defaultValue?: undefined;
1917
+ })[];
1918
+ };
1902
1919
  FlashingCellDisplayedInfo: {
1903
1920
  name: string;
1904
1921
  kind: string;
@@ -1911,7 +1928,7 @@ export declare const ADAPTABLE_METAMODEL: {
1911
1928
  reference: string;
1912
1929
  }[];
1913
1930
  };
1914
- FlashingCellProperties: {
1931
+ FlashingCellOptions: {
1915
1932
  name: string;
1916
1933
  kind: string;
1917
1934
  description: string;
@@ -2523,15 +2540,6 @@ export declare const ADAPTABLE_METAMODEL: {
2523
2540
  gridInfo: string;
2524
2541
  defaultValue: string;
2525
2542
  reference?: undefined;
2526
- } | {
2527
- name: string;
2528
- kind: string;
2529
- description: string;
2530
- uiLabel: string;
2531
- isOptional: boolean;
2532
- defaultValue: string;
2533
- reference: string;
2534
- gridInfo?: undefined;
2535
2543
  } | {
2536
2544
  name: string;
2537
2545
  kind: string;
@@ -3107,47 +3115,6 @@ export declare const ADAPTABLE_METAMODEL: {
3107
3115
  uiLabel: string;
3108
3116
  }[];
3109
3117
  };
3110
- SparklineColumn: {
3111
- name: string;
3112
- kind: string;
3113
- description: string;
3114
- properties: ({
3115
- name: string;
3116
- kind: string;
3117
- description: string;
3118
- uiLabel: string;
3119
- isOptional?: undefined;
3120
- } | {
3121
- name: string;
3122
- kind: string;
3123
- description: string;
3124
- uiLabel: string;
3125
- isOptional: boolean;
3126
- })[];
3127
- };
3128
- SparklineColumnApi: {
3129
- name: string;
3130
- kind: string;
3131
- description: string;
3132
- properties: {
3133
- name: string;
3134
- kind: string;
3135
- description: string;
3136
- uiLabel: string;
3137
- }[];
3138
- };
3139
- SparklineColumnState: {
3140
- name: string;
3141
- kind: string;
3142
- description: string;
3143
- properties: {
3144
- name: string;
3145
- kind: string;
3146
- description: string;
3147
- uiLabel: string;
3148
- isOptional: boolean;
3149
- }[];
3150
- };
3151
3118
  SpecialColumnSettings: {
3152
3119
  name: string;
3153
3120
  kind: string;