@sapui5/types 1.124.0 → 1.124.2

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 (54) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +1 -1
  3. package/types/sap.f.d.ts +1 -1
  4. package/types/sap.fe.core.d.ts +12 -2
  5. package/types/sap.fe.macros.d.ts +13 -1
  6. package/types/sap.fe.navigation.d.ts +1 -1
  7. package/types/sap.fe.placeholder.d.ts +1 -1
  8. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  9. package/types/sap.fe.templates.d.ts +1 -1
  10. package/types/sap.fe.test.d.ts +1 -1
  11. package/types/sap.fe.tools.d.ts +1 -1
  12. package/types/sap.gantt.d.ts +1 -1
  13. package/types/sap.insights.d.ts +1 -1
  14. package/types/sap.m.d.ts +172 -22
  15. package/types/sap.makit.d.ts +1 -1
  16. package/types/sap.me.d.ts +1 -1
  17. package/types/sap.ndc.d.ts +1 -1
  18. package/types/sap.ovp.d.ts +1 -1
  19. package/types/sap.sac.df.d.ts +28 -234
  20. package/types/sap.suite.ui.commons.d.ts +12 -7
  21. package/types/sap.suite.ui.generic.template.d.ts +7 -4
  22. package/types/sap.suite.ui.microchart.d.ts +1 -1
  23. package/types/sap.tnt.d.ts +1 -1
  24. package/types/sap.ui.codeeditor.d.ts +1 -1
  25. package/types/sap.ui.commons.d.ts +1 -1
  26. package/types/sap.ui.comp.d.ts +1 -1
  27. package/types/sap.ui.core.d.ts +43 -31
  28. package/types/sap.ui.dt.d.ts +1 -1
  29. package/types/sap.ui.export.d.ts +1 -1
  30. package/types/sap.ui.fl.d.ts +1 -1
  31. package/types/sap.ui.generic.app.d.ts +1 -1
  32. package/types/sap.ui.generic.template.d.ts +1 -1
  33. package/types/sap.ui.integration.d.ts +1 -1
  34. package/types/sap.ui.layout.d.ts +1 -1
  35. package/types/sap.ui.mdc.d.ts +28 -6
  36. package/types/sap.ui.richtexteditor.d.ts +1 -1
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +1 -1
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +6 -3
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +1 -1
  43. package/types/sap.ui.ux3.d.ts +1 -1
  44. package/types/sap.ui.webc.common.d.ts +1 -1
  45. package/types/sap.ui.webc.fiori.d.ts +169 -1
  46. package/types/sap.ui.webc.main.d.ts +493 -1
  47. package/types/sap.uiext.inbox.d.ts +1 -1
  48. package/types/sap.ushell.d.ts +1 -1
  49. package/types/sap.ushell_abap.d.ts +1 -1
  50. package/types/sap.uxap.d.ts +1 -1
  51. package/types/sap.viz.d.ts +1 -1
  52. package/types/sap.zen.commons.d.ts +1 -1
  53. package/types/sap.zen.crosstab.d.ts +1 -1
  54. package/types/sap.zen.dsh.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/types",
3
- "version": "1.124.0",
3
+ "version": "1.124.2",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/fe/core/AppComponent" {
4
4
  import {
@@ -1039,7 +1039,17 @@ declare module "sap/fe/core/controllerextensions/Routing" {
1039
1039
  /**
1040
1040
  * Object containing the context to be navigated to
1041
1041
  */
1042
- oContext: Context
1042
+ oContext: Context,
1043
+ /**
1044
+ * Object containing the parameters for the navigation
1045
+ */
1046
+ parameters?: {
1047
+ /**
1048
+ * By default, the internal algorithm decides whether the navigation preserves the previous entry. PreserveHistory
1049
+ * allows you to override this behavior.
1050
+ */
1051
+ preserveHistory: boolean;
1052
+ }
1043
1053
  ): void;
1044
1054
  /**
1045
1055
  * Navigate to another target.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/fe/macros/CollectionBindingInfo" {
4
4
  import Filter from "sap/ui/model/Filter";
@@ -903,6 +903,12 @@ declare module "sap/fe/macros/field/Field" {
903
903
  * objects.
904
904
  */
905
905
  semanticObject?: string | PropertyBindingInfo;
906
+
907
+ /**
908
+ * This is used to optionally provide an external value that comes from a different model than the oData
909
+ * model
910
+ */
911
+ value?: string | PropertyBindingInfo;
906
912
  }
