@openui5/ts-types 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 namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -10,6 +10,8 @@ declare namespace sap {
10
10
 
11
11
  "sap/ui/fl/apply/_internal/changes/descriptor/app/SetTitle": undefined;
12
12
 
13
+ "sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetAbstract": undefined;
14
+
13
15
  "sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetRegistrationIds": undefined;
14
16
 
15
17
  "sap/ui/fl/apply/_internal/changes/descriptor/ovp/AddNewCard": undefined;
@@ -86,8 +88,6 @@ declare namespace sap {
86
88
 
87
89
  "sap/ui/fl/ChangePersistenceFactory": undefined;
88
90
 
89
- "sap/ui/fl/ControlPersonalizationAPI": undefined;
90
-
91
91
  "sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory": undefined;
92
92
 
93
93
  "sap/ui/fl/descriptorRelated/api/DescriptorInlineChangeFactory": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -559,6 +559,12 @@ declare namespace sap {
559
559
  * Refreshes the card by re-applying the manifest settings and triggering all data requests.
560
560
  */
561
561
  refresh(): void;
562
+ /**
563
+ * @SINCE 1.95
564
+ *
565
+ * Refreshes the card data by triggering all data requests.
566
+ */
567
+ refreshData(): void;
562
568
  /**
563
569
  * @SINCE 1.85
564
570
  * @EXPERIMENTAL (since 1.85)
@@ -776,6 +782,14 @@ declare namespace sap {
776
782
  */
777
783
  action?: (oEvent: sap.ui.base.Event) => void;
778
784
 
785
+ /**
786
+ * @EXPERIMENTAL (since 1.96)
787
+ *
788
+ * Fired when some configuration settings are changed as a result of user interaction. For example - filter
789
+ * value is changed.
790
+ */
791
+ configurationChange?: (oEvent: sap.ui.base.Event) => void;
792
+
779
793
  /**
780
794
  * @EXPERIMENTAL (since 1.72)
781
795
  *
@@ -952,6 +966,55 @@ declare namespace sap {
952
966
  */
953
967
  oListener?: object
954
968
  ): this;
969
+ /**
970
+ * @EXPERIMENTAL (since 1.96)
971
+ *
972
+ * Attaches event handler `fnFunction` to the {@link #event:configurationChange configurationChange} event
973
+ * of this `sap.ui.integration.widgets.Card`.
974
+ *
975
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
976
+ * otherwise it will be bound to this `sap.ui.integration.widgets.Card` itself.
977
+ *
978
+ * Fired when some configuration settings are changed as a result of user interaction. For example - filter
979
+ * value is changed.
980
+ */
981
+ attachConfigurationChange(
982
+ /**
983
+ * An application-specific payload object that will be passed to the event handler along with the event
984
+ * object when firing the event
985
+ */
986
+ oData: object,
987
+ /**
988
+ * The function to be called when the event occurs
989
+ */
990
+ fnFunction: (p1: sap.ui.base.Event) => void,
991
+ /**
992
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.widgets.Card` itself
993
+ */
994
+ oListener?: object
995
+ ): this;
996
+ /**
997
+ * @EXPERIMENTAL (since 1.96)
998
+ *
999
+ * Attaches event handler `fnFunction` to the {@link #event:configurationChange configurationChange} event
1000
+ * of this `sap.ui.integration.widgets.Card`.
1001
+ *
1002
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1003
+ * otherwise it will be bound to this `sap.ui.integration.widgets.Card` itself.
1004
+ *
1005
+ * Fired when some configuration settings are changed as a result of user interaction. For example - filter
1006
+ * value is changed.
1007
+ */
1008
+ attachConfigurationChange(
1009
+ /**
1010
+ * The function to be called when the event occurs
1011
+ */
1012
+ fnFunction: (p1: sap.ui.base.Event) => void,
1013
+ /**
1014
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.widgets.Card` itself
1015
+ */
1016
+ oListener?: object
1017
+ ): this;
955
1018
  /**
956
1019
  * Attaches event handler `fnFunction` to the {@link #event:manifestApplied manifestApplied} event of this
957
1020
  * `sap.ui.integration.widgets.Card`.
@@ -1070,6 +1133,24 @@ declare namespace sap {
1070
1133
  */
1071
1134
  oListener?: object
1072
1135
  ): this;
1136
+ /**
1137
+ * @EXPERIMENTAL (since 1.96)
1138
+ *
1139
+ * Detaches event handler `fnFunction` from the {@link #event:configurationChange configurationChange} event
1140
+ * of this `sap.ui.integration.widgets.Card`.
1141
+ *
1142
+ * The passed function and listener object must match the ones used for event registration.
1143
+ */
1144
+ detachConfigurationChange(
1145
+ /**
1146
+ * The function to be called, when the event occurs
1147
+ */
1148
+ fnFunction: (p1: sap.ui.base.Event) => void,
1149
+ /**
1150
+ * Context object on which the given function had to be called
1151
+ */
1152
+ oListener?: object
1153
+ ): this;
1073
1154
  /**
1074
1155
  * Detaches event handler `fnFunction` from the {@link #event:manifestApplied manifestApplied} event of
1075
1156
  * this `sap.ui.integration.widgets.Card`.
@@ -1135,6 +1216,31 @@ declare namespace sap {
1135
1216
  type?: sap.ui.integration.CardActionType;
1136
1217
  }
1137
1218
  ): boolean;
1219
+ /**
1220
+ * @EXPERIMENTAL (since 1.96)
1221
+ *
1222
+ * Fires event {@link #event:configurationChange configurationChange} to attached listeners.
1223
+ */
1224
+ fireConfigurationChange(
1225
+ /**
1226
+ * Parameters to pass along with the event
1227
+ */
1228
+ mParameters?: {
1229
+ /**
1230
+ * Changed configuration settings.
1231
+ *
1232
+ * Example:
1233
+ * ```javascript
1234
+ *
1235
+ * {
1236
+ * "/sap.card/configuration/filters/shipper/value": "key3",
1237
+ * "/sap.card/configuration/filters/item/value": "key2",
1238
+ * }
1239
+ * ```
1240
+ */
1241
+ changes?: object;
1242
+ }
1243
+ ): this;
1138
1244
  /**
1139
1245
  * Fires event {@link #event:manifestApplied manifestApplied} to attached listeners.
1140
1246
  */
@@ -1351,6 +1457,12 @@ declare namespace sap {
1351
1457
  * Refreshes the card by re-applying the manifest settings and triggering all data requests.
1352
1458
  */
1353
1459
  refresh(): void;
1460
+ /**
1461
+ * @SINCE 1.95
1462
+ *
1463
+ * Refreshes the card data by triggering all data requests.
1464
+ */
1465
+ refreshData(): void;
1354
1466
  /**
1355
1467
  * @SINCE 1.85
1356
1468
  * @EXPERIMENTAL (since 1.85)
@@ -1688,6 +1800,14 @@ declare namespace sap {
1688
1800
  */
1689
1801
  action?: (oEvent: sap.ui.base.Event) => void;
1690
1802
 
1803
+ /**
1804
+ * @EXPERIMENTAL (since 1.96)
1805
+ *
1806
+ * Fired when some card configuration settings are changed as a result of user interaction. For example
1807
+ * - filter value is changed.
1808
+ */
1809
+ cardConfigurationChange?: (oEvent: sap.ui.base.Event) => void;
1810
+
1691
1811
  /**
1692
1812
  * @EXPERIMENTAL (since 1.91)
1693
1813
  *
@@ -2350,6 +2470,55 @@ declare namespace sap {
2350
2470
  */
2351
2471
  oListener?: object
2352
2472
  ): this;
2473
+ /**
2474
+ * @EXPERIMENTAL (since 1.96)
2475
+ *
2476
+ * Attaches event handler `fnFunction` to the {@link #event:cardConfigurationChange cardConfigurationChange}
2477
+ * event of this `sap.ui.integration.Host`.
2478
+ *
2479
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2480
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
2481
+ *
2482
+ * Fired when some card configuration settings are changed as a result of user interaction. For example
2483
+ * - filter value is changed.
2484
+ */
2485
+ attachCardConfigurationChange(
2486
+ /**
2487
+ * An application-specific payload object that will be passed to the event handler along with the event
2488
+ * object when firing the event
2489
+ */
2490
+ oData: object,
2491
+ /**
2492
+ * The function to be called when the event occurs
2493
+ */
2494
+ fnFunction: (p1: sap.ui.base.Event) => void,
2495
+ /**
2496
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
2497
+ */
2498
+ oListener?: object
2499
+ ): this;
2500
+ /**
2501
+ * @EXPERIMENTAL (since 1.96)
2502
+ *
2503
+ * Attaches event handler `fnFunction` to the {@link #event:cardConfigurationChange cardConfigurationChange}
2504
+ * event of this `sap.ui.integration.Host`.
2505
+ *
2506
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2507
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
2508
+ *
2509
+ * Fired when some card configuration settings are changed as a result of user interaction. For example
2510
+ * - filter value is changed.
2511
+ */
2512
+ attachCardConfigurationChange(
2513
+ /**
2514
+ * The function to be called when the event occurs
2515
+ */
2516
+ fnFunction: (p1: sap.ui.base.Event) => void,
2517
+ /**
2518
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
2519
+ */
2520
+ oListener?: object
2521
+ ): this;
2353
2522
  /**
2354
2523
  * @EXPERIMENTAL (since 1.91)
2355
2524
  *
@@ -2395,6 +2564,32 @@ declare namespace sap {
2395
2564
  */
2396
2565
  oListener?: object
2397
2566
  ): this;
2567
+ /**
2568
+ * @EXPERIMENTAL (since 1.97)
2569
+ *
2570
+ * This functions is called when a CSRF token has expired.
2571
+ */
2572
+ csrfTokenExpired(
2573
+ /**
2574
+ * The CSRF token configuration.
2575
+ */
2576
+ mCSRFTokenConfig: object
2577
+ ): void;
2578
+ /**
2579
+ * @EXPERIMENTAL (since 1.97)
2580
+ *
2581
+ * This functions is called when a CSRF token is fetched.
2582
+ */
2583
+ csrfTokenFetched(
2584
+ /**
2585
+ * The CSRF token configuration.
2586
+ */
2587
+ mCSRFTokenConfig: object,
2588
+ /**
2589
+ * A promise which resolves the CSRF token to its value.
2590
+ */
2591
+ pCSRFTokenValuePromise: Promise<any>
2592
+ ): void;
2398
2593
  /**
2399
2594
  * @EXPERIMENTAL (since 1.75)
2400
2595
  *
@@ -2412,6 +2607,24 @@ declare namespace sap {
2412
2607
  */
2413
2608
  oListener?: object
2414
2609
  ): this;
2610
+ /**
2611
+ * @EXPERIMENTAL (since 1.96)
2612
+ *
2613
+ * Detaches event handler `fnFunction` from the {@link #event:cardConfigurationChange cardConfigurationChange}
2614
+ * event of this `sap.ui.integration.Host`.
2615
+ *
2616
+ * The passed function and listener object must match the ones used for event registration.
2617
+ */
2618
+ detachCardConfigurationChange(
2619
+ /**
2620
+ * The function to be called, when the event occurs
2621
+ */
2622
+ fnFunction: (p1: sap.ui.base.Event) => void,
2623
+ /**
2624
+ * Context object on which the given function had to be called
2625
+ */
2626
+ oListener?: object
2627
+ ): this;
2415
2628
  /**
2416
2629
  * @EXPERIMENTAL (since 1.91)
2417
2630
  *
@@ -2464,6 +2677,35 @@ declare namespace sap {
2464
2677
  type?: sap.ui.integration.CardActionType;
2465
2678
  }
2466
2679
  ): boolean;
2680
+ /**
2681
+ * @EXPERIMENTAL (since 1.96)
2682
+ *
2683
+ * Fires event {@link #event:cardConfigurationChange cardConfigurationChange} to attached listeners.
2684
+ */
2685
+ fireCardConfigurationChange(
2686
+ /**
2687
+ * Parameters to pass along with the event
2688
+ */
2689
+ mParameters?: {
2690
+ /**
2691
+ * The card the changes are fired from.
2692
+ */
2693
+ card?: sap.ui.core.Control;
2694
+ /**
2695
+ * Changed configuration settings.
2696
+ *
2697
+ * Example:
2698
+ * ```javascript
2699
+ *
2700
+ * {
2701
+ * "/sap.card/configuration/filters/shipper/value": "key3",
2702
+ * "/sap.card/configuration/filters/item/value": "key2"
2703
+ * }
2704
+ * ```
2705
+ */
2706
+ changes?: object;
2707
+ }
2708
+ ): this;
2467
2709
  /**
2468
2710
  * @EXPERIMENTAL (since 1.91)
2469
2711
  *
@@ -2519,6 +2761,17 @@ declare namespace sap {
2519
2761
  */
2520
2762
  sPath: string
2521
2763
  ): Promise<any>;
2764
+ /**
2765
+ * @EXPERIMENTAL (since 1.97)
2766
+ *
2767
+ * Resolves the CSRF token and returns a Promise with its value.
2768
+ */
2769
+ getCsrfToken(
2770
+ /**
2771
+ * The CSRF token configuration.
2772
+ */
2773
+ mCSRFTokenConfig: object
2774
+ ): Promise<any>;
2522
2775
  /**
2523
2776
  * Resolves the destination and returns its URL.
2524
2777
  */
@@ -2586,6 +2839,21 @@ declare namespace sap {
2586
2839
  fnResolveDestination: Function
2587
2840
  ): this;
2588
2841
  }
2842
+ /**
2843
+ * @SINCE 1.96
2844
+ *
2845
+ * Defines the layout type of the List card attributes.
2846
+ */
2847
+ enum AttributesLayoutType {
2848
+ /**
2849
+ * One column.
2850
+ */
2851
+ OneColumn = "OneColumn",
2852
+ /**
2853
+ * Two columns.
2854
+ */
2855
+ TwoColumns = "TwoColumns",
2856
+ }
2589
2857
  /**
2590
2858
  * @EXPERIMENTAL (since 1.64)
2591
2859
  *
@@ -2817,8 +3085,12 @@ declare namespace sap {
2817
3085
 
2818
3086
  "sap/ui/integration/library": undefined;
2819
3087
 
3088
+ "sap/ui/integration/ManifestResolver": undefined;
3089
+
2820
3090
  "sap/ui/integration/services/Service": undefined;
2821
3091
 
3092
+ "sap/ui/integration/util/CsrfTokenHandler": undefined;
3093
+
2822
3094
  "sap/ui/integration/util/DataProvider": undefined;
2823
3095
 
2824
3096
  "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 namespace sap {
4
4
  namespace ui {
@@ -1575,6 +1575,24 @@ declare namespace sap {
1575
1575
  getActiveGridSettings(): void;
1576
1576
 
1577
1577
  isResponsive(): boolean;
1578
+ /**
1579
+ * Hook function for the Grid's onAfterRendering
1580
+ */
1581
+ onGridAfterRendering(
1582
+ /**
1583
+ * The grid
1584
+ */
1585
+ oGrid: sap.ui.layout.cssgrid.IGridConfigurable
1586
+ ): void;
1587
+ /**
1588
+ * Hook function for the Grid's resize. Will be called if the grid layout is responsive.
1589
+ */
1590
+ onGridResize(
1591
+ /**
1592
+ * The event passed by the resize handler
1593
+ */
1594
+ oEvent: jQuery.Event
1595
+ ): void;
1578
1596
  }
1579
1597
  /**
1580
1598
  * Add handlers for a sap.ui.layout.cssgrid.IGridConfigurable control lifecycle events. Applies the grid
@@ -1,9 +1,21 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
5
+ "sap/ui/mdc/ActionToolbar": undefined;
6
+
7
+ "sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
8
+
5
9
  "sap/ui/mdc/Chart": undefined;
6
10
 
11
+ "sap/ui/mdc/chart/DimensionItem": undefined;
12
+
13
+ "sap/ui/mdc/chart/Item": undefined;
14
+
15
+ "sap/ui/mdc/chart/MeasureItem": undefined;
16
+
17
+ "sap/ui/mdc/chart/SelectionDetailsActions": undefined;
18
+
7
19
  "sap/ui/mdc/chartNew/ChartSelectionDetailsNew": undefined;
8
20
 
9
21
  "sap/ui/mdc/condition/Condition": undefined;
@@ -20,8 +32,14 @@ declare namespace sap {
20
32
 
21
33
  "sap/ui/mdc/condition/Operator": undefined;
22
34
 
35
+ "sap/ui/mdc/condition/OperatorDynamicDateOption": undefined;
36
+
23
37
  "sap/ui/mdc/condition/RangeOperator": undefined;
24
38
 
39
+ "sap/ui/mdc/Control": undefined;
40
+
41
+ "sap/ui/mdc/Element": undefined;
42
+
25
43
  "sap/ui/mdc/enum/ActionToolbarActionAlignment": undefined;
26
44
 
27
45
  "sap/ui/mdc/enum/BaseType": undefined;
@@ -38,6 +56,8 @@ declare namespace sap {
38
56
 
39
57
  "sap/ui/mdc/enum/PersistenceMode": undefined;
40
58
 
59
+ "sap/ui/mdc/enum/SelectType": undefined;
60
+
41
61
  "sap/ui/mdc/Field": undefined;
42
62
 
43
63
  "sap/ui/mdc/field/BoolFieldHelp": undefined;
@@ -54,6 +74,8 @@ declare namespace sap {
54
74
 
55
75
  "sap/ui/mdc/field/DefineConditionPanel": undefined;
56
76
 
77
+ "sap/ui/mdc/field/DynamicDateRangeConditionsType": undefined;
78
+
57
79
  "sap/ui/mdc/field/FieldBase": undefined;
58
80
 
59
81
  "sap/ui/mdc/field/FieldBaseDelegate": undefined;
@@ -62,6 +84,8 @@ declare namespace sap {
62
84
 
63
85
  "sap/ui/mdc/field/FieldHelpBaseDelegate": undefined;
64
86
 
87
+ "sap/ui/mdc/field/FieldInfoBase": undefined;
88
+
65
89
  "sap/ui/mdc/field/FieldInput": undefined;
66
90
 
67
91
  "sap/ui/mdc/field/FieldMultiInput": undefined;
@@ -114,6 +138,8 @@ declare namespace sap {
114
138
 
115
139
  "sap/ui/mdc/mixin/FilterIntegrationMixin": undefined;
116
140
 
141
+ "sap/ui/mdc/mixin/PromiseMixin": undefined;
142
+
117
143
  "sap/ui/mdc/MultiValueField": undefined;
118
144
 
119
145
  "sap/ui/mdc/odata/v4/FieldBaseDelegate": undefined;
@@ -122,19 +148,11 @@ declare namespace sap {
122
148
 
123
149
  "sap/ui/mdc/p13n/AdaptationProvider": undefined;
124
150
 
125
- "sap/ui/mdc/p13n/DefaultProviderRegistry": undefined;
126
-
127
151
  "sap/ui/mdc/p13n/Engine": undefined;
128
152
 
129
153
  "sap/ui/mdc/p13n/modification/ModificationHandler": undefined;
130
154
 
131
- "sap/ui/mdc/p13n/panels/GroupPanel": undefined;
132
-
133
- "sap/ui/mdc/p13n/panels/QueryPanel": undefined;
134
-
135
- "sap/ui/mdc/p13n/panels/SortQueryPanel": undefined;
136
-
137
- "sap/ui/mdc/p13n/panels/Wrapper": undefined;
155
+ "sap/ui/mdc/p13n/modules/DefaultProviderRegistry": undefined;
138
156
 
139
157
  "sap/ui/mdc/p13n/StateUtil": undefined;
140
158
 
@@ -142,10 +160,52 @@ declare namespace sap {
142
160
 
143
161
  "sap/ui/mdc/p13n/UIManager": undefined;
144
162
 
163
+ "sap/ui/mdc/Table": undefined;
164
+
165
+ "sap/ui/mdc/table/Column": undefined;
166
+
167
+ "sap/ui/mdc/table/CreationRow": undefined;
168
+
169
+ "sap/ui/mdc/table/GridTableType": undefined;
170
+
171
+ "sap/ui/mdc/table/ResponsiveTableType": undefined;
172
+
173
+ "sap/ui/mdc/table/RowSettings": undefined;
174
+
175
+ "sap/ui/mdc/table/TableTypeBase": undefined;
176
+
145
177
  "sap/ui/mdc/util/DateUtil": undefined;
146
178
 
147
179
  "sap/ui/mdc/util/FilterUtil": undefined;
148
180
 
181
+ "sap/ui/mdc/util/PromiseCache": undefined;
182
+
149
183
  "sap/ui/mdc/util/TypeUtil": undefined;
184
+
185
+ "sap/ui/mdc/ValueHelp": undefined;
186
+
187
+ "sap/ui/mdc/valuehelp/base/Container": undefined;
188
+
189
+ "sap/ui/mdc/valuehelp/base/Content": undefined;
190
+
191
+ "sap/ui/mdc/valuehelp/base/DialogTab": undefined;
192
+
193
+ "sap/ui/mdc/valuehelp/base/FilterableListContent": undefined;
194
+
195
+ "sap/ui/mdc/valuehelp/base/ListContent": undefined;
196
+
197
+ "sap/ui/mdc/valuehelp/content/Bool": undefined;
198
+
199
+ "sap/ui/mdc/valuehelp/content/Conditions": undefined;
200
+
201
+ "sap/ui/mdc/valuehelp/content/FixedList": undefined;
202
+
203
+ "sap/ui/mdc/valuehelp/content/MTable": undefined;
204
+
205
+ "sap/ui/mdc/valuehelp/Dialog": undefined;
206
+
207
+ "sap/ui/mdc/valuehelp/Popover": undefined;
208
+
209
+ "sap/ui/mdc/ValueHelpDelegate": undefined;
150
210
  }
151
211
  }
@@ -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/rta/api/startAdaptation" {
4
4
  /**
@@ -15,9 +15,9 @@ declare module "sap/ui/rta/api/startAdaptation" {
15
15
  */
