@sapui5/ts-types 1.104.0 → 1.105.0

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 +1 -1
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +2 -2
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +829 -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 +1166 -29
  10. package/types/sap.fe.macros.d.ts +631 -52
  11. package/types/sap.fe.navigation.d.ts +1439 -1
  12. package/types/sap.fe.templates.d.ts +161 -2
  13. package/types/sap.fe.test.d.ts +12 -1
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +66 -54
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +1 -1
  18. package/types/sap.m.d.ts +197 -47
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +68 -3
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.df.d.ts +122 -179
  25. package/types/sap.sac.grid.d.ts +1 -1
  26. package/types/sap.suite.ui.commons.d.ts +97 -6
  27. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  28. package/types/sap.suite.ui.microchart.d.ts +1 -1
  29. package/types/sap.tnt.d.ts +1 -1
  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 +73 -22
  33. package/types/sap.ui.core.d.ts +195 -43
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +3 -3
  36. package/types/sap.ui.fl.d.ts +1117 -5
  37. package/types/sap.ui.generic.app.d.ts +9 -10
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +59 -7
  40. package/types/sap.ui.layout.d.ts +1 -1
  41. package/types/sap.ui.mdc.d.ts +3 -1
  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 +1 -1
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +51 -4
  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 +272 -19
  52. package/types/sap.ui.vtm.d.ts +1 -1
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +209 -16
  55. package/types/sap.ui.webc.main.d.ts +524 -62
  56. package/types/sap.uiext.inbox.d.ts +1 -1
  57. package/types/sap.ushell.d.ts +6 -8
  58. package/types/sap.ushell_abap.d.ts +1 -215
  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
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.1
1
+ // For Library Version: 1.105.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1739,7 +1739,15 @@ declare namespace sap {
1739
1739
  *
1740
1740
  * @returns Crop area with properties x, y, width, and height
1741
1741
  */
1742
- getCropArea(): Object;
1742
+ getCropArea(): {
1743
+ x: int;
1744
+
1745
+ y: int;
1746
+
1747
+ width: int;
1748
+
1749
+ height: int;
1750
+ };
1743
1751
  /**
1744
1752
  * Returns `true` when the `src` property is set and the specified image has been successfuly loaded.
1745
1753
  *
@@ -2590,7 +2598,19 @@ declare namespace sap {
2590
2598
  *
2591
2599
  * @returns IDs of the default items in the header toolbar
2592
2600
  */
2593
- getMobileFooterToolbarIds(): Object;
2601
+ getMobileFooterToolbarIds(): {
2602
+ filter: string;
2603
+
2604
+ crop: string;
2605
+
2606
+ transform: string;
2607
+
2608
+ undo: string;
2609
+
2610
+ history: string;
2611
+
2612
+ apply: string;
2613
+ };
2594
2614
  /**
2595
2615
  * Returns the mobile header toolbar of the `ImageEditorContainer` for customization of its content.
2596
2616
  *
@@ -2612,7 +2632,19 @@ declare namespace sap {
2612
2632
  *
2613
2633
  * @returns IDs of the default items in the header toolbar
2614
2634
  */
2615
- getMobileZoomToolbarIds(): Object;
2635
+ getMobileZoomToolbarIds(): {
2636
+ zoomIn: string;
2637
+
2638
+ zoomOut: string;
2639
+
2640
+ zoomToFit: string;
2641
+
2642
+ zoomLabel: string;
2643
+
2644
+ scaleSwitch: string;
2645
+
2646
+ scaleLabel: string;
2647
+ };
2616
2648
  /**
2617
2649
  * Gets current value of property {@link #getMode mode}.
2618
2650
  *
@@ -2637,7 +2669,27 @@ declare namespace sap {
2637
2669
  *
2638
2670
  * @returns Ids of the default items in the header toolbar
2639
2671
  */
2640
- getToolbarIds(): Object;
2672
+ getToolbarIds(): {
2673
+ filter: string;
2674
+
2675
+ crop: string;
2676
+
2677
+ transform: string;
2678
+
2679
+ undo: string;
2680
+
2681
+ history: string;
2682
+
2683
+ zoomIn: string;
2684
+
2685
+ zoomOut: string;
2686
+
2687
+ zoomToFit: string;
2688
+
2689
+ zoomLabel: string;
2690
+
2691
+ separator: string;
2692
+ };
2641
2693
  /**
2642
2694
  * Checks for the provided `sap.suite.ui.commons.imageeditor.CustomSizeItem` in the aggregation {@link #getCustomEllipseCropItems
2643
2695
  * customEllipseCropItems}. and returns its index if found or -1 otherwise.
@@ -7992,7 +8044,11 @@ declare namespace sap {
7992
8044
  /**
7993
8045
  * X and Y coordinates
7994
8046
  */
