@openui5/ts-types 1.105.1 → 1.107.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.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -656,7 +656,7 @@ declare namespace sap {
656
656
  *
657
657
  * @returns Key of the currently selected variant. In case the model is not yet set `null` will be returned.
658
658
  */
659
- getCurrentVariantKey(): string;
659
+ getCurrentVariantKey(): string | null;
660
660
  /**
661
661
  * Gets current value of property {@link #getDisplayTextForExecuteOnSelectionForStandardVariant displayTextForExecuteOnSelectionForStandardVariant}.
662
662
  *
@@ -807,7 +807,7 @@ declare namespace sap {
807
807
  * The for to be removed or its index or ID
808
808
  */
809
809
  vFor: int | sap.ui.core.ID | sap.ui.core.Control
810
- ): sap.ui.core.ID;
810
+ ): sap.ui.core.ID | null;
811
811
  /**
812
812
  * Sets the new selected variant.
813
813
  */
@@ -1318,6 +1318,8 @@ declare namespace sap {
1318
1318
 
1319
1319
  "sap/ui/fl/write/api/connectors/ObjectStorageConnector": undefined;
1320
1320
 
1321
+ "sap/ui/fl/write/api/ContextBasedAdaptationsAPI": undefined;
1322
+
1321
1323
  "sap/ui/fl/write/api/ContextSharingAPI": undefined;
1322
1324
 
1323
1325
  "sap/ui/fl/write/api/ControlPersonalizationWriteAPI": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -700,11 +700,20 @@ declare namespace sap {
700
700
  parameters?: object;
701
701
  }
702
702
  ): void;
703
+ /**
704
+ * @EXPERIMENTAL
705
+ *
706
+ * Causes all of the controls within the Card that support validation to validate their data.
707
+ *
708
+ * @returns if all of the controls validated successfully; otherwise, false
709
+ */
710
+ validateControls(): boolean;
703
711
  }
704
712
 
