@sapui5/ts-types 1.102.1 → 1.103.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 (61) 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 +11 -11
  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 +1 -1
  7. package/types/sap.f.d.ts +164 -24
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +29 -1159
  10. package/types/sap.fe.macros.d.ts +52 -627
  11. package/types/sap.fe.navigation.d.ts +1 -1309
  12. package/types/sap.fe.templates.d.ts +2 -161
  13. package/types/sap.fe.test.d.ts +12 -244
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +343 -63
  16. package/types/sap.insights.d.ts +2 -61
  17. package/types/sap.landvisz.d.ts +15 -15
  18. package/types/sap.m.d.ts +513 -284
  19. package/types/sap.makit.d.ts +5 -5
  20. package/types/sap.me.d.ts +2 -2
  21. package/types/sap.ndc.d.ts +75 -3
  22. package/types/sap.ovp.d.ts +6 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.df.d.ts +163 -1
  25. package/types/sap.sac.grid.d.ts +1 -1
  26. package/types/sap.suite.ui.commons.d.ts +59 -59
  27. package/types/sap.suite.ui.generic.template.d.ts +98 -12
  28. package/types/sap.suite.ui.microchart.d.ts +14 -14
  29. package/types/sap.tnt.d.ts +5 -5
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +36 -36
  32. package/types/sap.ui.comp.d.ts +113 -28
  33. package/types/sap.ui.core.d.ts +294 -92
  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 +3 -1
  37. package/types/sap.ui.generic.app.d.ts +13 -6
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +3 -3
  40. package/types/sap.ui.layout.d.ts +33 -41
  41. package/types/sap.ui.mdc.d.ts +1 -1
  42. package/types/sap.ui.richtexteditor.d.ts +2 -2
  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 +9 -9
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +35 -35
  49. package/types/sap.ui.ux3.d.ts +43 -43
  50. package/types/sap.ui.vbm.d.ts +130 -55
  51. package/types/sap.ui.vk.d.ts +25 -25
  52. package/types/sap.ui.vtm.d.ts +15 -12
  53. package/types/sap.uiext.inbox.d.ts +3 -3
  54. package/types/sap.ushell.d.ts +14 -12
  55. package/types/sap.ushell_abap.d.ts +1 -1
  56. package/types/sap.uxap.d.ts +13 -13
  57. package/types/sap.viz.d.ts +8 -8
  58. package/types/sap.webanalytics.core.d.ts +1 -1
  59. package/types/sap.zen.commons.d.ts +4 -4
  60. package/types/sap.zen.crosstab.d.ts +1 -1
  61. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.1
1
+ // For Library Version: 1.103.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -2664,7 +2664,7 @@ declare namespace sap {
2664
2664
  | int
2665
2665
  | string
2666
2666
  | sap.ui.comp.filterbar.FilterGroupItem
2667
- ): sap.ui.comp.filterbar.FilterGroupItem;
2667
+ ): sap.ui.comp.filterbar.FilterGroupItem | null;
2668
2668
  /**
2669
2669
  * @deprecated (since 1.48.0) - Use aggregation `filterGroupItems` instead.
2670
2670
  *
@@ -2677,7 +2677,7 @@ declare namespace sap {
2677
2677
  * The filterItem to remove or its index or id
2678
2678
  */
2679
2679
  vFilterItem: int | string | sap.ui.comp.filterbar.FilterItem
2680
- ): sap.ui.comp.filterbar.FilterItem;
2680
+ ): sap.ui.comp.filterbar.FilterItem | null;
2681
2681
  /**
2682
2682
  * Adapts the visibility for all filter containers.
2683
2683
  */
@@ -5353,7 +5353,7 @@ declare namespace sap {
5353
5353
  * The availableAction to remove or its index or id
5354
5354
  */
5355
5355
  vAvailableAction: int | string | sap.ui.comp.navpopover.LinkData
5356
- ): sap.ui.comp.navpopover.LinkData;
5356
+ ): sap.ui.comp.navpopover.LinkData | null;
5357
5357
  /**
5358
5358
  * @deprecated (since 1.42.0) - Target determination is no longer done by NavigationPopover. Instead the
5359
5359
  * NavigationPopoverHandler is responsible for target determination.
@@ -10519,7 +10519,7 @@ declare namespace sap {
10519
10519
  * The selectionDetailsAction to remove or its index or id
10520
10520
  */
