@adaptabletools/adaptable 10.0.2 → 10.0.4-canary.2

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 (306) hide show
  1. package/LICENSE.md +1 -1
  2. package/README.md +1 -1
  3. package/base.css +84 -32
  4. package/bundle.cjs.js +350 -0
  5. package/index.css +100 -34
  6. package/package.json +1 -5
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +24 -12
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
  12. package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
  13. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  14. package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
  15. package/src/AdaptableOptions/EditOptions.d.ts +2 -3
  16. package/src/AdaptableOptions/FilterOptions.d.ts +22 -15
  17. package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
  18. package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
  19. package/src/AdaptableOptions/MenuOptions.d.ts +11 -11
  20. package/src/AdaptableOptions/NotificationsOptions.d.ts +11 -1
  21. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  22. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +108 -6
  23. package/src/Api/AdaptableApi.d.ts +12 -12
  24. package/src/Api/AlertApi.d.ts +1 -1
  25. package/src/Api/CalculatedColumnApi.d.ts +15 -0
  26. package/src/Api/ColumnApi.d.ts +49 -5
  27. package/src/Api/ConfigApi.d.ts +8 -0
  28. package/src/Api/EventApi.d.ts +1 -1
  29. package/src/Api/Events/AdaptableReady.d.ts +5 -8
  30. package/src/Api/Events/AdaptableStateChanged.d.ts +2 -1
  31. package/src/Api/Events/AlertFired.d.ts +2 -1
  32. package/src/Api/Events/BaseEventInfo.d.ts +10 -0
  33. package/src/{Utilities/Interface/ProgressIndicator.js → Api/Events/BaseEventInfo.js} +0 -0
  34. package/src/Api/Events/CellChanged.d.ts +2 -1
  35. package/src/Api/Events/ChexboxColumnClicked.d.ts +2 -1
  36. package/src/Api/Events/CustomToolbarConfigured.d.ts +2 -1
  37. package/src/Api/Events/DashboardChanged.d.ts +2 -1
  38. package/src/Api/Events/FlashingAlertFired.d.ts +2 -1
  39. package/src/Api/Events/GridDataChanged.d.ts +2 -1
  40. package/src/Api/Events/LayoutChanged.d.ts +2 -1
  41. package/src/Api/Events/LiveDataChanged.d.ts +2 -1
  42. package/src/Api/Events/SearchChanged.d.ts +2 -1
  43. package/src/Api/Events/SelectionChanged.d.ts +2 -1
  44. package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +2 -1
  45. package/src/Api/Events/TeamSharingEntityChanged.d.ts +2 -1
  46. package/src/Api/Events/ThemeChanged.d.ts +2 -1
  47. package/src/Api/GridApi.d.ts +44 -18
  48. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
  49. package/src/Api/Implementation/AlertApiImpl.js +22 -15
  50. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
  51. package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
  52. package/src/Api/Implementation/ColumnApiImpl.d.ts +12 -3
  53. package/src/Api/Implementation/ColumnApiImpl.js +79 -44
  54. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  55. package/src/Api/Implementation/ConfigApiImpl.js +28 -41
  56. package/src/Api/Implementation/DashboardApiImpl.js +2 -1
  57. package/src/Api/Implementation/ExportApiImpl.js +4 -4
  58. package/src/Api/Implementation/FormatColumnApiImpl.js +2 -1
  59. package/src/Api/Implementation/FreeTextColumnApiImpl.js +9 -3
  60. package/src/Api/Implementation/GridApiImpl.d.ts +11 -2
  61. package/src/Api/Implementation/GridApiImpl.js +30 -13
  62. package/src/Api/Implementation/InternalApiImpl.d.ts +4 -2
  63. package/src/Api/Implementation/InternalApiImpl.js +21 -5
  64. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
  65. package/src/Api/Implementation/LayoutApiImpl.js +19 -3
  66. package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
  67. package/src/Api/Implementation/PluginsApiImpl.js +1 -1
  68. package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
  69. package/src/Api/Implementation/ScopeApiImpl.js +11 -11
  70. package/src/Api/Implementation/SystemStatusApiImpl.js +1 -0
  71. package/src/Api/Implementation/TeamSharingApiImpl.js +1 -0
  72. package/src/Api/Implementation/ThemeApiImpl.js +1 -0
  73. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  74. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +15 -11
  75. package/src/Api/Implementation/UserInterfaceApiImpl.js +73 -91
  76. package/src/Api/InternalApi.d.ts +4 -2
  77. package/src/Api/LayoutApi.d.ts +7 -0
  78. package/src/Api/PluginsApi.d.ts +1 -7
  79. package/src/Api/TeamSharingApi.d.ts +1 -1
  80. package/src/Api/ThemeApi.d.ts +2 -2
  81. package/src/Api/UserInterfaceApi.d.ts +19 -9
  82. package/src/PredefinedConfig/AdaptableState.d.ts +2 -10
  83. package/src/PredefinedConfig/AlertState.d.ts +5 -1
  84. package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
  85. package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -38
  86. package/src/PredefinedConfig/Common/AdaptableButton.d.ts +1 -1
  87. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +36 -36
  88. package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
  89. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
  90. package/src/PredefinedConfig/Common/AdaptablePredicate.js +19 -18
  91. package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
  92. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +4 -3
  93. package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
  94. package/src/PredefinedConfig/Common/Menu.d.ts +40 -17
  95. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
  96. package/src/PredefinedConfig/Common/SpecialColumnSettings.js +2 -0
  97. package/src/PredefinedConfig/Common/Types.d.ts +5 -5
  98. package/src/PredefinedConfig/Common/Types.js +9 -7
  99. package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
  100. package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
  101. package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
  102. package/src/PredefinedConfig/ExportState.d.ts +3 -3
  103. package/src/PredefinedConfig/FilterState.d.ts +3 -3
  104. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  105. package/src/PredefinedConfig/FreeTextColumnState.d.ts +11 -1
  106. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  107. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -40
  108. package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
  109. package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
  110. package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
  111. package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
  112. package/src/PredefinedConfig/SystemState.d.ts +4 -1
  113. package/src/PredefinedConfig/ThemeState.d.ts +5 -1
  114. package/src/Redux/ActionsReducers/DashboardRedux.js +2 -1
  115. package/src/Redux/ActionsReducers/GridRedux.d.ts +3 -2
  116. package/src/Redux/ActionsReducers/GridRedux.js +2 -2
  117. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +12 -2
  118. package/src/Redux/ActionsReducers/LayoutRedux.js +24 -1
  119. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  120. package/src/Redux/DeadRedux.d.ts +4 -8
  121. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +6 -1
  122. package/src/Redux/Store/AdaptableStore.d.ts +3 -3
  123. package/src/Redux/Store/AdaptableStore.js +25 -16
  124. package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
  125. package/src/Strategy/AdaptableModuleBase.js +8 -8
  126. package/src/Strategy/AlertModule.d.ts +2 -2
  127. package/src/Strategy/AlertModule.js +13 -105
  128. package/src/Strategy/BulkUpdateModule.d.ts +2 -2
  129. package/src/Strategy/BulkUpdateModule.js +7 -7
  130. package/src/Strategy/CalculatedColumnModule.js +1 -1
  131. package/src/Strategy/CellSummaryModule.d.ts +2 -2
  132. package/src/Strategy/CellSummaryModule.js +3 -3
  133. package/src/Strategy/ConditionalStyleModule.js +3 -3
  134. package/src/Strategy/CustomSortModule.js +2 -2
  135. package/src/Strategy/DashboardModule.d.ts +2 -2
  136. package/src/Strategy/DataChangeHistoryModule.js +2 -2
  137. package/src/Strategy/ExportModule.d.ts +2 -4
  138. package/src/Strategy/ExportModule.js +59 -62
  139. package/src/Strategy/FilterModule.d.ts +2 -2
  140. package/src/Strategy/FilterModule.js +4 -4
  141. package/src/Strategy/FormatColumnModule.js +6 -6
  142. package/src/Strategy/FreeTextColumnModule.js +1 -1
  143. package/src/Strategy/GridInfoModule.d.ts +2 -2
  144. package/src/Strategy/Interface/IModule.d.ts +2 -2
  145. package/src/Strategy/LayoutModule.d.ts +2 -2
  146. package/src/Strategy/LayoutModule.js +22 -9
  147. package/src/Strategy/PlusMinusModule.js +8 -9
  148. package/src/Strategy/SmartEditModule.d.ts +2 -2
  149. package/src/Strategy/SmartEditModule.js +8 -9
  150. package/src/Strategy/SystemStatusModule.d.ts +2 -2
  151. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  152. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  153. package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
  154. package/src/Utilities/Constants/ModuleConstants.js +7 -7
  155. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +9 -7
  156. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
  157. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
  158. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  159. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
  160. package/src/Utilities/Helpers/DateHelper.d.ts +2 -2
  161. package/src/Utilities/Helpers/DateHelper.js +30 -20
  162. package/src/Utilities/Helpers/PreviewHelper.js +2 -2
  163. package/src/Utilities/Interface/Preview.d.ts +2 -1
  164. package/src/Utilities/ObjectFactory.d.ts +1 -1
  165. package/src/Utilities/ObjectFactory.js +14 -2
  166. package/src/Utilities/Services/DataService.js +5 -5
  167. package/src/Utilities/Services/LicenseService.js +16 -2
  168. package/src/Utilities/Services/ReportService.js +13 -12
  169. package/src/Utilities/Services/ValidationService.js +4 -5
  170. package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
  171. package/src/Utilities/runIfNotResolvedIn.js +23 -0
  172. package/src/View/AdaptableView.js +1 -1
  173. package/src/View/AdaptableViewFactory.d.ts +2 -1
  174. package/src/View/AdaptableViewFactory.js +2 -0
  175. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +7 -7
  176. package/src/View/Alert/AlertPopup.js +1 -1
  177. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
  178. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
  179. package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
  180. package/src/View/BulkUpdate/BulkUpdatePopup.js +6 -4
  181. package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
  182. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
  183. package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
  184. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
  185. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
  186. package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
  187. package/src/View/Components/ColumnSelector/index.js +2 -2
  188. package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
  189. package/src/View/Components/FilterForm/FilterForm.js +57 -38
  190. package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +4 -1
  191. package/src/View/Components/FilterForm/ListBoxFilterForm.js +18 -9
  192. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
  193. package/src/View/Components/FilterForm/QuickFilterForm.js +74 -35
  194. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
  195. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
  196. package/src/View/Components/NewScopeComponent.js +1 -1
  197. package/src/View/Components/Panels/FilterFormPanel.d.ts +1 -1
  198. package/src/View/Components/Panels/PanelWithImage.d.ts +423 -1
  199. package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
  200. package/src/View/Components/Popups/AdaptablePopupAlert.js +23 -10
  201. package/src/View/Components/PreviewResultsPanel.js +1 -1
  202. package/src/View/Components/RangesComponent.js +2 -2
  203. package/src/View/Components/Selectors/ColumnSelector.js +5 -5
  204. package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
  205. package/src/View/Components/Selectors/ColumnValueSelector.js +47 -15
  206. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +10 -11
  207. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  208. package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -3
  209. package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
  210. package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
  211. package/src/View/CustomSort/CustomSortEntityRow.d.ts +3 -1
  212. package/src/View/CustomSort/CustomSortEntityRow.js +3 -3
  213. package/src/View/CustomSort/CustomSortPopup.js +2 -2
  214. package/src/View/CustomSort/CustomSortSummary.js +3 -3
  215. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +4 -4
  216. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
  217. package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
  218. package/src/View/Dashboard/Dashboard.js +2 -3
  219. package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
  220. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +11 -10
  221. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +6 -6
  222. package/src/View/Export/ExportCustomDestinationDialog.js +1 -1
  223. package/src/View/Export/ExportViewPanel.js +6 -6
  224. package/src/View/Filter/FilterSummary.js +2 -2
  225. package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
  226. package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
  227. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
  228. package/src/View/FreeTextColumn/FreeTextColumnPopup.js +4 -2
  229. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +5 -3
  230. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
  231. package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
  232. package/src/View/GridInfo/GridInfoPopup.js +4 -1
  233. package/src/View/GridInfo/GridOptionsComponent.js +1 -1
  234. package/src/View/Layout/LayoutViewPanel.js +2 -2
  235. package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
  236. package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
  237. package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
  238. package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
  239. package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
  240. package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
  241. package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
  242. package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
  243. package/src/View/Query/QueryViewPanel.js +3 -3
  244. package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
  245. package/src/View/Schedule/SchedulePopup.js +3 -3
  246. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
  247. package/src/View/SmartEdit/SmartEditPopup.js +1 -1
  248. package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
  249. package/src/View/StateManagement/StateManagementPopup.js +21 -114
  250. package/src/View/StateManagement/StateManagementViewPanel.d.ts +5 -0
  251. package/src/View/StateManagement/StateManagementViewPanel.js +22 -0
  252. package/src/View/StateManagement/components/ClearButton.d.ts +6 -0
  253. package/src/View/StateManagement/components/ClearButton.js +9 -0
  254. package/src/View/StateManagement/components/ExportDropdown.d.ts +8 -0
  255. package/src/View/StateManagement/components/ExportDropdown.js +43 -0
  256. package/src/View/StateManagement/components/LoadButton.d.ts +7 -0
  257. package/src/View/StateManagement/components/LoadButton.js +38 -0
  258. package/src/View/StateManagement/handleExportState.d.ts +1 -0
  259. package/src/View/StateManagement/handleExportState.js +22 -0
  260. package/src/View/Theme/ThemeViewPanel.js +1 -1
  261. package/src/View/UIHelper.d.ts +2 -0
  262. package/src/View/UIHelper.js +10 -1
  263. package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
  264. package/src/agGrid/ActionColumnRenderer.js +21 -4
  265. package/src/agGrid/Adaptable.d.ts +28 -11
  266. package/src/agGrid/Adaptable.js +326 -168
  267. package/src/agGrid/agGridHelper.d.ts +4 -4
  268. package/src/agGrid/agGridHelper.js +46 -46
  269. package/src/agGrid/agGridMenuHelper.d.ts +15 -13
  270. package/src/agGrid/agGridMenuHelper.js +55 -47
  271. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +1 -1
  272. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -6
  273. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -2
  274. package/src/agGrid/editors/AdaptableDateEditor/index.js +16 -6
  275. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +1 -0
  276. package/src/agGrid/editors/AdaptableNumberEditor/index.js +7 -2
  277. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -3
  278. package/src/components/Dashboard/Dashboard.js +1 -1
  279. package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
  280. package/src/components/Datepicker/index.js +9 -5
  281. package/src/components/DropdownButton/index.js +1 -1
  282. package/src/components/ExpressionEditor/index.js +7 -7
  283. package/src/components/Loader/Loader.d.ts +7 -0
  284. package/src/components/Loader/Loader.js +13 -0
  285. package/src/components/Loader/index.d.ts +2 -0
  286. package/src/components/Loader/index.js +7 -0
  287. package/src/components/Modal/index.d.ts +1 -1
  288. package/src/components/OverlayTrigger/index.js +3 -3
  289. package/src/components/OverlayTrigger/useAgGridClassName.d.ts +2 -0
  290. package/src/components/OverlayTrigger/{useVendorClassName.js → useAgGridClassName.js} +3 -3
  291. package/src/components/ProgressIndicator/ProgressIndicator.d.ts +2 -0
  292. package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
  293. package/src/components/icons/index.js +2 -0
  294. package/src/components/icons/upload.d.ts +3 -0
  295. package/src/components/icons/upload.js +8 -0
  296. package/src/metamodel/adaptable.metamodel.d.ts +176 -52
  297. package/src/metamodel/adaptable.metamodel.js +659 -366
  298. package/src/types.d.ts +5 -4
  299. package/version.d.ts +1 -1
  300. package/version.js +1 -1
  301. package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
  302. package/src/PredefinedConfig/DeprecatedState.js +0 -5
  303. package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
  304. package/src/View/Export/ProgressIndicator.d.ts +0 -6
  305. package/src/View/Export/ProgressIndicator.js +0 -25
  306. package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
