@openui5/ts-types-esm 1.94.0 → 1.97.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.
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1167,28 +1167,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
1167
1167
  * Retrieves all variants.
1168
1168
  */
1169
1169
  getVariants(): any[];
1170
- /**
1171
- * Opens the Manage Views dialog.
1172
- */
1173
- openManagementDialog(
1174
- /**
1175
- * Indicates that if this is set to `true`, the former dialog will be destroyed before a new one is created
1176
- */
1177
- bCreateAlways: boolean,
1178
- /**
1179
- * style-class to be used
1180
- */
1181
- sClass: string
1182
- ): void;
1183
- /**
1184
- * Opens the Save as dialog.
1185
- */
1186
- openSaveAsDialogForKeyUser(
1187
- /**
1188
- * style-class to be used
1189
- */
1190
- sRtaStyleClassName: string
1191
- ): void;
1192
1170
  /**
1193
1171
  * Removes all the controls in the association named {@link #getFor for}.
1194
1172
  */
@@ -1611,7 +1589,12 @@ declare module "sap/ui/fl/write/api/FeaturesAPI" {
1611
1589
  /**
1612
1590
  * Checks if key user has also the admin role to enable the translation button
1613
1591
  */
1614
- isKeyUserTranslationEnabled(): Promise<boolean>;
1592
+ isKeyUserTranslationEnabled(
1593
+ /**
1594
+ * Current layer
1595
+ */
1596
+ sLayer: /* was: sap.ui.fl.Layer */ any
1597
+ ): Promise<boolean>;
1615
1598
  /**
1616
1599
  * Checks if the data storing implementation for a given layer is capable of handling versioning.
1617
1600
  */
@@ -1648,6 +1631,8 @@ declare namespace sap {
1648
1631
 
1649
1632
  "sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle": undefined;
1650
1633
 
1634
+ "sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract": undefined;
1635
+
1651
1636
  "sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetRegistrationIds": undefined;
1652
1637
 
1653
1638
  "sap/ui/fl/apply/_internal/changes/descriptor/ovp/AddNewCard": undefined;
@@ -1724,8 +1709,6 @@ declare namespace sap {
1724
1709
 
1725
1710
  "sap/ui/fl/ChangePersistenceFactory": undefined;
1726
1711
 
1727
- "sap/ui/fl/ControlPersonalizationAPI": undefined;
1728
-
1729
1712
  "sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory": undefined;
1730
1713
 
1731
1714
  "sap/ui/fl/descriptorRelated/api/DescriptorInlineChangeFactory": undefined;
@@ -1,10 +1,25 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
5
5
 
6
6
  import { ButtonType } from "sap/m/library";
7
7
 
8
+ /**
9
+ * @SINCE 1.96
10
+ *
11
+ * Defines the layout type of the List card attributes.
12
+ */
13
+ export enum AttributesLayoutType {
14
+ /**
15
+ * One column.
16
+ */
17
+ OneColumn = "OneColumn",
18
+ /**
19
+ * Two columns.
20
+ */
21
+ TwoColumns = "TwoColumns",
22
+ }
8
23
  /**
9
24
  * @EXPERIMENTAL (since 1.64)
10
25
  *
@@ -1324,6 +1339,55 @@ declare module "sap/ui/integration/Host" {
1324
1339
  */
1325
1340
  oListener?: object
1326
1341
  ): this;
1342
+ /**
1343
+ * @EXPERIMENTAL (since 1.96)
1344
+ *
1345
+ * Attaches event handler `fnFunction` to the {@link #event:cardConfigurationChange cardConfigurationChange}
1346
+ * event of this `sap.ui.integration.Host`.
1347
+ *
1348
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1349
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
1350
+ *
1351
+ * Fired when some card configuration settings are changed as a result of user interaction. For example
1352
+ * - filter value is changed.
1353
+ */
1354
+ attachCardConfigurationChange(
1355
+ /**
1356
+ * An application-specific payload object that will be passed to the event handler along with the event
1357
+ * object when firing the event
1358
+ */
1359
+ oData: object,
1360
+ /**
1361
+ * The function to be called when the event occurs
1362
+ */
1363
+ fnFunction: (p1: Event) => void,
1364
+ /**
1365
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
1366
+ */
1367
+ oListener?: object
1368
+ ): this;
1369
+ /**
1370
+ * @EXPERIMENTAL (since 1.96)
1371
+ *
1372
+ * Attaches event handler `fnFunction` to the {@link #event:cardConfigurationChange cardConfigurationChange}
1373
+ * event of this `sap.ui.integration.Host`.
1374
+ *
1375
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1376
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
1377
+ *
1378
+ * Fired when some card configuration settings are changed as a result of user interaction. For example
1379
+ * - filter value is changed.
1380
+ */
1381
+ attachCardConfigurationChange(
1382
+ /**
1383
+ * The function to be called when the event occurs
1384
+ */
1385
+ fnFunction: (p1: Event) => void,
1386
+ /**
1387
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
1388
+ */
1389
+ oListener?: object
1390
+ ): this;
1327
1391
  /**
1328
1392
  * @EXPERIMENTAL (since 1.91)
1329
1393
  *
@@ -1369,6 +1433,32 @@ declare module "sap/ui/integration/Host" {
1369
1433
  */
1370
1434
  oListener?: object
1371
1435
  ): this;
1436
+ /**
1437
+ * @EXPERIMENTAL (since 1.97)
1438
+ *
1439
+ * This functions is called when a CSRF token has expired.
1440
+ */
1441
+ csrfTokenExpired(
1442
+ /**
1443
+ * The CSRF token configuration.
1444
+ */
1445
+ mCSRFTokenConfig: object
1446
+ ): void;
1447
+ /**
1448
+ * @EXPERIMENTAL (since 1.97)
1449
+ *
1450
+ * This functions is called when a CSRF token is fetched.
1451
+ */
1452
+ csrfTokenFetched(
1453
+ /**
1454
+ * The CSRF token configuration.
1455
+ */
1456
+ mCSRFTokenConfig: object,
1457
+ /**
1458
+ * A promise which resolves the CSRF token to its value.
1459
+ */
1460
+ pCSRFTokenValuePromise: Promise<any>
1461
+ ): void;
1372
1462
  /**
1373
1463
  * @EXPERIMENTAL (since 1.75)
1374
1464
  *
@@ -1386,6 +1476,24 @@ declare module "sap/ui/integration/Host" {
1386
1476
  */
1387
1477
  oListener?: object
1388
1478
  ): this;
1479
+ /**
1480
+ * @EXPERIMENTAL (since 1.96)
1481
+ *
1482
+ * Detaches event handler `fnFunction` from the {@link #event:cardConfigurationChange cardConfigurationChange}
1483
+ * event of this `sap.ui.integration.Host`.
1484
+ *
1485
+ * The passed function and listener object must match the ones used for event registration.
1486
+ */
1487
+ detachCardConfigurationChange(
1488
+ /**
1489
+ * The function to be called, when the event occurs
1490
+ */
1491
+ fnFunction: (p1: Event) => void,
1492
+ /**
1493
+ * Context object on which the given function had to be called
1494
+ */
1495
+ oListener?: object
1496
+ ): this;
1389
1497
  /**
1390
1498
  * @EXPERIMENTAL (since 1.91)
1391
1499
  *
@@ -1438,6 +1546,35 @@ declare module "sap/ui/integration/Host" {
1438
1546
  type?: CardActionType | keyof typeof CardActionType;
1439
1547
  }
1440
1548
  ): boolean;
1549
+ /**
1550
+ * @EXPERIMENTAL (since 1.96)
1551
+ *
1552
+ * Fires event {@link #event:cardConfigurationChange cardConfigurationChange} to attached listeners.
1553
+ */
1554
+ fireCardConfigurationChange(
1555
+ /**
1556
+ * Parameters to pass along with the event
1557
+ */
1558
+ mParameters?: {
1559
+ /**
1560
+ * The card the changes are fired from.
1561
+ */
1562
+ card?: Control;
1563
+ /**
1564
+ * Changed configuration settings.
1565
+ *
1566
+ * Example:
1567
+ * ```javascript
1568
+ *
1569
+ * {
1570
+ * "/sap.card/configuration/filters/shipper/value": "key3",
1571
+ * "/sap.card/configuration/filters/item/value": "key2"
1572
+ * }
1573
+ * ```
1574
+ */
1575
+ changes?: object;
1576
+ }
1577
+ ): this;
1441
1578
  /**
1442
1579
  * @EXPERIMENTAL (since 1.91)
1443
1580
  *
@@ -1493,6 +1630,17 @@ declare module "sap/ui/integration/Host" {
1493
1630
  */