907
913
 
908
914
  /**
@@ -1135,6 +1141,12 @@ declare module "sap/fe/macros/field/FieldAPI" {
1135
1141
  * objects.
1136
1142
  */
1137
1143
  semanticObject?: string | PropertyBindingInfo;
1144
+
1145
+ /**
1146
+ * This is used to optionally provide an external value that comes from a different model than the oData
1147
+ * model
1148
+ */
1149
+ value?: string | PropertyBindingInfo;
1138
1150
  }
1139
1151
 
1140
1152
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/fe/navigation/library" {
4
4
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/fe/plugins/managecache/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/fe/templates/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/fe/test/library" {}
4
4
 
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.1
2
2
 
3
3
  declare module "sap/gantt/library" {
4
4
  import ChartScheme from "sap/gantt/config/ChartScheme";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/insights/library" {}
4
4
 
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -5336,6 +5336,8 @@ declare module "sap/m/ActionTile" {
5336
5336
  $GenericTileSettings,
5337
5337
  } from "sap/m/GenericTile";
5338
5338
 
5339
+ import { URI, ValueState } from "sap/ui/core/library";
5340
+
5339
5341
  import ElementMetadata from "sap/ui/core/ElementMetadata";
5340
5342
 
5341
5343
  import { Priority } from "sap/m/library";
@@ -5412,6 +5414,30 @@ declare module "sap/m/ActionTile" {
5412
5414
  * @returns Metadata object describing this class
5413
5415
  */
5414
5416
  static getMetadata(): ElementMetadata;
5417
+ /**
5418
+ * Gets current value of property {@link #getBadgeIcon badgeIcon}.
5419
+ *
5420
+ * Defines what type of icon is displayed as visual affordance for the icon frame badge.
5421
+ *
5422
+ * Default value is `empty string`.
5423
+ *
5424
+ * @experimental (since 1.124)
5425
+ *
5426
+ * @returns Value of property `badgeIcon`
5427
+ */
5428
+ getBadgeIcon(): URI;
5429
+ /**
5430
+ * Gets current value of property {@link #getBadgeValueState badgeValueState}.
5431
+ *
5432
+ * Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5433
+ *
5434
+ * Default value is `None`.
5435
+ *
5436
+ * @experimental (since 1.124)
5437
+ *
5438
+ * @returns Value of property `badgeValueState`
5439
+ */
5440
+ getBadgeValueState(): ValueState | keyof typeof ValueState;
5415
5441
  /**
5416
5442
  * Gets current value of property {@link #getEnableDynamicHeight enableDynamicHeight}.
5417
5443
  *
@@ -5458,6 +5484,30 @@ declare module "sap/m/ActionTile" {
5458
5484
  * @returns Value of property `priorityText`
5459
5485
  */
5460
5486
  getPriorityText(): string;
5487
+ /**
5488
+ * Sets the badgeIcon property of the ActionTile.
5489
+ *
5490
+ *
5491
+ * @returns The reference to the ActionTile instance.
5492
+ */
5493
+ setBadgeIcon(
5494
+ /**
5495
+ * The URI of the icon to be displayed as a badge.
5496
+ */
5497
+ sIcon: string
5498
+ ): ActionTile;
5499
+ /**
5500
+ * Sets the badgeValueState property of the ActionTile.
5501
+ *
5502
+ *
5503
+ * @returns The reference to the ActionTile instance.
5504
+ */
5505
+ setBadgeValueState(
5506
+ /**
5507
+ * The value state of the badge.
5508
+ */
5509
+ sValueState: ValueState | keyof typeof ValueState
5510
+ ): ActionTile;
5461
5511
  /**
5462
5512
  * Sets a new value for property {@link #getEnableDynamicHeight enableDynamicHeight}.
5463
5513
  *
@@ -5478,24 +5528,17 @@ declare module "sap/m/ActionTile" {
5478
5528
  bEnableDynamicHeight?: boolean
5479
5529
  ): this;
5480
5530
  /**
5481
- * Sets a new value for property {@link #getEnableIconFrame enableIconFrame}.
5531
+ * Sets the enableIconFrame property of the ActionTile.
5482
5532
  *
5483
- * Decides whether the headerImage should have a frame or not.
5484
5533
  *
5485
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5486
- *
5487
- * Default value is `false`.
5488
- *
5489
- * @experimental (since 1.124)
5490
- *
5491
- * @returns Reference to `this` in order to allow method chaining
5534
+ * @returns The reference to the ActionTile instance.
5492
5535
  */
5493
5536
  setEnableIconFrame(
5494
5537
  /**
5495
- * New value for property `enableIconFrame`
5538
+ * Determines whether the icon frame should be enabled or not.
5496
5539
  */
5497
- bEnableIconFrame?: boolean
5498
- ): this;
5540
+ bValue: boolean
5541
+ ): ActionTile;
5499
5542
  /**
5500
5543
  * Sets a new value for property {@link #getPriority priority}.
5501
5544
  *
@@ -5569,6 +5612,23 @@ declare module "sap/m/ActionTile" {
5569
5612
  * @experimental (since 1.124)
5570
5613
  */
5571
5614
  priorityText?: string | PropertyBindingInfo;
5615
+
5616
+ /**
5617
+ * Defines what type of icon is displayed as visual affordance for the icon frame badge.
5618
+ *
5619
+ * @experimental (since 1.124)
5620
+ */
5621
+ badgeIcon?: URI | PropertyBindingInfo | `{${string}}`;
5622
+
5623
+ /**
5624
+ * Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5625
+ *
5626
+ * @experimental (since 1.124)
5627
+ */
5628
+ badgeValueState?:
5629
+ | (ValueState | keyof typeof ValueState)
5630
+ | PropertyBindingInfo
5631
+ | `{${string}}`;
5572
5632
  }