7995
- oPoint: Object
8047
+ oPoint: {
8048
+ x: float;
8049
+
8050
+ y: float;
8051
+ }
7996
8052
  ): sap.suite.ui.commons.networkgraph.Coordinate;
7997
8053
  /**
7998
8054
  * Adds some coordinate to the aggregation {@link #getCoordinates coordinates}.
@@ -17319,6 +17375,14 @@ declare namespace sap {
17319
17375
  | sap.ui.base.ManagedObject.PropertyBindingInfo
17320
17376
  | `{${string}}`;
17321
17377
 
17378
+ /**
17379
+ * Specifies whether new folder can be created
17380
+ */
17381
+ enableNewFolderCreation?:
17382
+ | boolean
17383
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
17384
+ | `{${string}}`;
17385
+
17322
17386
  /**
17323
17387
  * Event is fired when the selection is made
17324
17388
  */
@@ -24546,6 +24610,16 @@ declare namespace sap {
24546
24610
  * @returns Value of property `enableDuplicateCheck`
24547
24611
  */
24548
24612
  getEnableDuplicateCheck(): boolean;
24613
+ /**
24614
+ * Gets current value of property {@link #getEnableNewFolderCreation enableNewFolderCreation}.
24615
+ *
24616
+ * Specifies whether new folder can be created
24617
+ *
24618
+ * Default value is `false`.
24619
+ *
24620
+ * @returns Value of property `enableNewFolderCreation`
24621
+ */
24622
+ getEnableNewFolderCreation(): boolean;
24549
24623
  /**
24550
24624
  * Gets current value of property {@link #getFileNameMandatory fileNameMandatory}.
24551
24625
  *
@@ -24645,6 +24719,23 @@ declare namespace sap {
24645
24719
  */
24646
24720
  bEnableDuplicateCheck?: boolean
24647
24721
  ): this;
24722
+ /**
24723
+ * Sets a new value for property {@link #getEnableNewFolderCreation enableNewFolderCreation}.
24724
+ *
24725
+ * Specifies whether new folder can be created
24726
+ *
24727
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24728
+ *
24729
+ * Default value is `false`.
24730
+ *
24731
+ * @returns Reference to `this` in order to allow method chaining
24732
+ */
24733
+ setEnableNewFolderCreation(
24734
+ /**
24735
+ * New value for property `enableNewFolderCreation`
24736
+ */
24737
+ bEnableNewFolderCreation?: boolean
24738
+ ): this;
24648
24739
  /**
24649
24740
  * Sets a new value for property {@link #getFileNameMandatory fileNameMandatory}.
24650
24741
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.105.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.105.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.105.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.105.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.105.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.104.0
1
+ // For Library Version: 1.105.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -2698,13 +2698,24 @@ declare namespace sap {
2698
2698
  retrieveFiltersWithValues(): any[];
2699
2699
  /**
2700
2700
  * Returns a summary string that contains information about the filters currently assigned. The string starts
2701
- * with "Filtered By", followed by the number of set filters and their labels.
2701
+ * with the number of set filters, followed by "filters active" and their labels.
2702
2702
  * Example:
2703
- * Filtered By (3): Company Code, Fiscal Year, Customer
2703
+ * (3) filters active: Company Code, Fiscal Year, Customer
2704
2704
  *
2705
2705
  * @returns A string that contains the number of set filters and their names
2706
2706
  */
2707
2707
  retrieveFiltersWithValuesAsText(): string;
2708
+ /**
2709
+ * Returns a summary string that contains information about the filters currently assigned. This string
2710
+ * is intended to be used in expanded state. The string starts with the total number of filters set, followed
2711
+ * by "filters active" and if available non-visible, the number of the non-visible with label "hidden" in
2712
+ * brackets.
2713
+ * Example:
2714
+ * (3) filters active (1 hidden)
2715
+ *
2716
+ * @returns A string that contains the number of set filters and their names
2717
+ */
2718
+ retrieveFiltersWithValuesAsTextExpanded(): string;
2708
2719
  /**
2709
2720
  * Executes the search event. Controls of all visible filters will be passed as event-parameters.
2710
2721
  *
@@ -3488,7 +3499,7 @@ declare namespace sap {
3488
3499
  /**
3489
3500
  * Always returns the initially added control.
3490
3501
  */