package/LICENSE.md CHANGED
@@ -18,7 +18,7 @@ TTL provides the following:
18
18
 
19
19
  1.2 User Licence: In consideration of Client paying the applicable annual licence fees to TTL and agreeing to and complying with the terms of this Licence TTL hereby grants to Client, for the user licence term as set out in the Sales Order, a non-exclusive, non-transferable licence to use the object code version of the Software at the Client’s site(s) set out in the Sales Order.
20
20
 
21
- 1.3 The annual licence fee includes unlimited use of both versions of the Software. However, the annual licence fee does not include any licences for underlying commercial vendor grids; where applicable, these will need to be purchased separately from the vendor.
21
+ 1.3 The annual licence fee includes unlimited use of both versions of the Software. However, the annual licence fee does not include any AG Grid licences which will need to be purchased separately from AG Grid.
22
22
 
23
23
  1.4 The user licence shall be effective upon its first installation or use of the Software, and shall continue for the licence term set out in the Sales Order subject to termination under clause 14.1.
24
24
 
package/README.md CHANGED
@@ -17,7 +17,7 @@ There are a number of different license options available.
17
17
 
18
18
  We can also make a trial license available for a short period of time to allow you to try out AdapTable for yourself.
19
19
 
20
- **Note: The AdapTable license does not include the underlying grid's license, so if you plan to use AdapTable with a Grid that requires a commercial license, you must pay for that separately**.
20
+ **Note: The AdapTable license does not include an AG Grid license, so if you plan to use AdapTable with a Grid that requires a commercial license, you must pay for that separately**.
21
21
 