1494
1631
  sPath: string
1495
1632
  ): Promise<any>;
1633
+ /**
1634
+ * @EXPERIMENTAL (since 1.97)
1635
+ *
1636
+ * Resolves the CSRF token and returns a Promise with its value.
1637
+ */
1638
+ getCsrfToken(
1639
+ /**
1640
+ * The CSRF token configuration.
1641
+ */
1642
+ mCSRFTokenConfig: object
1643
+ ): Promise<any>;
1496
1644
  /**
1497
1645
  * Resolves the destination and returns its URL.
1498
1646
  */
@@ -1589,6 +1737,14 @@ declare module "sap/ui/integration/Host" {
1589
1737
  */
1590
1738
  action?: (oEvent: Event) => void;
1591
1739
 
1740
+ /**
1741
+ * @EXPERIMENTAL (since 1.96)
1742
+ *
1743
+ * Fired when some card configuration settings are changed as a result of user interaction. For example
1744
+ * - filter value is changed.
1745
+ */
1746
+ cardConfigurationChange?: (oEvent: Event) => void;
1747
+
1592
1748
  /**
1593
1749
  * @EXPERIMENTAL (since 1.91)
1594
1750
  *
@@ -1786,6 +1942,55 @@ declare module "sap/ui/integration/widgets/Card" {
1786
1942
  */
1787
1943
  oListener?: object
1788
1944
  ): this;
1945
+ /**
1946
+ * @EXPERIMENTAL (since 1.96)
1947
+ *
1948
+ * Attaches event handler `fnFunction` to the {@link #event:configurationChange configurationChange} event
1949
+ * of this `sap.ui.integration.widgets.Card`.
1950
+ *
1951
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1952
+ * otherwise it will be bound to this `sap.ui.integration.widgets.Card` itself.
1953
+ *
1954
+ * Fired when some configuration settings are changed as a result of user interaction. For example - filter
1955
+ * value is changed.
1956
+ */
1957
+ attachConfigurationChange(
1958
+ /**
1959
+ * An application-specific payload object that will be passed to the event handler along with the event
1960
+ * object when firing the event
1961
+ */
1962
+ oData: object,
1963
+ /**
1964
+ * The function to be called when the event occurs
1965
+ */
1966
+ fnFunction: (p1: Event) => void,
1967
+ /**
1968
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.widgets.Card` itself
1969
+ */
1970
+ oListener?: object
1971
+ ): this;
1972
+ /**
1973
+ * @EXPERIMENTAL (since 1.96)
1974
+ *
1975
+ * Attaches event handler `fnFunction` to the {@link #event:configurationChange configurationChange} event
1976
+ * of this `sap.ui.integration.widgets.Card`.
1977
+ *
1978
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1979
+ * otherwise it will be bound to this `sap.ui.integration.widgets.Card` itself.
1980
+ *
1981
+ * Fired when some configuration settings are changed as a result of user interaction. For example - filter
1982
+ * value is changed.
1983
+ */
1984
+ attachConfigurationChange(
1985
+ /**
1986
+ * The function to be called when the event occurs
1987
+ */
1988
+ fnFunction: (p1: Event) => void,
1989
+ /**
1990
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.widgets.Card` itself
1991
+ */
1992
+ oListener?: object
1993
+ ): this;
1789
1994
  /**
1790
1995
  * Attaches event handler `fnFunction` to the {@link #event:manifestApplied manifestApplied} event of this
1791
1996
  * `sap.ui.integration.widgets.Card`.
@@ -1904,6 +2109,24 @@ declare module "sap/ui/integration/widgets/Card" {
1904
2109
  */
