@sapui5/ts-types-esm 1.127.1 → 1.128.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.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +221 -22
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1414 -225
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.core.d.ts +13 -28
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +7 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +14 -3
- package/types/sap.fe.test.d.ts +3 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +123 -64
- package/types/sap.insights.d.ts +24 -1
- package/types/sap.m.d.ts +327 -26
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +110 -29
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +10 -4
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +997 -4
- package/types/sap.ui.core.d.ts +48 -28
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +10 -4
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +55 -5
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +426 -212
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +91 -23
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +624 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +48 -23
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +16 -8
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +44 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.128.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -2009,17 +2009,22 @@ declare module "sap/ui/table/Column" {
|
|
|
2009
2009
|
/**
|
|
2010
2010
|
* Gets content of aggregation {@link #getTemplate template}.
|
|
2011
2011
|
*
|
|
2012
|
-
* Template (cell renderer) of this column.
|
|
2013
|
-
*
|
|
2014
|
-
*
|
|
2015
|
-
*
|
|
2016
|
-
*
|
|
2017
|
-
* is
|
|
2012
|
+
* Template (cell renderer) of this column.
|
|
2013
|
+
*
|
|
2014
|
+
* A template is decoupled from the column. Each time the template's properties or aggregations have been
|
|
2015
|
+
* changed, the template has to be applied again via `setTemplate` for the changes to take effect.
|
|
2016
|
+
*
|
|
2017
|
+
* If there is no template, the column will not be rendered in the table.
|
|
2018
|
+
*
|
|
2019
|
+
* The set of supported controls is limited. See section "{@link https://ui5.sap.com/#/topic/148892ff9aea4a18b912829791e38f3e Tables: Which One Should I Choose?}"
|
|
2018
2020
|
* in the documentation for more details. While it is technically possible to also use other controls, doing
|
|
2019
2021
|
* so might lead to issues with regards to scrolling, alignment, condensed mode, screen reader support,
|
|
2020
2022
|
* and keyboard support.
|
|
2021
2023
|
*
|
|
2022
|
-
*
|
|
2024
|
+
* If a string is defined, this string is interpreted as the binding path. Internally, a default text control
|
|
2025
|
+
* will be created with its `text` property bound to the value of the string. The default template depends
|
|
2026
|
+
* on the libraries loaded. **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control`
|
|
2027
|
+
* instead.
|
|
2023
2028
|
*/
|
|
2024
2029
|
getTemplate(): Control | string;
|
|
2025
2030
|
/**
|
|
@@ -2834,17 +2839,22 @@ declare module "sap/ui/table/Column" {
|
|
|
2834
2839
|
multiLabels?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
2835
2840
|
|
|
2836
2841
|
/**
|
|
2837
|
-
* Template (cell renderer) of this column.
|
|
2838
|
-
*
|
|
2839
|
-
*
|
|
2840
|
-
*
|
|
2841
|
-
*
|
|
2842
|
-
* is
|
|
2842
|
+
* Template (cell renderer) of this column.
|
|
2843
|
+
*
|
|
2844
|
+
* A template is decoupled from the column. Each time the template's properties or aggregations have been
|
|
2845
|
+
* changed, the template has to be applied again via `setTemplate` for the changes to take effect.
|
|
2846
|
+
*
|
|
2847
|
+
* If there is no template, the column will not be rendered in the table.
|
|
2848
|
+
*
|
|
2849
|
+
* The set of supported controls is limited. See section "{@link https://ui5.sap.com/#/topic/148892ff9aea4a18b912829791e38f3e Tables: Which One Should I Choose?}"
|
|
2843
2850
|
* in the documentation for more details. While it is technically possible to also use other controls, doing
|
|
2844
2851
|
* so might lead to issues with regards to scrolling, alignment, condensed mode, screen reader support,
|
|
2845
2852
|
* and keyboard support.
|
|
2846
2853
|
*
|
|
2847
|
-
*
|
|
2854
|
+
* If a string is defined, this string is interpreted as the binding path. Internally, a default text control
|
|
2855
|
+
* will be created with its `text` property bound to the value of the string. The default template depends
|
|
2856
|
+
* on the libraries loaded. **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control`
|
|
2857
|
+
* instead.
|
|
2848
2858
|
*/
|
|
2849
2859
|
template?: string | Control | PropertyBindingInfo;
|
|
2850
2860
|
|
|
@@ -7919,6 +7929,29 @@ declare module "sap/ui/table/Table" {
|
|
|
7919
7929
|
* changes to take effect.
|
|
7920
7930
|
*/
|
|
7921
7931
|
getRowSettingsTemplate(): RowSettings;
|
|
7932
|
+
/**
|
|
7933
|
+
* Gets current value of property {@link #getScrollThreshold scrollThreshold}.
|
|
7934
|
+
*
|
|
7935
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
7936
|
+
* vertically in the table. The `scrollThreshold` is always added to the number of rows. If the number of
|
|
7937
|
+
* rows is 10 and the `scrollThreshold` is 100, 110 records will be fetched during scrolling. The threshold
|
|
7938
|
+
* that is applied to requests that are not initiated by scrolling can be configured with the `threshold`
|
|
7939
|
+
* property. If the `scrollThreshold` is lower than the number of rows in the scrollable area (number of
|
|
7940
|
+
* rows minus number of fixed rows), this number is used as the `scrollThreshold`. If the value is 0, no
|
|
7941
|
+
* threshold is applied during scrolling. The value -1 applies the same value as the `threshold` property.
|
|
7942
|
+
*
|
|
7943
|
+
* **Note:** This property only takes effect if it is set to a positive integer value.
|
|
7944
|
+
*
|
|
7945
|
+
* For `AnalyticalTable` and `TreeTable`, the `scrollThreshold` property must be higher than the `threshold`
|
|
7946
|
+
* property to take effect.
|
|
7947
|
+
*
|
|
7948
|
+
* Default value is `-1`.
|
|
7949
|
+
*
|
|
7950
|
+
* @since 1.128
|
|
7951
|
+
*
|
|
7952
|
+
* @returns Value of property `scrollThreshold`
|
|
7953
|
+
*/
|
|
7954
|
+
getScrollThreshold(): int;
|
|
7922
7955
|
/**
|
|
7923
7956
|
* Retrieves the lead selection index.
|
|
7924
7957
|
*
|
|
@@ -8023,10 +8056,12 @@ declare module "sap/ui/table/Table" {
|
|
|
8023
8056
|
* Gets current value of property {@link #getThreshold threshold}.
|
|
8024
8057
|
*
|
|
8025
8058
|
* Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
|
|
8026
|
-
* enable smooth scrolling. The threshold is always added to the
|
|
8027
|
-
*
|
|
8028
|
-
*
|
|
8029
|
-
*
|
|
8059
|
+
* enable smooth scrolling. The threshold is always added to the number of rows. If the number of rows is
|
|
8060
|
+
* 10 and the `threshold` is 100, 110 records will be fetched with the initial load. This property affects
|
|
8061
|
+
* requests triggered by changes in the binding, for example, initial loading, sorting, filtering, etc.
|
|
8062
|
+
* The threshold that is applied during scrolling can be configured with the `scrollThreshold` property.
|
|
8063
|
+
* If the `threshold` is lower than the number of rows in the scrollable area (`visibleRowCount` minus number
|
|
8064
|
+
* of fixed rows), this number is used as the `threshold`. If the value is 0, thresholding is disabled.
|
|
8030
8065
|
*
|
|
8031
8066
|
* Default value is `100`.
|
|
8032
8067
|
*
|
|
@@ -8884,6 +8919,19 @@ declare module "sap/ui/table/Table" {
|
|
|
8884
8919
|
*/
|
|
8885
8920
|
oRowSettingsTemplate: RowSettings
|
|
8886
8921
|
): this;
|
|
8922
|
+
/**
|
|
8923
|
+
* Sets the threshold value, which will be added to all data requests initiated by scrolling if the `Table`
|
|
8924
|
+
* is bound against an OData service.
|
|
8925
|
+
*
|
|
8926
|
+
*
|
|
8927
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8928
|
+
*/
|
|
8929
|
+
setScrollThreshold(
|
|
8930
|
+
/**
|
|
8931
|
+
* The threshold for scrolling
|
|
8932
|
+
*/
|
|
8933
|
+
iThreshold: int
|
|
8934
|
+
): this;
|
|
8887
8935
|
/**
|
|
8888
8936
|
* Sets the selected index. The previous selection is removed.
|
|
8889
8937
|
*
|
|
@@ -9295,13 +9343,33 @@ declare module "sap/ui/table/Table" {
|
|
|
9295
9343
|
|
|
9296
9344
|
/**
|
|
9297
9345
|
* Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
|
|
9298
|
-
* enable smooth scrolling. The threshold is always added to the
|
|
9299
|
-
*
|
|
9300
|
-
*
|
|
9301
|
-
*
|
|
9346
|
+
* enable smooth scrolling. The threshold is always added to the number of rows. If the number of rows is
|
|
9347
|
+
* 10 and the `threshold` is 100, 110 records will be fetched with the initial load. This property affects
|
|
9348
|
+
* requests triggered by changes in the binding, for example, initial loading, sorting, filtering, etc.
|
|
9349
|
+
* The threshold that is applied during scrolling can be configured with the `scrollThreshold` property.
|
|
9350
|
+
* If the `threshold` is lower than the number of rows in the scrollable area (`visibleRowCount` minus number
|
|
9351
|
+
* of fixed rows), this number is used as the `threshold`. If the value is 0, thresholding is disabled.
|
|
9302
9352
|
*/
|
|
9303
9353
|
threshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
9304
9354
|
|
|
9355
|
+
/**
|
|
9356
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
9357
|
+
* vertically in the table. The `scrollThreshold` is always added to the number of rows. If the number of
|
|
9358
|
+
* rows is 10 and the `scrollThreshold` is 100, 110 records will be fetched during scrolling. The threshold
|
|
9359
|
+
* that is applied to requests that are not initiated by scrolling can be configured with the `threshold`
|
|
9360
|
+
* property. If the `scrollThreshold` is lower than the number of rows in the scrollable area (number of
|
|
9361
|
+
* rows minus number of fixed rows), this number is used as the `scrollThreshold`. If the value is 0, no
|
|
9362
|
+
* threshold is applied during scrolling. The value -1 applies the same value as the `threshold` property.
|
|
9363
|
+
*
|
|
9364
|
+
* **Note:** This property only takes effect if it is set to a positive integer value.
|
|
9365
|
+
*
|
|
9366
|
+
* For `AnalyticalTable` and `TreeTable`, the `scrollThreshold` property must be higher than the `threshold`
|
|
9367
|
+
* property to take effect.
|
|
9368
|
+
*
|
|
9369
|
+
* @since 1.128
|
|
9370
|
+
*/
|
|
9371
|
+
scrollThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
9372
|
+
|
|
9305
9373
|
/**
|
|
9306
9374
|
* Flag to enable or disable column reordering
|
|
9307
9375
|
*
|