22
22
  Please contact [`sales@adaptabletools.com`](mailto:sales@adaptabletools.com) or see our [License Help Page](https://docs.adaptabletools.com/docs/getting-started/licence) for more information.
23
23
 
package/base.css CHANGED
@@ -1362,6 +1362,19 @@
1362
1362
  --ab-cmp-datepicker__font-size: var(--ab-font-size-2);
1363
1363
  --ab-cmp-datepicker__font-family: var(--ab__font-family);
1364
1364
  --ab-cmp-datepicker__cell-size: 30px; }
1365
+ :root {
1366
+ --ab-cmp-loader__background: var(--ab-color-primarydark);
1367
+ --ab-cmp-loader__border: var(--ab-color-text-on-primary);
1368
+ --ab-cmp-loader__font-size: var(--ab-font-size-2); }
1369
+ :root {
1370
+ --ab-cmp-progress-indicator__delay: 1s;
1371
+ --ab-cmp-progress-indicator__z-index: 9999;
1372
+ --ab-cmp-progress-indicator__font-size: var(--ab-font-size-4);
1373
+ --ab-cmp-progress-indicator__font-style: italic;
1374
+ --ab-cmp-progress-indicator__font-family: var(--ab__font-family);
1375
+ --ab-cmp-progress-indicator__padding: var(--ab-space-3);
1376
+ --ab-cmp-progress-indicator__background: var(--ab-color-primary);
1377
+ --ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary); }
1365
1378
  :root {
1366
1379
  --ab-cmp-wizard__padding: var(--ab-space-5);
1367
1380
  --ab-cmp-wizard__margin: var(--ab-space-1);
@@ -1471,6 +1484,8 @@
1471
1484
  --ab-cmp-toolpanel-header__grid-gap: 3px;
1472
1485
  --ab-cmp-toolpanel__color: var(--ab-dashboard__color);
1473
1486
  --ab-cmp-toolpanel__font-family: var(--ab__font-family); }
