@openui5/ts-types 1.143.1 → 1.145.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,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1411,10 +1411,10 @@ declare namespace sap {
1411
1411
 
1412
1412
  "sap/ui/fl/apply/_internal/flexState/compVariants/CompVariantManagementState": undefined;
1413
1413
 
1414
- "sap/ui/fl/apply/_internal/flexState/controlVariants/Switcher": undefined;
1415
-
1416
1414
  "sap/ui/fl/apply/_internal/flexState/controlVariants/VariantManagementState": undefined;
1417
1415
 
1416
+ "sap/ui/fl/apply/_internal/flexState/controlVariants/VariantManagerApply": undefined;
1417
+
1418
1418
  "sap/ui/fl/apply/_internal/flexState/DataSelector": undefined;
1419
1419
 
1420
1420
  "sap/ui/fl/apply/_internal/flexState/FlexObjectState": undefined;
@@ -1425,8 +1425,6 @@ declare namespace sap {
1425
1425
 
1426
1426
  "sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState": undefined;
1427
1427
 
1428
- "sap/ui/fl/apply/_internal/preprocessors/ComponentLifecycleHooks": undefined;
1429
-
1430
1428
  "sap/ui/fl/apply/api/AnnotationChangeHandlerAPI": undefined;
1431
1429
 
1432
1430
  "sap/ui/fl/apply/api/ControlVariantApplyAPI": undefined;
@@ -1471,12 +1469,16 @@ declare namespace sap {
1471
1469
 
1472
1470
  "sap/ui/fl/initial/_internal/connectors/Utils": undefined;
1473
1471
 
1472
+ "sap/ui/fl/initial/_internal/preprocessors/ComponentLifecycleHooks": undefined;
1473
+
1474
1474
  "sap/ui/fl/initial/_internal/preprocessors/ControllerExtension": undefined;
1475
1475
 
1476
1476
  "sap/ui/fl/initial/_internal/Settings": undefined;
1477
1477
 
1478
1478
  "sap/ui/fl/initial/_internal/Storage": undefined;
1479
1479
 
1480
+ "sap/ui/fl/initial/_internal/StorageFeaturesMerger": undefined;
1481
+
1480
1482
  "sap/ui/fl/initial/_internal/StorageUtils": undefined;
1481
1483
 
1482
1484
  "sap/ui/fl/initial/api/InitialFlexAPI": undefined;
@@ -1499,6 +1501,8 @@ declare namespace sap {
1499
1501
 
1500
1502
  "sap/ui/fl/transport/TransportDialog": undefined;
1501
1503
 
1504
+ "sap/ui/fl/util/CancelError": undefined;
1505
+
1502
1506
  "sap/ui/fl/Utils": undefined;
1503
1507
 
1504
1508
  "sap/ui/fl/variants/context/Component": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1016,10 +1016,10 @@ declare namespace sap {
1016
1016
  *
1017
1017
  * - Add controls as input fields, text fields or other as needed.
1018
1018
  * - Use {@link sap.ui.core.Element#setLayoutData LayoutData} to influence the layout for special cases
1019
- * in the single controls. For example, if a {@link sap.ui.layout.ColumnLayout ColumnLayout} is used as
1020
- * a layout, the form content is weighted using 4 cells for the labels and 8 cells for the field part, for
1021
- * large size. If there is only little space, the labels are above the fields and each field uses 12 cells.
1022
- * If your input controls should influence their width, you can add {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
1019
+ * in the single controls. For example, if a {@link sap.ui.layout.form.ColumnLayout ColumnLayout} is used
1020
+ * as a layout, the form content is weighted using 4 cells for the labels and 8 cells for the field part,
1021
+ * for large size. If there is only little space, the labels are above the fields and each field uses 12
1022
+ * cells. If your input controls should influence their width, you can add {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
1023
1023
  * to them via the {@link sap.ui.core.Element#setLayoutData setLayoutData} method. Ensure that the sum of
1024
1024
  * the weights in the {@link sap.ui.layout.form.ColumnElementData ColumnElementData} is not more than 12,
1025
1025
  * as this is the total width of the input control part of each form row. Example for a row where
@@ -1033,14 +1033,14 @@ declare namespace sap {
1033
1033
  * ```
1034
1034
  *
1035
1035
  *
1036
- * For example, if a {@link sap.ui.layout.ResponsiveGridLayout ResponsiveGridLayout} is used as a layout,
1036
+ * For example, if a {@link sap.ui.layout.form.ResponsiveGridLayout ResponsiveGridLayout} is used as a layout,
1037
1037
  * there are 12 cells in one row. Depending on the screen size the labels use the defined `labelSpan`. The
1038
1038
  * remaining cells are used for the fields (and `emptySpan` if defined). The available cells are distributed
1039
1039
  * to all fields in the row. If one field should use a fixed number of cells you can add {@link sap.ui.layout.GridData GridData }
1040
1040
  * to them via the {@link sap.ui.core.Element#setLayoutData setLayoutData} method. If there are additional
1041
1041
  * fields in the row they will get the remaining cells. Example for a row with two {@link sap.m.Input Input }
1042
1042
  * controls where one uses four cells on small screens, one cell on medium screens and 2 cells on larger
1043
- * screens (using {@link sap.ui.layout.ResponsiveGridLayout ResponsiveGridLayout}):
1043
+ * screens (using {@link sap.ui.layout.form.ResponsiveGridLayout ResponsiveGridLayout}):
1044
1044
  * ```javascript
1045
1045
  *
1046
1046
  * new sap.m.Label({text:"Label"});
@@ -4412,10 +4412,10 @@ declare namespace sap {
4412
4412
  *
4413
4413
  * - Add controls as input fields, text fields or other as needed.
4414
4414
  * - Use {@link sap.ui.core.Element#setLayoutData LayoutData} to influence the layout for special cases
4415
- * in the single controls. For example, if a {@link sap.ui.layout.ColumnLayout ColumnLayout} is used as
4416
- * a layout, the form content is weighted using 4 cells for the labels and 8 cells for the field part, for
4417
- * large size. If there is only little space, the labels are above the fields and each field uses 12 cells.
4418
- * If your input controls should influence their width, you can add {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
4415
+ * in the single controls. For example, if a {@link sap.ui.layout.form.ColumnLayout ColumnLayout} is used
4416
+ * as a layout, the form content is weighted using 4 cells for the labels and 8 cells for the field part,
4417
+ * for large size. If there is only little space, the labels are above the fields and each field uses 12
4418
+ * cells. If your input controls should influence their width, you can add {@link sap.ui.layout.form.ColumnElementData ColumnElementData }
4419
4419
  * to them via the {@link sap.ui.core.Element#setLayoutData setLayoutData} method. Ensure that the sum of
4420
4420
  * the weights in the {@link sap.ui.layout.form.ColumnElementData ColumnElementData} is not more than 12,
4421
4421
  * as this is the total width of the input control part of each form row. Example for a row where
@@ -4429,14 +4429,14 @@ declare namespace sap {
4429
4429
  * ```
4430
4430
  *
4431
4431
  *
4432
- * For example, if a {@link sap.ui.layout.ResponsiveGridLayout ResponsiveGridLayout} is used as a layout,
4432
+ * For example, if a {@link sap.ui.layout.form.ResponsiveGridLayout ResponsiveGridLayout} is used as a layout,
4433
4433
  * there are 12 cells in one row. Depending on the screen size the labels use the defined `labelSpan`. The
4434
4434
  * remaining cells are used for the fields (and `emptySpan` if defined). The available cells are distributed
4435
4435
  * to all fields in the row. If one field should use a fixed number of cells you can add {@link sap.ui.layout.GridData GridData }
4436
4436
  * to them via the {@link sap.ui.core.Element#setLayoutData setLayoutData} method. If there are additional
4437
4437
  * fields in the row they will get the remaining cells. Example for a row with two {@link sap.m.Input Input }
4438
4438
  * controls where one uses four cells on small screens, one cell on medium screens and 2 cells on larger
4439
- * screens (using {@link sap.ui.layout.ResponsiveGridLayout ResponsiveGridLayout}):
4439
+ * screens (using {@link sap.ui.layout.form.ResponsiveGridLayout ResponsiveGridLayout}):
4440
4440
  * ```javascript
4441
4441
  *
4442
4442
  * new sap.m.Label({text:"Label"});
@@ -5390,7 +5390,7 @@ declare namespace sap {
5390
5390
  }
5391
5391
  /**
5392
5392
  * An `int` type that defines how many cells a control inside of a column of a {@link sap.ui.layout.form.Form Form }
5393
- * control using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout} control as {@link sap.ui.layout.form.FormE#setLayout layout }
5393
+ * control using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout} control as {@link sap.ui.layout.form.Form#setLayout layout }
5394
5394
  * can use.
5395
5395
  *
5396
5396
  * Allowed values are numbers from 1 to 12 and -1. -1 means the value is calculated.
@@ -5401,7 +5401,7 @@ declare namespace sap {
5401
5401
 
5402
5402
  /**
5403
5403
  * An `int` type that defines how many columns a {@link sap.ui.layout.form.Form Form} control using the
5404
- * {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.FormE#setLayout layout }
5404
+ * {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.Form#setLayout layout }
5405
5405
  * can have if it has large size
5406
5406
  *
5407
5407
  * Allowed values are numbers from 1 to 4. **Note:** In versions lower than 1.122 only 3 columns are allowed.
@@ -5412,7 +5412,7 @@ declare namespace sap {
5412
5412
 
5413
5413
  /**
5414
5414
  * An `int` type that defines how many columns a {@link sap.ui.layout.form.Form Form} control using the
5415
- * {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.FormE#setLayout layout }
5415
+ * {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.Form#setLayout layout }
5416
5416
  * can have if it has medium size
5417
5417
  *
5418
5418
  * Allowed values are numbers from 1 to 3. **Note:** In versions lower than 1.122 only 2 columns are allowed.
@@ -5423,7 +5423,7 @@ declare namespace sap {
5423
5423
 
5424
5424
  /**
5425
5425
  * An `int` type that defines how many columns a {@link sap.ui.layout.form.Form Form} control using the
5426
- * {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.FormE#setLayout layout }
5426
+ * {@link sap.ui.layout.form.ColumnLayout ColumnLayout} as {@link sap.ui.layout.form.Form#setLayout layout }
5427
5427
  * can have if it has extra-large size
5428
5428
  *
5429
5429
  * Allowed values are numbers from 1 to 6. **Note:** In versions lower than 1.89 only 4 columns are allowed.
@@ -5434,7 +5434,7 @@ declare namespace sap {
5434
5434
 
5435
5435
  /**
5436
5436
  * An `int` type that defines how many cells beside the controls inside of a column of a {@link sap.ui.layout.form.Form Form }
5437
- * control using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout} control as {@link sap.ui.layout.form.FormE#setLayout layout }
5437
+ * control using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout} control as {@link sap.ui.layout.form.Form#setLayout layout }
5438
5438
  * are empty.
5439
5439
  *
5440
5440
  * Allowed values are numbers from 0 to 11.