@sapui5/ts-types 1.122.2 → 1.123.1

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 (66) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +5 -5
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +404 -3
  5. package/types/sap.chart.d.ts +58 -3
  6. package/types/sap.collaboration.d.ts +52 -3
  7. package/types/sap.esh.search.ui.d.ts +2152 -2
  8. package/types/sap.f.d.ts +432 -46
  9. package/types/sap.fe.core.d.ts +20 -15
  10. package/types/sap.fe.macros.d.ts +1048 -21
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  14. package/types/sap.fe.templates.d.ts +8 -6
  15. package/types/sap.fe.test.d.ts +288 -7
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +1067 -15
  19. package/types/sap.insights.d.ts +4 -1
  20. package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
  21. package/types/sap.makit.d.ts +115 -2
  22. package/types/sap.me.d.ts +84 -2
  23. package/types/sap.ndc.d.ts +22 -1
  24. package/types/sap.ovp.d.ts +1 -1
  25. package/types/sap.rules.ui.d.ts +44 -8
  26. package/types/sap.sac.df.d.ts +111 -60
  27. package/types/sap.suite.ui.commons.d.ts +1148 -2174
  28. package/types/sap.suite.ui.generic.template.d.ts +10 -1
  29. package/types/sap.suite.ui.microchart.d.ts +190 -2
  30. package/types/sap.tnt.d.ts +46 -2
  31. package/types/sap.ui.codeeditor.d.ts +16 -1
  32. package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
  33. package/types/sap.ui.comp.d.ts +964 -86
  34. package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
  35. package/types/sap.ui.dt.d.ts +3 -0
  36. package/types/sap.ui.export.d.ts +22 -4
  37. package/types/sap.ui.fl.d.ts +40 -1
  38. package/types/sap.ui.generic.app.d.ts +217 -203
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +147 -5
  41. package/types/sap.ui.layout.d.ts +171 -8
  42. package/types/sap.ui.mdc.d.ts +554 -33
  43. package/types/sap.ui.richtexteditor.d.ts +28 -2
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +27 -2
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +278 -57
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +481 -9
  50. package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
  51. package/types/sap.ui.vbm.d.ts +544 -2
  52. package/types/sap.ui.vk.d.ts +1580 -39
  53. package/types/sap.ui.vtm.d.ts +373 -2
  54. package/types/sap.ui.webc.common.d.ts +7 -2
  55. package/types/sap.ui.webc.fiori.d.ts +351 -2
  56. package/types/sap.ui.webc.main.d.ts +1035 -2
  57. package/types/sap.uiext.inbox.d.ts +124 -2
  58. package/types/sap.ushell.d.ts +1001 -322
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +123 -6
  61. package/types/sap.viz.d.ts +2619 -5
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +35 -10
  64. package/types/sap.zen.crosstab.d.ts +22 -7
  65. package/types/sap.zen.dsh.d.ts +64 -8
  66. package/types/dt-1.122.0-d.ts +0 -3
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -28,7 +28,9 @@ declare namespace sap {
28
28
  basicSearch: string | undefined;
29
29
  };
30
30
  }
