@sapui5/ts-types 1.103.1 → 1.104.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 (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +3 -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 +1 -1
  8. package/types/sap.f.d.ts +157 -1
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +1166 -29
  11. package/types/sap.fe.macros.d.ts +627 -52
  12. package/types/sap.fe.navigation.d.ts +1391 -1
  13. package/types/sap.fe.templates.d.ts +161 -2
  14. package/types/sap.fe.test.d.ts +12 -1
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7 -4
  17. package/types/sap.insights.d.ts +1 -1
  18. package/types/sap.landvisz.d.ts +1 -1
  19. package/types/sap.m.d.ts +1870 -57
  20. package/types/sap.makit.d.ts +1 -1
  21. package/types/sap.me.d.ts +1 -1
  22. package/types/sap.ndc.d.ts +1 -1
  23. package/types/sap.ovp.d.ts +1 -1
  24. package/types/sap.rules.ui.d.ts +1 -1
  25. package/types/sap.sac.df.d.ts +2 -2
  26. package/types/sap.sac.grid.d.ts +1 -1
  27. package/types/sap.suite.ui.commons.d.ts +498 -18
  28. package/types/sap.suite.ui.generic.template.d.ts +32 -25
  29. package/types/sap.suite.ui.microchart.d.ts +1 -1
  30. package/types/sap.tnt.d.ts +1 -1
  31. package/types/sap.ui.codeeditor.d.ts +1 -1
  32. package/types/sap.ui.commons.d.ts +1 -1
  33. package/types/sap.ui.comp.d.ts +1128 -243
  34. package/types/sap.ui.core.d.ts +111 -20
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +3 -3
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +1 -1
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +41 -62
  41. package/types/sap.ui.layout.d.ts +1 -1
  42. package/types/sap.ui.mdc.d.ts +1 -1
  43. package/types/sap.ui.richtexteditor.d.ts +1 -1
  44. package/types/sap.ui.rta.d.ts +3 -1
  45. package/types/sap.ui.suite.d.ts +1 -1
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +1 -1
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +81 -1
  50. package/types/sap.ui.ux3.d.ts +1 -1
  51. package/types/sap.ui.vbm.d.ts +1 -161
  52. package/types/sap.ui.vk.d.ts +59 -1
  53. package/types/sap.ui.vtm.d.ts +1 -1
  54. package/types/sap.ui.webc.common.d.ts +118 -0
  55. package/types/sap.ui.webc.fiori.d.ts +13298 -0
  56. package/types/sap.ui.webc.main.d.ts +39842 -0
  57. package/types/sap.uiext.inbox.d.ts +1 -1
  58. package/types/sap.ushell.d.ts +32 -20
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +1 -1
  61. package/types/sap.viz.d.ts +1 -1
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +1 -1
  64. package/types/sap.zen.crosstab.d.ts +1 -1
  65. package/types/sap.zen.dsh.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/ts-types",
3
- "version": "1.103.1",
3
+ "version": "1.104.2",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://ui5.sap.com",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/index.d.ts CHANGED
@@ -63,3 +63,6 @@
63
63
  /// <reference path="./sap.uxap.d.ts"/>
64
64
  /// <reference path="./sap.ui.vbm.d.ts"/>
65
65
  /// <reference path="./sap.viz.d.ts"/>
66
+ /// <reference path="./sap.ui.webc.common.d.ts"/>
67
+ /// <reference path="./sap.ui.webc.fiori.d.ts"/>
68
+ /// <reference path="./sap.ui.webc.main.d.ts"/>
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.103.0
1
+ // For Library Version: 1.104.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.103.0
1
+ // For Library Version: 1.104.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ca {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.103.1
1
+ // For Library Version: 1.104.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.103.0
1
+ // For Library Version: 1.104.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.103.0
1
+ // For Library Version: 1.104.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.103.1
1
+ // For Library Version: 1.104.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -7705,6 +7705,46 @@ declare namespace sap {
7705
7705
  * If not set, a predefined text is used.
7706
7706
  */
7707
7707
  lastColumnLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
7708
+
7709
+ /**
7710
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
7711
+ * control.
7712
+ *
7713
+ * If not set, a predefined text is used.
7714
+ */
7715
+ firstColumnBackArrowLabel?:
7716
+ | string
7717
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7718
+
7719
+ /**
7720
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
7721
+ * control.
7722
+ *
7723
+ * If not set, a predefined text is used.
7724
+ */
7725
+ middleColumnForwardArrowLabel?:
7726
+ | string
7727
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7728
+
7729
+ /**
7730
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
7731
+ * control.
7732
+ *
7733
+ * If not set, a predefined text is used.
7734
+ */
7735
+ middleColumnBackArrowLabel?:
7736
+ | string
7737
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7738
+
7739
+ /**
7740
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
7741
+ * control.
7742
+ *
7743
+ * If not set, a predefined text is used.
7744
+ */
7745
+ lastColumnForwardArrowLabel?:
7746
+ | string
7747
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
7708
7748
  }
7709
7749
 
7710
7750
  interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
