@sapui5/types 1.120.40 → 1.120.42

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 (55) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +8 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.f.d.ts +1 -1
  6. package/types/sap.fe.core.d.ts +1 -1
  7. package/types/sap.fe.macros.d.ts +1 -1
  8. package/types/sap.fe.navigation.d.ts +1 -1
  9. package/types/sap.fe.placeholder.d.ts +1 -1
  10. package/types/sap.fe.templates.d.ts +1 -1
  11. package/types/sap.fe.test.d.ts +1 -1
  12. package/types/sap.fe.tools.d.ts +1 -1
  13. package/types/sap.gantt.d.ts +1 -1
  14. package/types/sap.insights.d.ts +1 -1
  15. package/types/sap.m.d.ts +21 -1
  16. package/types/sap.makit.d.ts +1 -1
  17. package/types/sap.me.d.ts +1 -1
  18. package/types/sap.ndc.d.ts +1 -1
  19. package/types/sap.ovp.d.ts +1 -1
  20. package/types/sap.sac.df.d.ts +1 -1
  21. package/types/sap.suite.ui.commons.d.ts +1 -1
  22. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  23. package/types/sap.suite.ui.microchart.d.ts +1 -1
  24. package/types/sap.tnt.d.ts +1 -1
  25. package/types/sap.ui.codeeditor.d.ts +1 -1
  26. package/types/sap.ui.commons.d.ts +3 -1
  27. package/types/sap.ui.comp.d.ts +1 -1
  28. package/types/sap.ui.core.d.ts +1 -1
  29. package/types/sap.ui.dt.d.ts +1 -1
  30. package/types/sap.ui.export.d.ts +1 -1
  31. package/types/sap.ui.fl.d.ts +1 -1
  32. package/types/sap.ui.integration.d.ts +1 -1
  33. package/types/sap.ui.layout.d.ts +1 -1
  34. package/types/sap.ui.mdc.d.ts +1 -1
  35. package/types/sap.ui.richtexteditor.d.ts +28 -12
  36. package/types/sap.ui.rta.d.ts +1 -1
  37. package/types/sap.ui.suite.d.ts +3 -1
  38. package/types/sap.ui.support.d.ts +1 -1
  39. package/types/sap.ui.table.d.ts +1 -1
  40. package/types/sap.ui.testrecorder.d.ts +1 -1
  41. package/types/sap.ui.unified.d.ts +1 -1
  42. package/types/sap.ui.ux3.d.ts +1 -1
  43. package/types/sap.ui.vk.d.ts +153 -1
  44. package/types/sap.ui.vtm.d.ts +1153 -238
  45. package/types/sap.ui.webc.common.d.ts +3 -1
  46. package/types/sap.ui.webc.fiori.d.ts +31 -1
  47. package/types/sap.ui.webc.main.d.ts +70 -1
  48. package/types/sap.uiext.inbox.d.ts +1 -1
  49. package/types/sap.ushell.d.ts +3 -1
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +1 -1
  52. package/types/sap.viz.d.ts +1 -1
  53. package/types/sap.zen.commons.d.ts +1 -1
  54. package/types/sap.zen.crosstab.d.ts +1 -1
  55. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/vk/library" {
4
4
  /**
@@ -21888,6 +21888,74 @@ declare module "sap/ui/vk/svg/NodeHierarchy" {
21888
21888
  */
21889
21889
  nodeRef: any
21890
21890
  ): this;
21891
+ /**
21892
+ * Attaches a custom text to this elements.
21893
+ *
21894
+ * @since 1.120.0
21895
+ * @experimental
21896
+ *
21897
+ * @returns `this` to allow method chaining.
21898
+ */
21899
+ setCustomText(
21900
+ /**
21901
+ * The node or array of nodes to set the custom text to.
21902
+ */
21903
+ nodeRefs: /* was: sap.ui.vk.svg.Element */
21904
+ | any
21905
+ | /* was: sap.ui.vk.svg.Element */ any[],
21906
+ /**
21907
+ * The custom text options. If not specified, the existing custom text will be removed.
21908
+ */
21909
+ options?: {
21910
+ /**
21911
+ * The text to display, it's mutually exclusive with `htmlText` option. Line breaks are not supported, use
21912
+ * `htmlText` option for multi-line text.
21913
+ */
21914
+ text?: string;
21915
+ /**
21916
+ * The HTML text to display, it's mutually exclusive with `text` option. Line breaks are supported using
21917
+ * paragraphs: `"<p>Line 1</p><p>Line 2</p>"`.
21918
+ */
21919
+ htmlText?: string;
21920
+ /**
21921
+ * The font size of the text in scene coordinate units. If not specified then the size will be automatically
21922
+ * determined based on the median text size in the scene or computed from the bounding box of the scene,
21923
+ * but better to specify it explicitly to avoid unexpected results.
21924
+ */
21925
+ size?: number;
21926
+ /**
21927
+ * The font family of the text. Default is `"Arial"`.
21928
+ */
21929
+ fontFamily?: string;
21930
+ /**
21931
+ * The font style of the text (normal | italic | oblique). Default is undefined ("normal").
21932
+ */
21933
+ fontStyle?: string;
21934
+ /**
21935
+ * The font weight of the text (normal | bold | bolder | lighter | ). Default is undefined ("normal").
21936
+ */
21937
+ fontWeight?: string;
21938
+ /**
21939
+ * The text decoration of the text (none | underline | line-through, etc). Default is undefined ("none").
21940
+ */
21941
+ textDecoration?: string;
21942
+ /**
21943
+ * The fill color of the text in CSS format. Default is "black".
21944
+ */
21945
+ fill?: string;
21946
+ /**
21947
+ * The pivot point of the custom text, relative to the text bounding box. The pivot point is used together
21948
+ * with the anchor point to position the text. Default is `[0.5, 0.5]` (middle of the custom text). `[0,
21949
+ * 0]` is top-left, `[1, 1]` is bottom-right.
21950
+ */
21951
+ pivot?: number[];
21952
+ /**
21953
+ * The anchor point of the text, relative to the bounding box of the node to which the custom text is attached.
21954
+ * Default is `[0.5, 0.5]` (center of node). `[0, 0]` is top-left, `[1, 1]` is bottom-right.
21955
+ */
21956
+ anchor?: number[];
21957
+ }
21958
+ ): this;
21891
21959
  }
21892
21960
  /**
21893
21961
  * Describes the settings that can be provided to the NodeHierarchy constructor.
@@ -42721,6 +42789,33 @@ declare module "sap/ui/vk/ViewportBase" {
42721
42789
  * @returns Value of property `hotspotColorABGR`
42722
42790
  */
42723
42791
  getHotspotColorABGR(): int;
42792
+ /**
42793
+ * Gets current value of property {@link #getHotspotCustomTextHaloWidth hotspotCustomTextHaloWidth}.
42794
+ *
42795
+ * Default value is `10`.
42796
+ *
42797
+ *
42798
+ * @returns Value of property `hotspotCustomTextHaloWidth`
42799
+ */
42800
+ getHotspotCustomTextHaloWidth(): float;
42801
+ /**
42802
+ * Gets current value of property {@link #getHotspotCustomTextOutlineColor hotspotCustomTextOutlineColor}.
42803
+ *
42804
+ * Default value is `"white"`.
42805
+ *
42806
+ *
42807
+ * @returns Value of property `hotspotCustomTextOutlineColor`
42808
+ */
42809
+ getHotspotCustomTextOutlineColor(): CSSColor;
42810
+ /**
42811
+ * Gets current value of property {@link #getHotspotCustomTextOutlineWidth hotspotCustomTextOutlineWidth}.
42812
+ *
42813
+ * Default value is `1`.
42814
+ *
42815
+ *
42816
+ * @returns Value of property `hotspotCustomTextOutlineWidth`
42817
+ */
42818
+ getHotspotCustomTextOutlineWidth(): float;
42724
42819
  /**
42725
42820
  * Gets current value of property {@link #getKeepOutputSize keepOutputSize}.
42726
42821
  *
@@ -43201,6 +43296,54 @@ declare module "sap/ui/vk/ViewportBase" {
43201
43296
  */
43202
43297
  iHotspotColorABGR?: int
43203
43298
  ): this;
43299
+ /**
43300
+ * Sets a new value for property {@link #getHotspotCustomTextHaloWidth hotspotCustomTextHaloWidth}.
43301
+ *
43302
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
43303
+ *
43304
+ * Default value is `10`.
43305
+ *
43306
+ *
43307
+ * @returns Reference to `this` in order to allow method chaining
43308
+ */
43309
+ setHotspotCustomTextHaloWidth(
43310
+ /**
43311
+ * New value for property `hotspotCustomTextHaloWidth`
43312
+ */
43313
+ fHotspotCustomTextHaloWidth?: float
43314
+ ): this;
43315
+ /**
43316
+ * Sets a new value for property {@link #getHotspotCustomTextOutlineColor hotspotCustomTextOutlineColor}.
43317
+ *
43318
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
43319
+ *
43320
+ * Default value is `"white"`.
43321
+ *
43322
+ *
43323
+ * @returns Reference to `this` in order to allow method chaining
43324
+ */
43325
+ setHotspotCustomTextOutlineColor(
43326
+ /**
43327
+ * New value for property `hotspotCustomTextOutlineColor`
43328
+ */
43329
+ sHotspotCustomTextOutlineColor?: CSSColor
43330
+ ): this;
43331
+ /**
43332
+ * Sets a new value for property {@link #getHotspotCustomTextOutlineWidth hotspotCustomTextOutlineWidth}.
43333
+ *
43334
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
43335
+ *
43336
+ * Default value is `1`.
43337
+ *
43338
+ *
43339
+ * @returns Reference to `this` in order to allow method chaining
43340
+ */
43341
+ setHotspotCustomTextOutlineWidth(
43342
+ /**
43343
+ * New value for property `hotspotCustomTextOutlineWidth`
43344
+ */
43345
+ fHotspotCustomTextOutlineWidth?: float
43346
+ ): this;
43204
43347
  /**
43205
43348
  * Sets a new value for property {@link #getKeepOutputSize keepOutputSize}.
43206
43349
  *
@@ -43529,6 +43672,15 @@ declare module "sap/ui/vk/ViewportBase" {
43529
43672
  */
43530
43673
  hotspotColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
43531
43674
 
43675
+ hotspotCustomTextOutlineWidth?: float | PropertyBindingInfo | `{${string}}`;
43676
+
43677
+ hotspotCustomTextOutlineColor?:
43678
+ | CSSColor
43679
+ | PropertyBindingInfo
43680
+ | `{${string}}`;
43681
+
43682
+ hotspotCustomTextHaloWidth?: float | PropertyBindingInfo | `{${string}}`;
43683
+
43532
43684
  keepOutputSize?: boolean | PropertyBindingInfo | `{${string}}`;
43533
43685
 
43534
43686
  /**