5573
5633
  }
5574
5634
 
@@ -46563,8 +46623,9 @@ declare module "sap/m/Label" {
46563
46623
  /**
46564
46624
  * Gets current value of property {@link #getWrapping wrapping}.
46565
46625
  *
46566
- * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46567
- * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46626
+ * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46627
+ * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46628
+ * wrap.
46568
46629
  *
46569
46630
  * Default value is `false`.
46570
46631
  *
@@ -46774,8 +46835,9 @@ declare module "sap/m/Label" {
46774
46835
  /**
46775
46836
  * Sets a new value for property {@link #getWrapping wrapping}.
46776
46837
  *
46777
- * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46778
- * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46838
+ * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46839
+ * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46840
+ * wrap.
46779
46841
  *
46780
46842
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46781
46843
  *
@@ -46868,8 +46930,9 @@ declare module "sap/m/Label" {
46868
46930
  displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
46869
46931
 
46870
46932
  /**
46871
- * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46872
- * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46933
+ * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46934
+ * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46935
+ * wrap.
46873
46936
  *
46874
46937
  * @since 1.50
46875
46938
  */
@@ -72379,7 +72442,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72379
72442
  *
72380
72443
  * Default value is `true`.
72381
72444
  *
72382
- * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72445
+ * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72383
72446
  *
72384
72447
  * @returns Value of property `moveToOverflow`
72385
72448
  */
@@ -72461,7 +72524,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72461
72524
  *
72462
72525
  * Default value is `true`.
72463
72526
  *
72464
- * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72527
+ * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72465
72528
  *
72466
72529
  * @returns Reference to `this` in order to allow method chaining
72467
72530
  */
@@ -72519,7 +72582,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72519
72582
  /**
72520
72583
  * The OverflowToolbar item can or cannot move to the overflow area
72521
72584
  *
72522
- * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72585
+ * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72523
72586
  */
72524
72587
  moveToOverflow?: boolean | PropertyBindingInfo | `{${string}}`;
72525
72588
 
@@ -100546,6 +100609,8 @@ declare module "sap/m/RadioButton" {
100546
100609
 
100547
100610
  import ElementMetadata from "sap/ui/core/ElementMetadata";
100548
100611
 
100612
+ import { WrappingType } from "sap/m/library";
100613
+
100549
100614
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
100550
100615
 
100551
100616
  import Event from "sap/ui/base/Event";
@@ -100919,6 +100984,32 @@ declare module "sap/m/RadioButton" {
100919
100984
  * @returns Value of property `width`
100920
100985
  */
100921
100986
  getWidth(): CSSSize;
100987
+ /**
100988
+ * Gets current value of property {@link #getWrapping wrapping}.
100989
+ *
100990
+ * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
100991
+ * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
100992
+ * will wrap.
100993
+ *
100994
+ * Default value is `false`.
100995
+ *
100996
+ * @since 1.126
100997
+ *
100998
+ * @returns Value of property `wrapping`
100999
+ */
101000
+ getWrapping(): boolean;
101001
+ /**
101002
+ * Gets current value of property {@link #getWrappingType wrappingType}.
101003
+ *
101004
+ * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101005
+ *
101006
+ * Default value is `Normal`.
101007
+ *
101008
+ * @since 1.126
101009
+ *
101010
+ * @returns Value of property `wrappingType`
101011
+ */
101012
+ getWrappingType(): WrappingType | keyof typeof WrappingType;
100922
101013
  /**
100923
101014
  * Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
100924
101015
  */
@@ -101171,6 +101262,46 @@ declare module "sap/m/RadioButton" {
101171
101262
  */
101172
101263
  sWidth?: CSSSize
101173
101264
  ): this;
101265
+ /**
101266
+ * Sets a new value for property {@link #getWrapping wrapping}.
101267
+ *
101268
+ * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
101269
+ * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
101270
+ * will wrap.
101271
+ *
101272
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
101273
+ *
101274
+ * Default value is `false`.
101275
+ *
101276
+ * @since 1.126
101277
+ *
101278
+ * @returns Reference to `this` in order to allow method chaining
101279
+ */
101280
+ setWrapping(
101281
+ /**
101282
+ * New value for property `wrapping`
101283
+ */
101284
+ bWrapping?: boolean
101285
+ ): this;
101286
+ /**
101287
+ * Sets a new value for property {@link #getWrappingType wrappingType}.
101288
+ *
101289
+ * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101290
+ *
101291
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
101292
+ *
101293
+ * Default value is `Normal`.
101294
+ *
101295
+ * @since 1.126
101296
+ *
101297
+ * @returns Reference to `this` in order to allow method chaining
101298
+ */
101299
+ setWrappingType(
101300
+ /**
101301
+ * New value for property `wrappingType`
101302
+ */
101303
+ sWrappingType?: WrappingType | keyof typeof WrappingType
101304
+ ): this;
101174
101305
  }
101175
101306
  /**
101176
101307
  * Describes the settings that can be provided to the RadioButton constructor.
@@ -101261,6 +101392,25 @@ declare module "sap/m/RadioButton" {
101261
101392
  | PropertyBindingInfo
101262
101393
  | `{${string}}`;
101263
101394
 
101395
+ /**
101396
+ * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
101397
+ * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
101398
+ * will wrap.
101399
+ *
101400
+ * @since 1.126
101401
+ */
101402
+ wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
101403
+
101404
+ /**
101405
+ * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101406
+ *
101407
+ * @since 1.126
101408
+ */
101409
+ wrappingType?:
101410
+ | (WrappingType | keyof typeof WrappingType)
101411
+ | PropertyBindingInfo
101412
+ | `{${string}}`;
101413
+
101264
101414
  /**
101265
101415
  * Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
101266
101416
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/makit/library" {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/me/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ndc/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ovp/library" {}
4
4