1905
2110
  oListener?: object
1906
2111
  ): this;
2112
+ /**
2113
+ * @EXPERIMENTAL (since 1.96)
2114
+ *
2115
+ * Detaches event handler `fnFunction` from the {@link #event:configurationChange configurationChange} event
2116
+ * of this `sap.ui.integration.widgets.Card`.
2117
+ *
2118
+ * The passed function and listener object must match the ones used for event registration.
2119
+ */
2120
+ detachConfigurationChange(
2121
+ /**
2122
+ * The function to be called, when the event occurs
2123
+ */
2124
+ fnFunction: (p1: Event) => void,
2125
+ /**
2126
+ * Context object on which the given function had to be called
2127
+ */
2128
+ oListener?: object
2129
+ ): this;
1907
2130
  /**
1908
2131
  * Detaches event handler `fnFunction` from the {@link #event:manifestApplied manifestApplied} event of
1909
2132
  * this `sap.ui.integration.widgets.Card`.
@@ -1969,6 +2192,31 @@ declare module "sap/ui/integration/widgets/Card" {
1969
2192
  type?: CardActionType | keyof typeof CardActionType;
1970
2193
  }
1971
2194
  ): boolean;
2195
+ /**
2196
+ * @EXPERIMENTAL (since 1.96)
2197
+ *
2198
+ * Fires event {@link #event:configurationChange configurationChange} to attached listeners.
2199
+ */
2200
+ fireConfigurationChange(
2201
+ /**
2202
+ * Parameters to pass along with the event
2203
+ */
2204
+ mParameters?: {
2205
+ /**
2206
+ * Changed configuration settings.
2207
+ *
2208
+ * Example:
2209
+ * ```javascript
2210
+ *
2211
+ * {
2212
+ * "/sap.card/configuration/filters/shipper/value": "key3",
2213
+ * "/sap.card/configuration/filters/item/value": "key2",
2214
+ * }
2215
+ * ```
2216
+ */
2217
+ changes?: object;
2218
+ }
2219
+ ): this;
1972
2220
  /**
1973
2221
  * Fires event {@link #event:manifestApplied manifestApplied} to attached listeners.
1974
2222
  */
