@openui5/ts-types 1.120.1 → 1.120.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.120.1",
3
+ "version": "1.120.3",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * Copyright 2009-2023 SAP SE or an SAP affiliate company.
3
+ * Copyright 2009-2024 SAP SE or an SAP affiliate company.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.1
1
+ // For Library Version: 1.120.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.1
1
+ // For Library Version: 1.120.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -2149,7 +2149,7 @@ declare namespace sap {
2149
2149
  * For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
2150
2150
  * function gets called with the row instance instead of the binding context.
2151
2151
  * The callback function must return the cell data that is then stringified and copied to the clipboard.
2152
- * If an array is returned from the callback function, then each array values will be copied as a separate
2152
+ * If an array is returned from the callback function, then each array value will be copied as a separate
2153
2153
  * cell into the clipboard.
2154
2154
  * If a column should not be copied to the clipboard, then the callback function must return `undefined`
2155
2155
  * or `null` for each cell of the same column.
@@ -2852,6 +2852,9 @@ declare namespace sap {
2852
2852
  * Creates and returns a Copy button that can be used to trigger a copy action, for example, from the table
2853
2853
  * toolbar.
2854
2854
  *
2855
+ * **Note:** The `visible` and `enabled` properties of the Copy button must be managed through this plugin's
2856
+ * own `visible` and `enabled` properties.
2857
+ *
2855
2858
  * @returns The button instance
2856
2859
  */
2857
2860
  getCopyButton(
@@ -2916,7 +2919,7 @@ declare namespace sap {
2916
2919
  * For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
2917
2920
  * function gets called with the row instance instead of the binding context.
2918
2921
  * The callback function must return the cell data that is then stringified and copied to the clipboard.
2919
- * If an array is returned from the callback function, then each array values will be copied as a separate
2922
+ * If an array is returned from the callback function, then each array value will be copied as a separate
2920
2923
  * cell into the clipboard.
2921
2924
  * If a column should not be copied to the clipboard, then the callback function must return `undefined`
2922
2925
  * or `null` for each cell of the same column.
@@ -3024,7 +3027,7 @@ declare namespace sap {
3024
3027
  * For the `sap.m.Table` control, if the `items` aggregation of the table is not bound then the callback
3025
3028
  * function gets called with the row instance instead of the binding context.
3026
3029
  * The callback function must return the cell data that is then stringified and copied to the clipboard.
3027
- * If an array is returned from the callback function, then each array values will be copied as a separate
3030
+ * If an array is returned from the callback function, then each array value will be copied as a separate
3028
3031
  * cell into the clipboard.
3029
3032
  * If a column should not be copied to the clipboard, then the callback function must return `undefined`
3030
3033
  * or `null` for each cell of the same column.
@@ -27810,7 +27813,8 @@ declare namespace sap {
27810
27813
  * @since 1.46
27811
27814
  *
27812
27815
  * Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
27813
- * the functionality will be disabled above 200 items.
27816
+ * the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
27817
+ * work only for cells containing sap.m.Label or sap.m.Text controls.
27814
27818
  */
27815
27819
  enableSuggestionsHighlighting?:
27816
27820
  | boolean
@@ -44013,6 +44017,8 @@ declare namespace sap {
44013
44017
 
44014
44018
  /**
44015
44019
  * @since 1.21.2
44020
+ * @deprecated (since 1.120) - In case of SAPUI5, see demokit sample 'Smart Field with ValueList Annotation'.
44021
+ * In case of OpenUI5, see demokit sample 'Input - Suggestions - Dynamic'.
44016
44022
  *
44017
44023
  * Suggestion helper for `sap.m.Input` fields when used with an OData model.
44018
44024
  *
@@ -53795,7 +53801,12 @@ declare namespace sap {
53795
53801
  *
53796
53802
  * @returns jQuery object
53797
53803
  */
53798
- getTabbables(): jQuery;
53804
+ getTabbables(
53805
+ /**
53806
+ * Whether only tabbables of data cells
53807
+ */
53808
+ bContentOnly?: undefined
53809
+ ): jQuery;
53799
53810
  /**
53800
53811
  * @since 1.20
53801
53812
  *
@@ -73886,7 +73897,8 @@ declare namespace sap {
73886
73897
  * Gets current value of property {@link #getEnableSuggestionsHighlighting enableSuggestionsHighlighting}.
73887
73898
  *
73888
73899
  * Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
73889
- * the functionality will be disabled above 200 items.
73900
+ * the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
73901
+ * work only for cells containing sap.m.Label or sap.m.Text controls.
73890
73902
  *
73891
73903
  * Default value is `true`.
73892
73904
  *
@@ -74587,7 +74599,8 @@ declare namespace sap {
74587
74599
  * Sets a new value for property {@link #getEnableSuggestionsHighlighting enableSuggestionsHighlighting}.
74588
74600
  *
74589
74601
  * Specifies whether the suggestions highlighting is enabled. **Note:** Due to performance constraints,
74590
- * the functionality will be disabled above 200 items.
74602
+ * the functionality will be disabled above 200 items. **Note:** Highlighting in table suggestions will
74603
+ * work only for cells containing sap.m.Label or sap.m.Text controls.
74591
74604
  *
74592
74605
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
74593
74606
  *
@@ -80824,7 +80837,12 @@ declare namespace sap {
80824
80837
  *
80825
80838
  * @returns jQuery object
80826
80839
  */
80827
- getTabbables(): jQuery;
80840
+ getTabbables(
80841
+ /**
80842
+ * Whether only tabbables of the content area
80843
+ */
80844
+ bContentOnly?: undefined
80845
+ ): jQuery;
80828
80846
  /**
80829
80847
  * Gets current value of property {@link #getType type}.
80830
80848
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.1
1
+ // For Library Version: 1.120.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -265,6 +265,8 @@ declare namespace sap {
265
265
  fixedItem?: sap.tnt.NavigationList;
266
266
 
267
267
  /**
268
+ * @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
269
+ *
268
270
  * Defines the content inside the footer.
269
271
  */
270
272
  footer?: sap.tnt.NavigationList;
@@ -1597,6 +1599,8 @@ declare namespace sap {
1597
1599
  */
1598
1600
  destroyFixedItem(): this;
1599
1601
  /**
1602
+ * @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
1603
+ *
1600
1604
  * Destroys the footer in the aggregation {@link #getFooter footer}.
1601
1605
  *
1602
1606
  * @returns Reference to `this` in order to allow method chaining
@@ -1665,6 +1669,8 @@ declare namespace sap {
1665
1669
  */
1666
1670
  getFixedItem(): sap.tnt.NavigationList;
1667
1671
  /**
1672
+ * @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
1673
+ *
1668
1674
  * Gets content of aggregation {@link #getFooter footer}.
1669
1675
  *
1670
1676
  * Defines the content inside the footer.
@@ -1746,6 +1752,8 @@ declare namespace sap {
1746
1752
  oFixedItem: sap.tnt.NavigationList
1747
1753
  ): this;
1748
1754
  /**
1755
+ * @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
1756
+ *
1749
1757
  * Sets the aggregated {@link #getFooter footer}.
1750
1758
  *
1751
1759
  * @returns Reference to `this` in order to allow method chaining
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.1
1
+ // For Library Version: 1.120.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.1
1
+ // For Library Version: 1.120.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {