@adaptabletools/adaptable 18.0.0-canary.12 → 18.0.0-canary.14
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 +1 -1
- package/base.css.map +1 -1
- package/index.css +1 -1
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
- package/src/AdaptableOptions/MenuOptions.d.ts +1 -53
- package/src/AdaptableOptions/MenuOptions.js +3 -3
- package/src/Api/AdaptableApi.d.ts +2 -2
- package/src/Api/ConfigApi.d.ts +2 -3
- package/src/Api/GridApi.d.ts +2 -1
- package/src/Api/Implementation/ActionColumnApiImpl.js +3 -6
- package/src/Api/Implementation/ConfigApiImpl.js +7 -7
- package/src/Api/Implementation/GridApiImpl.d.ts +2 -1
- package/src/Api/Implementation/GridApiImpl.js +8 -1
- package/src/Api/Implementation/NoteApiImpl.d.ts +2 -2
- package/src/Api/Implementation/NoteApiImpl.js +8 -8
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +0 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -8
- package/src/Api/Internal/ActionRowInternalApi.js +1 -1
- package/src/Api/Internal/AdaptableInternalApi.d.ts +4 -2
- package/src/Api/Internal/AdaptableInternalApi.js +14 -11
- package/src/Api/Internal/CalculatedColumnInternalApi.js +3 -2
- package/src/Api/Internal/Fdc3InternalApi.js +2 -2
- package/src/Api/Internal/FreeTextColumnInternalApi.js +3 -2
- package/src/Api/Internal/GridInternalApi.d.ts +2 -0
- package/src/Api/Internal/GridInternalApi.js +15 -0
- package/src/Api/NoteApi.d.ts +5 -5
- package/src/Api/OptionsApi.d.ts +2 -2
- package/src/Api/UserInterfaceApi.d.ts +0 -11
- package/src/PredefinedConfig/AdaptableState.d.ts +1 -1
- package/src/PredefinedConfig/CommentState.d.ts +16 -12
- package/src/PredefinedConfig/Common/RowSummary.d.ts +7 -1
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +25 -0
- package/src/PredefinedConfig/Common/TransposeConfig.js +1 -0
- package/src/PredefinedConfig/Common/Types.d.ts +4 -4
- package/src/PredefinedConfig/Common/Types.js +4 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/NoteState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -1
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +38 -0
- package/src/Redux/ActionsReducers/{NotesRedux.js → NoteRedux.js} +20 -20
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +1 -1
- package/src/Redux/Store/AdaptableStore.js +7 -7
- package/src/Strategy/CellSummaryModule.js +2 -1
- package/src/Strategy/{CommentsModule.d.ts → CommentModule.d.ts} +1 -5
- package/src/Strategy/{CommentsModule.js → CommentModule.js} +5 -6
- package/src/Strategy/LayoutModule.d.ts +1 -0
- package/src/Strategy/LayoutModule.js +17 -1
- package/src/Strategy/{NotesModule.d.ts → NoteModule.d.ts} +2 -1
- package/src/Strategy/{NotesModule.js → NoteModule.js} +7 -3
- package/src/Strategy/Utilities/getScopeViewItems.js +3 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +6 -6
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +15 -2
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -3
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +15 -0
- package/src/Utilities/ObjectFactory.d.ts +3 -3
- package/src/Utilities/ObjectFactory.js +4 -24
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +1 -0
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +12 -10
- package/src/Utilities/Services/CellPopupService.js +2 -2
- package/src/Utilities/Services/Interface/ISummaryService.d.ts +17 -0
- package/src/Utilities/Services/Interface/ISummaryService.js +12 -0
- package/src/Utilities/Services/ModuleService.js +4 -0
- package/src/Utilities/Services/QueryLanguageService.js +2 -2
- package/src/Utilities/Services/SummaryService.d.ts +5 -14
- package/src/Utilities/Services/SummaryService.js +0 -12
- package/src/Utilities/adaptableQlUtils.d.ts +2 -0
- package/src/Utilities/adaptableQlUtils.js +14 -0
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +1 -1
- package/src/View/Comments/CommentsEditor.js +1 -1
- package/src/View/Comments/CommentsPopup.js +8 -4
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +5 -5
- package/src/View/Components/ValueSelector/index.d.ts +1 -0
- package/src/View/Components/ValueSelector/index.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +0 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +3 -1
- package/src/View/Layout/TransposedPopup.js +19 -18
- package/src/View/Layout/Wizard/LayoutWizard.js +8 -0
- package/src/View/Layout/Wizard/sections/RowSummarySection.d.ts +8 -0
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +150 -0
- package/src/View/Note/NotePopup.d.ts +2 -0
- package/src/View/{Notes/NotesPopup.js → Note/NotePopup.js} +3 -3
- package/src/agGrid/AdaptableAgGrid.d.ts +2 -2
- package/src/agGrid/AdaptableAgGrid.js +7 -5
- package/src/agGrid/AgGridAdapter.d.ts +1 -0
- package/src/agGrid/AgGridAdapter.js +5 -0
- package/src/agGrid/AgGridColumnAdapter.js +3 -3
- package/src/agGrid/AgGridMenuAdapter.js +10 -6
- package/src/agGrid/defaultAdaptableOptions.js +0 -7
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +2 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +0 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +1 -14
- package/src/components/icons/note.js +2 -2
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +61 -11
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/parser.js +117 -1257
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +2 -1
- package/src/parser/src/types.d.ts +2 -2
- package/src/types.d.ts +5 -4
- package/tsconfig.esm.tsbuildinfo +1 -1
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +0 -38
- package/src/View/Notes/NotesPopup.d.ts +0 -2
- /package/src/Api/Internal/{NotesInternalApi.d.ts → NoteInternalApi.d.ts} +0 -0
- /package/src/Api/Internal/{NotesInternalApi.js → NoteInternalApi.js} +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.d.ts +0 -0
- /package/src/View/{Notes → Note}/NoteEditor.js +0 -0
|
@@ -382,11 +382,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
382
382
|
kind: string;
|
|
383
383
|
desc: string;
|
|
384
384
|
isOpt: boolean;
|
|
385
|
+
ref?: undefined;
|
|
385
386
|
} | {
|
|
386
387
|
name: string;
|
|
387
388
|
kind: string;
|
|
388
389
|
desc: string;
|
|
389
390
|
isOpt?: undefined;
|
|
391
|
+
ref?: undefined;
|
|
392
|
+
} | {
|
|
393
|
+
name: string;
|
|
394
|
+
kind: string;
|
|
395
|
+
desc: string;
|
|
396
|
+
isOpt: boolean;
|
|
397
|
+
ref: string;
|
|
390
398
|
})[];
|
|
391
399
|
};
|
|
392
400
|
AdaptableComparerFunction: {
|
|
@@ -1973,6 +1981,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1973
1981
|
isOpt: boolean;
|
|
1974
1982
|
}[];
|
|
1975
1983
|
};
|
|
1984
|
+
CommentThread: {
|
|
1985
|
+
name: string;
|
|
1986
|
+
kind: string;
|
|
1987
|
+
desc: string;
|
|
1988
|
+
props: ({
|
|
1989
|
+
name: string;
|
|
1990
|
+
kind: string;
|
|
1991
|
+
desc: string;
|
|
1992
|
+
isOpt?: undefined;
|
|
1993
|
+
ref?: undefined;
|
|
1994
|
+
} | {
|
|
1995
|
+
name: string;
|
|
1996
|
+
kind: string;
|
|
1997
|
+
desc: string;
|
|
1998
|
+
isOpt: boolean;
|
|
1999
|
+
ref: string;
|
|
2000
|
+
})[];
|
|
2001
|
+
};
|
|
1976
2002
|
CompatibleContext: {
|
|
1977
2003
|
name: string;
|
|
1978
2004
|
kind: string;
|
|
@@ -2894,11 +2920,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2894
2920
|
kind: string;
|
|
2895
2921
|
desc: string;
|
|
2896
2922
|
isOpt: boolean;
|
|
2923
|
+
ref?: undefined;
|
|
2897
2924
|
} | {
|
|
2898
2925
|
name: string;
|
|
2899
2926
|
kind: string;
|
|
2900
2927
|
desc: string;
|
|
2901
2928
|
isOpt?: undefined;
|
|
2929
|
+
ref?: undefined;
|
|
2930
|
+
} | {
|
|
2931
|
+
name: string;
|
|
2932
|
+
kind: string;
|
|
2933
|
+
desc: string;
|
|
2934
|
+
ref: string;
|
|
2935
|
+
isOpt?: undefined;
|
|
2902
2936
|
})[];
|
|
2903
2937
|
};
|
|
2904
2938
|
ExpressionFunction: {
|
|
@@ -3915,21 +3949,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3915
3949
|
name: string;
|
|
3916
3950
|
kind: string;
|
|
3917
3951
|
desc: string;
|
|
3918
|
-
props:
|
|
3919
|
-
name: string;
|
|
3920
|
-
kind: string;
|
|
3921
|
-
desc: string;
|
|
3922
|
-
isOpt: boolean;
|
|
3923
|
-
gridInfo?: undefined;
|
|
3924
|
-
defVal?: undefined;
|
|
3925
|
-
} | {
|
|
3952
|
+
props: {
|
|
3926
3953
|
name: string;
|
|
3927
3954
|
kind: string;
|
|
3928
3955
|
desc: string;
|
|
3929
3956
|
isOpt: boolean;
|
|
3930
|
-
|
|
3931
|
-
defVal: string;
|
|
3932
|
-
})[];
|
|
3957
|
+
}[];
|
|
3933
3958
|
};
|
|
3934
3959
|
MenuOrderContext: {
|
|
3935
3960
|
name: string;
|
|
@@ -4746,6 +4771,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4746
4771
|
name: string;
|
|
4747
4772
|
kind: string;
|
|
4748
4773
|
desc: string;
|
|
4774
|
+
props: ({
|
|
4775
|
+
name: string;
|
|
4776
|
+
kind: string;
|
|
4777
|
+
desc: string;
|
|
4778
|
+
isOpt?: undefined;
|
|
4779
|
+
ref?: undefined;
|
|
4780
|
+
} | {
|
|
4781
|
+
name: string;
|
|
4782
|
+
kind: string;
|
|
4783
|
+
desc: string;
|
|
4784
|
+
isOpt: boolean;
|
|
4785
|
+
ref: string;
|
|
4786
|
+
})[];
|
|
4749
4787
|
};
|
|
4750
4788
|
RowSummaryPosition: {
|
|
4751
4789
|
name: string;
|
|
@@ -5333,6 +5371,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5333
5371
|
kind: string;
|
|
5334
5372
|
desc: string;
|
|
5335
5373
|
};
|
|
5374
|
+
TransposeConfig: {
|
|
5375
|
+
name: string;
|
|
5376
|
+
kind: string;
|
|
5377
|
+
desc: string;
|
|
5378
|
+
props: {
|
|
5379
|
+
name: string;
|
|
5380
|
+
kind: string;
|
|
5381
|
+
desc: string;
|
|
5382
|
+
isOpt: boolean;
|
|
5383
|
+
defVal: string;
|
|
5384
|
+
}[];
|
|
5385
|
+
};
|
|
5336
5386
|
UIControlConfig: {
|
|
5337
5387
|
name: string;
|
|
5338
5388
|
kind: string;
|