@sapui5/ts-types 1.96.0 → 1.97.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 (63) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +6 -6
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +1 -1
  7. package/types/sap.f.d.ts +1 -1
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +1 -1
  10. package/types/sap.fe.macros.d.ts +1 -1
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.d.ts +1 -1
  14. package/types/sap.fe.semantics.d.ts +1 -1
  15. package/types/sap.fe.templates.d.ts +1 -1
  16. package/types/sap.fe.test.d.ts +89 -4
  17. package/types/sap.fe.tools.d.ts +1 -1
  18. package/types/sap.feedback.ui.d.ts +1 -1
  19. package/types/sap.gantt.d.ts +167 -1
  20. package/types/sap.landvisz.d.ts +1 -1
  21. package/types/sap.m.d.ts +511 -45
  22. package/types/sap.makit.d.ts +1 -1
  23. package/types/sap.me.d.ts +1 -1
  24. package/types/sap.ndc.d.ts +21 -24
  25. package/types/sap.ovp.d.ts +44 -1
  26. package/types/sap.rules.ui.d.ts +1 -1
  27. package/types/sap.sac.grid.d.ts +1 -1
  28. package/types/sap.suite.ui.commons.d.ts +1 -1
  29. package/types/sap.suite.ui.generic.template.d.ts +13 -13
  30. package/types/sap.suite.ui.microchart.d.ts +1 -1
  31. package/types/sap.tnt.d.ts +1 -1
  32. package/types/sap.ui.codeeditor.d.ts +7 -1
  33. package/types/sap.ui.commons.d.ts +1 -1
  34. package/types/sap.ui.comp.d.ts +309 -9
  35. package/types/sap.ui.core.d.ts +389 -165
  36. package/types/sap.ui.dt.d.ts +1 -1
  37. package/types/sap.ui.export.d.ts +3 -3
  38. package/types/sap.ui.fl.d.ts +1 -3
  39. package/types/sap.ui.generic.app.d.ts +1 -1
  40. package/types/sap.ui.generic.template.d.ts +1 -1
  41. package/types/sap.ui.integration.d.ts +42 -1
  42. package/types/sap.ui.layout.d.ts +1 -1
  43. package/types/sap.ui.mdc.d.ts +20 -10
  44. package/types/sap.ui.richtexteditor.d.ts +1 -1
  45. package/types/sap.ui.rta.d.ts +5 -11
  46. package/types/sap.ui.suite.d.ts +1 -1
  47. package/types/sap.ui.support.d.ts +6 -6
  48. package/types/sap.ui.table.d.ts +3 -3
  49. package/types/sap.ui.testrecorder.d.ts +1 -1
  50. package/types/sap.ui.unified.d.ts +43 -1
  51. package/types/sap.ui.ux3.d.ts +1 -1
  52. package/types/sap.ui.vbm.d.ts +1 -1
  53. package/types/sap.ui.vk.d.ts +199 -92
  54. package/types/sap.ui.vtm.d.ts +2 -1
  55. package/types/sap.uiext.inbox.d.ts +1 -1
  56. package/types/sap.ushell.d.ts +62 -10
  57. package/types/sap.ushell_abap.d.ts +1 -1
  58. package/types/sap.uxap.d.ts +1 -1
  59. package/types/sap.viz.d.ts +1 -1
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +1 -1
  62. package/types/sap.zen.crosstab.d.ts +1 -1
  63. 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.96.0",
3
+ "version": "1.97.1",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://ui5.sap.com",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -722,8 +722,8 @@ declare namespace sap {
722
722
  ): void;
723
723
  /**
724
724
  * Adds a filter to the path. Subsequent changes need to be done by the update method providing the identifier.
725
- * Limitation: Only a single filter term or a disjunction/conjunction of single terms over a single property
726
- * is supported. Limitation: Only the operators EQ, LE (less equal than) and GE (greater equal than) are
725
+ * Restriction: Only a single filter term or a disjunction/conjunction of single terms over a single property
726
+ * is supported. Restriction: Only the operators EQ, LE (less equal than) and GE (greater equal than) are
727
727
  * supported.
728
728
  */
729
729
  addPathFilter(filter: sap.apf.utils.Filter): number;