16
16
  mOptions: {
17
17
  /**
18
- * Control instance from where UI adaptation should be started
18
+ * Control instance to get the AppComponent. This then is used to start UI adaptation.
19
19
  */
20
- rootControl: sap.ui.core.Element | sap.ui.core.UIComponent;
20
+ rootControl: sap.ui.core.Control | sap.ui.core.UIComponent;
21
21
  /**
22
22
  * Map with flex-related settings
23
23
  */
@@ -66,9 +66,9 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
66
66
  */
67
67
  mPropertyBag: {
68
68
  /**
69
- * Control instance from where key user adaptation should be started
69
+ * Control instance to get the AppComponent. This then is used to start UI adaptation.
70
70
  */
71
- rootControl: sap.ui.core.Element | sap.ui.core.UIComponent;
71
+ rootControl: sap.ui.core.Control | sap.ui.core.UIComponent;
72
72
  }
73
73
  ): Promise<any>;
74
74
  }
@@ -107,11 +107,5 @@ declare namespace sap {
107
107
  "sap/ui/rta/service/Property": undefined;
108
108
 
109
109
  "sap/ui/rta/service/Selection": undefined;
110
-
111
- "sap/ui/rta/util/changeVisualization/ChangeIndicator": undefined;
112
-
113
- "sap/ui/rta/util/changeVisualization/ChangeIndicatorRegistry": undefined;
114
-
115
- "sap/ui/rta/util/changeVisualization/ChangeVisualization": undefined;
116
110
  }
117
111
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.94.0
1
+ // For Library Version: 1.97.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -238,7 +238,7 @@ declare namespace sap {
238
238
  static getType(): string;
239
239
  }
240
240
  /**
241
- * @SINCE 1.94.0
241
+ * @SINCE 1.97.0
242
242
  *
243
243
  * Defines the Audiences.
244
244
  */
@@ -257,7 +257,7 @@ declare namespace sap {
257
257
  Internal = "Internal",
258
258
  }
259
259
  /**
260
- * @SINCE 1.94.0
260
+ * @SINCE 1.97.0
261
261
  *
262
262
  * Issue Categories.
263
263
  */
@@ -312,7 +312,7 @@ declare namespace sap {
312
312
  Usage = "Usage",
313
313
  }
314
314
  /**
315
- * @SINCE 1.94.0
315
+ * @SINCE 1.97.0
316
316
  *
317
317
  * Analysis history formats.
318
318
  */
@@ -327,7 +327,7 @@ declare namespace sap {
327
327
  String = "String",
328
328
  }
329
329
  /**
330
- * @SINCE 1.94.0
330
+ * @SINCE 1.97.0
331
331
  *
332
332
  * Defines severity types.
333
333
  */
@@ -346,7 +346,7 @@ declare namespace sap {
346
346
  Medium = "Medium",
347
347
  }
348
348
  /**
349
- * @SINCE 1.94.0
349
+ * @SINCE 1.97.0
350
350
  *
351
351
  * Contains the available system presets.
352
352
  */