@adaptabletools/adaptable 18.0.0-canary.3 → 18.0.0-canary.4

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 (59) hide show
  1. package/base.css +3 -0
  2. package/base.css.map +1 -1
  3. package/index.css +5 -0
  4. package/index.css.map +1 -1
  5. package/package.json +1 -1
  6. package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -5
  7. package/src/AdaptableOptions/ColumnFilterOptions.d.ts +4 -4
  8. package/src/AdaptableOptions/{CommentsOptions.d.ts → CommentOptions.d.ts} +5 -5
  9. package/src/AdaptableOptions/MenuOptions.d.ts +1 -1
  10. package/src/AdaptableOptions/MenuOptions.js +1 -5
  11. package/src/AdaptableOptions/{NotesOptions.d.ts → NoteOptions.d.ts} +1 -1
  12. package/src/Api/BulkUpdateApi.d.ts +0 -5
  13. package/src/Api/ColumnFilterApi.d.ts +5 -0
  14. package/src/Api/Implementation/ApiBase.js +1 -1
  15. package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +0 -1
  16. package/src/Api/Implementation/BulkUpdateApiImpl.js +0 -4
  17. package/src/Api/Implementation/ColumnFilterApiImpl.d.ts +1 -0
  18. package/src/Api/Implementation/ColumnFilterApiImpl.js +10 -0
  19. package/src/Api/Implementation/LayoutApiImpl.d.ts +4 -0
  20. package/src/Api/Implementation/LayoutApiImpl.js +14 -0
  21. package/src/Api/Implementation/NotesApiImpl.d.ts +2 -4
  22. package/src/Api/Implementation/NotesApiImpl.js +4 -8
  23. package/src/Api/Implementation/OptionsApiImpl.d.ts +1 -1
  24. package/src/Api/Implementation/OptionsApiImpl.js +2 -2
  25. package/src/Api/InteropioPluginApi.d.ts +2 -2
  26. package/src/Api/LayoutApi.d.ts +8 -0
  27. package/src/Api/OptionsApi.d.ts +1 -1
  28. package/src/PredefinedConfig/NotesState.d.ts +10 -20
  29. package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -1
  30. package/src/Redux/ActionsReducers/NotesRedux.d.ts +3 -4
  31. package/src/Redux/ActionsReducers/NotesRedux.js +8 -7
  32. package/src/Strategy/ChartingModule.js +2 -1
  33. package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
  34. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -1
  35. package/src/Utilities/Defaults/DefaultSettingsPanel.js +5 -4
  36. package/src/Utilities/Helpers/Helper.d.ts +2 -0
  37. package/src/Utilities/Helpers/Helper.js +4 -0
  38. package/src/Utilities/Services/AggregatedScalarLiveValue.js +3 -1
  39. package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
  40. package/src/View/Comments/CommentsPopup.js +12 -8
  41. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +1 -1
  42. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
  43. package/src/View/Components/Popups/WindowPopups/windowFactory.js +3 -0
  44. package/src/View/Components/Selectors/PermittedValuesSelector.js +1 -1
  45. package/src/View/Layout/TransposedPopup.d.ts +3 -0
  46. package/src/View/Layout/TransposedPopup.js +193 -0
  47. package/src/View/Notes/NotesPopup.js +9 -11
  48. package/src/View/Theme/ThemeSelector.js +3 -3
  49. package/src/agGrid/Adaptable.js +2 -2
  50. package/src/agGrid/agGridMenuHelper.js +4 -4
  51. package/src/components/Select/Select.d.ts +2 -0
  52. package/src/components/Select/Select.js +2 -2
  53. package/src/env.js +2 -2
  54. package/src/metamodel/adaptable.metamodel.d.ts +30 -2
  55. package/src/metamodel/adaptable.metamodel.js +66 -32
  56. package/src/types.d.ts +5 -2
  57. package/tsconfig.esm.tsbuildinfo +1 -1
  58. /package/src/AdaptableOptions/{CommentsOptions.js → CommentOptions.js} +0 -0
  59. /package/src/AdaptableOptions/{NotesOptions.js → NoteOptions.js} +0 -0