@sapui5/ts-types 1.147.1 → 1.148.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +7 -7
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +50 -11
  7. package/types/sap.esh.search.ui.d.ts +181 -34
  8. package/types/sap.f.d.ts +1 -1
  9. package/types/sap.fe.ariba.d.ts +1 -1
  10. package/types/sap.fe.base.d.ts +1 -1
  11. package/types/sap.fe.controls.d.ts +1 -1
  12. package/types/sap.fe.core.d.ts +47 -1
  13. package/types/sap.fe.ina.d.ts +1 -1
  14. package/types/sap.fe.macros.d.ts +24 -1
  15. package/types/sap.fe.navigation.d.ts +1 -1
  16. package/types/sap.fe.placeholder.d.ts +1 -1
  17. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  18. package/types/sap.fe.templates.d.ts +3 -1
  19. package/types/sap.fe.test.d.ts +1 -1
  20. package/types/sap.fe.tools.d.ts +1 -1
  21. package/types/sap.feedback.ui.d.ts +1 -1
  22. package/types/sap.gantt.d.ts +19 -1
  23. package/types/sap.insights.d.ts +1 -1
  24. package/types/{mobile-1.147.0-d.ts → sap.m.d.ts} +188 -34
  25. package/types/sap.makit.d.ts +1 -1
  26. package/types/sap.me.d.ts +1 -1
  27. package/types/sap.ndc.d.ts +2 -1
  28. package/types/sap.ovp.d.ts +1 -1
  29. package/types/sap.rules.ui.d.ts +1 -1
  30. package/types/sap.sac.df.d.ts +1 -1
  31. package/types/sap.suite.ui.commons.d.ts +1 -1
  32. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  33. package/types/sap.suite.ui.microchart.d.ts +1 -1
  34. package/types/{tnt-1.147.0-d.ts → sap.tnt.d.ts} +1 -1
  35. package/types/sap.ui.codeeditor.d.ts +1 -1
  36. package/types/{commons-1.147.0-d.ts → sap.ui.commons.d.ts} +1 -1
  37. package/types/sap.ui.comp.d.ts +197 -4
  38. package/types/{core-1.147.0-d.ts → sap.ui.core.d.ts} +58 -19
  39. package/types/{dt-1.147.0-d.ts → sap.ui.dt.d.ts} +1 -1
  40. package/types/sap.ui.export.d.ts +143 -1
  41. package/types/sap.ui.fl.d.ts +1 -1
  42. package/types/sap.ui.generic.app.d.ts +1 -1
  43. package/types/sap.ui.generic.template.d.ts +1 -1
  44. package/types/sap.ui.geomap.d.ts +1 -1
  45. package/types/sap.ui.integration.d.ts +6 -3
  46. package/types/sap.ui.layout.d.ts +1 -1
  47. package/types/{mdc-1.147.0-d.ts → sap.ui.mdc.d.ts} +236 -3
  48. package/types/sap.ui.richtexteditor.d.ts +1 -1
  49. package/types/sap.ui.rta.d.ts +1 -1
  50. package/types/sap.ui.suite.d.ts +1 -1
  51. package/types/sap.ui.support.d.ts +1 -1
  52. package/types/sap.ui.table.d.ts +4 -4
  53. package/types/sap.ui.testrecorder.d.ts +1 -1
  54. package/types/sap.ui.unified.d.ts +1 -1
  55. package/types/{ux3-1.147.0-d.ts → sap.ui.ux3.d.ts} +1 -1
  56. package/types/sap.ui.vbm.d.ts +1 -1
  57. package/types/sap.ui.vk.d.ts +1 -1
  58. package/types/sap.ui.vtm.d.ts +1 -1
  59. package/types/sap.uiext.inbox.d.ts +1 -1
  60. package/types/sap.ushell.d.ts +3 -3
  61. package/types/sap.ushell_abap.d.ts +1 -1
  62. package/types/sap.uxap.d.ts +1 -1
  63. package/types/sap.viz.d.ts +1 -1
  64. package/types/sap.webanalytics.core.d.ts +1 -1
  65. package/types/sap.zen.commons.d.ts +1 -1
  66. package/types/sap.zen.crosstab.d.ts +1 -1
  67. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -3123,6 +3123,29 @@ declare namespace sap {
3123
3123
  */
3124
3124
  key?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3125
3125
 
3126
+ /**
3127
+ * Defines if cells with duplicate values in this column are merged in responsive tables (display mode only).
3128
+ * This overrides the HTML5.RowSpanForDuplicateValues annotation if set.
3129
+ * Only applicable to annotation-based column overrides. Not supported for custom columns (columns with
3130
+ * a template).
3131
+ */
3132
+ mergeCells?:
3133
+ | boolean
3134
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3135
+ | `{${string}}`;
3136
+
3137
+ /**
3138
+ * List of property paths used to determine whether adjacent cells are merged.
3139
+ * The values of the specified properties are concatenated to form a comparison key.
3140
+ * If not set, the displayed text value is used for comparison.
3141
+ * Only takes effect when mergeCells is set to true or for annotation-based column overrides.
3142
+ * Not supported for custom columns (columns with a template).
3143
+ */
3144
+ mergeComparisonProperties?:
3145
+ | string[]
3146
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3147
+ | `{${string}}`;
3148
+
3126
3149
  /**
3127
3150
  * Determines the column's width.
3128
3151
  * Allowed values are 'auto', 'value', and 'inherit', according to {@link sap.ui.core.CSSSize }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -237,6 +237,8 @@ declare namespace sap {
237
237
  /**
238
238
  * Navigate to a specific section or subsection within the current page.
239
239
  * Works with Object Page layouts and other section-based layouts.
240
+ * If the target section is not found or invalid, the app automatically falls back to the first available
241
+ * section.
240
242
  */
241
243
  navigateToSubSection(
242
244
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -43237,6 +43237,24 @@ declare namespace sap {
43237
43237
  */
43238
43238
  printDialogTemplate: sap.gantt.simple.PrintDialogTemplate
43239
43239
  ): Promise<any>;
43240
+ /**
43241
+ * Opens the print dialog for single page printing.
43242
+ *
43243
+ * @since 1.111
43244
+ *
43245
+ * @returns A promise for chaining actions after the print dialog is ready.
43246
+ */
43247
+ openPdfPreview(
43248
+ /**
43249
+ * Optional function which takes cloned gantt chart's table for modification. Applications can loop through
43250
+ * the table columns and update certain properties like maxLines to overcome html2canvas limitations.
43251
+ */
43252
+ fnUpdateTable: Function,
43253
+ /**
43254
+ * which takes custom buttons to display on print Dialog
43255
+ */
43256
+ printDialogTemplate: sap.gantt.simple.PrintDialogTemplate
43257
+ ): Promise<any>;
43240
43258
  /**
43241
43259
  * Sets the Gantt chart to be exported as PDF.
43242
43260
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare module "sap/m/p13n/Engine" {
4
4
  /**
@@ -18553,8 +18553,8 @@ declare namespace sap {
18553
18553
  * A composite title control intended to display a table title along with optional total and selected row
18554
18554
  * counts.
18555
18555
  *
18556
- * Overview: The `sap.m.table.Title` control renders the provided `sap.m.Title` control and optionally displays
18557
- * the table's total row count, the selected row count, or both independently.
18556
+ * The `sap.m.table.Title` control renders the provided `sap.m.Title` control and optionally displays the
18557
+ * table's total row count, the selected row count, or both independently.
18558
18558
  *
18559
18559
  * @since 1.147
18560
18560
  */
@@ -35250,6 +35250,11 @@ declare namespace sap {
35250
35250
  * - `em`
35251
35251
  * - `strong`
35252
35252
  * - `u`
35253
+ * - `span` (with `style` and `class` attributes)
35254
+ *
35255
+ * **Inline Icons:** You can embed icons within the message text using the `span` element with the SAP-icons
35256
+ * font family. Use direct Unicode characters or the helper function {@link sap.m.MessageStripUtilities.getInlineIcon}.
35257
+ * See the {@link sap.m.MessageStrip Samples} for usage examples.
35253
35258
  *
35254
35259
  * @since 1.50
35255
35260
  */
@@ -39779,6 +39784,17 @@ declare namespace sap {
39779
39784
  | sap.ui.base.ManagedObject.PropertyBindingInfo
39780
39785
  | `{${string}}`;
39781
39786
 
39787
+ /**
39788
+ * Sets the maximum height of the Popover. When the content exceeds this height, scrolling is enabled. This
39789
+ * property applies to the entire Popover, including the header, content, and footer.
39790
+ *
39791
+ * @since 1.148
39792
+ */
39793
+ maxHeight?:
39794
+ | sap.ui.core.CSSSize
39795
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
39796
+ | `{${string}}`;
39797
+
39782
39798
  /**
39783
39799
  * This property is deprecated. Please use properties verticalScrolling and horizontalScrolling instead.
39784
39800
  * If you still use this property it will be mapped on the new properties verticalScrolling and horizontalScrolling.
@@ -93610,8 +93626,9 @@ declare namespace sap {
93610
93626
  */
93611
93627
  class MenuButton
93612
93628
  extends sap.ui.core.Control
93613
- implements sap.m.IToolbarInteractiveControl
93629
+ implements sap.ui.core.IFormContent, sap.m.IToolbarInteractiveControl
93614
93630
  {
93631
+ __implements__sap_ui_core_IFormContent: boolean;
93615
93632
  __implements__sap_m_IToolbarInteractiveControl: boolean;
93616
93633
  /**
93617
93634
  * Constructor for a new MenuButton.
@@ -93921,6 +93938,16 @@ declare namespace sap {
93921
93938
  * @returns Value of property `enabled`
93922
93939
  */
93923
93940
  getEnabled(): boolean;
93941
+ /**
93942
+ * Implements {@link sap.ui.core.IFormContent} interface.
93943
+ *
93944
+ * `MenuButton` must not be stretched by the Form layout because it should keep its natural width.
93945
+ *
93946
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
93947
+ *
93948
+ * @returns `true`
93949
+ */
93950
+ getFormDoNotAdjustWidth(): boolean;
93924
93951
  /**
93925
93952
  * Gets current value of property {@link #getIcon icon}.
93926
93953
  *
@@ -97610,6 +97637,11 @@ declare namespace sap {
97610
97637
  * - `em`
97611
97638
  * - `strong`
97612
97639
  * - `u`
97640
+ * - `span` (with `style` and `class` attributes)
97641
+ *
97642
+ * **Inline Icons:** You can embed icons within the message text using the `span` element with the SAP-icons
97643
+ * font family. Use direct Unicode characters or the helper function {@link sap.m.MessageStripUtilities.getInlineIcon}.
97644
+ * See the {@link sap.m.MessageStrip Samples} for usage examples.
97613
97645
  *
97614
97646
  * Default value is `false`.
97615
97647
  *
@@ -97808,6 +97840,11 @@ declare namespace sap {
97808
97840
  * - `em`
97809
97841
  * - `strong`
97810
97842
  * - `u`
97843
+ * - `span` (with `style` and `class` attributes)
97844
+ *
97845
+ * **Inline Icons:** You can embed icons within the message text using the `span` element with the SAP-icons
97846
+ * font family. Use direct Unicode characters or the helper function {@link sap.m.MessageStripUtilities.getInlineIcon}.
97847
+ * See the {@link sap.m.MessageStrip Samples} for usage examples.
97811
97848
  *
97812
97849
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
97813
97850
  *
@@ -122582,6 +122619,17 @@ declare namespace sap {
122582
122619
  * instead.
122583
122620
  */
122584
122621
  getLeftButton(): sap.ui.core.ID | null;
122622
+ /**
122623
+ * Gets current value of property {@link #getMaxHeight maxHeight}.
122624
+ *
122625
+ * Sets the maximum height of the Popover. When the content exceeds this height, scrolling is enabled. This
122626
+ * property applies to the entire Popover, including the header, content, and footer.
122627
+ *
122628
+ * @since 1.148
122629
+ *
122630
+ * @returns Value of property `maxHeight`
122631
+ */
122632
+ getMaxHeight(): sap.ui.core.CSSSize;
122585
122633
  /**
122586
122634
  * Gets current value of property {@link #getModal modal}.
122587
122635
  *
@@ -123063,6 +123111,24 @@ declare namespace sap {
123063
123111
  */
123064
123112
  oLeftButton: sap.ui.core.ID | sap.m.Button
123065
123113
  ): this;
123114
+ /**
123115
+ * Sets a new value for property {@link #getMaxHeight maxHeight}.
123116
+ *
123117
+ * Sets the maximum height of the Popover. When the content exceeds this height, scrolling is enabled. This
123118
+ * property applies to the entire Popover, including the header, content, and footer.
123119
+ *
123120
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
123121
+ *
123122
+ * @since 1.148
123123
+ *
123124
+ * @returns Reference to `this` in order to allow method chaining
123125
+ */
123126
+ setMaxHeight(
123127
+ /**
123128
+ * New value for property `maxHeight`
123129
+ */
123130
+ sMaxHeight?: sap.ui.core.CSSSize
123131
+ ): this;
123066
123132
  /**
123067
123133
  * Setter for property `modal`. This overwrites the default setter of the property `modal` to avoid rerendering
123068
123134
  * the whole popover control.
@@ -168580,71 +168646,159 @@ declare namespace sap {
168580
168646
  Overflow = "Overflow",
168581
168647
  }
168582
168648
  /**
168583
- * undefined
168649
+ * Operations for conditions used in the personalization condition panel.
168584
168650
  *
168585
168651
  * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nConditionOperation'.
168586
168652
  */
168587
168653
  enum P13nConditionOperation {
168654
+ /**
168655
+ * "ascending" operation: sorts values in ascending order.
168656
+ */
168588
168657
  Ascending = "Ascending",
168589
-
168658
+ /**
168659
+ * "average" operation: calculates the average of values.
168660
+ */
168590
168661
  Average = "Average",
168591
-
168662
+ /**
168663
+ * "between" operation: filters for values between two given operands.
168664
+ */
168592
168665
  BT = "BT",
168593
-
168666
+ /**
168667
+ * "contains" operation: filters for values that contain the given substring.
168668
+ */
168594
168669
  Contains = "Contains",
168595
-
168670
+ /**
168671
+ * "default values" operation: applies default values for the condition.
168672
+ *
168673
+ * @since 1.148
168674
+ */
168675
+ DefaultValues = "DefaultValues",
168676
+ /**
168677
+ * "descending" operation: sorts values in descending order.
168678
+ */
168596
168679
  Descending = "Descending",
168597
-
168680
+ /**
168681
+ * "empty" operation: filters for entries whose value is empty.
168682
+ */
168598
168683
  Empty = "Empty",
168599
-
168684
+ /**
168685
+ * "ends with" operation: filters for values that end with the given string.
168686
+ */
168600
168687
  EndsWith = "EndsWith",
168601
-
168688
+ /**
168689
+ * "equal to" operation: filters for values equal to the given operand.
168690
+ */
168602
168691
  EQ = "EQ",
168603
-
168692
+ /**
168693
+ * "greater than or equal to" operation: filters for values greater than or equal to the given operand.
168694
+ */
168604
168695
  GE = "GE",
168605
-
168696
+ /**
168697
+ * "group ascending" operation: groups values in ascending order.
168698
+ */
168606
168699
  GroupAscending = "GroupAscending",
168607
-
168700
+ /**
168701
+ * "group descending" operation: groups values in descending order.
168702
+ */
168608
168703
  GroupDescending = "GroupDescending",
168609
-
168704
+ /**
168705
+ * "greater than" operation: filters for values greater than the given operand.
168706
+ */
168610
168707
  GT = "GT",
168611
-
168708
+ /**
168709
+ * "initial" operation: filters for entries whose value has not been changed from its initial state.
168710
+ */
168612
168711
  Initial = "Initial",
168613
-
168712
+ /**
168713
+ * "less than or equal to" operation: filters for values less than or equal to the given operand.
168714
+ */
168614
168715
  LE = "LE",
168615
-
168716
+ /**
168717
+ * "less than" operation: filters for values less than the given operand.
168718
+ */
168616
168719
  LT = "LT",
168617
-
168720
+ /**
168721
+ * "maximum" operation: determines the maximum value.
168722
+ */
168618
168723
  Maximum = "Maximum",
168619
-
168724
+ /**
168725
+ * "minimum" operation: determines the minimum value.
168726
+ */
168620
168727
  Minimum = "Minimum",
168621
-
168728
+ /**
168729
+ * "not between" operation: excludes values between two given operands.
168730
+ */
168622
168731
  NotBT = "NotBT",
168623
-
168732
+ /**
168733
+ * "does not contain" operation: excludes values that contain the given substring.
168734
+ */
168624
168735
  NotContains = "NotContains",
168625
-
168736
+ /**
168737
+ * "not empty" operation: excludes entries whose value is empty.
168738
+ */
168626
168739
  NotEmpty = "NotEmpty",
168627
-
168740
+ /**
168741
+ * "does not end with" operation: excludes values that end with the given string.
168742
+ */
168628
168743
  NotEndsWith = "NotEndsWith",
168629
-
168744
+ /**
168745
+ * "not equal to" operation: excludes values equal to the given operand.
168746
+ */
168630
168747
  NotEQ = "NotEQ",
168631
-
168748
+ /**
168749
+ * "not greater than or equal to" operation: excludes values greater than or equal to the given operand.
168750
+ */
168632
168751
  NotGE = "NotGE",
168633
-
168752
+ /**
168753
+ * "not greater than" operation: excludes values greater than the given operand.
168754
+ */
168634
168755
  NotGT = "NotGT",
168635
-
168756
+ /**
168757
+ * "not initial" operation: excludes entries whose value has not been changed from its initial state.
168758
+ */
168636
168759
  NotInitial = "NotInitial",
168637
-
168760
+ /**
168761
+ * "not less than or equal to" operation: excludes values less than or equal to the given operand.
168762
+ */
168638
168763
  NotLE = "NotLE",
168639
-
168764
+ /**
168765
+ * "not less than" operation: excludes values less than the given operand.
168766
+ */
168640
168767
  NotLT = "NotLT",
168641
-
168768
+ /**
168769
+ * "does not start with" operation: excludes values that start with the given string.
168770
+ */
168642
168771
  NotStartsWith = "NotStartsWith",
168643
-
168772
+ /**
168773
+ * "starts with" operation: filters for values that start with the given string.
168774
+ */
168644
168775
  StartsWith = "StartsWith",
168645
-
168776
+ /**
168777
+ * "total" operation: calculates the total of values.
168778
+ */
168646
168779
  Total = "Total",
168647
168780
  }
168781
+ /**
168782
+ * Type of a condition operation in the personalization condition panel.
168783
+ *
168784
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nConditionOperationType'.
168785
+ */
168786
+ enum P13nConditionOperationType {
168787
+ /**
168788
+ * Default values for the condition.
168789
+ *
168790
+ * @since 1.148
168791
+ */
168792
+ DefaultValues = "DefaultValues",
168793
+ /**
168794
+ * Values that should be excluded from the result.
168795
+ */
168796
+ Exclude = "Exclude",
168797
+ /**
168798
+ * Values that should be included in the result.
168799
+ */
168800
+ Include = "Include",
168801
+ }
168648
168802
  /**
168649
168803
  * Type of panels used in the personalization dialog.
168650
168804
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.1
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.1
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.1
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -376,6 +376,7 @@ declare namespace sap {
376
376
  * "enableGS1Header": true, //If set to true, add the symbology identifier (GS1 specification 5.4.3.7. and 5.4.6.4.) as prefix into the result text.
377
377
  * "deviceId": "string" // The specific camera id to scan the Barcode. If set to "", Barcode Scanner will use default camera. This option is not working for iOS devices since do not support to get all the cameras.
378
378
  * "facingMode": "string" // Defines the facingMode of the camera which should be used. Value can be "", "front", "back", "left", "right". If set to "", Barcode Scanner will use default camera.
379
+ * "textMode": "string" // Defines how the decoded byte content of a barcode should be transcoded to text in ZXingcpp. Value can be "Plain", "ECI", "HRI", "Escaped", "Hex", or "HexECI". Default value is "HRI".
379
380
  * "multiScan": {
380
381
  * "enabled": false, // If set to true, will support scan multi barcodes, and the max number of the barcodes in each scanning is 10. Default value is false. Only working for ZXingCPP.
381
382
  * "showPauseButton": false, // If set to true, will show a button so that can pause/restart the scan in the scan dialog.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace rules {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.1
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.1
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.1
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.147.0
1
+ // For Library Version: 1.148.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {