@openui5/ts-types 1.95.0 → 1.96.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.
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -782,6 +782,14 @@ declare namespace sap {
782
782
  */
783
783
  action?: (oEvent: sap.ui.base.Event) => void;
784
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
+
785
793
  /**
786
794
  * @EXPERIMENTAL (since 1.72)
787
795
  *
@@ -958,6 +966,55 @@ declare namespace sap {
958
966
  */
959
967
  oListener?: object
960
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;
961
1018
  /**
962
1019
  * Attaches event handler `fnFunction` to the {@link #event:manifestApplied manifestApplied} event of this
963
1020
  * `sap.ui.integration.widgets.Card`.
@@ -1076,6 +1133,24 @@ declare namespace sap {
1076
1133
  */
1077
1134
  oListener?: object
1078
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;
1079
1154
  /**
1080
1155
  * Detaches event handler `fnFunction` from the {@link #event:manifestApplied manifestApplied} event of
1081
1156
  * this `sap.ui.integration.widgets.Card`.
@@ -1141,6 +1216,31 @@ declare namespace sap {
1141
1216
  type?: sap.ui.integration.CardActionType;
1142
1217
  }
1143
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;
1144
1244
  /**
1145
1245
  * Fires event {@link #event:manifestApplied manifestApplied} to attached listeners.
1146
1246
  */
@@ -1700,6 +1800,14 @@ declare namespace sap {
1700
1800
  */
1701
1801
  action?: (oEvent: sap.ui.base.Event) => void;
1702
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
+
1703
1811
  /**
1704
1812
  * @EXPERIMENTAL (since 1.91)
1705
1813
  *
@@ -2362,6 +2470,55 @@ declare namespace sap {
2362
2470
  */
2363
2471
  oListener?: object
2364
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;
2365
2522
  /**
2366
2523
  * @EXPERIMENTAL (since 1.91)
2367
2524
  *
@@ -2424,6 +2581,24 @@ declare namespace sap {
2424
2581
  */
2425
2582
  oListener?: object
2426
2583
  ): this;
2584
+ /**
2585
+ * @EXPERIMENTAL (since 1.96)
2586
+ *
2587
+ * Detaches event handler `fnFunction` from the {@link #event:cardConfigurationChange cardConfigurationChange}
2588
+ * event of this `sap.ui.integration.Host`.
2589
+ *
2590
+ * The passed function and listener object must match the ones used for event registration.
2591
+ */
2592
+ detachCardConfigurationChange(
2593
+ /**
2594
+ * The function to be called, when the event occurs
2595
+ */
2596
+ fnFunction: (p1: sap.ui.base.Event) => void,
2597
+ /**
2598
+ * Context object on which the given function had to be called
2599
+ */
2600
+ oListener?: object
2601
+ ): this;
2427
2602
  /**
2428
2603
  * @EXPERIMENTAL (since 1.91)
2429
2604
  *
@@ -2476,6 +2651,35 @@ declare namespace sap {
2476
2651
  type?: sap.ui.integration.CardActionType;
2477
2652
  }
2478
2653
  ): boolean;
2654
+ /**
2655
+ * @EXPERIMENTAL (since 1.96)
2656
+ *
2657
+ * Fires event {@link #event:cardConfigurationChange cardConfigurationChange} to attached listeners.
2658
+ */
2659
+ fireCardConfigurationChange(
2660
+ /**
2661
+ * Parameters to pass along with the event
2662
+ */
2663
+ mParameters?: {
2664
+ /**
2665
+ * The card the changes are fired from.
2666
+ */
2667
+ card?: sap.ui.core.Control;
2668
+ /**
2669
+ * Changed configuration settings.
2670
+ *
2671
+ * Example:
2672
+ * ```javascript
2673
+ *
2674
+ * {
2675
+ * "/sap.card/configuration/filters/shipper/value": "key3",
2676
+ * "/sap.card/configuration/filters/item/value": "key2"
2677
+ * }
2678
+ * ```
2679
+ */
2680
+ changes?: object;
2681
+ }
2682
+ ): this;
2479
2683
  /**
2480
2684
  * @EXPERIMENTAL (since 1.91)
2481
2685
  *
@@ -2598,6 +2802,21 @@ declare namespace sap {
2598
2802
  fnResolveDestination: Function
2599
2803
  ): this;
2600
2804
  }
2805
+ /**
2806
+ * @SINCE 1.96
2807
+ *
2808
+ * Defines the layout type of the List card attributes.
2809
+ */
2810
+ enum AttributesLayoutType {
2811
+ /**
2812
+ * One column.
2813
+ */
2814
+ OneColumn = "OneColumn",
2815
+ /**
2816
+ * Two columns.
2817
+ */
2818
+ TwoColumns = "TwoColumns",
2819
+ }
2601
2820
  /**
2602
2821
  * @EXPERIMENTAL (since 1.64)
2603
2822
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
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.95.0
1
+ // For Library Version: 1.96.3
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;
@@ -22,6 +34,10 @@ declare namespace sap {
22
34
 
23
35
  "sap/ui/mdc/condition/RangeOperator": undefined;
24
36
 
37
+ "sap/ui/mdc/Control": undefined;
38
+
39
+ "sap/ui/mdc/Element": undefined;
40
+
25
41
  "sap/ui/mdc/enum/ActionToolbarActionAlignment": undefined;
26
42
 
27
43
  "sap/ui/mdc/enum/BaseType": undefined;
@@ -64,6 +80,8 @@ declare namespace sap {
64
80
 
65
81
  "sap/ui/mdc/field/FieldHelpBaseDelegate": undefined;
66
82
 
83
+ "sap/ui/mdc/field/FieldInfoBase": undefined;
84
+
67
85
  "sap/ui/mdc/field/FieldInput": undefined;
68
86
 
69
87
  "sap/ui/mdc/field/FieldMultiInput": undefined;
@@ -159,5 +177,25 @@ declare namespace sap {
159
177
  "sap/ui/mdc/valuehelp/base/Container": undefined;
160
178
 
161
179
  "sap/ui/mdc/valuehelp/base/Content": undefined;
180
+
181
+ "sap/ui/mdc/valuehelp/base/DialogTab": undefined;
182
+
183
+ "sap/ui/mdc/valuehelp/base/FilterableListContent": undefined;
184
+
185
+ "sap/ui/mdc/valuehelp/base/ListContent": undefined;
186
+
187
+ "sap/ui/mdc/valuehelp/content/Bool": undefined;
188
+
189
+ "sap/ui/mdc/valuehelp/content/Conditions": undefined;
190
+
191
+ "sap/ui/mdc/valuehelp/content/FixedList": undefined;
192
+
193
+ "sap/ui/mdc/valuehelp/content/MTable": undefined;
194
+
195
+ "sap/ui/mdc/valuehelp/Dialog": undefined;
196
+
197
+ "sap/ui/mdc/valuehelp/Popover": undefined;
198
+
199
+ "sap/ui/mdc/ValueHelpDelegate": undefined;
162
200
  }
163
201
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
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.95.0
241
+ * @SINCE 1.96.3
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.95.0
260
+ * @SINCE 1.96.3
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.95.0
315
+ * @SINCE 1.96.3
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.95.0
330
+ * @SINCE 1.96.3
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.95.0
349
+ * @SINCE 1.96.3
350
350
  *
351
351
  * Contains the available system presets.
352
352
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.95.0
1
+ // For Library Version: 1.96.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**