@@ -892,9 +892,9 @@ declare namespace sap {
892
892
  */
893
893
  startupSucceeded(): boolean;
894
894
  /**
895
- * Updates a filter of the path. Limitation: Only a single filter term or a disjunction/conjunction of single
896
- * terms over a single property is supported. Limitation: Only the operators EQ, LE (less equal than) and
897
- * GE (greater equal than) are supported.
895
+ * Updates a filter of the path. Restriction: Only a single filter term or a disjunction/conjunction of
896
+ * single terms over a single property is supported. Restriction: Only the operators EQ, LE (less equal
897
+ * than) and GE (greater equal than) are supported.
898
898
  */
899
899
  updatePathFilter(
900
900
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ca {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace esh {
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -31,6 +31,23 @@ declare namespace sap {
31
31
  */
32
32
  bClearFirst?: boolean
33
33
  ): object;
34
+ /**
35
+ * Changes the content of a field in a dialog.
36
+ */
37
+ iChangeDialogField(
38
+ /**
39
+ * The identifier of the field
40
+ */
41
+ vFieldIdentifier: sap.fe.test.api.DialogFieldIdentifier,
42
+ /**
43
+ * The new target value.
44
+ */
45
+ vValue?: string,
46
+ /**
47
+ * Set to `true` to clear previously set filters, otherwise all previously set values will be kept
48
+ */
49
+ bClearFirst?: boolean
50
+ ): object;
34
51
  /**
35
52
  * Closes the dialog by pressing the 'Escape' key.
36
53
  */
@@ -85,6 +102,29 @@ declare namespace sap {
85
102
  */
86
103
  mButtonState?: object
87
104
  ): object;
105
+ /**
106
+ * Checks the content and state of a field in a dialog.
107
+ */
108
+ iCheckDialogField(
109
+ /**
110
+ * The identifier of the field
111
+ */
112
+ vFieldIdentifier: sap.fe.test.api.DialogFieldIdentifier,
113
+ /**
114
+ * Expected value(s) of the field. if passed as an object, the following pattern will be considered:
115
+ * ```javascript
116
+ *
117
+ * {
118
+ * value: , // optional
119
+ * }
120
+ * ```
121
+ */
122
+ vValue?: string | any[] | object,
123
+ /**
124
+ * Defines the expected state of the field
125
+ */
126
+ mState?: object
127
+ ): object;
88
128
  /**
89
129
  * Checks the dialog.
90
130
  */
@@ -470,9 +510,26 @@ declare namespace sap {
470
510
  */
471
511
  iSaveVariant(
472
512
  /**
473
- * The name of the new variant. If omitted, the current variant will be overwritten.
513
+ * The name of the new variant. If no new variant name is defined, the current variant will be overwritten.
474
514
  */
475
- sVariantName?: string
515
+ sVariantName?: string,
516
+ /**
517
+ * Saves the new variant with option "Set as Default".
518
+ */
519
+ bSetAsDefault?: string,
520
+ /**
521
+ * Saves the new variant with option "Apply Automatically".
522
+ */
523
+ bApplyAutomatically?: string
524
+ ): object;
525
+ /**
526
+ * Selects the chosen variant.
527
+ */
528
+ iSelectVariant(
529
+ /**
530
+ * The name of the variant to be selected
531
+ */
532
+ sVariantName: string
476
533
  ): object;
477
534
  }
478
535
 
@@ -1457,7 +1514,7 @@ declare namespace sap {
1457
1514
  mState?: object
1458
1515
  ): object;
1459
1516
  /**
1460
- * Selects the variant of the given name.
1517
+ * Selects the chosen variant.
1461
1518
  */
1462
1519
  iSelectVariant(
1463
1520
  /**
@@ -1865,6 +1922,10 @@ declare namespace sap {
1865
1922
  * All
1866
1923
  */
1867
1924
  All = "undefined",
1925
+ /**
1926
+ * All (Hiding Drafts)
1927
+ */
1928
+ AllHidingDrafts = "undefined",
1868
1929
  /**
1869
1930
  * Locked by Another User
1870
1931
  */
@@ -1920,6 +1981,30 @@ declare namespace sap {
1920
1981
  name: string;
1921
1982
  };
1922
1983
 
1984
+ /**
1985
+ * An dialog field identifier
1986
+ */
1987
+ type DialogFieldIdentifier = {
1988
+ /**
1989
+ * The name of the field In case of an action parameter dialog, this is the fieldname only
1990
+ * ```javascript
1991
+ *
1992
+ * {
1993
+ * property:
1994
+ * }
1995
+ * ```
1996
+ * In case of a create dialog, the concatenation of the entity and fieldname has to be provided
1997
+ *
1998
+ * ```javascript
1999
+ *
2000
+ * {
2001
+ * property: ::
2002
+ * }
2003
+ * ```
2004
+ */
2005
+ property: string;
2006
+ };
2007
+
1923
2008
  /**
1924
2009
  * A dialog identifier
1925
2010
  */
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -21881,6 +21881,15 @@ declare namespace sap {
21881
21881
  | boolean
21882
21882
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
21883
21883
 
21884
+ /**
21885
+ * @SINCE 1.97
21886
+ *
21887
+ * value of middle line.
21888
+ */
21889
+ relativeMiddleLinePoint?:
21890
+ | float
21891
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
21892
+
21884
21893
  /**
21885
21894
  * Minimum value of the Chart.
21886
21895
  */
@@ -21933,6 +21942,31 @@ declare namespace sap {
21933
21942
  */
21934
21943
  relativePoint?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
21935
21944
 
21945
+ /**
21946
+ * @SINCE 1.97
21947
+ *
21948
+ * checks if the dimension is a threshold line.
21949
+ */
21950
+ isThreshold?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
21951
+
21952
+ /**
21953
+ * @SINCE 1.97
21954
+ *
21955
+ * strokeDashArray value of dimension line.
21956
+ */
21957
+ dimensionStrokeDasharray?:
21958
+ | string
21959
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
21960
+
21961
+ /**
21962
+ * @SINCE 1.97
21963
+ *
21964
+ * stroke width of dimension line.
21965
+ */
21966
+ dimensionStrokeWidth?:
21967
+ | float
21968
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
21969
+
21936
21970
  /**
21937
21971
  * Aggregation of periods are used to display the utilization line.
21938
21972
  *
@@ -30705,6 +30739,12 @@ declare namespace sap {
30705
30739
  currentVisibleHorizon?: sap.gantt.config.TimeHorizon;
30706
30740
  }
30707
30741
  ): this;
30742
+ /**
30743
+ * @SINCE 1.97
30744
+ *
30745
+ * Determines whether gantt chart is in fullscreen mode.
30746
+ */
30747
+ fullScreenMode(): boolean;
30708
30748
  /**
30709
30749
  * @SINCE 1.91
30710
30750
  *
@@ -32386,6 +32426,22 @@ declare namespace sap {
32386
32426
  */
32387
32427
  sWidth?: sap.ui.core.CSSSize
32388
32428
  ): this;
32429
+ /**
32430
+ * @SINCE 1.97
32431
+ *
32432
+ * Toggles the gantt chart from normal to fullscreen mode and vice versa. Works only if gantt chart is inside
32433
+ * a gantt container.
32434
+ */
32435
+ toggleFullScreen(
32436
+ /**
32437
+ * Whether gantt container's toolbar is to be shown in the fullscreen mode along with the gantt chart.
32438
+ */
32439
+ bShowToolbar: boolean,
32440
+ /**
32441
+ * Button clicked to toggle the fullscreen mode.
32442
+ */
32443
+ oButton: object
32444
+ ): void;
32389
32445
  /**
32390
32446
  * @deprecated (since 1.84) - use {@link sap.gantt.simple.AdhocLine} instead.
32391
32447
  *
@@ -35333,6 +35389,16 @@ declare namespace sap {
35333
35389
  * Default value is `0`.
35334
35390
  */
35335
35391
  getMinValue(): float;
35392
+ /**
35393
+ * @SINCE 1.97
35394
+ *
35395
+ * Gets current value of property {@link #getRelativeMiddleLinePoint relativeMiddleLinePoint}.
35396
+ *
35397
+ * value of middle line.
35398
+ *
35399
+ * Default value is `50`.
35400
+ */
35401
+ getRelativeMiddleLinePoint(): float;
35336
35402
  /**
35337
35403
  * Gets current value of property {@link #getShowMiddleLine showMiddleLine}.
35338
35404
  *
@@ -35433,6 +35499,23 @@ declare namespace sap {
35433
35499
  */
35434
35500
  fMinValue?: float
35435
35501
  ): this;
35502
+ /**
35503
+ * @SINCE 1.97
35504
+ *
35505
+ * Sets a new value for property {@link #getRelativeMiddleLinePoint relativeMiddleLinePoint}.
35506
+ *
35507
+ * value of middle line.
35508
+ *
35509
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35510
+ *
35511
+ * Default value is `50`.
35512
+ */
35513
+ setRelativeMiddleLinePoint(
35514
+ /**
35515
+ * New value for property `relativeMiddleLinePoint`
35516
+ */
35517
+ fRelativeMiddleLinePoint?: float
35518
+ ): this;
35436
35519
  /**
35437
35520
  * Sets a new value for property {@link #getShowMiddleLine showMiddleLine}.
35438
35521
  *
@@ -35531,6 +35614,34 @@ declare namespace sap {
35531
35614
  * Sets the dimension path color
35532
35615
  */
35533
35616
  getDimensionPathColor(): sap.gantt.ValueSVGPaintServer;
35617
+ /**
35618
+ * @SINCE 1.97
35619
+ *
35620
+ * Gets current value of property {@link #getDimensionStrokeDasharray dimensionStrokeDasharray}.
35621
+ *
35622
+ * strokeDashArray value of dimension line.
35623
+ */
35624
+ getDimensionStrokeDasharray(): string;
35625
+ /**
35626
+ * @SINCE 1.97
35627
+ *
35628
+ * Gets current value of property {@link #getDimensionStrokeWidth dimensionStrokeWidth}.
35629
+ *
35630
+ * stroke width of dimension line.
35631
+ *
35632
+ * Default value is `2`.
35633
+ */
35634
+ getDimensionStrokeWidth(): float;
35635
+ /**
35636
+ * @SINCE 1.97
35637
+ *
35638
+ * Gets current value of property {@link #getIsThreshold isThreshold}.
35639
+ *
35640
+ * checks if the dimension is a threshold line.
35641
+ *
35642
+ * Default value is `false`.
35643
+ */
35644
+ getIsThreshold(): boolean;
35534
35645
  /**
35535
35646
  * Gets current value of property {@link #getName name}.
35536
35647
  *
@@ -35619,6 +35730,55 @@ declare namespace sap {
35619
35730
  */
35620
35731
  sDimensionPathColor: sap.gantt.ValueSVGPaintServer
35621
35732
  ): this;
35733
+ /**
35734
+ * @SINCE 1.97
35735
+ *
35736
+ * Sets a new value for property {@link #getDimensionStrokeDasharray dimensionStrokeDasharray}.
35737
+ *
35738
+ * strokeDashArray value of dimension line.
35739
+ *
35740
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35741
+ */
35742
+ setDimensionStrokeDasharray(
35743
+ /**
35744
+ * New value for property `dimensionStrokeDasharray`
35745
+ */
35746
+ sDimensionStrokeDasharray: string
35747
+ ): this;
35748
+ /**
35749
+ * @SINCE 1.97
35750
+ *
35751
+ * Sets a new value for property {@link #getDimensionStrokeWidth dimensionStrokeWidth}.
35752
+ *
35753
+ * stroke width of dimension line.
35754
+ *
35755
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35756
+ *
35757
+ * Default value is `2`.
35758
+ */
35759
+ setDimensionStrokeWidth(
35760
+ /**
35761
+ * New value for property `dimensionStrokeWidth`
35762
+ */
35763
+ fDimensionStrokeWidth?: float
35764
+ ): this;
35765
+ /**
35766
+ * @SINCE 1.97
35767
+ *
35768
+ * Sets a new value for property {@link #getIsThreshold isThreshold}.
35769
+ *
35770
+ * checks if the dimension is a threshold line.
35771
+ *
35772
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35773
+ *
35774
+ * Default value is `false`.
35775
+ */
35776
+ setIsThreshold(
35777
+ /**
35778
+ * New value for property `isThreshold`
35779
+ */
35780
+ bIsThreshold?: boolean
35781
+ ): this;
35622
35782
  /**
35623
35783
  * Sets a new value for property {@link #getName name}.
35624
35784
  *
@@ -36709,6 +36869,12 @@ declare namespace sap {
36709
36869
  * Configuration options for horizontal alignment of title of the shape representing a Task.
36710
36870
  */
36711
36871
  enum horizontalTextAlignment {
36872
+ /**
36873
+ * @SINCE 1.96
36874
+ *
36875
+ * Shape title moves dynamically with horizontal scroll and zoom.
36876
+ */
36877
+ Dynamic = "Dynamic",
36712
36878
  /**
36713
36879
  * Shape title is aligned at the end of the x-axis.
36714
36880
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**