3491
- getControl(): void;
3502
+ getControl(): sap.ui.core.Control | null;
3492
3503
  /**
3493
3504
  * @SINCE 1.52.0
3494
3505
  *
@@ -11489,15 +11500,16 @@ declare namespace sap {
11489
11500
  * or on the server side - `false`.
11490
11501
  *
11491
11502
  * **Note:** If the {@link sap.ui.comp.smartfield.SmartField#value} property of the `SmartField` control
11492
- * is bound to an Entity Data Model (EDM) property annotated as `Nullable="false"`, the mandatory validation
11493
- * is performed on the client side regardless of the `clientSideMandatoryCheck` setting.
11503
+ * is bound to an Entity Data Model (EDM) property of type different from Edm.String annotated as `Nullable="false"`,
11504
+ * the mandatory validation is performed on the client side regardless of the `clientSideMandatoryCheck`
11505
+ * setting.
11494
11506
  *
11495
11507
  * Example:
11496
11508
  *
11497
11509
  *
11498
11510
  * ```javascript
11499
11511
  *
11500
- * <Property Name="CategoryID" Type="Edm.String" Nullable="false"/>
11512
+ * <Property Name="CategoryID" Type="Edm.Decimal" Nullable="false"/>
11501
11513
  * ```
11502
11514
  */
11503
11515
  clientSideMandatoryCheck?:
@@ -13433,15 +13445,16 @@ declare namespace sap {
13433
13445
  * or on the server side - `false`.
13434
13446
  *
13435
13447
  * **Note:** If the {@link sap.ui.comp.smartfield.SmartField#value} property of the `SmartField` control
13436
- * is bound to an Entity Data Model (EDM) property annotated as `Nullable="false"`, the mandatory validation
13437
- * is performed on the client side regardless of the `clientSideMandatoryCheck` setting.
13448
+ * is bound to an Entity Data Model (EDM) property of type different from Edm.String annotated as `Nullable="false"`,
13449
+ * the mandatory validation is performed on the client side regardless of the `clientSideMandatoryCheck`
13450
+ * setting.
13438
13451
  *
13439
13452
  * Example:
13440
13453
  *
13441
13454
  *
13442
13455
  * ```javascript
13443
13456
  *
13444
- * <Property Name="CategoryID" Type="Edm.String" Nullable="false"/>
13457
+ * <Property Name="CategoryID" Type="Edm.Decimal" Nullable="false"/>
13445
13458
  * ```
13446
13459
  *
13447
13460
  *
@@ -14176,15 +14189,16 @@ declare namespace sap {
14176
14189
  * or on the server side - `false`.
14177
14190
  *
14178
14191
  * **Note:** If the {@link sap.ui.comp.smartfield.SmartField#value} property of the `SmartField` control
14179
- * is bound to an Entity Data Model (EDM) property annotated as `Nullable="false"`, the mandatory validation
14180
- * is performed on the client side regardless of the `clientSideMandatoryCheck` setting.
14192
+ * is bound to an Entity Data Model (EDM) property of type different from Edm.String annotated as `Nullable="false"`,
14193
+ * the mandatory validation is performed on the client side regardless of the `clientSideMandatoryCheck`
14194
+ * setting.
14181
14195
  *
14182
14196
  * Example:
14183
14197
  *
14184
14198
  *
14185
14199
  * ```javascript
14186
14200
  *
14187
- * <Property Name="CategoryID" Type="Edm.String" Nullable="false"/>
14201
+ * <Property Name="CategoryID" Type="Edm.Decimal" Nullable="false"/>
14188
14202
  * ```
14189
14203
  *
14190
14204
  *
@@ -26699,14 +26713,20 @@ declare namespace sap {
26699
26713
  *
26700
26714
  * ```javascript
26701
26715
  *
26702
- * <!-- Define extra 3rem space to the automatic content width calcuation -->
26716
+ * <!-- Define extra 3rem space to the automatic content width calculation -->
26703
26717
  * <Column customdata:p13nData='\{"autoColumnWidth": \{ "gap": 3 }, "leadingProperty": "PropA", "columnKey": "PropA"}' >
26704
26718
  * ```
26705
26719
  *
26706
26720
  * ```javascript
26707
26721
  *
26708
- * <!-- Define the visible fields that need to be calculated -->
26709
- * <Column customdata:p13nData='\{"autoColumnWidth": \{ "visibleField": "PropC" }, "leadingProperty": "PropA", "additionalProperty": "PropB,PropC", "columnKey": "PropA"}' >
26722
+ * <!-- Define the visible properties that should be considered for the calculation. Multiple property names can be specified here as comma-separated values. The first property is the leading property. -->
26723
+ * <Column customdata:p13nData='\{"autoColumnWidth": \{ "visibleProperty": "PropC" }, "leadingProperty": "PropA", "additionalProperty": "PropB,PropC", "columnKey": "PropA"}' >
26724
+ * ```
26725
+ *
26726
+ * ```javascript
26727
+ *
26728
+ * <!-- The calculated column width must not be smaller than the column header -->
26729
+ * <Column customdata:p13nData='\{"autoColumnWidth": \{ "truncateLabel": false }, "leadingProperty": "PropA", "columnKey": "PropA"}' >
26710
26730
  * ```
26711
26731
  *
26712
26732
  *
@@ -28436,6 +28456,16 @@ declare namespace sap {
28436
28456
  * by applications in the {@link #event:beforeRebindTable beforeRebindTable} event.
28437
28457
  */
28438
28458
  getDataStateIndicator(): sap.m.plugins.DataStateIndicator;
28459
+ /**
28460
+ * @SINCE 1.105.0
28461
+ *
28462
+ * Returns the deactivated column keys.
28463
+ *
28464
+ * See {@link sap.ui.comp.smarttable.SmartTable#deactivateColumns}
28465
+ *
28466
+ * @returns array of column keys
28467
+ */
28468
+ getDeactivatedColumns(): string[];
28439
28469
  /**
28440
28470
  * @SINCE 1.30.0
28441
28471
  *
@@ -28554,14 +28584,20 @@ declare namespace sap {
28554
28584
  *
28555
28585
  * ```javascript
28556
28586
  *
28557
- * <!-- Define extra 3rem space to the automatic content width calcuation -->
28587
+ * <!-- Define extra 3rem space to the automatic content width calculation -->
28558
28588
  * <Column customdata:p13nData='\{"autoColumnWidth": \{ "gap": 3 }, "leadingProperty": "PropA", "columnKey": "PropA"}' >
28559
28589
  * ```
28560
28590
  *
28561
28591
  * ```javascript
28562
28592
  *
28563
- * <!-- Define the visible fields that need to be calculated -->
28564
- * <Column customdata:p13nData='\{"autoColumnWidth": \{ "visibleField": "PropC" }, "leadingProperty": "PropA", "additionalProperty": "PropB,PropC", "columnKey": "PropA"}' >
28593
+ * <!-- Define the visible properties that should be considered for the calculation. Multiple property names can be specified here as comma-separated values. The first property is the leading property. -->
28594
+ * <Column customdata:p13nData='\{"autoColumnWidth": \{ "visibleProperty": "PropC" }, "leadingProperty": "PropA", "additionalProperty": "PropB,PropC", "columnKey": "PropA"}' >
28595
+ * ```
28596
+ *
28597
+ * ```javascript
28598
+ *
28599
+ * <!-- The calculated column width must not be smaller than the column header -->
28600
+ * <Column customdata:p13nData='\{"autoColumnWidth": \{ "truncateLabel": false }, "leadingProperty": "PropA", "columnKey": "PropA"}' >
28565
28601
  * ```
28566
28602
  *
28567
28603
  *
@@ -29355,14 +29391,20 @@ declare namespace sap {
29355
29391
  *
29356
29392
  * ```javascript
29357
29393
  *
29358
- * <!-- Define extra 3rem space to the automatic content width calcuation -->
29394
+ * <!-- Define extra 3rem space to the automatic content width calculation -->
29359
29395
  * <Column customdata:p13nData='\{"autoColumnWidth": \{ "gap": 3 }, "leadingProperty": "PropA", "columnKey": "PropA"}' >
29360
29396
  * ```
29361
29397
  *
29362
29398
  * ```javascript
29363
29399
  *
29364
- * <!-- Define the visible fields that need to be calculated -->
29365
- * <Column customdata:p13nData='\{"autoColumnWidth": \{ "visibleField": "PropC" }, "leadingProperty": "PropA", "additionalProperty": "PropB,PropC", "columnKey": "PropA"}' >
29400
+ * <!-- Define the visible properties that should be considered for the calculation. Multiple property names can be specified here as comma-separated values. The first property is the leading property. -->
29401
+ * <Column customdata:p13nData='\{"autoColumnWidth": \{ "visibleProperty": "PropC" }, "leadingProperty": "PropA", "additionalProperty": "PropB,PropC", "columnKey": "PropA"}' >
29402
+ * ```
29403
+ *
29404
+ * ```javascript
29405
+ *
29406
+ * <!-- The calculated column width must not be smaller than the column header -->
29407
+ * <Column customdata:p13nData='\{"autoColumnWidth": \{ "truncateLabel": false }, "leadingProperty": "PropA", "columnKey": "PropA"}' >
29366
29408
  * ```
29367
29409
  *
29368
29410
  *
@@ -36159,6 +36201,15 @@ declare namespace sap {
36159
36201
  */
36160
36202
  bFlag: boolean
36161
36203
  ): void;
36204
+ /**
36205
+ * Sets the new selected variant.
36206
+ */
36207
+ setCurrentVariantKey(
36208
+ /**
36209
+ * Key of the variant that should be selected.
36210
+ */
36211
+ sKey: string
36212
+ ): void;
36162
36213
  /**
36163
36214
  * @SINCE 1.22.0
36164
36215
  *