@sapui5/types 1.142.3 → 1.143.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 (70) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  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 +1 -1
  7. package/types/sap.esh.search.ui.d.ts +651 -13
  8. package/types/sap.f.d.ts +8 -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 +1 -6
  13. package/types/sap.fe.ina.d.ts +1 -1
  14. package/types/sap.fe.macros.d.ts +40 -85
  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 +1 -1
  19. package/types/sap.fe.test.d.ts +7 -2
  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 +1 -1
  23. package/types/sap.insights.d.ts +1 -1
  24. package/types/sap.m.d.ts +159 -40
  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 +1 -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 +216 -11
  32. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  33. package/types/sap.suite.ui.microchart.d.ts +24 -2
  34. package/types/sap.tnt.d.ts +1 -1
  35. package/types/sap.ui.codeeditor.d.ts +1 -1
  36. package/types/sap.ui.commons.d.ts +1 -1
  37. package/types/sap.ui.comp.d.ts +7 -4
  38. package/types/sap.ui.core.d.ts +62 -47
  39. package/types/sap.ui.dt.d.ts +1 -1
  40. package/types/sap.ui.export.d.ts +1 -1
  41. package/types/sap.ui.fl.d.ts +3 -6
  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 +27255 -0
  45. package/types/sap.ui.integration.d.ts +45 -9
  46. package/types/sap.ui.layout.d.ts +64 -46
  47. package/types/sap.ui.mdc.d.ts +529 -138
  48. package/types/sap.ui.richtexteditor.d.ts +39 -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 +1 -1
  53. package/types/sap.ui.testrecorder.d.ts +1 -1
  54. package/types/sap.ui.unified.d.ts +1 -1
  55. package/types/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 +55 -1
  58. package/types/sap.ui.vtm.d.ts +1 -1
  59. package/types/sap.ui.webc.common.d.ts +1 -1
  60. package/types/sap.ui.webc.fiori.d.ts +1 -1
  61. package/types/sap.ui.webc.main.d.ts +1 -1
  62. package/types/sap.uiext.inbox.d.ts +1 -1
  63. package/types/sap.ushell.d.ts +53 -8
  64. package/types/sap.ushell_abap.d.ts +1 -1
  65. package/types/sap.uxap.d.ts +1 -1
  66. package/types/sap.viz.d.ts +1 -1
  67. package/types/sap.webanalytics.core.d.ts +1 -1
  68. package/types/sap.zen.commons.d.ts +1 -1
  69. package/types/sap.zen.crosstab.d.ts +1 -1
  70. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/richtexteditor/library" {
4
4
  /**
@@ -788,6 +788,18 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
788
788
  * @returns The native editor object (here: The TinyMCE editor instance)
789
789
  */
790
790
  getNativeApi(): object;
791
+ /**
792
+ * Gets current value of property {@link #getPlaceholder placeholder}.
793
+ *
794
+ * Placeholder text for the editor.
795
+ *
796
+ * Default value is `empty string`.
797
+ *
798
+ * @since 1.144
799
+ *
800
+ * @returns Value of property `placeholder`
801
+ */
802
+ getPlaceholder(): string;
791
803
  /**
792
804
  * Gets current value of property {@link #getPlugins plugins}.
793
805
  *
@@ -1283,6 +1295,25 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
1283
1295
  */
1284
1296
  sHeight?: CSSSize
1285
1297
  ): this;
1298
+ /**
1299
+ * Sets a new value for property {@link #getPlaceholder placeholder}.
1300
+ *
1301
+ * Placeholder text for the editor.
1302
+ *
1303
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1304
+ *
1305
+ * Default value is `empty string`.
1306
+ *
1307
+ * @since 1.144
1308
+ *
1309
+ * @returns Reference to `this` in order to allow method chaining
1310
+ */
1311
+ setPlaceholder(
1312
+ /**
1313
+ * New value for property `placeholder`
1314
+ */
1315
+ sPlaceholder?: string
1316
+ ): this;
1286
1317
  /**
1287
1318
  * Sets the plugins to the editor.
1288
1319
  *
@@ -1810,6 +1841,13 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
1810
1841
  */
1811
1842
  customToolbar?: boolean | PropertyBindingInfo | `{${string}}`;
1812
1843
 
1844
+ /**
1845
+ * Placeholder text for the editor.
1846
+ *
1847
+ * @since 1.144
1848
+ */
1849
+ placeholder?: string | PropertyBindingInfo;
1850
+
1813
1851
  /**
1814
1852
  * Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
1815
1853
  * footer aggregation accepts only controls inheriting `sap.m.IBar`.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/vbm/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/vk/library" {
4
4
  /**
@@ -43660,6 +43660,24 @@ declare module "sap/ui/vk/ViewportBase" {
43660
43660
  * @returns Value of property `keepOutputSize`
43661
43661
  */
43662
43662
  getKeepOutputSize(): boolean;
43663
+ /**
43664
+ * Gets current value of property {@link #getMaxCameraPitch maxCameraPitch}.
43665
+ *
43666
+ * Default value is `90`.
43667
+ *
43668
+ *
43669
+ * @returns Value of property `maxCameraPitch`
43670
+ */
43671
+ getMaxCameraPitch(): float;
43672
+ /**
43673
+ * Gets current value of property {@link #getMinCameraPitch minCameraPitch}.
43674
+ *
43675
+ * Default value is `-90`.
43676
+ *
43677
+ *
43678
+ * @returns Value of property `minCameraPitch`
43679
+ */
43680
+ getMinCameraPitch(): float;
43663
43681
  /**
43664
43682
  * Gets content of aggregation {@link #getOutputSettings outputSettings}.
43665
43683
  *
@@ -44204,6 +44222,38 @@ declare module "sap/ui/vk/ViewportBase" {
44204
44222
  */
44205
44223
  bKeepOutputSize?: boolean
44206
44224
  ): this;
44225
+ /**
44226
+ * Sets a new value for property {@link #getMaxCameraPitch maxCameraPitch}.
44227
+ *
44228
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
44229
+ *
44230
+ * Default value is `90`.
44231
+ *
44232
+ *
44233
+ * @returns Reference to `this` in order to allow method chaining
44234
+ */
44235
+ setMaxCameraPitch(
44236
+ /**
44237
+ * New value for property `maxCameraPitch`
44238
+ */
44239
+ fMaxCameraPitch?: float
44240
+ ): this;
44241
+ /**
44242
+ * Sets a new value for property {@link #getMinCameraPitch minCameraPitch}.
44243
+ *
44244
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
44245
+ *
44246
+ * Default value is `-90`.
44247
+ *
44248
+ *
44249
+ * @returns Reference to `this` in order to allow method chaining
44250
+ */
44251
+ setMinCameraPitch(
44252
+ /**
44253
+ * New value for property `minCameraPitch`
44254
+ */
44255
+ fMinCameraPitch?: float
44256
+ ): this;
44207
44257
  /**
44208
44258
  * Sets the aggregated {@link #getOutputSettings outputSettings}.
44209
44259
  *
@@ -44561,6 +44611,10 @@ declare module "sap/ui/vk/ViewportBase" {
44561
44611
  */
44562
44612
  autoStartRendering?: boolean | PropertyBindingInfo | `{${string}}`;
44563
44613
 
44614
+ minCameraPitch?: float | PropertyBindingInfo | `{${string}}`;
44615
+
44616
+ maxCameraPitch?: float | PropertyBindingInfo | `{${string}}`;
44617
+
44564
44618
  /**
44565
44619
  * The controls inside the viewport.
44566
44620
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/vtm/library" {
4
4
  import Vtm from "sap/ui/vtm/Vtm";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/uiext/inbox/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.3
1
+ // For Library Version: 1.143.2
2
2
 
3
3
  declare module "sap/ushell/library" {
4
4
  /**
@@ -10317,7 +10317,7 @@ declare module "sap/ushell/services/URLParsing" {
10317
10317
  * The parts of a shell hash. Its action must be a valid action, It may not contain "?" or directly a parameter
10318
10318
  * string. Note: In general it is preferred to add an appStateKey directly to the params object.
10319
10319
  */
10320
- oShellHash?: SimpleDecomposedHash | DecomposedHash
10320
+ oShellHash?: /* was: sap.ushell.services.URLParsing.ShellHash */ any
10321
10321
  ): TargetIntentStrict;
