@sapui5/types 1.120.11 → 1.120.13

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 (55) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.esh.search.ui.d.ts +16 -2
  6. package/types/sap.f.d.ts +372 -54
  7. package/types/sap.fe.core.d.ts +11 -3
  8. package/types/sap.fe.macros.d.ts +96 -12
  9. package/types/sap.fe.navigation.d.ts +1 -1
  10. package/types/sap.fe.placeholder.d.ts +1 -1
  11. package/types/sap.fe.templates.d.ts +1 -1
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.fe.tools.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1001 -139
  15. package/types/sap.insights.d.ts +4 -2
  16. package/types/sap.m.d.ts +3123 -276
  17. package/types/sap.makit.d.ts +115 -14
  18. package/types/sap.me.d.ts +84 -7
  19. package/types/sap.ndc.d.ts +22 -2
  20. package/types/sap.ovp.d.ts +1 -1
  21. package/types/sap.sac.df.d.ts +294 -44
  22. package/types/sap.suite.ui.commons.d.ts +1148 -118
  23. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  24. package/types/sap.suite.ui.microchart.d.ts +184 -28
  25. package/types/sap.tnt.d.ts +40 -8
  26. package/types/sap.ui.codeeditor.d.ts +16 -2
  27. package/types/sap.ui.commons.d.ts +756 -90
  28. package/types/sap.ui.comp.d.ts +884 -50
  29. package/types/sap.ui.core.d.ts +1112 -135
  30. package/types/sap.ui.dt.d.ts +1 -1
  31. package/types/sap.ui.export.d.ts +19 -4
  32. package/types/sap.ui.fl.d.ts +44 -3
  33. package/types/sap.ui.integration.d.ts +144 -6
  34. package/types/sap.ui.layout.d.ts +166 -41
  35. package/types/sap.ui.mdc.d.ts +430 -38
  36. package/types/sap.ui.richtexteditor.d.ts +28 -2
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +27 -3
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +222 -19
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +431 -35
  43. package/types/sap.ui.ux3.d.ts +524 -31
  44. package/types/sap.ui.vbm.d.ts +6427 -3308
  45. package/types/sap.ui.webc.common.d.ts +7 -1
  46. package/types/sap.ui.webc.fiori.d.ts +351 -29
  47. package/types/sap.ui.webc.main.d.ts +1035 -83
  48. package/types/sap.uiext.inbox.d.ts +124 -13
  49. package/types/sap.ushell.d.ts +147 -12
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +118 -18
  52. package/types/sap.viz.d.ts +2619 -130
  53. package/types/sap.zen.commons.d.ts +104 -23
  54. package/types/sap.zen.crosstab.d.ts +96 -16
  55. package/types/sap.zen.dsh.d.ts +255 -149
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.3
1
+ // For Library Version: 1.120.5
2
2
 
3
3
  declare module "sap/sac/df/library" {}
4
4
 
@@ -10,14 +10,14 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
10
10
  import MultiDimModel from "sap/sac/df/model/MultiDimModel";
11
11
 
12
12
  /**
13
- * @since 1.120
14
- * @experimental (since 1.120)
15
- *
16
13
  * Control to handle changes of {@link sap.sac.df.model.MultiDimModel }. To store the changes in {@link sap.ui.fl.variants.VariantManagement }
17
14
  * you need to include this change handler control as a dependent somewhere in the view tree for which the
18
15
  * variant management is responsible. Each time the event `requestCompleted` is fired a new change will
19
16
  * be created. The method `registerMultiDimModel` needs to be called once to register the {@link sap.sac.df.model.MultiDimModel }
20
17
  * to the change handler.
18
+ *
19
+ * @since 1.120
20
+ * @experimental (since 1.120)
21
21
  */
22
22
  export default class MultiDimModelChangeHandler extends Control {
23
23
  /**
@@ -36,6 +36,7 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
36
36
  *
37
37
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.Control.extend}.
38
38
  *
39
+ *
39
40
  * @returns Created class / constructor function
40
41
  */
41
42
  static extend<T extends Record<string, unknown>>(
@@ -56,6 +57,7 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
56
57
  /**
57
58
  * Returns a metadata object for class sap.sac.df.changeHandler.MultiDimModelChangeHandler.
58
59
  *
60
+ *
59
61
  * @returns Metadata object describing this class
60
62
  */
61
63
  static getMetadata(): ElementMetadata;
@@ -68,7 +70,11 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
68
70
  */
69
71
  skipApplyModelChangeOnce(): void;
70
72
  }
71
-
73
+ /**
74
+ * Describes the settings that can be provided to the MultiDimModelChangeHandler constructor.
75
+ *
76
+ * @experimental (since 1.120)
77
+ */
72
78
  export interface $MultiDimModelChangeHandlerSettings
73
79
  extends $ControlSettings {}
74
80
  }
