@adaptabletools/adaptable 20.0.0-canary.23 → 20.0.0-canary.24

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 (52) hide show
  1. package/package.json +1 -1
  2. package/src/AdaptableOptions/StateOptions.d.ts +1 -1
  3. package/src/AdaptableState/AdaptableState.d.ts +2 -2
  4. package/src/AdaptableState/AlertState.d.ts +2 -2
  5. package/src/AdaptableState/ApplicationState.d.ts +2 -2
  6. package/src/AdaptableState/{ConfigState.d.ts → BaseState.d.ts} +1 -1
  7. package/src/AdaptableState/CalculatedColumnState.d.ts +2 -2
  8. package/src/AdaptableState/ChartingState.d.ts +2 -2
  9. package/src/AdaptableState/CommentState.d.ts +2 -2
  10. package/src/AdaptableState/CustomSortState.d.ts +2 -2
  11. package/src/AdaptableState/DashboardState.d.ts +2 -2
  12. package/src/AdaptableState/ExportState.d.ts +2 -2
  13. package/src/AdaptableState/FlashingCellState.d.ts +2 -2
  14. package/src/AdaptableState/FormatColumnState.d.ts +2 -2
  15. package/src/AdaptableState/FreeTextColumnState.d.ts +2 -2
  16. package/src/AdaptableState/IPushPullState.d.ts +2 -2
  17. package/src/AdaptableState/LayoutState.d.ts +2 -2
  18. package/src/AdaptableState/NamedQueryState.d.ts +2 -2
  19. package/src/AdaptableState/NoteState.d.ts +2 -2
  20. package/src/AdaptableState/OpenFinState.d.ts +2 -2
  21. package/src/AdaptableState/PlusMinusState.d.ts +2 -2
  22. package/src/AdaptableState/PopupState.d.ts +2 -2
  23. package/src/AdaptableState/QuickSearchState.d.ts +2 -2
  24. package/src/AdaptableState/ScheduleState.d.ts +2 -2
  25. package/src/AdaptableState/ShortcutState.d.ts +2 -2
  26. package/src/AdaptableState/StatusBarState.d.ts +2 -2
  27. package/src/AdaptableState/StyledColumnState.d.ts +2 -2
  28. package/src/AdaptableState/TeamSharingState.d.ts +2 -2
  29. package/src/AdaptableState/ThemeState.d.ts +2 -2
  30. package/src/AdaptableState/ToolPanelState.d.ts +2 -2
  31. package/src/Api/AdaptableApi.d.ts +2 -2
  32. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  33. package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
  34. package/src/Api/Implementation/ApiBase.d.ts +2 -2
  35. package/src/Api/Implementation/ApiBase.js +2 -2
  36. package/src/Api/Implementation/{ConfigApiImpl.d.ts → StateApiImpl.d.ts} +5 -5
  37. package/src/Api/Implementation/{ConfigApiImpl.js → StateApiImpl.js} +3 -3
  38. package/src/Api/Internal/EventInternalApi.js +1 -1
  39. package/src/Api/{ConfigApi.d.ts → StateApi.d.ts} +4 -4
  40. package/src/Redux/Store/AdaptableReduxMerger.d.ts +2 -2
  41. package/src/Redux/Store/AdaptableStore.d.ts +3 -3
  42. package/src/Strategy/AdaptableModuleBase.js +2 -3
  43. package/src/View/StateManagement/StateManagementPopup.js +2 -2
  44. package/src/View/StateManagement/StateManagementViewPanel.js +2 -2
  45. package/src/View/StateManagement/components/ExportDropdown.js +2 -2
  46. package/src/env.js +2 -2
  47. package/src/metamodel/adaptable.metamodel.d.ts +11 -11
  48. package/src/metamodel/adaptable.metamodel.js +1 -1
  49. package/src/types.d.ts +4 -4
  50. package/tsconfig.esm.tsbuildinfo +1 -1
  51. /package/src/AdaptableState/{ConfigState.js → BaseState.js} +0 -0
  52. /package/src/Api/{ConfigApi.js → StateApi.js} +0 -0
