@sapui5/types 1.118.1 → 1.119.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 (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +9 -9
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +16 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +35 -1
  7. package/types/sap.f.d.ts +121 -3
  8. package/types/sap.fe.core.d.ts +91 -83
  9. package/types/sap.fe.macros.d.ts +130 -25
  10. package/types/sap.fe.navigation.d.ts +92 -87
  11. package/types/sap.fe.placeholder.d.ts +1 -1
  12. package/types/sap.fe.templates.d.ts +32 -22
  13. package/types/sap.fe.test.d.ts +1 -1
  14. package/types/sap.fe.tools.d.ts +1 -1
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +64 -50
  17. package/types/sap.insights.d.ts +133 -28
  18. package/types/sap.landvisz.d.ts +1 -1
  19. package/types/sap.m.d.ts +483 -80
  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 +555 -274
  26. package/types/sap.suite.ui.commons.d.ts +48 -6
  27. package/types/sap.suite.ui.generic.template.d.ts +16 -11
  28. package/types/sap.suite.ui.microchart.d.ts +1 -1
  29. package/types/sap.tnt.d.ts +17 -15
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +1 -1
  32. package/types/sap.ui.comp.d.ts +41 -59
  33. package/types/sap.ui.core.d.ts +517 -173
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +1 -1
  36. package/types/sap.ui.fl.d.ts +1 -51
  37. package/types/sap.ui.generic.app.d.ts +1 -1
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +11 -1
  40. package/types/sap.ui.layout.d.ts +1 -1
  41. package/types/sap.ui.mdc.d.ts +1017 -246
  42. package/types/sap.ui.richtexteditor.d.ts +1 -1
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +1 -1
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +915 -1
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +1 -1
  49. package/types/sap.ui.ux3.d.ts +1 -1
  50. package/types/sap.ui.vbm.d.ts +1 -1
  51. package/types/sap.ui.vk.d.ts +387 -9
  52. package/types/sap.ui.vtm.d.ts +78 -66
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +85 -85
  55. package/types/sap.ui.webc.main.d.ts +225 -225
  56. package/types/sap.uiext.inbox.d.ts +1 -1
  57. package/types/sap.ushell.d.ts +566 -42
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +1 -1
  60. package/types/sap.viz.d.ts +1 -1
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/types",
3
- "version": "1.118.1",
3
+ "version": "1.119.1",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,13 +1,6 @@
1
- // For Library Version: 1.118.0
1
+ // For Library Version: 1.119.0
2
2
 
3
- declare module "sap/apf/library" {
4
- /**
5
- * @deprecated (since 1.23.1) - Use sap.apf.core.constants instead.
6
- *
7
- * Constants to be used by APF consumers.
8
- */
9
- export const constants: Object;
10
- }
3
+ declare module "sap/apf/library" {}
11
4
 
12
5
  declare module "sap/apf/api" {
13
6
  import Manifest from "sap/ui/core/Manifest";
@@ -692,6 +685,13 @@ declare namespace sap {
692
685
  * Analysis Path Framework
693
686
  */
694
687
  namespace apf {
688
+ /**
689
+ * @deprecated (since 1.23.1) - Use sap.apf.core.constants instead.
690
+ *
691
+ * Constants to be used by APF consumers.
692
+ */
693
+ export const constants: Object;
694
+
695
695
  namespace core {
696
696
  /**
697
697
  * Facade for sap.apf.core.Request for getting data via the OData protocol. This corresponds to a normal
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.118.0
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare module "sap/ca/ui/library" {
4
4
  export namespace charts {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.118.0
1
+ // For Library Version: 1.119.1
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
@@ -4669,6 +4669,12 @@ declare module "sap/chart/data/TimeDimension" {
4669
4669
  * @returns Value of property `fiscalYearPeriodCount`
4670
4670
  */
4671
4671
  getFiscalYearPeriodCount(): object;
4672
+ /**
4673
+ * Returns if UTC is used for the time dimension
4674
+ *
4675
+ * @returns true if the time dimension data is parsed in UTC, otherwise return false
4676
+ */
4677
+ getIsUTC(): boolean;
4672
4678
  /**
4673
4679
  * Gets current value of property {@link #getProjectedValueStartTime projectedValueStartTime}.
4674
4680
  *
@@ -4711,6 +4717,15 @@ declare module "sap/chart/data/TimeDimension" {
4711
4717
  */
4712
4718
  oFiscalYearPeriodCount: object
4713
4719
  ): this;
4720
+ /**
4721
+ * Sets whether to use UTC for the time dimension
4722
+ */
4723
+ setIsUTC(
4724
+ /**
4725
+ * set the time dimension data is parsed in UTC or not
4726
+ */
4727
+ bUTC: boolean
4728
+ ): void;
4714
4729
  /**
4715
4730
  * Sets a new value for property {@link #getProjectedValueStartTime projectedValueStartTime}.
4716
4731
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.118.0
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare module "sap/collaboration/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.118.0
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare module "sap/esh/search/ui/library" {}
4
4
 
@@ -476,6 +476,15 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
476
476
  * @returns Value of property `getCustomNoResultScreen`
477
477
  */
478
478
  getGetCustomNoResultScreen(): Function;
479
+ /**
480
+ * Gets current value of property {@link #getGetSearchInputPlaceholderLabel getSearchInputPlaceholderLabel}.
481
+ *
482
+ * A callback which returns customized "label" for placeholder text of search box, in case there is no search
483
+ * term. The placeholder text (en) will be "Search In: ".
484
+ *
485
+ * @returns Value of property `getSearchInputPlaceholderLabel`
486
+ */
487
+ getGetSearchInputPlaceholderLabel(): Function;
479
488
  /**
480
489
  * @since 1.113.0
481
490
  *
@@ -1065,6 +1074,22 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1065
1074
  */
1066
1075
  fnGetCustomNoResultScreen: Function
1067
1076
  ): this;
1077
+ /**
1078
+ * Sets a new value for property {@link #getGetSearchInputPlaceholderLabel getSearchInputPlaceholderLabel}.
1079
+ *
1080
+ * A callback which returns customized "label" for placeholder text of search box, in case there is no search
1081
+ * term. The placeholder text (en) will be "Search In: ".
1082
+ *
1083
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1084
+ *
1085
+ * @returns Reference to `this` in order to allow method chaining
1086
+ */
1087
+ setGetSearchInputPlaceholderLabel(
1088
+ /**
1089
+ * New value for property `getSearchInputPlaceholderLabel`
1090
+ */
1091
+ fnGetSearchInputPlaceholderLabel: Function
1092
+ ): this;
1068
1093
  /**
1069
1094
  * @since 1.113.0
1070
1095
  *
@@ -1566,6 +1591,15 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
1566
1591
  */
1567
1592
  getCustomNoResultScreen?: Function | PropertyBindingInfo | `{${string}}`;
1568
1593
 
1594
+ /**
1595
+ * A callback which returns customized "label" for placeholder text of search box, in case there is no search
1596
+ * term. The placeholder text (en) will be "Search In: ".
1597
+ */
1598
+ getSearchInputPlaceholderLabel?:
1599
+ | Function
1600
+ | PropertyBindingInfo
1601
+ | `{${string}}`;
1602
+
1569
1603
  /**
1570
1604
  * @since 1.93.0
1571
1605
  *
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.118.0
1
+ // For Library Version: 1.119.1
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -1820,6 +1820,8 @@ declare module "sap/f/cards/Header" {
1820
1820
 
1821
1821
  import AvatarShape from "sap/m/AvatarShape";
1822
1822
 
1823
+ import AvatarSize from "sap/m/AvatarSize";
1824
+
1823
1825
  import { URI } from "sap/ui/core/library";
1824
1826
 
1825
1827
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -2038,6 +2040,18 @@ declare module "sap/f/cards/Header" {
2038
2040
  * @returns Value of property `iconInitials`
2039
2041
  */
2040
2042
  getIconInitials(): string;
2043
+ /**
2044
+ * @experimental (since 1.119) - this feature is experimental and the API may change.
2045
+ *
2046
+ * Gets current value of property {@link #getIconSize iconSize}.
2047
+ *
2048
+ * Defines the size of the icon.
2049
+ *
2050
+ * Default value is `S`.
2051
+ *
2052
+ * @returns Value of property `iconSize`
2053
+ */
2054
+ getIconSize(): AvatarSize | keyof typeof AvatarSize;
2041
2055
  /**
2042
2056
  * Gets current value of property {@link #getIconSrc iconSrc}.
2043
2057
  *
@@ -2186,6 +2200,25 @@ declare module "sap/f/cards/Header" {
2186
2200
  */
2187
2201
  sIconInitials?: string
2188
2202
  ): this;
2203
+ /**
2204
+ * @experimental (since 1.119) - this feature is experimental and the API may change.
2205
+ *
2206
+ * Sets a new value for property {@link #getIconSize iconSize}.
2207
+ *
2208
+ * Defines the size of the icon.
2209
+ *
2210
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2211
+ *
2212
+ * Default value is `S`.
2213
+ *
2214
+ * @returns Reference to `this` in order to allow method chaining
2215
+ */
2216
+ setIconSize(
2217
+ /**
2218
+ * New value for property `iconSize`
2219
+ */
2220
+ sIconSize?: AvatarSize | keyof typeof AvatarSize
2221
+ ): this;
2189
2222
  /**
2190
2223
  * Sets a new value for property {@link #getIconSrc iconSrc}.
2191
2224
  *
@@ -2392,6 +2425,16 @@ declare module "sap/f/cards/Header" {
2392
2425
  */
2393
2426
  iconVisible?: boolean | PropertyBindingInfo | `{${string}}`;
2394
2427
 
2428
+ /**
2429
+ * @experimental (since 1.119) - this feature is experimental and the API may change.
2430
+ *
2431
+ * Defines the size of the icon.
2432
+ */
2433
+ iconSize?:
2434
+ | (AvatarSize | keyof typeof AvatarSize)
2435
+ | PropertyBindingInfo
2436
+ | `{${string}}`;
2437
+
2395
2438
  /**
2396
2439
  * Fires when the user presses the control.
2397
2440
  */
@@ -2467,6 +2510,8 @@ declare module "sap/f/cards/NumericHeader" {
2467
2510
 
2468
2511
  import AvatarShape from "sap/m/AvatarShape";
2469
2512
 
2513
+ import AvatarSize from "sap/m/AvatarSize";
2514
+
2470
2515
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2471
2516
 
2472
2517
  import { ValueColor, DeviationIndicator } from "sap/m/library";
@@ -2751,6 +2796,18 @@ declare module "sap/f/cards/NumericHeader" {
2751
2796
  * @returns Value of property `iconInitials`
2752
2797
  */
2753
2798
  getIconInitials(): string;
2799
+ /**
2800
+ * @experimental (since 1.119) - this feature is experimental and the API may change.
2801
+ *
2802
+ * Gets current value of property {@link #getIconSize iconSize}.
2803
+ *
2804
+ * Defines the size of the icon.
2805
+ *
2806
+ * Default value is `S`.
2807
+ *
2808
+ * @returns Value of property `iconSize`
2809
+ */
2810
+ getIconSize(): AvatarSize | keyof typeof AvatarSize;
2754
2811
  /**
2755
2812
  * @since 1.118
2756
2813
  * @experimental (since 1.118) - For usage only by Work Zone.
@@ -2786,6 +2843,16 @@ declare module "sap/f/cards/NumericHeader" {
2786
2843
  * @returns Value of property `number`
2787
2844
  */
2788
2845
  getNumber(): string;
2846
+ /**
2847
+ * Gets current value of property {@link #getNumberSize numberSize}.
2848
+ *
2849
+ * The size of the of the main indicator. Possible values are "S" and "L".
2850
+ *
2851
+ * Default value is `"L"`.
2852
+ *
2853
+ * @returns Value of property `numberSize`
2854
+ */
2855
+ getNumberSize(): string;
2789
2856
  /**
2790
2857
  * @since 1.109
2791
2858
  *
@@ -3090,6 +3157,25 @@ declare module "sap/f/cards/NumericHeader" {
3090
3157
  */
3091
3158
  sIconInitials?: string
3092
3159
  ): this;
3160
+ /**
3161
+ * @experimental (since 1.119) - this feature is experimental and the API may change.
3162
+ *
3163
+ * Sets a new value for property {@link #getIconSize iconSize}.
3164
+ *
3165
+ * Defines the size of the icon.
3166
+ *
3167
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3168
+ *
3169
+ * Default value is `S`.
3170
+ *
3171
+ * @returns Reference to `this` in order to allow method chaining
3172
+ */
3173
+ setIconSize(
3174
+ /**
3175
+ * New value for property `iconSize`
3176
+ */
3177
+ sIconSize?: AvatarSize | keyof typeof AvatarSize
3178
+ ): this;
3093
3179
  /**
3094
3180
  * @since 1.118
3095
3181
  * @experimental (since 1.118) - For usage only by Work Zone.
@@ -3146,6 +3232,23 @@ declare module "sap/f/cards/NumericHeader" {
3146
3232
  */
3147
3233
  sNumber: string
3148
3234
  ): this;
3235
+ /**
3236
+ * Sets a new value for property {@link #getNumberSize numberSize}.
3237
+ *
3238
+ * The size of the of the main indicator. Possible values are "S" and "L".
3239
+ *
3240
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3241
+ *
3242
+ * Default value is `"L"`.
3243
+ *
3244
+ * @returns Reference to `this` in order to allow method chaining
3245
+ */
3246
+ setNumberSize(
3247
+ /**
3248
+ * New value for property `numberSize`
3249
+ */
3250
+ sNumberSize?: string
3251
+ ): this;
3149
3252
  /**
3150
3253
  * @since 1.109
3151
3254
  *
@@ -3431,6 +3534,16 @@ declare module "sap/f/cards/NumericHeader" {
3431
3534
  */
3432
3535
  iconVisible?: boolean | PropertyBindingInfo | `{${string}}`;
3433
3536
 
3537
+ /**
3538
+ * @experimental (since 1.119) - this feature is experimental and the API may change.
3539
+ *
3540
+ * Defines the size of the icon.
3541
+ */
3542
+ iconSize?:
3543
+ | (AvatarSize | keyof typeof AvatarSize)
3544
+ | PropertyBindingInfo
3545
+ | `{${string}}`;
3546
+
3434
3547
  /**
3435
3548
  * General unit of measurement for the header. Displayed as side information to the subtitle.
3436
3549
  */
@@ -3442,6 +3555,11 @@ declare module "sap/f/cards/NumericHeader" {
3442
3555
  */
3443
3556
  number?: string | PropertyBindingInfo;
3444
3557
 
3558
+ /**
3559
+ * The size of the of the main indicator. Possible values are "S" and "L".
3560
+ */
3561
+ numberSize?: string | PropertyBindingInfo;
3562
+
3445
3563
  /**
3446
3564
  * @since 1.109
3447
3565
  *
@@ -9468,7 +9586,7 @@ declare module "sap/f/FlexibleColumnLayoutSemanticHelper" {
9468
9586
  * for the first two pages, all other pages will open in fullscreen), and `SingleColumn` (one page at a
9469
9587
  * time only).
9470
9588
  */
9471
- mode: string;
9589
+ mode?: string;
9472
9590
  }
9473
9591
  );
9474
9592
 
@@ -9678,7 +9796,7 @@ declare module "sap/f/FlexibleColumnLayoutSemanticHelper" {
9678
9796
  /**
9679
9797
  * The value of the {@link sap.f.FlexibleColumnLayout#getLayout layout} property.
9680
9798
  */
9681
- layout?: string;
9799
+ layout?: LayoutType | keyof typeof LayoutType;
9682
9800
  /**
9683
9801
  * The maximum number of columns that can be displayed at once based on the control width. See {@link sap.f.FlexibleColumnLayout#getMaxColumnsCount}
9684
9802
  */