@@ -88,9 +94,9 @@ declare module "sap/sac/df/FilterBar" {
88
94
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
89
95
 
90
96
  /**
91
- * @experimental (since 1.119)
92
- *
93
97
  * A Filter Bar based on Multidimensional Model
98
+ *
99
+ * @experimental (since 1.119)
94
100
  */
95
101
  export default class FilterBar extends FilterBar1 {
96
102
  /**
@@ -108,6 +114,7 @@ declare module "sap/sac/df/FilterBar" {
108
114
  *
109
115
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.FilterBar.extend}.
110
116
  *
117
+ *
111
118
  * @returns Created class / constructor function
112
119
  */
113
120
  static extend<T extends Record<string, unknown>>(
@@ -128,6 +135,7 @@ declare module "sap/sac/df/FilterBar" {
128
135
  /**
129
136
  * Returns a metadata object for class sap.sac.df.FilterBar.
130
137
  *
138
+ *
131
139
  * @returns Metadata object describing this class
132
140
  */
133
141
  static getMetadata(): ElementMetadata;
@@ -140,6 +148,7 @@ declare module "sap/sac/df/FilterBar" {
140
148
  *
141
149
  * Fires before update variable of multidimension model after input value or open value help of variable.
142
150
  *
151
+ *
143
152
  * @returns Reference to `this` in order to allow method chaining
144
153
  */
145
154
  attachBeforeFilterChange(
@@ -166,6 +175,7 @@ declare module "sap/sac/df/FilterBar" {
166
175
  *
167
176
  * Fires before update variable of multidimension model after input value or open value help of variable.
168
177
  *
178
+ *
169
179
  * @returns Reference to `this` in order to allow method chaining
170
180
  */
171
181
  attachBeforeFilterChange(
@@ -187,6 +197,7 @@ declare module "sap/sac/df/FilterBar" {
187
197
  *
188
198
  * Fires when cancel change in the value help dialog.
189
199
  *
200
+ *
190
201
  * @returns Reference to `this` in order to allow method chaining
191
202
  */
192
203
  attachCancelFilterChange(
@@ -213,6 +224,7 @@ declare module "sap/sac/df/FilterBar" {
213
224
  *
214
225
  * Fires when cancel change in the value help dialog.
215
226
  *
227
+ *
216
228
  * @returns Reference to `this` in order to allow method chaining
217
229
  */
218
230
  attachCancelFilterChange(
@@ -231,6 +243,7 @@ declare module "sap/sac/df/FilterBar" {
231
243
  *
232
244
  * The passed function and listener object must match the ones used for event registration.
233
245
  *
246
+ *
234
247
  * @returns Reference to `this` in order to allow method chaining
235
248
  */
236
249
  detachBeforeFilterChange(
@@ -249,6 +262,7 @@ declare module "sap/sac/df/FilterBar" {
249
262
  *
250
263
  * The passed function and listener object must match the ones used for event registration.
251
264
  *
265
+ *
252
266
  * @returns Reference to `this` in order to allow method chaining
253
267
  */
254
268
  detachCancelFilterChange(
@@ -262,10 +276,10 @@ declare module "sap/sac/df/FilterBar" {
262
276
  oListener?: object
263
277
  ): this;
264
278
  /**
265
- * @ui5-protected Do not call from applications (only from related classes in the framework)
266
- *
267
279
  * Fires event {@link #event:beforeFilterChange beforeFilterChange} to attached listeners.
268
280
  *
281
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
282
+ *
269
283
  * @returns Reference to `this` in order to allow method chaining
270
284
  */
271
285
  fireBeforeFilterChange(
@@ -275,10 +289,10 @@ declare module "sap/sac/df/FilterBar" {
275
289
  mParameters?: FilterBar$BeforeFilterChangeEventParameters
276
290
  ): this;
277
291
  /**
278
- * @ui5-protected Do not call from applications (only from related classes in the framework)
279
- *
280
292
  * Fires event {@link #event:cancelFilterChange cancelFilterChange} to attached listeners.
281
293
  *
294
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
295
+ *
282
296
  * @returns Reference to `this` in order to allow method chaining
283
297
  */
284
298
  fireCancelFilterChange(
@@ -294,6 +308,7 @@ declare module "sap/sac/df/FilterBar" {
294
308
  *
295
309
  * Default value is `ValueDescription`.
296
310
  *
311
+ *
297
312
  * @returns Value of property `display`
298
313
  */
299
314
  getDisplay(): FieldDisplay | keyof typeof FieldDisplay;
@@ -304,6 +319,7 @@ declare module "sap/sac/df/FilterBar" {
304
319
  *
305
320
  * Default value is `"VariablesOfDataProvider"`.
306
321
  *
322
+ *
307
323
  * @returns Value of property `mode`
308
324
  */
309
325
  getMode(): string;
@@ -314,6 +330,7 @@ declare module "sap/sac/df/FilterBar" {
314
330
  *
315
331
  * Default value is `"om"`.
316
332
  *
333
+ *
317
334
  * @returns Value of property `multiDimModelId`
318
335
  */
319
336
  getMultiDimModelId(): string;
@@ -326,6 +343,7 @@ declare module "sap/sac/df/FilterBar" {
326
343
  *
327
344
  * Default value is `ValueDescription`.
328
345
  *
346
+ *
329
347
  * @returns Reference to `this` in order to allow method chaining
330
348
  */
331
349
  setDisplay(
@@ -343,6 +361,7 @@ declare module "sap/sac/df/FilterBar" {
343
361
  *
344
362
  * Default value is `"VariablesOfDataProvider"`.
345
363
  *
364
+ *
346
365
  * @returns Reference to `this` in order to allow method chaining
347
366
  */
348
367
  setMode(
@@ -360,6 +379,7 @@ declare module "sap/sac/df/FilterBar" {
360
379
  *
361
380
  * Default value is `"om"`.
362
381
  *
382
+ *
363
383
  * @returns Reference to `this` in order to allow method chaining
364
384
  */
365
385
  setMultiDimModelId(
@@ -369,7 +389,11 @@ declare module "sap/sac/df/FilterBar" {
369
389
  sMultiDimModelId?: string
370
390
  ): this;
371
391
  }
372
-
392
+ /**
393
+ * Describes the settings that can be provided to the FilterBar constructor.
394
+ *
395
+ * @experimental (since 1.119)
396
+ */
373
397
  export interface $FilterBarSettings extends $FilterBarSettings1 {
374
398
  /**
375
399
  * ID of multiDimModel
@@ -400,6 +424,9 @@ declare module "sap/sac/df/FilterBar" {
400
424
  cancelFilterChange?: (oEvent: Event) => void;
401
425
  }
402
426
 
427
+ /**
428
+ * Parameters of the FilterBar#beforeFilterChange event.
429
+ */
403
430
  export interface FilterBar$BeforeFilterChangeEventParameters {
404
431
  /**
405
432
  * Indicates whether value help dialog is going to open.
@@ -407,13 +434,22 @@ declare module "sap/sac/df/FilterBar" {
407
434
  beforeValueHelpOpen?: boolean;
408
435
  }
409
436
 
437
+ /**
438
+ * Event object of the FilterBar#beforeFilterChange event.
439
+ */
410
440
  export type FilterBar$BeforeFilterChangeEvent = Event<
411
441
  FilterBar$BeforeFilterChangeEventParameters,
412
442
  FilterBar
413
443
  >;
414
444
 
445
+ /**
446
+ * Parameters of the FilterBar#cancelFilterChange event.
447
+ */
415
448
  export interface FilterBar$CancelFilterChangeEventParameters {}
416
449
 
450
+ /**
451
+ * Event object of the FilterBar#cancelFilterChange event.
452
+ */
417
453
  export type FilterBar$CancelFilterChangeEvent = Event<
418
454
  FilterBar$CancelFilterChangeEventParameters,
419
455
  FilterBar
@@ -437,14 +473,14 @@ declare module "sap/sac/df/FlexAnalysis" {
437
473
  import SystemType from "sap/sac/df/types/SystemType";
438
474
 
439
475
  /**
440
- * @experimental
441
- *
442
476
  * Enables users to view, navigate and change multidimensional data exposed via InA.
443
477
  *
444
478
  * Overview:
445
479
  *
446
480
  * The user can view the data in a Table, navigate in the data via a context menu or builder panels The
447
481
  * data source that the FlexAnalysis consumes or renders has to be provided as a property value.
482
+ *
483
+ * @experimental
448
484
  */
449
485
  export default class FlexAnalysis extends Control {
450
486
  /**
@@ -467,6 +503,7 @@ declare module "sap/sac/df/FlexAnalysis" {
467
503
  *
468
504
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
469
505
  *
506
+ *
470
507
  * @returns Created class / constructor function
471
508
  */
472
509
  static extend<T extends Record<string, unknown>>(
@@ -487,12 +524,14 @@ declare module "sap/sac/df/FlexAnalysis" {
487
524
  /**
488
525
  * Returns a metadata object for class sap.sac.df.FlexAnalysis.
489
526
  *
527
+ *
490
528
  * @returns Metadata object describing this class
491
529
  */
492
530
  static getMetadata(): ElementMetadata;
493
531
  /**
494
532
  * Adds some customPanel to the aggregation {@link #getCustomPanels customPanels}.
495
533
  *
534
+ *
496
535
  * @returns Reference to `this` in order to allow method chaining
497
536
  */
498
537
  addCustomPanel(
@@ -507,6 +546,7 @@ declare module "sap/sac/df/FlexAnalysis" {
507
546
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
508
547
  * of the possible properties of `oBindingInfo`
509
548
  *
549
+ *
510
550
  * @returns Reference to `this` in order to allow method chaining
511
551
  */
512
552
  bindDataProvider(
@@ -518,6 +558,7 @@ declare module "sap/sac/df/FlexAnalysis" {
518
558
  /**
519
559
  * Destroys all the customPanels in the aggregation {@link #getCustomPanels customPanels}.
520
560
  *
561
+ *
521
562
  * @returns Reference to `this` in order to allow method chaining
522
563
  */
523
564
  destroyCustomPanels(): this;
@@ -528,6 +569,7 @@ declare module "sap/sac/df/FlexAnalysis" {
528
569
  *
529
570
  * Default value is `true`.
530
571
  *
572
+ *
531
573
  * @returns Value of property `autoUpdate`
532
574
  */
533
575
  getAutoUpdate(): boolean;
@@ -536,6 +578,7 @@ declare module "sap/sac/df/FlexAnalysis" {
536
578
  *
537
579
  * Client Identifier to be used for underlying InA queries
538
580
  *
581
+ *
539
582
  * @returns Value of property `clientIdentifier`
540
583
  */
541
584
  getClientIdentifier(): string;
@@ -544,6 +587,7 @@ declare module "sap/sac/df/FlexAnalysis" {
544
587
  *
545
588
  * configuration Id
546
589
  *
590
+ *
547
591
  * @returns Value of property `configId`
548
592
  */
549
593
  getConfigId(): string;
@@ -552,6 +596,7 @@ declare module "sap/sac/df/FlexAnalysis" {
552
596
  *
553
597
  * JSON object containing the configuration (alternative to configurationURI)
554
598
  *
599
+ *
555
600
  * @returns Value of property `configObject`
556
601
  */
557
602
  getConfigObject(): object;
@@ -560,6 +605,7 @@ declare module "sap/sac/df/FlexAnalysis" {
560
605
  *
561
606
  * URI of the advanced configuration to be fetched
562
607
  *
608
+ *
563
609
  * @returns Value of property `configurationURI`
564
610
  */
565
611
  getConfigurationURI(): string;
@@ -574,6 +620,7 @@ declare module "sap/sac/df/FlexAnalysis" {
574
620
  *
575
621
  * Name of the Data Provider from the corresponding MultiDimModel to be used
576
622
  *
623
+ *
577
624
  * @returns Value of property `dataProvider`
578
625
  */
579
626
  getDataProvider(): any;
@@ -584,6 +631,7 @@ declare module "sap/sac/df/FlexAnalysis" {
584
631
  *
585
632
  * Default value is `"$datasource"`.
586
633
  *
634
+ *
587
635
  * @returns Value of property `dataSource`
588
636
  */
589
637
  getDataSource(): string;
@@ -594,6 +642,7 @@ declare module "sap/sac/df/FlexAnalysis" {
594
642
  *
595
643
  * Default value is `[]`.
596
644
  *
645
+ *
597
646
  * @returns Value of property `environment`
598
647
  */
599
648
  getEnvironment(): string[];
@@ -604,6 +653,7 @@ declare module "sap/sac/df/FlexAnalysis" {
604
653
  *
605
654
  * Default value is `"100%"`.
606
655
  *
656
+ *
607
657
  * @returns Value of property `height`
608
658
  */
609
659
  getHeight(): CSSSize;
@@ -614,6 +664,7 @@ declare module "sap/sac/df/FlexAnalysis" {
614
664
  *
615
665
  * Default value is `true`.
616
666
  *
667
+ *
617
668
  * @returns Value of property `hideDesignPanel`
618
669
  */
619
670
  getHideDesignPanel(): boolean;
@@ -624,6 +675,7 @@ declare module "sap/sac/df/FlexAnalysis" {
624
675
  *
625
676
  * Default value is `false`.
626
677
  *
678
+ *
627
679
  * @returns Value of property `hideFilterLine`
628
680
  */
629
681
  getHideFilterLine(): boolean;
@@ -634,6 +686,7 @@ declare module "sap/sac/df/FlexAnalysis" {
634
686
  *
635
687
  * Default value is `true`.
636
688
  *
689
+ *
637
690
  * @returns Value of property `hideLandingPage`
638
691
  */
639
692
  getHideLandingPage(): boolean;
@@ -644,6 +697,7 @@ declare module "sap/sac/df/FlexAnalysis" {
644
697
  *
645
698
  * Default value is `true`.
646
699
  *
700
+ *
647
701
  * @returns Value of property `hideMenuBar`
648
702
  */
649
703
  getHideMenuBar(): boolean;
@@ -654,6 +708,7 @@ declare module "sap/sac/df/FlexAnalysis" {
654
708
  *
655
709
  * Default value is `false`.
656
710
  *
711
+ *
657
712
  * @returns Value of property `hideSideNavigation`
658
713
  */
659
714
  getHideSideNavigation(): boolean;
@@ -664,6 +719,7 @@ declare module "sap/sac/df/FlexAnalysis" {
664
719
  *
665
720
  * Default value is `true`.
666
721
  *
722
+ *
667
723
  * @returns Value of property `hideStatusBar`
668
724
  */
669
725
  getHideStatusBar(): boolean;
@@ -674,6 +730,7 @@ declare module "sap/sac/df/FlexAnalysis" {
674
730
  *
675
731
  * Default value is `true`.
676
732
  *
733
+ *
677
734
  * @returns Value of property `hideStylePanel`
678
735
  */
679
736
  getHideStylePanel(): boolean;
@@ -684,6 +741,7 @@ declare module "sap/sac/df/FlexAnalysis" {
684
741
  *
685
742
  * Default value is `true`.
686
743
  *
744
+ *
687
745
  * @returns Value of property `hideToolBar`
688
746
  */
689
747
  getHideToolBar(): boolean;
@@ -695,6 +753,7 @@ declare module "sap/sac/df/FlexAnalysis" {
695
753
  *
696
754
  * Default value is `true`.
697
755
  *
756
+ *
698
757
  * @returns Value of property `implicitVariableHandling`
699
758
  */
700
759
  getImplicitVariableHandling(): boolean;
@@ -705,6 +764,7 @@ declare module "sap/sac/df/FlexAnalysis" {
705
764
  *
706
765
  * Default value is `0`.
707
766
  *
767
+ *
708
768
  * @returns Value of property `keepAliveInterval`
709
769
  */
710
770
  getKeepAliveInterval(): int;
@@ -715,6 +775,7 @@ declare module "sap/sac/df/FlexAnalysis" {
715
775
  *
716
776
  * Default value is `"om"`.
717
777
  *
778
+ *
718
779
  * @returns Value of property `multiDimModelId`
719
780
  */
720
781
  getMultiDimModelId(): string;
@@ -725,6 +786,7 @@ declare module "sap/sac/df/FlexAnalysis" {
725
786
  *
726
787
  * Default value is `false`.
727
788
  *
789
+ *
728
790
  * @returns Value of property `showTitle`
729
791
  */
730
792
  getShowTitle(): boolean;
@@ -734,6 +796,7 @@ declare module "sap/sac/df/FlexAnalysis" {
734
796
  * Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
735
797
  * corresponding MultiDimModel
736
798
  *
799
+ *
737
800
  * @returns Value of property `styleTemplateName`
738
801
  */
739
802
  getStyleTemplateName(): string;
@@ -742,6 +805,7 @@ declare module "sap/sac/df/FlexAnalysis" {
742
805
  *
743
806
  * System to take data from. If not set or set to "local" current url will be used to determine the system
744
807
  *
808
+ *
745
809
  * @returns Value of property `systemName`
746
810
  */
747
811
  getSystemName(): string;
@@ -752,6 +816,7 @@ declare module "sap/sac/df/FlexAnalysis" {
752
816
  *
753
817
  * Default value is `BW`.
754
818
  *
819
+ *
755
820
  * @returns Value of property `systemType`
756
821
  */
757
822
  getSystemType(): SystemType | keyof typeof SystemType;
@@ -760,6 +825,7 @@ declare module "sap/sac/df/FlexAnalysis" {
760
825
  *
761
826
  * Sets title to be shown in the control. If not set the name of the corresponding back-end query is used
762
827
  *
828
+ *
763
829
  * @returns Value of property `title`
764
830
  */
765
831
  getTitle(): string;
@@ -770,6 +836,7 @@ declare module "sap/sac/df/FlexAnalysis" {
770
836
  *
771
837
  * Default value is `"100%"`.
772
838
  *
839
+ *
773
840
  * @returns Value of property `width`
774
841
  */
775
842
  getWidth(): CSSSize;
@@ -777,6 +844,7 @@ declare module "sap/sac/df/FlexAnalysis" {
777
844
  * Checks for the provided `sap.sac.df.FlexAnalysisPanel` in the aggregation {@link #getCustomPanels customPanels}.
778
845
  * and returns its index if found or -1 otherwise.
779
846
  *
847
+ *
780
848
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
781
849
  */
782
850
  indexOfCustomPanel(
@@ -788,6 +856,7 @@ declare module "sap/sac/df/FlexAnalysis" {
788
856
  /**
789
857
  * Inserts a customPanel into the aggregation {@link #getCustomPanels customPanels}.
790
858
  *
859
+ *
791
860
  * @returns Reference to `this` in order to allow method chaining
792
861
  */
793
862
  insertCustomPanel(
@@ -807,12 +876,14 @@ declare module "sap/sac/df/FlexAnalysis" {
807
876
  *
808
877
  * Additionally, it unregisters them from the hosting UIArea.
809
878
  *
879
+ *
810
880
  * @returns An array of the removed elements (might be empty)
811
881
  */
812
882
  removeAllCustomPanels(): FlexAnalysisPanel[];
813
883
  /**
814
884
  * Removes a customPanel from the aggregation {@link #getCustomPanels customPanels}.
815
885
  *
886
+ *
816
887
  * @returns The removed customPanel or `null`
817
888
  */
818
889
  removeCustomPanel(
@@ -830,6 +901,7 @@ declare module "sap/sac/df/FlexAnalysis" {
830
901
  *
831
902
  * Default value is `true`.
832
903
  *
904
+ *
833
905
  * @returns Reference to `this` in order to allow method chaining
834
906
  */
835
907
  setAutoUpdate(
@@ -845,6 +917,7 @@ declare module "sap/sac/df/FlexAnalysis" {
845
917
  *
846
918
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
847
919
  *
920
+ *
848
921
  * @returns Reference to `this` in order to allow method chaining
849
922
  */
850
923
  setClientIdentifier(
@@ -860,6 +933,7 @@ declare module "sap/sac/df/FlexAnalysis" {
860
933
  *
861
934
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
862
935
  *
936
+ *
863
937
  * @returns Reference to `this` in order to allow method chaining
864
938
  */
865
939
  setConfigId(
@@ -875,6 +949,7 @@ declare module "sap/sac/df/FlexAnalysis" {
875
949
  *
876
950
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
877
951
  *
952
+ *
878
953
  * @returns Reference to `this` in order to allow method chaining
879
954
  */
880
955
  setConfigObject(
@@ -890,6 +965,7 @@ declare module "sap/sac/df/FlexAnalysis" {
890
965
  *
891
966
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
892
967
  *
968
+ *
893
969
  * @returns Reference to `this` in order to allow method chaining
894
970
  */
895
971
  setConfigurationURI(
@@ -905,6 +981,7 @@ declare module "sap/sac/df/FlexAnalysis" {
905
981
  *
906
982
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
907
983
  *
984
+ *
908
985
  * @returns Reference to `this` in order to allow method chaining
909
986
  */
910
987
  setDataProvider(
@@ -922,6 +999,7 @@ declare module "sap/sac/df/FlexAnalysis" {
922
999
  *
923
1000
  * Default value is `"$datasource"`.
924
1001
  *
1002
+ *
925
1003
  * @returns Reference to `this` in order to allow method chaining
926
1004
  */
927
1005
  setDataSource(
@@ -939,6 +1017,7 @@ declare module "sap/sac/df/FlexAnalysis" {
939
1017
  *
940
1018
  * Default value is `[]`.
941
1019
  *
1020
+ *
942
1021
  * @returns Reference to `this` in order to allow method chaining
943
1022
  */
944
1023
  setEnvironment(
@@ -956,6 +1035,7 @@ declare module "sap/sac/df/FlexAnalysis" {
956
1035
  *
957
1036
  * Default value is `"100%"`.
958
1037
  *
1038
+ *
959
1039
  * @returns Reference to `this` in order to allow method chaining
960
1040
  */
961
1041
  setHeight(
@@ -973,6 +1053,7 @@ declare module "sap/sac/df/FlexAnalysis" {
973
1053
  *
974
1054
  * Default value is `true`.
975
1055
  *
1056
+ *
976
1057
  * @returns Reference to `this` in order to allow method chaining
977
1058
  */
978
1059
  setHideDesignPanel(
@@ -990,6 +1071,7 @@ declare module "sap/sac/df/FlexAnalysis" {
990
1071
  *
991
1072
  * Default value is `false`.
992
1073
  *
1074
+ *
993
1075
  * @returns Reference to `this` in order to allow method chaining
994
1076
  */
995
1077
  setHideFilterLine(
@@ -1007,6 +1089,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1007
1089
  *
1008
1090
  * Default value is `true`.
1009
1091
  *
1092
+ *
1010
1093
  * @returns Reference to `this` in order to allow method chaining
1011
1094
  */
1012
1095
  setHideLandingPage(
@@ -1024,6 +1107,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1024
1107
  *
1025
1108
  * Default value is `true`.
1026
1109
  *
1110
+ *
1027
1111
  * @returns Reference to `this` in order to allow method chaining
1028
1112
  */
1029
1113
  setHideMenuBar(
@@ -1041,6 +1125,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1041
1125
  *
1042
1126
  * Default value is `false`.
1043
1127
  *
1128
+ *
1044
1129
  * @returns Reference to `this` in order to allow method chaining
1045
1130
  */
1046
1131
  setHideSideNavigation(
@@ -1058,6 +1143,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1058
1143
  *
1059
1144
  * Default value is `true`.
1060
1145
  *
1146
+ *
1061
1147
  * @returns Reference to `this` in order to allow method chaining
1062
1148
  */
1063
1149
  setHideStatusBar(
@@ -1075,6 +1161,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1075
1161
  *
1076
1162
  * Default value is `true`.
1077
1163
  *
1164
+ *
1078
1165
  * @returns Reference to `this` in order to allow method chaining
1079
1166
  */
1080
1167
  setHideStylePanel(
@@ -1092,6 +1179,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1092
1179
  *
1093
1180
  * Default value is `true`.
1094
1181
  *
1182
+ *
1095
1183
  * @returns Reference to `this` in order to allow method chaining
1096
1184
  */
1097
1185
  setHideToolBar(
@@ -1110,6 +1198,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1110
1198
  *
1111
1199
  * Default value is `true`.
1112
1200
  *
1201
+ *
1113
1202
  * @returns Reference to `this` in order to allow method chaining
1114
1203
  */
1115
1204
  setImplicitVariableHandling(
@@ -1127,6 +1216,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1127
1216
  *
1128
1217
  * Default value is `0`.
1129
1218
  *
1219
+ *
1130
1220
  * @returns Reference to `this` in order to allow method chaining
1131
1221
  */
1132
1222
  setKeepAliveInterval(
@@ -1144,6 +1234,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1144
1234
  *
1145
1235
  * Default value is `"om"`.
1146
1236
  *
1237
+ *
1147
1238
  * @returns Reference to `this` in order to allow method chaining
1148
1239
  */
1149
1240
  setMultiDimModelId(
@@ -1161,6 +1252,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1161
1252
  *
1162
1253
  * Default value is `false`.
1163
1254
  *
1255
+ *
1164
1256
  * @returns Reference to `this` in order to allow method chaining
1165
1257
  */
1166
1258
  setShowTitle(
@@ -1177,6 +1269,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1177
1269
  *
1178
1270
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1179
1271
  *
1272
+ *
1180
1273
  * @returns Reference to `this` in order to allow method chaining
1181
1274
  */
1182
1275
  setStyleTemplateName(
@@ -1192,6 +1285,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1192
1285
  *
1193
1286
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1194
1287
  *
1288
+ *
1195
1289
  * @returns Reference to `this` in order to allow method chaining
1196
1290
  */
1197
1291
  setSystemName(
@@ -1209,6 +1303,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1209
1303
  *
1210
1304
  * Default value is `BW`.
1211
1305
  *
1306
+ *
1212
1307
  * @returns Reference to `this` in order to allow method chaining
1213
1308
  */
1214
1309
  setSystemType(
@@ -1224,6 +1319,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1224
1319
  *
1225
1320
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1226
1321
  *
1322
+ *
1227
1323
  * @returns Reference to `this` in order to allow method chaining
1228
1324
  */
1229
1325
  setTitle(
@@ -1241,6 +1337,7 @@ declare module "sap/sac/df/FlexAnalysis" {
1241
1337
  *
1242
1338
  * Default value is `"100%"`.
1243
1339
  *
1340
+ *
1244
1341
  * @returns Reference to `this` in order to allow method chaining
1245
1342
  */
1246
1343
  setWidth(
@@ -1252,11 +1349,16 @@ declare module "sap/sac/df/FlexAnalysis" {
1252
1349
  /**
1253
1350
  * Unbinds property {@link #getDataProvider dataProvider} from model data.
1254
1351
  *
1352
+ *
1255
1353
  * @returns Reference to `this` in order to allow method chaining
1256
1354
  */
1257
1355
  unbindDataProvider(): this;
1258
1356
  }
1259
-
1357
+ /**
1358
+ * Describes the settings that can be provided to the FlexAnalysis constructor.
1359
+ *
1360
+ * @experimental
1361
+ */
1260
1362
  export interface $FlexAnalysisSettings extends $ControlSettings {
1261
1363
  /**
1262
1364
  * Sets title to be shown in the control. If not set the name of the corresponding back-end query is used
@@ -1416,9 +1518,9 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1416
1518
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1417
1519
 
1418
1520
  /**
1419
- * @experimental
1420
- *
1421
1521
  * A panel to be added into FlexAnalysis control
1522
+ *
1523
+ * @experimental
1422
1524
  */
1423
1525
  export default class FlexAnalysisPanel extends UI5Element {
1424
1526
  /**
@@ -1458,6 +1560,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1458
1560
  *
1459
1561
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1460
1562
  *
1563
+ *
1461
1564
  * @returns Created class / constructor function
1462
1565
  */
1463
1566
  static extend<T extends Record<string, unknown>>(
@@ -1478,12 +1581,14 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1478
1581
  /**
1479
1582
  * Returns a metadata object for class sap.sac.df.FlexAnalysisPanel.
1480
1583
  *
1584
+ *
1481
1585
  * @returns Metadata object describing this class
1482
1586
  */
1483
1587
  static getMetadata(): ElementMetadata;
1484
1588
  /**
1485
1589
  * Destroys the content in the aggregation {@link #getContent content}.
1486
1590
  *
1591
+ *
1487
1592
  * @returns Reference to `this` in order to allow method chaining
1488
1593
  */
1489
1594
  destroyContent(): this;
@@ -1498,6 +1603,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1498
1603
  *
1499
1604
  * The description of the panel, displayed as tooltip on the side navigation item.
1500
1605
  *
1606
+ *
1501
1607
  * @returns Value of property `description`
1502
1608
  */
1503
1609
  getDescription(): string;
@@ -1506,6 +1612,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1506
1612
  *
1507
1613
  * The icon of the panel, displayed on the side navigation item and the panel header.
1508
1614
  *
1615
+ *
1509
1616
  * @returns Value of property `icon`
1510
1617
  */
1511
1618
  getIcon(): URI;
@@ -1514,12 +1621,14 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1514
1621
  *
1515
1622
  * The title of the panel header.
1516
1623
  *
1624
+ *
1517
1625
  * @returns Value of property `title`
1518
1626
  */
1519
1627
  getTitle(): string;
1520
1628
  /**
1521
1629
  * Sets the aggregated {@link #getContent content}.
1522
1630
  *
1631
+ *
1523
1632
  * @returns Reference to `this` in order to allow method chaining
1524
1633
  */
1525
1634
  setContent(
@@ -1535,6 +1644,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1535
1644
  *
1536
1645
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1537
1646
  *
1647
+ *
1538
1648
  * @returns Reference to `this` in order to allow method chaining
1539
1649
  */
1540
1650
  setDescription(
@@ -1550,6 +1660,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1550
1660
  *
1551
1661
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1552
1662
  *
1663
+ *
1553
1664
  * @returns Reference to `this` in order to allow method chaining
1554
1665
  */
1555
1666
  setIcon(
@@ -1565,6 +1676,7 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1565
1676
  *
1566
1677
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1567
1678
  *
1679
+ *
1568
1680
  * @returns Reference to `this` in order to allow method chaining
1569
1681
  */
1570
1682
  setTitle(
@@ -1574,7 +1686,11 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
1574
1686
  sTitle: string
1575
1687
  ): this;
1576
1688
  }
1577
-
1689
+ /**
1690
+ * Describes the settings that can be provided to the FlexAnalysisPanel constructor.
1691
+ *
1692
+ * @experimental
1693
+ */
1578
1694
  export interface $FlexAnalysisPanelSettings extends $ElementSettings {
1579
1695
  /**
1580
1696
  * The description of the panel, displayed as tooltip on the side navigation item.
@@ -1604,9 +1720,6 @@ declare module "sap/sac/df/model/AxesLayout" {
1604
1720
  import Metadata from "sap/ui/base/Metadata";
1605
1721
 
1606
1722
  /**
1607
- * @since 1.119
1608
- * @experimental (since 1.119)
1609
- *
1610
1723
  * Axis Layout showing which dimensions are set on rows and which on columns.
1611
1724
  *
1612
1725
  * **Structure of Exposed Data:**
@@ -1615,6 +1728,10 @@ declare module "sap/sac/df/model/AxesLayout" {
1615
1728
  * "Rows": [],
1616
1729
  * "Columns": []
1617
1730
  * ```
1731
+ *
1732
+ *
1733
+ * @since 1.119
1734
+ * @experimental (since 1.119)
1618
1735
  */
1619
1736
  export default class AxesLayout extends BaseObject {
1620
1737
  constructor();
@@ -1625,6 +1742,7 @@ declare module "sap/sac/df/model/AxesLayout" {
1625
1742
  *
1626
1743
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
1627
1744
  *
1745
+ *
1628
1746
  * @returns Created class / constructor function
1629
1747
  */
1630
1748
  static extend<T extends Record<string, unknown>>(
@@ -1645,12 +1763,14 @@ declare module "sap/sac/df/model/AxesLayout" {
1645
1763
  /**
1646
1764
  * Returns a metadata object for class sap.sac.df.model.AxesLayout.
1647
1765
  *
1766
+ *
1648
1767
  * @returns Metadata object describing this class
1649
1768
  */
1650
1769
  static getMetadata(): Metadata;
1651
1770
  /**
1652
1771
  * Distribute the dimension among the rows and columns
1653
1772
  *
1773
+ *
1654
1774
  * @returns resolving to the axes layout object to allow chaining
1655
1775
  */
1656
1776
  setAxesLayout(
@@ -1684,9 +1804,6 @@ declare module "sap/sac/df/model/DataProvider" {
1684
1804
  import Metadata from "sap/ui/base/Metadata";
1685
1805
 
1686
1806
  /**
1687
- * @since 1.119
1688
- * @experimental (since 1.119)
1689
- *
1690
1807
  * A data provider is an analytical query exposed via an analytical engine and accessed via InA protocol.
1691
1808
  * It represents a navigable query manager and allows to access and change data. Instances of this class
1692
1809
  * should only be created by the {@link sap.sac.df.model.MultiDimModel}.
@@ -1706,6 +1823,10 @@ declare module "sap/sac/df/model/DataProvider" {
1706
1823
  * "Grid": { },
1707
1824
  * "Messages": [ ]
1708
1825
  * ```
1826
+ *
1827
+ *
1828
+ * @since 1.119
1829
+ * @experimental (since 1.119)
1709
1830
  */
1710
1831
  export default class DataProvider extends BaseObject {
1711
1832
  constructor();
@@ -1745,6 +1866,7 @@ declare module "sap/sac/df/model/DataProvider" {
1745
1866
  *
1746
1867
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
1747
1868
  *
1869
+ *
1748
1870
  * @returns Created class / constructor function
1749
1871
  */
1750
1872
  static extend<T extends Record<string, unknown>>(
@@ -1765,12 +1887,14 @@ declare module "sap/sac/df/model/DataProvider" {
1765
1887
  /**
1766
1888
  * Returns a metadata object for class sap.sac.df.model.DataProvider.
1767
1889
  *
1890
+ *
1768
1891
  * @returns Metadata object describing this class
1769
1892
  */
1770
1893
  static getMetadata(): Metadata;
1771
1894
  /**
1772
1895
  * Updates the multidimensional model from the given the state of a data provider
1773
1896
  *
1897
+ *
1774
1898
  * @returns Promise with reference to this in order to allow method chaining
1775
1899
  */
1776
1900
  deserialize(
@@ -1799,18 +1923,21 @@ declare module "sap/sac/df/model/DataProvider" {
1799
1923
  /**
1800
1924
  * Get axis Layout
1801
1925
  *
1926
+ *
1802
1927
  * @returns Axis layout object
1803
1928
  */
1804
1929
  getAxesLayout(): AxesLayout;
1805
1930
  /**
1806
1931
  * Get data source information
1807
1932
  *
1933
+ *
1808
1934
  * @returns data source information object
1809
1935
  */
1810
1936
  getDataSourceInfo(): DataSourceInfo;
1811
1937
  /**
1812
1938
  * Get the scaling factor of a measure or cell
1813
1939
  *
1940
+ *
1814
1941
  * @returns Number of decimal places
1815
1942
  */
1816
1943
  getDecimalPlaces(
@@ -1826,6 +1953,7 @@ declare module "sap/sac/df/model/DataProvider" {
1826
1953
  /**
1827
1954
  * Get Dimension
1828
1955
  *
1956
+ *
1829
1957
  * @returns Dimension object
1830
1958
  */
1831
1959
  getDimension(
@@ -1837,18 +1965,21 @@ declare module "sap/sac/df/model/DataProvider" {
1837
1965
  /**
1838
1966
  * Get all dimensions
1839
1967
  *
1968
+ *
1840
1969
  * @returns Object of all dimensions
1841
1970
  */
1842
1971
  getDimensions(): Record<string, Dimension>;
1843
1972
  /**
1844
1973
  * Get Grid
1845
1974
  *
1975
+ *
1846
1976
  * @returns Grid object
1847
1977
  */
1848
1978
  getGrid(): Grid;
1849
1979
  /**
1850
1980
  * Get measure
1851
1981
  *
1982
+ *
1852
1983
  * @returns Measure object
1853
1984
  */
1854
1985
  getMeasure(
@@ -1860,12 +1991,14 @@ declare module "sap/sac/df/model/DataProvider" {
1860
1991
  /**
1861
1992
  * Get all measures
1862
1993
  *
1994
+ *
1863
1995
  * @returns Object of all measures
1864
1996
  */
1865
1997
  getMeasures(): /* was: sap.sac.df.model.Measure */ any;
1866
1998
  /**
1867
1999
  * Get Measure Structure Dimension
1868
2000
  *
2001
+ *
1869
2002
  * @returns Measure structure dimension
1870
2003
  */
1871
2004
  getMeasureStructureDimension(): Dimension;
@@ -1881,6 +2014,7 @@ declare module "sap/sac/df/model/DataProvider" {
1881
2014
  /**
1882
2015
  * Get the scaling factor of a measure or cell
1883
2016
  *
2017
+ *
1884
2018
  * @returns Scaling factor
1885
2019
  */
1886
2020
  getScalingFactor(
@@ -1896,12 +2030,14 @@ declare module "sap/sac/df/model/DataProvider" {
1896
2030
  /**
1897
2031
  * Get structure (non-measure) dimension
1898
2032
  *
2033
+ *
1899
2034
  * @returns Structure dimension object
1900
2035
  */
1901
2036
  getStructureDimension(): Dimension;
1902
2037
  /**
1903
2038
  * Get Variable
1904
2039
  *
2040
+ *
1905
2041
  * @returns Variable object
1906
2042
  */
1907
2043
  getVariable(
@@ -1913,12 +2049,14 @@ declare module "sap/sac/df/model/DataProvider" {
1913
2049
  /**
1914
2050
  * Get all variables
1915
2051
  *
2052
+ *
1916
2053
  * @returns Object of all variables
1917
2054
  */
1918
2055
  getVariables(): Record<string, Variable>;
1919
2056
  /**
1920
2057
  * Serialize the data provider state to a JSON representation
1921
2058
  *
2059
+ *
1922
2060
  * @returns A JSON object which represents the data provider
1923
2061
  */
1924
2062
  serialize(
@@ -1930,6 +2068,7 @@ declare module "sap/sac/df/model/DataProvider" {
1930
2068
  /**
1931
2069
  * Set the number of decimal places of a measure or cell
1932
2070
  *
2071
+ *
1933
2072
  * @returns Reference to this in order to allow method chaining
1934
2073
  */
1935
2074
  setDecimalPlaces(
@@ -1949,6 +2088,7 @@ declare module "sap/sac/df/model/DataProvider" {
1949
2088
  /**
1950
2089
  * Set the scaling factor of a measure or cell
1951
2090
  *
2091
+ *
1952
2092
  * @returns Reference to this in order to allow method chaining
1953
2093
  */
1954
2094
  setScalingFactor(
@@ -1969,6 +2109,7 @@ declare module "sap/sac/df/model/DataProvider" {
1969
2109
  * Checks whether an InA capability is supported by the server. Throws an error for unhandled capabilities.
1970
2110
  * List of handled capabilities can be seen in type {@link sap.sac.df.model.Capability}
1971
2111
  *
2112
+ *
1972
2113
  * @returns Returns true, if the capability is supported, else false
1973
2114
  */
1974
2115
  supportsCapability(
@@ -1986,9 +2127,6 @@ declare module "sap/sac/df/model/DataSourceInfo" {
1986
2127
  import Metadata from "sap/ui/base/Metadata";
1987
2128
 
1988
2129
  /**
1989
- * @since 1.119
1990
- * @experimental (since 1.119)
1991
- *
1992
2130
  * Data source information.
1993
2131
  *
1994
2132
  * **Structure of Exposed Data:**
@@ -2009,6 +2147,10 @@ declare module "sap/sac/df/model/DataSourceInfo" {
2009
2147
  * "LastUpdatedBy": "",
2010
2148
  * "LastUpdatedText": ""
2011
2149
  * ```
2150
+ *
2151
+ *
2152
+ * @since 1.119
2153
+ * @experimental (since 1.119)
2012
2154
  */
2013
2155
  export default class DataSourceInfo extends BaseObject {
2014
2156
  constructor();
@@ -2019,6 +2161,7 @@ declare module "sap/sac/df/model/DataSourceInfo" {
2019
2161
  *
2020
2162
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2021
2163
  *
2164
+ *
2022
2165
  * @returns Created class / constructor function
2023
2166
  */
2024
2167
  static extend<T extends Record<string, unknown>>(
@@ -2039,6 +2182,7 @@ declare module "sap/sac/df/model/DataSourceInfo" {
2039
2182
  /**
2040
2183
  * Returns a metadata object for class sap.sac.df.model.DataSourceInfo.
2041
2184
  *
2185
+ *
2042
2186
  * @returns Metadata object describing this class
2043
2187
  */
2044
2188
  static getMetadata(): Metadata;
@@ -2051,9 +2195,6 @@ declare module "sap/sac/df/model/Dimension" {
2051
2195
  import Metadata from "sap/ui/base/Metadata";
2052
2196
 
2053
2197
  /**
2054
- * @since 1.119
2055
- * @experimental (since 1.119)
2056
- *
2057
2198
  * Dimension Object
2058
2199
  *
2059
2200
  * **Structure of Exposed Data:**
@@ -2082,6 +2223,10 @@ declare module "sap/sac/df/model/Dimension" {
2082
2223
  * "SemanticObject": "
2083
2224
  * }]
2084
2225
  * ```
2226
+ *
2227
+ *
2228
+ * @since 1.119
2229
+ * @experimental (since 1.119)
2085
2230
  */
2086
2231
  export default class Dimension extends BaseObject {
2087
2232
  constructor();
@@ -2092,6 +2237,7 @@ declare module "sap/sac/df/model/Dimension" {
2092
2237
  *
2093
2238
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2094
2239
  *
2240
+ *
2095
2241
  * @returns Created class / constructor function
2096
2242
  */
2097
2243
  static extend<T extends Record<string, unknown>>(
@@ -2112,12 +2258,14 @@ declare module "sap/sac/df/model/Dimension" {
2112
2258
  /**
2113
2259
  * Returns a metadata object for class sap.sac.df.model.Dimension.
2114
2260
  *
2261
+ *
2115
2262
  * @returns Metadata object describing this class
2116
2263
  */
2117
2264
  static getMetadata(): Metadata;
2118
2265
  /**
2119
2266
  * Set Display Type of Dimension
2120
2267
  *
2268
+ *
2121
2269
  * @returns } resolving to the Dimension to allow chaining.
2122
2270
  */
2123
2271
  static setDimensionDisplay(
@@ -2129,6 +2277,7 @@ declare module "sap/sac/df/model/Dimension" {
2129
2277
  /**
2130
2278
  * Add dimension filters
2131
2279
  *
2280
+ *
2132
2281
  * @returns Reference to this in order to allow method chaining
2133
2282
  */
2134
2283
  addMemberFilter(
@@ -2144,6 +2293,7 @@ declare module "sap/sac/df/model/Dimension" {
2144
2293
  /**
2145
2294
  * Add a member filter by its key
2146
2295
  *
2296
+ *
2147
2297
  * @returns Reference to this in order to allow method chaining
2148
2298
  */
2149
2299
  addMemberFilterByKey(
@@ -2159,6 +2309,7 @@ declare module "sap/sac/df/model/Dimension" {
2159
2309
  /**
2160
2310
  * Clear the filter of a dimension
2161
2311
  *
2312
+ *
2162
2313
  * @returns Reference to this in order to allow method chaining
2163
2314
  */
2164
2315
  clearMemberFilter(
@@ -2170,30 +2321,35 @@ declare module "sap/sac/df/model/Dimension" {
2170
2321
  /**
2171
2322
  * Get effective dimension filters
2172
2323
  *
2324
+ *
2173
2325
  * @returns array of member filters
2174
2326
  */
2175
2327
  getMemberFilter(): /* was: sap.sac.df.model.MemberFilter */ any[];
2176
2328
  /**
2177
2329
  * Move dimension one position down on it's axis
2178
2330
  *
2331
+ *
2179
2332
  * @returns Reference to this in order to allow method chaining
2180
2333
  */
2181
2334
  moveDown(): this;
2182
2335
  /**
2183
2336
  * Move dimension one position up on it's axis
2184
2337
  *
2338
+ *
2185
2339
  * @returns Reference to this in order to allow method chaining
2186
2340
  */
2187
2341
  moveUp(): this;
2188
2342
  /**
2189
2343
  * Open a dialog to display and change the settings of a dimension of the `DataProvider`
2190
2344
  *
2345
+ *
2191
2346
  * @returns indicator whether the dialog was confirmed or canceled
2192
2347
  */
2193
2348
  openPropertyDialog(): Promise<boolean>;
2194
2349
  /**
2195
2350
  * Open a dialog to display and change the filter on a dimension
2196
2351
  *
2352
+ *
2197
2353
  * @returns resolving to a boolean which is false when the dialog is cancelled and true if is was closed
2198
2354
  * with Ok and dynamic filters of the given dimension are updated
2199
2355
  */
@@ -2206,6 +2362,7 @@ declare module "sap/sac/df/model/Dimension" {
2206
2362
  /**
2207
2363
  * Set Display Hierarchy
2208
2364
  *
2365
+ *
2209
2366
  * @returns resolving to the `Dimension` to allow chaining.
2210
2367
  */
2211
2368
  readHierarchy(
@@ -2217,12 +2374,14 @@ declare module "sap/sac/df/model/Dimension" {
2217
2374
  /**
2218
2375
  * Remove a drill operation on a dimension member
2219
2376
  *
2377
+ *
2220
2378
  * @returns Reference to this in order to allow method chaining
2221
2379
  */
2222
2380
  removeDrilldown(): this;
2223
2381
  /**
2224
2382
  * Remove the filter of a dimension
2225
2383
  *
2384
+ *
2226
2385
  * @returns Reference to this in order to allow method chaining
2227
2386
  */
2228
2387
  removeMemberFilter(
@@ -2238,6 +2397,7 @@ declare module "sap/sac/df/model/Dimension" {
2238
2397
  /**
2239
2398
  * Remove a member filter by its key
2240
2399
  *
2400
+ *
2241
2401
  * @returns Reference to this in order to allow method chaining
2242
2402
  */
2243
2403
  removeMemberFilterByKey(
@@ -2253,6 +2413,7 @@ declare module "sap/sac/df/model/Dimension" {
2253
2413
  /**
2254
2414
  * Performs the search for a given value
2255
2415
  *
2416
+ *
2256
2417
  * @returns array of found member filters
2257
2418
  */
2258
2419
  searchMember(
@@ -2285,6 +2446,7 @@ declare module "sap/sac/df/model/Dimension" {
2285
2446
  /**
2286
2447
  * Set Display Hierarchy
2287
2448
  *
2449
+ *
2288
2450
  * @returns resolving to the `Dimension` to allow chaining.
2289
2451
  */
2290
2452
  setDisplayHierarchy(
@@ -2304,6 +2466,7 @@ declare module "sap/sac/df/model/Dimension" {
2304
2466
  /**
2305
2467
  * Set dimension filters
2306
2468
  *
2469
+ *
2307
2470
  * @returns Reference to this in order to allow method chaining
2308
2471
  */
2309
2472
  setMemberFilter(
@@ -2319,6 +2482,7 @@ declare module "sap/sac/df/model/Dimension" {
2319
2482
  /**
2320
2483
  * Set a member filter by its key
2321
2484
  *
2485
+ *
2322
2486
  * @returns Reference to this in order to allow method chaining
2323
2487
  */
2324
2488
  setMemberFilterByKey(
@@ -2334,6 +2498,7 @@ declare module "sap/sac/df/model/Dimension" {
2334
2498
  /**
2335
2499
  * Sort the members of a dimension
2336
2500
  *
2501
+ *
2337
2502
  * @returns Promise referencing to this in order to allow method chaining
2338
2503
  */
2339
2504
  sort(
@@ -2353,12 +2518,14 @@ declare module "sap/sac/df/model/Dimension" {
2353
2518
  /**
2354
2519
  * Move dimension to the columns axis
2355
2520
  *
2521
+ *
2356
2522
  * @returns Reference to this in order to allow method chaining
2357
2523
  */
2358
2524
  toColumns(): this;
2359
2525
  /**
2360
2526
  * Move dimension to the rows axis
2361
2527
  *
2528
+ *
2362
2529
  * @returns Reference to this in order to allow method chaining
2363
2530
  */
2364
2531
  toRows(): this;
@@ -2371,10 +2538,10 @@ declare module "sap/sac/df/model/Document" {
2371
2538
  import Metadata from "sap/ui/base/Metadata";
2372
2539
 
2373
2540
  /**
2541
+ * Document Object
2542
+ *
2374
2543
  * @since 1.119
2375
2544
  * @experimental (since 1.119)
2376
- *
2377
- * Document Object
2378
2545
  */
2379
2546
  export default class Document extends BaseObject {
2380
2547
  constructor();
@@ -2385,6 +2552,7 @@ declare module "sap/sac/df/model/Document" {
2385
2552
  *
2386
2553
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2387
2554
  *
2555
+ *
2388
2556
  * @returns Created class / constructor function
2389
2557
  */
2390
2558
  static extend<T extends Record<string, unknown>>(
@@ -2405,12 +2573,14 @@ declare module "sap/sac/df/model/Document" {
2405
2573
  /**
2406
2574
  * Returns a metadata object for class sap.sac.df.model.Document.
2407
2575
  *
2576
+ *
2408
2577
  * @returns Metadata object describing this class
2409
2578
  */
2410
2579
  static getMetadata(): Metadata;
2411
2580
  /**
2412
2581
  * Creates a document in the document store
2413
2582
  *
2583
+ *
2414
2584
  * @returns a promise which resolves to true if create operation is successful, otherwise false.
2415
2585
  */
2416
2586
  createDocument(
@@ -2426,6 +2596,7 @@ declare module "sap/sac/df/model/Document" {
2426
2596
  /**
2427
2597
  * Creates a document ID for a data cell in the result set
2428
2598
  *
2599
+ *
2429
2600
  * @returns a promise which resolves with the newly created document ID
2430
2601
  */
2431
2602
  createDocumentId(
@@ -2441,6 +2612,7 @@ declare module "sap/sac/df/model/Document" {
2441
2612
  /**
2442
2613
  * Deletes a document in the document store
2443
2614
  *
2615
+ *
2444
2616
  * @returns a promise which resolves to true if delete operation is successful, otherwise false.
2445
2617
  */
2446
2618
  deleteDocument(
@@ -2452,6 +2624,7 @@ declare module "sap/sac/df/model/Document" {
2452
2624
  /**
2453
2625
  * Deletes a document ID for a data cell in the result set
2454
2626
  *
2627
+ *
2455
2628
  * @returns a promise which resolves to true if the delete operation is successful, otherwise false.
2456
2629
  */
2457
2630
  deleteDocumentId(
@@ -2467,6 +2640,7 @@ declare module "sap/sac/df/model/Document" {
2467
2640
  /**
2468
2641
  * Gets a document ID of a data cell in the result set
2469
2642
  *
2643
+ *
2470
2644
  * @returns a promise which resolves with the document ID
2471
2645
  */
2472
2646
  getDocumentId(
@@ -2482,12 +2656,14 @@ declare module "sap/sac/df/model/Document" {
2482
2656
  /**
2483
2657
  * Gets the type of DocumentsSupport.
2484
2658
  *
2659
+ *
2485
2660
  * @returns DocumentsSupport type
2486
2661
  */
2487
2662
  getDocumentsSupportType(): string;
2488
2663
  /**
2489
2664
  * Retrieves a document from the document store
2490
2665
  *
2666
+ *
2491
2667
  * @returns a promise which resolves with the version(s) of the document.
2492
2668
  */
2493
2669
  retrieveDocument(
@@ -2503,6 +2679,7 @@ declare module "sap/sac/df/model/Document" {
2503
2679
  /**
2504
2680
  * Retrieves multiple documents from the document store
2505
2681
  *
2682
+ *
2506
2683
  * @returns a promise which resolves with all documents and its versions.
2507
2684
  */
2508
2685
  retrieveMultipleDocuments(
@@ -2514,6 +2691,7 @@ declare module "sap/sac/df/model/Document" {
2514
2691
  /**
2515
2692
  * Updates a document in the document store
2516
2693
  *
2694
+ *
2517
2695
  * @returns a promise which resolves to true if update operation is successful, otherwise false.
2518
2696
  */
2519
2697
  updateDocument(
@@ -2537,10 +2715,10 @@ declare module "sap/sac/df/model/Grid" {
2537
2715
  import Metadata from "sap/ui/base/Metadata";
2538
2716
 
2539
2717
  /**
2718
+ * Grid Object
2719
+ *
2540
2720
  * @since 1.119
2541
2721
  * @experimental (since 1.119)
2542
- *
2543
- * Grid Object
2544
2722
  */
2545
2723
  export default class Grid extends BaseObject {
2546
2724
  constructor();
@@ -2555,6 +2733,7 @@ declare module "sap/sac/df/model/Grid" {
2555
2733
  *
2556
2734
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2557
2735
  *
2736
+ *
2558
2737
  * @returns Created class / constructor function
2559
2738
  */
2560
2739
  static extend<T extends Record<string, unknown>>(
@@ -2575,12 +2754,14 @@ declare module "sap/sac/df/model/Grid" {
2575
2754
  /**
2576
2755
  * Returns a metadata object for class sap.sac.df.model.Grid.
2577
2756
  *
2757
+ *
2578
2758
  * @returns Metadata object describing this class
2579
2759
  */
2580
2760
  static getMetadata(): Metadata;
2581
2761
  /**
2582
2762
  * Gets the cell context for a data cell in the result set
2583
2763
  *
2764
+ *
2584
2765
  * @returns a promise which resolves with the retrieved cell context
2585
2766
  */
2586
2767
  getCellContext(
@@ -2596,6 +2777,7 @@ declare module "sap/sac/df/model/Grid" {
2596
2777
  /**
2597
2778
  * Get the list of the jump targets associated to a cell defined via the Report-To-Report Interface.
2598
2779
  *
2780
+ *
2599
2781
  * @returns resolving to the List of jump targets.
2600
2782
  */
2601
2783
  getRRITargets(
@@ -2627,9 +2809,6 @@ declare module "sap/sac/df/model/MultiDimModel" {
2627
2809
  import Event from "sap/ui/base/Event";
2628
2810
 
2629
2811
  /**
2630
- * @since 1.119
2631
- * @experimental (since 1.119)
2632
- *
2633
2812
  * The multidimensional model allows to access and change data accessed via the InA Protocol. The multidimensional
2634
2813
  * model populate it's exposed data in JSON format via binding to controls.
2635
2814
  *
@@ -2640,6 +2819,10 @@ declare module "sap/sac/df/model/MultiDimModel" {
2640
2819
  * "VariableGroups": { },
2641
2820
  * "Messages": [ ]
2642
2821
  * ```
2822
+ *
2823
+ *
2824
+ * @since 1.119
2825
+ * @experimental (since 1.119)
2643
2826
  */
2644
2827
  export default class MultiDimModel extends JSONModel {
2645
2828
  /**
@@ -2676,6 +2859,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2676
2859
  *
2677
2860
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.json.JSONModel.extend}.
2678
2861
  *
2862
+ *
2679
2863
  * @returns Created class / constructor function
2680
2864
  */
2681
2865
  static extend<T extends Record<string, unknown>>(
@@ -2696,12 +2880,14 @@ declare module "sap/sac/df/model/MultiDimModel" {
2696
2880
  /**
2697
2881
  * Returns a metadata object for class sap.sac.df.model.MultiDimModel.
2698
2882
  *
2883
+ *
2699
2884
  * @returns Metadata object describing this class
2700
2885
  */
2701
2886
  static getMetadata(): Metadata;
2702
2887
  /**
2703
2888
  * Creates a new data provider and attaches it to the model.
2704
2889
  *
2890
+ *
2705
2891
  * @returns Promise which resolves the created data provider
2706
2892
  */
2707
2893
  addDataProvider(
@@ -2736,6 +2922,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2736
2922
  * A variable group defines which variables of the underlying data providers should behave as the same variable.
2737
2923
  * The group is defined by a name and a rule. The first added variable becomes automatically the `MergedVariable`.
2738
2924
  *
2925
+ *
2739
2926
  * @returns Promise which resolves the created variable group
2740
2927
  */
2741
2928
  addVariableGroup(
@@ -2756,6 +2943,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2756
2943
  /**
2757
2944
  * Updates the model from the given the model state including all aggregated data providers
2758
2945
  *
2946
+ *
2759
2947
  * @returns Promise with reference to this in order to allow method chaining
2760
2948
  */
2761
2949
  deserialize(
@@ -2771,6 +2959,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2771
2959
  /**
2772
2960
  * Fires event {@link #event:dataProviderAdded dataProviderAdded} to attached listeners.
2773
2961
  *
2962
+ *
2774
2963
  * @returns Reference to this in order to allow method chaining
2775
2964
  */
2776
2965
  fireDataProviderAdded(
@@ -2782,6 +2971,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2782
2971
  /**
2783
2972
  * Fires event {@link #event:dataProviderRemoved dataProviderRemoved} to attached listeners.
2784
2973
  *
2974
+ *
2785
2975
  * @returns Reference to this in order to allow method chaining
2786
2976
  */
2787
2977
  fireDataProviderRemoved(
@@ -2793,6 +2983,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2793
2983
  /**
2794
2984
  * Fires event {@link #event:dataProviderUpdated dataProviderUpdated} to attached listeners.
2795
2985
  *
2986
+ *
2796
2987
  * @returns Reference to this in order to allow method chaining
2797
2988
  */
2798
2989
  fireDataProviderUpdated(
@@ -2804,6 +2995,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2804
2995
  /**
2805
2996
  * Get a data provider
2806
2997
  *
2998
+ *
2807
2999
  * @returns Data provider instance if found
2808
3000
  */
2809
3001
  getDataProvider(
@@ -2815,18 +3007,21 @@ declare module "sap/sac/df/model/MultiDimModel" {
2815
3007
  /**
2816
3008
  * Get all data providers
2817
3009
  *
3010
+ *
2818
3011
  * @returns Object of all data providers
2819
3012
  */
2820
3013
  getDataProviders(): Record<string, DataProvider>;
2821
3014
  /**
2822
3015
  * Get all messages
2823
3016
  *
3017
+ *
2824
3018
  * @returns Array of messages
2825
3019
  */
2826
3020
  getMessages(): Message[];
2827
3021
  /**
2828
3022
  * Get a variable group
2829
3023
  *
3024
+ *
2830
3025
  * @returns Variable group object
2831
3026
  */
2832
3027
  getVariableGroup(
@@ -2838,18 +3033,21 @@ declare module "sap/sac/df/model/MultiDimModel" {
2838
3033
  /**
2839
3034
  * Get all variable groups
2840
3035
  *
3036
+ *
2841
3037
  * @returns Object of all variable groups
2842
3038
  */
2843
3039
  getVariableGroups(): Record<string, VariableGroup>;
2844
3040
  /**
2845
3041
  * Ensures all aggregated DataProviders are logged off.
2846
3042
  *
3043
+ *
2847
3044
  * @returns Promise which resolves when logoff is finished.
2848
3045
  */
2849
3046
  logoff(): Promise<void>;
2850
3047
  /**
2851
3048
  * Remove existing data provider from the model.
2852
3049
  *
3050
+ *
2853
3051
  * @returns Promise which resolves when the removing s finished
2854
3052
  */
2855
3053
  removeDataProvider(
@@ -2861,6 +3059,7 @@ declare module "sap/sac/df/model/MultiDimModel" {
2861
3059
  /**
2862
3060
  * Remove a variable group from the model
2863
3061
  *
3062
+ *
2864
3063
  * @returns Promise which resolves when the removing s finished
2865
3064
  */
2866
3065
  removeVariableGroup(
@@ -2872,12 +3071,14 @@ declare module "sap/sac/df/model/MultiDimModel" {
2872
3071
  /**
2873
3072
  * Reset the model to the initial state
2874
3073
  *
3074
+ *
2875
3075
  * @returns Promise which resolves when reset is finished.
2876
3076
  */
2877
3077
  resetModel(): Promise<void>;
2878
3078
  /**
2879
3079
  * Serialize the model with all aggregated data providers to a JSON representation
2880
3080
  *
3081
+ *
2881
3082
  * @returns A JSON object which represents the multidimensional model
2882
3083
  */
2883
3084
  serialize(
@@ -2896,30 +3097,53 @@ declare module "sap/sac/df/model/MultiDimModel" {
2896
3097
  mMessages: Record<string, Message[]>
2897
3098
  ): void;
2898
3099
  }
2899
-
3100
+ /**
3101
+ * Parameters of the MultiDimModel#dataProviderAdded event.
3102
+ */
2900
3103
  export interface MultiDimModel$DataProviderAddedEventParameters {}
2901
3104
 
3105
+ /**
3106
+ * Event object of the MultiDimModel#dataProviderAdded event.
3107
+ */
2902
3108
  export type MultiDimModel$DataProviderAddedEvent = Event<
2903
3109
  MultiDimModel$DataProviderAddedEventParameters,
2904
3110
  MultiDimModel
2905
3111
  >;
2906
3112
 
3113
+ /**
3114
+ * Parameters of the MultiDimModel#dataProviderRemoved event.
3115
+ */
2907
3116
  export interface MultiDimModel$DataProviderRemovedEventParameters {}
2908
3117
 
3118
+ /**
3119
+ * Event object of the MultiDimModel#dataProviderRemoved event.
3120
+ */
2909
3121
  export type MultiDimModel$DataProviderRemovedEvent = Event<
2910
3122
  MultiDimModel$DataProviderRemovedEventParameters,
2911
3123
  MultiDimModel
2912
3124
  >;
2913
3125
 
3126
+ /**
3127
+ * Parameters of the MultiDimModel#dataProviderUpdated event.
3128
+ */
2914
3129
  export interface MultiDimModel$DataProviderUpdatedEventParameters {}
2915
3130
 
3131
+ /**
3132
+ * Event object of the MultiDimModel#dataProviderUpdated event.
3133
+ */
2916
3134
  export type MultiDimModel$DataProviderUpdatedEvent = Event<
2917
3135
  MultiDimModel$DataProviderUpdatedEventParameters,
2918
3136
  MultiDimModel
2919
3137
  >;
2920
3138
 
3139
+ /**
3140
+ * Parameters of the MultiDimModel#loaded event.
3141
+ */
2921
3142
  export interface MultiDimModel$LoadedEventParameters {}
2922
3143
 
3144
+ /**
3145
+ * Event object of the MultiDimModel#loaded event.
3146
+ */
2923
3147
  export type MultiDimModel$LoadedEvent = Event<
2924
3148
  MultiDimModel$LoadedEventParameters,
2925
3149
  MultiDimModel
@@ -2932,9 +3156,6 @@ declare module "sap/sac/df/model/Variable" {
2932
3156
  import Metadata from "sap/ui/base/Metadata";
2933
3157
 
2934
3158
  /**
2935
- * @since 1.119
2936
- * @experimental (since 1.119)
2937
- *
2938
3159
  * Variable Object
2939
3160
  *
2940
3161
  * **Structure of Exposed Data:**
@@ -2954,6 +3175,10 @@ declare module "sap/sac/df/model/Variable" {
2954
3175
  * "DataProviderName": "",
2955
3176
  * "MemberFilter": []
2956
3177
  * ```
3178
+ *
3179
+ *
3180
+ * @since 1.119
3181
+ * @experimental (since 1.119)
2957
3182
  */
2958
3183
  export default class Variable extends BaseObject {
2959
3184
  constructor();
@@ -2964,6 +3189,7 @@ declare module "sap/sac/df/model/Variable" {
2964
3189
  *
2965
3190
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
2966
3191
  *
3192
+ *
2967
3193
  * @returns Created class / constructor function
2968
3194
  */
2969
3195
  static extend<T extends Record<string, unknown>>(
@@ -2984,12 +3210,14 @@ declare module "sap/sac/df/model/Variable" {
2984
3210
  /**
2985
3211
  * Returns a metadata object for class sap.sac.df.model.Variable.
2986
3212
  *
3213
+ *
2987
3214
  * @returns Metadata object describing this class
2988
3215
  */
2989
3216
  static getMetadata(): Metadata;
2990
3217
  /**
2991
3218
  * Add variable filters
2992
3219
  *
3220
+ *
2993
3221
  * @returns Reference to this in order to allow method chaining
2994
3222
  */
2995
3223
  addMemberFilter(
@@ -3005,6 +3233,7 @@ declare module "sap/sac/df/model/Variable" {
3005
3233
  /**
3006
3234
  * Add a member filter by its key
3007
3235
  *
3236
+ *
3008
3237
  * @returns Reference to this in order to allow method chaining
3009
3238
  */
3010
3239
  addMemberFilterByKey(
@@ -3020,6 +3249,7 @@ declare module "sap/sac/df/model/Variable" {
3020
3249
  /**
3021
3250
  * Clear variable filter
3022
3251
  *
3252
+ *
3023
3253
  * @returns Reference to this in order to allow method chaining
3024
3254
  */
3025
3255
  clearMemberFilter(
@@ -3031,12 +3261,14 @@ declare module "sap/sac/df/model/Variable" {
3031
3261
  /**
3032
3262
  * Get effective variable filters
3033
3263
  *
3264
+ *
3034
3265
  * @returns array of member filters
3035
3266
  */
3036
3267
  getMemberFilter(): /* was: sap.sac.df.model.MemberFilter */ any[];
3037
3268
  /**
3038
3269
  * Open a dialog to display and change the filter on a variable
3039
3270
  *
3271
+ *
3040
3272
  * @returns resolving to a boolean which is false when the dialog is cancelled and true if is was closed
3041
3273
  * with Ok and dynamic filters of the given dimension are updated
3042
3274
  */
@@ -3049,6 +3281,7 @@ declare module "sap/sac/df/model/Variable" {
3049
3281
  /**
3050
3282
  * Remove variable filter
3051
3283
  *
3284
+ *
3052
3285
  * @returns Reference to this in order to allow method chaining
3053
3286
  */
3054
3287
  removeMemberFilter(
@@ -3064,6 +3297,7 @@ declare module "sap/sac/df/model/Variable" {
3064
3297
  /**
3065
3298
  * Remove a member filter by its key
3066
3299
  *
3300
+ *
3067
3301
  * @returns Reference to this in order to allow method chaining
3068
3302
  */
3069
3303
  removeMemberFilterByKey(
@@ -3079,6 +3313,7 @@ declare module "sap/sac/df/model/Variable" {
3079
3313
  /**
3080
3314
  * Performs the search for a given value
3081
3315
  *
3316
+ *
3082
3317
  * @returns array of found member filters
3083
3318
  */
3084
3319
  searchMember(
@@ -3111,6 +3346,7 @@ declare module "sap/sac/df/model/Variable" {
3111
3346
  /**
3112
3347
  * Set variable filters
3113
3348
  *
3349
+ *
3114
3350
  * @returns Reference to this in order to allow method chaining
3115
3351
  */
3116
3352
  setMemberFilter(
@@ -3126,6 +3362,7 @@ declare module "sap/sac/df/model/Variable" {
3126
3362
  /**
3127
3363
  * Set a member filter by its key
3128
3364
  *
3365
+ *
3129
3366
  * @returns Reference to this in order to allow method chaining
3130
3367
  */
3131
3368
  setMemberFilterByKey(
@@ -3149,9 +3386,6 @@ declare module "sap/sac/df/model/VariableGroup" {
3149
3386
  import Metadata from "sap/ui/base/Metadata";
3150
3387
 
3151
3388
  /**
3152
- * @since 1.119
3153
- * @experimental (since 1.119)
3154
- *
3155
3389
  * Variable Group Object
3156
3390
  *
3157
3391
  * **Structure of Exposed Data:**
@@ -3161,6 +3395,10 @@ declare module "sap/sac/df/model/VariableGroup" {
3161
3395
  * "MergedVariable": { },
3162
3396
  * "Rule: function () {}
3163
3397
  * ```
3398
+ *
3399
+ *
3400
+ * @since 1.119
3401
+ * @experimental (since 1.119)
3164
3402
  */
3165
3403
  export default class VariableGroup extends BaseObject {
3166
3404
  constructor();
@@ -3180,6 +3418,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3180
3418
  *
3181
3419
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
3182
3420
  *
3421
+ *
3183
3422
  * @returns Created class / constructor function
3184
3423
  */
3185
3424
  static extend<T extends Record<string, unknown>>(
@@ -3200,12 +3439,14 @@ declare module "sap/sac/df/model/VariableGroup" {
3200
3439
  /**
3201
3440
  * Returns a metadata object for class sap.sac.df.model.VariableGroup.
3202
3441
  *
3442
+ *
3203
3443
  * @returns Metadata object describing this class
3204
3444
  */
3205
3445
  static getMetadata(): Metadata;
3206
3446
  /**
3207
3447
  * Add variable group filters
3208
3448
  *
3449
+ *
3209
3450
  * @returns Reference to this in order to allow method chaining
3210
3451
  */
3211
3452
  addMemberFilter(
@@ -3221,6 +3462,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3221
3462
  /**
3222
3463
  * Add a member filter by its key
3223
3464
  *
3465
+ *
3224
3466
  * @returns Reference to this in order to allow method chaining
3225
3467
  */
3226
3468
  addMemberFilterByKey(
@@ -3236,6 +3478,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3236
3478
  /**
3237
3479
  * Clear variable group filter
3238
3480
  *
3481
+ *
3239
3482
  * @returns Reference to this in order to allow method chaining
3240
3483
  */
3241
3484
  clearMemberFilter(
@@ -3247,6 +3490,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3247
3490
  /**
3248
3491
  * Get effective variable group filters
3249
3492
  *
3493
+ *
3250
3494
  * @returns array of member filters
3251
3495
  */
3252
3496
  getMemberFilter(): /* was: sap.sac.df.model.MemberFilter */ any[];
@@ -3255,6 +3499,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3255
3499
  * only teh VariableGroup.MergedVariable is updated. The variables of the aggregated DataProviders are updated
3256
3500
  * with the next ResultSet fetch
3257
3501
  *
3502
+ *
3258
3503
  * @returns to indicate if the VariableGroup has been updated
3259
3504
  */
3260
3505
  openValueHelpDialog(
@@ -3266,6 +3511,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3266
3511
  /**
3267
3512
  * Remove variable group filter
3268
3513
  *
3514
+ *
3269
3515
  * @returns Reference to this in order to allow method chaining
3270
3516
  */
3271
3517
  removeMemberFilter(
@@ -3281,6 +3527,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3281
3527
  /**
3282
3528
  * Remove a member filter by its key
3283
3529
  *
3530
+ *
3284
3531
  * @returns Reference to this in order to allow method chaining
3285
3532
  */
3286
3533
  removeMemberFilterByKey(
@@ -3296,6 +3543,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3296
3543
  /**
3297
3544
  * Performs the search in values of a given Variable
3298
3545
  *
3546
+ *
3299
3547
  * @returns array with found values
3300
3548
  */
3301
3549
  searchMember(
@@ -3328,6 +3576,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3328
3576
  /**
3329
3577
  * Set variable group filters
3330
3578
  *
3579
+ *
3331
3580
  * @returns Promise which resolve when the value is set
3332
3581
  */
3333
3582
  setMemberFilter(
@@ -3343,6 +3592,7 @@ declare module "sap/sac/df/model/VariableGroup" {
3343
3592
  /**
3344
3593
  * Set a member filter by its key
3345
3594
  *
3595
+ *
3346
3596
  * @returns Reference to this in order to allow method chaining
3347
3597
  */
3348
3598
  setMemberFilterByKey(