package/src/types.d.ts CHANGED
@@ -43,7 +43,7 @@ export type { TableAggregationColumns, PivotAggregationColumns, WeightedAverageA
43
43
  export type { AccessLevel, Entitlement } from './AdaptableState/Common/Entitlement';
44
44
  export type { ExtendedLayoutInfo, LayoutExtension, } from './AdaptableState/Common/ExtendedLayoutInfo';
45
45
  export type { FilterActionOnDataChange, ApplyFilterAction, } from './AdaptableState/Common/FilterActionOnDataChange';
46
- export type { ConfigState } from './AdaptableState/ConfigState';
46
+ export type { BaseState } from './AdaptableState/BaseState';
47
47
  export type { AdaptableNote, NoteState, AdaptableNotes } from './AdaptableState/NoteState';
48
48
  export type { TeamSharingOptions, SharedEntitiesContext, } from './AdaptableOptions/TeamSharingOptions';
49
49
  export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
@@ -69,7 +69,7 @@ export type { ChartingApi } from './Api/ChartingApi';
69
69
  export type { ColumnApi } from './Api/ColumnApi';
70
70
  export type { ColumnFilterApi } from './Api/ColumnFilterApi';
71
71
  export type { CommentApi } from './Api/CommentApi';
72
- export type { ConfigApi } from './Api/ConfigApi';
72
+ export type { StateApi } from './Api/StateApi';
73
73
  export type { CustomSortApi } from './Api/CustomSortApi';
74
74
  export type { DashboardApi } from './Api/DashboardApi';
75
75
  export type { DataImportApi } from './Api/DataImportApi';
@@ -201,7 +201,7 @@ export type { PredefinedConfig, InitialState } from './AdaptableState/InitialSta
201
201
  export type { NamedQuery, NamedQueryState } from './AdaptableState/NamedQueryState';
202
202
  export type { QuickSearchState } from './AdaptableState/QuickSearchState';
203
203
  export type { ReminderSchedule, ScheduleState } from './AdaptableState/ScheduleState';
204
- export type { GridCell, CellUpdateRequest, CellAddress, } from './AdaptableState/Selection/GridCell';
204
+ export type { GridCell, CellUpdateRequest, CellAddress } from './AdaptableState/Selection/GridCell';
205
205
  export type { GridRow, RowInfo } from './AdaptableState/Selection/GridRow';
206
206
  export type { SelectedCellInfo } from './AdaptableState/Selection/SelectedCellInfo';
207
207
  export type { SelectedRowInfo } from './AdaptableState/Selection/SelectedRowInfo';
@@ -212,7 +212,7 @@ export type { AdaptableTheme, ThemeState } from './AdaptableState/ThemeState';
212
212
  export type { ToolPanelState, AdaptableToolPanelDefinition, ToolPanelVisibilityMode, } from './AdaptableState/ToolPanelState';
213
213
  export type { AdaptableFrameworkComponent, AngularFrameworkComponent, ReactFrameworkComponent, VueFrameworkComponent, CustomRenderFunction, CustomRenderContext, } from './agGrid/AdaptableFrameworkComponent';
214
214
  export type { Fdc3Options, GridDataContextMapping, ActionColumnDefaultConfiguration, ResolveContextDataContext, RaiseIntentConfig, BroadcastConfig, HandleFdc3IntentContext, HandleFdc3Context, Fdc3ButtonContext, Fdc3AdaptableButton, HandleFdc3IntentResolutionContext, UIControlConfig, Fdc3IntentOptions, Fdc3ContextOptions, RaiseIntentConfiguration, BroadcastConfiguration, FDC3ActionColumn, } from './AdaptableOptions/Fdc3Options';
215
- export type { CommentState, CommentThread, AdaptableComment, } from './AdaptableState/CommentState';
215
+ export type { CommentState, CommentThread, AdaptableComment } from './AdaptableState/CommentState';
216
216
  export type { UpgradeConfig } from '../agGrid';
217
217
  export type { ProgressIndicatorConfig } from './AdaptableState/Common/ProgressIndicatorConfig';
218
218
  export type { CustomWindowConfig } from './AdaptableState/Common/CustomWindowConfig';