@openui5/ts-types 1.115.1 → 1.117.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.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -57,15 +57,6 @@ declare namespace sap {
57
57
  | sap.ui.base.ManagedObject.PropertyBindingInfo
58
58
  | `{${string}}`;
59
59
 
60
- /**
61
- * If set to `true`, the key for a vendor variant will be added manually.
62
- * **Note:** This flag is only used internally.
63
- */
64
- manualVariantKey?:
65
- | boolean
66
- | sap.ui.base.ManagedObject.PropertyBindingInfo
67
- | `{${string}}`;
68
-
69
60
  /**
70
61
  * Indicates that the control is in error state. If set to `true`, an error message will be displayed whenever
71
62
  * the variant is opened.
@@ -136,9 +127,7 @@ declare namespace sap {
136
127
  * This event is fired when the Save View dialog or the Save As dialog is closed with the
137
128
  * save button.
138
129
  */
139
- save?: (
140
- oEvent: sap.ui.base.Event<sap.ui.fl.variants.VariantManagement$SaveEventParameters>
141
- ) => void;
130
+ save?: (oEvent: VariantManagement$SaveEvent) => void;
142
131
 
143
132
  /**
144
133
  * This event is fired when users presses the cancel button inside Save As dialog.
@@ -148,16 +137,12 @@ declare namespace sap {
148
137
  /**
149
138
  * This event is fired when users apply changes to variants in the Manage Views dialog.
150
139
  */
151
- manage?: (
152
- oEvent: sap.ui.base.Event<sap.ui.fl.variants.VariantManagement$ManageEventParameters>
153
- ) => void;
140
+ manage?: (oEvent: VariantManagement$ManageEvent) => void;
154
141
 
155
142
  /**
156
143
  * This event is fired when a new variant is selected.
157
144
  */
158
- select?: (
159
- oEvent: sap.ui.base.Event<sap.ui.fl.variants.VariantManagement$SelectEventParameters>
160
- ) => void;
145
+ select?: (oEvent: VariantManagement$SelectEvent) => void;
161
146
  }
162
147
 
163
148
  interface VariantManagement$CancelEventParameters {}
@@ -776,17 +761,6 @@ declare namespace sap {
776
761
  * @returns Value of property `inErrorState`
777
762
  */
778
763
  getInErrorState(): boolean;
779
- /**
780
- * Gets current value of property {@link #getManualVariantKey manualVariantKey}.
781
- *
782
- * If set to `true`, the key for a vendor variant will be added manually.
783
- * **Note:** This flag is only used internally.
784
- *
785
- * Default value is `false`.
786
- *
787
- * @returns Value of property `manualVariantKey`
788
- */
789
- getManualVariantKey(): boolean;
790
764
  /**
791
765
  * @since 1.109
792
766
  *
@@ -996,24 +970,6 @@ declare namespace sap {
996
970
  */
997
971
  bInErrorState?: boolean
998
972
  ): this;
