@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.2
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -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
  /**
@@ -48,6 +48,9 @@ declare namespace sap {
48
48
  __implements__sap_uxap_IHeaderTitle: boolean;
49
49
  }
50
50
 
51
+ /**
52
+ * Describes the settings that can be provided to the AnchorBar constructor.
53
+ */
51
54
  interface $AnchorBarSettings extends sap.m.$ToolbarSettings {
52
55
  /**
53
56
  * Determines whether to show a Popover with Subsection links when clicking on Section links in the Anchor
@@ -85,6 +88,9 @@ declare namespace sap {
85
88
  selectedButton?: sap.m.Button | string;
86
89
  }
87
90
 
91
+ /**
92
+ * Describes the settings that can be provided to the BlockBase constructor.
93
+ */
88
94
  interface $BlockBaseSettings extends sap.ui.core.$ControlSettings {
89
95
  /**
90
96
  * Determines the mode of the block. See {@link sap.uxap.ObjectPageSubSectionMode ObjectPageSubSectionMode}.
@@ -161,6 +167,9 @@ declare namespace sap {
161
167
  viewInit?: (oEvent: BlockBase$ViewInitEvent) => void;
162
168
  }
163
169
 
170
+ /**
171
+ * Describes the settings that can be provided to the BreadCrumbs constructor.
172
+ */
164
173
  interface $BreadCrumbsSettings extends sap.ui.core.$ControlSettings {
165
174
  /**
166
175
  * Sets the visibility of the current/last element in the BreadCrumbs path.
@@ -185,6 +194,9 @@ declare namespace sap {
185
194
  currentLocation?: sap.m.Text;
186
195
  }
187
196
 
197
+ /**
198
+ * Describes the settings that can be provided to the HierarchicalSelect constructor.
199
+ */
188
200
  interface $HierarchicalSelectSettings extends sap.m.$SelectSettings {
189
201
  /**
190
202
  * Determines whether the HierarchicalSelect items are displayed in upper case.
@@ -195,6 +207,9 @@ declare namespace sap {
195
207
  | `{${string}}`;
196
208
  }
197
209
 
210
+ /**
211
+ * Describes the settings that can be provided to the ModelMapping constructor.
212
+ */
198
213
  interface $ModelMappingSettings extends sap.ui.core.$ElementSettings {
199
214
  /**
200
215
  * Determines the external model name.
@@ -216,6 +231,9 @@ declare namespace sap {
216
231
  externalPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
217
232
  }
218
233
 
234
+ /**
235
+ * Describes the settings that can be provided to the ObjectPageAccessibleLandmarkInfo constructor.
236
+ */
219
237
  interface $ObjectPageAccessibleLandmarkInfoSettings
220
238
  extends sap.ui.core.$ElementSettings {
221
239
  /**
@@ -314,12 +332,21 @@ declare namespace sap {
314
332
  footerLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
315
333
  }
316
334
 
335
+ /**
336
+ * Describes the settings that can be provided to the ObjectPageDynamicHeaderContent constructor.
337
+ */
317
338
  interface $ObjectPageDynamicHeaderContentSettings
318
339
  extends sap.f.$DynamicPageHeaderSettings {}
319
340
 
341
+ /**
342
+ * Describes the settings that can be provided to the ObjectPageDynamicHeaderTitle constructor.
343
+ */
320
344
  interface $ObjectPageDynamicHeaderTitleSettings
321
345
  extends sap.f.$DynamicPageTitleSettings {}
322
346
 
347
+ /**
348
+ * Describes the settings that can be provided to the ObjectPageHeader constructor.
349
+ */
323
350
  interface $ObjectPageHeaderSettings extends sap.ui.core.$ControlSettings {
324
351
  /**
325
352
  * The URL of the image, representing the business object
@@ -404,7 +431,7 @@ declare namespace sap {
404
431
  * Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
405
432
  * to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
406
433
  *
407
- * @deprecated (since 1.40.1)
434
+ * @deprecated (since 1.40.1) - without replacement.
408
435
  */
409
436
  headerDesign?:
410
437
  | sap.uxap.ObjectPageHeaderDesign
@@ -554,6 +581,9 @@ declare namespace sap {
554
581
  ) => void;
555
582
  }
556
583
 
584
+ /**
585
+ * Describes the settings that can be provided to the ObjectPageHeaderActionButton constructor.
586
+ */
557
587
  interface $ObjectPageHeaderActionButtonSettings
558
588
  extends sap.m.$ButtonSettings {
559
589
  /**
@@ -587,13 +617,16 @@ declare namespace sap {
587
617
  | `{${string}}`;
588
618
  }
589
619
 
620
+ /**
621
+ * Describes the settings that can be provided to the ObjectPageHeaderContent constructor.
622
+ */
590
623
  interface $ObjectPageHeaderContentSettings
591
624
  extends sap.ui.core.$ControlSettings {
592
625
  /**
593
626
  * Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
594
627
  * to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
595
628
  *
596
- * @deprecated (since 1.40.1)
629
+ * @deprecated (since 1.40.1) - without replacement.
597
630
  */
598
631
  contentDesign?:
599
632
  | sap.uxap.ObjectPageHeaderDesign
@@ -610,6 +643,9 @@ declare namespace sap {
610
643
  | `{${string}}`;
611
644
  }
612
645
 
646
+ /**
647
+ * Describes the settings that can be provided to the ObjectPageHeaderLayoutData constructor.
648
+ */
613
649
  interface $ObjectPageHeaderLayoutDataSettings
614
650
  extends sap.ui.core.$LayoutDataSettings {
615
651
  /**
@@ -661,6 +697,9 @@ declare namespace sap {
661
697
  | `{${string}}`;
662
698
  }
663
699
 
700
+ /**
701
+ * Describes the settings that can be provided to the ObjectPageLayout constructor.
702
+ */
664
703
  interface $ObjectPageLayoutSettings extends sap.ui.core.$ControlSettings {
665
704
  /**
666
705
  * Determines whether the Navigation bar (Anchor bar) is displayed.
@@ -1031,6 +1070,9 @@ declare namespace sap {
1031
1070
  ) => void;
1032
1071
  }
1033
1072
 
1073
+ /**
1074
+ * Describes the settings that can be provided to the ObjectPageLazyLoader constructor.
1075
+ */
1034
1076
  interface $ObjectPageLazyLoaderSettings
1035
1077
  extends sap.ui.core.$ElementSettings {
1036
1078
  /**
@@ -1043,6 +1085,9 @@ declare namespace sap {
1043
1085
  | `{${string}}`;
1044
1086
  }
1045
1087
 
1088
+ /**
1089
+ * Describes the settings that can be provided to the ObjectPageSection constructor.
1090
+ */
1046
1091
  interface $ObjectPageSectionSettings
1047
1092
  extends sap.uxap.$ObjectPageSectionBaseSettings {
1048
1093
  /**
@@ -1104,6 +1149,9 @@ declare namespace sap {
1104
1149
  selectedSubSection?: sap.uxap.ObjectPageSubSection | string;
1105
1150
  }
1106
1151
 
1152
+ /**
1153
+ * Describes the settings that can be provided to the ObjectPageSectionBase constructor.
1154
+ */
1107
1155
  interface $ObjectPageSectionBaseSettings
1108
1156
  extends sap.ui.core.$ControlSettings {
1109
1157
  /**
@@ -1174,6 +1222,9 @@ declare namespace sap {
1174
1222
  customAnchorBarButton?: sap.m.Button;
1175
1223
  }
1176
1224
 
1225
+ /**
1226
+ * Describes the settings that can be provided to the ObjectPageSubSection constructor.
1227
+ */
1177
1228
  interface $ObjectPageSubSectionSettings
1178
1229
  extends sap.uxap.$ObjectPageSectionBaseSettings {
1179
1230
  /**
@@ -1262,6 +1313,9 @@ declare namespace sap {
1262
1313
  | `{${string}}`;
1263
1314
  }
1264
1315
 
1316
+ /**
1317
+ * Parameters of the BlockBase#viewInit event.
1318
+ */
1265
1319
  interface BlockBase$ViewInitEventParameters {
1266
1320
  /**
1267
1321
  * The initialized view.
@@ -1269,6 +1323,9 @@ declare namespace sap {
1269
1323
  view?: sap.ui.core.mvc.View;
1270
1324
  }
1271
1325
 
1326
+ /**
1327
+ * Parameters of the ObjectPageHeader#markChangesPress event.
1328
+ */
1272
1329
  interface ObjectPageHeader$MarkChangesPressEventParameters {
1273
1330
  /**
1274
1331
  * DOM reference of the changed item's icon to be used for positioning.
@@ -1276,6 +1333,9 @@ declare namespace sap {
1276
1333
  domRef?: string;
1277
1334
  }
1278
1335
 
1336
+ /**
1337
+ * Parameters of the ObjectPageHeader#markLockedPress event.
1338
+ */
1279
1339
  interface ObjectPageHeader$MarkLockedPressEventParameters {
1280
1340
  /**
1281
1341
  * DOM reference of the lock item's icon to be used for positioning.
@@ -1283,6 +1343,9 @@ declare namespace sap {
1283
1343
  domRef?: string;
1284
1344
  }
1285
1345
 
1346
+ /**
1347
+ * Parameters of the ObjectPageHeader#titleSelectorPress event.
1348
+ */
1286
1349
  interface ObjectPageHeader$TitleSelectorPressEventParameters {
1287
1350
  /**
1288
1351
  * DOM reference of the title item's icon to be used for positioning.
@@ -1290,6 +1353,9 @@ declare namespace sap {
1290
1353
  domRef?: string;
1291
1354
  }
1292
1355
 
1356
+ /**
1357
+ * Parameters of the ObjectPageLayout#beforeNavigate event.
1358
+ */
1293
1359
  interface ObjectPageLayout$BeforeNavigateEventParameters {
1294
1360
  /**
1295
1361
  * The selected section object.
@@ -1302,8 +1368,14 @@ declare namespace sap {
1302
1368
  subSection?: sap.uxap.ObjectPageSubSection;
1303
1369
  }
1304
1370
 
1371
+ /**
1372
+ * Parameters of the ObjectPageLayout#editHeaderButtonPress event.
1373
+ */
1305
1374
  interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
1306
1375
 
1376
+ /**
1377
+ * Parameters of the ObjectPageLayout#headerContentPinnedStateChange event.
1378
+ */
1307
1379
  interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
1308
1380
  /**
1309
1381
  * False or True values indicate the new pinned property value.
@@ -1311,6 +1383,9 @@ declare namespace sap {
1311
1383
  pinned?: boolean;
1312
1384
  }
1313
1385
 
1386
+ /**
1387
+ * Parameters of the ObjectPageLayout#navigate event.
1388
+ */
1314
1389
  interface ObjectPageLayout$NavigateEventParameters {
1315
1390
  /**
1316
1391
  * The selected section object.
@@ -1323,6 +1398,9 @@ declare namespace sap {
1323
1398
  subSection?: sap.uxap.ObjectPageSubSection;
1324
1399
  }
1325
1400
 
1401
+ /**
1402
+ * Parameters of the ObjectPageLayout#sectionChange event.
1403
+ */
1326
1404
  interface ObjectPageLayout$SectionChangeEventParameters {
1327
1405
  /**
1328
1406
  * The section which the layout is scrolled to.
@@ -1335,6 +1413,9 @@ declare namespace sap {
1335
1413
  subSection?: sap.uxap.ObjectPageSubSection;
1336
1414
  }
1337
1415
 
1416
+ /**
1417
+ * Parameters of the ObjectPageLayout#subSectionVisibilityChange event.
1418
+ */
1338
1419
  interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
1339
1420
  /**
1340
1421
  * Object whose keys are the visible SubSection IDs and their values are the SubSection instances
@@ -1342,6 +1423,9 @@ declare namespace sap {
1342
1423
  visibleSubSections?: object;
1343
1424
  }
1344
1425
 
1426
+ /**
1427
+ * Parameters of the ObjectPageLayout#toggleAnchorBar event.
1428
+ */
1345
1429
  interface ObjectPageLayout$ToggleAnchorBarEventParameters {
1346
1430
  /**
1347
1431
  * False indicates that the Anchor bar has just detached from the Header and became part of the scrolling
@@ -3502,7 +3586,7 @@ declare namespace sap {
3502
3586
  *
3503
3587
  * Default value is `Light`.
3504
3588
  *
3505
- * @deprecated (since 1.40.1)
3589
+ * @deprecated (since 1.40.1) - without replacement.
3506
3590
  *
3507
3591
  * @returns Value of property `headerDesign`
3508
3592
  */
@@ -4510,7 +4594,7 @@ declare namespace sap {
4510
4594
  *
4511
4595
  * Default value is `Light`.
4512
4596
  *
4513
- * @deprecated (since 1.40.1)
4597
+ * @deprecated (since 1.40.1) - without replacement.
4514
4598
  *
4515
4599
  * @returns Value of property `contentDesign`
4516
4600
  */
@@ -4577,7 +4661,7 @@ declare namespace sap {
4577
4661
  *
4578
4662
  * Default value is `Light`.
4579
4663
  *
4580
- * @deprecated (since 1.40.1)
4664
+ * @deprecated (since 1.40.1) - without replacement.
4581
4665
  *
4582
4666
  * @returns Reference to `this` in order to allow method chaining
4583
4667
  */
@@ -7986,56 +8070,89 @@ declare namespace sap {
7986
8070
  */
7987
8071
  type BlockBaseColumnLayout = string;
7988
8072
 
8073
+ /**
8074
+ * Event object of the BlockBase#viewInit event.
8075
+ */
7989
8076
  type BlockBase$ViewInitEvent = sap.ui.base.Event<
7990
8077
  BlockBase$ViewInitEventParameters,
7991
8078
  BlockBase
7992
8079
  >;
7993
8080
 
8081
+ /**
8082
+ * Event object of the ObjectPageHeader#markChangesPress event.
8083
+ */
7994
8084
  type ObjectPageHeader$MarkChangesPressEvent = sap.ui.base.Event<
7995
8085
  ObjectPageHeader$MarkChangesPressEventParameters,
7996
8086
  ObjectPageHeader
7997
8087
  >;
7998
8088
 
8089
+ /**
8090
+ * Event object of the ObjectPageHeader#markLockedPress event.
8091
+ */
7999
8092
  type ObjectPageHeader$MarkLockedPressEvent = sap.ui.base.Event<
8000
8093
  ObjectPageHeader$MarkLockedPressEventParameters,
8001
8094
  ObjectPageHeader
8002
8095
  >;
8003
8096
 
8097
+ /**
8098
+ * Event object of the ObjectPageHeader#titleSelectorPress event.
8099
+ */
8004
8100
  type ObjectPageHeader$TitleSelectorPressEvent = sap.ui.base.Event<
8005
8101
  ObjectPageHeader$TitleSelectorPressEventParameters,
8006
8102
  ObjectPageHeader
8007
8103
  >;
8008
8104
 
8105
+ /**
8106
+ * Event object of the ObjectPageLayout#beforeNavigate event.
8107
+ */
8009
8108
  type ObjectPageLayout$BeforeNavigateEvent = sap.ui.base.Event<
8010
8109
  ObjectPageLayout$BeforeNavigateEventParameters,
8011
8110
  ObjectPageLayout
8012
8111
  >;
8013
8112
 
8113
+ /**
8114
+ * Event object of the ObjectPageLayout#editHeaderButtonPress event.
8115
+ */
8014
8116
  type ObjectPageLayout$EditHeaderButtonPressEvent = sap.ui.base.Event<
8015
8117
  ObjectPageLayout$EditHeaderButtonPressEventParameters,
8016
8118
  ObjectPageLayout
8017
8119
  >;
8018
8120
 
8121
+ /**
8122
+ * Event object of the ObjectPageLayout#headerContentPinnedStateChange event.
8123
+ */
8019
8124
  type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = sap.ui.base.Event<
8020
8125
  ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters,
8021
8126
  ObjectPageLayout
8022
8127
  >;
8023
8128
 
8129
+ /**
8130
+ * Event object of the ObjectPageLayout#navigate event.
8131
+ */
8024
8132
  type ObjectPageLayout$NavigateEvent = sap.ui.base.Event<
8025
8133
  ObjectPageLayout$NavigateEventParameters,
8026
8134
  ObjectPageLayout
8027
8135
  >;
8028
8136
 
8137
+ /**
8138
+ * Event object of the ObjectPageLayout#sectionChange event.
8139
+ */
8029
8140
  type ObjectPageLayout$SectionChangeEvent = sap.ui.base.Event<
8030
8141
  ObjectPageLayout$SectionChangeEventParameters,
8031
8142
  ObjectPageLayout
8032
8143
  >;
8033
8144
 
8145
+ /**
8146
+ * Event object of the ObjectPageLayout#subSectionVisibilityChange event.
8147
+ */
8034
8148
  type ObjectPageLayout$SubSectionVisibilityChangeEvent = sap.ui.base.Event<
8035
8149
  ObjectPageLayout$SubSectionVisibilityChangeEventParameters,
8036
8150
  ObjectPageLayout
8037
8151
  >;
8038
8152
 
8153
+ /**
8154
+ * Event object of the ObjectPageLayout#toggleAnchorBar event.
8155
+ */
8039
8156
  type ObjectPageLayout$ToggleAnchorBarEvent = sap.ui.base.Event<
8040
8157
  ObjectPageLayout$ToggleAnchorBarEventParameters,
8041
8158
  ObjectPageLayout