1487
+ :root {
1488
+ --ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
1474
1489
  .ab-Radio-input:focus + svg rect {
1475
1490
  stroke: var(--ab-color-accent);
1476
1491
  stroke-width: 2; }
@@ -2146,8 +2161,12 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2146
2161
  opacity: 1; }
2147
2162
  .ab-Dashboard .ab-Input {
2148
2163
  border: none; }
2164
+ .ab-Dashboard .ab-DashboardToolbar__Export__wrap {
2165
+ white-space: nowrap; }
2149
2166
  .ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
2150
2167
  padding: var(--ab-space-1); }
2168
+ .ab-Dashboard .ab-StateManagement__Clear-Button, .ab-Dashboard .ab-StateManagement__Load-Button, .ab-Dashboard .ab-StateManagement__Export-Dropdown {
2169
+ margin-left: var(--ab-space-1); }
2151
2170
  .ab-GridList {
2152
2171
  --at-grid__background: transparent; }
2153
2172
  .ab-GridList .AT-GridCell_content, .ab-GridList .ab-ListGroupItem, .ab-GridList .AT-GridColumnCell {
@@ -2255,6 +2274,55 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2255
2274
  box-shadow: var(--ab-focus__box-shadow); }
2256
2275
  .ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
2257
2276
  opacity: 0.5; }