10322
10322
  /**
10323
10323
  * Extract a hash part from an URL, including an app-specific part
@@ -10471,7 +10471,7 @@ declare module "sap/ushell/services/URLParsing" {
10471
10471
  ): SplitHash;
10472
10472
  }
10473
10473
  /**
10474
- * Type for DecomposedHash
10474
+ * Describes the result of {@link #parseShellHash}.
10475
10475
  *
10476
10476
  * @since 1.120.0
10477
10477
  */
@@ -10499,16 +10499,16 @@ declare module "sap/ushell/services/URLParsing" {
10499
10499
  /**
10500
10500
  * the app specific route
10501
10501
  */
10502
- appSpecificRoute?: string;
10502
+ appSpecificRoute: string;
10503
10503
  };
10504
10504
 
10505
10505
  /**
10506
- * Simple Type for DecomposedHash with shell hash as part of the target property. Use this type for edge
10507
- * cases only. Use {@link sap.ushell.services.URLParsing.DecomposedHash} instead.
10506
+ * Commonly used by services like {@link sap.ushell.services.Navigation}. Use this type for edge cases only.
10507
+ * Use {@link sap.ushell.services.URLParsing.DecomposedHash} instead. This type ignores all other properties
10508
10508
  *
10509
10509
  * @since 1.124.0
10510
10510
  */
10511
- export type SimpleDecomposedHash = {
10511
+ export type SimpleTarget = {
10512
10512
  /**
10513
10513
  * The target object
10514
10514
  */
@@ -10516,7 +10516,7 @@ declare module "sap/ushell/services/URLParsing" {
10516
10516
  /**
10517
10517
  * The shell hash
10518
10518
  */
10519
- shallHash: TargetIntent;
10519
+ shellHash: TargetIntent;
10520
10520
  };
10521
10521
  };
10522
10522
 
@@ -10536,6 +10536,43 @@ declare module "sap/ushell/services/URLParsing" {
10536
10536
  appSpecificRoute: URI;
10537
10537
  };
10538
10538
 
10539
+ /**
10540
+ * Commonly used by services like {@link sap.ushell.services.Navigation}
10541
+ *
10542
+ * @since 1.142.0
10543
+ */
10544
+ export type Target = {
10545
+ /**
10546
+ * The target object
10547
+ */
10548
+ target: {
10549
+ /**
10550
+ * the semantic object
10551
+ */
10552
+ semanticObject: string;
10553
+ /**
10554
+ * the action
10555
+ */
10556
+ action: string;
10557
+ /**
10558
+ * the raw context string
10559
+ */
10560
+ contextRaw: string;
10561
+ };
10562
+ /**
10563
+ * the parameters
10564
+ */
10565
+ params: Record<string, string | string[]>;
10566
+ /**
10567
+ * the app specific route
10568
+ */
10569
+ appSpecificRoute: string;
10570
+ /**
10571
+ * the app state key
10572
+ */
10573
+ appStateKey?: string;
10574
+ };
10575
+
10539
10576
  /**
10540
10577
  * Type for Url value
10541
10578
  *
@@ -14154,6 +14191,14 @@ declare namespace sap {
14154
14191
 
14155
14192
  "sap/ushell/library": undefined;
14156
14193
 
14194
+ "sap/ushell/modules/Assistant": undefined;
14195
+
14196
+ "sap/ushell/modules/Assistant/AssistantAPI": undefined;
14197
+
14198
+ "sap/ushell/modules/Assistant/AssistantProvider": undefined;
14199
+
14200
+ "sap/ushell/modules/Assistant/VisualConfiguration": undefined;
14201
+
14157
14202
  "sap/ushell/modules/NavigationMenu": undefined;
14158
14203
 
14159
14204
  "sap/ushell/modules/NavigationMenu/ListProvider": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.3
1
+ // For Library Version: 1.143.2
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.2
1
+ // For Library Version: 1.143.1
2
2
 
3
3
  declare module "sap/viz/library" {
4
4
  export namespace ui5 {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.142.0
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.7
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/zen/commons/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.7
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/zen/crosstab/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.142.7
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/zen/dsh/library" {}
4
4