31
-
31
+ /**
32
+ * Describes the settings that can be provided to the FilterBar constructor.
33
+ */
32
34
  interface $FilterBarSettings extends sap.ui.core.$ControlSettings {
33
35
  /**
34
36
  * Key used to access personalization data. Only if the persistencyKey is provided, will the `VariantManagement`
@@ -61,7 +63,7 @@ declare namespace sap {
61
63
  /**
62
64
  * Enables/disables the Search button.
63
65
  *
64
- * @deprecated (since 1.32.0)
66
+ * @deprecated (since 1.32.0) - with no replacement.
65
67
  */
66
68
  searchEnabled?:
67
69
  | boolean
@@ -113,7 +115,7 @@ declare namespace sap {
113
115
  /**
114
116
  * Handles visibility of the Clear button on the Filters dialog.
115
117
  *
116
- * @deprecated (since 1.84)
118
+ * @deprecated (since 1.84) - with no replacement. Users can select any Variant instead.
117
119
  */
118
120
  showClearButton?:
119
121
  | boolean
@@ -410,7 +412,7 @@ declare namespace sap {
410
412
  * This event is fired when the Go button on the filters dialog is pressed.
411
413
  *
412
414
  * @since 1.48.0
413
- * @deprecated (since 1.84)
415
+ * @deprecated (since 1.84) - with no replacement.
414
416
  */
415
417
  filtersDialogSearch?: (oEvent: sap.ui.base.Event) => void;
416
418
 
@@ -425,7 +427,7 @@ declare namespace sap {
425
427
  * This event is fired when search field of the filter dialog is changed.
426
428
  *
427
429
  * @since 1.48.0
428
- * @deprecated (since 1.84)
430
+ * @deprecated (since 1.84) - with no replacement.
429
431
  */
430
432
  filtersDialogSearchForFilters?: (
431
433
  oEvent: FilterBar$FiltersDialogSearchForFiltersEvent
@@ -441,6 +443,9 @@ declare namespace sap {
441
443
  assignedFiltersChanged?: (oEvent: sap.ui.base.Event) => void;
442
444
  }
443
445
 
446
+ /**
447
+ * Describes the settings that can be provided to the FilterGroupItem constructor.
448
+ */
444
449
  interface $FilterGroupItemSettings
445
450
  extends sap.ui.comp.filterbar.$FilterItemSettings {
446
451
  /**
@@ -466,6 +471,9 @@ declare namespace sap {
466
471
  | `{${string}}`;
467
472
  }
468
473
 
474
+ /**
475
+ * Describes the settings that can be provided to the FilterItem constructor.
476
+ */
469
477
  interface $FilterItemSettings extends sap.ui.core.$ElementSettings {
470
478
  /**
471
479
  * Label of the filter.
@@ -569,6 +577,9 @@ declare namespace sap {
569
577
  change?: (oEvent: FilterItem$ChangeEvent) => void;
570
578
  }
571
579
 
580
+ /**
581
+ * Parameters of the FilterBar#afterVariantLoad event.
582
+ */
572
583
  interface FilterBar$AfterVariantLoadEventParameters {
573
584
  /**
574
585
  * Context of the event. Can also be `null` or `undefined`
@@ -581,12 +592,24 @@ declare namespace sap {
581
592
  executeOnSelect?: boolean;
582
593
  }
583
594
 
595
+ /**
596
+ * Parameters of the FilterBar#afterVariantSave event.
597
+ */
584
598
  interface FilterBar$AfterVariantSaveEventParameters {}
585
599
 
600
+ /**
601
+ * Parameters of the FilterBar#assignedFiltersChanged event.
602
+ */
586
603
  interface FilterBar$AssignedFiltersChangedEventParameters {}
587
604
 
605
+ /**
606
+ * Parameters of the FilterBar#beforeVariantFetch event.
607
+ */
588
608
  interface FilterBar$BeforeVariantFetchEventParameters {}
589
609
 
610
+ /**
611
+ * Parameters of the FilterBar#beforeVariantSave event.
612
+ */
590
613
  interface FilterBar$BeforeVariantSaveEventParameters {
591
614
  /**
592
615
  * Context of the event. Can also be `null` or `undefined`
@@ -594,8 +617,14 @@ declare namespace sap {
594
617
  context?: string;
595
618
  }
596
619
 
620
+ /**
621
+ * Parameters of the FilterBar#cancel event.
622
+ */
597
623
  interface FilterBar$CancelEventParameters {}
598
624
 
625
+ /**
626
+ * Parameters of the FilterBar#clear event.
627
+ */
599
628
  interface FilterBar$ClearEventParameters {
600
629
  /**
601
630
  * Visible controls
@@ -603,6 +632,9 @@ declare namespace sap {
603
632
  selectionSet?: sap.ui.core.Control[];
604
633
  }
605
634
 
635
+ /**
636
+ * Parameters of the FilterBar#filterChange event.
637
+ */
606
638
  interface FilterBar$FilterChangeEventParameters {
607
639
  /**
608
640
  * This property is provided, whenever a filter is added via the add/remove filters dialog.
@@ -620,10 +652,19 @@ declare namespace sap {
620
652
  filterItem?: sap.ui.comp.filterbar.FilterGroupItem;
621
653
  }
622
654
 
655
+ /**
656
+ * Parameters of the FilterBar#filtersDialogBeforeOpen event.
657
+ */
623
658
  interface FilterBar$FiltersDialogBeforeOpenEventParameters {}
624
659
 
660
+ /**
661
+ * Parameters of the FilterBar#filtersDialogCancel event.
662
+ */
625
663
  interface FilterBar$FiltersDialogCancelEventParameters {}
626
664
 
665
+ /**
666
+ * Parameters of the FilterBar#filtersDialogClosed event.
667
+ */
627
668
  interface FilterBar$FiltersDialogClosedEventParameters {
628
669
  /**
629
670
  * Context of the event. Can also be `null` or `undefined`
@@ -631,8 +672,18 @@ declare namespace sap {
631
672
  context?: string;
632
673
  }
633
674
 
675
+ /**
676
+ * Parameters of the FilterBar#filtersDialogSearch event.
677
+ *
678
+ * @deprecated (since 1.84) - with no replacement.
679
+ */
634
680
  interface FilterBar$FiltersDialogSearchEventParameters {}
635
681
 
682
+ /**
683
+ * Parameters of the FilterBar#filtersDialogSearchForFilters event.
684
+ *
685
+ * @deprecated (since 1.84) - with no replacement.
686
+ */
636
687
  interface FilterBar$FiltersDialogSearchForFiltersEventParameters {
637
688
  /**
638
689
  * Contains the entered search filed value
@@ -640,10 +691,19 @@ declare namespace sap {
640
691
  newValue?: string;
641
692
  }
642
693
 
694
+ /**
695
+ * Parameters of the FilterBar#initialise event.
696
+ */
643
697
  interface FilterBar$InitialiseEventParameters {}
644
698
 
699
+ /**
700
+ * Parameters of the FilterBar#initialized event.
701
+ */
645
702
  interface FilterBar$InitializedEventParameters {}
646
703
 
704
+ /**
705
+ * Parameters of the FilterBar#reset event.
706
+ */
647
707
  interface FilterBar$ResetEventParameters {
648
708
  /**
649
709
  * Visible controls
@@ -651,6 +711,9 @@ declare namespace sap {
651
711
  selectionSet?: sap.ui.core.Control[];
652
712
  }
653
713
 
714
+ /**
715
+ * Parameters of the FilterBar#search event.
716
+ */
654
717
  interface FilterBar$SearchEventParameters {
655
718
  /**
656
719
  * Visible controls
@@ -663,6 +726,9 @@ declare namespace sap {
663
726
  firedFromFilterBar?: boolean;
664
727
  }
665
728
 
729
+ /**
730
+ * Parameters of the FilterItem#change event.
731
+ */
666
732
  interface FilterItem$ChangeEventParameters {
667
733
  /**
668
734
  * Name of the changed property
@@ -854,7 +920,7 @@ declare namespace sap {
854
920
  * will be added. The content will be set to visible, all other filters dialog content will be set to invisible.
855
921
  * Not implemented yet for the new Adapt Filters Dialog
856
922
  *
857
- * @deprecated (since 1.84)
923
+ * @deprecated (since 1.84) - with no replacement.
858
924
  *
859
925
  * @returns `oContent` added or `null` when filters dialog is not active
860
926
  */
@@ -1470,7 +1536,7 @@ declare namespace sap {
1470
1536
  * This event is fired when the Go button on the filters dialog is pressed.
1471
1537
  *
1472
1538
  * @since 1.48.0
1473
- * @deprecated (since 1.84)
1539
+ * @deprecated (since 1.84) - with no replacement.
1474
1540
  *
1475
1541
  * @returns Reference to `this` in order to allow method chaining
1476
1542
  */
@@ -1499,7 +1565,7 @@ declare namespace sap {
1499
1565
  * This event is fired when the Go button on the filters dialog is pressed.
1500
1566
  *
1501
1567
  * @since 1.48.0
1502
- * @deprecated (since 1.84)
1568
+ * @deprecated (since 1.84) - with no replacement.
1503
1569
  *
1504
1570
  * @returns Reference to `this` in order to allow method chaining
1505
1571
  */
@@ -1523,7 +1589,7 @@ declare namespace sap {
1523
1589
  * This event is fired when search field of the filter dialog is changed.
1524
1590
  *
1525
1591
  * @since 1.48.0
1526
- * @deprecated (since 1.84)
1592
+ * @deprecated (since 1.84) - with no replacement.
1527
1593
  *
1528
1594
  * @returns Reference to `this` in order to allow method chaining
1529
1595
  */
@@ -1554,7 +1620,7 @@ declare namespace sap {
1554
1620
  * This event is fired when search field of the filter dialog is changed.
1555
1621
  *
1556
1622
  * @since 1.48.0
1557
- * @deprecated (since 1.84)
1623
+ * @deprecated (since 1.84) - with no replacement.
1558
1624
  *
1559
1625
  * @returns Reference to `this` in order to allow method chaining
1560
1626
  */
@@ -2009,7 +2075,7 @@ declare namespace sap {
2009
2075
  * The passed function and listener object must match the ones used for event registration.
2010
2076
  *
2011
2077
  * @since 1.48.0
2012
- * @deprecated (since 1.84)
2078
+ * @deprecated (since 1.84) - with no replacement.
2013
2079
  *
2014
2080
  * @returns Reference to `this` in order to allow method chaining
2015
2081
  */
@@ -2030,7 +2096,7 @@ declare namespace sap {
2030
2096
  * The passed function and listener object must match the ones used for event registration.
2031
2097
  *
2032
2098
  * @since 1.48.0
2033
- * @deprecated (since 1.84)
2099
+ * @deprecated (since 1.84) - with no replacement.
2034
2100
  *
2035
2101
  * @returns Reference to `this` in order to allow method chaining
2036
2102
  */
@@ -2329,7 +2395,7 @@ declare namespace sap {
2329
2395
  * Fires event {@link #event:filtersDialogSearch filtersDialogSearch} to attached listeners.
2330
2396
  *
2331
2397
  * @since 1.48.0
2332
- * @deprecated (since 1.84)
2398
+ * @deprecated (since 1.84) - with no replacement.
2333
2399
  * @ui5-protected Do not call from applications (only from related classes in the framework)
2334
2400
  *
2335
2401
  * @returns Reference to `this` in order to allow method chaining
@@ -2344,7 +2410,7 @@ declare namespace sap {
2344
2410
  * Fires event {@link #event:filtersDialogSearchForFilters filtersDialogSearchForFilters} to attached listeners.
2345
2411
  *
2346
2412
  * @since 1.48.0
2347
- * @deprecated (since 1.84)
2413
+ * @deprecated (since 1.84) - with no replacement.
2348
2414
  * @ui5-protected Do not call from applications (only from related classes in the framework)
2349
2415
  *
2350
2416
  * @returns Reference to `this` in order to allow method chaining
@@ -2579,7 +2645,7 @@ declare namespace sap {
2579
2645
  * The form may be enhanced with a toolbar to enable the inner switch to an added custom content. Besides
2580
2646
  * such operations, the original content should not be manipulated in any way.
2581
2647
  *
2582
- * @deprecated (since 1.84)
2648
+ * @deprecated (since 1.84) - with no replacement.
2583
2649
  *
2584
2650
  * @returns of filters dialog content.
2585
2651
  */
@@ -2666,7 +2732,7 @@ declare namespace sap {
2666
2732
  *
2667
2733
  * Default value is `true`.
2668
2734
  *
2669
- * @deprecated (since 1.32.0)
2735
+ * @deprecated (since 1.32.0) - with no replacement.
2670
2736
  *
2671
2737
  * @returns Value of property `searchEnabled`
2672
2738
  */
@@ -2692,7 +2758,7 @@ declare namespace sap {
2692
2758
  *
2693
2759
  * Default value is `false`.
2694
2760
  *
2695
- * @deprecated (since 1.84)
2761
+ * @deprecated (since 1.84) - with no replacement. Users can select any Variant instead.
2696
2762
  *
2697
2763
  * @returns Value of property `showClearButton`
2698
2764
  */
@@ -3359,7 +3425,7 @@ declare namespace sap {
3359
3425
  *
3360
3426
  * Default value is `true`.
3361
3427
  *
3362
- * @deprecated (since 1.32.0)
3428
+ * @deprecated (since 1.32.0) - with no replacement.
3363
3429
  *
3364
3430
  * @returns Reference to `this` in order to allow method chaining
3365
3431
  */
@@ -3399,7 +3465,7 @@ declare namespace sap {
3399
3465
  *
3400
3466
  * Default value is `false`.
3401
3467
  *
3402
- * @deprecated (since 1.84)
3468
+ * @deprecated (since 1.84) - with no replacement. Users can select any Variant instead.
3403
3469
  *
3404
3470
  * @returns Reference to `this` in order to allow method chaining
3405
3471
  */
@@ -3488,7 +3554,7 @@ declare namespace sap {
3488
3554
  * Once set, the activation of the 'Adapt Filters' button will open the 'old' filters dialog. This method
3489
3555
  * offers an intermediate solution for the visual filters scenario, which relies on the old filters dialog.
3490
3556
  *
3491
- * @deprecated (since 1.84)
3557
+ * @deprecated (since 1.84) - with no replacement.
3492
3558
  * @ui5-protected Do not call from applications (only from related classes in the framework)
3493
3559
  */
3494
3560
  setShowOldFilterDialog(): void;
@@ -4202,91 +4268,149 @@ declare namespace sap {
4202
4268
  ): void;
4203
4269
  }
4204
4270
 
4271
+ /**
4272
+ * Event object of the FilterBar#afterVariantLoad event.
4273
+ */
4205
4274
  type FilterBar$AfterVariantLoadEvent = sap.ui.base.Event<
4206
4275
  FilterBar$AfterVariantLoadEventParameters,
4207
4276
  FilterBar
4208
4277
  >;
4209
4278
 
4279
+ /**
4280
+ * Event object of the FilterBar#afterVariantSave event.
4281
+ */
4210
4282
  type FilterBar$AfterVariantSaveEvent = sap.ui.base.Event<
4211
4283
  FilterBar$AfterVariantSaveEventParameters,
4212
4284
  FilterBar
4213
4285
  >;
4214
4286
 
4287
+ /**
4288
+ * Event object of the FilterBar#assignedFiltersChanged event.
4289
+ */
4215
4290
  type FilterBar$AssignedFiltersChangedEvent = sap.ui.base.Event<
4216
4291
  FilterBar$AssignedFiltersChangedEventParameters,
4217
4292
  FilterBar
4218
4293
  >;
4219
4294
 
4295
+ /**
4296
+ * Event object of the FilterBar#beforeVariantFetch event.
4297
+ */
4220
4298
  type FilterBar$BeforeVariantFetchEvent = sap.ui.base.Event<
4221
4299
  FilterBar$BeforeVariantFetchEventParameters,
4222
4300
  FilterBar
4223
4301
  >;
4224
4302
 
4303
+ /**
4304
+ * Event object of the FilterBar#beforeVariantSave event.
4305
+ */
4225
4306
  type FilterBar$BeforeVariantSaveEvent = sap.ui.base.Event<
4226
4307
  FilterBar$BeforeVariantSaveEventParameters,
4227
4308
  FilterBar
4228
4309
  >;
4229
4310
 
4311
+ /**
4312
+ * Event object of the FilterBar#cancel event.
4313
+ */
4230
4314
  type FilterBar$CancelEvent = sap.ui.base.Event<
4231
4315
  FilterBar$CancelEventParameters,
4232
4316
  FilterBar
4233
4317
  >;
4234
4318
 
4319
+ /**
4320
+ * Event object of the FilterBar#clear event.
4321
+ */
4235
4322
  type FilterBar$ClearEvent = sap.ui.base.Event<
4236
4323
  FilterBar$ClearEventParameters,
4237
4324
  FilterBar
4238
4325
  >;
4239
4326
 
4327
+ /**
4328
+ * Event object of the FilterBar#filterChange event.
4329
+ */
4240
4330
  type FilterBar$FilterChangeEvent = sap.ui.base.Event<
4241
4331
  FilterBar$FilterChangeEventParameters,
4242
4332
  FilterBar
4243
4333
  >;
4244
4334
 
4335
+ /**
4336
+ * Event object of the FilterBar#filtersDialogBeforeOpen event.
4337
+ */
4245
4338
  type FilterBar$FiltersDialogBeforeOpenEvent = sap.ui.base.Event<
4246
4339
  FilterBar$FiltersDialogBeforeOpenEventParameters,
4247
4340
  FilterBar
4248
4341
  >;
4249
4342
 
4343
+ /**
4344
+ * Event object of the FilterBar#filtersDialogCancel event.
4345
+ */
4250
4346
  type FilterBar$FiltersDialogCancelEvent = sap.ui.base.Event<
4251
4347
  FilterBar$FiltersDialogCancelEventParameters,
4252
4348
  FilterBar
4253
4349
  >;
4254
4350
 
4351
+ /**
4352
+ * Event object of the FilterBar#filtersDialogClosed event.
4353
+ */
4255
4354
  type FilterBar$FiltersDialogClosedEvent = sap.ui.base.Event<
4256
4355
  FilterBar$FiltersDialogClosedEventParameters,
4257
4356
  FilterBar
4258
4357
  >;
4259
4358
 
4359
+ /**
4360
+ * Event object of the FilterBar#filtersDialogSearch event.
4361
+ *
4362
+ * @deprecated (since 1.84) - with no replacement.
4363
+ */
4260
4364
  type FilterBar$FiltersDialogSearchEvent = sap.ui.base.Event<
4261
4365
  FilterBar$FiltersDialogSearchEventParameters,
4262
4366
  FilterBar
4263
4367
  >;
4264
4368
 
4369
+ /**
4370
+ * Event object of the FilterBar#filtersDialogSearchForFilters event.
4371
+ *
4372
+ * @deprecated (since 1.84) - with no replacement.
4373
+ */
4265
4374
  type FilterBar$FiltersDialogSearchForFiltersEvent = sap.ui.base.Event<
4266
4375
  FilterBar$FiltersDialogSearchForFiltersEventParameters,
4267
4376
  FilterBar
4268
4377
  >;
4269
4378
 
4379
+ /**
4380
+ * Event object of the FilterBar#initialise event.
4381
+ */
4270
4382
  type FilterBar$InitialiseEvent = sap.ui.base.Event<
4271
4383
  FilterBar$InitialiseEventParameters,
4272
4384
  FilterBar
4273
4385
  >;
4274
4386
 
4387
+ /**
4388
+ * Event object of the FilterBar#initialized event.
4389
+ */
4275
4390
  type FilterBar$InitializedEvent = sap.ui.base.Event<
4276
4391
  FilterBar$InitializedEventParameters,
4277
4392
  FilterBar
4278
4393
  >;
4279
4394
 
4395
+ /**
4396
+ * Event object of the FilterBar#reset event.
4397
+ */
4280
4398
  type FilterBar$ResetEvent = sap.ui.base.Event<
4281
4399
  FilterBar$ResetEventParameters,
4282
4400
  FilterBar
4283
4401
  >;
4284
4402
 
4403
+ /**
4404
+ * Event object of the FilterBar#search event.
4405
+ */
4285
4406
  type FilterBar$SearchEvent = sap.ui.base.Event<
4286
4407
  FilterBar$SearchEventParameters,
4287
4408
  FilterBar
4288
4409
  >;
4289
4410
 
4411
+ /**
4412
+ * Event object of the FilterItem#change event.
4413
+ */
4290
4414
  type FilterItem$ChangeEvent = sap.ui.base.Event<
4291
4415
  FilterItem$ChangeEventParameters,
4292
4416
  FilterItem
@@ -4294,6 +4418,9 @@ declare namespace sap {
4294
4418
  }
4295
4419
 
4296
4420
  namespace navpopover {
4421
+ /**
4422
+ * Describes the settings that can be provided to the LinkData constructor.
4423
+ */
4297
4424
  interface $LinkDataSettings extends sap.ui.core.$ElementSettings {
4298
4425
  /**
4299
4426
  * Text which can be displayed on the UI
@@ -4373,6 +4500,12 @@ declare namespace sap {
4373
4500
  | `{${string}}`;
4374
4501
  }
4375
4502
 
4503
+ /**
4504
+ * Describes the settings that can be provided to the NavigationPopover constructor.
4505
+ *
4506
+ * @deprecated (since 1.121) - SmartLink no longer opens a NavigationPopover, it got replaced by the sap.ui.mdc.link.Panel
4507
+ * in a sap.m.ResponsivePopover
4508
+ */
4376
4509
  interface $NavigationPopoverSettings
4377
4510
  extends sap.m.$ResponsivePopoverSettings {
4378
4511
  /**
@@ -4505,6 +4638,12 @@ declare namespace sap {
4505
4638
  ) => void;
4506
4639
  }
4507
4640
 
4641
+ /**
4642
+ * Describes the settings that can be provided to the NavigationPopoverHandler constructor.
4643
+ *
4644
+ * @deprecated (since 1.121) - SmartLink no longer uses the NavigationPopoverHandler, it got replaced by
4645
+ * a sap.ui.mdc.Link implementation. All event handlings can be done directly on the SmartLink / SemanticObjectController.
4646
+ */
4508
4647
  interface $NavigationPopoverHandlerSettings
4509
4648
  extends sap.ui.base.$ManagedObjectSettings {
4510
4649
  /**
@@ -4647,6 +4786,9 @@ declare namespace sap {
4647
4786
  ) => void;
4648
4787
  }
4649
4788
 
4789
+ /**
4790
+ * Describes the settings that can be provided to the SemanticObjectController constructor.
4791
+ */
4650
4792
  interface $SemanticObjectControllerSettings
4651
4793
  extends sap.ui.core.$ElementSettings {
4652
4794
  /**
@@ -4816,6 +4958,9 @@ declare namespace sap {
4816
4958
  ) => void;
4817
4959
  }
4818
4960
 
4961
+ /**
4962
+ * Describes the settings that can be provided to the SmartLink constructor.
4963
+ */
4819
4964
  interface $SmartLinkSettings extends sap.m.$LinkSettings {
4820
4965
  /**
4821
4966
  * Name of semantic object which is used to fill the navigation popover. **Note**: Setting a value triggers
@@ -5003,8 +5148,14 @@ declare namespace sap {
5003
5148
  innerNavigate?: (oEvent: SmartLink$InnerNavigateEvent) => void;
5004
5149
  }
5005
5150
 
5151
+ /**
5152
+ * Parameters of the NavigationPopover#availableActionsPersonalizationPress event.
5153
+ */
5006
5154
  interface NavigationPopover$AvailableActionsPersonalizationPressEventParameters {}
5007
5155
 
5156
+ /**
5157
+ * Parameters of the NavigationPopover#navigate event.
5158
+ */
5008
5159
  interface NavigationPopover$NavigateEventParameters {
5009
5160
  /**
5010
5161
  * The UI text shown in the chosen link
@@ -5017,8 +5168,19 @@ declare namespace sap {
5017
5168
  href?: string;
5018
5169
  }
5019
5170
 
5171
+ /**
5172
+ * Parameters of the NavigationPopover#targetsObtained event.
5173
+ *
5174
+ * @deprecated (since 1.40.0) - The event `navigationTargetsObtained` is obsolete as target determination
5175
+ * is no longer done by NavigationPopover. Instead the NavigationPopoverHandler is responsible for target
5176
+ * determination. The event `navigationTargetsObtained` is fired from NavigationPopoverHandler after navigation
5177
+ * targets are determined.
5178
+ */
5020
5179
  interface NavigationPopover$TargetsObtainedEventParameters {}
5021
5180
 
5181
+ /**
5182
+ * Parameters of the NavigationPopoverHandler#beforePopoverOpens event.
5183
+ */
5022
5184
  interface NavigationPopoverHandler$BeforePopoverOpensEventParameters {
5023
5185
  /**
5024
5186
  * The semantic object for which the navigation targets will be retrieved.
@@ -5066,6 +5228,9 @@ declare namespace sap {
5066
5228
  open?: Function;
5067
5229
  }
5068
5230
 
5231
+ /**
5232
+ * Parameters of the NavigationPopoverHandler#innerNavigate event.
5233
+ */
5069
5234
  interface NavigationPopoverHandler$InnerNavigateEventParameters {
5070
5235
  /**
5071
5236
  * The UI text shown in the clicked link.
@@ -5093,6 +5258,9 @@ declare namespace sap {
5093
5258
  originalId?: string;
5094
5259
  }
5095
5260
 
5261
+ /**
5262
+ * Parameters of the NavigationPopoverHandler#navigationTargetsObtained event.
5263
+ */
5096
5264
  interface NavigationPopoverHandler$NavigationTargetsObtainedEventParameters {
5097
5265
  /**
5098
5266
  * The main navigation object.
@@ -5160,6 +5328,9 @@ declare namespace sap {
5160
5328
  show?: Function;
5161
5329
  }
5162
5330
 
5331
+ /**
5332
+ * Parameters of the SemanticObjectController#beforePopoverOpens event.
5333
+ */
5163
5334
  interface SemanticObjectController$BeforePopoverOpensEventParameters {
5164
5335
  /**
5165
5336
  * The semantic object for which the navigation targets will be retrieved.
@@ -5210,6 +5381,9 @@ declare namespace sap {
5210
5381
  open?: Function;
5211
5382
  }
5212
5383
 
5384
+ /**
5385
+ * Parameters of the SemanticObjectController#navigate event.
5386
+ */
5213
5387
  interface SemanticObjectController$NavigateEventParameters {
5214
5388
  /**
5215
5389
  * The UI text shown in the clicked link.
@@ -5240,6 +5414,9 @@ declare namespace sap {
5240
5414
  originalId?: string;
5241
5415
  }
5242
5416
 
5417
+ /**
5418
+ * Parameters of the SemanticObjectController#navigationTargetsObtained event.
5419
+ */
5243
5420
  interface SemanticObjectController$NavigationTargetsObtainedEventParameters {
5244
5421
  /**
5245
5422
  * The main navigation object.
@@ -5310,6 +5487,12 @@ declare namespace sap {
5310
5487
  show?: Function;
5311
5488
  }
5312
5489
 
5490
+ /**
5491
+ * Parameters of the SemanticObjectController#prefetchDone event.
5492
+ *
5493
+ * @deprecated (since 1.42.0) - The event `prefetchDone` is obsolete because it depends on the property
5494
+ * `prefetchNavigationTargets` which has been deprecated.
5495
+ */
5313
5496
  interface SemanticObjectController$PrefetchDoneEventParameters {
5314
5497
  /**
5315
5498
  * A map containing all semantic objects as keys for which at least one navigation target has been found.
@@ -5319,6 +5502,9 @@ declare namespace sap {
5319
5502
  semanticObjects?: object;
5320
5503
  }
5321
5504
 
5505
+ /**
5506
+ * Parameters of the SmartLink#beforePopoverOpens event.
5507
+ */
5322
5508
  interface SmartLink$BeforePopoverOpensEventParameters {
5323
5509
  /**
5324
5510
  * The semantic object for which the navigation targets will be retrieved.
@@ -5366,6 +5552,9 @@ declare namespace sap {
5366
5552
  open?: Function;
5367
5553
  }
5368
5554
 
5555
+ /**
5556
+ * Parameters of the SmartLink#innerNavigate event.
5557
+ */
5369
5558
  interface SmartLink$InnerNavigateEventParameters {
5370
5559
  /**
5371
5560
  * The UI text shown in the clicked link.
@@ -5393,6 +5582,9 @@ declare namespace sap {
5393
5582
  originalId?: string;
5394
5583
  }
5395
5584
 
5585
+ /**
5586
+ * Parameters of the SmartLink#navigationTargetsObtained event.
5587
+ */
5396
5588
  interface SmartLink$NavigationTargetsObtainedEventParameters {
5397
5589
  /**
5398
5590
  * The main navigation object.
@@ -8897,67 +9089,113 @@ declare namespace sap {
8897
9089
  */
8898
9090
  removeLink = "removeLink",
8899
9091
  }
8900
-
9092
+ /**
9093
+ * Event object of the NavigationPopover#availableActionsPersonalizationPress event.
9094
+ */
8901
9095
  type NavigationPopover$AvailableActionsPersonalizationPressEvent = sap.ui.base.Event<
8902
9096
  NavigationPopover$AvailableActionsPersonalizationPressEventParameters,
8903
9097
  NavigationPopover
8904
9098
  >;
8905
9099
 
9100
+ /**
9101
+ * Event object of the NavigationPopover#navigate event.
9102
+ */
8906
9103
  type NavigationPopover$NavigateEvent = sap.ui.base.Event<
8907
9104
  NavigationPopover$NavigateEventParameters,
8908
9105
  NavigationPopover
8909
9106
  >;
8910
9107
 
9108
+ /**
9109
+ * Event object of the NavigationPopover#targetsObtained event.
9110
+ *
9111
+ * @deprecated (since 1.40.0) - The event `navigationTargetsObtained` is obsolete as target determination
9112
+ * is no longer done by NavigationPopover. Instead the NavigationPopoverHandler is responsible for target
9113
+ * determination. The event `navigationTargetsObtained` is fired from NavigationPopoverHandler after navigation
9114
+ * targets are determined.
9115
+ */
8911
9116
  type NavigationPopover$TargetsObtainedEvent = sap.ui.base.Event<
8912
9117
  NavigationPopover$TargetsObtainedEventParameters,
8913
9118
  NavigationPopover
8914
9119
  >;
8915
9120
 
9121
+ /**
9122
+ * Event object of the NavigationPopoverHandler#beforePopoverOpens event.
9123
+ */
8916
9124
  type NavigationPopoverHandler$BeforePopoverOpensEvent = sap.ui.base.Event<
8917
9125
  NavigationPopoverHandler$BeforePopoverOpensEventParameters,
8918
9126
  NavigationPopoverHandler
8919
9127
  >;
8920
9128
 
9129
+ /**
9130
+ * Event object of the NavigationPopoverHandler#innerNavigate event.
9131
+ */
8921
9132
  type NavigationPopoverHandler$InnerNavigateEvent = sap.ui.base.Event<
8922
9133
  NavigationPopoverHandler$InnerNavigateEventParameters,
8923
9134
  NavigationPopoverHandler
8924
9135
  >;
8925
9136
 
9137
+ /**
9138
+ * Event object of the NavigationPopoverHandler#navigationTargetsObtained event.
9139
+ */
8926
9140
  type NavigationPopoverHandler$NavigationTargetsObtainedEvent = sap.ui.base.Event<
8927
9141
  NavigationPopoverHandler$NavigationTargetsObtainedEventParameters,
8928
9142
  NavigationPopoverHandler
8929
9143
  >;
8930
9144
 
9145
+ /**
9146
+ * Event object of the SemanticObjectController#beforePopoverOpens event.
9147
+ */
8931
9148
  type SemanticObjectController$BeforePopoverOpensEvent = sap.ui.base.Event<
8932
9149
  SemanticObjectController$BeforePopoverOpensEventParameters,
8933
9150
  SemanticObjectController
8934
9151
  >;
8935
9152
 
9153
+ /**
9154
+ * Event object of the SemanticObjectController#navigate event.
9155
+ */
8936
9156
  type SemanticObjectController$NavigateEvent = sap.ui.base.Event<
8937
9157
  SemanticObjectController$NavigateEventParameters,
8938
9158
  SemanticObjectController
8939
9159
  >;
8940
9160
 
9161
+ /**
9162
+ * Event object of the SemanticObjectController#navigationTargetsObtained event.
9163
+ */
8941
9164
  type SemanticObjectController$NavigationTargetsObtainedEvent = sap.ui.base.Event<
8942
9165
  SemanticObjectController$NavigationTargetsObtainedEventParameters,
8943
9166
  SemanticObjectController
8944
9167
  >;
8945
9168
 
9169
+ /**
9170
+ * Event object of the SemanticObjectController#prefetchDone event.
9171
+ *
9172
+ * @deprecated (since 1.42.0) - The event `prefetchDone` is obsolete because it depends on the property
9173
+ * `prefetchNavigationTargets` which has been deprecated.
9174
+ */
8946
9175
  type SemanticObjectController$PrefetchDoneEvent = sap.ui.base.Event<
8947
9176
  SemanticObjectController$PrefetchDoneEventParameters,
8948
9177
  SemanticObjectController
8949
9178
  >;
8950
9179
 
9180
+ /**
9181
+ * Event object of the SmartLink#beforePopoverOpens event.
9182
+ */
8951
9183
  type SmartLink$BeforePopoverOpensEvent = sap.ui.base.Event<
8952
9184
  SmartLink$BeforePopoverOpensEventParameters,
8953
9185
  SmartLink
8954
9186
  >;
8955
9187
 
9188
+ /**
9189
+ * Event object of the SmartLink#innerNavigate event.
9190
+ */
8956
9191
  type SmartLink$InnerNavigateEvent = sap.ui.base.Event<
8957
9192
  SmartLink$InnerNavigateEventParameters,
8958
9193
  SmartLink
8959
9194
  >;
8960
9195
 
9196
+ /**
9197
+ * Event object of the SmartLink#navigationTargetsObtained event.
9198
+ */
8961
9199
  type SmartLink$NavigationTargetsObtainedEvent = sap.ui.base.Event<
8962
9200
  SmartLink$NavigationTargetsObtainedEventParameters,
8963
9201
  SmartLink
@@ -8965,6 +9203,11 @@ declare namespace sap {
8965
9203
  }
8966
9204
 
8967
9205
  namespace odata {
9206
+ /**
9207
+ * Describes the settings that can be provided to the ComboBox constructor.
9208
+ *
9209
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9210
+ */
8968
9211
  interface $ComboBoxSettings extends sap.m.$ComboBoxSettings {
8969
9212
  /**
8970
9213
  * Sets the `value` property formatting according to the `com.sap.vocabularies.UI.v1.TextArrangementType`
@@ -8981,6 +9224,11 @@ declare namespace sap {
8981
9224
  selectedKeyChange?: (oEvent: ComboBox$SelectedKeyChangeEvent) => void;
8982
9225
  }
8983
9226
 
9227
+ /**
9228
+ * Parameters of the ComboBox#selectedKeyChange event.
9229
+ *
9230
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9231
+ */
8984
9232
  interface ComboBox$SelectedKeyChangeEventParameters {
8985
9233
  /**
8986
9234
  * The selected key.
@@ -9186,6 +9434,11 @@ declare namespace sap {
9186
9434
  ): this;
9187
9435
  }
9188
9436
 
9437
+ /**
9438
+ * Event object of the ComboBox#selectedKeyChange event.
9439
+ *
9440
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9441
+ */
9189
9442
  type ComboBox$SelectedKeyChangeEvent = sap.ui.base.Event<
9190
9443
  ComboBox$SelectedKeyChangeEventParameters,
9191
9444
  ComboBox
@@ -9303,6 +9556,9 @@ declare namespace sap {
9303
9556
  }
9304
9557
 
9305
9558
  namespace smartchart {
9559
+ /**
9560
+ * Describes the settings that can be provided to the SmartChart constructor.
9561
+ */
9306
9562
  interface $SmartChartSettings extends sap.m.$VBoxSettings {
9307
9563
  /**
9308
9564
  * The entity set name from which to fetch data and generate the columns.
@@ -9814,6 +10070,9 @@ declare namespace sap {
9814
10070
  uiStateChange?: (oEvent: sap.ui.base.Event) => void;
9815
10071
  }
9816
10072
 
10073
+ /**
10074
+ * Parameters of the SmartChart#afterVariantApply event.
10075
+ */
9817
10076
  interface SmartChart$AfterVariantApplyEventParameters {
9818
10077
  /**
9819
10078
  * ID of the currently selected variant
@@ -9826,8 +10085,14 @@ declare namespace sap {
9826
10085
  variantContext?: string;
9827
10086
  }
9828
10087
 
10088
+ /**
10089
+ * Parameters of the SmartChart#afterVariantInitialise event.
10090
+ */
9829
10091
  interface SmartChart$AfterVariantInitialiseEventParameters {}
9830
10092
 
10093
+ /**
10094
+ * Parameters of the SmartChart#afterVariantSave event.
10095
+ */
9831
10096
  interface SmartChart$AfterVariantSaveEventParameters {
9832
10097
  /**
9833
10098
  * ID of the currently selected variant
@@ -9835,6 +10100,9 @@ declare namespace sap {
9835
10100
  currentVariantId?: string;
9836
10101
  }
9837
10102
 
10103
+ /**
10104
+ * Parameters of the SmartChart#beforeRebindChart event.
10105
+ */
9838
10106
  interface SmartChart$BeforeRebindChartEventParameters {
9839
10107
  /**
9840
10108
  * The bindingParams object contains filters, sorters, and other binding-related information for the chart
@@ -9842,6 +10110,9 @@ declare namespace sap {
9842
10110
  bindingParams?: object;
9843
10111
  }
9844
10112
 
10113
+ /**
10114
+ * Parameters of the SmartChart#chartDataChanged event.
10115
+ */
9845
10116
  interface SmartChart$ChartDataChangedEventParameters {
9846
10117
  /**
9847
10118
  * Object which contains a boolean flag for dimeasure, filter, sort. If set to `true`, it has been changed.
@@ -9849,8 +10120,16 @@ declare namespace sap {
9849
10120
  changeTypes?: object;
9850
10121
  }
9851
10122
 
10123
+ /**
10124
+ * Parameters of the SmartChart#dataReceived event.
10125
+ *
10126
+ * @deprecated (since 1.56) - Use `beforeRebindChart` event to attach/listen to the binding "events" directly
10127
+ */
9852
10128
  interface SmartChart$DataReceivedEventParameters {}
9853
10129
 
10130
+ /**
10131
+ * Parameters of the SmartChart#fullScreenToggled event.
10132
+ */
9854
10133
  interface SmartChart$FullScreenToggledEventParameters {
9855
10134
  /**
9856
10135
  * If `true` the control is in full screen mode
@@ -9858,10 +10137,23 @@ declare namespace sap {
9858
10137
  fullScreen?: boolean;
9859
10138
  }
9860
10139
 
10140
+ /**
10141
+ * Parameters of the SmartChart#initialise event.
10142
+ *
10143
+ * @deprecated (since 1.65)
10144
+ */
9861
10145
  interface SmartChart$InitialiseEventParameters {}
9862
10146
 
10147
+ /**
10148
+ * Parameters of the SmartChart#initialized event.
10149
+ */
9863
10150
  interface SmartChart$InitializedEventParameters {}
9864
10151
 
10152
+ /**
10153
+ * Parameters of the SmartChart#selectionDetailsActionPress event.
10154
+ *
10155
+ * @experimental (since 1.48)
10156
+ */
9865
10157
  interface SmartChart$SelectionDetailsActionPressEventParameters {
9866
10158
  /**
9867
10159
  * The action that has to be processed once the action has been pressed
@@ -9882,8 +10174,14 @@ declare namespace sap {
9882
10174
  level?: sap.m.SelectionDetailsActionLevel;
9883
10175
  }
9884
10176
 
10177
+ /**
10178
+ * Parameters of the SmartChart#showOverlay event.
10179
+ */
9885
10180
  interface SmartChart$ShowOverlayEventParameters {}
9886
10181
 
10182
+ /**
10183
+ * Parameters of the SmartChart#uiStateChange event.
10184
+ */
9887
10185
  interface SmartChart$UiStateChangeEventParameters {}
9888
10186
 
9889
10187
  /**
@@ -12325,62 +12623,103 @@ declare namespace sap {
12325
12623
  */
12326
12624
  Single = "SINGLE",
12327
12625
  }
12328
-
12626
+ /**
12627
+ * Event object of the SmartChart#afterVariantApply event.
12628
+ */
12329
12629
  type SmartChart$AfterVariantApplyEvent = sap.ui.base.Event<
12330
12630
  SmartChart$AfterVariantApplyEventParameters,
12331
12631
  SmartChart
12332
12632
  >;
12333
12633
 
12634
+ /**
12635
+ * Event object of the SmartChart#afterVariantInitialise event.
12636
+ */
12334
12637
  type SmartChart$AfterVariantInitialiseEvent = sap.ui.base.Event<
12335
12638
  SmartChart$AfterVariantInitialiseEventParameters,
12336
12639
  SmartChart
12337
12640
  >;
12338
12641
 
12642
+ /**
12643
+ * Event object of the SmartChart#afterVariantSave event.
12644
+ */
12339
12645
  type SmartChart$AfterVariantSaveEvent = sap.ui.base.Event<
12340
12646
  SmartChart$AfterVariantSaveEventParameters,
12341
12647
  SmartChart
12342
12648
  >;
12343
12649
 
12650
+ /**
12651
+ * Event object of the SmartChart#beforeRebindChart event.
12652
+ */
12344
12653
  type SmartChart$BeforeRebindChartEvent = sap.ui.base.Event<
12345
12654
  SmartChart$BeforeRebindChartEventParameters,
12346
12655
  SmartChart
12347
12656
  >;
12348
12657
 
12658
+ /**
12659
+ * Event object of the SmartChart#chartDataChanged event.
12660
+ */
12349
12661
  type SmartChart$ChartDataChangedEvent = sap.ui.base.Event<
12350
12662
  SmartChart$ChartDataChangedEventParameters,
12351
12663
  SmartChart
12352
12664
  >;
12353
12665
 
12666
+ /**
12667
+ * Event object of the SmartChart#dataReceived event.
12668
+ *
12669
+ * @deprecated (since 1.56) - Use `beforeRebindChart` event to attach/listen to the binding "events" directly
12670
+ */
12354
12671
  type SmartChart$DataReceivedEvent = sap.ui.base.Event<
12355
12672
  SmartChart$DataReceivedEventParameters,
12356
12673
  SmartChart
12357
12674
  >;
12358
12675
 
12676
+ /**
12677
+ * Event object of the SmartChart#fullScreenToggled event.
12678
+ */
12359
12679
  type SmartChart$FullScreenToggledEvent = sap.ui.base.Event<
12360
12680
  SmartChart$FullScreenToggledEventParameters,
12361
12681
  SmartChart
12362
12682
  >;
12363
12683
 
12684
+ /**
12685
+ * Event object of the SmartChart#initialise event.
12686
+ *
12687
+ * @deprecated (since 1.65)
12688
+ */
12364
12689
  type SmartChart$InitialiseEvent = sap.ui.base.Event<
12365
12690
  SmartChart$InitialiseEventParameters,
12366
12691
  SmartChart
12367
12692
  >;
12368
12693
 
12694
+ /**
12695
+ * Event object of the SmartChart#initialized event.
12696
+ */
12369
12697
  type SmartChart$InitializedEvent = sap.ui.base.Event<
12370
12698
  SmartChart$InitializedEventParameters,
12371
12699
  SmartChart
12372
12700
  >;
12373
12701
 
12702
+ /**
12703
+ * Event object of the SmartChart#selectionDetailsActionPress event.
12704
+ *
12705
+ * @experimental (since 1.48)
12706
+ */
12374
12707
  type SmartChart$SelectionDetailsActionPressEvent = sap.ui.base.Event<
12375
12708
  SmartChart$SelectionDetailsActionPressEventParameters,
12376
12709
  SmartChart
12377
12710
  >;
12378
12711
 
12712
+ /**
12713
+ * Event object of the SmartChart#showOverlay event.
12714
+ */
12379
12715
  type SmartChart$ShowOverlayEvent = sap.ui.base.Event<
12380
12716
  SmartChart$ShowOverlayEventParameters,
12381
12717
  SmartChart
12382
12718
  >;
12383
12719
 
12720
+ /**
12721
+ * Event object of the SmartChart#uiStateChange event.
12722
+ */
12384
12723
  type SmartChart$UiStateChangeEvent = sap.ui.base.Event<
12385
12724
  SmartChart$UiStateChangeEventParameters,
12386
12725
  SmartChart
@@ -12405,6 +12744,11 @@ declare namespace sap {
12405
12744
  }
12406
12745
 
12407
12746
  namespace smartfield {
12747
+ /**
12748
+ * Describes the settings that can be provided to the ComboBox constructor.
12749
+ *
12750
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12751
+ */
12408
12752
  interface $ComboBoxSettings extends sap.m.$ComboBoxSettings {
12409
12753
  /**
12410
12754
  * Key of the selected item.
@@ -12429,6 +12773,9 @@ declare namespace sap {
12429
12773
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
12430
12774
  }
12431
12775
 
12776
+ /**
12777
+ * Describes the settings that can be provided to the Configuration constructor.
12778
+ */
12432
12779
  interface $ConfigurationSettings extends sap.ui.core.$ElementSettings {
12433
12780
  /**
12434
12781
  * By default the SmartField chooses the controls it hosts by interpreting OData metadata. This property
@@ -12461,6 +12808,9 @@ declare namespace sap {
12461
12808
  | `{${string}}`;
12462
12809
  }
12463
12810
 
12811
+ /**
12812
+ * Describes the settings that can be provided to the ControlProposal constructor.
12813
+ */
12464
12814
  interface $ControlProposalSettings
12465
12815
  extends sap.ui.core.$ElementSettings {
12466
12816
  /**
@@ -12481,6 +12831,9 @@ declare namespace sap {
12481
12831
  objectStatus?: sap.ui.comp.smartfield.ObjectStatus;
12482
12832
  }
12483
12833
 
12834
+ /**
12835
+ * Describes the settings that can be provided to the ObjectStatus constructor.
12836
+ */
12484
12837
  interface $ObjectStatusSettings extends sap.ui.core.$ElementSettings {
12485
12838
  /**
12486
12839
  * Optional attribute to determine the rendered state. Possible values are the numeric representations of
@@ -12501,6 +12854,9 @@ declare namespace sap {
12501
12854
  | `{${string}}`;
12502
12855
  }
12503
12856
 
12857
+ /**
12858
+ * Describes the settings that can be provided to the SmartField constructor.
12859
+ */
12504
12860
  interface $SmartFieldSettings extends sap.ui.core.$ControlSettings {
12505
12861
  /**
12506
12862
  * The binding path expression used to determine the bound Entity Data Model (EDM) property.
@@ -12661,7 +13017,7 @@ declare namespace sap {
12661
13017
  * Data types to be used, if the `SmartField` control is interacting with a JSON model. If the value property
12662
13018
  * of the control is bound to a property of an OData entity set, this property is not taken into consideration.
12663
13019
  *
12664
- * @deprecated (since 1.31.0)
13020
+ * @deprecated (since 1.31.0) - with no replacement.
12665
13021
  */
12666
13022
  jsontype?:
12667
13023
  | sap.ui.comp.smartfield.JSONType
@@ -12845,7 +13201,7 @@ declare namespace sap {
12845
13201
  * Proposes a control to be rendered. The `SmartField` control can ignore the proposal.
12846
13202
  *
12847
13203
  * @since 1.32.0
12848
- * @deprecated (since 1.32.0)
13204
+ * @deprecated (since 1.32.0) - with no replacement.
12849
13205
  */
12850
13206
  proposedControl?:
12851
13207
  | sap.ui.comp.smartfield.ControlProposalType
@@ -13042,7 +13398,7 @@ declare namespace sap {
13042
13398
  * Proposes a control to be rendered. The `SmartField` control can ignore the proposal.
13043
13399
  *
13044
13400
  * @since 1.32.0
13045
- * @deprecated (since 1.34.0)
13401
+ * @deprecated (since 1.34.0) - with no replacement.
13046
13402
  */
13047
13403
  controlProposal?: sap.ui.comp.smartfield.ControlProposal;
13048
13404
 
@@ -13147,11 +13503,14 @@ declare namespace sap {
13147
13503
  * control. When handler attached, the rendered control is `sap.m.Link`
13148
13504
  *
13149
13505
  * @since 1.36.0
13150
- * @deprecated (since 1.116.0)
13506
+ * @deprecated (since 1.116.0) - with no replacement.
13151
13507
  */
13152
13508
  press?: (oEvent: sap.ui.base.Event) => void;
13153
13509
  }
13154
13510
 
13511
+ /**
13512
+ * Parameters of the SmartField#change event.
13513
+ */
13155
13514
  interface SmartField$ChangeEventParameters {
13156
13515
  /**
13157
13516
  * The current value inside the text field
@@ -13168,6 +13527,9 @@ declare namespace sap {
13168
13527
  newValue?: string;
13169
13528
  }
13170
13529
 
13530
+ /**
13531
+ * Parameters of the SmartField#changeModelValue event.
13532
+ */
13171
13533
  interface SmartField$ChangeModelValueEventParameters {
13172
13534
  /**
13173
13535
  * Indicates whether the field quantity field has changed
@@ -13190,6 +13552,9 @@ declare namespace sap {
13190
13552
  unitLastValueState?: sap.ui.core.ValueState;
13191
13553
  }
13192
13554
 
13555
+ /**
13556
+ * Parameters of the SmartField#contextEditableChanged event.
13557
+ */
13193
13558
  interface SmartField$ContextEditableChangedEventParameters {
13194
13559
  /**
13195
13560
  * The value of the context editable property of the control
@@ -13197,6 +13562,9 @@ declare namespace sap {
13197
13562
  editable?: boolean;
13198
13563
  }
13199
13564
 
13565
+ /**
13566
+ * Parameters of the SmartField#editableChanged event.
13567
+ */
13200
13568
  interface SmartField$EditableChangedEventParameters {
13201
13569
  /**
13202
13570
  * If `true`, the control is in edit mode
@@ -13204,6 +13572,9 @@ declare namespace sap {
13204
13572
  editable?: boolean;
13205
13573
  }
13206
13574
 
13575
+ /**
13576
+ * Parameters of the SmartField#entitySetFound event.
13577
+ */
13207
13578
  interface SmartField$EntitySetFoundEventParameters {
13208
13579
  /**
13209
13580
  * The path to the found entity set
@@ -13211,14 +13582,31 @@ declare namespace sap {
13211
13582
  entitySet?: string;
13212
13583
  }
13213
13584
 
13585
+ /**
13586
+ * Parameters of the SmartField#initialise event.
13587
+ */
13214
13588
  interface SmartField$InitialiseEventParameters {}
13215
13589
 
13590
+ /**
13591
+ * Parameters of the SmartField#innerControlsCreated event.
13592
+ */
13216
13593
  interface SmartField$InnerControlsCreatedEventParameters {}
13217
13594
 
13595
+ /**
13596
+ * Parameters of the SmartField#modeToggled event.
13597
+ */
13218
13598
  interface SmartField$ModeToggledEventParameters {}
13219
13599
 
13600
+ /**
13601
+ * Parameters of the SmartField#press event.
13602
+ *
13603
+ * @deprecated (since 1.116.0) - with no replacement.
13604
+ */
13220
13605
  interface SmartField$PressEventParameters {}
13221
13606
 
13607
+ /**
13608
+ * Parameters of the SmartField#valueListChanged event.
13609
+ */
13222
13610
  interface SmartField$ValueListChangedEventParameters {
13223
13611
  /**
13224
13612
  * An array of selected values
@@ -13226,6 +13614,9 @@ declare namespace sap {
13226
13614
  changes?: sap.ui.core.Control[];
13227
13615
  }
13228
13616
 
13617
+ /**
13618
+ * Parameters of the SmartField#visibleChanged event.
13619
+ */
13229
13620
  interface SmartField$VisibleChangedEventParameters {
13230
13621
  /**
13231
13622
  * If `true`, the control is visible
@@ -13846,19 +14237,19 @@ declare namespace sap {
13846
14237
  *
13847
14238
  * Structure : The `SmartField` control contains a basic UI element and an optional label. In `display`
13848
14239
  * mode the following UI elements are available to be rendered depending on the metadata:
13849
- * - {@link sap.m.text Text};
13850
- * - {@link sap.m.Link Link};
13851
- * - {@link sap.ui.comp.navpopover.SmartLink SmartLink}. In `edit` mode, the available UI elements
14240
+ * - {@link sap.m.Text Text}
14241
+ * - {@link sap.m.Link Link}
14242
+ * - {@link sap.ui.comp.navpopover.SmartLink SmartLink} In `edit` mode, the available UI elements
13852
14243
  * are:
13853
- * - One or two {@link sap.m.Input Input} fields (with or without a {@link sap.ui.comp.valuehelpdialog.ValueHelpDialog ValueHelpDialog});
14244
+ * - One or two {@link sap.m.Input Input} fields (with or without a {@link sap.ui.comp.valuehelpdialog.ValueHelpDialog ValueHelpDialog})
13854
14245
  *
13855
- * - {@link sap.m.Select Select};
13856
- * - {@link sap.m.ComboBox ComboBox};
13857
- * - {@link sap.m.TextArea TextArea};
13858
- * - {@link sap.m.Checkbox Checkbox};
13859
- * - {@link sap.m.DatePicker DatePicker};
13860
- * - {@link sap.m.DateTimePicker DateTimePicker};
13861
- * - {@link sap.m.TimePicker TimePicker}. The `SmartField` comes with additional built-in features,
14246
+ * - {@link sap.m.Select Select}
14247
+ * - {@link sap.m.ComboBox ComboBox}
14248
+ * - {@link sap.m.TextArea TextArea}
14249
+ * - {@link sap.m.Checkbox Checkbox}
14250
+ * - {@link sap.m.DatePicker DatePicker}
14251
+ * - {@link sap.m.DateTimePicker DateTimePicker}
14252
+ * - {@link sap.m.TimePicker TimePicker} The `SmartField` comes with additional built-in features,
13862
14253
  * such as autocomplete and suggestions, value help dialog, recently used and recommended values, textInEditModeSource,
13863
14254
  * validation, and message handling.
13864
14255
  *
@@ -14445,7 +14836,7 @@ declare namespace sap {
14445
14836
  * control. When handler attached, the rendered control is `sap.m.Link`
14446
14837
  *
14447
14838
  * @since 1.36.0
14448
- * @deprecated (since 1.116.0)
14839
+ * @deprecated (since 1.116.0) - with no replacement.
14449
14840
  *
14450
14841
  * @returns Reference to `this` in order to allow method chaining
14451
14842
  */
@@ -14474,7 +14865,7 @@ declare namespace sap {
14474
14865
  * control. When handler attached, the rendered control is `sap.m.Link`
14475
14866
  *
14476
14867
  * @since 1.36.0
14477
- * @deprecated (since 1.116.0)
14868
+ * @deprecated (since 1.116.0) - with no replacement.
14478
14869
  *
14479
14870
  * @returns Reference to `this` in order to allow method chaining
14480
14871
  */
@@ -14713,7 +15104,7 @@ declare namespace sap {
14713
15104
  * Destroys the controlProposal in the aggregation {@link #getControlProposal controlProposal}.
14714
15105
  *
14715
15106
  * @since 1.32.0
14716
- * @deprecated (since 1.34.0)
15107
+ * @deprecated (since 1.34.0) - with no replacement.
14717
15108
  *
14718
15109
  * @returns Reference to `this` in order to allow method chaining
14719
15110
  */
@@ -14883,7 +15274,7 @@ declare namespace sap {
14883
15274
  * The passed function and listener object must match the ones used for event registration.
14884
15275
  *
14885
15276
  * @since 1.36.0
14886
- * @deprecated (since 1.116.0)
15277
+ * @deprecated (since 1.116.0) - with no replacement.
14887
15278
  *
14888
15279
  * @returns Reference to `this` in order to allow method chaining
14889
15280
  */
@@ -15047,7 +15438,7 @@ declare namespace sap {
15047
15438
  * Fires event {@link #event:press press} to attached listeners.
15048
15439
  *
15049
15440
  * @since 1.36.0
15050
- * @deprecated (since 1.116.0)
15441
+ * @deprecated (since 1.116.0) - with no replacement.
15051
15442
  * @ui5-protected Do not call from applications (only from related classes in the framework)
15052
15443
  *
15053
15444
  * @returns Reference to `this` in order to allow method chaining
@@ -15163,7 +15554,7 @@ declare namespace sap {
15163
15554
  * Proposes a control to be rendered. The `SmartField` control can ignore the proposal.
15164
15555
  *
15165
15556
  * @since 1.32.0
15166
- * @deprecated (since 1.34.0)
15557
+ * @deprecated (since 1.34.0) - with no replacement.
15167
15558
  */
15168
15559
  getControlProposal(): sap.ui.comp.smartfield.ControlProposal;
15169
15560
  /**
@@ -15377,7 +15768,7 @@ declare namespace sap {
15377
15768
  * Data types to be used, if the `SmartField` control is interacting with a JSON model. If the value property
15378
15769
  * of the control is bound to a property of an OData entity set, this property is not taken into consideration.
15379
15770
  *
15380
- * @deprecated (since 1.31.0)
15771
+ * @deprecated (since 1.31.0) - with no replacement.
15381
15772
  *
15382
15773
  * @returns Value of property `jsontype`
15383
15774
  */
@@ -15469,7 +15860,7 @@ declare namespace sap {
15469
15860
  * Default value is `None`.
15470
15861
  *
15471
15862
  * @since 1.32.0
15472
- * @deprecated (since 1.32.0)
15863
+ * @deprecated (since 1.32.0) - with no replacement.
15473
15864
  *
15474
15865
  * @returns Value of property `proposedControl`
15475
15866
  */
@@ -15969,7 +16360,7 @@ declare namespace sap {
15969
16360
  * Sets the aggregated {@link #getControlProposal controlProposal}.
15970
16361
  *
15971
16362
  * @since 1.32.0
15972
- * @deprecated (since 1.34.0)
16363
+ * @deprecated (since 1.34.0) - with no replacement.
15973
16364
  *
15974
16365
  * @returns Reference to `this` in order to allow method chaining
15975
16366
  */
@@ -16197,7 +16588,7 @@ declare namespace sap {
16197
16588
  *
16198
16589
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16199
16590
  *
16200
- * @deprecated (since 1.31.0)
16591
+ * @deprecated (since 1.31.0) - with no replacement.
16201
16592
  *
16202
16593
  * @returns Reference to `this` in order to allow method chaining
16203
16594
  */
@@ -16316,7 +16707,7 @@ declare namespace sap {
16316
16707
  * Default value is `None`.
16317
16708
  *
16318
16709
  * @since 1.32.0
16319
- * @deprecated (since 1.32.0)
16710
+ * @deprecated (since 1.32.0) - with no replacement.
16320
16711
  *
16321
16712
  * @returns Reference to `this` in order to allow method chaining
16322
16713
  */
@@ -17008,56 +17399,91 @@ declare namespace sap {
17008
17399
  instance: sap.ui.comp.smartfield.SmartField;
17009
17400
  };
17010
17401
 
17402
+ /**
17403
+ * Event object of the SmartField#change event.
17404
+ */
17011
17405
  type SmartField$ChangeEvent = sap.ui.base.Event<
17012
17406
  SmartField$ChangeEventParameters,
17013
17407
  SmartField
17014
17408
  >;
17015
17409
 
17410
+ /**
17411
+ * Event object of the SmartField#changeModelValue event.
17412
+ */
17016
17413
  type SmartField$ChangeModelValueEvent = sap.ui.base.Event<
17017
17414
  SmartField$ChangeModelValueEventParameters,
17018
17415
  SmartField
17019
17416
  >;
17020
17417
 
17418
+ /**
17419
+ * Event object of the SmartField#contextEditableChanged event.
17420
+ */
17021
17421
  type SmartField$ContextEditableChangedEvent = sap.ui.base.Event<
17022
17422
  SmartField$ContextEditableChangedEventParameters,
17023
17423
  SmartField
17024
17424
  >;
17025
17425
 
17426
+ /**
17427
+ * Event object of the SmartField#editableChanged event.
17428
+ */
17026
17429
  type SmartField$EditableChangedEvent = sap.ui.base.Event<
17027
17430
  SmartField$EditableChangedEventParameters,
17028
17431
  SmartField
17029
17432
  >;
17030
17433
 
17434
+ /**
17435
+ * Event object of the SmartField#entitySetFound event.
17436
+ */
17031
17437
  type SmartField$EntitySetFoundEvent = sap.ui.base.Event<
17032
17438
  SmartField$EntitySetFoundEventParameters,
17033
17439
  SmartField
17034
17440
  >;
17035
17441
 
17442
+ /**
17443
+ * Event object of the SmartField#initialise event.
17444
+ */
17036
17445
  type SmartField$InitialiseEvent = sap.ui.base.Event<
17037
17446
  SmartField$InitialiseEventParameters,
17038
17447
  SmartField
17039
17448
  >;
17040
17449
 
17450
+ /**
17451
+ * Event object of the SmartField#innerControlsCreated event.
17452
+ */
17041
17453
  type SmartField$InnerControlsCreatedEvent = sap.ui.base.Event<
17042
17454
  SmartField$InnerControlsCreatedEventParameters,
17043
17455
  SmartField
17044
17456
  >;
17045
17457
 
17458
+ /**
17459
+ * Event object of the SmartField#modeToggled event.
17460
+ */
17046
17461
  type SmartField$ModeToggledEvent = sap.ui.base.Event<
17047
17462
  SmartField$ModeToggledEventParameters,
17048
17463
  SmartField
17049
17464
  >;
17050
17465
 
17466
+ /**
17467
+ * Event object of the SmartField#press event.
17468
+ *
17469
+ * @deprecated (since 1.116.0) - with no replacement.
17470
+ */
17051
17471
  type SmartField$PressEvent = sap.ui.base.Event<
17052
17472
  SmartField$PressEventParameters,
17053
17473
  SmartField
17054
17474
  >;
17055
17475
 
17476
+ /**
17477
+ * Event object of the SmartField#valueListChanged event.
17478
+ */
17056
17479
  type SmartField$ValueListChangedEvent = sap.ui.base.Event<
17057
17480
  SmartField$ValueListChangedEventParameters,
17058
17481
  SmartField
17059
17482
  >;
17060
17483
 
17484
+ /**
17485
+ * Event object of the SmartField#visibleChanged event.
17486
+ */
17061
17487
  type SmartField$VisibleChangedEvent = sap.ui.base.Event<
17062
17488
  SmartField$VisibleChangedEventParameters,
17063
17489
  SmartField
@@ -17089,7 +17515,9 @@ declare namespace sap {
17089
17515
  error?: undefined | boolean;
17090
17516
  };
17091
17517
  }
17092
-
17518
+ /**
17519
+ * Describes the settings that can be provided to the ControlConfiguration constructor.
17520
+ */
17093
17521
  interface $ControlConfigurationSettings
17094
17522
  extends sap.ui.core.$ElementSettings {
17095
17523
  /**
@@ -17290,6 +17718,9 @@ declare namespace sap {
17290
17718
  change?: (oEvent: ControlConfiguration$ChangeEvent) => void;
17291
17719
  }
17292
17720
 
17721
+ /**
17722
+ * Describes the settings that can be provided to the GroupConfiguration constructor.
17723
+ */
17293
17724
  interface $GroupConfigurationSettings
17294
17725
  extends sap.ui.core.$ElementSettings {
17295
17726
  /**
@@ -17321,6 +17752,9 @@ declare namespace sap {
17321
17752
  change?: (oEvent: GroupConfiguration$ChangeEvent) => void;
17322
17753
  }
17323
17754
 
17755
+ /**
17756
+ * Describes the settings that can be provided to the SelectOption constructor.
17757
+ */
17324
17758
  interface $SelectOptionSettings extends sap.ui.core.$ElementSettings {
17325
17759
  /**
17326
17760
  * The sign for a Select Option. Possible values are I for include or E for exclude.
@@ -17349,6 +17783,11 @@ declare namespace sap {
17349
17783
  high?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
17350
17784
  }
17351
17785
 
17786
+ /**
17787
+ * Describes the settings that can be provided to the SFBMultiComboBox constructor.
17788
+ *
17789
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17790
+ */
17352
17791
  interface $SFBMultiComboBoxSettings
17353
17792
  extends sap.m.$MultiComboBoxSettings {
17354
17793
  /**
@@ -17360,6 +17799,9 @@ declare namespace sap {
17360
17799
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
17361
17800
  }
17362
17801
 
17802
+ /**
17803
+ * Describes the settings that can be provided to the SmartFilterBar constructor.
17804
+ */
17363
17805
  interface $SmartFilterBarSettings
17364
17806
  extends sap.ui.comp.filterbar.$FilterBarSettings {
17365
17807
  /**
@@ -17559,9 +18001,15 @@ declare namespace sap {
17559
18001
  pendingChange?: (oEvent: SmartFilterBar$PendingChangeEvent) => void;
17560
18002
  }
17561
18003
 
18004
+ /**
18005
+ * Describes the settings that can be provided to the SmartFilterBarFilterGroupItem constructor.
18006
+ */
17562
18007
  interface $SmartFilterBarFilterGroupItemSettings
17563
18008
  extends sap.ui.comp.filterbar.$FilterGroupItemSettings {}
17564
18009
 
18010
+ /**
18011
+ * Parameters of the ControlConfiguration#change event.
18012
+ */
17565
18013
  interface ControlConfiguration$ChangeEventParameters {
17566
18014
  /**
17567
18015
  * Name of the changed property
@@ -17569,6 +18017,9 @@ declare namespace sap {
17569
18017
  propertyName?: string;
17570
18018
  }
17571
18019
 
18020
+ /**
18021
+ * Parameters of the GroupConfiguration#change event.
18022
+ */
17572
18023
  interface GroupConfiguration$ChangeEventParameters {
17573
18024
  /**
17574
18025
  * Name of the changed property
@@ -17576,6 +18027,9 @@ declare namespace sap {
17576
18027
  propertyName?: string;
17577
18028
  }
17578
18029
 
18030
+ /**
18031
+ * Parameters of the SmartFilterBar#pendingChange event.
18032
+ */
17579
18033
  interface SmartFilterBar$PendingChangeEventParameters {
17580
18034
  /**
17581
18035
  * The current pending value.
@@ -20228,7 +20682,7 @@ declare namespace sap {
20228
20682
  */
20229
20683
  getControl(): sap.ui.core.Control | null;
20230
20684
  /**
20231
- * @deprecated (since 1.99)
20685
+ * @deprecated (since 1.99) - There is no replacement as all internal controls are considered private.
20232
20686
  */
20233
20687
  setControl(
20234
20688
  /**
@@ -20362,17 +20816,25 @@ declare namespace sap {
20362
20816
  */
20363
20817
  include = "I",
20364
20818
  }
20365
-
20819
+ /**
20820
+ * Event object of the ControlConfiguration#change event.
20821
+ */
20366
20822
  type ControlConfiguration$ChangeEvent = sap.ui.base.Event<
20367
20823
  ControlConfiguration$ChangeEventParameters,
20368
20824
  ControlConfiguration
20369
20825
  >;
20370
20826
 
20827
+ /**
20828
+ * Event object of the GroupConfiguration#change event.
20829
+ */
20371
20830
  type GroupConfiguration$ChangeEvent = sap.ui.base.Event<
20372
20831
  GroupConfiguration$ChangeEventParameters,
20373
20832
  GroupConfiguration
20374
20833
  >;
20375
20834
 
20835
+ /**
20836
+ * Event object of the SmartFilterBar#pendingChange event.
20837
+ */
20376
20838
  type SmartFilterBar$PendingChangeEvent = sap.ui.base.Event<
20377
20839
  SmartFilterBar$PendingChangeEventParameters,
20378
20840
  SmartFilterBar
@@ -20389,6 +20851,9 @@ declare namespace sap {
20389
20851
  __implements__sap_ui_comp_smartform_SmartFormLayout: boolean;
20390
20852
  }
20391
20853
 
20854
+ /**
20855
+ * Describes the settings that can be provided to the ColumnLayout constructor.
20856
+ */
20392
20857
  interface $ColumnLayoutSettings extends sap.ui.core.$ElementSettings {
20393
20858
  /**
20394
20859
  * Number of columns for extra-large size.
@@ -20436,6 +20901,9 @@ declare namespace sap {
20436
20901
  | `{${string}}`;
20437
20902
  }
20438
20903
 
20904
+ /**
20905
+ * Describes the settings that can be provided to the Group constructor.
20906
+ */
20439
20907
  interface $GroupSettings
20440
20908
  extends sap.ui.layout.form.$FormContainerSettings {
20441
20909
  /**
@@ -20497,6 +20965,9 @@ declare namespace sap {
20497
20965
  layout?: sap.ui.layout.GridData;
20498
20966
  }
20499
20967
 
20968
+ /**
20969
+ * Describes the settings that can be provided to the GroupElement constructor.
20970
+ */
20500
20971
  interface $GroupElementSettings
20501
20972
  extends sap.ui.layout.form.$FormElementSettings {
20502
20973
  /**
@@ -20559,6 +21030,9 @@ declare namespace sap {
20559
21030
  visibleChanged?: (oEvent: sap.ui.base.Event) => void;
20560
21031
  }
20561
21032
 
21033
+ /**
21034
+ * Describes the settings that can be provided to the Layout constructor.
21035
+ */
20562
21036
  interface $LayoutSettings extends sap.ui.core.$ElementSettings {
20563
21037
  /**
20564
21038
  * Default span for labels in extra large size.
@@ -20711,6 +21185,9 @@ declare namespace sap {
20711
21185
  | `{${string}}`;
20712
21186
  }
20713
21187
 
21188
+ /**
21189
+ * Describes the settings that can be provided to the SemanticGroupElement constructor.
21190
+ */
20714
21191
  interface $SemanticGroupElementSettings
20715
21192
  extends sap.ui.layout.form.$SemanticFormElementSettings {
20716
21193
  /**
@@ -20740,6 +21217,9 @@ declare namespace sap {
20740
21217
  visibleChanged?: (oEvent: sap.ui.base.Event) => void;
20741
21218
  }
20742
21219
 
21220
+ /**
21221
+ * Describes the settings that can be provided to the SmartForm constructor.
21222
+ */
20743
21223
  interface $SmartFormSettings extends sap.ui.core.$ControlSettings {
20744
21224
  /**
20745
21225
  * Title of the form.
@@ -20955,10 +21435,19 @@ declare namespace sap {
20955
21435
  checked?: (oEvent: SmartForm$CheckedEvent) => void;
20956
21436
  }
20957
21437
 
21438
+ /**
21439
+ * Parameters of the GroupElement#visibleChanged event.
21440
+ */
20958
21441
  interface GroupElement$VisibleChangedEventParameters {}
20959
21442
 
21443
+ /**
21444
+ * Parameters of the SemanticGroupElement#visibleChanged event.
21445
+ */
20960
21446
  interface SemanticGroupElement$VisibleChangedEventParameters {}
20961
21447
 
21448
+ /**
21449
+ * Parameters of the SmartForm#checked event.
21450
+ */
20962
21451
  interface SmartForm$CheckedEventParameters {
20963
21452
  /**
20964
21453
  * An array containing all smart fields with errors
@@ -20966,6 +21455,9 @@ declare namespace sap {
20966
21455
  erroneousFields?: sap.ui.comp.smartfield.SmartField[];
20967
21456
  }
20968
21457
 
21458
+ /**
21459
+ * Parameters of the SmartForm#editToggled event.
21460
+ */
20969
21461
  interface SmartForm$EditToggledEventParameters {
20970
21462
  /**
20971
21463
  * If `true`, the control is in edit mode
@@ -23920,22 +24412,33 @@ declare namespace sap {
23920
24412
  */
23921
24413
  Standard = "Standard",
23922
24414
  }
23923
-
24415
+ /**
24416
+ * Event object of the GroupElement#visibleChanged event.
24417
+ */
23924
24418
  type GroupElement$VisibleChangedEvent = sap.ui.base.Event<
23925
24419
  GroupElement$VisibleChangedEventParameters,
23926
24420
  GroupElement
23927
24421
  >;
23928
24422
 
24423
+ /**
24424
+ * Event object of the SemanticGroupElement#visibleChanged event.
24425
+ */
23929
24426
  type SemanticGroupElement$VisibleChangedEvent = sap.ui.base.Event<
23930
24427
  SemanticGroupElement$VisibleChangedEventParameters,
23931
24428
  SemanticGroupElement
23932
24429
  >;
23933
24430
 
24431
+ /**
24432
+ * Event object of the SmartForm#checked event.
24433
+ */
23934
24434
  type SmartForm$CheckedEvent = sap.ui.base.Event<
23935
24435
  SmartForm$CheckedEventParameters,
23936
24436
  SmartForm
23937
24437
  >;
23938
24438
 
24439
+ /**
24440
+ * Event object of the SmartForm#editToggled event.
24441
+ */
23939
24442
  type SmartForm$EditToggledEvent = sap.ui.base.Event<
23940
24443
  SmartForm$EditToggledEventParameters,
23941
24444
  SmartForm
@@ -23943,6 +24446,9 @@ declare namespace sap {
23943
24446
  }
23944
24447
 
23945
24448
  namespace smartlist {
24449
+ /**
24450
+ * Describes the settings that can be provided to the SmartList constructor.
24451
+ */
23946
24452
  interface $SmartListSettings extends sap.m.$VBoxSettings {
23947
24453
  /**
23948
24454
  * The entity set name from which to fetch data.
@@ -24081,10 +24587,19 @@ declare namespace sap {
24081
24587
  dataReceived?: (oEvent: sap.ui.base.Event) => void;
24082
24588
  }
24083
24589
 
24590
+ /**
24591
+ * Parameters of the SmartList#beforeRebindList event.
24592
+ */
24084
24593
  interface SmartList$BeforeRebindListEventParameters {}
24085
24594
 
24595
+ /**
24596
+ * Parameters of the SmartList#dataReceived event.
24597
+ */
24086
24598
  interface SmartList$DataReceivedEventParameters {}
24087
24599
 
24600
+ /**
24601
+ * Parameters of the SmartList#initialise event.
24602
+ */
24088
24603
  interface SmartList$InitialiseEventParameters {}
24089
24604
 
24090
24605
  /**
@@ -24817,17 +25332,25 @@ declare namespace sap {
24817
25332
  */
24818
25333
  Tree = "Tree",
24819
25334
  }
24820
-
25335
+ /**
25336
+ * Event object of the SmartList#beforeRebindList event.
25337
+ */
24821
25338
  type SmartList$BeforeRebindListEvent = sap.ui.base.Event<
24822
25339
  SmartList$BeforeRebindListEventParameters,
24823
25340
  SmartList
24824
25341
  >;
24825
25342
 
25343
+ /**
25344
+ * Event object of the SmartList#dataReceived event.
25345
+ */
24826
25346
  type SmartList$DataReceivedEvent = sap.ui.base.Event<
24827
25347
  SmartList$DataReceivedEventParameters,
24828
25348
  SmartList
24829
25349
  >;
24830
25350
 
25351
+ /**
25352
+ * Event object of the SmartList#initialise event.
25353
+ */
24831
25354
  type SmartList$InitialiseEvent = sap.ui.base.Event<
24832
25355
  SmartList$InitialiseEventParameters,
24833
25356
  SmartList
@@ -24835,6 +25358,9 @@ declare namespace sap {
24835
25358
  }
24836
25359
 
24837
25360
  namespace smartmicrochart {
25361
+ /**
25362
+ * Describes the settings that can be provided to the SmartAreaMicroChart constructor.
25363
+ */
24838
25364
  interface $SmartAreaMicroChartSettings
24839
25365
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {
24840
25366
  /**
@@ -24846,6 +25372,9 @@ declare namespace sap {
24846
25372
  | `{${string}}`;
24847
25373
  }
24848
25374
 
25375
+ /**
25376
+ * Describes the settings that can be provided to the SmartBulletMicroChart constructor.
25377
+ */
24849
25378
  interface $SmartBulletMicroChartSettings
24850
25379
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {
24851
25380
  /**
@@ -24858,12 +25387,21 @@ declare namespace sap {
24858
25387
  | `{${string}}`;
24859
25388
  }
24860
25389
 
25390
+ /**
25391
+ * Describes the settings that can be provided to the SmartColumnMicroChart constructor.
25392
+ */
24861
25393
  interface $SmartColumnMicroChartSettings
24862
25394
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {}
24863
25395
 
25396
+ /**
25397
+ * Describes the settings that can be provided to the SmartComparisonMicroChart constructor.
25398
+ */
24864
25399
  interface $SmartComparisonMicroChartSettings
24865
25400
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {}
24866
25401
 
25402
+ /**
25403
+ * Describes the settings that can be provided to the SmartDeltaMicroChart constructor.
25404
+ */
24867
25405
  interface $SmartDeltaMicroChartSettings
24868
25406
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {
24869
25407
  /**
@@ -24876,6 +25414,9 @@ declare namespace sap {
24876
25414
  | `{${string}}`;
24877
25415
  }
24878
25416
 
25417
+ /**
25418
+ * Describes the settings that can be provided to the SmartHarveyBallMicroChart constructor.
25419
+ */
24879
25420
  interface $SmartHarveyBallMicroChartSettings
24880
25421
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {
24881
25422
  /**
@@ -24894,9 +25435,15 @@ declare namespace sap {
24894
25435
  freeText?: sap.m.Label | string;
24895
25436
  }
24896
25437
 
25438
+ /**
25439
+ * Describes the settings that can be provided to the SmartLineMicroChart constructor.
25440
+ */
24897
25441
  interface $SmartLineMicroChartSettings
24898
25442
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {}
24899
25443
 
25444
+ /**
25445
+ * Describes the settings that can be provided to the SmartMicroChart constructor.
25446
+ */
24900
25447
  interface $SmartMicroChartSettings
24901
25448
  extends sap.ui.core.$ControlSettings {
24902
25449
  /**
@@ -25015,6 +25562,9 @@ declare namespace sap {
25015
25562
  initialize?: (oEvent: sap.ui.base.Event) => void;
25016
25563
  }
25017
25564
 
25565
+ /**
25566
+ * Describes the settings that can be provided to the SmartMicroChartBase constructor.
25567
+ */
25018
25568
  interface $SmartMicroChartBaseSettings
25019
25569
  extends sap.ui.core.$ControlSettings {
25020
25570
  /**
@@ -25117,6 +25667,9 @@ declare namespace sap {
25117
25667
  initialize?: (oEvent: sap.ui.base.Event) => void;
25118
25668
  }
25119
25669
 
25670
+ /**
25671
+ * Describes the settings that can be provided to the SmartRadialMicroChart constructor.
25672
+ */
25120
25673
  interface $SmartRadialMicroChartSettings
25121
25674
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {
25122
25675
  /**
@@ -25136,11 +25689,20 @@ declare namespace sap {
25136
25689
  freeText?: sap.m.Label | string;
25137
25690
  }
25138
25691
 
25692
+ /**
25693
+ * Describes the settings that can be provided to the SmartStackedBarMicroChart constructor.
25694
+ */
25139
25695
  interface $SmartStackedBarMicroChartSettings
25140
25696
  extends sap.ui.comp.smartmicrochart.$SmartMicroChartBaseSettings {}
25141
25697
 
25698
+ /**
25699
+ * Parameters of the SmartMicroChart#initialize event.
25700
+ */
25142
25701
  interface SmartMicroChart$InitializeEventParameters {}
25143
25702
 
25703
+ /**
25704
+ * Parameters of the SmartMicroChartBase#initialize event.
25705
+ */
25144
25706
  interface SmartMicroChartBase$InitializeEventParameters {}
25145
25707
 
25146
25708
  /**
@@ -27022,11 +27584,17 @@ declare namespace sap {
27022
27584
  static getMetadata(): sap.ui.core.ElementMetadata;
27023
27585
  }
27024
27586
 
27587
+ /**
27588
+ * Event object of the SmartMicroChart#initialize event.
27589
+ */
27025
27590
  type SmartMicroChart$InitializeEvent = sap.ui.base.Event<
27026
27591
  SmartMicroChart$InitializeEventParameters,
27027
27592
  SmartMicroChart
27028
27593
  >;
27029
27594
 
27595
+ /**
27596
+ * Event object of the SmartMicroChartBase#initialize event.
27597
+ */
27030
27598
  type SmartMicroChartBase$InitializeEvent = sap.ui.base.Event<
27031
27599
  SmartMicroChartBase$InitializeEventParameters,
27032
27600
  SmartMicroChartBase
@@ -27034,6 +27602,9 @@ declare namespace sap {
27034
27602
  }
27035
27603
 
27036
27604
  namespace smartmultiedit {
27605
+ /**
27606
+ * Describes the settings that can be provided to the Container constructor.
27607
+ */
27037
27608
  interface $ContainerSettings extends sap.ui.core.$ControlSettings {
27038
27609
  /**
27039
27610
  * The entity set name to fetch metadata for. This entity set should have `sap:creatable` annotation set
@@ -27057,6 +27628,9 @@ declare namespace sap {
27057
27628
  layout?: sap.ui.comp.smartform.SmartForm;
27058
27629
  }
27059
27630
 
27631
+ /**
27632
+ * Describes the settings that can be provided to the Field constructor.
27633
+ */
27060
27634
  interface $FieldSettings extends sap.ui.core.$ControlSettings {
27061
27635
  /**
27062
27636
  * The OData property name to fetch metadata for.
@@ -27110,6 +27684,9 @@ declare namespace sap {
27110
27684
  change?: (oEvent: Field$ChangeEvent) => void;
27111
27685
  }
27112
27686
 
27687
+ /**
27688
+ * Parameters of the Field#change event.
27689
+ */
27113
27690
  interface Field$ChangeEventParameters {
27114
27691
  /**
27115
27692
  * The selected item.
@@ -27850,6 +28427,9 @@ declare namespace sap {
27850
28427
  ): this;
27851
28428
  }
27852
28429
 
28430
+ /**
28431
+ * Event object of the Field#change event.
28432
+ */
27853
28433
  type Field$ChangeEvent = sap.ui.base.Event<
27854
28434
  Field$ChangeEventParameters,
27855
28435
  Field
@@ -27857,6 +28437,9 @@ declare namespace sap {
27857
28437
  }
27858
28438
 
27859
28439
  namespace smartmultiinput {
28440
+ /**
28441
+ * Describes the settings that can be provided to the SmartMultiInput constructor.
28442
+ */
27860
28443
  interface $SmartMultiInputSettings
27861
28444
  extends sap.ui.comp.smartfield.$SmartFieldSettings {
27862
28445
  /**
@@ -27945,6 +28528,9 @@ declare namespace sap {
27945
28528
  ) => void;
27946
28529
  }
27947
28530
 
28531
+ /**
28532
+ * Parameters of the SmartMultiInput#beforeCreate event.
28533
+ */
27948
28534
  interface SmartMultiInput$BeforeCreateEventParameters {
27949
28535
  /**
27950
28536
  * Data of the entry that should be created.
@@ -27959,6 +28545,9 @@ declare namespace sap {
27959
28545
  mParameters?: object;
27960
28546
  }
27961
28547
 
28548
+ /**
28549
+ * Parameters of the SmartMultiInput#beforeRemove event.
28550
+ */
27962
28551
  interface SmartMultiInput$BeforeRemoveEventParameters {
27963
28552
  /**
27964
28553
  * Parameter map that will be passed to the OData model's `remove` method, accepts the same properties as
@@ -27968,6 +28557,9 @@ declare namespace sap {
27968
28557
  mParameters?: object;
27969
28558
  }
27970
28559
 
28560
+ /**
28561
+ * Parameters of the SmartMultiInput#selectionChange event.
28562
+ */
27971
28563
  interface SmartMultiInput$SelectionChangeEventParameters {
27972
28564
  /**
27973
28565
  * Item that was selected or deselected.
@@ -27980,6 +28572,9 @@ declare namespace sap {
27980
28572
  selected?: boolean;
27981
28573
  }
27982
28574
 
28575
+ /**
28576
+ * Parameters of the SmartMultiInput#selectionFinish event.
28577
+ */
27983
28578
  interface SmartMultiInput$SelectionFinishEventParameters {
27984
28579
  /**
27985
28580
  * The selected items which are selected after list box has been closed.
@@ -27987,6 +28582,9 @@ declare namespace sap {
27987
28582
  selectedItems?: sap.ui.core.Item[];
27988
28583
  }
27989
28584
 
28585
+ /**
28586
+ * Parameters of the SmartMultiInput#tokenUpdate event.
28587
+ */
27990
28588
  interface SmartMultiInput$TokenUpdateEventParameters {
27991
28589
  /**
27992
28590
  * Type of TokenUpdate event. There are two TokenUpdate types: `added` and `removed`. Use Tokenizer.TokenUpdateType.Added
@@ -28741,26 +29339,41 @@ declare namespace sap {
28741
29339
  ): this;
28742
29340
  }
28743
29341
 
29342
+ /**
29343
+ * Event object of the SmartMultiInput#beforeCreate event.
29344
+ */
28744
29345
  type SmartMultiInput$BeforeCreateEvent = sap.ui.base.Event<
28745
29346
  SmartMultiInput$BeforeCreateEventParameters,
28746
29347
  SmartMultiInput
28747
29348
  >;
28748
29349
 
29350
+ /**
29351
+ * Event object of the SmartMultiInput#beforeRemove event.
29352
+ */
28749
29353
  type SmartMultiInput$BeforeRemoveEvent = sap.ui.base.Event<
28750
29354
  SmartMultiInput$BeforeRemoveEventParameters,
28751
29355
  SmartMultiInput
28752
29356
  >;
28753
29357
 
29358
+ /**
29359
+ * Event object of the SmartMultiInput#selectionChange event.
29360
+ */
28754
29361
  type SmartMultiInput$SelectionChangeEvent = sap.ui.base.Event<
28755
29362
  SmartMultiInput$SelectionChangeEventParameters,
28756
29363
  SmartMultiInput
28757
29364
  >;
28758
29365
 
29366
+ /**
29367
+ * Event object of the SmartMultiInput#selectionFinish event.
29368
+ */
28759
29369
  type SmartMultiInput$SelectionFinishEvent = sap.ui.base.Event<
28760
29370
  SmartMultiInput$SelectionFinishEventParameters,
28761
29371
  SmartMultiInput
28762
29372
  >;
28763
29373
 
29374
+ /**
29375
+ * Event object of the SmartMultiInput#tokenUpdate event.
29376
+ */
28764
29377
  type SmartMultiInput$TokenUpdateEvent = sap.ui.base.Event<
28765
29378
  SmartMultiInput$TokenUpdateEventParameters,
28766
29379
  SmartMultiInput
@@ -28768,6 +29381,9 @@ declare namespace sap {
28768
29381
  }
28769
29382
 
28770
29383
  namespace smarttable {
29384
+ /**
29385
+ * Describes the settings that can be provided to the SmartTable constructor.
29386
+ */
28771
29387
  interface $SmartTableSettings extends sap.m.$VBoxSettings {
28772
29388
  /**
28773
29389
  * The entity set name from which to fetch data and generate the columns. Note that this is not a dynamic
@@ -29588,6 +30204,9 @@ declare namespace sap {
29588
30204
  uiStateChange?: (oEvent: sap.ui.base.Event) => void;
29589
30205
  }
29590
30206
 
30207
+ /**
30208
+ * Parameters of the SmartTable#afterVariantApply event.
30209
+ */
29591
30210
  interface SmartTable$AfterVariantApplyEventParameters {
29592
30211
  /**
29593
30212
  * ID of the currently selected variant
@@ -29600,8 +30219,14 @@ declare namespace sap {
29600
30219
  variantContext?: string;
29601
30220
  }
29602
30221
 
30222
+ /**
30223
+ * Parameters of the SmartTable#afterVariantInitialise event.
30224
+ */
29603
30225
  interface SmartTable$AfterVariantInitialiseEventParameters {}
29604
30226
 
30227
+ /**
30228
+ * Parameters of the SmartTable#afterVariantSave event.
30229
+ */
29605
30230
  interface SmartTable$AfterVariantSaveEventParameters {
29606
30231
  /**
29607
30232
  * ID of the currently selected variant
@@ -29609,6 +30234,9 @@ declare namespace sap {
29609
30234
  currentVariantId?: string;
29610
30235
  }
29611
30236
 
30237
+ /**
30238
+ * Parameters of the SmartTable#beforeExport event.
30239
+ */
29612
30240
  interface SmartTable$BeforeExportEventParameters {
29613
30241
  /**
29614
30242
  * General export configuration
@@ -29626,6 +30254,11 @@ declare namespace sap {
29626
30254
  filterSettings?: /* was: sap.ui.export.util.Filter */ any[];
29627
30255
  }
29628
30256
 
30257
+ /**
30258
+ * Parameters of the SmartTable#beforePaste event.
30259
+ *
30260
+ * @experimental (since 1.64) - This API is experimental and subject to change
30261
+ */
29629
30262
  interface SmartTable$BeforePasteEventParameters {
29630
30263
  /**
29631
30264
  * Contains array of column info object as determined by the SmartTable
@@ -29633,6 +30266,9 @@ declare namespace sap {
29633
30266
  columnInfos?: object[];
29634
30267
  }
29635
30268
 
30269
+ /**
30270
+ * Parameters of the SmartTable#beforeRebindTable event.
30271
+ */
29636
30272
  interface SmartTable$BeforeRebindTableEventParameters {
29637
30273
  /**
29638
30274
  * Indicates whether the message filtering is active or not
@@ -29645,14 +30281,33 @@ declare namespace sap {
29645
30281
  bindingParams?: object;
29646
30282
  }
29647
30283
 
30284
+ /**
30285
+ * Parameters of the SmartTable#dataReceived event.
30286
+ *
30287
+ * @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
30288
+ */
29648
30289
  interface SmartTable$DataReceivedEventParameters {}
29649
30290
 
30291
+ /**
30292
+ * Parameters of the SmartTable#dataRequested event.
30293
+ *
30294
+ * @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
30295
+ */
29650
30296
  interface SmartTable$DataRequestedEventParameters {}
29651
30297
 
30298
+ /**
30299
+ * Parameters of the SmartTable#editToggled event.
30300
+ */
29652
30301
  interface SmartTable$EditToggledEventParameters {}
29653
30302
 
30303
+ /**
30304
+ * Parameters of the SmartTable#fieldChange event.
30305
+ */
29654
30306
  interface SmartTable$FieldChangeEventParameters {}
29655
30307
 
30308
+ /**
30309
+ * Parameters of the SmartTable#fullScreenToggled event.
30310
+ */
29656
30311
  interface SmartTable$FullScreenToggledEventParameters {
29657
30312
  /**
29658
30313
  * If `true`, control is in full screen mode
@@ -29660,8 +30315,16 @@ declare namespace sap {
29660
30315
  fullScreen?: boolean;
29661
30316
  }
29662
30317
 
30318
+ /**
30319
+ * Parameters of the SmartTable#initialise event.
30320
+ */
29663
30321
  interface SmartTable$InitialiseEventParameters {}
29664
30322
 
30323
+ /**
30324
+ * Parameters of the SmartTable#paste event.
30325
+ *
30326
+ * @experimental (since 1.64) - This API is experimental and subject to change
30327
+ */
29665
30328
  interface SmartTable$PasteEventParameters {
29666
30329
  /**
29667
30330
  * Contains parsed/validated paste information returned by PasteHelper.parse API
@@ -29669,6 +30332,9 @@ declare namespace sap {
29669
30332
  result?: object;
29670
30333
  }
29671
30334
 
30335
+ /**
30336
+ * Parameters of the SmartTable#showOverlay event.
30337
+ */
29672
30338
  interface SmartTable$ShowOverlayEventParameters {
29673
30339
  /**
29674
30340
  * The overlay object contains information related to the table's overlay
@@ -29676,6 +30342,9 @@ declare namespace sap {
29676
30342
  overlay?: object;
29677
30343
  }
29678
30344
 
30345
+ /**
30346
+ * Parameters of the SmartTable#uiStateChange event.
30347
+ */
29679
30348
  interface SmartTable$UiStateChangeEventParameters {}
29680
30349
 
29681
30350
  /**
@@ -33055,77 +33724,129 @@ declare namespace sap {
33055
33724
  */
33056
33725
  TreeTable = "TreeTable",
33057
33726
  }
33058
-
33727
+ /**
33728
+ * Event object of the SmartTable#afterVariantApply event.
33729
+ */
33059
33730
  type SmartTable$AfterVariantApplyEvent = sap.ui.base.Event<
33060
33731
  SmartTable$AfterVariantApplyEventParameters,
33061
33732
  SmartTable
33062
33733
  >;
33063
33734
 
33735
+ /**
33736
+ * Event object of the SmartTable#afterVariantInitialise event.
33737
+ */
33064
33738
  type SmartTable$AfterVariantInitialiseEvent = sap.ui.base.Event<
33065
33739
  SmartTable$AfterVariantInitialiseEventParameters,
33066
33740
  SmartTable
33067
33741
  >;
33068
33742
 
33743
+ /**
33744
+ * Event object of the SmartTable#afterVariantSave event.
33745
+ */
33069
33746
  type SmartTable$AfterVariantSaveEvent = sap.ui.base.Event<
33070
33747
  SmartTable$AfterVariantSaveEventParameters,
33071
33748
  SmartTable
33072
33749
  >;
33073
33750
 
33751
+ /**
33752
+ * Event object of the SmartTable#beforeExport event.
33753
+ */
33074
33754
  type SmartTable$BeforeExportEvent = sap.ui.base.Event<
33075
33755
  SmartTable$BeforeExportEventParameters,
33076
33756
  SmartTable
33077
33757
  >;
33078
33758
 
33759
+ /**
33760
+ * Event object of the SmartTable#beforePaste event.
33761
+ *
33762
+ * @experimental (since 1.64) - This API is experimental and subject to change
33763
+ */
33079
33764
  type SmartTable$BeforePasteEvent = sap.ui.base.Event<
33080
33765
  SmartTable$BeforePasteEventParameters,
33081
33766
  SmartTable
33082
33767
  >;
33083
33768
 
33769
+ /**
33770
+ * Event object of the SmartTable#beforeRebindTable event.
33771
+ */
33084
33772
  type SmartTable$BeforeRebindTableEvent = sap.ui.base.Event<
33085
33773
  SmartTable$BeforeRebindTableEventParameters,
33086
33774
  SmartTable
33087
33775
  >;
33088
33776
 
33777
+ /**
33778
+ * Event object of the SmartTable#dataReceived event.
33779
+ *
33780
+ * @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
33781
+ */
33089
33782
  type SmartTable$DataReceivedEvent = sap.ui.base.Event<
33090
33783
  SmartTable$DataReceivedEventParameters,
33091
33784
  SmartTable
33092
33785
  >;
33093
33786
 
33787
+ /**
33788
+ * Event object of the SmartTable#dataRequested event.
33789
+ *
33790
+ * @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
33791
+ */
33094
33792
  type SmartTable$DataRequestedEvent = sap.ui.base.Event<
33095
33793
  SmartTable$DataRequestedEventParameters,
33096
33794
  SmartTable
33097
33795
  >;
33098
33796
 
33797
+ /**
33798
+ * Event object of the SmartTable#editToggled event.
33799
+ */
33099
33800
  type SmartTable$EditToggledEvent = sap.ui.base.Event<
33100
33801
  SmartTable$EditToggledEventParameters,
33101
33802
  SmartTable
33102
33803
  >;
33103
33804
 
33805
+ /**
33806
+ * Event object of the SmartTable#fieldChange event.
33807
+ */
33104
33808
  type SmartTable$FieldChangeEvent = sap.ui.base.Event<
33105
33809
  SmartTable$FieldChangeEventParameters,
33106
33810
  SmartTable
33107
33811
  >;
33108
33812
 
33813
+ /**
33814
+ * Event object of the SmartTable#fullScreenToggled event.
33815
+ */
33109
33816
  type SmartTable$FullScreenToggledEvent = sap.ui.base.Event<
33110
33817
  SmartTable$FullScreenToggledEventParameters,
33111
33818
  SmartTable
33112
33819
  >;
33113
33820
 
33821
+ /**
33822
+ * Event object of the SmartTable#initialise event.
33823
+ */
33114
33824
  type SmartTable$InitialiseEvent = sap.ui.base.Event<
33115
33825
  SmartTable$InitialiseEventParameters,
33116
33826
  SmartTable
33117
33827
  >;
33118
33828
 
33829
+ /**
33830
+ * Event object of the SmartTable#paste event.
33831
+ *
33832
+ * @experimental (since 1.64) - This API is experimental and subject to change
33833
+ */
33119
33834
  type SmartTable$PasteEvent = sap.ui.base.Event<
33120
33835
  SmartTable$PasteEventParameters,
33121
33836
  SmartTable
33122
33837
  >;
33123
33838
 
33839
+ /**
33840
+ * Event object of the SmartTable#showOverlay event.
33841
+ */
33124
33842
  type SmartTable$ShowOverlayEvent = sap.ui.base.Event<
33125
33843
  SmartTable$ShowOverlayEventParameters,
33126
33844
  SmartTable
33127
33845
  >;
33128
33846
 
33847
+ /**
33848
+ * Event object of the SmartTable#uiStateChange event.
33849
+ */
33129
33850
  type SmartTable$UiStateChangeEvent = sap.ui.base.Event<
33130
33851
  SmartTable$UiStateChangeEventParameters,
33131
33852
  SmartTable
@@ -33133,6 +33854,9 @@ declare namespace sap {
33133
33854
  }
33134
33855
 
33135
33856
  namespace smartvariants {
33857
+ /**
33858
+ * Describes the settings that can be provided to the PersonalizableInfo constructor.
33859
+ */
33136
33860
  interface $PersonalizableInfoSettings
33137
33861
  extends sap.ui.core.$ElementSettings {
33138
33862
  /**
@@ -33156,6 +33880,9 @@ declare namespace sap {
33156
33880
  control?: sap.ui.core.Control | string;
33157
33881
  }
33158
33882
 
33883
+ /**
33884
+ * Describes the settings that can be provided to the SmartVariantManagement constructor.
33885
+ */
33159
33886
  interface $SmartVariantManagementSettings
33160
33887
  extends sap.ui.comp.smartvariants
33161
33888
  .$SmartVariantManagementBaseSettings {
@@ -33200,6 +33927,9 @@ declare namespace sap {
33200
33927
  afterSave?: (oEvent: sap.ui.base.Event) => void;
33201
33928
  }
33202
33929
 
33930
+ /**
33931
+ * Describes the settings that can be provided to the SmartVariantManagementAdapter constructor.
33932
+ */
33203
33933
  interface $SmartVariantManagementAdapterSettings
33204
33934
  extends sap.ui.core.$ElementSettings {
33205
33935
  /**
@@ -33211,6 +33941,9 @@ declare namespace sap {
33211
33941
  | `{${string}}`;
33212
33942
  }
33213
33943
 
33944
+ /**
33945
+ * Describes the settings that can be provided to the SmartVariantManagementBase constructor.
33946
+ */
33214
33947
  interface $SmartVariantManagementBaseSettings
33215
33948
  extends sap.ui.core.$ControlSettings {
33216
33949
  /**
@@ -33395,6 +34128,9 @@ declare namespace sap {
33395
34128
  select?: (oEvent: SmartVariantManagementBase$SelectEvent) => void;
33396
34129
  }
33397
34130
 
34131
+ /**
34132
+ * Describes the settings that can be provided to the SmartVariantManagementUi2 constructor.
34133
+ */
33398
34134
  interface $SmartVariantManagementUi2Settings
33399
34135
  extends sap.ui.core.$ControlSettings {
33400
34136
  /**
@@ -33478,10 +34214,22 @@ declare namespace sap {
33478
34214
  select?: (oEvent: SmartVariantManagementUi2$SelectEvent) => void;
33479
34215
  }
33480
34216
 
34217
+ /**
34218
+ * Parameters of the SmartVariantManagement#afterSave event.
34219
+ */
33481
34220
  interface SmartVariantManagement$AfterSaveEventParameters {}
33482
34221
 
34222
+ /**
34223
+ * Parameters of the SmartVariantManagement#initialise event.
34224
+ *
34225
+ * @deprecated (since 1.38.0) - Replaced by providing the personalizable control and the callback via the
34226
+ * `initialise`-method.
34227
+ */
33483
34228
  interface SmartVariantManagement$InitialiseEventParameters {}
33484
34229
 
34230
+ /**
34231
+ * Parameters of the SmartVariantManagement#save event.
34232
+ */
33485
34233
  interface SmartVariantManagement$SaveEventParameters
33486
34234
  extends sap.ui.comp.smartvariants
33487
34235
  .SmartVariantManagementBase$SaveEventParameters {
@@ -33493,6 +34241,9 @@ declare namespace sap {
33493
34241
  tile?: boolean;
33494
34242
  }
33495
34243
 
34244
+ /**
34245
+ * Parameters of the SmartVariantManagementBase#manage event.
34246
+ */
33496
34247
  interface SmartVariantManagementBase$ManageEventParameters {
33497
34248
  /**
33498
34249
  * List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
@@ -33516,6 +34267,9 @@ declare namespace sap {
33516
34267
  def?: string;
33517
34268
  }
33518
34269
 
34270
+ /**
34271
+ * Parameters of the SmartVariantManagementBase#save event.
34272
+ */
33519
34273
  interface SmartVariantManagementBase$SaveEventParameters {
33520
34274
  /**
33521
34275
  * The variant title
@@ -33548,6 +34302,9 @@ declare namespace sap {
33548
34302
  global?: boolean;
33549
34303
  }
33550
34304
 
34305
+ /**
34306
+ * Parameters of the SmartVariantManagementBase#select event.
34307
+ */
33551
34308
  interface SmartVariantManagementBase$SelectEventParameters {
33552
34309
  /**
33553
34310
  * The variant key
@@ -33555,10 +34312,19 @@ declare namespace sap {
33555
34312
  key?: string;
33556
34313
  }
33557
34314
 
34315
+ /**
34316
+ * Parameters of the SmartVariantManagementUi2#afterSave event.
34317
+ */
33558
34318
  interface SmartVariantManagementUi2$AfterSaveEventParameters {}
33559
34319
 
34320
+ /**
34321
+ * Parameters of the SmartVariantManagementUi2#initialise event.
34322
+ */
33560
34323
  interface SmartVariantManagementUi2$InitialiseEventParameters {}
33561
34324
 
34325
+ /**
34326
+ * Parameters of the SmartVariantManagementUi2#manage event.
34327
+ */
33562
34328
  interface SmartVariantManagementUi2$ManageEventParameters {
33563
34329
  /**
33564
34330
  * List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
@@ -33577,6 +34343,9 @@ declare namespace sap {
33577
34343
  def?: string;
33578
34344
  }
33579
34345
 
34346
+ /**
34347
+ * Parameters of the SmartVariantManagementUi2#save event.
34348
+ */
33580
34349
  interface SmartVariantManagementUi2$SaveEventParameters {
33581
34350
  /**
33582
34351
  * The variant title
@@ -33599,6 +34368,9 @@ declare namespace sap {
33599
34368
  def?: boolean;
33600
34369
  }
33601
34370
 
34371
+ /**
34372
+ * Parameters of the SmartVariantManagementUi2#select event.
34373
+ */
33602
34374
  interface SmartVariantManagementUi2$SelectEventParameters {
33603
34375
  /**
33604
34376
  * The variant key
@@ -36036,57 +36808,92 @@ declare namespace sap {
36036
36808
  */
36037
36809
  removeFavorite = "removeFavorite",
36038
36810
  }
36039
-
36811
+ /**
36812
+ * Event object of the SmartVariantManagement#afterSave event.
36813
+ */
36040
36814
  type SmartVariantManagement$AfterSaveEvent = sap.ui.base.Event<
36041
36815
  SmartVariantManagement$AfterSaveEventParameters,
36042
36816
  SmartVariantManagement
36043
36817
  >;
36044
36818
 
36819
+ /**
36820
+ * Event object of the SmartVariantManagement#initialise event.
36821
+ *
36822
+ * @deprecated (since 1.38.0) - Replaced by providing the personalizable control and the callback via the
36823
+ * `initialise`-method.
36824
+ */
36045
36825
  type SmartVariantManagement$InitialiseEvent = sap.ui.base.Event<
36046
36826
  SmartVariantManagement$InitialiseEventParameters,
36047
36827
  SmartVariantManagement
36048
36828
  >;
36049
36829
 
36830
+ /**
36831
+ * Event object of the SmartVariantManagement#save event.
36832
+ */
36050
36833
  type SmartVariantManagement$SaveEvent = sap.ui.base.Event<
36051
36834
  SmartVariantManagement$SaveEventParameters,
36052
36835
  SmartVariantManagement
36053
36836
  >;
36054
36837
 
36838
+ /**
36839
+ * Event object of the SmartVariantManagementBase#manage event.
36840
+ */
36055
36841
  type SmartVariantManagementBase$ManageEvent = sap.ui.base.Event<
36056
36842
  SmartVariantManagementBase$ManageEventParameters,
36057
36843
  SmartVariantManagementBase
36058
36844
  >;
36059
36845
 
36846
+ /**
36847
+ * Event object of the SmartVariantManagementBase#save event.
36848
+ */
36060
36849
  type SmartVariantManagementBase$SaveEvent = sap.ui.base.Event<
36061
36850
  SmartVariantManagementBase$SaveEventParameters,
36062
36851
  SmartVariantManagementBase
36063
36852
  >;
36064
36853
 
36854
+ /**
36855
+ * Event object of the SmartVariantManagementBase#select event.
36856
+ */
36065
36857
  type SmartVariantManagementBase$SelectEvent = sap.ui.base.Event<
36066
36858
  SmartVariantManagementBase$SelectEventParameters,
36067
36859
  SmartVariantManagementBase
36068
36860
  >;
36069
36861
 
36862
+ /**
36863
+ * Event object of the SmartVariantManagementUi2#afterSave event.
36864
+ */
36070
36865
  type SmartVariantManagementUi2$AfterSaveEvent = sap.ui.base.Event<
36071
36866
  SmartVariantManagementUi2$AfterSaveEventParameters,
36072
36867
  SmartVariantManagementUi2
36073
36868
  >;
36074
36869
 
36870
+ /**
36871
+ * Event object of the SmartVariantManagementUi2#initialise event.
36872
+ */
36075
36873
  type SmartVariantManagementUi2$InitialiseEvent = sap.ui.base.Event<
36076
36874
  SmartVariantManagementUi2$InitialiseEventParameters,
36077
36875
  SmartVariantManagementUi2
36078
36876
  >;
36079
36877
 
36878
+ /**
36879
+ * Event object of the SmartVariantManagementUi2#manage event.
36880
+ */
36080
36881
  type SmartVariantManagementUi2$ManageEvent = sap.ui.base.Event<
36081
36882
  SmartVariantManagementUi2$ManageEventParameters,
36082
36883
  SmartVariantManagementUi2
36083
36884
  >;
36084
36885
 
36886
+ /**
36887
+ * Event object of the SmartVariantManagementUi2#save event.
36888
+ */
36085
36889
  type SmartVariantManagementUi2$SaveEvent = sap.ui.base.Event<
36086
36890
  SmartVariantManagementUi2$SaveEventParameters,
36087
36891
  SmartVariantManagementUi2
36088
36892
  >;
36089
36893
 
36894
+ /**
36895
+ * Event object of the SmartVariantManagementUi2#select event.
36896
+ */
36090
36897
  type SmartVariantManagementUi2$SelectEvent = sap.ui.base.Event<
36091
36898
  SmartVariantManagementUi2$SelectEventParameters,
36092
36899
  SmartVariantManagementUi2
@@ -36107,7 +36914,9 @@ declare namespace sap {
36107
36914
  SelectionVariantID: string;
36108
36915
  };
36109
36916
  }
36110
-
36917
+ /**
36918
+ * Describes the settings that can be provided to the UIState constructor.
36919
+ */
36111
36920
  interface $UIStateSettings extends sap.ui.base.$ManagedObjectSettings {
36112
36921
  /**
36113
36922
  * Object representing the presentation variant. The structure looks like:
@@ -36694,6 +37503,9 @@ declare namespace sap {
36694
37503
  }
36695
37504
 
36696
37505
  namespace valuehelpdialog {
37506
+ /**
37507
+ * Describes the settings that can be provided to the ValueHelpDialog constructor.
37508
+ */
36697
37509
  interface $ValueHelpDialogSettings extends sap.m.$DialogSettings {
36698
37510
  /**
36699
37511
  * Defines the value for the basic search field. The value is set into the basic search field of the filter
@@ -36766,7 +37578,7 @@ declare namespace sap {
36766
37578
  * Defines the maximum number of include ranges. If value is 0 - the include group of operators should not
36767
37579
  * be displayed.
36768
37580
  *
36769
- * @deprecated (since 1.84.1)
37581
+ * @deprecated (since 1.84.1) - replaced by `maxConditions`.
36770
37582
  */
36771
37583
  maxIncludeRanges?:
36772
37584
  | string
@@ -36776,7 +37588,7 @@ declare namespace sap {
36776
37588
  * Defines the maximum number of exclude ranges. If value is 0 - the exclude group of operators should not
36777
37589
  * be displayed.
36778
37590
  *
36779
- * @deprecated (since 1.84.1)
37591
+ * @deprecated (since 1.84.1) - replaced by `maxConditions`.
36780
37592
  */
36781
37593
  maxExcludeRanges?:
36782
37594
  | string
@@ -36897,8 +37709,14 @@ declare namespace sap {
36897
37709
  ) => void;
36898
37710
  }
36899
37711
 
37712
+ /**
37713
+ * Parameters of the ValueHelpDialog#cancel event.
37714
+ */
36900
37715
  interface ValueHelpDialog$CancelEventParameters {}
36901
37716
 
37717
+ /**
37718
+ * Parameters of the ValueHelpDialog#ok event.
37719
+ */
36902
37720
  interface ValueHelpDialog$OkEventParameters {
36903
37721
  /**
36904
37722
  * The array of tokens created or modified on the ValueHelpDialog.
@@ -36906,6 +37724,9 @@ declare namespace sap {
36906
37724
  tokens?: sap.m.Token[];
36907
37725
  }
36908
37726
 
37727
+ /**
37728
+ * Parameters of the ValueHelpDialog#selectionChange event.
37729
+ */
36909
37730
  interface ValueHelpDialog$SelectionChangeEventParameters {
36910
37731
  /**
36911
37732
  * The RowSelectionChange event parameter from the hosted table that contains the selected items.
@@ -36930,6 +37751,9 @@ declare namespace sap {
36930
37751
  table?: object;
36931
37752
  }
36932
37753
 
37754
+ /**
37755
+ * Parameters of the ValueHelpDialog#tokenRemove event.
37756
+ */
36933
37757
  interface ValueHelpDialog$TokenRemoveEventParameters {
36934
37758
  /**
36935
37759
  * The array of token keys that has been removed.
@@ -36942,6 +37766,9 @@ declare namespace sap {
36942
37766
  useDefault?: boolean;
36943
37767
  }
36944
37768
 
37769
+ /**
37770
+ * Parameters of the ValueHelpDialog#updateSelection event.
37771
+ */
36945
37772
  interface ValueHelpDialog$UpdateSelectionEventParameters {
36946
37773
  /**
36947
37774
  * The array of existing token keys for which the selection in the table has to be updated.
@@ -37607,7 +38434,7 @@ declare namespace sap {
37607
38434
  *
37608
38435
  * Default value is `'-1'`.
37609
38436
  *
37610
- * @deprecated (since 1.84.1)
38437
+ * @deprecated (since 1.84.1) - replaced by `maxConditions`.
37611
38438
  *
37612
38439
  * @returns Value of property `maxExcludeRanges`
37613
38440
  */
@@ -37620,7 +38447,7 @@ declare namespace sap {
37620
38447
  *
37621
38448
  * Default value is `'-1'`.
37622
38449
  *
37623
- * @deprecated (since 1.84.1)
38450
+ * @deprecated (since 1.84.1) - replaced by `maxConditions`.
37624
38451
  *
37625
38452
  * @returns Value of property `maxIncludeRanges`
37626
38453
  */
@@ -37929,7 +38756,7 @@ declare namespace sap {
37929
38756
  *
37930
38757
  * Default value is `'-1'`.
37931
38758
  *
37932
- * @deprecated (since 1.84.1)
38759
+ * @deprecated (since 1.84.1) - replaced by `maxConditions`.
37933
38760
  *
37934
38761
  * @returns Reference to `this` in order to allow method chaining
37935
38762
  */
@@ -37949,7 +38776,7 @@ declare namespace sap {
37949
38776
  *
37950
38777
  * Default value is `'-1'`.
37951
38778
  *
37952
- * @deprecated (since 1.84.1)
38779
+ * @deprecated (since 1.84.1) - replaced by `maxConditions`.
37953
38780
  *
37954
38781
  * @returns Reference to `this` in order to allow method chaining
37955
38782
  */
@@ -38130,27 +38957,41 @@ declare namespace sap {
38130
38957
  */
38131
38958
  StartsWith = "StartsWith",
38132
38959
  }
38133
-
38960
+ /**
38961
+ * Event object of the ValueHelpDialog#cancel event.
38962
+ */
38134
38963
  type ValueHelpDialog$CancelEvent = sap.ui.base.Event<
38135
38964
  ValueHelpDialog$CancelEventParameters,
38136
38965
  ValueHelpDialog
38137
38966
  >;
38138
38967
 
38968
+ /**
38969
+ * Event object of the ValueHelpDialog#ok event.
38970
+ */
38139
38971
  type ValueHelpDialog$OkEvent = sap.ui.base.Event<
38140
38972
  ValueHelpDialog$OkEventParameters,
38141
38973
  ValueHelpDialog
38142
38974
  >;
38143
38975
 
38976
+ /**
38977
+ * Event object of the ValueHelpDialog#selectionChange event.
38978
+ */
38144
38979
  type ValueHelpDialog$SelectionChangeEvent = sap.ui.base.Event<
38145
38980
  ValueHelpDialog$SelectionChangeEventParameters,
38146
38981
  ValueHelpDialog
38147
38982
  >;
38148
38983
 
38984
+ /**
38985
+ * Event object of the ValueHelpDialog#tokenRemove event.
38986
+ */
38149
38987
  type ValueHelpDialog$TokenRemoveEvent = sap.ui.base.Event<
38150
38988
  ValueHelpDialog$TokenRemoveEventParameters,
38151
38989
  ValueHelpDialog
38152
38990
  >;
38153
38991
 
38992
+ /**
38993
+ * Event object of the ValueHelpDialog#updateSelection event.
38994
+ */
38154
38995
  type ValueHelpDialog$UpdateSelectionEvent = sap.ui.base.Event<
38155
38996
  ValueHelpDialog$UpdateSelectionEventParameters,
38156
38997
  ValueHelpDialog
@@ -38158,6 +38999,11 @@ declare namespace sap {
38158
38999
  }
38159
39000
 
38160
39001
  namespace variants {
39002
+ /**
39003
+ * Describes the settings that can be provided to the EditableVariantItem constructor.
39004
+ *
39005
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39006
+ */
38161
39007
  interface $EditableVariantItemSettings
38162
39008
  extends sap.m.$ColumnListItemSettings {
38163
39009
  /**
@@ -38250,12 +39096,15 @@ declare namespace sap {
38250
39096
  | `{${string}}`;
38251
39097
  }
38252
39098
 
39099
+ /**
39100
+ * Describes the settings that can be provided to the VariantItem constructor.
39101
+ */
38253
39102
  interface $VariantItemSettings extends sap.m.$VariantItemSettings {
38254
39103
  /**
38255
39104
  * Attribute for usage in `SmartFilterBar`
38256
39105
  *
38257
39106
  * @since 1.26.0
38258
- * @deprecated (since 1.120.0)
39107
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38259
39108
  */
38260
39109
  executeOnSelection?:
38261
39110
  | boolean
@@ -38266,7 +39115,7 @@ declare namespace sap {
38266
39115
  * If set to `false`, the user is allowed to change the item's data
38267
39116
  *
38268
39117
  * @since 1.26.0
38269
- * @deprecated (since 1.120.0)
39118
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38270
39119
  */
38271
39120
  readOnly?:
38272
39121
  | boolean
@@ -38277,7 +39126,7 @@ declare namespace sap {
38277
39126
  * Identifier of the transport object the variant is assigned to.
38278
39127
  *
38279
39128
  * @since 1.26.0
38280
- * @deprecated (since 1.120.0)
39129
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38281
39130
  */
38282
39131
  lifecycleTransportId?:
38283
39132
  | string
@@ -38287,7 +39136,7 @@ declare namespace sap {
38287
39136
  * Indicator if a variant is visible for all users.
38288
39137
  *
38289
39138
  * @since 1.26.0
38290
- * @deprecated (since 1.120.0)
39139
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38291
39140
  */
38292
39141
  global?:
38293
39142
  | boolean
@@ -38298,7 +39147,7 @@ declare namespace sap {
38298
39147
  * ABAP package the variant is assigned to. Used for transport functionality.
38299
39148
  *
38300
39149
  * @since 1.26.0
38301
- * @deprecated (since 1.120.0)
39150
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38302
39151
  */
38303
39152
  lifecyclePackage?:
38304
39153
  | string
@@ -38308,7 +39157,7 @@ declare namespace sap {
38308
39157
  * Variant namespace
38309
39158
  *
38310
39159
  * @since 1.26.0
38311
- * @deprecated (since 1.120.0)
39160
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38312
39161
  */
38313
39162
  namespace?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
38314
39163
 
@@ -38326,7 +39175,7 @@ declare namespace sap {
38326
39175
  * Indicates if the variant title can be changed.
38327
39176
  *
38328
39177
  * @since 1.26.0
38329
- * @deprecated (since 1.120.0)
39178
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38330
39179
  */
38331
39180
  labelReadOnly?:
38332
39181
  | boolean
@@ -38339,6 +39188,11 @@ declare namespace sap {
38339
39188
  change?: (oEvent: VariantItem$ChangeEvent) => void;
38340
39189
  }
38341
39190
 
39191
+ /**
39192
+ * Describes the settings that can be provided to the VariantManagement constructor.
39193
+ *
39194
+ * @deprecated (since 1.120.0) - replaced by the {@link sap.m.VariantManagement} control.
39195
+ */
38342
39196
  interface $VariantManagementSettings
38343
39197
  extends sap.ui.core.$ControlSettings {
38344
39198
  /**
@@ -38526,6 +39380,9 @@ declare namespace sap {
38526
39380
  select?: (oEvent: VariantManagement$SelectEvent) => void;
38527
39381
  }
38528
39382
 
39383
+ /**
39384
+ * Parameters of the VariantItem#change event.
39385
+ */
38529
39386
  interface VariantItem$ChangeEventParameters {
38530
39387
  /**
38531
39388
  * Name of the changed property
@@ -38533,6 +39390,9 @@ declare namespace sap {
38533
39390
  propertyName?: string;
38534
39391
  }
38535
39392
 
39393
+ /**
39394
+ * Parameters of the VariantManagement#manage event.
39395
+ */
38536
39396
  interface VariantManagement$ManageEventParameters {
38537
39397
  /**
38538
39398
  * List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
@@ -38556,6 +39416,9 @@ declare namespace sap {
38556
39416
  def?: string;
38557
39417
  }
38558
39418
 
39419
+ /**
39420
+ * Parameters of the VariantManagement#save event.
39421
+ */
38559
39422
  interface VariantManagement$SaveEventParameters {
38560
39423
  /**
38561
39424
  * The variant title
@@ -38598,6 +39461,9 @@ declare namespace sap {
38598
39461
  lifecycleTransportId?: string;
38599
39462
  }
38600
39463
 
39464
+ /**
39465
+ * Parameters of the VariantManagement#select event.
39466
+ */
38601
39467
  interface VariantManagement$SelectEventParameters {
38602
39468
  /**
38603
39469
  * The variant key
@@ -38608,7 +39474,7 @@ declare namespace sap {
38608
39474
  /**
38609
39475
  * The EditableVariantItem class describes an editable variant list item for the Manage Variants popup.
38610
39476
  *
38611
- * @deprecated (since 1.120)
39477
+ * @deprecated (since 1.120.0) - the concept has been discarded.
38612
39478
  */
38613
39479
  class EditableVariantItem extends sap.m.ColumnListItem {
38614
39480
  /**
@@ -39124,7 +39990,7 @@ declare namespace sap {
39124
39990
  * Default value is `false`.
39125
39991
  *
39126
39992
  * @since 1.26.0
39127
- * @deprecated (since 1.120.0)
39993
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39128
39994
  *
39129
39995
  * @returns Value of property `executeOnSelection`
39130
39996
  */
@@ -39135,7 +40001,7 @@ declare namespace sap {
39135
40001
  * Indicator if a variant is visible for all users.
39136
40002
  *
39137
40003
  * @since 1.26.0
39138
- * @deprecated (since 1.120.0)
40004
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39139
40005
  *
39140
40006
  * @returns Value of property `global`
39141
40007
  */
@@ -39148,7 +40014,7 @@ declare namespace sap {
39148
40014
  * Default value is `false`.
39149
40015
  *
39150
40016
  * @since 1.26.0
39151
- * @deprecated (since 1.120.0)
40017
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39152
40018
  *
39153
40019
  * @returns Value of property `labelReadOnly`
39154
40020
  */
@@ -39159,7 +40025,7 @@ declare namespace sap {
39159
40025
  * ABAP package the variant is assigned to. Used for transport functionality.
39160
40026
  *
39161
40027
  * @since 1.26.0
39162
- * @deprecated (since 1.120.0)
40028
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39163
40029
  *
39164
40030
  * @returns Value of property `lifecyclePackage`
39165
40031
  */
@@ -39170,7 +40036,7 @@ declare namespace sap {
39170
40036
  * Identifier of the transport object the variant is assigned to.
39171
40037
  *
39172
40038
  * @since 1.26.0
39173
- * @deprecated (since 1.120.0)
40039
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39174
40040
  *
39175
40041
  * @returns Value of property `lifecycleTransportId`
39176
40042
  */
@@ -39181,7 +40047,7 @@ declare namespace sap {
39181
40047
  * Variant namespace
39182
40048
  *
39183
40049
  * @since 1.26.0
39184
- * @deprecated (since 1.120.0)
40050
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39185
40051
  *
39186
40052
  * @returns Value of property `namespace`
39187
40053
  */
@@ -39194,7 +40060,7 @@ declare namespace sap {
39194
40060
  * Default value is `false`.
39195
40061
  *
39196
40062
  * @since 1.26.0
39197
- * @deprecated (since 1.120.0)
40063
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39198
40064
  *
39199
40065
  * @returns Value of property `readOnly`
39200
40066
  */
@@ -39227,7 +40093,7 @@ declare namespace sap {
39227
40093
  * Default value is `false`.
39228
40094
  *
39229
40095
  * @since 1.26.0
39230
- * @deprecated (since 1.120.0)
40096
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39231
40097
  *
39232
40098
  * @returns Reference to `this` in order to allow method chaining
39233
40099
  */
@@ -39245,7 +40111,7 @@ declare namespace sap {
39245
40111
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39246
40112
  *
39247
40113
  * @since 1.26.0
39248
- * @deprecated (since 1.120.0)
40114
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39249
40115
  *
39250
40116
  * @returns Reference to `this` in order to allow method chaining
39251
40117
  */
@@ -39265,7 +40131,7 @@ declare namespace sap {
39265
40131
  * Default value is `false`.
39266
40132
  *
39267
40133
  * @since 1.26.0
39268
- * @deprecated (since 1.120.0)
40134
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39269
40135
  *
39270
40136
  * @returns Reference to `this` in order to allow method chaining
39271
40137
  */
@@ -39283,7 +40149,7 @@ declare namespace sap {
39283
40149
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39284
40150
  *
39285
40151
  * @since 1.26.0
39286
- * @deprecated (since 1.120.0)
40152
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39287
40153
  *
39288
40154
  * @returns Reference to `this` in order to allow method chaining
39289
40155
  */
@@ -39301,7 +40167,7 @@ declare namespace sap {
39301
40167
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39302
40168
  *
39303
40169
  * @since 1.26.0
39304
- * @deprecated (since 1.120.0)
40170
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39305
40171
  *
39306
40172
  * @returns Reference to `this` in order to allow method chaining
39307
40173
  */
@@ -39319,7 +40185,7 @@ declare namespace sap {
39319
40185
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
39320
40186
  *
39321
40187
  * @since 1.26.0
39322
- * @deprecated (since 1.120.0)
40188
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39323
40189
  *
39324
40190
  * @returns Reference to `this` in order to allow method chaining
39325
40191
  */
@@ -39339,7 +40205,7 @@ declare namespace sap {
39339
40205
  * Default value is `false`.
39340
40206
  *
39341
40207
  * @since 1.26.0
39342
- * @deprecated (since 1.120.0)
40208
+ * @deprecated (since 1.120.0) - the concept has been discarded.
39343
40209
  *
39344
40210
  * @returns Reference to `this` in order to allow method chaining
39345
40211
  */
@@ -40372,21 +41238,33 @@ declare namespace sap {
40372
41238
  ): this;
40373
41239
  }
40374
41240
 
41241
+ /**
41242
+ * Event object of the VariantItem#change event.
41243
+ */
40375
41244
  type VariantItem$ChangeEvent = sap.ui.base.Event<
40376
41245
  VariantItem$ChangeEventParameters,
40377
41246
  VariantItem
40378
41247
  >;
40379
41248
 
41249
+ /**
41250
+ * Event object of the VariantManagement#manage event.
41251
+ */
40380
41252
  type VariantManagement$ManageEvent = sap.ui.base.Event<
40381
41253
  VariantManagement$ManageEventParameters,
40382
41254
  VariantManagement
40383
41255
  >;
40384
41256
 
41257
+ /**
41258
+ * Event object of the VariantManagement#save event.
41259
+ */
40385
41260
  type VariantManagement$SaveEvent = sap.ui.base.Event<
40386
41261
  VariantManagement$SaveEventParameters,
40387
41262
  VariantManagement
40388
41263
  >;
40389
41264
 
41265
+ /**
41266
+ * Event object of the VariantManagement#select event.
41267
+ */
40390
41268
  type VariantManagement$SelectEvent = sap.ui.base.Event<
40391
41269
  VariantManagement$SelectEventParameters,
40392
41270
  VariantManagement