@@ -13503,6 +13543,17 @@ declare namespace sap {
13503
13543
  * @returns Metadata object describing this class
13504
13544
  */
13505
13545
  static getMetadata(): sap.ui.core.ElementMetadata;
13546
+ /**
13547
+ * Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
13548
+ *
13549
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
13550
+ * control.
13551
+ *
13552
+ * If not set, a predefined text is used.
13553
+ *
13554
+ * @returns Value of property `firstColumnBackArrowLabel`
13555
+ */
13556
+ getFirstColumnBackArrowLabel(): string;
13506
13557
  /**
13507
13558
  * Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
13508
13559
  *
@@ -13514,6 +13565,17 @@ declare namespace sap {
13514
13565
  * @returns Value of property `firstColumnLabel`
13515
13566
  */
13516
13567
  getFirstColumnLabel(): string;
13568
+ /**
13569
+ * Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
13570
+ *
13571
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
13572
+ * control.
13573
+ *
13574
+ * If not set, a predefined text is used.
13575
+ *
13576
+ * @returns Value of property `lastColumnForwardArrowLabel`
13577
+ */
13578
+ getLastColumnForwardArrowLabel(): string;
13517
13579
  /**
13518
13580
  * Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
13519
13581
  *
@@ -13525,6 +13587,28 @@ declare namespace sap {
13525
13587
  * @returns Value of property `lastColumnLabel`
13526
13588
  */
13527
13589
  getLastColumnLabel(): string;
13590
+ /**
13591
+ * Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
13592
+ *
13593
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13594
+ * control.
13595
+ *
13596
+ * If not set, a predefined text is used.
13597
+ *
13598
+ * @returns Value of property `middleColumnBackArrowLabel`
13599
+ */
13600
+ getMiddleColumnBackArrowLabel(): string;
13601
+ /**
13602
+ * Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
13603
+ *
13604
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13605
+ * control.
13606
+ *
13607
+ * If not set, a predefined text is used.
13608
+ *
13609
+ * @returns Value of property `middleColumnForwardArrowLabel`
13610
+ */
13611
+ getMiddleColumnForwardArrowLabel(): string;
13528
13612
  /**
13529
13613
  * Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
13530
13614
  *
@@ -13536,6 +13620,24 @@ declare namespace sap {
13536
13620
  * @returns Value of property `middleColumnLabel`
13537
13621
  */
13538
13622
  getMiddleColumnLabel(): string;
13623
+ /**
13624
+ * Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
13625
+ *
13626
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
13627
+ * control.
13628
+ *
13629
+ * If not set, a predefined text is used.
13630
+ *
13631
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13632
+ *
13633
+ * @returns Reference to `this` in order to allow method chaining
13634
+ */
13635
+ setFirstColumnBackArrowLabel(
13636
+ /**
13637
+ * New value for property `firstColumnBackArrowLabel`
13638
+ */
13639
+ sFirstColumnBackArrowLabel?: string
13640
+ ): this;
13539
13641
  /**
13540
13642
  * Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
13541
13643
  *
@@ -13554,6 +13656,24 @@ declare namespace sap {
13554
13656
  */
13555
13657
  sFirstColumnLabel?: string
13556
13658
  ): this;
13659
+ /**
13660
+ * Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
13661
+ *
13662
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
13663
+ * control.
13664
+ *
13665
+ * If not set, a predefined text is used.
13666
+ *
13667
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13668
+ *
13669
+ * @returns Reference to `this` in order to allow method chaining
13670
+ */
13671
+ setLastColumnForwardArrowLabel(
13672
+ /**
13673
+ * New value for property `lastColumnForwardArrowLabel`
13674
+ */
13675
+ sLastColumnForwardArrowLabel?: string
13676
+ ): this;
13557
13677
  /**
13558
13678
  * Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
13559
13679
  *
@@ -13572,6 +13692,42 @@ declare namespace sap {
13572
13692
  */
13573
13693
  sLastColumnLabel?: string
13574
13694
  ): this;
13695
+ /**
13696
+ * Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
13697
+ *
13698
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13699
+ * control.
13700
+ *
13701
+ * If not set, a predefined text is used.
13702
+ *
13703
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13704
+ *
13705
+ * @returns Reference to `this` in order to allow method chaining
13706
+ */
13707
+ setMiddleColumnBackArrowLabel(
13708
+ /**
13709
+ * New value for property `middleColumnBackArrowLabel`
13710
+ */
13711
+ sMiddleColumnBackArrowLabel?: string
13712
+ ): this;
13713
+ /**
13714
+ * Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
13715
+ *
13716
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
13717
+ * control.
13718
+ *
13719
+ * If not set, a predefined text is used.
13720
+ *
13721
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13722
+ *
13723
+ * @returns Reference to `this` in order to allow method chaining
13724
+ */
13725
+ setMiddleColumnForwardArrowLabel(
13726
+ /**
13727
+ * New value for property `middleColumnForwardArrowLabel`
13728
+ */
13729
+ sMiddleColumnForwardArrowLabel?: string
13730
+ ): this;
13575
13731
  /**
13576
13732
  * Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
13577
13733
  *
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.103.0
1
+ // For Library Version: 1.104.1
2
2
 
3
3
  declare namespace sap {}