@sapui5/ts-types 1.101.1 → 1.102.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.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +375 -29
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +1 -669
  8. package/types/sap.f.d.ts +1785 -100
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +70 -2
  11. package/types/sap.fe.macros.d.ts +78 -34
  12. package/types/sap.fe.navigation.d.ts +144 -4
  13. package/types/sap.fe.templates.d.ts +26 -5
  14. package/types/sap.fe.test.d.ts +497 -2
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7203 -502
  17. package/types/sap.insights.d.ts +80 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16491 -1149
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +171 -15
  25. package/types/sap.sac.df.d.ts +1430 -215
  26. package/types/sap.sac.grid.d.ts +91 -8
  27. package/types/sap.suite.ui.commons.d.ts +5515 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +157 -69
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +3853 -276
  34. package/types/sap.ui.core.d.ts +6248 -313
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +238 -64
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +1 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +30 -1
  47. package/types/sap.ui.table.d.ts +1050 -80
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +2002 -197
  52. package/types/sap.ui.vk.d.ts +5353 -310
  53. package/types/sap.ui.vtm.d.ts +1130 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +1488 -49
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +902 -87
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +165 -20
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +227 -14
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.101.0
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace rules {
@@ -29,7 +29,8 @@ declare namespace sap {
29
29
  */
30
30
  valueHelpCallback?:
31
31
  | any
32
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
32
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
33
+ | `{${string}}`;
33
34
 
34
35
  /**
35
36
  * Path to a Vocabulary object in the model data, which is used for the definition of relative context bindings
@@ -58,6 +59,8 @@ declare namespace sap {
58
59
  * enriches it with the information contained in `oClassInfo`.
59
60
  *
60
61
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
62
+ *
63
+ * @returns Created class / constructor function
61
64
  */
62
65
  static extend<T extends Record<string, unknown>>(
63
66
  /**
@@ -79,6 +82,8 @@ declare namespace sap {
79
82
  ): Function;
80
83
  /**
81
84
  * Returns a metadata object for class sap.rules.ui.services.AstExpressionLanguage.
85
+ *
86
+ * @returns Metadata object describing this class
82
87
  */
83
88
  static getMetadata(): sap.ui.core.ElementMetadata;
84
89
  /**
@@ -86,6 +91,8 @@ declare namespace sap {
86
91
  *
87
92
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
88
93
  * otherwise it will be bound to this `sap.rules.ui.services.AstExpressionLanguage` itself.
94
+ *
95
+ * @returns Reference to `this` in order to allow method chaining
89
96
  */
90
97
  attachDataChange(
91
98
  /**
@@ -108,6 +115,8 @@ declare namespace sap {
108
115
  *
109
116
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
110
117
  * otherwise it will be bound to this `sap.rules.ui.services.AstExpressionLanguage` itself.
118
+ *
119
+ * @returns Reference to `this` in order to allow method chaining
111
120
  */
112
121
  attachDataChange(
113
122
  /**
@@ -124,6 +133,8 @@ declare namespace sap {
124
133
  * Detaches event handler `fnFunction` from the {@link #event:dataChange dataChange} event of this `sap.rules.ui.services.AstExpressionLanguage`.
125
134
  *
126
135
  * The passed function and listener object must match the ones used for event registration.
136
+ *
137
+ * @returns Reference to `this` in order to allow method chaining
127
138
  */
128
139
  detachDataChange(
129
140
  /**
@@ -137,6 +148,8 @@ declare namespace sap {
137
148
  ): this;
138
149
  /**
139
150
  * Fires event {@link #event:dataChange dataChange} to attached listeners.
151
+ *
152
+ * @returns Reference to `this` in order to allow method chaining
140
153
  */
141
154
  fireDataChange(
142
155
  /**
@@ -149,6 +162,8 @@ declare namespace sap {
149
162
  *
150
163
  * Path to a Vocabulary object in the model data, which is used for the definition of relative context bindings
151
164
  * inside the Ast Expression Language control (mandatory). Example: "/Vocabularies(Id='0050569181751ED683EFEEC6AA2B73C5')"
165
+ *
166
+ * @returns Value of property `bindingContextPath`
152
167
  */
153
168
  getBindingContextPath(): string;
154
169
  /**
@@ -158,6 +173,8 @@ declare namespace sap {
158
173
  * inside the Ast Expression Language control (mandatory). Example: "/Vocabularies(Id='0050569181751ED683EFEEC6AA2B73C5')"
159
174
  *
160
175
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
176
+ *
177
+ * @returns Reference to `this` in order to allow method chaining
161
178
  */
162
179
  setBindingContextPath(
163
180
  /**
@@ -182,6 +199,8 @@ declare namespace sap {
182
199
  * it with the information contained in `oClassInfo`.
183
200
  *
184
201
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
202
+ *
203
+ * @returns Created class / constructor function
185
204
  */
186
205
  static extend<T extends Record<string, unknown>>(
187
206
  /**
@@ -203,6 +222,8 @@ declare namespace sap {
203
222
  ): Function;
204
223
  /**
205
224
  * Returns a metadata object for class sap.rules.ui.services.ExpressionLanguage.
225
+ *
226
+ * @returns Metadata object describing this class
206
227
  */
207
228
  static getMetadata(): sap.ui.core.ElementMetadata;
208
229
  /**
@@ -210,6 +231,8 @@ declare namespace sap {
210
231
  *
211
232
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
212
233
  * otherwise it will be bound to this `sap.rules.ui.services.ExpressionLanguage` itself.
234
+ *
235
+ * @returns Reference to `this` in order to allow method chaining
213
236
  */
214
237
  attachDataChange(
215
238
  /**
@@ -232,6 +255,8 @@ declare namespace sap {
232
255
  *
233
256
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
234
257
  * otherwise it will be bound to this `sap.rules.ui.services.ExpressionLanguage` itself.
258
+ *
259
+ * @returns Reference to `this` in order to allow method chaining
235
260
  */
236
261
  attachDataChange(
237
262
  /**
@@ -248,6 +273,8 @@ declare namespace sap {
248
273
  * Detaches event handler `fnFunction` from the {@link #event:dataChange dataChange} event of this `sap.rules.ui.services.ExpressionLanguage`.
249
274
  *
250
275
  * The passed function and listener object must match the ones used for event registration.
276
+ *
277
+ * @returns Reference to `this` in order to allow method chaining
251
278
  */
252
279
  detachDataChange(
253
280
  /**
@@ -261,6 +288,8 @@ declare namespace sap {
261
288
  ): this;
262
289
  /**
263
290
  * Fires event {@link #event:dataChange dataChange} to attached listeners.
291
+ *
292
+ * @returns Reference to `this` in order to allow method chaining
264
293
  */
265
294
  fireDataChange(
266
295
  /**
@@ -273,6 +302,8 @@ declare namespace sap {
273
302
  *
274
303
  * Path to a Vocabulary object in the model data, which is used for the definition of relative context bindings
275
304
  * inside the Expression Language control (mandatory). Example: "/Vocabularies(Id='0050569181751ED683EFEEC6AA2B73C5')"
305
+ *
306
+ * @returns Value of property `bindingContextPath`
276
307
  */
277
308
  getBindingContextPath(): string;
278
309
  /**
@@ -281,6 +312,8 @@ declare namespace sap {
281
312
  * The valueHelpCallback is a function that receives by reference an array of value help metadata and adds
282
313
  * to each item an OData model instance. The OData model is used for suggesting allowed values and for validating
283
314
  * values that are used in the rule.
315
+ *
316
+ * @returns Value of property `valueHelpCallback`
284
317
  */
285
318
  getValueHelpCallback(): any;
286
319
  /**
@@ -290,6 +323,8 @@ declare namespace sap {
290
323
  * inside the Expression Language control (mandatory). Example: "/Vocabularies(Id='0050569181751ED683EFEEC6AA2B73C5')"
291
324
  *
292
325
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
326
+ *
327
+ * @returns Reference to `this` in order to allow method chaining
293
328
  */
294
329
  setBindingContextPath(
295
330
  /**
@@ -305,6 +340,8 @@ declare namespace sap {
305
340
  * values that are used in the rule.
306
341
  *
307
342
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
343
+ *
344
+ * @returns Reference to `this` in order to allow method chaining
308
345
  */
309
346
  setValueHelpCallback(
310
347
  /**
@@ -325,7 +362,8 @@ declare namespace sap {
325
362
  */
326
363
  cellFormat?:
327
364
  | sap.rules.ui.DecisionTableCellFormat
328
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
365
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
366
+ | `{${string}}`;
329
367
 
330
368
  /**
331
369
  * The value determines how the results of the decision table are evaluated when more than one rule is matched
@@ -333,7 +371,8 @@ declare namespace sap {
333
371
  */
334
372
  hitPolicies?:
335
373
  | sap.rules.ui.RuleHitPolicy[]
336
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
374
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
375
+ | `{${string}}`;
337
376
 
338
377
  /**
339
378
  * The value determines whether the Settings button is displayed in a decision table when the control is
@@ -341,11 +380,13 @@ declare namespace sap {
341
380
  */
342
381
  enableSettings?:
343
382
  | boolean
344
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
383
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
384
+ | `{${string}}`;
345
385
 
346
386
  enableSettingResult?:
347
387
  | boolean
348
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
388
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
389
+ | `{${string}}`;
349
390
 
350
391
  /**
351
392
  * The value determines whether the user can set the rendering of the decision Table to be based on cellFormat
@@ -353,19 +394,26 @@ declare namespace sap {
353
394
  */
354
395
  decisionTableFormat?:
355
396
  | sap.rules.ui.DecisionTableFormat
356
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
397
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
398
+ | `{${string}}`;
357
399
 
358
400
  /**
359
401
  * The threshold defines how many additional (not yet visible records) shall be pre-fetched to enable smooth
360
402
  * scrolling. The threshold is always added to the visibleRowCount. If the visibleRowCount is 10 and the
361
403
  * threshold is 100, there will be 110 records fetched with the initial load.
362
404
  */
363
- threshold?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
405
+ threshold?:
406
+ | int
407
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
408
+ | `{${string}}`;
364
409
 
365
410
  /**
366
411
  * Number of visible rows of the table.
367
412
  */
368
- visibleRowCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
413
+ visibleRowCount?:
414
+ | int
415
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
416
+ | `{${string}}`;
369
417
 
370
418
  change?: (oEvent: sap.ui.base.Event) => void;
371
419
  }
@@ -377,7 +425,8 @@ declare namespace sap {
377
425
  */
378
426
  types?:
379
427
  | sap.rules.ui.RuleType[]
380
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
428
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
429
+ | `{${string}}`;
381
430
 
382
431
  /**
383
432
  * Path to a Rule object in the model data, which is used for the definition of relative context bindings
@@ -390,7 +439,10 @@ declare namespace sap {
390
439
  /**
391
440
  * Indicates whether or not the controls of the RuleBuilder are editable.
392
441
  */
393
- editable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
442
+ editable?:
443
+ | boolean
444
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
445
+ | `{${string}}`;
394
446
 
395
447
  /**
396
448
  * Configuration for rule of type 'decision table'.
@@ -425,23 +477,31 @@ declare namespace sap {
425
477
  */
426
478
  enableSettings?:
427
479
  | boolean
428
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
480
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
481
+ | `{${string}}`;
429
482
 
430
483
  enableSettingResult?:
431
484
  | boolean
432
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
485
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
486
+ | `{${string}}`;
433
487
 
434
488
  /**
435
489
  * The value determines whether the Else section is displayed in a Text Rule when the control is used with
436
490
  * S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
437
491
  */
438
- enableElse?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
492
+ enableElse?:
493
+ | boolean
494
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
495
+ | `{${string}}`;
439
496
 
440
497
  /**
441
498
  * The value determines whether the Else If section is displayed in a Text Rule when the control is used
442
499
  * with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
443
500
  */
444
- enableElseIf?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
501
+ enableElseIf?:
502
+ | boolean
503
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
504
+ | `{${string}}`;
445
505
 
446
506
  change?: (oEvent: sap.ui.base.Event) => void;
447
507
  }
@@ -489,6 +549,8 @@ declare namespace sap {
489
549
  * it with the information contained in `oClassInfo`.
490
550
  *
491
551
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
552
+ *
553
+ * @returns Created class / constructor function
492
554
  */
493
555
  static extend<T extends Record<string, unknown>>(
494
556
  /**
@@ -510,6 +572,8 @@ declare namespace sap {
510
572
  ): Function;
511
573
  /**
512
574
  * Returns a metadata object for class sap.rules.ui.DecisionTableConfiguration.
575
+ *
576
+ * @returns Metadata object describing this class
513
577
  */
514
578
  static getMetadata(): sap.ui.core.ElementMetadata;
515
579
  /**
@@ -517,6 +581,8 @@ declare namespace sap {
517
581
  *
518
582
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
519
583
  * otherwise it will be bound to this `sap.rules.ui.DecisionTableConfiguration` itself.
584
+ *
585
+ * @returns Reference to `this` in order to allow method chaining
520
586
  */
521
587
  attachChange(
522
588
  /**
@@ -539,6 +605,8 @@ declare namespace sap {
539
605
  *
540
606
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
541
607
  * otherwise it will be bound to this `sap.rules.ui.DecisionTableConfiguration` itself.
608
+ *
609
+ * @returns Reference to `this` in order to allow method chaining
542
610
  */
543
611
  attachChange(
544
612
  /**
@@ -555,6 +623,8 @@ declare namespace sap {
555
623
  * Detaches event handler `fnFunction` from the {@link #event:change change} event of this `sap.rules.ui.DecisionTableConfiguration`.
556
624
  *
557
625
  * The passed function and listener object must match the ones used for event registration.
626
+ *
627
+ * @returns Reference to `this` in order to allow method chaining
558
628
  */
559
629
  detachChange(
560
630
  /**
@@ -568,6 +638,8 @@ declare namespace sap {
568
638
  ): this;
569
639
  /**
570
640
  * Fires event {@link #event:change change} to attached listeners.
641
+ *
642
+ * @returns Reference to `this` in order to allow method chaining
571
643
  */
572
644
  fireChange(
573
645
  /**
@@ -588,6 +660,8 @@ declare namespace sap {
588
660
  * rule.
589
661
  *
590
662
  * Default value is `Both`.
663
+ *
664
+ * @returns Value of property `cellFormat`
591
665
  */
592
666
  getCellFormat(): sap.rules.ui.DecisionTableCellFormat;
593
667
  /**
@@ -597,12 +671,16 @@ declare namespace sap {
597
671
  * or rule Format
598
672
  *
599
673
  * Default value is `CellFormat`.
674
+ *
675
+ * @returns Value of property `decisionTableFormat`
600
676
  */
601
677
  getDecisionTableFormat(): sap.rules.ui.DecisionTableFormat;
602
678
  /**
603
679
  * Gets current value of property {@link #getEnableSettingResult enableSettingResult}.
604
680
  *
605
681
  * Default value is `true`.
682
+ *
683
+ * @returns Value of property `enableSettingResult`
606
684
  */
607
685
  getEnableSettingResult(): boolean;
608
686
  /**
@@ -612,6 +690,8 @@ declare namespace sap {
612
690
  * used with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
613
691
  *
614
692
  * Default value is `false`.
693
+ *
694
+ * @returns Value of property `enableSettings`
615
695
  */
616
696
  getEnableSettings(): boolean;
617
697
  /**
@@ -621,6 +701,8 @@ declare namespace sap {
621
701
  * for a given set of inputs.
622
702
  *
623
703
  * Default value is `[FirstMatch, AllMatch]`.
704
+ *
705
+ * @returns Value of property `hitPolicies`
624
706
  */
625
707
  getHitPolicies(): sap.rules.ui.RuleHitPolicy[];
626
708
  /**
@@ -631,6 +713,8 @@ declare namespace sap {
631
713
  * threshold is 100, there will be 110 records fetched with the initial load.
632
714
  *
633
715
  * Default value is `30`.
716
+ *
717
+ * @returns Value of property `threshold`
634
718
  */
635
719
  getThreshold(): int;
636
720
  /**
@@ -639,6 +723,8 @@ declare namespace sap {
639
723
  * Number of visible rows of the table.
640
724
  *
641
725
  * Default value is `30`.
726
+ *
727
+ * @returns Value of property `visibleRowCount`
642
728
  */
643
729
  getVisibleRowCount(): int;
644
730
  /**
@@ -652,6 +738,8 @@ declare namespace sap {
652
738
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
653
739
  *
654
740
  * Default value is `Both`.
741
+ *
742
+ * @returns Reference to `this` in order to allow method chaining
655
743
  */
656
744
  setCellFormat(
657
745
  /**
@@ -668,6 +756,8 @@ declare namespace sap {
668
756
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
669
757
  *
670
758
  * Default value is `CellFormat`.
759
+ *
760
+ * @returns Reference to `this` in order to allow method chaining
671
761
  */
672
762
  setDecisionTableFormat(
673
763
  /**
@@ -681,6 +771,8 @@ declare namespace sap {
681
771
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
682
772
  *
683
773
  * Default value is `true`.
774
+ *
775
+ * @returns Reference to `this` in order to allow method chaining
684
776
  */
685
777
  setEnableSettingResult(
686
778
  /**
@@ -697,6 +789,8 @@ declare namespace sap {
697
789
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
698
790
  *
699
791
  * Default value is `false`.
792
+ *
793
+ * @returns Reference to `this` in order to allow method chaining
700
794
  */
701
795
  setEnableSettings(
702
796
  /**
@@ -713,6 +807,8 @@ declare namespace sap {
713
807
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
714
808
  *
715
809
  * Default value is `[FirstMatch, AllMatch]`.
810
+ *
811
+ * @returns Reference to `this` in order to allow method chaining
716
812
  */
717
813
  setHitPolicies(
718
814
  /**
@@ -730,6 +826,8 @@ declare namespace sap {
730
826
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
731
827
  *
732
828
  * Default value is `30`.
829
+ *
830
+ * @returns Reference to `this` in order to allow method chaining
733
831
  */
734
832
  setThreshold(
735
833
  /**
@@ -745,6 +843,8 @@ declare namespace sap {
745
843
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
746
844
  *
747
845
  * Default value is `30`.
846
+ *
847
+ * @returns Reference to `this` in order to allow method chaining
748
848
  */
749
849
  setVisibleRowCount(
750
850
  /**
@@ -793,6 +893,8 @@ declare namespace sap {
793
893
  * the information contained in `oClassInfo`.
794
894
  *
795
895
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
896
+ *
897
+ * @returns Created class / constructor function
796
898
  */
797
899
  static extend<T extends Record<string, unknown>>(
798
900
  /**
@@ -811,14 +913,20 @@ declare namespace sap {
811
913
  ): Function;
812
914
  /**
813
915
  * Returns a metadata object for class sap.rules.ui.RuleBuilder.
916
+ *
917
+ * @returns Metadata object describing this class
814
918
  */
815
919
  static getMetadata(): sap.ui.core.ElementMetadata;
816
920
  /**
817
921
  * Destroys the decisionTableConfiguration in the aggregation {@link #getDecisionTableConfiguration decisionTableConfiguration}.
922
+ *
923
+ * @returns Reference to `this` in order to allow method chaining
818
924
  */
819
925
  destroyDecisionTableConfiguration(): this;
820
926
  /**
821
927
  * Destroys the textRuleConfiguration in the aggregation {@link #getTextRuleConfiguration textRuleConfiguration}.
928
+ *
929
+ * @returns Reference to `this` in order to allow method chaining
822
930
  */
823
931
  destroyTextRuleConfiguration(): this;
824
932
  /**
@@ -831,6 +939,8 @@ declare namespace sap {
831
939
  *
832
940
  * Path to a Rule object in the model data, which is used for the definition of relative context bindings
833
941
  * inside the RuleBuilder control (mandatory). Example: "/Rules(Id='0050569181751ED683EFEEC6AA2B73C5',Version='000001')"
942
+ *
943
+ * @returns Value of property `bindingContextPath`
834
944
  */
835
945
  getBindingContextPath(): string;
836
946
  /**
@@ -845,6 +955,8 @@ declare namespace sap {
845
955
  * Indicates whether or not the controls of the RuleBuilder are editable.
846
956
  *
847
957
  * Default value is `true`.
958
+ *
959
+ * @returns Value of property `editable`
848
960
  */
849
961
  getEditable(): boolean;
850
962
  /**
@@ -865,10 +977,14 @@ declare namespace sap {
865
977
  * types will be available for selection. If only one type exists, the Rule Builder will open it automatically.
866
978
  *
867
979
  * Default value is `[DecisionTable, TextRule]`.
980
+ *
981
+ * @returns Value of property `types`
868
982
  */
869
983
  getTypes(): sap.rules.ui.RuleType[];
870
984
  /**
871
985
  * Sets the associated {@link #getAstExpressionLanguage astExpressionLanguage}.
986
+ *
987
+ * @returns Reference to `this` in order to allow method chaining
872
988
  */
873
989
  setAstExpressionLanguage(
874
990
  /**
@@ -886,6 +1002,8 @@ declare namespace sap {
886
1002
  * inside the RuleBuilder control (mandatory). Example: "/Rules(Id='0050569181751ED683EFEEC6AA2B73C5',Version='000001')"
887
1003
  *
888
1004
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1005
+ *
1006
+ * @returns Reference to `this` in order to allow method chaining
889
1007
  */
890
1008
  setBindingContextPath(
891
1009
  /**
@@ -895,6 +1013,8 @@ declare namespace sap {
895
1013
  ): this;
896
1014
  /**
897
1015
  * Sets the aggregated {@link #getDecisionTableConfiguration decisionTableConfiguration}.
1016
+ *
1017
+ * @returns Reference to `this` in order to allow method chaining
898
1018
  */
899
1019
  setDecisionTableConfiguration(
900
1020
  /**
@@ -910,6 +1030,8 @@ declare namespace sap {
910
1030
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
911
1031
  *
912
1032
  * Default value is `true`.
1033
+ *
1034
+ * @returns Reference to `this` in order to allow method chaining
913
1035
  */
914
1036
  setEditable(
915
1037
  /**
@@ -919,6 +1041,8 @@ declare namespace sap {
919
1041
  ): this;
920
1042
  /**
921
1043
  * Sets the associated {@link #getExpressionLanguage expressionLanguage}.
1044
+ *
1045
+ * @returns Reference to `this` in order to allow method chaining
922
1046
  */
923
1047
  setExpressionLanguage(
924
1048
  /**
@@ -931,6 +1055,8 @@ declare namespace sap {
931
1055
  ): this;
932
1056
  /**
933
1057
  * Sets the aggregated {@link #getTextRuleConfiguration textRuleConfiguration}.
1058
+ *
1059
+ * @returns Reference to `this` in order to allow method chaining
934
1060
  */
935
1061
  setTextRuleConfiguration(
936
1062
  /**
@@ -947,6 +1073,8 @@ declare namespace sap {
947
1073
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
948
1074
  *
949
1075
  * Default value is `[DecisionTable, TextRule]`.
1076
+ *
1077
+ * @returns Reference to `this` in order to allow method chaining
950
1078
  */
951
1079
  setTypes(
952
1080
  /**
@@ -998,6 +1126,8 @@ declare namespace sap {
998
1126
  * it with the information contained in `oClassInfo`.
999
1127
  *
1000
1128
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1129
+ *
1130
+ * @returns Created class / constructor function
1001
1131
  */
1002
1132
  static extend<T extends Record<string, unknown>>(
1003
1133
  /**
@@ -1016,6 +1146,8 @@ declare namespace sap {
1016
1146
  ): Function;
1017
1147
  /**
1018
1148
  * Returns a metadata object for class sap.rules.ui.TextRuleConfiguration.
1149
+ *
1150
+ * @returns Metadata object describing this class
1019
1151
  */
1020
1152
  static getMetadata(): sap.ui.core.ElementMetadata;
1021
1153
  /**
@@ -1023,6 +1155,8 @@ declare namespace sap {
1023
1155
  *
1024
1156
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1025
1157
  * otherwise it will be bound to this `sap.rules.ui.TextRuleConfiguration` itself.
1158
+ *
1159
+ * @returns Reference to `this` in order to allow method chaining
1026
1160
  */
1027
1161
  attachChange(
1028
1162
  /**
@@ -1045,6 +1179,8 @@ declare namespace sap {
1045
1179
  *
1046
1180
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1047
1181
  * otherwise it will be bound to this `sap.rules.ui.TextRuleConfiguration` itself.
1182
+ *
1183
+ * @returns Reference to `this` in order to allow method chaining
1048
1184
  */
1049
1185
  attachChange(
1050
1186
  /**
@@ -1061,6 +1197,8 @@ declare namespace sap {
1061
1197
  * Detaches event handler `fnFunction` from the {@link #event:change change} event of this `sap.rules.ui.TextRuleConfiguration`.
1062
1198
  *
1063
1199
  * The passed function and listener object must match the ones used for event registration.
1200
+ *
1201
+ * @returns Reference to `this` in order to allow method chaining
1064
1202
  */
1065
1203
  detachChange(
1066
1204
  /**
@@ -1074,6 +1212,8 @@ declare namespace sap {
1074
1212
  ): this;
1075
1213
  /**
1076
1214
  * Fires event {@link #event:change change} to attached listeners.
1215
+ *
1216
+ * @returns Reference to `this` in order to allow method chaining
1077
1217
  */
1078
1218
  fireChange(
1079
1219
  /**
@@ -1092,6 +1232,8 @@ declare namespace sap {
1092
1232
  * S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
1093
1233
  *
1094
1234
  * Default value is `true`.
1235
+ *
1236
+ * @returns Value of property `enableElse`
1095
1237
  */
1096
1238
  getEnableElse(): boolean;
1097
1239
  /**
@@ -1101,12 +1243,16 @@ declare namespace sap {
1101
1243
  * with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
1102
1244
  *
1103
1245
  * Default value is `true`.
1246
+ *
1247
+ * @returns Value of property `enableElseIf`
1104
1248
  */
1105
1249
  getEnableElseIf(): boolean;
1106
1250
  /**
1107
1251
  * Gets current value of property {@link #getEnableSettingResult enableSettingResult}.
1108
1252
  *
1109
1253
  * Default value is `true`.
1254
+ *
1255
+ * @returns Value of property `enableSettingResult`
1110
1256
  */
1111
1257
  getEnableSettingResult(): boolean;
1112
1258
  /**
@@ -1116,6 +1262,8 @@ declare namespace sap {
1116
1262
  * with S/4 HANA 17.05 (Cloud) or 17.09 (On Premise) and higher (On Premise).
1117
1263
  *
1118
1264
  * Default value is `false`.
1265
+ *
1266
+ * @returns Value of property `enableSettings`
1119
1267
  */
1120
1268
  getEnableSettings(): boolean;
1121
1269
  /**
@@ -1127,6 +1275,8 @@ declare namespace sap {
1127
1275
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1128
1276
  *
1129
1277
  * Default value is `true`.
1278
+ *
1279
+ * @returns Reference to `this` in order to allow method chaining
1130
1280
  */
1131
1281
  setEnableElse(
1132
1282
  /**
@@ -1143,6 +1293,8 @@ declare namespace sap {
1143
1293
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1144
1294
  *
1145
1295
  * Default value is `true`.
1296
+ *
1297
+ * @returns Reference to `this` in order to allow method chaining
1146
1298
  */
1147
1299
  setEnableElseIf(
1148
1300
  /**
@@ -1156,6 +1308,8 @@ declare namespace sap {
1156
1308
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1157
1309
  *
1158
1310
  * Default value is `true`.
1311
+ *
1312
+ * @returns Reference to `this` in order to allow method chaining
1159
1313
  */
1160
1314
  setEnableSettingResult(
1161
1315
  /**
@@ -1172,6 +1326,8 @@ declare namespace sap {
1172
1326
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1173
1327
  *
1174
1328
  * Default value is `false`.
1329
+ *
1330
+ * @returns Reference to `this` in order to allow method chaining
1175
1331
  */
1176
1332
  setEnableSettings(
1177
1333
  /**