999
- /**
1000
- * Sets a new value for property {@link #getManualVariantKey manualVariantKey}.
1001
- *
1002
- * If set to `true`, the key for a vendor variant will be added manually.
1003
- * **Note:** This flag is only used internally.
1004
- *
1005
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1006
- *
1007
- * Default value is `false`.
1008
- *
1009
- * @returns Reference to `this` in order to allow method chaining
1010
- */
1011
- setManualVariantKey(
1012
- /**
1013
- * New value for property `manualVariantKey`
1014
- */
1015
- bManualVariantKey?: boolean
1016
- ): this;
1017
973
  /**
1018
974
  * @since 1.109
1019
975
  *
@@ -1126,45 +1082,30 @@ declare namespace sap {
1126
1082
  ): this;
1127
1083
  }
1128
1084
 
1129
- /**
1130
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$CancelEventParameters'
1131
- * in 1.115.1 and any later releases.
1132
- */
1133
- type $VariantManagementCancelEventParameters = sap.ui.fl.variants.VariantManagement$CancelEventParameters;
1134
-
1135
- type VariantManagement$CancelEvent = sap.ui.base.Event<VariantManagement$CancelEventParameters>;
1136
-
1137
- /**
1138
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$InitializedEventParameters'
1139
- * in 1.115.1 and any later releases.
1140
- */
1141
- type $VariantManagementInitializedEventParameters = sap.ui.fl.variants.VariantManagement$InitializedEventParameters;
1142
-
1143
- type VariantManagement$InitializedEvent = sap.ui.base.Event<VariantManagement$InitializedEventParameters>;
1144
-
1145
- /**
1146
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$ManageEventParameters'
1147
- * in 1.115.1 and any later releases.
1148
- */
1149
- type $VariantManagementManageEventParameters = sap.ui.fl.variants.VariantManagement$ManageEventParameters;
1150
-
1151
- type VariantManagement$ManageEvent = sap.ui.base.Event<VariantManagement$ManageEventParameters>;
1152
-
1153
- /**
1154
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SaveEventParameters'
1155
- * in 1.115.1 and any later releases.
1156
- */
1157
- type $VariantManagementSaveEventParameters = sap.ui.fl.variants.VariantManagement$SaveEventParameters;
1158
-
1159
- type VariantManagement$SaveEvent = sap.ui.base.Event<VariantManagement$SaveEventParameters>;
1160
-
1161
- /**
1162
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SelectEventParameters'
1163
- * in 1.115.1 and any later releases.
1164
- */
1165
- type $VariantManagementSelectEventParameters = sap.ui.fl.variants.VariantManagement$SelectEventParameters;
1166
-
1167
- type VariantManagement$SelectEvent = sap.ui.base.Event<VariantManagement$SelectEventParameters>;
1085
+ type VariantManagement$CancelEvent = sap.ui.base.Event<
1086
+ VariantManagement$CancelEventParameters,
1087
+ VariantManagement
1088
+ >;
1089
+
1090
+ type VariantManagement$InitializedEvent = sap.ui.base.Event<
1091
+ VariantManagement$InitializedEventParameters,
1092
+ VariantManagement
1093
+ >;
1094
+
1095
+ type VariantManagement$ManageEvent = sap.ui.base.Event<
1096
+ VariantManagement$ManageEventParameters,
1097
+ VariantManagement
1098
+ >;
1099
+
1100
+ type VariantManagement$SaveEvent = sap.ui.base.Event<
1101
+ VariantManagement$SaveEventParameters,
1102
+ VariantManagement
1103
+ >;
1104
+
1105
+ type VariantManagement$SelectEvent = sap.ui.base.Event<
1106
+ VariantManagement$SelectEventParameters,
1107
+ VariantManagement
1108
+ >;
1168
1109
  }
1169
1110
  /**
1170
1111
  * The `sap.ui.fl.write` namespace contains all code to create, update, and reset flex objects. Additional
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -421,8 +421,8 @@ declare namespace sap {
421
421
  *
422
422
  * Gets current value of property {@link #getBaseUrl baseUrl}.
423
423
  *
424
- * Defines the base URL of the Card Manifest. It should be used when manifest property is an object instead
425
- * of a URL.
424
+ * Defines the base URL of the card manifest. It should be used when manifest property is an object instead
425
+ * of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
426
426
  *
427
427
  * @returns Value of property `baseUrl`
428
428
  */
@@ -519,6 +519,12 @@ declare namespace sap {
519
519
  */
520
520
  eCardArea?: sap.ui.integration.CardArea
521
521
  ): void;
522
+ /**
523
+ * @experimental (since 1.117)
524
+ *
525
+ * Hides the message previously shown by showMessage.
526
+ */
527
+ hideMessage(): void;
522
528
  /**
523
529
  * @since 1.85
524
530
  * @experimental (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
@@ -768,8 +774,8 @@ declare namespace sap {
768
774
  * @since 1.70
769
775
  * @experimental (since 1.70)
770
776
  *
771
- * Defines the base URL of the Card Manifest. It should be used when manifest property is an object instead
772
- * of a URL.
777
+ * Defines the base URL of the card manifest. It should be used when manifest property is an object instead
778
+ * of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
773
779
  */
774
780
  baseUrl?:
775
781
  | sap.ui.core.URI