705
713
  interface $CardSettings extends sap.f.$CardBaseSettings {
706
714
  /**
707
- * Optional property which can be used by the host to reference the card. Does not affect the card behavior.
715
+ * Optional property which can be used by the host to reference the card. It will be forwarded to any children
716
+ * cards. Does not affect the card behavior.
708
717
  */
709
718
  referenceId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
710
719
 
@@ -758,14 +767,18 @@ declare namespace sap {
758
767
  *
759
768
  * This can be a list of flexibility changes generated during designtime.
760
769
  *
761
- * Each level of changes is an item in the list. The change has property "content" which contains the configuration,
762
- * which will be merged on top of the original `sap.card` section.
770
+ * Each item in the array represents a separate level of changes. For example, the first item might be created
771
+ * by an administrator, the second by a page administrator and the third by the end user.
772
+ *
773
+ * The order of the items is the order in which the changes will be merged on top of each other. So the
774
+ * last item will overwrite the previous items where the paths match.
763
775
  *
764
776
  * Example:
765
777
  * ```javascript
766
778
  *
767
779
  * [
768
780
  * {
781
+ * // Administrator
769
782
  * "/sap.card/header/title": "My Configured Title in Default Language",
770
783
  * "/sap.card/content/maxItems": 10,
771
784
  * "texts": {
@@ -775,13 +788,13 @@ declare namespace sap {
775
788
  * }
776
789
  * },
777
790
  * {
778
- * "/sap.card/header/title": "My Configured Title in Default Language",
779
- * "/sap.card/content/maxItems": 10,
780
- * "texts": {
781
- * "en-US": {
782
- * "/sap.card/header/title": "My Configured Title in US-English"
783
- * }
784
- * }
791
+ * // Page administrator
792
+ * "/sap.card/content/maxItems": 5
793
+ * },
794
+ * {
795
+ * // End user
796
+ * "/sap.card/header/title": "Title by End User",
797
+ * "/sap.card/content/maxItems": 8
785
798
  * }
786
799
  * ]
787
800
  * ```
@@ -838,6 +851,14 @@ declare namespace sap {
838
851
  * Note: The card's content may not be available yet because it may depend on other resources to load.
839
852
  */
840
853
  manifestApplied?: (oEvent: sap.ui.base.Event) => void;
854
+
855
+ /**
856
+ * @EXPERIMENTAL (since 1.107)
857
+ *
858
+ * Fired when the state of the card is changed. For example - the card is ready, new page is selected, a
859
+ * filter is changed or data is refreshed.
860
+ */
861
+ stateChanged?: (oEvent: sap.ui.base.Event) => void;
841
862
  }
842
863
 
843
864
  /**
@@ -1165,6 +1186,57 @@ declare namespace sap {
1165
1186
  */
1166
1187
  oListener?: object
1167
1188
  ): this;
1189
+ /**
1190
+ * @EXPERIMENTAL (since 1.107)
1191
+ *
1192
+ * Attaches event handler `fnFunction` to the {@link #event:stateChanged stateChanged} event of this `sap.ui.integration.widgets.Card`.
1193
+ *
1194
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1195
+ * otherwise it will be bound to this `sap.ui.integration.widgets.Card` itself.
1196
+ *
1197
+ * Fired when the state of the card is changed. For example - the card is ready, new page is selected, a
1198
+ * filter is changed or data is refreshed.
1199
+ *
1200
+ * @returns Reference to `this` in order to allow method chaining
1201
+ */
1202
+ attachStateChanged(
1203
+ /**
1204
+ * An application-specific payload object that will be passed to the event handler along with the event
1205
+ * object when firing the event
1206
+ */
1207
+ oData: object,
1208
+ /**
1209
+ * The function to be called when the event occurs
1210
+ */
1211
+ fnFunction: (p1: sap.ui.base.Event) => void,
1212
+ /**
1213
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.widgets.Card` itself
1214
+ */
1215
+ oListener?: object
1216
+ ): this;
1217
+ /**
1218
+ * @EXPERIMENTAL (since 1.107)
1219
+ *
1220
+ * Attaches event handler `fnFunction` to the {@link #event:stateChanged stateChanged} event of this `sap.ui.integration.widgets.Card`.
1221
+ *
1222
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1223
+ * otherwise it will be bound to this `sap.ui.integration.widgets.Card` itself.
1224
+ *
1225
+ * Fired when the state of the card is changed. For example - the card is ready, new page is selected, a
1226
+ * filter is changed or data is refreshed.
1227
+ *
1228
+ * @returns Reference to `this` in order to allow method chaining
1229
+ */
1230
+ attachStateChanged(
1231
+ /**
1232
+ * The function to be called when the event occurs
1233
+ */
1234
+ fnFunction: (p1: sap.ui.base.Event) => void,
1235
+ /**
1236
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.widgets.Card` itself
1237
+ */
1238
+ oListener?: object
1239
+ ): this;
1168
1240
  /**
1169
1241
  * @SINCE 1.85
1170
1242
  * @EXPERIMENTAL (since 1.85)
@@ -1251,6 +1323,25 @@ declare namespace sap {
1251
1323
  */
1252
1324
  oListener?: object
1253
1325
  ): this;
1326
+ /**
1327
+ * @EXPERIMENTAL (since 1.107)
1328
+ *
1329
+ * Detaches event handler `fnFunction` from the {@link #event:stateChanged stateChanged} event of this `sap.ui.integration.widgets.Card`.
1330
+ *
1331
+ * The passed function and listener object must match the ones used for event registration.
1332
+ *
1333
+ * @returns Reference to `this` in order to allow method chaining
1334
+ */
1335
+ detachStateChanged(
1336
+ /**
1337
+ * The function to be called, when the event occurs
1338
+ */
1339
+ fnFunction: (p1: sap.ui.base.Event) => void,
1340
+ /**
1341
+ * Context object on which the given function had to be called
1342
+ */
1343
+ oListener?: object
1344
+ ): this;
1254
1345
  /**
1255
1346
  * @EXPERIMENTAL (since 1.64)
1256
1347
  *
@@ -1335,6 +1426,19 @@ declare namespace sap {
1335
1426
  */
1336
1427
  mParameters?: object
1337
1428
  ): this;
1429
+ /**
1430
+ * @EXPERIMENTAL (since 1.107)
1431
+ *
1432
+ * Fires event {@link #event:stateChanged stateChanged} to attached listeners.
1433
+ *
1434
+ * @returns Reference to `this` in order to allow method chaining
1435
+ */
1436
+ fireStateChanged(
1437
+ /**
1438
+ * Parameters to pass along with the event
1439
+ */
1440
+ mParameters?: object
1441
+ ): this;
1338
1442
  /**
1339
1443
  * @SINCE 1.85
1340
1444
  * @EXPERIMENTAL (since 1.85)
@@ -1357,24 +1461,6 @@ declare namespace sap {
1357
1461
  * @returns Value of property `baseUrl`
1358
1462
  */
1359
1463
  getBaseUrl(): sap.ui.core.URI;
1360
- /**
1361
- * Implements sap.f.ICard interface.
1362
- *
1363
- * @returns The content of the card
1364
- */
1365
- getCardContent(): sap.ui.core.Control;
1366
- /**
1367
- * Implements sap.f.ICard interface.
1368
- *
1369
- * @returns The header of the card
1370
- */
1371
- getCardHeader(): sap.f.cards.IHeader;
1372
- /**
1373
- * Implements sap.f.ICard interface.
1374
- *
1375
- * @returns The position of the header of the card.
1376
- */
1377
- getCardHeaderPosition(): sap.f.cards.HeaderPosition;
1378
1464
  /**
1379
1465
  * @EXPERIMENTAL (since 1.77)
1380
1466
  *
@@ -1436,14 +1522,18 @@ declare namespace sap {
1436
1522
  *
1437
1523
  * This can be a list of flexibility changes generated during designtime.
1438
1524
  *
1439
- * Each level of changes is an item in the list. The change has property "content" which contains the configuration,
1440
- * which will be merged on top of the original `sap.card` section.
1525
+ * Each item in the array represents a separate level of changes. For example, the first item might be created
1526
+ * by an administrator, the second by a page administrator and the third by the end user.
1527
+ *
1528
+ * The order of the items is the order in which the changes will be merged on top of each other. So the
1529
+ * last item will overwrite the previous items where the paths match.
1441
1530
  *
1442
1531
  * Example:
1443
1532
  * ```javascript
1444
1533
  *
1445
1534
  * [
1446
1535
  * {
1536
+ * // Administrator
1447
1537
  * "/sap.card/header/title": "My Configured Title in Default Language",
1448
1538
  * "/sap.card/content/maxItems": 10,
1449
1539
  * "texts": {
@@ -1453,13 +1543,13 @@ declare namespace sap {
1453
1543
  * }
1454
1544
  * },
1455
1545
  * {
1456
- * "/sap.card/header/title": "My Configured Title in Default Language",
1457
- * "/sap.card/content/maxItems": 10,
1458
- * "texts": {
1459
- * "en-US": {
1460
- * "/sap.card/header/title": "My Configured Title in US-English"
1461
- * }
1462
- * }
1546
+ * // Page administrator
1547
+ * "/sap.card/content/maxItems": 5
1548
+ * },
1549
+ * {
1550
+ * // End user
1551
+ * "/sap.card/header/title": "Title by End User",
1552
+ * "/sap.card/content/maxItems": 8
1463
1553
  * }
1464
1554
  * ]
1465
1555
  * ```
@@ -1486,7 +1576,8 @@ declare namespace sap {
1486
1576
  /**
1487
1577
  * Gets current value of property {@link #getReferenceId referenceId}.
1488
1578
  *
1489
- * Optional property which can be used by the host to reference the card. Does not affect the card behavior.
1579
+ * Optional property which can be used by the host to reference the card. It will be forwarded to any children
1580
+ * cards. Does not affect the card behavior.
1490
1581
  *
1491
1582
  * Default value is `empty string`.
1492
1583
  *
@@ -1754,14 +1845,18 @@ declare namespace sap {
1754
1845
  *
1755
1846
  * This can be a list of flexibility changes generated during designtime.
1756
1847
  *
1757
- * Each level of changes is an item in the list. The change has property "content" which contains the configuration,
1758
- * which will be merged on top of the original `sap.card` section.
1848
+ * Each item in the array represents a separate level of changes. For example, the first item might be created
1849
+ * by an administrator, the second by a page administrator and the third by the end user.
1850
+ *
1851
+ * The order of the items is the order in which the changes will be merged on top of each other. So the
1852
+ * last item will overwrite the previous items where the paths match.
1759
1853
  *
1760
1854
  * Example:
1761
1855
  * ```javascript
1762
1856
  *
1763
1857
  * [
1764
1858
  * {
1859
+ * // Administrator
1765
1860
  * "/sap.card/header/title": "My Configured Title in Default Language",
1766
1861
  * "/sap.card/content/maxItems": 10,
1767
1862
  * "texts": {
@@ -1771,13 +1866,13 @@ declare namespace sap {
1771
1866
  * }
1772
1867
  * },
1773
1868
  * {
1774
- * "/sap.card/header/title": "My Configured Title in Default Language",
1775
- * "/sap.card/content/maxItems": 10,
1776
- * "texts": {
1777
- * "en-US": {
1778
- * "/sap.card/header/title": "My Configured Title in US-English"
1779
- * }
1780
- * }
1869
+ * // Page administrator
1870
+ * "/sap.card/content/maxItems": 5
1871
+ * },
1872
+ * {
1873
+ * // End user
1874
+ * "/sap.card/header/title": "Title by End User",
1875
+ * "/sap.card/content/maxItems": 8
1781
1876
  * }
1782
1877
  * ]
1783
1878
  * ```
@@ -1796,7 +1891,8 @@ declare namespace sap {
1796
1891
  /**
1797
1892
  * Sets a new value for property {@link #getReferenceId referenceId}.
1798
1893
  *
1799
- * Optional property which can be used by the host to reference the card. Does not affect the card behavior.
1894
+ * Optional property which can be used by the host to reference the card. It will be forwarded to any children
1895
+ * cards. Does not affect the card behavior.
1800
1896
  *
1801
1897
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1802
1898
  *
@@ -1875,6 +1971,14 @@ declare namespace sap {
1875
1971
  parameters?: object;
1876
1972
  }
1877
1973
  ): void;
1974
+ /**
1975
+ * @EXPERIMENTAL
1976
+ *
1977
+ * Causes all of the controls within the Card that support validation to validate their data.
1978
+ *
1979
+ * @returns if all of the controls validated successfully; otherwise, false
1980
+ */
1981
+ validateControls(): boolean;
1878
1982
  }
1879
1983
  }
1880
1984
 
@@ -2014,6 +2118,14 @@ declare namespace sap {
2014
2118
  */
2015
2119
  cardConfigurationChange?: (oEvent: sap.ui.base.Event) => void;
2016
2120
 
2121
+ /**
2122
+ * @EXPERIMENTAL (since 1.107)
2123
+ *
2124
+ * Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
2125
+ * the card, a filter is changed or data is refreshed.
2126
+ */
2127
+ cardStateChanged?: (oEvent: sap.ui.base.Event) => void;
2128
+
2017
2129
  /**
2018
2130
  * @EXPERIMENTAL (since 1.91)
2019
2131
  *
@@ -2801,6 +2913,59 @@ declare namespace sap {
2801
2913
  */
2802
2914
  oListener?: object
2803
2915
  ): this;
2916
+ /**
2917
+ * @EXPERIMENTAL (since 1.107)
2918
+ *
2919
+ * Attaches event handler `fnFunction` to the {@link #event:cardStateChanged cardStateChanged} event of
2920
+ * this `sap.ui.integration.Host`.
2921
+ *
2922
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2923
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
2924
+ *
2925
+ * Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
2926
+ * the card, a filter is changed or data is refreshed.
2927
+ *
2928
+ * @returns Reference to `this` in order to allow method chaining
2929
+ */
2930
+ attachCardStateChanged(
2931
+ /**
2932
+ * An application-specific payload object that will be passed to the event handler along with the event
2933
+ * object when firing the event
2934
+ */
2935
+ oData: object,
2936
+ /**
2937
+ * The function to be called when the event occurs
2938
+ */
2939
+ fnFunction: (p1: sap.ui.base.Event) => void,
2940
+ /**
2941
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
2942
+ */
2943
+ oListener?: object
2944
+ ): this;
2945
+ /**
2946
+ * @EXPERIMENTAL (since 1.107)
2947
+ *
2948
+ * Attaches event handler `fnFunction` to the {@link #event:cardStateChanged cardStateChanged} event of
2949
+ * this `sap.ui.integration.Host`.
2950
+ *
2951
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2952
+ * otherwise it will be bound to this `sap.ui.integration.Host` itself.
2953
+ *
2954
+ * Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
2955
+ * the card, a filter is changed or data is refreshed.
2956
+ *
2957
+ * @returns Reference to `this` in order to allow method chaining
2958
+ */
2959
+ attachCardStateChanged(
2960
+ /**
2961
+ * The function to be called when the event occurs
2962
+ */
2963
+ fnFunction: (p1: sap.ui.base.Event) => void,
2964
+ /**
2965
+ * Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
2966
+ */
2967
+ oListener?: object
2968
+ ): this;
2804
2969
  /**
2805
2970
  * @EXPERIMENTAL (since 1.91)
2806
2971
  *
@@ -2915,6 +3080,26 @@ declare namespace sap {
2915
3080
  */