2277
+ .ab-Loader {
2278
+ font-size: var(--ab-cmp-loader__font-size);
2279
+ margin-top: 8px;
2280
+ font-style: italic; }
2281
+ .ab-Loader__text, .ab-Loader__Spinner {
2282
+ vertical-align: middle; }
2283
+ .ab-Loader .ab-Loader__Spinner {
2284
+ margin-right: 5px; }
2285
+ .ab-Loader__Spinner {
2286
+ display: inline-block;
2287
+ border-radius: 50%;
2288
+ border: 2px solid var(--ab-cmp-loader__background);
2289
+ border-top: 2px solid var(--ab-cmp-loader__border);
2290
+ width: 10px;
2291
+ height: 10px;
2292
+ bottom: 0;
2293
+ animation: spin 1.5s linear infinite; }
2294
+ @keyframes spin {
2295
+ 0% {
2296
+ transform: rotate(0deg); }
2297
+ 100% {
2298
+ transform: rotate(360deg); } }
2299
+ .ab-progress-indicator-wrapper {
2300
+ align-items: center;
2301
+ display: flex;
2302
+ justify-content: center;
2303
+ position: fixed;
2304
+ top: 0;
2305
+ left: 0;
2306
+ height: 0;
2307
+ width: 0;
2308
+ z-index: var(--ab-cmp-progress-indicator__z-index);
2309
+ opacity: 0;
2310
+ transition-delay: var(--ab-cmp-progress-indicator__delay);
2311
+ transition-property: opacity;
2312
+ transition-duration: 0.3s; }
2313
+ .ab-progress-indicator-wrapper--visible {
2314
+ opacity: 1; }
2315
+ .ab-progress-indicator-wrapper .ab-progress-indicator-body {
2316
+ padding: var(--ab-cmp-progress-indicator__padding);
2317
+ background: var(--ab-cmp-progress-indicator__background);
2318
+ color: var(--ab-cmp-progress-indicator__color);
2319
+ border-style: none;
2320
+ border-width: 0px;
2321
+ border-radius: var(--ab__border-radius);
2322
+ box-shadow: var(--ab-focus__box-shadow);
2323
+ font-size: var(--ab-cmp-progress-indicator__font-size);
2324
+ font-style: var(--ab-cmp-progress-indicator__font-style);
2325
+ font-family: var(--ab-cmp-progress-indicator__font-family); }
2258
2326
  .ab-ObjectCollection__list > * {
2259
2327
  background: var(--ab-cmp-listgroupitem__background);
2260
2328
  color: var(--ab-cmp-listgroupitem__color); }
