@adaptabletools/adaptable 18.0.0-canary.11 → 18.0.0-canary.12

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 (80) hide show
  1. package/base.css +4 -0
  2. package/base.css.map +1 -1
  3. package/index.css +6 -0
  4. package/index.css.map +1 -1
  5. package/package.json +1 -1
  6. package/src/AdaptableOptions/AdaptableOptions.d.ts +2 -2
  7. package/src/AdaptableOptions/ColumnOptions.d.ts +7 -4
  8. package/src/AdaptableOptions/CommentOptions.d.ts +9 -7
  9. package/src/AdaptableOptions/NoteOptions.d.ts +4 -1
  10. package/src/Api/AdaptableApi.d.ts +2 -2
  11. package/src/Api/ColumnApi.d.ts +4 -0
  12. package/src/Api/CommentApi.d.ts +11 -12
  13. package/src/Api/ConfigApi.d.ts +2 -2
  14. package/src/Api/EventApi.d.ts +7 -9
  15. package/src/Api/Events/CommentChanged.d.ts +11 -0
  16. package/src/Api/GridApi.d.ts +4 -0
  17. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  18. package/src/Api/Implementation/AdaptableApiImpl.js +2 -2
  19. package/src/Api/Implementation/ApiBase.d.ts +2 -2
  20. package/src/Api/Implementation/ApiBase.js +1 -1
  21. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  22. package/src/Api/Implementation/ColumnApiImpl.js +10 -0
  23. package/src/Api/Implementation/CommentsApiImpl.d.ts +1 -2
  24. package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -2
  25. package/src/Api/Implementation/ConfigApiImpl.js +2 -2
  26. package/src/Api/Implementation/GridApiImpl.d.ts +1 -0
  27. package/src/Api/Implementation/GridApiImpl.js +9 -0
  28. package/src/Api/Implementation/{NotesApiImpl.d.ts → NoteApiImpl.d.ts} +7 -7
  29. package/src/Api/Implementation/{NotesApiImpl.js → NoteApiImpl.js} +5 -5
  30. package/src/Api/Implementation/OptionsApiImpl.d.ts +4 -5
  31. package/src/Api/Implementation/OptionsApiImpl.js +2 -12
  32. package/src/Api/Internal/AdaptableInternalApi.d.ts +1 -1
  33. package/src/Api/Internal/ExportInternalApi.d.ts +2 -1
  34. package/src/Api/Internal/ExportInternalApi.js +4 -1
  35. package/src/Api/Internal/NotesInternalApi.d.ts +1 -1
  36. package/src/Api/Internal/NotesInternalApi.js +1 -1
  37. package/src/Api/{NotesApi.d.ts → NoteApi.d.ts} +14 -14
  38. package/src/Api/OptionsApi.d.ts +8 -12
  39. package/src/PredefinedConfig/AdaptableState.d.ts +2 -2
  40. package/src/PredefinedConfig/CommentState.d.ts +13 -13
  41. package/src/PredefinedConfig/Common/RowSummary.d.ts +6 -0
  42. package/src/PredefinedConfig/{NotesState.d.ts → NoteState.d.ts} +2 -2
  43. package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -2
  44. package/src/PredefinedConfig/Selection/GridCell.d.ts +13 -0
  45. package/src/PredefinedConfig/SystemState.d.ts +2 -3
  46. package/src/Redux/ActionsReducers/NotesRedux.d.ts +6 -6
  47. package/src/Redux/ActionsReducers/NotesRedux.js +1 -1
  48. package/src/Redux/ActionsReducers/SystemRedux.js +3 -3
  49. package/src/Redux/Store/AdaptableStore.js +4 -10
  50. package/src/Strategy/CommentsModule.js +4 -4
  51. package/src/Strategy/NotesModule.js +5 -5
  52. package/src/Utilities/Services/CellPopupService.js +2 -2
  53. package/src/Utilities/Services/Interface/IReportService.d.ts +1 -4
  54. package/src/Utilities/Services/ReportService.d.ts +7 -5
  55. package/src/Utilities/Services/ReportService.js +238 -22
  56. package/src/View/Components/NewScopeComponent.js +2 -2
  57. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +1 -1
  58. package/src/View/Layout/LayoutViewPanel.js +2 -1
  59. package/src/View/Layout/Wizard/LayoutWizard.js +3 -2
  60. package/src/View/Notes/NotesPopup.js +3 -3
  61. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  62. package/src/agGrid/AdaptableAgGrid.d.ts +2 -0
  63. package/src/agGrid/AdaptableAgGrid.js +93 -54
  64. package/src/agGrid/AgGridAdapter.d.ts +1 -0
  65. package/src/agGrid/AgGridAdapter.js +3 -0
  66. package/src/agGrid/AgGridColumnAdapter.d.ts +1 -1
  67. package/src/agGrid/AgGridColumnAdapter.js +2 -2
  68. package/src/agGrid/AgGridOptionsService.d.ts +4 -1
  69. package/src/agGrid/AgGridOptionsService.js +22 -0
  70. package/src/env.js +2 -2
  71. package/src/metamodel/adaptable.metamodel.d.ts +41 -3
  72. package/src/metamodel/adaptable.metamodel.js +1 -1
  73. package/src/types.d.ts +22 -20
  74. package/tsconfig.esm.tsbuildinfo +1 -1
  75. package/src/Api/Events/CommentsChangedInfo.d.ts +0 -5
  76. package/src/PredefinedConfig/CellAddress.d.ts +0 -13
  77. package/src/PredefinedConfig/CellAddress.js +0 -4
  78. /package/src/Api/Events/{CommentsChangedInfo.js → CommentChanged.js} +0 -0
  79. /package/src/Api/{NotesApi.js → NoteApi.js} +0 -0
  80. /package/src/PredefinedConfig/{NotesState.js → NoteState.js} +0 -0
@@ -1,5 +0,0 @@
1
- import { CommentThread } from '../../types';
2
- import { BaseEventInfo } from './BaseEventInfo';
3
- export interface CommentsChangedInfo extends BaseEventInfo {
4
- gridCellComments: CommentThread[];
5
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * Cell that contains a Note
3
- */
4
- export type CellAddress = {
5
- /**
6
- * Value in Primary Key Column
7
- */
8
- PrimaryKeyValue: string | number;
9
- /**
10
- * Id of Column containing the Note
11
- */
12
- ColumnId: string;
13
- };
@@ -1,4 +0,0 @@
1
- /**
2
- * Cell that contains a Note
3
- */
4
- export {};
File without changes