@@ -878,9 +884,7 @@ declare namespace sap {
878
884
  * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
879
885
  * one to handle the action by calling `oEvent.preventDefault()`.
880
886
  */
881
- action?: (
882
- oEvent: sap.ui.base.Event<sap.ui.integration.widgets.Card$ActionEventParameters>
883
- ) => void;
887
+ action?: (oEvent: Card$ActionEvent) => void;
884
888
 
885
889
  /**
886
890
  * @experimental (since 1.96)
@@ -888,9 +892,7 @@ declare namespace sap {
888
892
  * Fired when some configuration settings are changed as a result of user interaction. For example - filter
889
893
  * value is changed.
890
894
  */
891
- configurationChange?: (
892
- oEvent: sap.ui.base.Event<sap.ui.integration.widgets.Card$ConfigurationChangeEventParameters>
893
- ) => void;
895
+ configurationChange?: (oEvent: Card$ConfigurationChangeEvent) => void;
894
896
 
895
897
  /**
896
898
  * @experimental (since 1.72)
@@ -1543,8 +1545,8 @@ declare namespace sap {
1543
1545
  *
1544
1546
  * Gets current value of property {@link #getBaseUrl baseUrl}.
1545
1547
  *
1546
- * Defines the base URL of the Card Manifest. It should be used when manifest property is an object instead
1547
- * of a URL.
1548
+ * Defines the base URL of the card manifest. It should be used when manifest property is an object instead
1549
+ * of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
1548
1550
  *
1549
1551
  * @returns Value of property `baseUrl`
1550
1552
  */
@@ -1758,6 +1760,12 @@ declare namespace sap {
1758
1760
  */
1759
1761
  eCardArea?: sap.ui.integration.CardArea
1760
1762
  ): void;
1763
+ /**
1764
+ * @experimental (since 1.117)
1765
+ *
1766
+ * Hides the message previously shown by showMessage.
1767
+ */
1768
+ hideMessage(): void;
1761
1769
  /**
1762
1770
  * @since 1.85
1763
1771
  * @experimental (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
@@ -1917,8 +1925,8 @@ declare namespace sap {
1917
1925
  *
1918
1926
  * Sets a new value for property {@link #getBaseUrl baseUrl}.
1919
1927
  *
1920
- * Defines the base URL of the Card Manifest. It should be used when manifest property is an object instead
1921
- * of a URL.
1928
+ * Defines the base URL of the card manifest. It should be used when manifest property is an object instead
1929
+ * of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
1922
1930
  *
1923
1931
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1924
1932
  *
@@ -2177,45 +2185,30 @@ declare namespace sap {
2177
2185
  validateControls(): boolean;
2178
2186
  }
2179
2187
 
2180
- /**
2181
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ActionEventParameters'
2182
- * in 1.115.1 and any later releases.
2183
- */
2184
- type $CardActionEventParameters = sap.ui.integration.widgets.Card$ActionEventParameters;
2185
-
2186
- type Card$ActionEvent = sap.ui.base.Event<Card$ActionEventParameters>;
2187
-
2188
- /**
2189
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ConfigurationChangeEventParameters'
2190
- * in 1.115.1 and any later releases.
2191
- */
2192
- type $CardConfigurationChangeEventParameters = sap.ui.integration.widgets.Card$ConfigurationChangeEventParameters;
2193
-
2194
- type Card$ConfigurationChangeEvent = sap.ui.base.Event<Card$ConfigurationChangeEventParameters>;
2195
-
2196
- /**
2197
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ManifestAppliedEventParameters'
2198
- * in 1.115.1 and any later releases.
2199
- */
2200
- type $CardManifestAppliedEventParameters = sap.ui.integration.widgets.Card$ManifestAppliedEventParameters;
2201
-
2202
- type Card$ManifestAppliedEvent = sap.ui.base.Event<Card$ManifestAppliedEventParameters>;
2203
-
2204
- /**
2205
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ManifestReadyEventParameters'
2206
- * in 1.115.1 and any later releases.
2207
- */
2208
- type $CardManifestReadyEventParameters = sap.ui.integration.widgets.Card$ManifestReadyEventParameters;
2209
-
2210
- type Card$ManifestReadyEvent = sap.ui.base.Event<Card$ManifestReadyEventParameters>;
2211
-
2212
- /**
2213
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$StateChangedEventParameters'
2214
- * in 1.115.1 and any later releases.
2215
- */
2216
- type $CardStateChangedEventParameters = sap.ui.integration.widgets.Card$StateChangedEventParameters;
2217
-
2218
- type Card$StateChangedEvent = sap.ui.base.Event<Card$StateChangedEventParameters>;
2188
+ type Card$ActionEvent = sap.ui.base.Event<
2189
+ Card$ActionEventParameters,
2190
+ Card
2191
+ >;
2192
+
2193
+ type Card$ConfigurationChangeEvent = sap.ui.base.Event<
2194
+ Card$ConfigurationChangeEventParameters,
2195
+ Card
2196
+ >;
2197
+
2198
+ type Card$ManifestAppliedEvent = sap.ui.base.Event<
2199
+ Card$ManifestAppliedEventParameters,
2200
+ Card
2201
+ >;
2202
+
2203
+ type Card$ManifestReadyEvent = sap.ui.base.Event<
2204
+ Card$ManifestReadyEventParameters,
2205
+ Card
2206
+ >;
2207
+
2208
+ type Card$StateChangedEvent = sap.ui.base.Event<
2209
+ Card$StateChangedEventParameters,
2210
+ Card
2211
+ >;
2219
2212
  }
2220
2213
 
2221
2214
  interface $ActionDefinitionSettings extends sap.ui.core.$ElementSettings {
@@ -2315,9 +2308,7 @@ declare namespace sap {
2315
2308
  * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
2316
2309
  * one to handle the action by calling `oEvent.preventDefault()`.
2317
2310
  */
2318
- action?: (
2319
- oEvent: sap.ui.base.Event<sap.ui.integration.Extension$ActionEventParameters>
2320
- ) => void;
2311
+ action?: (oEvent: Extension$ActionEvent) => void;
2321
2312
  }
2322
2313
 
2323
2314
  interface $HostSettings extends sap.ui.core.$ElementSettings {
@@ -2358,9 +2349,7 @@ declare namespace sap {
2358
2349
  * In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
2359
2350
  * one to handle the action by calling `oEvent.preventDefault()`.
2360
2351
  */
2361
- action?: (
2362
- oEvent: sap.ui.base.Event<sap.ui.integration.Host$ActionEventParameters>
2363
- ) => void;
2352
+ action?: (oEvent: Host$ActionEvent) => void;
2364
2353
 
2365
2354
  /**
2366
2355
  * @experimental (since 1.96)
@@ -2369,7 +2358,7 @@ declare namespace sap {
2369
2358
  * - filter value is changed.
2370
2359
  */
2371
2360
  cardConfigurationChange?: (
2372
- oEvent: sap.ui.base.Event<sap.ui.integration.Host$CardConfigurationChangeEventParameters>
2361
+ oEvent: Host$CardConfigurationChangeEvent
2373
2362
  ) => void;
2374
2363
 
2375
2364
  /**
@@ -2378,18 +2367,22 @@ declare namespace sap {
2378
2367
  * Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
2379
2368
  * the card, a filter is changed or data is refreshed.
2380
2369
  */
2381
- cardStateChanged?: (
2382
- oEvent: sap.ui.base.Event<sap.ui.integration.Host$CardStateChangedEventParameters>
2383
- ) => void;
2370
+ cardStateChanged?: (oEvent: Host$CardStateChangedEvent) => void;
2371
+
2372
+ /**
2373
+ * @experimental (since 1.116)
2374
+ *
2375
+ * Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
2376
+ * or data changes.
2377
+ */
2378
+ cardInitialized?: (oEvent: Host$CardInitializedEvent) => void;
2384
2379
 
2385
2380
  /**
2386
2381
  * @experimental (since 1.91)
2387
2382
  *
2388
2383
  * Fired when a message from channels like navigator.serviceWorker is received.
2389
2384
  */
2390
- message?: (
2391
- oEvent: sap.ui.base.Event<sap.ui.integration.Host$MessageEventParameters>
2392
- ) => void;
2385
+ message?: (oEvent: Host$MessageEvent) => void;
2393
2386
  }
2394
2387
 
2395
2388
  interface ActionDefinition$PressEventParameters {}
@@ -2469,6 +2462,13 @@ declare namespace sap {
2469
2462
  changes?: object;
2470
2463
  }
2471
2464
 
2465
+ interface Host$CardInitializedEventParameters {
2466
+ /**
2467
+ * The card.
2468
+ */
2469
+ card?: sap.ui.core.Control;
2470
+ }
2471
+
2472
2472
  interface Host$CardStateChangedEventParameters {
2473
2473
  /**
2474
2474
  * The card the changes are fired from.
@@ -3114,6 +3114,25 @@ declare namespace sap {
3114
3114
  * Called after the card is initialized.
3115
3115
  */
3116
3116
  onCardReady(): void;
3117
+ /**
3118
+ * @deprecated (since 1.85) - This property is replaced by the `actions` aggregation of the card;
3119
+ * @experimental (since 1.75) - Disclaimer: this property is in a beta state - incompatible API changes
3120
+ * may be done before its official public release. Use at your own discretion.
3121
+ *
3122
+ * Sets a new value for property {@link #getActions actions}.
3123
+ *
3124
+ * The actions configuration.
3125
+ *
3126
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3127
+ *
3128
+ * @returns Reference to `this` in order to allow method chaining
3129
+ */
3130
+ setActions(
3131
+ /**
3132
+ * New value for property `actions`
3133
+ */
3134
+ sActions: sap.ui.integration.CardMenuAction[]
3135
+ ): this;
3117
3136
  /**
3118
3137
  * Sets current value of property {@link #setFormatters formatters}.
3119
3138
  *
@@ -3310,6 +3329,59 @@ declare namespace sap {
3310
3329
  */
3311
3330
  oListener?: object
3312
3331
  ): this;
3332
+ /**
3333
+ * @experimental (since 1.116)
3334
+ *
3335
+ * Attaches event handler `fnFunction` to the {@link #event:cardInitialized cardInitialized} event of this
3336
+ * `sap.ui.integration.Host`.
3337
+ *
3338
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
3339
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
3340
+ *
3341
+ * Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
3342
+ * or data changes.
3343
+ *
3344
+ * @returns Reference to `this` in order to allow method chaining
3345
+ */
3346
+ attachCardInitialized(
3347
+ /**
3348
+ * An application-specific payload object that will be passed to the event handler along with the event
3349
+ * object when firing the event
3350
+ */
3351
+ oData: object,
3352
+ /**
3353
+ * The function to be called when the event occurs
3354
+ */
3355
+ fnFunction: (p1: Host$CardInitializedEvent) => void,
3356
+ /**
3357
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
3358
+ */
3359
+ oListener?: object
3360
+ ): this;
3361
+ /**
3362
+ * @experimental (since 1.116)
3363
+ *
3364
+ * Attaches event handler `fnFunction` to the {@link #event:cardInitialized cardInitialized} event of this
3365
+ * `sap.ui.integration.Host`.
3366
+ *
3367
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
3368
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
3369
+ *
3370
+ * Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
3371
+ * or data changes.
3372
+ *
3373
+ * @returns Reference to `this` in order to allow method chaining
3374
+ */
3375
+ attachCardInitialized(
3376
+ /**
3377
+ * The function to be called when the event occurs
3378
+ */
3379
+ fnFunction: (p1: Host$CardInitializedEvent) => void,
3380
+ /**
3381
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
3382
+ */
3383
+ oListener?: object
3384
+ ): this;
3313
3385
  /**
3314
3386
  * @experimental (since 1.107)
3315
3387
  *
@@ -3482,6 +3554,26 @@ declare namespace sap {
3482
3554
  */
3483
3555
  oListener?: object
3484
3556
  ): this;
3557
+ /**
3558
+ * @experimental (since 1.116)
3559
+ *
3560
+ * Detaches event handler `fnFunction` from the {@link #event:cardInitialized cardInitialized} event of
3561
+ * this `sap.ui.integration.Host`.
3562
+ *
3563
+ * The passed function and listener object must match the ones used for event registration.
3564
+ *
3565
+ * @returns Reference to `this` in order to allow method chaining
3566
+ */
3567
+ detachCardInitialized(
3568
+ /**
3569
+ * The function to be called, when the event occurs
3570
+ */
3571
+ fnFunction: (p1: Host$CardInitializedEvent) => void,
3572
+ /**
3573
+ * Context object on which the given function had to be called
3574
+ */
3575
+ oListener?: object
3576
+ ): this;
3485
3577
  /**
3486
3578
  * @experimental (since 1.107)
3487
3579
  *
@@ -3553,6 +3645,20 @@ declare namespace sap {
3553
3645
  */
3554
3646
  mParameters?: sap.ui.integration.Host$CardConfigurationChangeEventParameters
3555
3647
  ): this;