@@ -2187,6 +2435,12 @@ declare module "sap/ui/integration/widgets/Card" {
2187
2435
  * Refreshes the card by re-applying the manifest settings and triggering all data requests.
2188
2436
  */
2189
2437
  refresh(): void;
2438
+ /**
2439
+ * @SINCE 1.95
2440
+ *
2441
+ * Refreshes the card data by triggering all data requests.
2442
+ */
2443
+ refreshData(): void;
2190
2444
  /**
2191
2445
  * @SINCE 1.85
2192
2446
  * @EXPERIMENTAL (since 1.85)
@@ -2547,6 +2801,12 @@ declare module "sap/ui/integration/widgets/Card" {
2547
2801
  * Refreshes the card by re-applying the manifest settings and triggering all data requests.
2548
2802
  */
2549
2803
  refresh(): void;
2804
+ /**
2805
+ * @SINCE 1.95
2806
+ *
2807
+ * Refreshes the card data by triggering all data requests.
2808
+ */
2809
+ refreshData(): void;
2550
2810
  /**
2551
2811
  * @SINCE 1.85
2552
2812
  * @EXPERIMENTAL (since 1.85)
@@ -2755,6 +3015,14 @@ declare module "sap/ui/integration/widgets/Card" {
2755
3015
  */
2756
3016
  action?: (oEvent: Event) => void;
2757
3017
 
3018
+ /**
3019
+ * @EXPERIMENTAL (since 1.96)
3020
+ *
3021
+ * Fired when some configuration settings are changed as a result of user interaction. For example - filter
3022
+ * value is changed.
3023
+ */
3024
+ configurationChange?: (oEvent: Event) => void;
3025
+
2758
3026
  /**
2759
3027
  * @EXPERIMENTAL (since 1.72)
2760
3028
  *
@@ -2933,8 +3201,12 @@ declare namespace sap {
2933
3201
 
2934
3202
  "sap/ui/integration/library": undefined;
2935
3203
 
3204
+ "sap/ui/integration/ManifestResolver": undefined;
3205
+
2936
3206
  "sap/ui/integration/services/Service": undefined;
2937
3207
 
3208
+ "sap/ui/integration/util/CsrfTokenHandler": undefined;
3209
+
2938
3210
  "sap/ui/integration/util/DataProvider": undefined;
2939
3211
 
2940
3212
  "sap/ui/integration/util/DataProviderFactory": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -2888,6 +2888,8 @@ declare module "sap/ui/layout/cssgrid/GridLayoutBase" {
2888
2888
 
2889
2889
  import ManagedObjectMetadata from "sap/ui/base/ManagedObjectMetadata";
2890
2890
 
2891
+ import { cssgrid } from "sap/ui/layout/library";
2892
+
2891
2893
  /**
2892
2894
  * @SINCE 1.60
2893
2895
  *
@@ -2990,6 +2992,24 @@ declare module "sap/ui/layout/cssgrid/GridLayoutBase" {
2990
2992
  getActiveGridSettings(): void;
2991
2993
 
2992
2994
  isResponsive(): boolean;
2995
+ /**
2996
+ * Hook function for the Grid's onAfterRendering
2997
+ */
2998
+ onGridAfterRendering(
2999
+ /**
3000
+ * The grid
3001
+ */
3002
+ oGrid: cssgrid.IGridConfigurable
3003
+ ): void;
3004
+ /**
3005
+ * Hook function for the Grid's resize. Will be called if the grid layout is responsive.
3006
+ */
3007
+ onGridResize(
3008
+ /**
3009
+ * The event passed by the resize handler
3010
+ */
3011
+ oEvent: jQuery.Event
3012
+ ): void;
2993
3013
  }
2994
3014
 
