@adaptabletools/adaptable-cjs 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.
- package/base.css +3 -0
- package/base.css.map +1 -1
- package/index.css +5 -0
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -5
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +4 -4
- package/src/AdaptableOptions/{CommentsOptions.d.ts → CommentOptions.d.ts} +5 -5
- package/src/AdaptableOptions/MenuOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.js +2 -6
- package/src/AdaptableOptions/{NotesOptions.d.ts → NoteOptions.d.ts} +1 -1
- package/src/Api/BulkUpdateApi.d.ts +0 -5
- package/src/Api/ColumnFilterApi.d.ts +5 -0
- package/src/Api/Implementation/ApiBase.js +1 -1
- package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +0 -1
- package/src/Api/Implementation/BulkUpdateApiImpl.js +0 -4
- package/src/Api/Implementation/ColumnFilterApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnFilterApiImpl.js +10 -0
- package/src/Api/Implementation/LayoutApiImpl.d.ts +4 -0
- package/src/Api/Implementation/LayoutApiImpl.js +14 -0
- package/src/Api/Implementation/NotesApiImpl.d.ts +2 -4
- package/src/Api/Implementation/NotesApiImpl.js +4 -8
- package/src/Api/Implementation/OptionsApiImpl.d.ts +1 -1
- package/src/Api/Implementation/OptionsApiImpl.js +2 -2
- package/src/Api/InteropioPluginApi.d.ts +2 -2
- package/src/Api/LayoutApi.d.ts +8 -0
- package/src/Api/OptionsApi.d.ts +1 -1
- package/src/PredefinedConfig/NotesState.d.ts +10 -20
- package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -1
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +3 -4
- package/src/Redux/ActionsReducers/NotesRedux.js +10 -8
- package/src/Strategy/ChartingModule.js +2 -1
- package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -1
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +5 -4
- package/src/Utilities/Helpers/Helper.d.ts +2 -0
- package/src/Utilities/Helpers/Helper.js +6 -1
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +3 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/Comments/CommentsPopup.js +12 -8
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +1 -1
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
- package/src/View/Components/Selectors/PermittedValuesSelector.js +1 -1
- package/src/View/Layout/TransposedPopup.d.ts +3 -0
- package/src/View/Layout/TransposedPopup.js +198 -0
- package/src/View/Notes/NotesPopup.js +8 -10
- package/src/View/Theme/ThemeSelector.js +2 -2
- package/src/agGrid/Adaptable.js +2 -2
- package/src/agGrid/agGridMenuHelper.js +3 -3
- package/src/components/Select/Select.d.ts +2 -0
- package/src/components/Select/Select.js +2 -2
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +30 -2
- package/src/metamodel/adaptable.metamodel.js +66 -32
- package/src/types.d.ts +5 -2
- package/tsconfig.cjs.tsbuildinfo +1 -1
- /package/src/AdaptableOptions/{CommentsOptions.js → CommentOptions.js} +0 -0
- /package/src/AdaptableOptions/{NotesOptions.js → NoteOptions.js} +0 -0
|
@@ -1038,16 +1038,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1038
1038
|
"kind": "I",
|
|
1039
1039
|
"desc": "Note that can be applied to a Cell in AdapTable",
|
|
1040
1040
|
"props": [
|
|
1041
|
-
{
|
|
1042
|
-
"name": "AdaptableId",
|
|
1043
|
-
"kind": "s",
|
|
1044
|
-
"desc": "Id of this AdapTable instance"
|
|
1045
|
-
},
|
|
1046
|
-
{
|
|
1047
|
-
"name": "Author",
|
|
1048
|
-
"kind": "u",
|
|
1049
|
-
"desc": "Author of the Note"
|
|
1050
|
-
},
|
|
1051
1041
|
{
|
|
1052
1042
|
"name": "ColumnId",
|
|
1053
1043
|
"kind": "s",
|
|
@@ -1058,15 +1048,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1058
1048
|
"kind": "u",
|
|
1059
1049
|
"desc": "Value in Grid's Primary Key Column"
|
|
1060
1050
|
},
|
|
1051
|
+
{
|
|
1052
|
+
"name": "Text",
|
|
1053
|
+
"kind": "s",
|
|
1054
|
+
"desc": "Value of the Note"
|
|
1055
|
+
},
|
|
1061
1056
|
{
|
|
1062
1057
|
"name": "Timestamp",
|
|
1063
1058
|
"kind": "n",
|
|
1064
1059
|
"desc": "When Note was made"
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
"name": "Value",
|
|
1068
|
-
"kind": "s",
|
|
1069
|
-
"desc": "Value of the Note"
|
|
1070
1060
|
}
|
|
1071
1061
|
]
|
|
1072
1062
|
},
|
|
@@ -1239,7 +1229,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1239
1229
|
"ref": "ColumnOptions"
|
|
1240
1230
|
},
|
|
1241
1231
|
{
|
|
1242
|
-
"name": "
|
|
1232
|
+
"name": "commentOptions",
|
|
1243
1233
|
"kind": "u",
|
|
1244
1234
|
"desc": "Options for managing AdapTable Comments",
|
|
1245
1235
|
"isOpt": true
|
|
@@ -1379,11 +1369,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1379
1369
|
"gridInfo": "container"
|
|
1380
1370
|
},
|
|
1381
1371
|
{
|
|
1382
|
-
"name": "
|
|
1372
|
+
"name": "noteOptions",
|
|
1383
1373
|
"kind": "R",
|
|
1384
|
-
"desc": "Options for managing
|
|
1374
|
+
"desc": "Options for managing Notes",
|
|
1385
1375
|
"isOpt": true,
|
|
1386
|
-
"ref": "
|
|
1376
|
+
"ref": "unknown"
|
|
1387
1377
|
},
|
|
1388
1378
|
{
|
|
1389
1379
|
"name": "notificationsOptions",
|
|
@@ -3298,6 +3288,36 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3298
3288
|
}
|
|
3299
3289
|
]
|
|
3300
3290
|
},
|
|
3291
|
+
"CommentableCellContext": {
|
|
3292
|
+
"name": "CommentableCellContext",
|
|
3293
|
+
"kind": "I",
|
|
3294
|
+
"desc": "Context used when determining if a Comment can be added to a Cell"
|
|
3295
|
+
},
|
|
3296
|
+
"CommentsOptions": {
|
|
3297
|
+
"name": "CommentsOptions",
|
|
3298
|
+
"kind": "I",
|
|
3299
|
+
"desc": "Options for managing Comments and Comment Threads in AdapTable",
|
|
3300
|
+
"props": [
|
|
3301
|
+
{
|
|
3302
|
+
"name": "isCellCommentable",
|
|
3303
|
+
"kind": "f",
|
|
3304
|
+
"desc": "Whether a cell can be noted on TODO: check if it works",
|
|
3305
|
+
"isOpt": true
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
"name": "loadCommentThreads",
|
|
3309
|
+
"kind": "f",
|
|
3310
|
+
"desc": "Called to load initial comments",
|
|
3311
|
+
"isOpt": true
|
|
3312
|
+
},
|
|
3313
|
+
{
|
|
3314
|
+
"name": "persistCommentThreads",
|
|
3315
|
+
"kind": "f",
|
|
3316
|
+
"desc": "Called when comments change",
|
|
3317
|
+
"isOpt": true
|
|
3318
|
+
}
|
|
3319
|
+
]
|
|
3320
|
+
},
|
|
3301
3321
|
"CompatibleContext": {
|
|
3302
3322
|
"name": "CompatibleContext",
|
|
3303
3323
|
"kind": "A",
|
|
@@ -4695,7 +4715,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4695
4715
|
"name": "report",
|
|
4696
4716
|
"kind": "R",
|
|
4697
4717
|
"desc": "The exported report",
|
|
4698
|
-
"ref": "
|
|
4718
|
+
"ref": "Report"
|
|
4699
4719
|
},
|
|
4700
4720
|
{
|
|
4701
4721
|
"name": "reportData",
|
|
@@ -6094,6 +6114,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6094
6114
|
"kind": "A",
|
|
6095
6115
|
"desc": "Type for FDC3 Instrument List Context"
|
|
6096
6116
|
},
|
|
6117
|
+
"InteropioPluginOptions": {
|
|
6118
|
+
"name": "InteropioPluginOptions",
|
|
6119
|
+
"kind": "I",
|
|
6120
|
+
"desc": "Options for using the Interop plugin",
|
|
6121
|
+
"props": [
|
|
6122
|
+
{
|
|
6123
|
+
"name": "showAdaptableAlertsAsNotifications",
|
|
6124
|
+
"kind": "b",
|
|
6125
|
+
"desc": "Converts AdapTable Alerts configured to display in popup as Interop Notifications",
|
|
6126
|
+
"isOpt": true,
|
|
6127
|
+
"defVal": "true"
|
|
6128
|
+
}
|
|
6129
|
+
]
|
|
6130
|
+
},
|
|
6097
6131
|
"IPushPullDomain": {
|
|
6098
6132
|
"name": "IPushPullDomain",
|
|
6099
6133
|
"kind": "I",
|
|
@@ -6711,8 +6745,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6711
6745
|
}
|
|
6712
6746
|
]
|
|
6713
6747
|
},
|
|
6714
|
-
"
|
|
6715
|
-
"name": "
|
|
6748
|
+
"NotesState": {
|
|
6749
|
+
"name": "NotesState",
|
|
6716
6750
|
"kind": "I",
|
|
6717
6751
|
"desc": "Predefined Configuration for Notes Module",
|
|
6718
6752
|
"props": [
|
|
@@ -7280,9 +7314,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7280
7314
|
{
|
|
7281
7315
|
"name": "Notes",
|
|
7282
7316
|
"kind": "R",
|
|
7283
|
-
"desc": "Collection of
|
|
7317
|
+
"desc": "Collection of personal Notes that are edited at Cell level",
|
|
7284
7318
|
"isOpt": true,
|
|
7285
|
-
"ref": "
|
|
7319
|
+
"ref": "NotesState"
|
|
7286
7320
|
},
|
|
7287
7321
|
{
|
|
7288
7322
|
"name": "PlusMinus",
|
|
@@ -7468,7 +7502,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7468
7502
|
"name": "report",
|
|
7469
7503
|
"kind": "R",
|
|
7470
7504
|
"desc": "Report being exported",
|
|
7471
|
-
"ref": "
|
|
7505
|
+
"ref": "Report"
|
|
7472
7506
|
}
|
|
7473
7507
|
]
|
|
7474
7508
|
},
|
|
@@ -7760,8 +7794,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7760
7794
|
}
|
|
7761
7795
|
]
|
|
7762
7796
|
},
|
|
7763
|
-
"
|
|
7764
|
-
"name": "
|
|
7797
|
+
"Report": {
|
|
7798
|
+
"name": "Report",
|
|
7765
7799
|
"kind": "I",
|
|
7766
7800
|
"desc": "A Report which can export data from AdapTable",
|
|
7767
7801
|
"props": [
|
|
@@ -7812,7 +7846,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7812
7846
|
"name": "report",
|
|
7813
7847
|
"kind": "R",
|
|
7814
7848
|
"desc": "Definition of Report being Run",
|
|
7815
|
-
"ref": "
|
|
7849
|
+
"ref": "Report"
|
|
7816
7850
|
},
|
|
7817
7851
|
{
|
|
7818
7852
|
"name": "reportData",
|
|
@@ -9231,7 +9265,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9231
9265
|
"ValuesFilterOptions": {
|
|
9232
9266
|
"name": "ValuesFilterOptions",
|
|
9233
9267
|
"kind": "I",
|
|
9234
|
-
"desc": "Options for managing the Values (IN)
|
|
9268
|
+
"desc": "Options for managing the Values (IN) Filter in Filter Bar and Filter Form",
|
|
9235
9269
|
"props": [
|
|
9236
9270
|
{
|
|
9237
9271
|
"name": "filterValuesUsingTime",
|
|
@@ -9252,12 +9286,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9252
9286
|
},
|
|
9253
9287
|
{
|
|
9254
9288
|
"name": "maxFilterValuesToDisplay",
|
|
9255
|
-
"kind": "
|
|
9256
|
-
"desc": "Distinct column items to display in Filter
|
|
9289
|
+
"kind": "u",
|
|
9290
|
+
"desc": "Distinct column items to display in Values Filter; useful with large datasource (though AdapTable offers virtualisation)",
|
|
9257
9291
|
"isOpt": true,
|
|
9258
9292
|
"gridInfo": "item",
|
|
9259
9293
|
"noCode": "item",
|
|
9260
|
-
"defVal": "
|
|
9294
|
+
"defVal": "undefined"
|
|
9261
9295
|
},
|
|
9262
9296
|
{
|
|
9263
9297
|
"name": "showDistinctFilteredValuesOnly",
|
package/src/types.d.ts
CHANGED
|
@@ -22,12 +22,14 @@ 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 { NotesOptions, NotableCellContext } from './AdaptableOptions/
|
|
25
|
+
export type { NoteOptions as NotesOptions, NotableCellContext } from './AdaptableOptions/NoteOptions';
|
|
26
|
+
export type { CommentsOptions, CommentableCellContext, CommentLoadContext as CommentsLoadContext } from './AdaptableOptions/CommentOptions';
|
|
26
27
|
export type { GroupingOptions, BalancedGroupsKeyContext, } from './AdaptableOptions/GroupingOptions';
|
|
27
28
|
export type { IPushPullPluginOptions } from './AdaptableOptions/IPushPullPluginOptions';
|
|
28
29
|
export type { LayoutOptions, LayoutViewOptions, LayoutTagOptions, LayoutAvailableContext, AutoGenerateTagsForLayoutsContext, LayoutAssociatedObject, PivotPreviewColumnsContext, } from './AdaptableOptions/LayoutOptions';
|
|
29
30
|
export type { ChartingOptions, ChartContainer, ExternalChartingContext, ExternalChartingOptions, } from './AdaptableOptions/ChartingOptions';
|
|
30
31
|
export type { OpenFinPluginOptions } from './AdaptableOptions/OpenFinPluginOptions';
|
|
32
|
+
export type { InteropioPluginOptions } from './AdaptableOptions/InteropioPluginOptions';
|
|
31
33
|
export type { MasterDetailPluginOptions, DetailInitContext, } from './AdaptableOptions/MasterDetailPluginOptions';
|
|
32
34
|
export type { DateInputOptions } from './AdaptableOptions/DateInputOptions';
|
|
33
35
|
export type { ColumnFilterOptions, QuickFilterOptions, FilterFormOptions, ValuesFilterOptions, ColumnFilterContext, } from './AdaptableOptions/ColumnFilterOptions';
|
|
@@ -40,7 +42,7 @@ export type { AggregationColumns, WeightedAverageAggregation, } from './Predefin
|
|
|
40
42
|
export type { AccessLevel, Entitlement } from './PredefinedConfig/Common/Entitlement';
|
|
41
43
|
export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterActionOnDataChange';
|
|
42
44
|
export type { ConfigState } from './PredefinedConfig/ConfigState';
|
|
43
|
-
export type { AdaptableNote, NotesState
|
|
45
|
+
export type { AdaptableNote, NotesState, AdaptableNotes, } from './PredefinedConfig/NotesState';
|
|
44
46
|
export type { TeamSharingOptions, SharedEntitiesContext, } from './AdaptableOptions/TeamSharingOptions';
|
|
45
47
|
export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
|
|
46
48
|
export type { UserInterfaceOptions, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, ObjectTagsContext, CustomIcon, } from './AdaptableOptions/UserInterfaceOptions';
|
|
@@ -81,6 +83,7 @@ export type { FreeTextColumnApi } from './Api/FreeTextColumnApi';
|
|
|
81
83
|
export type { GridApi } from './Api/GridApi';
|
|
82
84
|
export type { IPushPullApi } from './Api/IPushPullApi';
|
|
83
85
|
export type { LayoutApi } from './Api/LayoutApi';
|
|
86
|
+
export type { InteropioPluginApi } from './Api/InteropioPluginApi';
|
|
84
87
|
export type { OpenFinApi } from './Api/OpenFinApi';
|
|
85
88
|
export type { OptionsApi } from './Api/OptionsApi';
|
|
86
89
|
export type { PluginsApi } from './Api/PluginsApi';
|