10521
10521
  vSelectionDetailsAction: int | string | sap.ui.core.Item
10522
- ): sap.ui.core.Item;
10522
+ ): sap.ui.core.Item | null;
10523
10523
  /**
10524
10524
  * @EXPERIMENTAL (since 1.48)
10525
10525
  *
@@ -10532,7 +10532,7 @@ declare namespace sap {
10532
10532
  * The selectionDetailsActionGroup to remove or its index or id
10533
10533
  */
10534
10534
  vSelectionDetailsActionGroup: int | string | sap.ui.core.Item
10535
- ): sap.ui.core.Item;
10535
+ ): sap.ui.core.Item | null;
10536
10536
  /**
10537
10537
  * @EXPERIMENTAL (since 1.48)
10538
10538
  *
@@ -10545,7 +10545,7 @@ declare namespace sap {
10545
10545
  * The selectionDetailsItemAction to remove or its index or id
10546
10546
  */
10547
10547
  vSelectionDetailsItemAction: int | string | sap.ui.core.Item
10548
- ): sap.ui.core.Item;
10548
+ ): sap.ui.core.Item | null;
10549
10549
  /**
10550
10550
  * @SINCE 1.84
10551
10551
  *
@@ -15405,6 +15405,16 @@ declare namespace sap {
15405
15405
  | sap.ui.base.ManagedObject.PropertyBindingInfo
15406
15406
  | `{${string}}`;
15407
15407
 
15408
+ /**
15409
+ * @SINCE 1.103
15410
+ *
15411
+ * Sets time zone for filter of type Edm.DateTimeOffset
15412
+ *
15413
+ * **Note:** The property is IANA timezone ID, e.g. "America/New_York". An invalid IANA timezone ID will
15414
+ * fall back to the UTC.
15415
+ */
15416
+ timezone?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
15417
+
15408
15418
  /**
15409
15419
  * Default value for a filter field. The aggregation expects {@link sap.ui.comp.smartfilterbar.SelectOption|SelectOption}
15410
15420
  * instances, where the values' format (properties `low` and `high`) match the type of the referneced property
@@ -16066,6 +16076,19 @@ declare namespace sap {
16066
16076
  * @returns Value of property `preventInitialDataFetchInValueHelpDialog`
16067
16077
  */
16068
16078
  getPreventInitialDataFetchInValueHelpDialog(): boolean;
16079
+ /**
16080
+ * @SINCE 1.103
16081
+ *
16082
+ * Gets current value of property {@link #getTimezone timezone}.
16083
+ *
16084
+ * Sets time zone for filter of type Edm.DateTimeOffset
16085
+ *
16086
+ * **Note:** The property is IANA timezone ID, e.g. "America/New_York". An invalid IANA timezone ID will
16087
+ * fall back to the UTC.
16088
+ *
16089
+ * @returns Value of property `timezone`
16090
+ */
16091
+ getTimezone(): string;
16069
16092
  /**
16070
16093
  * Gets current value of property {@link #getVisible visible}.
16071
16094
  *
@@ -16145,7 +16168,7 @@ declare namespace sap {
16145
16168
  | int
16146
16169
  | string
16147
16170
  | sap.ui.comp.smartfilterbar.SelectOption
16148
- ): sap.ui.comp.smartfilterbar.SelectOption;
16171
+ ): sap.ui.comp.smartfilterbar.SelectOption | null;
16149
16172
  /**
16150
16173
  * @SINCE 1.99
16151
16174
  *
@@ -16431,6 +16454,26 @@ declare namespace sap {
16431
16454
  */
16432
16455
  bPreventInitialDataFetchInValueHelpDialog?: boolean
16433
16456
  ): this;
