@sapui5/ts-types 1.97.2 → 1.100.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/index.d.ts +0 -4
  3. package/types/sap.apf.d.ts +2 -2
  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 +2 -240
  8. package/types/sap.f.d.ts +263 -636
  9. package/types/sap.fe.common.d.ts +2 -6
  10. package/types/sap.fe.core.d.ts +399 -305
  11. package/types/sap.fe.macros.d.ts +567 -36
  12. package/types/sap.fe.navigation.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +5 -1
  14. package/types/sap.fe.test.d.ts +19 -14
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +827 -12
  17. package/types/sap.landvisz.d.ts +49 -1
  18. package/types/sap.m.d.ts +4111 -397
  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 +38 -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.grid.d.ts +3 -1
  25. package/types/sap.suite.ui.commons.d.ts +1 -1
  26. package/types/sap.suite.ui.generic.template.d.ts +29 -7
  27. package/types/sap.suite.ui.microchart.d.ts +5 -5
  28. package/types/sap.tnt.d.ts +31 -1
  29. package/types/sap.ui.codeeditor.d.ts +1 -1
  30. package/types/sap.ui.commons.d.ts +1 -1
  31. package/types/sap.ui.comp.d.ts +313 -46
  32. package/types/sap.ui.core.d.ts +2094 -799
  33. package/types/sap.ui.dt.d.ts +1 -1
  34. package/types/sap.ui.export.d.ts +3 -3
  35. package/types/sap.ui.fl.d.ts +17 -5
  36. package/types/sap.ui.generic.app.d.ts +4 -3
  37. package/types/sap.ui.generic.template.d.ts +1 -1
  38. package/types/sap.ui.integration.d.ts +49 -13
  39. package/types/sap.ui.layout.d.ts +7 -4
  40. package/types/sap.ui.mdc.d.ts +24 -6
  41. package/types/sap.ui.richtexteditor.d.ts +7 -1
  42. package/types/sap.ui.rta.d.ts +1 -1
  43. package/types/sap.ui.suite.d.ts +1 -1
  44. package/types/sap.ui.support.d.ts +6 -12
  45. package/types/sap.ui.table.d.ts +24 -2
  46. package/types/sap.ui.testrecorder.d.ts +1 -1
  47. package/types/sap.ui.unified.d.ts +1 -1
  48. package/types/sap.ui.ux3.d.ts +1 -1
  49. package/types/sap.ui.vbm.d.ts +1 -3
  50. package/types/sap.ui.vk.d.ts +124 -31
  51. package/types/sap.ui.vtm.d.ts +4 -4
  52. package/types/sap.uiext.inbox.d.ts +2 -2
  53. package/types/sap.ushell.d.ts +4999 -5059
  54. package/types/sap.ushell_abap.d.ts +1 -495
  55. package/types/sap.uxap.d.ts +1 -1
  56. package/types/sap.viz.d.ts +105 -231
  57. package/types/sap.webanalytics.core.d.ts +1 -1
  58. package/types/sap.zen.commons.d.ts +1 -1
  59. package/types/sap.zen.crosstab.d.ts +1 -1
  60. package/types/sap.zen.dsh.d.ts +2 -6
  61. package/types/sap.fe.placeholder.d.ts +0 -3
  62. package/types/sap.fe.plugins.d.ts +0 -3
  63. package/types/sap.fe.semantics.d.ts +0 -3
  64. package/types/sap.fe.tools.d.ts +0 -3
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.97.1
1
+ // For Library Version: 1.100.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1728,7 +1728,11 @@ declare namespace sap {
1728
1728
  /**
1729
1729
  * the control's name
1730
1730
  */
1731
- sName: string
1731
+ sName: string,
1732
+ /**
1733
+ * the filter's group name
1734
+ */
1735
+ sGroupName: string
1732
1736
  ): sap.ui.comp.filterbar.FilterGroupItem;
1733
1737
  /**
1734
1738
  * Retrieves the associated label based on the name and group name.
@@ -3731,6 +3735,16 @@ declare namespace sap {
3731
3735
  | Function
3732
3736
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
3733
3737
 
3738
+ /**
3739
+ * @SINCE 1.97
3740
+ *
3741
+ * Determines if the `navigationTargetsObtained` event handling of the `SmartLink` should be replaced when
3742
+ * this `SemanticObjectController` is set as `SemanticObjectController` on the SmartLink.
3743
+ */
3744
+ replaceSmartLinkNavigationTargetsObtained?:
3745
+ | boolean
3746
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
3747
+
3734
3748
  /**
3735
3749
  * @SINCE 1.28.0
3736
3750
  *
@@ -6216,6 +6230,17 @@ declare namespace sap {
6216
6230
  * Default value is `false`.
6217
6231
  */
6218
6232
  getPrefetchNavigationTargets(): boolean;
6233
+ /**
6234
+ * @SINCE 1.97
6235
+ *
6236
+ * Gets current value of property {@link #getReplaceSmartLinkNavigationTargetsObtained replaceSmartLinkNavigationTargetsObtained}.
6237
+ *
6238
+ * Determines if the `navigationTargetsObtained` event handling of the `SmartLink` should be replaced when
6239
+ * this `SemanticObjectController` is set as `SemanticObjectController` on the SmartLink.
6240
+ *
6241
+ * Default value is `false`.
6242
+ */
6243
+ getReplaceSmartLinkNavigationTargetsObtained(): boolean;
6219
6244
  /**
6220
6245
  * @deprecated (since 1.42.0) - The method `hasSemanticObjectLinks` is obsolete because it depends on the
6221
6246
  * property `prefetchNavigationTargets` which has been deprecated.
@@ -6428,6 +6453,24 @@ declare namespace sap {
6428
6453
  */
6429
6454
  bPrefetchNavigationTargets?: boolean
6430
6455
  ): this;
6456
+ /**
6457
+ * @SINCE 1.97
6458
+ *
6459
+ * Sets a new value for property {@link #getReplaceSmartLinkNavigationTargetsObtained replaceSmartLinkNavigationTargetsObtained}.
6460
+ *
6461
+ * Determines if the `navigationTargetsObtained` event handling of the `SmartLink` should be replaced when
6462
+ * this `SemanticObjectController` is set as `SemanticObjectController` on the SmartLink.
6463
+ *
6464
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6465
+ *
6466
+ * Default value is `false`.
6467
+ */
6468
+ setReplaceSmartLinkNavigationTargetsObtained(
6469
+ /**
6470
+ * New value for property `replaceSmartLinkNavigationTargetsObtained`
6471
+ */
6472
+ bReplaceSmartLinkNavigationTargetsObtained?: boolean
6473
+ ): this;
6431
6474
  /**
6432
6475
  * Removes the given control from the SemanticObjectController and unregisters all relevant events.
6433
6476
  */
@@ -10221,7 +10264,8 @@ declare namespace sap {
10221
10264
  /**
10222
10265
  * @SINCE 1.38.3
10223
10266
  *
10224
- * Determines if the mandatory check happens on the client side `true` or on the server side `false`.
10267
+ * Determines if the mandatory check of whether the field has a value happens on the client side - `true`
10268
+ * or on the server side - `false`.
10225
10269
  *
10226
10270
  * **Note:** If the {@link sap.ui.comp.smartfield.SmartField#value} property of the `SmartField` control
10227
10271
  * is bound to an Entity Data Model (EDM) property annotated as `Nullable="false"`, the mandatory validation
@@ -11595,10 +11639,6 @@ declare namespace sap {
11595
11639
  * Checks the validity of the values for the given control.
11596
11640
  */
11597
11641
  checkUnitValidity(
11598
- /**
11599
- * The control to be checked
11600
- */
11601
- oControl: sap.ui.core.Control,
11602
11642
  /**
11603
11643
  * Additional settings
11604
11644
  */
@@ -11645,7 +11685,19 @@ declare namespace sap {
11645
11685
  * two-way data binding scenarios, this method may be used to check whether a value is valid before submitting
11646
11686
  * it to the back-end system.
11647
11687
  */
11648
- checkValuesValidity(): Promise<sap.ui.comp.smartfield.checkValuesValidityInfo>;
11688
+ checkValuesValidity(
11689
+ /**
11690
+ * Settings
11691
+ */
11692
+ oSettings?: {
11693
+ /**
11694
+ * Indicates whether client error checks are performed for the current value regardless of the current error
11695
+ * state of the control. If the `handleSuccess` setting is set to `false`, the text input field will not
11696
+ * fire a {@link sap.ui.base.EventProvider#event:validationSuccess} if its validation passes.
11697
+ */
11698
+ handleSuccess?: boolean;
11699
+ }
11700
+ ): Promise<sap.ui.comp.smartfield.checkValuesValidityInfo>;
11649
11701
  /**
11650
11702
  * Destroys the configuration in the aggregation {@link #getConfiguration configuration}.
11651
11703
  */
@@ -11998,7 +12050,8 @@ declare namespace sap {
11998
12050
  *
11999
12051
  * Gets current value of property {@link #getClientSideMandatoryCheck clientSideMandatoryCheck}.
12000
12052
  *
12001
- * Determines if the mandatory check happens on the client side `true` or on the server side `false`.
12053
+ * Determines if the mandatory check of whether the field has a value happens on the client side - `true`
12054
+ * or on the server side - `false`.
12002
12055
  *
12003
12056
  * **Note:** If the {@link sap.ui.comp.smartfield.SmartField#value} property of the `SmartField` control
12004
12057
  * is bound to an Entity Data Model (EDM) property annotated as `Nullable="false"`, the mandatory validation
@@ -12642,7 +12695,8 @@ declare namespace sap {
12642
12695
  *
12643
12696
  * Sets a new value for property {@link #getClientSideMandatoryCheck clientSideMandatoryCheck}.
12644
12697
  *
12645
- * Determines if the mandatory check happens on the client side `true` or on the server side `false`.
12698
+ * Determines if the mandatory check of whether the field has a value happens on the client side - `true`
12699
+ * or on the server side - `false`.
12646
12700
  *
12647
12701
  * **Note:** If the {@link sap.ui.comp.smartfield.SmartField#value} property of the `SmartField` control
12648
12702
  * is bound to an Entity Data Model (EDM) property annotated as `Nullable="false"`, the mandatory validation
@@ -13762,6 +13816,16 @@ declare namespace sap {
13762
13816
  | boolean
13763
13817
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
13764
13818
 
13819
+ /**
13820
+ * @SINCE 1.99
13821
+ *
13822
+ * Sets default operation for Condition Panel of the Value Help dialog. In case the newly set default operation
13823
+ * is not valid for the filter's EDM data type, then it is ignored.
13824
+ */
13825
+ conditionPanelDefaultOperation?:
13826
+ | sap.ui.comp.valuehelpdialog.ValueHelpRangeOperation
13827
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
13828
+
13765
13829
  /**
13766
13830
  * Default value for a filter field. The aggregation expects {@link sap.ui.comp.smartfilterbar.SelectOption|SelectOption}
13767
13831
  * instances, where the values' format (properties `low` and `high`) match the type of the referneced property
@@ -14032,6 +14096,9 @@ declare namespace sap {
14032
14096
  pendingChange?: (oEvent: sap.ui.base.Event) => void;
14033
14097
  }
14034
14098
 
14099
+ interface $SmartFilterBarFilterGroupItemSettings
14100
+ extends sap.ui.comp.filterbar.$FilterGroupItemSettings {}
14101
+
14035
14102
  /**
14036
14103
  * ControlConfiguration can be used to add additional configuration for filter fields in the SmartFilterBar
14037
14104
  * control, in order to overwrite the default settings from the OData metadata. For instance, it is possible
@@ -14186,6 +14253,15 @@ declare namespace sap {
14186
14253
  propertyName?: string;
14187
14254
  }
14188
14255
  ): this;
14256
+ /**
14257
+ * @SINCE 1.99
14258
+ *
14259
+ * Gets current value of property {@link #getConditionPanelDefaultOperation conditionPanelDefaultOperation}.
14260
+ *
14261
+ * Sets default operation for Condition Panel of the Value Help dialog. In case the newly set default operation
14262
+ * is not valid for the filter's EDM data type, then it is ignored.
14263
+ */
14264
+ getConditionPanelDefaultOperation(): sap.ui.comp.valuehelpdialog.ValueHelpRangeOperation;
14189
14265
  /**
14190
14266
  * Gets current value of property {@link #getConditionType conditionType}.
14191
14267
  *
@@ -14408,6 +14484,22 @@ declare namespace sap {
14408
14484
  | string
14409
14485
  | sap.ui.comp.smartfilterbar.SelectOption
14410
14486
  ): sap.ui.comp.smartfilterbar.SelectOption;
14487
+ /**
14488
+ * @SINCE 1.99
14489
+ *
14490
+ * Sets a new value for property {@link #getConditionPanelDefaultOperation conditionPanelDefaultOperation}.
14491
+ *
14492
+ * Sets default operation for Condition Panel of the Value Help dialog. In case the newly set default operation
14493
+ * is not valid for the filter's EDM data type, then it is ignored.
14494
+ *
14495
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
14496
+ */
14497
+ setConditionPanelDefaultOperation(
14498
+ /**
14499
+ * New value for property `conditionPanelDefaultOperation`
14500
+ */
14501
+ sConditionPanelDefaultOperation?: sap.ui.comp.valuehelpdialog.ValueHelpRangeOperation
14502
+ ): this;
14411
14503
  /**
14412
14504
  * Sets a new value for property {@link #getConditionType conditionType}.
14413
14505
  *
@@ -15050,7 +15142,7 @@ declare namespace sap {
15050
15142
  * determined. When you use control configurations and group configurations it is possible to configure
15051
15143
  * the FilterBar and adapt it according to your needs.
15052
15144
  * **Note:** Most of the attributes/properties are not dynamic and cannot be changed once the control has
15053
- * been initialized.
15145
+ * been initialized. **Note:** All internally created instances are considered as private.
15054
15146
  *
15055
15147
  * **Important:** Keep in mind that `SmartFilterBar`, like all SAPUI5 smart controls, retrieves and analyzes
15056
15148
  * the metadata and annotations of OData services. **The OData metadata is its primary API. These OData
@@ -15240,6 +15332,36 @@ declare namespace sap {
15240
15332
  */
15241
15333
  oListener?: object
15242
15334
  ): this;
15335
+ /**
15336
+ * @deprecated (since 1.99) - Use {@link sap.ui.core.Core.byId} instead.
15337
+ *
15338
+ * Retrieves the control associated to the filter.
15339
+ */
15340
+ determineControlByFilterItem(
15341
+ /**
15342
+ * From the aggregations
15343
+ */
15344
+ oFilterItem: /* was: sap.ui.comp.smartfilterbar.FilterItem */ any,
15345
+ /**
15346
+ * check also analytics parameter
15347
+ */
15348
+ bConsiderParameters: boolean
15349
+ ): sap.ui.core.Control;
15350
+ /**
15351
+ * @deprecated (since 1.99) - Use {@link sap.ui.core.Core.byId} instead.
15352
+ *
15353
+ * Retrieves the control based on the name and group name.
15354
+ */
15355
+ determineControlByName(
15356
+ /**
15357
+ * Name of the filter.
15358
+ */
15359
+ sName: string,
15360
+ /**
15361
+ * Group name of the filter; `null` for filter that belongs to basic group.
15362
+ */
15363
+ sGroupName?: string
15364
+ ): sap.ui.core.Control;
15243
15365
  /**
15244
15366
  * Ensures the associated ValueHelpProvider is loaded.
15245
15367
  */
@@ -15305,6 +15427,9 @@ declare namespace sap {
15305
15427
  */
15306
15428
  getConsiderSelectionVariants(): boolean;
15307
15429
  /**
15430
+ * @deprecated (since 1.99) - Use {@link sap.ui.core.Core.byId} for custom controls provided by you. To
15431
+ * modify data use {@link sap.ui.comp.smartfilterbar.SmartFilterBar#setFilterData} or {@link sap.ui.comp.filterbar.FilterBar#setUiState}.
15432
+ *
15308
15433
  * Returns the control (if any) with the specified key (Property name in OData entity). Use just the property
15309
15434
  * name as the key when getting a control from the basic area. Example: "CompanyCode" & Use "EntityName/GroupName.FieldName"
15310
15435
  * format to get controls from groups. Example:"Account.CompanyCode"
@@ -15668,7 +15793,7 @@ declare namespace sap {
15668
15793
  * Indicates if the search should be triggered synchronously
15669
15794
  */
15670
15795
  bSync?: boolean
15671
- ): boolean | undefined;
15796
+ ): boolean;
15672
15797
  /**
15673
15798
  * Sets a new value for property {@link #getBasicSearchFieldName basicSearchFieldName}.
15674
15799
  *
@@ -15959,6 +16084,92 @@ declare namespace sap {
15959
16084
  */
15960
16085
  verifySearchAllowed(): object;
15961
16086
  }
16087
+ /**
16088
+ * Represents a filter belonging to a group other than basic.
16089
+ */
16090
+ class SmartFilterBarFilterGroupItem extends sap.ui.comp.filterbar
16091
+ .FilterGroupItem {
16092
+ /**
16093
+ * Constructor for a new FilterBar/FilterGroupItem.
16094
+ *
16095
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
16096
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16097
+ * of the syntax of the settings object.
16098
+ *
16099
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.comp.filterbar.FilterGroupItem#constructor
16100
+ * sap.ui.comp.filterbar.FilterGroupItem} can be used.
16101
+ */
16102
+ constructor(
16103
+ /**
16104
+ * Initial settings for the new control
16105
+ */
16106
+ mSettings?: sap.ui.comp.smartfilterbar.$SmartFilterBarFilterGroupItemSettings
16107
+ );
16108
+ /**
16109
+ * Constructor for a new FilterBar/FilterGroupItem.
16110
+ *
16111
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
16112
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16113
+ * of the syntax of the settings object.
16114
+ *
16115
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.comp.filterbar.FilterGroupItem#constructor
16116
+ * sap.ui.comp.filterbar.FilterGroupItem} can be used.
16117
+ */
16118
+ constructor(
16119
+ /**
16120
+ * ID for the new control, generated automatically if no ID is given
16121
+ */
16122
+ sId?: string,
16123
+ /**
16124
+ * Initial settings for the new control
16125
+ */
16126
+ mSettings?: sap.ui.comp.smartfilterbar.$SmartFilterBarFilterGroupItemSettings
16127
+ );
16128
+
16129
+ /**
16130
+ * Creates a new subclass of class sap.ui.comp.smartfilterbar.SmartFilterBarFilterGroupItem with name `sClassName`
16131
+ * and enriches it with the information contained in `oClassInfo`.
16132
+ *
16133
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.comp.filterbar.FilterGroupItem.extend}.
16134
+ */
16135
+ static extend<T extends Record<string, unknown>>(
16136
+ /**
16137
+ * Name of the class being created
16138
+ */
16139
+ sClassName: string,
16140
+ /**
16141
+ * Object literal with information about the class
16142
+ */
16143
+ oClassInfo?: sap.ClassInfo<
16144
+ T,
16145
+ sap.ui.comp.smartfilterbar.SmartFilterBarFilterGroupItem
16146
+ >,
16147
+ /**
16148
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16149
+ * used by this class
16150
+ */
16151
+ FNMetaImpl?: Function
16152
+ ): Function;
16153
+ /**
16154
+ * Returns a metadata object for class sap.ui.comp.smartfilterbar.SmartFilterBarFilterGroupItem.
16155
+ */
16156
+ static getMetadata(): sap.ui.core.ElementMetadata;
16157
+ /**
16158
+ * @deprecated - Deprecated as of version 1.99. Use {@link sap.ui.core.Core.byId} instead!
16159
+ *
16160
+ * Returns instance of the control
16161
+ */
16162
+ getControl(): sap.ui.core.Control | null;
16163
+ /**
16164
+ * @deprecated - Deprecated as of version 1.99.
16165
+ */
16166
+ setControl(
16167
+ /**
16168
+ * associated with the filter.
16169
+ */
16170
+ oControl: sap.ui.core.Control
16171
+ ): void;
16172
+ }
15962
16173
  /**
15963
16174
  * The available control types to configure the internal control selection of a SmartFilterBar control.
15964
16175
  */
@@ -23221,6 +23432,7 @@ declare namespace sap {
23221
23432
 
23222
23433
  /**
23223
23434
  * @SINCE 1.26.0
23435
+ * @deprecated (since 1.100) - replaced by `enableExport` property.
23224
23436
  *
23225
23437
  * Can be set to true or false depending on whether you want to export data to a spreadsheet application,
23226
23438
  * for example Microsoft Excel.
@@ -23235,6 +23447,17 @@ declare namespace sap {
23235
23447
  | boolean
23236
23448
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
23237
23449
 
23450
+ /**
23451
+ * @SINCE 1.100.0
23452
+ *
23453
+ * Enables the export of data from the `SmartTable` control to another file, for example, a spreadsheet.
23454
+ * If `exportType` is `sap.ui.comp.smarttable.ExportType.GW`, any `$expand` parameters are removed when
23455
+ * sending the request to generate the file.
23456
+ */
23457
+ enableExport?:
23458
+ | boolean
23459
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
23460
+
23238
23461
  /**
23239
23462
  * @SINCE 1.50.0
23240
23463
  *
@@ -25285,6 +25508,18 @@ declare namespace sap {
25285
25508
  * Default value is `true`.
25286
25509
  */
25287
25510
  getEnableCustomFilter(): boolean;
25511
+ /**
25512
+ * @SINCE 1.100.0
25513
+ *
25514
+ * Gets current value of property {@link #getEnableExport enableExport}.
25515
+ *
25516
+ * Enables the export of data from the `SmartTable` control to another file, for example, a spreadsheet.
25517
+ * If `exportType` is `sap.ui.comp.smarttable.ExportType.GW`, any `$expand` parameters are removed when
25518
+ * sending the request to generate the file.
25519
+ *
25520
+ * Default value is `true`.
25521
+ */
25522
+ getEnableExport(): boolean;
25288
25523
  /**
25289
25524
  * @SINCE 1.96
25290
25525
  *
@@ -25580,9 +25815,10 @@ declare namespace sap {
25580
25815
  */
25581
25816
  getSmartVariant(): sap.ui.core.ID;
25582
25817
  /**
25583
- * returns the internally used table object
25818
+ * Returns the internally used table control. Depending on the concrete scenario, the return type is a `sap.m.Table`,
25819
+ * `sap.ui.table.Table`, `sap.ui.table.TreeTable`, or `sap.ui.table.AnalyticalTable`.
25584
25820
  */
25585
- getTable(): object;
25821
+ getTable(): sap.ui.core.Control;
25586
25822
  /**
25587
25823
  * @SINCE 1.28.0
25588
25824
  *
@@ -25625,19 +25861,21 @@ declare namespace sap {
25625
25861
  * Returns the current UI state of the `SmartTable` control.
25626
25862
  * **Note:**
25627
25863
  * The following restrictions apply:
25628
- * - Visualizations can only be used to modify the visibility and order of columns, the template or importance
25629
- * of the column cannot be changed
25864
+ * - Visualizations can only be used to modify the visibility, order, and width of columns, the template
25865
+ * or importance of the column cannot be changed
25630
25866
  * - MaxItems is not supported
25631
25867
  * - RequestAtLeast contains values that are combined from both the `SmartTable` control property and
25632
25868
  * PresentationVariant annotation, but when it is updated it only affects the internal array. The property
25633
25869
  * in the `SmartTable` stays the same as before
25634
25870
  * - Changes to RequestAtLeast alone will not lead to a new data request
25635
25871
  * - RequestAtLeast is not supported in `AnalyticalTable` scenario
25872
+ * - Support for column width changes is enabled as of version 1.98.
25636
25873
  * - Any other restrictions, like the ones mentioned in {@link sap.ui.comp.state.UIState}, also apply
25637
25874
  */
25638
25875
  getUiState(): sap.ui.comp.state.UIState;
25639
25876
  /**
25640
25877
  * @SINCE 1.26.0
25878
+ * @deprecated (since 1.100) - replaced by `enableExport` property.
25641
25879
  *
25642
25880
  * Gets current value of property {@link #getUseExportToExcel useExportToExcel}.
25643
25881
  *
@@ -25993,6 +26231,13 @@ declare namespace sap {
25993
26231
  */
25994
26232
  bEnableCustomFilter?: boolean
25995
26233
  ): this;
26234
+ /**
26235
+ * @SINCE 1.100.0
26236
+ *
26237
+ * Sets the `exportEnable` property that enables the export of data. The export type can be defined using
26238
+ * the `exportType` property.
26239
+ */
26240
+ setEnableExport(): void;
25996
26241
  /**
25997
26242
  * Sets a new value for the `enablePaste` property.
25998
26243
  */
@@ -26445,14 +26690,15 @@ declare namespace sap {
26445
26690
  * Replaces the current UI state of the `SmartTable` control with the data represented in {@link sap.ui.comp.state.UIState}.
26446
26691
  * **Note:**
26447
26692
  * The following restrictions apply:
26448
- * - Visualizations can only be used to modify the visibility and order of columns, the template or importance
26449
- * of the column cannot be changed
26693
+ * - Visualizations can only be used to modify the visibility, order, and width of columns, the template
26694
+ * or importance of the column cannot be changed
26450
26695
  * - MaxItems is not supported
26451
26696
  * - RequestAtLeast contains values that are combined from both the `SmartTable` control property and
26452
26697
  * PresentationVariant annotation, but when it is updated it only affects the internal array. The property
26453
26698
  * in the `SmartTable` stays the same as before
26454
26699
  * - Changes to RequestAtLeast alone will not lead to a new data request
26455
26700
  * - RequestAtLeast is not supported in `AnalyticalTable` scenario
26701
+ * - Support for column width changes is enabled as of version 1.98.
26456
26702
  * - Any other restrictions, like the ones mentioned in {@link sap.ui.comp.state.UIState}, also apply
26457
26703
  */
26458
26704
  setUiState(
@@ -26462,29 +26708,12 @@ declare namespace sap {
26462
26708
  oUIState: sap.ui.comp.state.UIState
26463
26709
  ): void;
26464
26710
  /**
26465
- * @SINCE 1.26.0
26466
- *
26467
- * Sets a new value for property {@link #getUseExportToExcel useExportToExcel}.
26711
+ * @deprecated (since 1.100) - replaced by {@link #setEnableExport}.
26468
26712
  *
26469
- * Can be set to true or false depending on whether you want to export data to a spreadsheet application,
26470
- * for example Microsoft Excel.
26471
- * Note:
26472
- * If `exportType` is `sap.ui.comp.smarttable.ExportType.GW`, any $expand parameters are removed when sending
26473
- * the request to generate the spreadsheet.
26474
- * As of UI5 version 1.56: If `exportType` is `sap.ui.comp.smarttable.ExportType.UI5Client` and `TreeTable`
26475
- * is used, the `worksheet.hierarchyLevel` property (see {@link sap.ui.export.Spreadsheet}) is filled from
26476
- * the binding, if the relevant information is available there for exporting hierarchical data in the spreadsheet.
26477
- *
26478
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
26479
- *
26480
- * Default value is `true`.
26713
+ * Sets the `useExportToExcel` property which enables export of data. The export type can be defined using
26714
+ * `exportType` property.
26481
26715
  */
26482
- setUseExportToExcel(
26483
- /**
26484
- * New value for property `useExportToExcel`
26485
- */
26486
- bUseExportToExcel?: boolean
26487
- ): this;
26716
+ setUseExportToExcel(): void;
26488
26717
  /**
26489
26718
  * @SINCE 1.70
26490
26719
  *
@@ -28071,10 +28300,10 @@ declare namespace sap {
28071
28300
  /**
28072
28301
  * Filter names to ignore
28073
28302
  */
28074
- aIgnoreSelOptionName: any[]
28303
+ aIgnoreSelOptionNames: any[]
28075
28304
  ): object;
28076
28305
  /**
28077
- * Enriches the internal filter bar value format with the information from the value state.
28306
+ * Enriches the internal filter bar value format with the semantic date information.
28078
28307
  */
28079
28308
  static enrichWithSemanticDates(
28080
28309
  /**
@@ -28082,9 +28311,9 @@ declare namespace sap {
28082
28311
  */
28083
28312
  sPayload: string,
28084
28313
  /**
28085
- * the value texts format containing the eventual descriptions.
28314
+ * Semantic date information
28086
28315
  */
28087
- oValueTexts: object
28316
+ oSemanticDates: object
28088
28317
  ): string;
28089
28318
  /**
28090
28319
  * Enriches the internal filter bar value format with the information from the value state.
@@ -28491,6 +28720,16 @@ declare namespace sap {
28491
28720
  */
28492
28721
  filterMode?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
28493
28722
 
28723
+ /**
28724
+ * @SINCE 1.99
28725
+ *
28726
+ * Sets default operation for Condition Panel of the value help dialog. In case the newly set default operation
28727
+ * is not valid for the filter's EDM data type, then it is ignored. expected sap.ui.comp.valuehelpdialog.ValueHelpRangeOperation
28728
+ */
28729
+ conditionPanelDefaultOperation?:
28730
+ | string
28731
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
28732
+
28494
28733
  /**
28495
28734
  * Allows you to add a {@link sap.ui.comp.filterbar.FilterBar FilterBar} or {@link sap.ui.comp.smartfilterbar.SmartFilterBar
28496
28735
  * SmartFilterBar} control to the value help dialog.
@@ -29052,6 +29291,15 @@ declare namespace sap {
29052
29291
  * Default value is `empty string`.
29053
29292
  */
29054
29293
  getBasicSearchText(): string;
29294
+ /**
29295
+ * @SINCE 1.99
29296
+ *
29297
+ * Gets current value of property {@link #getConditionPanelDefaultOperation conditionPanelDefaultOperation}.
29298
+ *
29299
+ * Sets default operation for Condition Panel of the value help dialog. In case the newly set default operation
29300
+ * is not valid for the filter's EDM data type, then it is ignored. expected sap.ui.comp.valuehelpdialog.ValueHelpRangeOperation
29301
+ */
29302
+ getConditionPanelDefaultOperation(): string;
29055
29303
  /**
29056
29304
  * @SINCE 1.24
29057
29305
  *
@@ -29202,6 +29450,22 @@ declare namespace sap {
29202
29450
  */
29203
29451
  sBasicSearchText?: string
29204
29452
  ): this;
29453
+ /**
29454
+ * @SINCE 1.99
29455
+ *
29456
+ * Sets a new value for property {@link #getConditionPanelDefaultOperation conditionPanelDefaultOperation}.
29457
+ *
29458
+ * Sets default operation for Condition Panel of the value help dialog. In case the newly set default operation
29459
+ * is not valid for the filter's EDM data type, then it is ignored. expected sap.ui.comp.valuehelpdialog.ValueHelpRangeOperation
29460
+ *
29461
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
29462
+ */
29463
+ setConditionPanelDefaultOperation(
29464
+ /**
29465
+ * New value for property `conditionPanelDefaultOperation`
29466
+ */
29467
+ sConditionPanelDefaultOperation?: string
29468
+ ): this;
29205
29469
  /**
29206
29470
  * @SINCE 1.24
29207
29471
  *
@@ -30883,9 +31147,10 @@ declare namespace sap {
30883
31147
  */
30884
31148
  mParameters?: {
30885
31149
  /**
30886
- * List of changed variant keys
31150
+ * List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
31151
+ * of the variant
30887
31152
  */
30888
- renamed?: string[];
31153
+ renamed?: object[];
30889
31154
  /**
30890
31155
  * List of deleted variant keys
30891
31156
  */
@@ -30897,7 +31162,7 @@ declare namespace sap {
30897
31162
  /**
30898
31163
  * The default variant key
30899
31164
  */
30900
- def?: boolean;
31165
+ def?: string;
30901
31166
  }
30902
31167
  ): this;
30903
31168
  /**
@@ -31549,6 +31814,8 @@ declare namespace sap {
31549
31814
 
31550
31815
  "sap/ui/comp/smartfilterbar/SmartFilterBar": undefined;
31551
31816
 
31817
+ "sap/ui/comp/smartfilterbar/SmartFilterBarFilterGroupItem": undefined;
31818
+
31552
31819
  "sap/ui/comp/smartform/ColumnLayout": undefined;
31553
31820
 
31554
31821
  "sap/ui/comp/smartform/Group": undefined;