@openui5/types 1.129.0 → 1.130.1

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,4 +1,4 @@
1
- // For Library Version: 1.129.0
1
+ // For Library Version: 1.130.1
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.129.0
1
+ // For Library Version: 1.130.1
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -12,7 +12,8 @@ declare module "sap/ui/fl/apply/api/ControlVariantApplyAPI" {
12
12
  */
13
13
  interface ControlVariantApplyAPI {
14
14
  /**
15
- * Activates the passed variant applicable to the passed control/component.
15
+ * Activates the passed variant applicable to the passed control/component. If the Variant is not available
16
+ * and the backend supports lazy loading, a backend request is made to fetch the variant.
16
17
  *
17
18
  *
18
19
  * @returns Resolves after the variant is activated or rejects if an error occurs
@@ -1590,6 +1591,8 @@ declare namespace sap {
1590
1591
 
1591
1592
  "sap/ui/fl/apply/_internal/flexState/changes/UIChangesState": undefined;
1592
1593
 
1594
+ "sap/ui/fl/apply/_internal/flexState/compVariants/CompVariantManagementState": undefined;
1595
+
1593
1596
  "sap/ui/fl/apply/_internal/flexState/compVariants/CompVariantMerger": undefined;
1594
1597
 
1595
1598
  "sap/ui/fl/apply/_internal/flexState/controlVariants/Switcher": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.129.0
1
+ // For Library Version: 1.130.1
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1485,6 +1485,17 @@ declare module "sap/ui/integration/widgets/Card" {
1485
1485
  */
1486
1486
  sPath: string
1487
1487
  ): any;
1488
+ /**
1489
+ * Gets current value of property {@link #getParameters parameters}.
1490
+ *
1491
+ * Overrides the default values of the parameters, which are defined in the manifest. The value is an object
1492
+ * containing parameters in format `{parameterKey: parameterValue}`.
1493
+ *
1494
+ * @experimental (since 1.65) - This property might be changed in future.
1495
+ *
1496
+ * @returns Value of property `parameters`
1497
+ */
1498
+ getParameters(): object;
1488
1499
  /**
1489
1500
  * Gets current value of property {@link #getPreviewMode previewMode}.
1490
1501
  *
@@ -1700,9 +1711,12 @@ declare module "sap/ui/integration/widgets/Card" {
1700
1711
  method?: string;
1701
1712
  /**
1702
1713
  * The request parameters. If the HTTP method is "POST", "PUT", "PATCH", or "DELETE" the parameters will
1703
- * be put as key/value pairs into the body of the request.
1714
+ * be put into the body of the request.
1715
+ *
1716
+ * **Note:** If parameters are of type "FormData", the "FormData" will not be resolved for bindings, destinations
1717
+ * and others. It will be sent as it is.
1704
1718
  */
1705
- parameters?: object;
1719
+ parameters?: object | FormData;
1706
1720
  /**
1707
1721
  * Deprecated. Use the correct Accept headers and correct Content-Type header in the response.
1708
1722
  */
@@ -2269,9 +2283,12 @@ declare module "sap/ui/integration/widgets/Card" {
2269
2283
  method?: string;
2270
2284
  /**
2271
2285
  * The request parameters. If the HTTP method is "POST", "PUT", "PATCH", or "DELETE" the parameters will
2272
- * be put as key/value pairs into the body of the request.
2286
+ * be put into the body of the request.
2287
+ *
2288
+ * **Note:** If parameters are of type "FormData", the "FormData" will not be resolved for bindings, destinations
2289
+ * and others. It will be sent as it is.
2273
2290
  */
2274
- parameters?: object;
2291
+ parameters?: object | FormData;
2275
2292
  /**
2276
2293
  * Deprecated. Use the correct Accept headers and correct Content-Type header in the response.
2277
2294
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.129.0
1
+ // For Library Version: 1.130.1
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";