16457
+ /**
16458
+ * @SINCE 1.103
16459
+ *
16460
+ * Sets a new value for property {@link #getTimezone timezone}.
16461
+ *
16462
+ * Sets time zone for filter of type Edm.DateTimeOffset
16463
+ *
16464
+ * **Note:** The property is IANA timezone ID, e.g. "America/New_York". An invalid IANA timezone ID will
16465
+ * fall back to the UTC.
16466
+ *
16467
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16468
+ *
16469
+ * @returns Reference to `this` in order to allow method chaining
16470
+ */
16471
+ setTimezone(
16472
+ /**
16473
+ * New value for property `timezone`
16474
+ */
16475
+ sTimezone?: string
16476
+ ): this;
16434
16477
  /**
16435
16478
  * Sets a new value for property {@link #getVisible visible}.
16436
16479
  *
@@ -17228,6 +17271,18 @@ declare namespace sap {
17228
17271
  * here after the SmartFilter is initialized (`initialise` event was fired) has no effect.
17229
17272
  */
17230
17273
  getControlConfiguration(): sap.ui.comp.smartfilterbar.ControlConfiguration[];
17274
+ /**
17275
+ * Returns the condition type object (if any) with the specified key (Property name in OData entity). Use
17276
+ * just the property name as the key when getting a control from the basic area.
17277
+ *
17278
+ * @returns returns Promise with condition type object
17279
+ */
17280
+ getDateRangeTypeByKey(
17281
+ /**
17282
+ * The key as present in the OData property name/control configuration
17283
+ */
17284
+ sKey: string
17285
+ ): object;
17231
17286
  /**
17232
17287
  * @deprecated (since 1.87) - Please use the `com.sap.vocabularies.UI.v1.SelectionPresentationVariant` annotation
17233
17288
  * through the {@link sap.ui.comp.smartvariants.SmartVariantManagement#setEntitySet}
@@ -17604,7 +17659,7 @@ declare namespace sap {
17604
17659
  | int
17605
17660
  | string
17606
17661
  | sap.ui.comp.smartfilterbar.ControlConfiguration
17607
- ): sap.ui.comp.smartfilterbar.ControlConfiguration;
17662
+ ): sap.ui.comp.smartfilterbar.ControlConfiguration | null;
17608
17663
  /**
17609
17664
  * Removes a groupConfiguration from the aggregation {@link #getGroupConfiguration groupConfiguration}.
17610
17665
  *
@@ -17618,7 +17673,7 @@ declare namespace sap {
17618
17673
  | int
17619
17674
  | string
17620
17675
  | sap.ui.comp.smartfilterbar.GroupConfiguration
17621
- ): sap.ui.comp.smartfilterbar.GroupConfiguration;
17676
+ ): sap.ui.comp.smartfilterbar.GroupConfiguration | null;
17622
17677
  /**
17623
17678
  * Resumes calls to the `search` method. If it was called during the suspension, the search will be triggered
17624
17679
  * once regardless of how many times it was called during suspension.
@@ -17696,6 +17751,21 @@ declare namespace sap {
17696
17751
  */
17697
17752
  bConsiderSelectionVariants?: boolean
17698
17753
  ): this;
17754
+ /**
17755
+ * Sets the the Dynamic Date Option of condition type (if any) data in the filter data model.
17756
+ *
17757
+ * @returns returns Promise
17758
+ */
17759
+ setDateRangeTypeOperationByKey(
17760
+ /**
17761
+ * The key as present in the OData property name/control configuration
17762
+ */
17763
+ sKey: string,
17764
+ /**
17765
+ * The key of Dynamic Date Option
17766
+ */
17767
+ sOption: string
17768
+ ): object;
17699
17769
  /**
17700
17770
  * @deprecated (since 1.87) - Please use the `com.sap.vocabularies.UI.v1.SelectionPresentationVariant` annotation
17701
17771
  * through the {@link sap.ui.comp.smartvariants.SmartVariantManagement#setEntitySet}
@@ -19203,7 +19273,7 @@ declare namespace sap {
19203
19273
  * The groupElement to remove or its index or id
19204
19274
  */
19205
19275
  vGroupElement: int | string | sap.ui.comp.IFormGroupElement
19206
- ): sap.ui.comp.IFormGroupElement;
19276
+ ): sap.ui.comp.IFormGroupElement | null;
19207
19277
  /**
19208
19278
  * @deprecated (since 1.74.0) - please do not change the edit mode on group level, let the SmartForm inheritance
19209
19279
  * do it
@@ -19643,7 +19713,7 @@ declare namespace sap {
19643
19713
  * The element to remove or its index or id
19644
19714
  */
19645
19715
  vElement: int | string | sap.ui.core.Control
19646
- ): sap.ui.core.Control;
19716
+ ): sap.ui.core.Control | null;
19647
19717
  /**
19648
19718
  * @deprecated (since 1.74.0) - please do not change the edit mode on groupElement level, let the SmartForm
19649
19719
  * inheritance do it
@@ -20498,7 +20568,7 @@ declare namespace sap {
20498
20568
  * The element to remove or its index or id
20499
20569
  */
20500
20570
  vElement: int | string | sap.ui.core.Control
20501
- ): sap.ui.core.Control;
20571
+ ): sap.ui.core.Control | null;
20502
20572
  /**
20503
20573
  * Sets a new value for property {@link #getElementForLabel elementForLabel}.
20504
20574
  *
@@ -21196,7 +21266,7 @@ declare namespace sap {
21196
21266
  * The group to remove or its index or id
21197
21267
  */
21198
21268
  vGroup: int | string | sap.ui.comp.smartform.Group
21199
- ): sap.ui.comp.smartform.Group;
21269
+ ): sap.ui.comp.smartform.Group | null;
21200
21270
  /**
21201
21271
  * Sets a new value for property {@link #getCheckButton checkButton}.
21202
21272
  *
@@ -26319,20 +26389,25 @@ declare namespace sap {
26319
26389
  /**
26320
26390
  * @SINCE 1.97.0
26321
26391
  *
26322
- * Provides customization to the columns/cell templates generated by the `SmartTable` control. Examples
26323
- * for the `customizeConfig` property to change the `textInEditModeSource` for the default `smartField`
26392
+ * Provides customization to the columns/cell templates generated by the `SmartTable` control.
26324
26393
  *
26394
+ * List of supported settings for the `customizeConfig` property:
26395
+ * - `textInEditModeSource`: For more information, see {@link sap.ui.comp.smartfield.SmartField#setTextInEditModeSource}
26396
+ *
26397
+ * - `insertIgnoreRestrictions`: The `customData` setting for the `sap.ui.comp.smartfield.SmartField`
26398
+ * control. Supported as of version 1.103. Examples for the `customizeConfig` property to
26399
+ * change the `textInEditModeSource` for the default `smartField`
26325
26400
  * ```javascript
26326
26401
  *
26327
26402
  * <!-- Sets the `textInEditModeSource` property of all the `SmartField` controls to ValueList -->
26328
- * <SmartTable customizeConfig='\{"textInEditModeSource": {"*": "ValueList"}}' >
26403
+ * <SmartTable customizeConfig="{'textInEditModeSource': {'*': 'ValueList'}}" >
26329
26404
  * ```
26330
26405
  *
26331
26406
  * ```javascript
26332
26407
  *
26333
26408
  * <!-- Sets the `textInEditModeSource` property of the `smartField` with path "Bukrs" to `NavigationProperty` and
26334
26409
  * others to ValueList -->
26335
- * <SmartTable customizeConfig='\{"textInEditModeSource": {"*": "ValueList","Bukrs":"NavigationProperty"}}' >
26410
+ * <SmartTable customizeConfig="{'textInEditModeSource': {'*': 'ValueList','Bukrs':'NavigationProperty'}}" >
26336
26411
  * ```
26337
26412
  */
26338
26413
  customizeConfig?:
@@ -28308,20 +28383,25 @@ declare namespace sap {
28308
28383
  *
28309
28384
  * Gets current value of property {@link #getCustomizeConfig customizeConfig}.
28310
28385
  *
28311
- * Provides customization to the columns/cell templates generated by the `SmartTable` control. Examples
28312
- * for the `customizeConfig` property to change the `textInEditModeSource` for the default `smartField`
28386
+ * Provides customization to the columns/cell templates generated by the `SmartTable` control.
28387
+ *
28388
+ * List of supported settings for the `customizeConfig` property:
28389
+ * - `textInEditModeSource`: For more information, see {@link sap.ui.comp.smartfield.SmartField#setTextInEditModeSource}
28313
28390
  *
28391
+ * - `insertIgnoreRestrictions`: The `customData` setting for the `sap.ui.comp.smartfield.SmartField`
28392
+ * control. Supported as of version 1.103. Examples for the `customizeConfig` property to
28393
+ * change the `textInEditModeSource` for the default `smartField`
28314
28394
  * ```javascript
28315
28395
  *
28316
28396
  * <!-- Sets the `textInEditModeSource` property of all the `SmartField` controls to ValueList -->
28317
- * <SmartTable customizeConfig='\{"textInEditModeSource": {"*": "ValueList"}}' >
28397
+ * <SmartTable customizeConfig="{'textInEditModeSource': {'*': 'ValueList'}}" >
28318
28398
  * ```
28319
28399
  *
28320
28400
  * ```javascript
28321
28401
  *
28322
28402
  * <!-- Sets the `textInEditModeSource` property of the `smartField` with path "Bukrs" to `NavigationProperty` and
28323
28403
  * others to ValueList -->
28324
- * <SmartTable customizeConfig='\{"textInEditModeSource": {"*": "ValueList","Bukrs":"NavigationProperty"}}' >
28404
+ * <SmartTable customizeConfig="{'textInEditModeSource': {'*': 'ValueList','Bukrs':'NavigationProperty'}}" >
28325
28405
  * ```
28326
28406
  *
28327
28407
  *
@@ -29064,20 +29144,25 @@ declare namespace sap {
29064
29144
  *
29065
29145
  * Sets a new value for property {@link #getCustomizeConfig customizeConfig}.
29066
29146
  *
29067
- * Provides customization to the columns/cell templates generated by the `SmartTable` control. Examples
29068
- * for the `customizeConfig` property to change the `textInEditModeSource` for the default `smartField`
29147
+ * Provides customization to the columns/cell templates generated by the `SmartTable` control.
29148
+ *
29149
+ * List of supported settings for the `customizeConfig` property:
29150
+ * - `textInEditModeSource`: For more information, see {@link sap.ui.comp.smartfield.SmartField#setTextInEditModeSource}
29069
29151
  *
29152
+ * - `insertIgnoreRestrictions`: The `customData` setting for the `sap.ui.comp.smartfield.SmartField`
29153
+ * control. Supported as of version 1.103. Examples for the `customizeConfig` property to
29154
+ * change the `textInEditModeSource` for the default `smartField`
29070
29155
  * ```javascript
29071
29156
  *
29072
29157
  * <!-- Sets the `textInEditModeSource` property of all the `SmartField` controls to ValueList -->
29073
- * <SmartTable customizeConfig='\{"textInEditModeSource": {"*": "ValueList"}}' >
29158
+ * <SmartTable customizeConfig="{'textInEditModeSource': {'*': 'ValueList'}}" >
29074
29159
  * ```
29075
29160
  *
29076
29161
  * ```javascript
29077
29162
  *
29078
29163
  * <!-- Sets the `textInEditModeSource` property of the `smartField` with path "Bukrs" to `NavigationProperty` and
29079
29164
  * others to ValueList -->
29080
- * <SmartTable customizeConfig='\{"textInEditModeSource": {"*": "ValueList","Bukrs":"NavigationProperty"}}' >
29165
+ * <SmartTable customizeConfig="{'textInEditModeSource': {'*': 'ValueList','Bukrs':'NavigationProperty'}}" >
29081
29166
  * ```
29082
29167
  *
29083
29168
  *
@@ -35160,7 +35245,7 @@ declare namespace sap {
35160
35245
  * The item to remove or its index or id
35161
35246
  */
35162
35247
  vItem: int | string | sap.ui.core.Item
35163
- ): sap.ui.core.Item;
35248
+ ): sap.ui.core.Item | null;
35164
35249
  /**
35165
35250
  * @SINCE 1.26.0
35166
35251
  *
@@ -35173,7 +35258,7 @@ declare namespace sap {
35173
35258
  * The variantItem to remove or its index or id
35174
35259
  */
35175
35260
  vVariantItem: int | string | sap.ui.comp.variants.VariantItem
35176
- ): sap.ui.comp.variants.VariantItem;
35261
+ ): sap.ui.comp.variants.VariantItem | null;
35177
35262
  /**
35178
35263
  * @SINCE 1.48.0
35179
35264
  *