2916
3081
  oListener?: object
2917
3082
  ): this;
3083
+ /**
3084
+ * @EXPERIMENTAL (since 1.107)
3085
+ *
3086
+ * Detaches event handler `fnFunction` from the {@link #event:cardStateChanged cardStateChanged} event of
3087
+ * this `sap.ui.integration.Host`.
3088
+ *
3089
+ * The passed function and listener object must match the ones used for event registration.
3090
+ *
3091
+ * @returns Reference to `this` in order to allow method chaining
3092
+ */
3093
+ detachCardStateChanged(
3094
+ /**
3095
+ * The function to be called, when the event occurs
3096
+ */
3097
+ fnFunction: (p1: sap.ui.base.Event) => void,
3098
+ /**
3099
+ * Context object on which the given function had to be called
3100
+ */
3101
+ oListener?: object
3102
+ ): this;
2918
3103
  /**
2919
3104
  * @EXPERIMENTAL (since 1.91)
2920
3105
  *
@@ -3002,6 +3187,24 @@ declare namespace sap {
3002
3187
  changes?: object;
3003
3188
  }
3004
3189
  ): this;
3190
+ /**
3191
+ * @EXPERIMENTAL (since 1.107)
3192
+ *
3193
+ * Fires event {@link #event:cardStateChanged cardStateChanged} to attached listeners.
3194
+ *
3195
+ * @returns Reference to `this` in order to allow method chaining
3196
+ */
3197
+ fireCardStateChanged(
3198
+ /**
3199
+ * Parameters to pass along with the event
3200
+ */
3201
+ mParameters?: {
3202
+ /**
3203
+ * The card the changes are fired from.
3204
+ */
3205
+ card?: sap.ui.core.Control;
3206
+ }
3207
+ ): this;
3005
3208
  /**
3006
3209
  * @EXPERIMENTAL (since 1.91)
3007
3210
  *
@@ -3321,6 +3524,8 @@ declare namespace sap {
3321
3524
 
3322
3525
  "sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor": undefined;
3323
3526
 
3527
+ "sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor": undefined;
3528
+
3324
3529
  "sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor": undefined;
3325
3530
 
3326
3531
  "sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor": undefined;
@@ -3415,6 +3620,8 @@ declare namespace sap {
3415
3620
 
3416
3621
  "sap/ui/integration/editor/fields/fragment/Controller": undefined;
3417
3622
 
3623
+ "sap/ui/integration/editor/fields/GroupField": undefined;
3624
+
3418
3625
  "sap/ui/integration/editor/fields/IntegerField": undefined;
3419
3626
 
3420
3627
  "sap/ui/integration/editor/fields/NumberField": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -4543,7 +4543,7 @@ declare namespace sap {
4543
4543
  * The ariaLabelledBy to be removed or its index or ID
4544
4544
  */
4545
4545
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
4546
- ): sap.ui.core.ID;
4546
+ ): sap.ui.core.ID | null;
4547
4547
  /**
4548
4548
  * Removes a formContainer from the aggregation {@link #getFormContainers formContainers}.
4549
4549
  *
@@ -4901,7 +4901,7 @@ declare namespace sap {
4901
4901
  * The ariaLabelledBy to be removed or its index or ID
4902
4902
  */
4903
4903
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
4904
- ): sap.ui.core.ID;
4904
+ ): sap.ui.core.ID | null;
4905
4905
  /**
4906
4906
  * Removes a formElement from the aggregation {@link #getFormElements formElements}.
4907
4907
  *
@@ -7206,7 +7206,7 @@ declare namespace sap {
7206
7206
  * The ariaLabelledBy to be removed or its index or ID
7207
7207
  */
7208
7208
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
7209
- ): sap.ui.core.ID;
7209
+ ): sap.ui.core.ID | null;
7210
7210
  /**
7211
7211
  * Removes a content from the aggregation {@link #getContent content}.
7212
7212
  *
@@ -9768,7 +9768,7 @@ declare namespace sap {
9768
9768
  * The accentCell to be removed or its index or ID
9769
9769
  */