2995
3015
  export interface $GridLayoutBaseSettings extends $ManagedObjectSettings {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare module "sap/ui/mdc/library" {
4
4
  /**
@@ -18,8 +18,20 @@ declare module "sap/ui/mdc/library" {
18
18
 
19
19
  declare namespace sap {
20
20
  interface IUI5DefineDependencyNames {
21
+ "sap/ui/mdc/ActionToolbar": undefined;
22
+
23
+ "sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
24
+
21
25
  "sap/ui/mdc/Chart": undefined;
22
26
 
27
+ "sap/ui/mdc/chart/DimensionItem": undefined;
28
+
29
+ "sap/ui/mdc/chart/Item": undefined;
30
+
31
+ "sap/ui/mdc/chart/MeasureItem": undefined;
32
+
33
+ "sap/ui/mdc/chart/SelectionDetailsActions": undefined;
34
+
23
35
  "sap/ui/mdc/chartNew/ChartSelectionDetailsNew": undefined;
24
36
 
25
37
  "sap/ui/mdc/condition/Condition": undefined;
@@ -36,8 +48,14 @@ declare namespace sap {
36
48
 
37
49
  "sap/ui/mdc/condition/Operator": undefined;
38
50
 
51
+ "sap/ui/mdc/condition/OperatorDynamicDateOption": undefined;
52
+
39
53
  "sap/ui/mdc/condition/RangeOperator": undefined;
40
54
 
55
+ "sap/ui/mdc/Control": undefined;
56
+
57
+ "sap/ui/mdc/Element": undefined;
58
+
41
59
  "sap/ui/mdc/enum/ActionToolbarActionAlignment": undefined;
42
60
 
43
61
  "sap/ui/mdc/enum/BaseType": undefined;
@@ -54,6 +72,8 @@ declare namespace sap {
54
72
 
55
73
  "sap/ui/mdc/enum/PersistenceMode": undefined;
56
74
 
75
+ "sap/ui/mdc/enum/SelectType": undefined;
76
+
57
77
  "sap/ui/mdc/Field": undefined;
58
78
 
59
79
  "sap/ui/mdc/field/BoolFieldHelp": undefined;
@@ -70,6 +90,8 @@ declare namespace sap {
70
90
 
71
91
  "sap/ui/mdc/field/DefineConditionPanel": undefined;
72
92
 
93
+ "sap/ui/mdc/field/DynamicDateRangeConditionsType": undefined;
94
+
73
95
  "sap/ui/mdc/field/FieldBase": undefined;
74
96
 
75
97
  "sap/ui/mdc/field/FieldBaseDelegate": undefined;
@@ -78,6 +100,8 @@ declare namespace sap {
78
100
 
79
101
  "sap/ui/mdc/field/FieldHelpBaseDelegate": undefined;
80
102
 
103
+ "sap/ui/mdc/field/FieldInfoBase": undefined;
104
+
81
105
  "sap/ui/mdc/field/FieldInput": undefined;
82
106
 
83
107
  "sap/ui/mdc/field/FieldMultiInput": undefined;
@@ -130,6 +154,8 @@ declare namespace sap {
130
154
 
131
155
  "sap/ui/mdc/mixin/FilterIntegrationMixin": undefined;
132
156
 
157
+ "sap/ui/mdc/mixin/PromiseMixin": undefined;
158
+
133
159
  "sap/ui/mdc/MultiValueField": undefined;
134
160
 
135
161
  "sap/ui/mdc/odata/v4/FieldBaseDelegate": undefined;
@@ -138,19 +164,11 @@ declare namespace sap {
138
164
 
139
165
  "sap/ui/mdc/p13n/AdaptationProvider": undefined;
140
166
 
141
- "sap/ui/mdc/p13n/DefaultProviderRegistry": undefined;
142
-
143
167
  "sap/ui/mdc/p13n/Engine": undefined;
144
168
 
145
169
  "sap/ui/mdc/p13n/modification/ModificationHandler": undefined;
146
170
 
147
- "sap/ui/mdc/p13n/panels/GroupPanel": undefined;
148
-
149
- "sap/ui/mdc/p13n/panels/QueryPanel": undefined;
150
-
151
- "sap/ui/mdc/p13n/panels/SortQueryPanel": undefined;
152
-
153
- "sap/ui/mdc/p13n/panels/Wrapper": undefined;
171
+ "sap/ui/mdc/p13n/modules/DefaultProviderRegistry": undefined;
154
172
 
155
173
  "sap/ui/mdc/p13n/StateUtil": undefined;
156
174
 
@@ -158,10 +176,52 @@ declare namespace sap {
158
176
 
159
177
  "sap/ui/mdc/p13n/UIManager": undefined;
160
178
 
179
+ "sap/ui/mdc/Table": undefined;
180
+
181
+ "sap/ui/mdc/table/Column": undefined;
182
+
183
+ "sap/ui/mdc/table/CreationRow": undefined;
184
+
185
+ "sap/ui/mdc/table/GridTableType": undefined;
186
+
187
+ "sap/ui/mdc/table/ResponsiveTableType": undefined;
188
+
189
+ "sap/ui/mdc/table/RowSettings": undefined;
190
+
191
+ "sap/ui/mdc/table/TableTypeBase": undefined;
192
+
161
193
  "sap/ui/mdc/util/DateUtil": undefined;
162
194
 
163
195
  "sap/ui/mdc/util/FilterUtil": undefined;
164
196
 
197
+ "sap/ui/mdc/util/PromiseCache": undefined;
198
+
165
199
  "sap/ui/mdc/util/TypeUtil": undefined;
200
+
201
+ "sap/ui/mdc/ValueHelp": undefined;
202
+
203
+ "sap/ui/mdc/valuehelp/base/Container": undefined;
204
+
205
+ "sap/ui/mdc/valuehelp/base/Content": undefined;
206
+
207
+ "sap/ui/mdc/valuehelp/base/DialogTab": undefined;
208
+
209
+ "sap/ui/mdc/valuehelp/base/FilterableListContent": undefined;
210
+
211
+ "sap/ui/mdc/valuehelp/base/ListContent": undefined;
212
+
213
+ "sap/ui/mdc/valuehelp/content/Bool": undefined;
214
+
215
+ "sap/ui/mdc/valuehelp/content/Conditions": undefined;
216
+
217
+ "sap/ui/mdc/valuehelp/content/FixedList": undefined;
218
+
219
+ "sap/ui/mdc/valuehelp/content/MTable": undefined;
220
+
221
+ "sap/ui/mdc/valuehelp/Dialog": undefined;
222
+
223
+ "sap/ui/mdc/valuehelp/Popover": undefined;
224
+
225
+ "sap/ui/mdc/ValueHelpDelegate": undefined;
166
226
  }
167
227
  }
@@ -1,7 +1,7 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
- import UI5Element from "sap/ui/core/Element";
4
+ import Control from "sap/ui/core/Control";
5
5
 
6
6
  import UIComponent from "sap/ui/core/UIComponent";
7
7
 
@@ -19,9 +19,9 @@ declare module "sap/ui/rta/api/startAdaptation" {
19
19
  */
20
20
  mOptions: {
21
21
  /**
22
- * Control instance from where UI adaptation should be started
22
+ * Control instance to get the AppComponent. This then is used to start UI adaptation.
23
23
  */
24
- rootControl: UI5Element | UIComponent;
24
+ rootControl: Control | UIComponent;
25
25
  /**
26
26
  * Map with flex-related settings
27
27
  */
@@ -57,7 +57,7 @@ declare module "sap/ui/rta/api/startAdaptation" {
57
57
  }
58
58
 
59
59
  declare module "sap/ui/rta/api/startKeyUserAdaptation" {
60
- import UI5Element from "sap/ui/core/Element";
60
+ import Control from "sap/ui/core/Control";
61
61
 
62
62
  import UIComponent from "sap/ui/core/UIComponent";
63
63
 
@@ -74,9 +74,9 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
74
74
  */
75
75
  mPropertyBag: {
76
76
  /**
77
- * Control instance from where key user adaptation should be started
77
+ * Control instance to get the AppComponent. This then is used to start UI adaptation.
78
78
  */
79
- rootControl: UI5Element | UIComponent;
79
+ rootControl: Control | UIComponent;
80
80
  }
81
81
  ): Promise<any>;
82
82
  }
@@ -112,11 +112,5 @@ declare namespace sap {
112
112
  "sap/ui/rta/service/Property": undefined;
113
113
 
114
114
  "sap/ui/rta/service/Selection": undefined;
115
-
116
- "sap/ui/rta/util/changeVisualization/ChangeIndicator": undefined;
117
-
118
- "sap/ui/rta/util/changeVisualization/ChangeIndicatorRegistry": undefined;
119
-
120
- "sap/ui/rta/util/changeVisualization/ChangeVisualization": undefined;
121
115
  }
122
116
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**