@adaptabletools/adaptable 18.0.0-canary.10 → 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 (87) 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/LicenseService/index.js +1 -193
  55. package/src/Utilities/Services/ReportService.d.ts +7 -5
  56. package/src/Utilities/Services/ReportService.js +238 -22
  57. package/src/Utilities/license/decode.js +1 -65
  58. package/src/Utilities/license/hashing.js +1 -43
  59. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +1 -1
  60. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
  61. package/src/View/Components/NewScopeComponent.js +2 -2
  62. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +1 -1
  63. package/src/View/GridFilter/GridFilterViewPanel.js +1 -1
  64. package/src/View/Layout/LayoutViewPanel.js +2 -1
  65. package/src/View/Layout/Wizard/LayoutWizard.js +3 -2
  66. package/src/View/License/LicenseWatermark.js +1 -61
  67. package/src/View/Notes/NotesPopup.js +3 -3
  68. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  69. package/src/agGrid/AdaptableAgGrid.d.ts +2 -0
  70. package/src/agGrid/AdaptableAgGrid.js +93 -54
  71. package/src/agGrid/AgGridAdapter.d.ts +1 -0
  72. package/src/agGrid/AgGridAdapter.js +3 -0
  73. package/src/agGrid/AgGridColumnAdapter.d.ts +1 -1
  74. package/src/agGrid/AgGridColumnAdapter.js +2 -2
  75. package/src/agGrid/AgGridOptionsService.d.ts +4 -1
  76. package/src/agGrid/AgGridOptionsService.js +22 -0
  77. package/src/env.js +2 -2
  78. package/src/metamodel/adaptable.metamodel.d.ts +41 -3
  79. package/src/metamodel/adaptable.metamodel.js +1 -9426
  80. package/src/types.d.ts +22 -20
  81. package/tsconfig.esm.tsbuildinfo +1 -1
  82. package/src/Api/Events/CommentsChangedInfo.d.ts +0 -5
  83. package/src/PredefinedConfig/CellAddress.d.ts +0 -13
  84. package/src/PredefinedConfig/CellAddress.js +0 -4
  85. /package/src/Api/Events/{CommentsChangedInfo.js → CommentChanged.js} +0 -0
  86. /package/src/Api/{NotesApi.js → NoteApi.js} +0 -0
  87. /package/src/PredefinedConfig/{NotesState.js → NoteState.js} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.