9770
9770
  vAccentCell: int | sap.ui.core.ID | sap.ui.layout.BlockLayoutCell
9771
- ): sap.ui.core.ID;
9771
+ ): sap.ui.core.ID | null;
9772
9772
  /**
9773
9773
  * @SINCE 1.42
9774
9774
  *
@@ -10989,7 +10989,7 @@ declare namespace sap {
10989
10989
  * The ariaLabelledBy to be removed or its index or ID
10990
10990
  */
10991
10991
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
10992
- ): sap.ui.core.ID;
10992
+ ): sap.ui.core.ID | null;
10993
10993
  /**
10994
10994
  * Removes a content from the aggregation {@link #getContent content}.
10995
10995
  *
@@ -12635,7 +12635,7 @@ declare namespace sap {
12635
12635
  * The ariaLabelledBy to be removed or its index or ID
12636
12636
  */
12637
12637
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
12638
- ): sap.ui.core.ID;
12638
+ ): sap.ui.core.ID | null;
12639
12639
  /**
12640
12640
  * Removes content. This function needs to be overridden to prevent any rendering while some content is
12641
12641
  * still being added.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -54,6 +54,8 @@ declare namespace sap {
54
54
 
55
55
  "sap/ui/mdc/enum/PersistenceMode": undefined;
56
56
 
57
+ "sap/ui/mdc/enum/ProcessingStrategy": undefined;
58
+
57
59
  "sap/ui/mdc/enum/PropagationReason": undefined;
58
60
 
59
61
  "sap/ui/mdc/enum/SelectType": undefined;
@@ -172,6 +174,8 @@ declare namespace sap {
172
174
 
173
175
  "sap/ui/mdc/p13n/modules/DefaultProviderRegistry": undefined;
174
176
 
177
+ "sap/ui/mdc/p13n/panels/FilterPanel": undefined;
178
+
175
179
  "sap/ui/mdc/p13n/StateUtil": undefined;
176
180
 
177
181
  "sap/ui/mdc/p13n/subcontroller/BaseController": undefined;
@@ -196,6 +200,8 @@ declare namespace sap {
196
200
 
197
201
  "sap/ui/mdc/table/TableTypeBase": undefined;
198
202
 
203
+ "sap/ui/mdc/table/V4AnalyticsPropertyHelper": undefined;
204
+
199
205
  "sap/ui/mdc/TableDelegate": undefined;
200
206
 
201
207
  "sap/ui/mdc/util/DateUtil": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -112,6 +112,8 @@ declare namespace sap {
112
112
 
113
113
  "sap/ui/rta/service/Selection": undefined;
114
114
 
115
+ "sap/ui/rta/service/SupportTools": undefined;
116
+
115
117
  "sap/ui/rta/util/ReloadManager": undefined;
116
118
  }
117
119
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -323,7 +323,7 @@ declare namespace sap {
323
323
  * The ariaDescribedBy to be removed or its index or ID
324
324
  */
325
325
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
326
- ): sap.ui.core.ID;
326
+ ): sap.ui.core.ID | null;
327
327
  /**
328
328
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
329
329
  *
@@ -334,7 +334,7 @@ declare namespace sap {
334
334
  * The ariaLabelledBy to be removed or its index or ID
335
335
  */
336
336
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
337
- ): sap.ui.core.ID;
337
+ ): sap.ui.core.ID | null;
338
338
  /**
339
339
  * Sets a new value for property {@link #getColor color}.
340
340
  *
@@ -614,7 +614,7 @@ declare namespace sap {
614
614
  * The ariaDescribedBy to be removed or its index or ID
615
615
  */
616
616
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
617
- ): sap.ui.core.ID;
617
+ ): sap.ui.core.ID | null;
618
618
  /**
619
619
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
620
620
  *
@@ -625,7 +625,7 @@ declare namespace sap {
625
625
  * The ariaLabelledBy to be removed or its index or ID
626
626
  */
627
627
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
628
- ): sap.ui.core.ID;
628
+ ): sap.ui.core.ID | null;
629
629
  /**
630
630
  * Property setter for the Percentage, which determines the height of the vertical bar. Values higher than
631
631
  * 100 will be displayed as 100%, values lower than zero will be displayed as 0%. A new rendering is not
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {