@adaptabletools/adaptable 19.1.2-canary.0 → 19.2.0

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 (63) hide show
  1. package/package.json +1 -1
  2. package/src/AdaptableOptions/CommentOptions.d.ts +1 -1
  3. package/src/{agGrid/defaultAdaptableOptions.d.ts → AdaptableOptions/DefaultAdaptableOptions.d.ts} +1 -1
  4. package/src/{agGrid/defaultAdaptableOptions.js → AdaptableOptions/DefaultAdaptableOptions.js} +3 -3
  5. package/src/AdaptableOptions/EditOptions.d.ts +4 -0
  6. package/src/AdaptableOptions/NoteOptions.d.ts +1 -1
  7. package/src/Api/GridApi.d.ts +3 -3
  8. package/src/Api/Implementation/ActionRowApiImpl.js +2 -2
  9. package/src/Api/Implementation/AlertApiImpl.js +6 -6
  10. package/src/Api/Implementation/ChartingApiImpl.js +4 -4
  11. package/src/Api/Implementation/ColumnApiImpl.js +5 -5
  12. package/src/Api/Implementation/ColumnFilterApiImpl.js +9 -9
  13. package/src/Api/Implementation/ColumnScopeApiImpl.js +8 -8
  14. package/src/Api/Implementation/ConfigApiImpl.js +2 -2
  15. package/src/Api/Implementation/DataChangeHistoryApiImpl.js +1 -1
  16. package/src/Api/Implementation/FlashingCellApiImpl.js +2 -2
  17. package/src/Api/Implementation/FormatColumnApiImpl.js +4 -4
  18. package/src/Api/Implementation/FreeTextColumnApiImpl.js +1 -1
  19. package/src/Api/Implementation/GridApiImpl.js +16 -19
  20. package/src/Api/Implementation/LayoutApiImpl.js +4 -4
  21. package/src/Api/Implementation/PredicateApiImpl.js +2 -2
  22. package/src/Api/Implementation/ScheduleApiImpl.js +2 -2
  23. package/src/Api/Implementation/TeamSharingApiImpl.js +1 -1
  24. package/src/Api/Implementation/ThemeApiImpl.js +2 -2
  25. package/src/Api/Implementation/UserInterfaceApiImpl.js +6 -6
  26. package/src/Api/Internal/ActionRowInternalApi.js +9 -10
  27. package/src/Api/Internal/AdaptableInternalApi.js +2 -2
  28. package/src/Api/Internal/AlertInternalApi.js +3 -3
  29. package/src/Api/Internal/CalculatedColumnInternalApi.js +1 -1
  30. package/src/Api/Internal/ChartingInternalApi.js +7 -7
  31. package/src/Api/Internal/ColumnFilterInternalApi.js +8 -8
  32. package/src/Api/Internal/CustomSortInternalApi.js +1 -1
  33. package/src/Api/Internal/DashboardInternalApi.js +1 -1
  34. package/src/Api/Internal/DataSetInternalApi.js +1 -1
  35. package/src/Api/Internal/ExportInternalApi.js +37 -37
  36. package/src/Api/Internal/ExpressionInternalApi.js +1 -1
  37. package/src/Api/Internal/FlashingCellInternalApi.js +1 -1
  38. package/src/Api/Internal/FormatColumnInternalApi.js +8 -8
  39. package/src/Api/Internal/GridInternalApi.d.ts +7 -0
  40. package/src/Api/Internal/GridInternalApi.js +20 -3
  41. package/src/Api/Internal/LayoutInternalApi.js +3 -3
  42. package/src/Api/Internal/StyledColumnInternalApi.js +6 -6
  43. package/src/Api/Internal/SystemStatusInternalApi.js +1 -1
  44. package/src/Api/Internal/TeamSharingInternalApi.js +2 -2
  45. package/src/Api/Internal/UserInterfaceInternalApi.js +1 -1
  46. package/src/Api/StatusBarApi.d.ts +2 -2
  47. package/src/PredefinedConfig/Common/AdaptableSearchState.d.ts +22 -0
  48. package/src/PredefinedConfig/Common/AdaptableSearchState.js +1 -0
  49. package/src/PredefinedConfig/PredefinedConfig.d.ts +4 -4
  50. package/src/Strategy/BulkUpdateModule.js +0 -12
  51. package/src/Strategy/PlusMinusModule.js +24 -24
  52. package/src/Strategy/SmartEditModule.js +0 -11
  53. package/src/Utilities/Services/MetamodelService.js +1 -1
  54. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +1 -1
  55. package/src/agGrid/Adaptable.js +1 -1
  56. package/src/agGrid/AdaptableAgGrid.js +1 -1
  57. package/src/agGrid/AgGridAdapter.js +4 -1
  58. package/src/agGrid/AgGridColumnAdapter.js +15 -12
  59. package/src/env.js +2 -2
  60. package/src/metamodel/adaptable.metamodel.d.ts +18 -2
  61. package/src/metamodel/adaptable.metamodel.js +1 -1
  62. package/src/types.d.ts +1 -1
  63. package/tsconfig.esm.tsbuildinfo +1 -1
package/src/types.d.ts CHANGED
@@ -131,7 +131,7 @@ export type { ActionRowSubmittedInfo, CreatedActionRowInfo, EditedActionRowInfo,
131
131
  export type { ColumnFilterAppliedInfo } from './Api/Events/ColumnFilterApplied';
132
132
  export type { GridFilterAppliedInfo } from './Api/Events/GridFilterApplied';
133
133
  export type { GridSortedInfo, AdaptableSortState } from './Api/Events/GridSorted';
134
- export type { AdaptableSearchState } from './Api/Events/AdaptableSearchState';
134
+ export type { AdaptableSearchState } from './PredefinedConfig/Common/AdaptableSearchState';
135
135
  export type { DataSetSelectedInfo } from './Api/Events/DataSetSelected';
136
136
  export type { CellSelectionChangedInfo } from './Api/Events/CellSelectionChanged';
137
137
  export type { RowSelectionChangedInfo } from './Api/Events/RowSelectionChanged';