@adaptabletools/adaptable 19.0.0-canary.0 → 19.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 (58) hide show
  1. package/README.md +1 -2
  2. package/base.css +1 -1
  3. package/base.css.map +1 -1
  4. package/index.css +1 -1
  5. package/index.css.map +1 -1
  6. package/package.json +1 -1
  7. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  8. package/src/Api/AlertApi.d.ts +8 -0
  9. package/src/Api/ColumnApi.d.ts +4 -0
  10. package/src/Api/CustomSortApi.d.ts +8 -0
  11. package/src/Api/Events/LiveDataChanged.d.ts +1 -1
  12. package/src/Api/FlashingCellApi.d.ts +25 -12
  13. package/src/Api/FormatColumnApi.d.ts +8 -0
  14. package/src/Api/GridApi.d.ts +0 -20
  15. package/src/Api/Implementation/AlertApiImpl.d.ts +2 -0
  16. package/src/Api/Implementation/AlertApiImpl.js +6 -0
  17. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  18. package/src/Api/Implementation/ColumnApiImpl.js +6 -0
  19. package/src/Api/Implementation/CustomSortApiImpl.d.ts +2 -0
  20. package/src/Api/Implementation/CustomSortApiImpl.js +6 -0
  21. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +3 -0
  22. package/src/Api/Implementation/FlashingCellApiImpl.js +9 -0
  23. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +2 -0
  24. package/src/Api/Implementation/FormatColumnApiImpl.js +6 -0
  25. package/src/Api/Implementation/GridApiImpl.d.ts +0 -4
  26. package/src/Api/Implementation/GridApiImpl.js +0 -17
  27. package/src/Api/Implementation/ShortcutApiImpl.d.ts +2 -0
  28. package/src/Api/Implementation/ShortcutApiImpl.js +6 -0
  29. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +2 -0
  30. package/src/Api/Implementation/StyledColumnApiImpl.js +6 -0
  31. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +0 -2
  32. package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -9
  33. package/src/Api/Internal/ExportInternalApi.d.ts +3 -3
  34. package/src/Api/Internal/ExportInternalApi.js +17 -13
  35. package/src/Api/Internal/GridFilterInternalApi.d.ts +1 -1
  36. package/src/Api/Internal/GridFilterInternalApi.js +1 -1
  37. package/src/Api/ShortcutApi.d.ts +8 -0
  38. package/src/Api/StyledColumnApi.d.ts +8 -0
  39. package/src/Api/UserInterfaceApi.d.ts +0 -10
  40. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +1 -1
  41. package/src/PredefinedConfig/Common/RowScope.d.ts +1 -1
  42. package/src/PredefinedConfig/FormatColumnState.d.ts +0 -4
  43. package/src/Redux/ActionsReducers/SystemRedux.js +3 -8
  44. package/src/Strategy/DashboardModule.js +11 -7
  45. package/src/View/Dashboard/DashboardPopup.js +4 -3
  46. package/src/View/Dashboard/DashboardViewPanel.js +2 -1
  47. package/src/View/Layout/Wizard/getGridFilterPreview.js +1 -1
  48. package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
  49. package/src/View/Layout/Wizard/sections/GridFilterSection.js +1 -1
  50. package/src/agGrid/AdaptableAgGrid.js +4 -3
  51. package/src/agGrid/AgGridColumnAdapter.js +2 -1
  52. package/src/agGrid/AgGridMenuAdapter.js +14 -14
  53. package/src/agGrid/PercentBarRenderer.js +1 -1
  54. package/src/env.js +2 -2
  55. package/src/metamodel/adaptable.metamodel.js +1 -1
  56. package/tsconfig.esm.tsbuildinfo +1 -1
  57. package/src/PredefinedConfig/QueryState.d.ts +0 -18
  58. package/src/PredefinedConfig/QueryState.js +0 -1
@@ -1,18 +0,0 @@
1
- import { ConfigState } from './ConfigState';
2
- import { NamedQuery } from '../types';
3
- /**
4
- * Predefined Configuration for Query Module
5
- * @deprecated
6
- */
7
- export interface QueryState extends ConfigState {
8
- /**
9
- * Named Queries - can be referenced in other Expressions
10
- * @deprecated use NamedQueryState instead
11
- */
12
- NamedQueries?: NamedQuery[];
13
- /**
14
- * Expression used for the Query currently being run
15
- * @deprecated moved to GridFilter and is part of Layout
16
- */
17
- CurrentQuery?: string;
18
- }
@@ -1 +0,0 @@
1
- export {};