@@ -2277,17 +2345,17 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2277
2345
  margin-Bottom: 0; }
2278
2346
  .ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
2279
2347
  overflow-x: hidden; }
2280
- .ag-theme-balham-dark .ab-ListBoxFilterForm--vendor-style,
2281
- .ag-theme-balham .ab-ListBoxFilterForm--vendor-style {
2348
+ .ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
2349
+ .ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
2282
2350
  --ab-cmp-dropdown__border-radius: 0;
2283
2351
  --ab-cmp-input__border-radius: 0;
2284
2352
  --ab-cmp-input__padding: 0;
2285
2353
  --ab-cmp-dropdown__padding: 3px;
2286
2354
  --ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
2287
- .ag-theme-balham-dark .ab-ListBoxFilterForm--vendor-style .ab-FieldWrap,
2288
- .ag-theme-balham .ab-ListBoxFilterForm--vendor-style .ab-FieldWrap {
2355
+ .ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
2356
+ .ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
2289
2357
  border-radius: 0; }
2290
- html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
2358
+ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2291
2359
  --ab-color-inputborder: white;
2292
2360
  --ab-cmp-dropdown__border: 1px solid white; }
2293
2361
  .ab-Popover {
@@ -2351,7 +2419,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
2351
2419
  .ab-Dashboard__application-icon {
2352
2420
  margin-right: var(--ab-space-2); }
2353
2421
  .ab-ToolPanel {
2354
- min-width: calc(var(--ab-cmp-toolpanel__width) - 1px);
2422
+ flex: 1 1 0;
2423
+ min-width: 0;
2355
2424
  color: var(--ab-cmp-toolpanel__color);
2356
2425
  font-family: var(--ab-cmp-toolpanel__font-family); }
2357
2426
  .ab-ToolPanel .ab-ToolPanel__header {
@@ -2364,6 +2433,13 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
2364
2433
  flex-direction: row;
2365
2434
  flex-wrap: wrap;
2366
2435
  grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
2436
+ .ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button {
2437
+ justify-content: center;
2438
+ flex: 1; }
2439
+ .ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button, .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
2440
+ margin-bottom: var(--ab-space-1); }
2441
+ .ab-CustomSortWizard__SortOrder .ab-Loader__text {
2442
+ font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
2367
2443
  .ab-alert--error {
2368
2444
  background: var(--ab-color-error); }
2369
2445
  .ab-alert--success {
@@ -2488,31 +2564,7 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
2488
2564
  flex-flow: column; }
2489
2565
  .ag-details-row .ag-details-grid {
2490
2566
  flex: 1; }
2491
- div.ab-progress-indicator-wrapper {
2492
- align-items: center;
2493
- display: flex;
2494
- height: 100vh;
2495
- justify-content: center;
2496
- left: 0;
2497
- position: fixed;
2498
- top: 0;
2499
- width: 100%;
2500
- z-index: 9999;
2501
- opacity: 0;
2502
- transition-delay: 0.5s;
2503
- transition-property: opacity;
2504
- transition-duration: 0.3s; }
2505
- div.ab-progress-indicator-wrapper--visible {
2506
- opacity: 1; }
2507
- div.ab-progress-indicator-wrapper .ab-progress-indicator-text {
2508
- padding: var(--ab-space-3);
2509
- background: var(--ab-color-primary);
2510
- color: var(--ab-color-text-on-primary);
2511
- border-style: none;
2512
- border-width: 0px;
2513
- border-radius: var(--ab__border-radius);
2514
- box-shadow: var(--ab-focus__box-shadow);
2515
- font-size: var(--ab-font-size-3);
2516
- font-family: var(--ab__font-family); }
2567
+ .ab-wait-for-progress-indicator.ab-Grid {
2568
+ pointer-events: none; }
2517
2569
 
2518
2570
  /*# sourceMappingURL=base.css.map */