3648
+ /**
3649
+ * @experimental (since 1.116)
3650
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3651
+ *
3652
+ * Fires event {@link #event:cardInitialized cardInitialized} to attached listeners.
3653
+ *
3654
+ * @returns Reference to `this` in order to allow method chaining
3655
+ */
3656
+ fireCardInitialized(
3657
+ /**
3658
+ * Parameters to pass along with the event
3659
+ */
3660
+ mParameters?: sap.ui.integration.Host$CardInitializedEventParameters
3661
+ ): this;
3556
3662
  /**
3557
3663
  * @experimental (since 1.107)
3558
3664
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -3963,53 +4069,40 @@ declare namespace sap {
3963
4069
  parameters: object;
3964
4070
  };
3965
4071
 
3966
- /**
3967
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionDefinition$PressEventParameters'
3968
- * in 1.115.1 and any later releases.
3969
- */
3970
- type $ActionDefinitionPressEventParameters = sap.ui.integration.ActionDefinition$PressEventParameters;
3971
-
3972
- type ActionDefinition$PressEvent = sap.ui.base.Event<ActionDefinition$PressEventParameters>;
3973
-
3974
- /**
3975
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Extension$ActionEventParameters'
3976
- * in 1.115.1 and any later releases.
3977
- */
3978
- type $ExtensionActionEventParameters = sap.ui.integration.Extension$ActionEventParameters;
3979
-
3980
- type Extension$ActionEvent = sap.ui.base.Event<Extension$ActionEventParameters>;
3981
-
3982
- /**
3983
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$ActionEventParameters'
3984
- * in 1.115.1 and any later releases.
3985
- */
3986
- type $HostActionEventParameters = sap.ui.integration.Host$ActionEventParameters;
3987
-
3988
- type Host$ActionEvent = sap.ui.base.Event<Host$ActionEventParameters>;
3989
-
3990
- /**
3991
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$CardConfigurationChangeEventParameters'
3992
- * in 1.115.1 and any later releases.
3993
- */
3994
- type $HostCardConfigurationChangeEventParameters = sap.ui.integration.Host$CardConfigurationChangeEventParameters;
3995
-
3996
- type Host$CardConfigurationChangeEvent = sap.ui.base.Event<Host$CardConfigurationChangeEventParameters>;
3997
-
3998
- /**
3999
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$CardStateChangedEventParameters'
4000
- * in 1.115.1 and any later releases.
4001
- */
4002
- type $HostCardStateChangedEventParameters = sap.ui.integration.Host$CardStateChangedEventParameters;
4003
-
4004
- type Host$CardStateChangedEvent = sap.ui.base.Event<Host$CardStateChangedEventParameters>;
4005
-
4006
- /**
4007
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$MessageEventParameters'
4008
- * in 1.115.1 and any later releases.
4009
- */
4010
- type $HostMessageEventParameters = sap.ui.integration.Host$MessageEventParameters;
4011
-
4012
- type Host$MessageEvent = sap.ui.base.Event<Host$MessageEventParameters>;
4072
+ type ActionDefinition$PressEvent = sap.ui.base.Event<
4073
+ ActionDefinition$PressEventParameters,
4074
+ ActionDefinition
4075
+ >;
4076
+
4077
+ type Extension$ActionEvent = sap.ui.base.Event<
4078
+ Extension$ActionEventParameters,
4079
+ Extension
4080
+ >;
4081
+
4082
+ type Host$ActionEvent = sap.ui.base.Event<
4083
+ Host$ActionEventParameters,
4084
+ Host
4085
+ >;
4086
+
4087
+ type Host$CardConfigurationChangeEvent = sap.ui.base.Event<
4088
+ Host$CardConfigurationChangeEventParameters,
4089
+ Host
4090
+ >;
4091
+
4092
+ type Host$CardInitializedEvent = sap.ui.base.Event<
4093
+ Host$CardInitializedEventParameters,
4094
+ Host
4095
+ >;
4096
+
4097
+ type Host$CardStateChangedEvent = sap.ui.base.Event<
4098
+ Host$CardStateChangedEventParameters,
4099
+ Host
4100
+ >;
4101
+
4102
+ type Host$MessageEvent = sap.ui.base.Event<
4103
+ Host$MessageEventParameters,
4104
+ Host
4105
+ >;
4013
4106
  }
4014
4107
  }
4015
4108