@sapui5/ts-types-esm 1.130.1 → 1.131.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.
- package/package.json +1 -1
- package/types/index.d.ts +3 -3
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +47 -9
- package/types/sap.f.d.ts +238 -12
- package/types/sap.fe.base.d.ts +24 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +10 -7
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +203 -145
- package/types/sap.fe.navigation.d.ts +3 -3
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +96 -9
- package/types/sap.insights.d.ts +1 -1
- package/types/{mobile-1.130.0-esm-d.ts → sap.m.d.ts} +355 -25
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +143 -55
- package/types/{core-1.130.0-esm-d.ts → sap.ui.core.d.ts} +295 -300
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +6 -6
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +2 -2
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +142 -2
- package/types/sap.ui.layout.d.ts +18 -21
- package/types/{mdc-1.130.0-esm-d.ts → sap.ui.mdc.d.ts} +220 -103
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +7 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +263 -9
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +28 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +7 -4
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.sac.df.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.131.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/comp/library" {
|
|
4
4
|
/**
|
|
@@ -911,7 +911,10 @@ declare module "sap/ui/comp/config/ControlConfigurationBase" {
|
|
|
911
911
|
}
|
|
912
912
|
|
|
913
913
|
declare module "sap/ui/comp/config/FilterControlConfiguration" {
|
|
914
|
-
import {
|
|
914
|
+
import {
|
|
915
|
+
default as ControlConfigurationBase,
|
|
916
|
+
$ControlConfigurationBaseSettings,
|
|
917
|
+
} from "sap/ui/comp/config/ControlConfigurationBase";
|
|
915
918
|
|
|
916
919
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
917
920
|
|
|
@@ -921,13 +924,16 @@ declare module "sap/ui/comp/config/FilterControlConfiguration" {
|
|
|
921
924
|
*
|
|
922
925
|
* @since 1.126.0
|
|
923
926
|
*/
|
|
924
|
-
export default class FilterControlConfiguration extends
|
|
927
|
+
export default class FilterControlConfiguration extends ControlConfigurationBase {
|
|
925
928
|
/**
|
|
926
929
|
* Constructor for a new `FilterControlConfiguration`
|
|
927
930
|
*
|
|
928
931
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
929
932
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
930
933
|
* of the syntax of the settings object.
|
|
934
|
+
*
|
|
935
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.comp.config.ControlConfigurationBase#constructor sap.ui.comp.config.ControlConfigurationBase }
|
|
936
|
+
* can be used.
|
|
931
937
|
*/
|
|
932
938
|
constructor(
|
|
933
939
|
/**
|
|
@@ -941,6 +947,9 @@ declare module "sap/ui/comp/config/FilterControlConfiguration" {
|
|
|
941
947
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
942
948
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
943
949
|
* of the syntax of the settings object.
|
|
950
|
+
*
|
|
951
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.comp.config.ControlConfigurationBase#constructor sap.ui.comp.config.ControlConfigurationBase }
|
|
952
|
+
* can be used.
|
|
944
953
|
*/
|
|
945
954
|
constructor(
|
|
946
955
|
/**
|
|
@@ -957,7 +966,7 @@ declare module "sap/ui/comp/config/FilterControlConfiguration" {
|
|
|
957
966
|
* Creates a new subclass of class sap.ui.comp.config.FilterControlConfiguration with name `sClassName`
|
|
958
967
|
* and enriches it with the information contained in `oClassInfo`.
|
|
959
968
|
*
|
|
960
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.
|
|
969
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.comp.config.ControlConfigurationBase.extend}.
|
|
961
970
|
*
|
|
962
971
|
*
|
|
963
972
|
* @returns Created class / constructor function
|
|
@@ -989,7 +998,7 @@ declare module "sap/ui/comp/config/FilterControlConfiguration" {
|
|
|
989
998
|
* Describes the settings that can be provided to the FilterControlConfiguration constructor.
|
|
990
999
|
*/
|
|
991
1000
|
export interface $FilterControlConfigurationSettings
|
|
992
|
-
extends $
|
|
1001
|
+
extends $ControlConfigurationBaseSettings {}
|
|
993
1002
|
}
|
|
994
1003
|
|
|
995
1004
|
declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
@@ -10582,7 +10591,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
10582
10591
|
/**
|
|
10583
10592
|
* Adds some selectionDetailsAction to the aggregation {@link #getSelectionDetailsActions selectionDetailsActions}.
|
|
10584
10593
|
*
|
|
10585
|
-
* @
|
|
10594
|
+
* @since 1.48
|
|
10586
10595
|
*
|
|
10587
10596
|
* @returns Reference to `this` in order to allow method chaining
|
|
10588
10597
|
*/
|
|
@@ -10595,7 +10604,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
10595
10604
|
/**
|
|
10596
10605
|
* Adds some selectionDetailsActionGroup to the aggregation {@link #getSelectionDetailsActionGroups selectionDetailsActionGroups}.
|
|
10597
10606
|
*
|
|
10598
|
-
* @
|
|
10607
|
+
* @since 1.48
|
|
10599
10608
|
*
|
|
10600
10609
|
* @returns Reference to `this` in order to allow method chaining
|
|
10601
10610
|
*/
|
|
@@ -10608,7 +10617,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
10608
10617
|
/**
|
|
10609
10618
|
* Adds some selectionDetailsItemAction to the aggregation {@link #getSelectionDetailsItemActions selectionDetailsItemActions}.
|
|
10610
10619
|
*
|
|
10611
|
-
* @
|
|
10620
|
+
* @since 1.48
|
|
10612
10621
|
*
|
|
10613
10622
|
* @returns Reference to `this` in order to allow method chaining
|
|
10614
10623
|
*/
|
|
@@ -11055,7 +11064,6 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11055
11064
|
* This event is fired when any action in the selection details popover is pressed.
|
|
11056
11065
|
*
|
|
11057
11066
|
* @since 1.48
|
|
11058
|
-
* @experimental (since 1.48)
|
|
11059
11067
|
*
|
|
11060
11068
|
* @returns Reference to `this` in order to allow method chaining
|
|
11061
11069
|
*/
|
|
@@ -11084,7 +11092,6 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11084
11092
|
* This event is fired when any action in the selection details popover is pressed.
|
|
11085
11093
|
*
|
|
11086
11094
|
* @since 1.48
|
|
11087
|
-
* @experimental (since 1.48)
|
|
11088
11095
|
*
|
|
11089
11096
|
* @returns Reference to `this` in order to allow method chaining
|
|
11090
11097
|
*/
|
|
@@ -11199,7 +11206,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11199
11206
|
/**
|
|
11200
11207
|
* Destroys all the selectionDetailsActionGroups in the aggregation {@link #getSelectionDetailsActionGroups selectionDetailsActionGroups}.
|
|
11201
11208
|
*
|
|
11202
|
-
* @
|
|
11209
|
+
* @since 1.48
|
|
11203
11210
|
*
|
|
11204
11211
|
* @returns Reference to `this` in order to allow method chaining
|
|
11205
11212
|
*/
|
|
@@ -11207,7 +11214,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11207
11214
|
/**
|
|
11208
11215
|
* Destroys all the selectionDetailsActions in the aggregation {@link #getSelectionDetailsActions selectionDetailsActions}.
|
|
11209
11216
|
*
|
|
11210
|
-
* @
|
|
11217
|
+
* @since 1.48
|
|
11211
11218
|
*
|
|
11212
11219
|
* @returns Reference to `this` in order to allow method chaining
|
|
11213
11220
|
*/
|
|
@@ -11215,7 +11222,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11215
11222
|
/**
|
|
11216
11223
|
* Destroys all the selectionDetailsItemActions in the aggregation {@link #getSelectionDetailsItemActions selectionDetailsItemActions}.
|
|
11217
11224
|
*
|
|
11218
|
-
* @
|
|
11225
|
+
* @since 1.48
|
|
11219
11226
|
*
|
|
11220
11227
|
* @returns Reference to `this` in order to allow method chaining
|
|
11221
11228
|
*/
|
|
@@ -11413,7 +11420,6 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11413
11420
|
* The passed function and listener object must match the ones used for event registration.
|
|
11414
11421
|
*
|
|
11415
11422
|
* @since 1.48
|
|
11416
|
-
* @experimental (since 1.48)
|
|
11417
11423
|
*
|
|
11418
11424
|
* @returns Reference to `this` in order to allow method chaining
|
|
11419
11425
|
*/
|
|
@@ -11604,7 +11610,6 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11604
11610
|
* Fires event {@link #event:selectionDetailsActionPress selectionDetailsActionPress} to attached listeners.
|
|
11605
11611
|
*
|
|
11606
11612
|
* @since 1.48
|
|
11607
|
-
* @experimental (since 1.48)
|
|
11608
11613
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
11609
11614
|
*
|
|
11610
11615
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -11862,7 +11867,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11862
11867
|
*
|
|
11863
11868
|
* Actions on group level which can be specified for the selection details popover.
|
|
11864
11869
|
*
|
|
11865
|
-
* @
|
|
11870
|
+
* @since 1.48
|
|
11866
11871
|
*/
|
|
11867
11872
|
getSelectionDetailsActionGroups(): Item[];
|
|
11868
11873
|
/**
|
|
@@ -11870,7 +11875,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11870
11875
|
*
|
|
11871
11876
|
* Actions on footer level which can be specified for the selection details popover.
|
|
11872
11877
|
*
|
|
11873
|
-
* @
|
|
11878
|
+
* @since 1.48
|
|
11874
11879
|
*/
|
|
11875
11880
|
getSelectionDetailsActions(): Item[];
|
|
11876
11881
|
/**
|
|
@@ -11878,7 +11883,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
11878
11883
|
*
|
|
11879
11884
|
* Actions on item level which can be specified for the selection details popover.
|
|
11880
11885
|
*
|
|
11881
|
-
* @
|
|
11886
|
+
* @since 1.48
|
|
11882
11887
|
*/
|
|
11883
11888
|
getSelectionDetailsItemActions(): Item[];
|
|
11884
11889
|
/**
|
|
@@ -12176,7 +12181,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12176
12181
|
* Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getSelectionDetailsActions selectionDetailsActions}.
|
|
12177
12182
|
* and returns its index if found or -1 otherwise.
|
|
12178
12183
|
*
|
|
12179
|
-
* @
|
|
12184
|
+
* @since 1.48
|
|
12180
12185
|
*
|
|
12181
12186
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
12182
12187
|
*/
|
|
@@ -12190,7 +12195,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12190
12195
|
* Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getSelectionDetailsActionGroups selectionDetailsActionGroups}.
|
|
12191
12196
|
* and returns its index if found or -1 otherwise.
|
|
12192
12197
|
*
|
|
12193
|
-
* @
|
|
12198
|
+
* @since 1.48
|
|
12194
12199
|
*
|
|
12195
12200
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
12196
12201
|
*/
|
|
@@ -12204,7 +12209,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12204
12209
|
* Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getSelectionDetailsItemActions selectionDetailsItemActions}.
|
|
12205
12210
|
* and returns its index if found or -1 otherwise.
|
|
12206
12211
|
*
|
|
12207
|
-
* @
|
|
12212
|
+
* @since 1.48
|
|
12208
12213
|
*
|
|
12209
12214
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
12210
12215
|
*/
|
|
@@ -12217,7 +12222,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12217
12222
|
/**
|
|
12218
12223
|
* Inserts a selectionDetailsAction into the aggregation {@link #getSelectionDetailsActions selectionDetailsActions}.
|
|
12219
12224
|
*
|
|
12220
|
-
* @
|
|
12225
|
+
* @since 1.48
|
|
12221
12226
|
*
|
|
12222
12227
|
* @returns Reference to `this` in order to allow method chaining
|
|
12223
12228
|
*/
|
|
@@ -12236,7 +12241,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12236
12241
|
/**
|
|
12237
12242
|
* Inserts a selectionDetailsActionGroup into the aggregation {@link #getSelectionDetailsActionGroups selectionDetailsActionGroups}.
|
|
12238
12243
|
*
|
|
12239
|
-
* @
|
|
12244
|
+
* @since 1.48
|
|
12240
12245
|
*
|
|
12241
12246
|
* @returns Reference to `this` in order to allow method chaining
|
|
12242
12247
|
*/
|
|
@@ -12255,7 +12260,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12255
12260
|
/**
|
|
12256
12261
|
* Inserts a selectionDetailsItemAction into the aggregation {@link #getSelectionDetailsItemActions selectionDetailsItemActions}.
|
|
12257
12262
|
*
|
|
12258
|
-
* @
|
|
12263
|
+
* @since 1.48
|
|
12259
12264
|
*
|
|
12260
12265
|
* @returns Reference to `this` in order to allow method chaining
|
|
12261
12266
|
*/
|
|
@@ -12290,7 +12295,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12290
12295
|
*
|
|
12291
12296
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
12292
12297
|
*
|
|
12293
|
-
* @
|
|
12298
|
+
* @since 1.48
|
|
12294
12299
|
*
|
|
12295
12300
|
* @returns An array of the removed elements (might be empty)
|
|
12296
12301
|
*/
|
|
@@ -12300,7 +12305,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12300
12305
|
*
|
|
12301
12306
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
12302
12307
|
*
|
|
12303
|
-
* @
|
|
12308
|
+
* @since 1.48
|
|
12304
12309
|
*
|
|
12305
12310
|
* @returns An array of the removed elements (might be empty)
|
|
12306
12311
|
*/
|
|
@@ -12310,7 +12315,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12310
12315
|
*
|
|
12311
12316
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
12312
12317
|
*
|
|
12313
|
-
* @
|
|
12318
|
+
* @since 1.48
|
|
12314
12319
|
*
|
|
12315
12320
|
* @returns An array of the removed elements (might be empty)
|
|
12316
12321
|
*/
|
|
@@ -12318,7 +12323,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12318
12323
|
/**
|
|
12319
12324
|
* Removes a selectionDetailsAction from the aggregation {@link #getSelectionDetailsActions selectionDetailsActions}.
|
|
12320
12325
|
*
|
|
12321
|
-
* @
|
|
12326
|
+
* @since 1.48
|
|
12322
12327
|
*
|
|
12323
12328
|
* @returns The removed selectionDetailsAction or `null`
|
|
12324
12329
|
*/
|
|
@@ -12331,7 +12336,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12331
12336
|
/**
|
|
12332
12337
|
* Removes a selectionDetailsActionGroup from the aggregation {@link #getSelectionDetailsActionGroups selectionDetailsActionGroups}.
|
|
12333
12338
|
*
|
|
12334
|
-
* @
|
|
12339
|
+
* @since 1.48
|
|
12335
12340
|
*
|
|
12336
12341
|
* @returns The removed selectionDetailsActionGroup or `null`
|
|
12337
12342
|
*/
|
|
@@ -12344,7 +12349,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12344
12349
|
/**
|
|
12345
12350
|
* Removes a selectionDetailsItemAction from the aggregation {@link #getSelectionDetailsItemActions selectionDetailsItemActions}.
|
|
12346
12351
|
*
|
|
12347
|
-
* @
|
|
12352
|
+
* @since 1.48
|
|
12348
12353
|
*
|
|
12349
12354
|
* @returns The removed selectionDetailsItemAction or `null`
|
|
12350
12355
|
*/
|
|
@@ -12914,15 +12919,97 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12914
12919
|
/**
|
|
12915
12920
|
* Information about all measures and dimensions of the chart
|
|
12916
12921
|
*/
|
|
12917
|
-
dimeasure:
|
|
12922
|
+
dimeasure: Dimeasure;
|
|
12918
12923
|
/**
|
|
12919
12924
|
* Information about the current filters applied to the chart
|
|
12920
12925
|
*/
|
|
12921
|
-
filter?:
|
|
12926
|
+
filter?: Filter;
|
|
12922
12927
|
/**
|
|
12923
12928
|
* Information about the current sorters applied to the chart
|
|
12924
12929
|
*/
|
|
12925
|
-
sort?:
|
|
12930
|
+
sort?: Sort;
|
|
12931
|
+
};
|
|
12932
|
+
|
|
12933
|
+
export type Dimeasure = {
|
|
12934
|
+
/**
|
|
12935
|
+
* Internal key of the chart type stored in the variant
|
|
12936
|
+
*/
|
|
12937
|
+
chartTypeKey?: string;
|
|
12938
|
+
/**
|
|
12939
|
+
* Representation of all dimension and measures in the chart and their current state
|
|
12940
|
+
*/
|
|
12941
|
+
dimeasureItems: DimeasureItem[];
|
|
12942
|
+
};
|
|
12943
|
+
|
|
12944
|
+
export type DimeasureItem = {
|
|
12945
|
+
/**
|
|
12946
|
+
* Aggregation role of the `DimeasureItem`, which can be either a `Dimension` or a `Measure`
|
|
12947
|
+
*/
|
|
12948
|
+
aggregationRole: string;
|
|
12949
|
+
/**
|
|
12950
|
+
* Name of the property this `DimeasureItem` refers to in the metadata
|
|
12951
|
+
*/
|
|
12952
|
+
columnKey: string;
|
|
12953
|
+
/**
|
|
12954
|
+
* Position of the dimension/name in the chart's drill stack
|
|
12955
|
+
*/
|
|
12956
|
+
index: int;
|
|
12957
|
+
/**
|
|
12958
|
+
* The chart role of the dimension or measure
|
|
12959
|
+
*/
|
|
12960
|
+
role: string;
|
|
12961
|
+
/**
|
|
12962
|
+
* Determines whether the dimension or measure is currently visualized in the chart
|
|
12963
|
+
*/
|
|
12964
|
+
visible: boolean;
|
|
12965
|
+
};
|
|
12966
|
+
|
|
12967
|
+
export type Filter = {
|
|
12968
|
+
/**
|
|
12969
|
+
* Representation of all current filters of the chart
|
|
12970
|
+
*/
|
|
12971
|
+
filterItems: FilterItem[];
|
|
12972
|
+
};
|
|
12973
|
+
|
|
12974
|
+
export type FilterItem = {
|
|
12975
|
+
/**
|
|
12976
|
+
* Name of the property this `DimeasureItem` refers to in the metadata
|
|
12977
|
+
*/
|
|
12978
|
+
columnKey: string;
|
|
12979
|
+
/**
|
|
12980
|
+
* Determines whether this is an exclude filter
|
|
12981
|
+
*/
|
|
12982
|
+
exclude: boolean;
|
|
12983
|
+
/**
|
|
12984
|
+
* Filter operation used for this filter
|
|
12985
|
+
*/
|
|
12986
|
+
operation: string;
|
|
12987
|
+
/**
|
|
12988
|
+
* Value 1 for the filter operation
|
|
12989
|
+
*/
|
|
12990
|
+
value1: any;
|
|
12991
|
+
/**
|
|
12992
|
+
* Value 2 for the filter operation
|
|
12993
|
+
*/
|
|
12994
|
+
value2?: any;
|
|
12995
|
+
};
|
|
12996
|
+
|
|
12997
|
+
export type Sort = {
|
|
12998
|
+
/**
|
|
12999
|
+
* Representation of all current sorters of the chart
|
|
13000
|
+
*/
|
|
13001
|
+
sortItems: SortItem[];
|
|
13002
|
+
};
|
|
13003
|
+
|
|
13004
|
+
export type SortItem = {
|
|
13005
|
+
/**
|
|
13006
|
+
* Name of the property this `DimeasureItem` refers to in the metadata
|
|
13007
|
+
*/
|
|
13008
|
+
columnKey: string;
|
|
13009
|
+
/**
|
|
13010
|
+
* Sort operation, which can be either `Ascending` or `Descending`
|
|
13011
|
+
*/
|
|
13012
|
+
operation: string;
|
|
12926
13013
|
};
|
|
12927
13014
|
|
|
12928
13015
|
/**
|
|
@@ -13239,7 +13326,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
13239
13326
|
/**
|
|
13240
13327
|
* Actions on item level which can be specified for the selection details popover.
|
|
13241
13328
|
*
|
|
13242
|
-
* @
|
|
13329
|
+
* @since 1.48
|
|
13243
13330
|
*/
|
|
13244
13331
|
selectionDetailsItemActions?:
|
|
13245
13332
|
| Item[]
|
|
@@ -13250,7 +13337,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
13250
13337
|
/**
|
|
13251
13338
|
* Actions on footer level which can be specified for the selection details popover.
|
|
13252
13339
|
*
|
|
13253
|
-
* @
|
|
13340
|
+
* @since 1.48
|
|
13254
13341
|
*/
|
|
13255
13342
|
selectionDetailsActions?:
|
|
13256
13343
|
| Item[]
|
|
@@ -13261,7 +13348,7 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
13261
13348
|
/**
|
|
13262
13349
|
* Actions on group level which can be specified for the selection details popover.
|
|
13263
13350
|
*
|
|
13264
|
-
* @
|
|
13351
|
+
* @since 1.48
|
|
13265
13352
|
*/
|
|
13266
13353
|
selectionDetailsActionGroups?:
|
|
13267
13354
|
| Item[]
|
|
@@ -13339,7 +13426,6 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
13339
13426
|
* This event is fired when any action in the selection details popover is pressed.
|
|
13340
13427
|
*
|
|
13341
13428
|
* @since 1.48
|
|
13342
|
-
* @experimental (since 1.48)
|
|
13343
13429
|
*/
|
|
13344
13430
|
selectionDetailsActionPress?: (
|
|
13345
13431
|
oEvent: SmartChart$SelectionDetailsActionPressEvent
|
|
@@ -13518,8 +13604,6 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
13518
13604
|
|
|
13519
13605
|
/**
|
|
13520
13606
|
* Parameters of the SmartChart#selectionDetailsActionPress event.
|
|
13521
|
-
*
|
|
13522
|
-
* @experimental (since 1.48)
|
|
13523
13607
|
*/
|
|
13524
13608
|
export interface SmartChart$SelectionDetailsActionPressEventParameters {
|
|
13525
13609
|
/**
|
|
@@ -13545,8 +13629,6 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
13545
13629
|
|
|
13546
13630
|
/**
|
|
13547
13631
|
* Event object of the SmartChart#selectionDetailsActionPress event.
|
|
13548
|
-
*
|
|
13549
|
-
* @experimental (since 1.48)
|
|
13550
13632
|
*/
|
|
13551
13633
|
export type SmartChart$SelectionDetailsActionPressEvent = Event<
|
|
13552
13634
|
SmartChart$SelectionDetailsActionPressEventParameters,
|
|
@@ -20312,6 +20394,7 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBar" {
|
|
|
20312
20394
|
* **Note:** When the `SmartFilterBar` control is used with a {@link sap.ui.comp.smarttable.SmartTable }
|
|
20313
20395
|
* control the parameters are handled automatically. Therefore, this must only be enabled for OData service
|
|
20314
20396
|
* entities that support basic search.
|
|
20397
|
+
* **Note:** basic search field is restricted to 1000 characters and spaces.
|
|
20315
20398
|
*
|
|
20316
20399
|
* Default value is `false`.
|
|
20317
20400
|
*
|
|
@@ -20838,6 +20921,7 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBar" {
|
|
|
20838
20921
|
* **Note:** When the `SmartFilterBar` control is used with a {@link sap.ui.comp.smarttable.SmartTable }
|
|
20839
20922
|
* control the parameters are handled automatically. Therefore, this must only be enabled for OData service
|
|
20840
20923
|
* entities that support basic search.
|
|
20924
|
+
* **Note:** basic search field is restricted to 1000 characters and spaces.
|
|
20841
20925
|
*
|
|
20842
20926
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20843
20927
|
*
|
|
@@ -21072,10 +21156,12 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBar" {
|
|
|
21072
21156
|
* Verifies if search is possible.
|
|
21073
21157
|
*
|
|
21074
21158
|
*
|
|
21075
|
-
* @returns
|
|
21076
|
-
* property mandatory indicates that some mandatory filters or parameters are empty
|
|
21077
|
-
*
|
|
21078
|
-
*
|
|
21159
|
+
* @returns An empty object indicates that all is fine and the search can be triggered.
|
|
21160
|
+
* An object with the property mandatory indicates that some mandatory filters or parameters are empty
|
|
21161
|
+
*
|
|
21162
|
+
* An object with the property pending indicates that a token validation is going on.
|
|
21163
|
+
* An object with the property error indicates that some filters, parameters or the BasicSearch are in
|
|
21164
|
+
* error state.
|
|
21079
21165
|
*/
|
|
21080
21166
|
verifySearchAllowed(): SearchAllowed;
|
|
21081
21167
|
}
|
|
@@ -21140,6 +21226,7 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBar" {
|
|
|
21140
21226
|
* **Note:** When the `SmartFilterBar` control is used with a {@link sap.ui.comp.smarttable.SmartTable }
|
|
21141
21227
|
* control the parameters are handled automatically. Therefore, this must only be enabled for OData service
|
|
21142
21228
|
* entities that support basic search.
|
|
21229
|
+
* **Note:** basic search field is restricted to 1000 characters and spaces.
|
|
21143
21230
|
*/
|
|
21144
21231
|
enableBasicSearch?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
21145
21232
|
|
|
@@ -34866,6 +34953,8 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagement" {
|
|
|
34866
34953
|
AggregationBindingInfo,
|
|
34867
34954
|
} from "sap/ui/base/ManagedObject";
|
|
34868
34955
|
|
|
34956
|
+
import { SmartVariantManagementMediator$SaveEventParameters } from "sap/ui/comp/smartvariants/SmartVariantManagementMediator";
|
|
34957
|
+
|
|
34869
34958
|
/**
|
|
34870
34959
|
* Overview: The `SmartVariantManagement` control communicates with the flexibility library that offers
|
|
34871
34960
|
* SAPUI5 flexibility to manage the variants.
|
|
@@ -35495,18 +35584,14 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagement" {
|
|
|
35495
35584
|
/**
|
|
35496
35585
|
* Parameters of the SmartVariantManagement#save event.
|
|
35497
35586
|
*/
|
|
35498
|
-
export interface SmartVariantManagement$SaveEventParameters
|
|
35587
|
+
export interface SmartVariantManagement$SaveEventParameters
|
|
35588
|
+
extends SmartVariantManagementMediator$SaveEventParameters {
|
|
35499
35589
|
/**
|
|
35500
35590
|
* If the property `showCreateTile` is set, the Create Tile checkbox is shown and its value is passed to
|
|
35501
35591
|
* this event parameter.
|
|
35502
35592
|
* If the property `showCreateTile` is not set, this event parameter is skipped.
|
|
35503
35593
|
*/
|
|
35504
35594
|
tile?: boolean;
|
|
35505
|
-
|
|
35506
|
-
/**
|
|
35507
|
-
* Variant title. Will be passed for new and for updated variants.
|
|
35508
|
-
*/
|
|
35509
|
-
name?: string;
|
|
35510
35595
|
}
|
|
35511
35596
|
|
|
35512
35597
|
/**
|
|
@@ -35642,7 +35727,10 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementAdapter" {
|
|
|
35642
35727
|
}
|
|
35643
35728
|
|
|
35644
35729
|
declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
35645
|
-
import {
|
|
35730
|
+
import {
|
|
35731
|
+
default as SmartVariantManagementMediator,
|
|
35732
|
+
$SmartVariantManagementMediatorSettings,
|
|
35733
|
+
} from "sap/ui/comp/smartvariants/SmartVariantManagementMediator";
|
|
35646
35734
|
|
|
35647
35735
|
import { IOverflowToolbarContent } from "sap/m/library";
|
|
35648
35736
|
|
|
@@ -35659,7 +35747,7 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
35659
35747
|
* @since 1.56
|
|
35660
35748
|
*/
|
|
35661
35749
|
export default class SmartVariantManagementBase
|
|
35662
|
-
extends
|
|
35750
|
+
extends SmartVariantManagementMediator
|
|
35663
35751
|
implements IOverflowToolbarContent
|
|
35664
35752
|
{
|
|
35665
35753
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -35702,7 +35790,7 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
35702
35790
|
* Creates a new subclass of class sap.ui.comp.smartvariants.SmartVariantManagementBase with name `sClassName`
|
|
35703
35791
|
* and enriches it with the information contained in `oClassInfo`.
|
|
35704
35792
|
*
|
|
35705
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.
|
|
35793
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.comp.smartvariants.SmartVariantManagementMediator.extend}.
|
|
35706
35794
|
*
|
|
35707
35795
|
*
|
|
35708
35796
|
* @returns Created class / constructor function
|
|
@@ -35825,7 +35913,7 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
35825
35913
|
* Describes the settings that can be provided to the SmartVariantManagementBase constructor.
|
|
35826
35914
|
*/
|
|
35827
35915
|
export interface $SmartVariantManagementBaseSettings
|
|
35828
|
-
extends $
|
|
35916
|
+
extends $SmartVariantManagementMediatorSettings {
|
|
35829
35917
|
/**
|
|
35830
35918
|
* Defines the author of the standard variant, for example, the name of the own company.
|
|
35831
35919
|
*/
|