@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
package/src/types.d.ts CHANGED
@@ -22,8 +22,8 @@ export type { DataImportValidationError, DataImportOptions, DataImportFileHandle
22
22
  export type { DataSetOptions, DataSet, DataSetFormContext, } from './AdaptableOptions/DataSetOptions';
23
23
  export type { CellSummaryOptions } from './AdaptableOptions/CellSummaryOptions';
24
24
  export type { CustomSortOptions, ColumnValuesComparer } from './AdaptableOptions/CustomSortOptions';
25
- export type { NoteOptions as NotesOptions, NotableCellContext, } from './AdaptableOptions/NoteOptions';
26
- export type { CommentsOptions, CommentableCellContext, CommentLoadContext as CommentsLoadContext, } from './AdaptableOptions/CommentOptions';
25
+ export type { NoteOptions, NotableCellContext, } from './AdaptableOptions/NoteOptions';
26
+ export type { CommentOptions, CommentableCellContext, CommentLoadContext, } from './AdaptableOptions/CommentOptions';
27
27
  export type { GroupingOptions, BalancedGroupsKeyContext } from './AdaptableOptions/GroupingOptions';
28
28
  export type { IPushPullPluginOptions } from './AdaptableOptions/IPushPullPluginOptions';
29
29
  export type { LayoutOptions, LayoutViewOptions, LayoutTagOptions, LayoutAvailableContext, AutoGenerateTagsForLayoutsContext, LayoutAssociatedObject, PivotPreviewColumnsContext, } from './AdaptableOptions/LayoutOptions';
@@ -36,13 +36,13 @@ export type { ColumnFilterOptions, QuickFilterOptions, FilterFormOptions, Values
36
36
  export type { GridFilterOptions, GridFilterEditors, GridFilterEditor, } from './AdaptableOptions/GridFilterOptions';
37
37
  export type { QuickSearchOptions, QuickSearchContext } from './AdaptableOptions/QuickSearchOptions';
38
38
  export type { FormatColumnOptions, CustomDisplayFormatter, CustomDisplayFormatterContext, } from './AdaptableOptions/FormatColumnOptions';
39
- export type { ColumnOptions, ColumnFriendlyNameContext } from './AdaptableOptions/ColumnOptions';
39
+ export type { ColumnOptions, ColumnFriendlyNameContext, ColumnTypesContext } from './AdaptableOptions/ColumnOptions';
40
40
  export type { AdaptablePersistStateFunction, AdaptableStateFunctionConfig, AdaptableLoadStateFunction, AdaptableSaveStateFunction, AdaptableClearStateFunction, StateOptions, } from './AdaptableOptions/StateOptions';
41
41
  export type { AggregationColumns, WeightedAverageAggregation, } from './PredefinedConfig/Common/AggregationColumns';
42
42
  export type { AccessLevel, Entitlement } from './PredefinedConfig/Common/Entitlement';
43
43
  export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterActionOnDataChange';
44
44
  export type { ConfigState } from './PredefinedConfig/ConfigState';
45
- export type { AdaptableNote, NotesState, AdaptableNotes } from './PredefinedConfig/NotesState';
45
+ export type { AdaptableNote, NoteState, AdaptableNotes } from './PredefinedConfig/NoteState';
46
46
  export type { TeamSharingOptions, SharedEntitiesContext, } from './AdaptableOptions/TeamSharingOptions';
47
47
  export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
48
48
  export type { UserInterfaceOptions, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, ObjectTagsContext, CustomIcon, } from './AdaptableOptions/UserInterfaceOptions';
@@ -55,17 +55,18 @@ export type { CalendarOptions } from './AdaptableOptions/CalendarOptions';
55
55
  export type { DataChangeHistoryOptions, DataChangeHistoryButton, DataChangeHistoryContext, AdaptableDataChangeHistoryAction, } from './AdaptableOptions/DataChangeHistoryOptions';
56
56
  export type { LayoutAssociatedObjectLoadConfig } from './Api/Implementation/ApiBase';
57
57
  export type { AdaptableApi } from './Api/AdaptableApi';
58
+ export type { ActionColumnApi } from './Api/ActionColumnApi';
59
+ export type { ActionRowApi } from './Api/ActionRowApi';
58
60
  export type { AlertApi } from './Api/AlertApi';
59
61
  export type { ApplicationApi } from './Api/ApplicationApi';
60
62
  export type { BulkUpdateApi } from './Api/BulkUpdateApi';
61
63
  export type { CalendarApi } from './Api/CalendarApi';
62
64
  export type { CalculatedColumnApi } from './Api/CalculatedColumnApi';
63
65
  export type { CellSummaryApi } from './Api/CellSummaryApi';
64
- export type { ColumnApi } from './Api/ColumnApi';
65
- export type { ActionColumnApi } from './Api/ActionColumnApi';
66
- export type { ActionRowApi } from './Api/ActionRowApi';
67
66
  export type { ChartingApi } from './Api/ChartingApi';
68
- export type { NotesApi } from './Api/NotesApi';
67
+ export type { ColumnApi } from './Api/ColumnApi';
68
+ export type { ColumnFilterApi } from './Api/ColumnFilterApi';
69
+ export type { CommentApi } from './Api/CommentApi';
69
70
  export type { ConfigApi } from './Api/ConfigApi';
70
71
  export type { CustomSortApi } from './Api/CustomSortApi';
71
72
  export type { DashboardApi } from './Api/DashboardApi';
@@ -74,27 +75,23 @@ export type { DataSetApi } from './Api/DataSetApi';
74
75
  export type { DataChangeHistoryApi } from './Api/DataChangeHistoryApi';
75
76
  export type { EntitlementApi } from './Api/EntitlementApi';
76
77
  export type { ExportApi } from './Api/ExportApi';
78
+ export type { ExpressionApi } from './Api/ExpressionApi';
77
79
  export type { Fdc3Api } from './Api/Fdc3Api';
78
- export type { ColumnFilterApi } from './Api/ColumnFilterApi';
79
- export type { GridFilterApi } from './Api/GridFilterApi';
80
80
  export type { FlashingCellApi } from './Api/FlashingCellApi';
81
81
  export type { FormatColumnApi } from './Api/FormatColumnApi';
82
82
  export type { FreeTextColumnApi } from './Api/FreeTextColumnApi';
83
83
  export type { GridApi } from './Api/GridApi';
84
- export type { IPushPullApi } from './Api/IPushPullApi';
84
+ export type { GridFilterApi } from './Api/GridFilterApi';
85
85
  export type { LayoutApi } from './Api/LayoutApi';
86
- export type { InteropioPluginApi } from './Api/InteropioPluginApi';
87
- export type { OpenFinApi } from './Api/OpenFinApi';
86
+ export type { NamedQueryApi } from './Api/NamedQueryApi';
87
+ export type { NoteApi } from './Api/NoteApi';
88
88
  export type { OptionsApi } from './Api/OptionsApi';
89
- export type { PluginsApi } from './Api/PluginsApi';
90
89
  export type { PlusMinusApi } from './Api/PlusMinusApi';
91
90
  export type { PredicateApi } from './Api/PredicateApi';
92
- export type { NamedQueryApi } from './Api/NamedQueryApi';
93
- export type { ExpressionApi } from './Api/ExpressionApi';
94
91
  export type { QuickSearchApi } from './Api/QuickSearchApi';
95
92
  export type { ScheduleApi } from './Api/ScheduleApi';
96
- export type { SettingsPanelApi } from './Api/SettingsPanelApi';
97
93
  export type { ScopeApi } from './Api/ScopeApi';
94
+ export type { SettingsPanelApi } from './Api/SettingsPanelApi';
98
95
  export type { ShortcutApi } from './Api/ShortcutApi';
99
96
  export type { SmartEditApi } from './Api/SmartEditApi';
100
97
  export type { StatusBarApi } from './Api/StatusBarApi';
@@ -104,6 +101,10 @@ export type { TeamSharingApi } from './Api/TeamSharingApi';
104
101
  export type { ThemeApi } from './Api/ThemeApi';
105
102
  export type { ToolPanelApi } from './Api/ToolPanelApi';
106
103
  export type { UserInterfaceApi } from './Api/UserInterfaceApi';
104
+ export type { PluginsApi } from './Api/PluginsApi';
105
+ export type { InteropioPluginApi } from './Api/InteropioPluginApi';
106
+ export type { IPushPullApi } from './Api/IPushPullApi';
107
+ export type { OpenFinApi } from './Api/OpenFinApi';
107
108
  export type { EventApi } from './Api/EventApi';
108
109
  export type { BaseEventInfo } from './Api/Events/BaseEventInfo';
109
110
  export type { AdaptableReadyInfo } from './Api/Events/AdaptableReady';
@@ -133,6 +134,7 @@ export type { ThemeEditedInfo } from './Api/Events/ThemeEdited';
133
134
  export type { DashboardChangedInfo } from './Api/Events/DashboardChanged';
134
135
  export type { ScheduleTriggeredInfo } from './Api/Events/ScheduleTriggered';
135
136
  export type { AdaptableStateChangedInfo } from './Api/Events/AdaptableStateChanged';
137
+ export type { CommentChangedInfo } from './Api/Events/CommentChanged';
136
138
  export type { Fdc3MessageInfo, Fdc3MessageSentInfo, Fdc3MessageReceivedInfo, } from './Api/Events/Fdc3MessageInfo';
137
139
  export type { AdaptableState, AdaptablePersistentState } from './PredefinedConfig/AdaptableState';
138
140
  export type { AlertDefinition, AlertProperties, AlertState, AlertButtonForm, AlertButton, AdaptableAlertAction, AlertDefinitionPredicate, AlertRule, AdaptableAlertQuery, SystemAlertPredicateId, SystemAlertPredicateIds, } from './PredefinedConfig/AlertState';
@@ -183,13 +185,14 @@ export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeText
183
185
  export type { StatusBarState, AdaptableStatusBar } from './PredefinedConfig/StatusBarState';
184
186
  export type { IPushPullDomain, IPushPullReport, IPushPullSchedule, IPushPullState, } from './PredefinedConfig/IPushPullState';
185
187
  export type { Layout, LayoutState } from './PredefinedConfig/LayoutState';
188
+ export type { RowSummary, RowSummaryPosition } from './PredefinedConfig/Common/RowSummary';
186
189
  export type { OpenFinReport, OpenFinSchedule, OpenFinState } from './PredefinedConfig/OpenFinState';
187
190
  export type { PlusMinusNudge, PlusMinusState } from './PredefinedConfig/PlusMinusState';
188
191
  export type { PredefinedConfig } from './PredefinedConfig/PredefinedConfig';
189
192
  export type { NamedQuery, NamedQueryState } from './PredefinedConfig/NamedQueryState';
190
193
  export type { QuickSearchState } from './PredefinedConfig/QuickSearchState';
191
194
  export type { ReminderSchedule, ScheduleState } from './PredefinedConfig/ScheduleState';
192
- export type { GridCell, CellUpdateRequest } from './PredefinedConfig/Selection/GridCell';
195
+ export type { GridCell, CellUpdateRequest, CellAddress } from './PredefinedConfig/Selection/GridCell';
193
196
  export type { GridRow, RowInfo } from './PredefinedConfig/Selection/GridRow';
194
197
  export type { SelectedCellInfo } from './PredefinedConfig/Selection/SelectedCellInfo';
195
198
  export type { SelectedRowInfo } from './PredefinedConfig/Selection/SelectedRowInfo';
@@ -202,6 +205,5 @@ export type { AdaptableFrameworkComponent, AngularFrameworkComponent, ReactFrame
202
205
  export type { Fdc3StandardContextType, Fdc3CustomContextType, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, Fdc3ContextType, Fdc3Context, ChartContextType, ChartContext, ChatInitSettingsContext, ChatInitSettingsContextType, ContactContextType, ContactListContextType, CurrencyContext, EmailContext, CountryContextType, CurrencyContextType, EmailContextType, InstrumentContextType, InstrumentListContextType, NothingContextType, OrganizationContextType, PortfolioContextType, PositionContextType, NothingContext, Fdc3CustomContext, ValuationContext, ValuationContextType, TimeRangeContextType, TimeRangeContext, } from './PredefinedConfig/Common/Fdc3Context';
203
206
  export type { Fdc3IntentType, Fdc3StandardIntentType, Fdc3CustomIntentType, CompatibleContext, } from './PredefinedConfig/Common/Fdc3Intent';
204
207
  export type { Fdc3Options, GridDataContextMapping, ActionColumnDefaultConfiguration, ResolveContextDataContext, RaiseIntentConfig, BroadcastConfig, HandleFdc3IntentContext, HandleFdc3Context, Fdc3ButtonContext, Fdc3AdaptableButton, HandleFdc3IntentResolutionContext, UIControlConfig, Fdc3IntentOptions, Fdc3ContextOptions, RaiseIntentConfiguration, BroadcastConfiguration, FDC3ActionColumn, } from './AdaptableOptions/Fdc3Options';
205
- export type { CellAddress } from './PredefinedConfig/CellAddress';
206
- export type { CommentThread, AdaptableComment } from './PredefinedConfig/CommentState';
208
+ export type { CommentState, CommentThread, AdaptableComment } from './PredefinedConfig/CommentState';
207
209
  export type { UpgradeConfig } from '../agGrid';