@openui5/ts-types 1.92.0 → 1.93.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,4 +1,4 @@
1
- // For Library Version: 1.92.0
1
+ // For Library Version: 1.93.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -314,7 +314,7 @@ declare namespace sap {
314
314
  /**
315
315
  * Fired when the currently active GridSettings changes
316
316
  */
317
- layoutChange?: Function;
317
+ layoutChange?: (oEvent: sap.ui.base.Event) => void;
318
318
  }
319
319
 
320
320
  interface $GridSettingsSettings
@@ -402,7 +402,7 @@ declare namespace sap {
402
402
  /**
403
403
  * Fired when the currently active layout changes
404
404
  */
405
- layoutChange?: Function;
405
+ layoutChange?: (oEvent: sap.ui.base.Event) => void;
406
406
  }
407
407
 
408
408
  /**
@@ -511,23 +511,6 @@ declare namespace sap {
511
511
  mSettings?: sap.ui.layout.cssgrid.$CSSGridSettings
512
512
  );
513
513
 
514
- /**
515
- * Adds some item to the aggregation {@link #getItems items}.
516
- */
517
- addItem(
518
- /**
519
- * The item to add; if empty, nothing is inserted
520
- */
521
- oItem: sap.ui.core.Control
522
- ): this;
523
- /**
524
- * Destroys the customLayout in the aggregation {@link #getCustomLayout customLayout}.
525
- */
526
- destroyCustomLayout(): this;
527
- /**
528
- * Destroys all the items in the aggregation {@link #getItems items}.
529
- */
530
- destroyItems(): this;
531
514
  /**
532
515
  * Creates a new subclass of class sap.ui.layout.cssgrid.CSSGrid with name `sClassName` and enriches it
533
516
  * with the information contained in `oClassInfo`.
@@ -549,6 +532,27 @@ declare namespace sap {
549
532
  */
550
533
  FNMetaImpl?: Function
551
534
  ): Function;
535
+ /**
536
+ * Returns a metadata object for class sap.ui.layout.cssgrid.CSSGrid.
537
+ */
538
+ static getMetadata(): sap.ui.core.ElementMetadata;
539
+ /**
540
+ * Adds some item to the aggregation {@link #getItems items}.
541
+ */
542
+ addItem(
543
+ /**
544
+ * The item to add; if empty, nothing is inserted
545
+ */
546
+ oItem: sap.ui.core.Control
547
+ ): this;
548
+ /**
549
+ * Destroys the customLayout in the aggregation {@link #getCustomLayout customLayout}.
550
+ */
551
+ destroyCustomLayout(): this;
552
+ /**
553
+ * Destroys all the items in the aggregation {@link #getItems items}.
554
+ */
555
+ destroyItems(): this;
552
556
  /**
553
557
  * Gets content of aggregation {@link #getCustomLayout customLayout}.
554
558
  *
@@ -642,10 +646,6 @@ declare namespace sap {
642
646
  * The items contained by the control.
643
647
  */
644
648
  getItems(): sap.ui.core.Control[];
645
- /**
646
- * Returns a metadata object for class sap.ui.layout.cssgrid.CSSGrid.
647
- */
648
- static getMetadata(): sap.ui.core.ElementMetadata;
649
649
  /**
650
650
  * Gets current value of property {@link #getWidth width}.
651
651
  *
@@ -909,6 +909,10 @@ declare namespace sap {
909
909
  */
910
910
  FNMetaImpl?: Function
911
911
  ): Function;
912
+ /**
913
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridBasicLayout.
914
+ */
915
+ static getMetadata(): sap.ui.base.ManagedObjectMetadata;
912
916
  /**
913
917
  * Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
914
918
  *
@@ -981,10 +985,6 @@ declare namespace sap {
981
985
  * Default value is `empty string`.
982
986
  */
983
987
  getGridTemplateRows(): sap.ui.layout.cssgrid.CSSGridTrack;
984
- /**
985
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridBasicLayout.
986
- */
987
- static getMetadata(): sap.ui.base.ManagedObjectMetadata;
988
988
  /**
989
989
  * Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
990
990
  *
@@ -1151,10 +1151,6 @@ declare namespace sap {
1151
1151
  mSettings?: sap.ui.layout.cssgrid.$GridBoxLayoutSettings
1152
1152
  );
1153
1153
 
1154
- /**
1155
- * Returns a gridTemplateColumns value based on boxWidth and boxMinWidth properties
1156
- */
1157
- _getTemplateColumns(): string;
1158
1154
  /**
1159
1155
  * Creates a new subclass of class sap.ui.layout.cssgrid.GridBoxLayout with name `sClassName` and enriches
1160
1156
  * it with the information contained in `oClassInfo`.
@@ -1176,6 +1172,14 @@ declare namespace sap {
1176
1172
  */
1177
1173
  FNMetaImpl?: Function
1178
1174
  ): Function;
1175
+ /**
1176
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridBoxLayout.
1177
+ */
1178
+ static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1179
+ /**
1180
+ * Returns a gridTemplateColumns value based on boxWidth and boxMinWidth properties
1181
+ */
1182
+ _getTemplateColumns(): string;
1179
1183
  /**
1180
1184
  * Gets current value of property {@link #getBoxesPerRowConfig boxesPerRowConfig}.
1181
1185
  *
@@ -1202,13 +1206,7 @@ declare namespace sap {
1202
1206
  * Default value is `empty string`.
1203
1207
  */
1204
1208
  getBoxWidth(): sap.ui.core.CSSSize;
1205
- /**
1206
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridBoxLayout.
1207
- */
1208
- static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1209
- /**
1210
- *
1211
- */
1209
+
1212
1210
  isResponsive(): boolean;
1213
1211
  /**
1214
1212
  * Sets a new value for property {@link #getBoxesPerRowConfig boxesPerRowConfig}.
@@ -1320,6 +1318,10 @@ declare namespace sap {
1320
1318
  */
1321
1319
  FNMetaImpl?: Function
1322
1320
  ): Function;
1321
+ /**
1322
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridItemLayoutData.
1323
+ */
1324
+ static getMetadata(): sap.ui.core.ElementMetadata;
1323
1325
  /**
1324
1326
  * Gets current value of property {@link #getGridColumn gridColumn}.
1325
1327
  *
@@ -1374,10 +1376,6 @@ declare namespace sap {
1374
1376
  * Default value is `empty string`.
1375
1377
  */
1376
1378
  getGridRowStart(): sap.ui.layout.cssgrid.CSSGridLine;
1377
- /**
1378
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridItemLayoutData.
1379
- */
1380
- static getMetadata(): sap.ui.core.ElementMetadata;
1381
1379
  /**
1382
1380
  * Sets a new value for property {@link #getGridColumn gridColumn}.
1383
1381
  *
@@ -1514,6 +1512,31 @@ declare namespace sap {
1514
1512
  mSettings?: sap.ui.layout.cssgrid.$GridLayoutBaseSettings
1515
1513
  );
1516
1514
 
1515
+ /**
1516
+ * Creates a new subclass of class sap.ui.layout.cssgrid.GridLayoutBase with name `sClassName` and enriches
1517
+ * it with the information contained in `oClassInfo`.
1518
+ *
1519
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
1520
+ */
1521
+ static extend<T extends Record<string, unknown>>(
1522
+ /**
1523
+ * Name of the class being created
1524
+ */
1525
+ sClassName: string,
1526
+ /**
1527
+ * Object literal with information about the class
1528
+ */
1529
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.cssgrid.GridLayoutBase>,
1530
+ /**
1531
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1532
+ * used by this class
1533
+ */
1534
+ FNMetaImpl?: Function
1535
+ ): Function;
1536
+ /**
1537
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridLayoutBase.
1538
+ */
1539
+ static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1517
1540
  /**
1518
1541
  * Removes all display:grid styles from the provided HTML element
1519
1542
  */
@@ -1545,39 +1568,12 @@ declare namespace sap {
1545
1568
  */
1546
1569
  aElements: sap.ui.core.Control[] | HTMLElement[]
1547
1570
  ): void;
1548
- /**
1549
- * Creates a new subclass of class sap.ui.layout.cssgrid.GridLayoutBase with name `sClassName` and enriches
1550
- * it with the information contained in `oClassInfo`.
1551
- *
1552
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
1553
- */
1554
- static extend<T extends Record<string, unknown>>(
1555
- /**
1556
- * Name of the class being created
1557
- */
1558
- sClassName: string,
1559
- /**
1560
- * Object literal with information about the class
1561
- */
1562
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.cssgrid.GridLayoutBase>,
1563
- /**
1564
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1565
- * used by this class
1566
- */
1567
- FNMetaImpl?: Function
1568
- ): Function;
1569
1571
  /**
1570
1572
  * Should return sap.ui.layout.cssgrid.GridSettings - The active GridSettings Must be implemented by child
1571
1573
  * classes
1572
1574
  */
1573
1575
  getActiveGridSettings(): void;
1574
- /**
1575
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridLayoutBase.
1576
- */
1577
- static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1578
- /**
1579
- *
1580
- */
1576
+
1581
1577
  isResponsive(): boolean;
1582
1578
  }
1583
1579
  /**
@@ -1585,9 +1581,6 @@ declare namespace sap {
1585
1581
  * layout when necessary. Calls sap.ui.layout.cssgrid.GridLayoutBase hook functions.
1586
1582
  */
1587
1583
  class GridLayoutDelegate extends sap.ui.base.Object {
1588
- /**
1589
- *
1590
- */
1591
1584
  constructor();
1592
1585
  }
1593
1586
  /**
@@ -1629,6 +1622,34 @@ declare namespace sap {
1629
1622
  mSettings?: sap.ui.layout.cssgrid.$GridResponsiveLayoutSettings
1630
1623
  );
1631
1624
 
1625
+ /**
1626
+ * Creates a new subclass of class sap.ui.layout.cssgrid.GridResponsiveLayout with name `sClassName` and
1627
+ * enriches it with the information contained in `oClassInfo`.
1628
+ *
1629
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
1630
+ */
1631
+ static extend<T extends Record<string, unknown>>(
1632
+ /**
1633
+ * Name of the class being created
1634
+ */
1635
+ sClassName: string,
1636
+ /**
1637
+ * Object literal with information about the class
1638
+ */
1639
+ oClassInfo?: sap.ClassInfo<
1640
+ T,
1641
+ sap.ui.layout.cssgrid.GridResponsiveLayout
1642
+ >,
1643
+ /**
1644
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1645
+ * used by this class
1646
+ */
1647
+ FNMetaImpl?: Function
1648
+ ): Function;
1649
+ /**
1650
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridResponsiveLayout.
1651
+ */
1652
+ static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1632
1653
  /**
1633
1654
  * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.layout.cssgrid.GridResponsiveLayout`.
1634
1655
  *
@@ -1707,30 +1728,6 @@ declare namespace sap {
1707
1728
  */
1708
1729
  oListener?: object
1709
1730
  ): this;
1710
- /**
1711
- * Creates a new subclass of class sap.ui.layout.cssgrid.GridResponsiveLayout with name `sClassName` and
1712
- * enriches it with the information contained in `oClassInfo`.
1713
- *
1714
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
1715
- */
1716
- static extend<T extends Record<string, unknown>>(
1717
- /**
1718
- * Name of the class being created
1719
- */
1720
- sClassName: string,
1721
- /**
1722
- * Object literal with information about the class
1723
- */
1724
- oClassInfo?: sap.ClassInfo<
1725
- T,
1726
- sap.ui.layout.cssgrid.GridResponsiveLayout
1727
- >,
1728
- /**
1729
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1730
- * used by this class
1731
- */
1732
- FNMetaImpl?: Function
1733
- ): Function;
1734
1731
  /**
1735
1732
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
1736
1733
  */
@@ -1784,10 +1781,6 @@ declare namespace sap {
1784
1781
  * The sap.ui.layout.cssgrid.GridSettings applied for size "XL"
1785
1782
  */
1786
1783
  getLayoutXL(): sap.ui.layout.cssgrid.GridSettings;
1787
- /**
1788
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridResponsiveLayout.
1789
- */
1790
- static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1791
1784
  /**
1792
1785
  * Sets a new value for property {@link #getContainerQuery containerQuery}.
1793
1786
  *
@@ -1908,6 +1901,10 @@ declare namespace sap {
1908
1901
  */
1909
1902
  FNMetaImpl?: Function
1910
1903
  ): Function;
1904
+ /**
1905
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridSettings.
1906
+ */
1907
+ static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1911
1908
  /**
1912
1909
  * Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
1913
1910
  *
@@ -1980,10 +1977,6 @@ declare namespace sap {
1980
1977
  * Default value is `empty string`.
1981
1978
  */
1982
1979
  getGridTemplateRows(): sap.ui.layout.cssgrid.CSSGridTrack;
1983
- /**
1984
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridSettings.
1985
- */
1986
- static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1987
1980
  /**
1988
1981
  * Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
1989
1982
  *
@@ -2177,6 +2170,10 @@ declare namespace sap {
2177
2170
  */
2178
2171
  FNMetaImpl?: Function
2179
2172
  ): Function;
2173
+ /**
2174
+ * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnItemLayoutData.
2175
+ */
2176
+ static getMetadata(): sap.ui.core.ElementMetadata;
2180
2177
  /**
2181
2178
  * Gets current value of property {@link #getColumns columns}.
2182
2179
  *
@@ -2185,10 +2182,6 @@ declare namespace sap {
2185
2182
  * Default value is `1`.
2186
2183
  */
2187
2184
  getColumns(): int;
2188
- /**
2189
- * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnItemLayoutData.
2190
- */
2191
- static getMetadata(): sap.ui.core.ElementMetadata;
2192
2185
  /**
2193
2186
  * Gets current value of property {@link #getRows rows}.
2194
2187
  *
@@ -2270,6 +2263,34 @@ declare namespace sap {
2270
2263
  mSettings?: sap.ui.layout.cssgrid.$ResponsiveColumnLayoutSettings
2271
2264
  );
2272
2265
 
2266
+ /**
2267
+ * Creates a new subclass of class sap.ui.layout.cssgrid.ResponsiveColumnLayout with name `sClassName` and
2268
+ * enriches it with the information contained in `oClassInfo`.
2269
+ *
2270
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
2271
+ */
2272
+ static extend<T extends Record<string, unknown>>(
2273
+ /**
2274
+ * Name of the class being created
2275
+ */
2276
+ sClassName: string,
2277
+ /**
2278
+ * Object literal with information about the class
2279
+ */
2280
+ oClassInfo?: sap.ClassInfo<
2281
+ T,
2282
+ sap.ui.layout.cssgrid.ResponsiveColumnLayout
2283
+ >,
2284
+ /**
2285
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2286
+ * used by this class
2287
+ */
2288
+ FNMetaImpl?: Function
2289
+ ): Function;
2290
+ /**
2291
+ * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnLayout.
2292
+ */
2293
+ static getMetadata(): sap.ui.base.ManagedObjectMetadata;
2273
2294
  /**
2274
2295
  * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.layout.cssgrid.ResponsiveColumnLayout`.
2275
2296
  *
@@ -2329,35 +2350,11 @@ declare namespace sap {
2329
2350
  oListener?: object
2330
2351
  ): this;
2331
2352
  /**
2332
- * Creates a new subclass of class sap.ui.layout.cssgrid.ResponsiveColumnLayout with name `sClassName` and
2333
- * enriches it with the information contained in `oClassInfo`.
2334
- *
2335
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
2353
+ * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
2336
2354
  */
2337
- static extend<T extends Record<string, unknown>>(
2338
- /**
2339
- * Name of the class being created
2340
- */
2341
- sClassName: string,
2342
- /**
2343
- * Object literal with information about the class
2344
- */
2345
- oClassInfo?: sap.ClassInfo<
2346
- T,
2347
- sap.ui.layout.cssgrid.ResponsiveColumnLayout
2348
- >,
2355
+ fireLayoutChange(
2349
2356
  /**
2350
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2351
- * used by this class
2352
- */
2353
- FNMetaImpl?: Function
2354
- ): Function;
2355
- /**
2356
- * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
2357
- */
2358
- fireLayoutChange(
2359
- /**
2360
- * Parameters to pass along with the event
2357
+ * Parameters to pass along with the event
2361
2358
  */
2362
2359
  mParameters?: {
2363
2360
  /**
@@ -2366,10 +2363,6 @@ declare namespace sap {
2366
2363
  layout?: string;
2367
2364
  }
2368
2365
  ): this;
2369
- /**
2370
- * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnLayout.
2371
- */
2372
- static getMetadata(): sap.ui.base.ManagedObjectMetadata;
2373
2366
  /**
2374
2367
  * Returns if the Grid Layout is responsive.
2375
2368
  */
@@ -3010,6 +3003,9 @@ declare namespace sap {
3010
3003
  *
3011
3004
  * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
3012
3005
  * layout.
3006
+ *
3007
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used. For compatibility reasons
3008
+ * the default could not be changed.
3013
3009
  */
3014
3010
  layout?:
3015
3011
  | sap.ui.layout.form.SimpleFormLayout
@@ -3209,17 +3205,18 @@ declare namespace sap {
3209
3205
  *
3210
3206
  * - Add controls as input fields, text fields or other as needed.
3211
3207
  * - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
3212
- * a `ResponsiveLayout` is used as a layout, the form content is weighted using weight 3 for the labels
3213
- * and weight 5 for the fields part. By default the label column is 192 pixels wide. If your input controls
3214
- * should influence their width, you can add `sap.ui.layout.ResponsiveFlowLayoutData` to them via `setLayoutData`
3215
- * method. Ensure that the sum of the weights in the `ResponsiveFlowLayoutData` is not more than 5, as this
3216
- * is the total width of the input control part of each form row. Example for a row where the `Input`
3217
- * weight 4 and the second `Input` weight 1 (using `ResponsiveLayout`):
3208
+ * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
3209
+ * cells for the field part, for large size. If there is only little space, the labels are above the fields
3210
+ * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
3211
+ * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
3212
+ * not more than 12, as this is the total width of the input control part of each form row. Example
3213
+ * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
3214
+ *
3218
3215
  * ```javascript
3219
3216
  *
3220
3217
  * new sap.m.Label({text:"Label"});
3221
- * new sap.m.Input({value:"Weight 4", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:4})}),
3222
- * new sap.m.Input({value:"Weight 1", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:1})}),
3218
+ * new sap.m.Input({value:"6 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 6, cellsSmall: 8})}),
3219
+ * new sap.m.Input({value:"2 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 2, cellsSmall: 4})}),
3223
3220
  * ```
3224
3221
  *
3225
3222
  *
@@ -3343,6 +3340,10 @@ declare namespace sap {
3343
3340
  */
3344
3341
  FNMetaImpl?: Function
3345
3342
  ): Function;
3343
+ /**
3344
+ * Returns a metadata object for class sap.ui.layout.form.ColumnContainerData.
3345
+ */
3346
+ static getMetadata(): sap.ui.core.ElementMetadata;
3346
3347
  /**
3347
3348
  * Gets current value of property {@link #getColumnsL columnsL}.
3348
3349
  *
@@ -3371,10 +3372,6 @@ declare namespace sap {
3371
3372
  * Default value is `2`.
3372
3373
  */
3373
3374
  getColumnsXL(): sap.ui.layout.form.ColumnsXL;
3374
- /**
3375
- * Returns a metadata object for class sap.ui.layout.form.ColumnContainerData.
3376
- */
3377
- static getMetadata(): sap.ui.core.ElementMetadata;
3378
3375
  /**
3379
3376
  * Sets a new value for property {@link #getColumnsL columnsL}.
3380
3377
  *
@@ -3486,6 +3483,10 @@ declare namespace sap {
3486
3483
  */
3487
3484
  FNMetaImpl?: Function
3488
3485
  ): Function;
3486
+ /**
3487
+ * Returns a metadata object for class sap.ui.layout.form.ColumnElementData.
3488
+ */
3489
+ static getMetadata(): sap.ui.core.ElementMetadata;
3489
3490
  /**
3490
3491
  * Gets current value of property {@link #getCellsLarge cellsLarge}.
3491
3492
  *
@@ -3508,10 +3509,6 @@ declare namespace sap {
3508
3509
  * Default value is `12`.
3509
3510
  */
3510
3511
  getCellsSmall(): sap.ui.layout.form.ColumnCells;
3511
- /**
3512
- * Returns a metadata object for class sap.ui.layout.form.ColumnElementData.
3513
- */
3514
- static getMetadata(): sap.ui.core.ElementMetadata;
3515
3512
  /**
3516
3513
  * Sets a new value for property {@link #getCellsLarge cellsLarge}.
3517
3514
  *
@@ -3638,6 +3635,10 @@ declare namespace sap {
3638
3635
  */
3639
3636
  FNMetaImpl?: Function
3640
3637
  ): Function;
3638
+ /**
3639
+ * Returns a metadata object for class sap.ui.layout.form.ColumnLayout.
3640
+ */
3641
+ static getMetadata(): sap.ui.core.ElementMetadata;
3641
3642
  /**
3642
3643
  * Gets current value of property {@link #getColumnsL columnsL}.
3643
3644
  *
@@ -3683,10 +3684,6 @@ declare namespace sap {
3683
3684
  * Default value is `4`.
3684
3685
  */
3685
3686
  getLabelCellsLarge(): sap.ui.layout.form.ColumnCells;
3686
- /**
3687
- * Returns a metadata object for class sap.ui.layout.form.ColumnLayout.
3688
- */
3689
- static getMetadata(): sap.ui.core.ElementMetadata;
3690
3687
  /**
3691
3688
  * Sets a new value for property {@link #getColumnsL columnsL}.
3692
3689
  *
@@ -3824,6 +3821,31 @@ declare namespace sap {
3824
3821
  mSettings?: sap.ui.layout.form.$FormSettings
3825
3822
  );
3826
3823
 
3824
+ /**
3825
+ * Creates a new subclass of class sap.ui.layout.form.Form with name `sClassName` and enriches it with the
3826
+ * information contained in `oClassInfo`.
3827
+ *
3828
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3829
+ */
3830
+ static extend<T extends Record<string, unknown>>(
3831
+ /**
3832
+ * Name of the class being created
3833
+ */
3834
+ sClassName: string,
3835
+ /**
3836
+ * Object literal with information about the class
3837
+ */
3838
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.Form>,
3839
+ /**
3840
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3841
+ * used by this class
3842
+ */
3843
+ FNMetaImpl?: Function
3844
+ ): Function;
3845
+ /**
3846
+ * Returns a metadata object for class sap.ui.layout.form.Form.
3847
+ */
3848
+ static getMetadata(): sap.ui.core.ElementMetadata;
3827
3849
  /**
3828
3850
  * @SINCE 1.28.0
3829
3851
  *
@@ -3862,27 +3884,6 @@ declare namespace sap {
3862
3884
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
3863
3885
  */
3864
3886
  destroyToolbar(): this;
3865
- /**
3866
- * Creates a new subclass of class sap.ui.layout.form.Form with name `sClassName` and enriches it with the
3867
- * information contained in `oClassInfo`.
3868
- *
3869
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3870
- */
3871
- static extend<T extends Record<string, unknown>>(
3872
- /**
3873
- * Name of the class being created
3874
- */
3875
- sClassName: string,
3876
- /**
3877
- * Object literal with information about the class
3878
- */
3879
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.Form>,
3880
- /**
3881
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3882
- * used by this class
3883
- */
3884
- FNMetaImpl?: Function
3885
- ): Function;
3886
3887
  /**
3887
3888
  * @SINCE 1.28.0
3888
3889
  *
@@ -3925,10 +3926,6 @@ declare namespace sap {
3925
3926
  * the best way possible.
3926
3927
  */
3927
3928
  getLayout(): sap.ui.layout.form.FormLayout;
3928
- /**
3929
- * Returns a metadata object for class sap.ui.layout.form.Form.
3930
- */
3931
- static getMetadata(): sap.ui.core.ElementMetadata;
3932
3929
  /**
3933
3930
  * Gets content of aggregation {@link #getTitle title}.
3934
3931
  *
@@ -4127,6 +4124,31 @@ declare namespace sap {
4127
4124
  mSettings?: sap.ui.layout.form.$FormContainerSettings
4128
4125
  );
4129
4126
 
4127
+ /**
4128
+ * Creates a new subclass of class sap.ui.layout.form.FormContainer with name `sClassName` and enriches
4129
+ * it with the information contained in `oClassInfo`.
4130
+ *
4131
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4132
+ */
4133
+ static extend<T extends Record<string, unknown>>(
4134
+ /**
4135
+ * Name of the class being created
4136
+ */
4137
+ sClassName: string,
4138
+ /**
4139
+ * Object literal with information about the class
4140
+ */
4141
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.FormContainer>,
4142
+ /**
4143
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4144
+ * used by this class
4145
+ */
4146
+ FNMetaImpl?: Function
4147
+ ): Function;
4148
+ /**
4149
+ * Returns a metadata object for class sap.ui.layout.form.FormContainer.
4150
+ */
4151
+ static getMetadata(): sap.ui.core.ElementMetadata;
4130
4152
  /**
4131
4153
  * @SINCE 1.74.0
4132
4154
  *
@@ -4176,27 +4198,6 @@ declare namespace sap {
4176
4198
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
4177
4199
  */
4178
4200
  destroyToolbar(): this;
4179
- /**
4180
- * Creates a new subclass of class sap.ui.layout.form.FormContainer with name `sClassName` and enriches
4181
- * it with the information contained in `oClassInfo`.
4182
- *
4183
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4184
- */
4185
- static extend<T extends Record<string, unknown>>(
4186
- /**
4187
- * Name of the class being created
4188
- */
4189
- sClassName: string,
4190
- /**
4191
- * Object literal with information about the class
4192
- */
4193
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.FormContainer>,
4194
- /**
4195
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4196
- * used by this class
4197
- */
4198
- FNMetaImpl?: Function
4199
- ): Function;
4200
4201
  /**
4201
4202
  * @SINCE 1.36.0
4202
4203
  *
@@ -4230,10 +4231,6 @@ declare namespace sap {
4230
4231
  * The `FormElements` contain the content (labels and fields) of the `FormContainers`.
4231
4232
  */
4232
4233
  getFormElements(): sap.ui.layout.form.FormElement[];
4233
- /**
4234
- * Returns a metadata object for class sap.ui.layout.form.FormContainer.
4235
- */
4236
- static getMetadata(): sap.ui.core.ElementMetadata;
4237
4234
  /**
4238
4235
  * Gets content of aggregation {@link #getTitle title}.
4239
4236
  *
@@ -4440,6 +4437,31 @@ declare namespace sap {
4440
4437
  mSettings?: sap.ui.layout.form.$FormElementSettings
4441
4438
  );
4442
4439
 
4440
+ /**
4441
+ * Creates a new subclass of class sap.ui.layout.form.FormElement with name `sClassName` and enriches it
4442
+ * with the information contained in `oClassInfo`.
4443
+ *
4444
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4445
+ */
4446
+ static extend<T extends Record<string, unknown>>(
4447
+ /**
4448
+ * Name of the class being created
4449
+ */
4450
+ sClassName: string,
4451
+ /**
4452
+ * Object literal with information about the class
4453
+ */
4454
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.FormElement>,
4455
+ /**
4456
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4457
+ * used by this class
4458
+ */
4459
+ FNMetaImpl?: Function
4460
+ ): Function;
4461
+ /**
4462
+ * Returns a metadata object for class sap.ui.layout.form.FormElement.
4463
+ */
4464
+ static getMetadata(): sap.ui.core.ElementMetadata;
4443
4465
  /**
4444
4466
  * @SINCE 1.74.0
4445
4467
  *
@@ -4472,27 +4494,6 @@ declare namespace sap {
4472
4494
  * Destroys the label in the aggregation {@link #getLabel label}.
4473
4495
  */
4474
4496
  destroyLabel(): this;
4475
- /**
4476
- * Creates a new subclass of class sap.ui.layout.form.FormElement with name `sClassName` and enriches it
4477
- * with the information contained in `oClassInfo`.
4478
- *
4479
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4480
- */
4481
- static extend<T extends Record<string, unknown>>(
4482
- /**
4483
- * Name of the class being created
4484
- */
4485
- sClassName: string,
4486
- /**
4487
- * Object literal with information about the class
4488
- */
4489
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.FormElement>,
4490
- /**
4491
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4492
- * used by this class
4493
- */
4494
- FNMetaImpl?: Function
4495
- ): Function;
4496
4497
  /**
4497
4498
  * Gets content of aggregation {@link #getFields fields}.
4498
4499
  *
@@ -4517,10 +4518,6 @@ declare namespace sap {
4517
4518
  * needs the information of the label to render the `Form`.
4518
4519
  */
4519
4520
  getLabelControl(): sap.ui.core.Label;
4520
- /**
4521
- * Returns a metadata object for class sap.ui.layout.form.FormElement.
4522
- */
4523
- static getMetadata(): sap.ui.core.ElementMetadata;
4524
4521
  /**
4525
4522
  * Gets current value of property {@link #getVisible visible}.
4526
4523
  *
@@ -4666,6 +4663,10 @@ declare namespace sap {
4666
4663
  */
4667
4664
  FNMetaImpl?: Function
4668
4665
  ): Function;
4666
+ /**
4667
+ * Returns a metadata object for class sap.ui.layout.form.FormLayout.
4668
+ */
4669
+ static getMetadata(): sap.ui.core.ElementMetadata;
4669
4670
  /**
4670
4671
  * @SINCE 1.36.0
4671
4672
  *
@@ -4678,10 +4679,6 @@ declare namespace sap {
4678
4679
  * Default value is `Translucent`.
4679
4680
  */
4680
4681
  getBackgroundDesign(): sap.ui.layout.BackgroundDesign;
4681
- /**
4682
- * Returns a metadata object for class sap.ui.layout.form.FormLayout.
4683
- */
4684
- static getMetadata(): sap.ui.core.ElementMetadata;
4685
4682
  /**
4686
4683
  * @SINCE 1.36.0
4687
4684
  *
@@ -4760,6 +4757,10 @@ declare namespace sap {
4760
4757
  */
4761
4758
  FNMetaImpl?: Function
4762
4759
  ): Function;
4760
+ /**
4761
+ * Returns a metadata object for class sap.ui.layout.form.GridContainerData.
4762
+ */
4763
+ static getMetadata(): sap.ui.core.ElementMetadata;
4763
4764
  /**
4764
4765
  * Gets current value of property {@link #getHalfGrid halfGrid}.
4765
4766
  *
@@ -4770,10 +4771,6 @@ declare namespace sap {
4770
4771
  * Default value is `false`.
4771
4772
  */
4772
4773
  getHalfGrid(): boolean;
4773
- /**
4774
- * Returns a metadata object for class sap.ui.layout.form.GridContainerData.
4775
- */
4776
- static getMetadata(): sap.ui.core.ElementMetadata;
4777
4774
  /**
4778
4775
  * Sets a new value for property {@link #getHalfGrid halfGrid}.
4779
4776
  *
@@ -4850,6 +4847,10 @@ declare namespace sap {
4850
4847
  */
4851
4848
  FNMetaImpl?: Function
4852
4849
  ): Function;
4850
+ /**
4851
+ * Returns a metadata object for class sap.ui.layout.form.GridElementData.
4852
+ */
4853
+ static getMetadata(): sap.ui.core.ElementMetadata;
4853
4854
  /**
4854
4855
  * Gets current value of property {@link #getHCells hCells}.
4855
4856
  *
@@ -4866,10 +4867,6 @@ declare namespace sap {
4866
4867
  * Default value is `'auto'`.
4867
4868
  */
4868
4869
  getHCells(): sap.ui.layout.form.GridElementCells;
4869
- /**
4870
- * Returns a metadata object for class sap.ui.layout.form.GridElementData.
4871
- */
4872
- static getMetadata(): sap.ui.core.ElementMetadata;
4873
4870
  /**
4874
4871
  * Gets current value of property {@link #getVCells vCells}.
4875
4872
  *
@@ -5103,6 +5100,10 @@ declare namespace sap {
5103
5100
  */
5104
5101
  FNMetaImpl?: Function
5105
5102
  ): Function;
5103
+ /**
5104
+ * Returns a metadata object for class sap.ui.layout.form.ResponsiveGridLayout.
5105
+ */
5106
+ static getMetadata(): sap.ui.core.ElementMetadata;
5106
5107
  /**
5107
5108
  * @SINCE 1.34.0
5108
5109
  *
@@ -5278,10 +5279,6 @@ declare namespace sap {
5278
5279
  * Default value is `-1`.
5279
5280
  */
5280
5281
  getLabelSpanXL(): int;
5281
- /**
5282
- * Returns a metadata object for class sap.ui.layout.form.ResponsiveGridLayout.
5283
- */
5284
- static getMetadata(): sap.ui.core.ElementMetadata;
5285
5282
  /**
5286
5283
  * @SINCE 1.34.0
5287
5284
  *
@@ -5600,6 +5597,7 @@ declare namespace sap {
5600
5597
  }
5601
5598
  /**
5602
5599
  * @SINCE 1.16.0
5600
+ * @deprecated (since 1.93) - replaced by {@link sap.ui.layout.form.ColumnLayout ColumnLayout}
5603
5601
  *
5604
5602
  * The `ResponsiveLayout` renders a `Form` with a responsive layout. Internally the `ResponsiveFlowLayout`
5605
5603
  * is used. The responsiveness of this layout tries to best use the available space. This means that the
@@ -5726,19 +5724,6 @@ declare namespace sap {
5726
5724
  mSettings?: sap.ui.layout.form.$SemanticFormElementSettings
5727
5725
  );
5728
5726
 
5729
- /**
5730
- * Adds some fieldLabel to the aggregation {@link #getFieldLabels fieldLabels}.
5731
- */
5732
- addFieldLabel(
5733
- /**
5734
- * The fieldLabel to add; if empty, nothing is inserted
5735
- */
5736
- oFieldLabel: sap.ui.core.Label
5737
- ): this;
5738
- /**
5739
- * Destroys all the fieldLabels in the aggregation {@link #getFieldLabels fieldLabels}.
5740
- */
5741
- destroyFieldLabels(): this;
5742
5727
  /**
5743
5728
  * Creates a new subclass of class sap.ui.layout.form.SemanticFormElement with name `sClassName` and enriches
5744
5729
  * it with the information contained in `oClassInfo`.
@@ -5763,6 +5748,23 @@ declare namespace sap {
5763
5748
  */
5764
5749
  FNMetaImpl?: Function
5765
5750
  ): Function;
5751
+ /**
5752
+ * Returns a metadata object for class sap.ui.layout.form.SemanticFormElement.
5753
+ */
5754
+ static getMetadata(): sap.ui.core.ElementMetadata;
5755
+ /**
5756
+ * Adds some fieldLabel to the aggregation {@link #getFieldLabels fieldLabels}.
5757
+ */
5758
+ addFieldLabel(
5759
+ /**
5760
+ * The fieldLabel to add; if empty, nothing is inserted
5761
+ */
5762
+ oFieldLabel: sap.ui.core.Label
5763
+ ): this;
5764
+ /**
5765
+ * Destroys all the fieldLabels in the aggregation {@link #getFieldLabels fieldLabels}.
5766
+ */
5767
+ destroyFieldLabels(): this;
5766
5768
  /**
5767
5769
  * Gets current value of property {@link #getDelimiter delimiter}.
5768
5770
  *
@@ -5786,10 +5788,6 @@ declare namespace sap {
5786
5788
  * The order of the labels and the fields must be the same.
5787
5789
  */
5788
5790
  getFieldLabels(): sap.ui.core.Label[];
5789
- /**
5790
- * Returns a metadata object for class sap.ui.layout.form.SemanticFormElement.
5791
- */
5792
- static getMetadata(): sap.ui.core.ElementMetadata;
5793
5791
  /**
5794
5792
  * Checks for the provided `sap.ui.core.Label` in the aggregation {@link #getFieldLabels fieldLabels}. and
5795
5793
  * returns its index if found or -1 otherwise.
@@ -5896,7 +5894,32 @@ declare namespace sap {
5896
5894
  );
5897
5895
 
5898
5896
  /**
5899
- * @SINCE 1.32.0
5897
+ * Creates a new subclass of class sap.ui.layout.form.SimpleForm with name `sClassName` and enriches it
5898
+ * with the information contained in `oClassInfo`.
5899
+ *
5900
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5901
+ */
5902
+ static extend<T extends Record<string, unknown>>(
5903
+ /**
5904
+ * Name of the class being created
5905
+ */
5906
+ sClassName: string,
5907
+ /**
5908
+ * Object literal with information about the class
5909
+ */
5910
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.SimpleForm>,
5911
+ /**
5912
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5913
+ * used by this class
5914
+ */
5915
+ FNMetaImpl?: Function
5916
+ ): Function;
5917
+ /**
5918
+ * Returns a metadata object for class sap.ui.layout.form.SimpleForm.
5919
+ */
5920
+ static getMetadata(): sap.ui.core.ElementMetadata;
5921
+ /**
5922
+ * @SINCE 1.32.0
5900
5923
  *
5901
5924
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
5902
5925
  */
@@ -5931,27 +5954,6 @@ declare namespace sap {
5931
5954
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
5932
5955
  */
5933
5956
  destroyToolbar(): this;
5934
- /**
5935
- * Creates a new subclass of class sap.ui.layout.form.SimpleForm with name `sClassName` and enriches it
5936
- * with the information contained in `oClassInfo`.
5937
- *
5938
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5939
- */
5940
- static extend<T extends Record<string, unknown>>(
5941
- /**
5942
- * Name of the class being created
5943
- */
5944
- sClassName: string,
5945
- /**
5946
- * Object literal with information about the class
5947
- */
5948
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.form.SimpleForm>,
5949
- /**
5950
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5951
- * used by this class
5952
- */
5953
- FNMetaImpl?: Function
5954
- ): Function;
5955
5957
  /**
5956
5958
  * @SINCE 1.34.0
5957
5959
  *
@@ -6076,17 +6078,18 @@ declare namespace sap {
6076
6078
  *
6077
6079
  * - Add controls as input fields, text fields or other as needed.
6078
6080
  * - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
6079
- * a `ResponsiveLayout` is used as a layout, the form content is weighted using weight 3 for the labels
6080
- * and weight 5 for the fields part. By default the label column is 192 pixels wide. If your input controls
6081
- * should influence their width, you can add `sap.ui.layout.ResponsiveFlowLayoutData` to them via `setLayoutData`
6082
- * method. Ensure that the sum of the weights in the `ResponsiveFlowLayoutData` is not more than 5, as this
6083
- * is the total width of the input control part of each form row. Example for a row where the `Input`
6084
- * weight 4 and the second `Input` weight 1 (using `ResponsiveLayout`):
6081
+ * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
6082
+ * cells for the field part, for large size. If there is only little space, the labels are above the fields
6083
+ * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
6084
+ * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
6085
+ * not more than 12, as this is the total width of the input control part of each form row. Example
6086
+ * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
6087
+ *
6085
6088
  * ```javascript
6086
6089
  *
6087
6090
  * new sap.m.Label({text:"Label"});
6088
- * new sap.m.Input({value:"Weight 4", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:4})}),
6089
- * new sap.m.Input({value:"Weight 1", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:1})}),
6091
+ * new sap.m.Input({value:"6 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 6, cellsSmall: 8})}),
6092
+ * new sap.m.Input({value:"2 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 2, cellsSmall: 4})}),
6090
6093
  * ```
6091
6094
  *
6092
6095
  *
@@ -6260,6 +6263,9 @@ declare namespace sap {
6260
6263
  * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
6261
6264
  * layout.
6262
6265
  *
6266
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used. For compatibility reasons
6267
+ * the default could not be changed.
6268
+ *
6263
6269
  * Default value is `ResponsiveLayout`.
6264
6270
  */
6265
6271
  getLayout(): sap.ui.layout.form.SimpleFormLayout;
@@ -6275,10 +6281,6 @@ declare namespace sap {
6275
6281
  * Default value is `2`.
6276
6282
  */
6277
6283
  getMaxContainerCols(): int;
6278
- /**
6279
- * Returns a metadata object for class sap.ui.layout.form.SimpleForm.
6280
- */
6281
- static getMetadata(): sap.ui.core.ElementMetadata;
6282
6284
  /**
6283
6285
  * Gets current value of property {@link #getMinWidth minWidth}.
6284
6286
  *
@@ -6773,6 +6775,9 @@ declare namespace sap {
6773
6775
  * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
6774
6776
  * layout.
6775
6777
  *
6778
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used. For compatibility reasons
6779
+ * the default could not be changed.
6780
+ *
6776
6781
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6777
6782
  *
6778
6783
  * Default value is `ResponsiveLayout`.
@@ -6908,6 +6913,8 @@ declare namespace sap {
6908
6913
  */
6909
6914
  ResponsiveGridLayout = "ResponsiveGridLayout",
6910
6915
  /**
6916
+ * @deprecated (since 1.93) - replaced by {@link sap.ui.layout.form.SimpleFormLayout.ColumnLayout ColumnLayout}
6917
+ *
6911
6918
  * Uses the `ResponsiveLayout` layout to render the `SimpleForm` control
6912
6919
  */
6913
6920
  ResponsiveLayout = "ResponsiveLayout",
@@ -7211,7 +7218,7 @@ declare namespace sap {
7211
7218
  *
7212
7219
  * Fires when the current breakpoint has been changed.
7213
7220
  */
7214
- breakpointChanged?: Function;
7221
+ breakpointChanged?: (oEvent: sap.ui.base.Event) => void;
7215
7222
  }
7216
7223
 
7217
7224
  interface $FixFlexSettings extends sap.ui.core.$ControlSettings {
@@ -7582,7 +7589,7 @@ declare namespace sap {
7582
7589
  /**
7583
7590
  * Fired when contents are resized.
7584
7591
  */
7585
- resize?: Function;
7592
+ resize?: (oEvent: sap.ui.base.Event) => void;
7586
7593
  }
7587
7594
 
7588
7595
  interface $ResponsiveFlowLayoutSettings
@@ -7727,7 +7734,7 @@ declare namespace sap {
7727
7734
  /**
7728
7735
  * Event is fired when contents are resized.
7729
7736
  */
7730
- resize?: Function;
7737
+ resize?: (oEvent: sap.ui.base.Event) => void;
7731
7738
  }
7732
7739
 
7733
7740
  interface $SplitterLayoutDataSettings
@@ -7850,19 +7857,6 @@ declare namespace sap {
7850
7857
  mSettings?: sap.ui.layout.$BlockLayoutSettings
7851
7858
  );
7852
7859
 
7853
- /**
7854
- * Adds some content to the aggregation {@link #getContent content}.
7855
- */
7856
- addContent(
7857
- /**
7858
- * The content to add; if empty, nothing is inserted
7859
- */
7860
- oContent: sap.ui.layout.BlockLayoutRow
7861
- ): this;
7862
- /**
7863
- * Destroys all the content in the aggregation {@link #getContent content}.
7864
- */
7865
- destroyContent(): this;
7866
7860
  /**
7867
7861
  * Creates a new subclass of class sap.ui.layout.BlockLayout with name `sClassName` and enriches it with
7868
7862
  * the information contained in `oClassInfo`.
@@ -7884,6 +7878,23 @@ declare namespace sap {
7884
7878
  */
7885
7879
  FNMetaImpl?: Function
7886
7880
  ): Function;
7881
+ /**
7882
+ * Returns a metadata object for class sap.ui.layout.BlockLayout.
7883
+ */
7884
+ static getMetadata(): sap.ui.core.ElementMetadata;
7885
+ /**
7886
+ * Adds some content to the aggregation {@link #getContent content}.
7887
+ */
7888
+ addContent(
7889
+ /**
7890
+ * The content to add; if empty, nothing is inserted
7891
+ */
7892
+ oContent: sap.ui.layout.BlockLayoutRow
7893
+ ): this;
7894
+ /**
7895
+ * Destroys all the content in the aggregation {@link #getContent content}.
7896
+ */
7897
+ destroyContent(): this;
7887
7898
  /**
7888
7899
  * @SINCE 1.42
7889
7900
  *
@@ -7910,10 +7921,6 @@ declare namespace sap {
7910
7921
  * Default value is `false`.
7911
7922
  */
7912
7923
  getKeepFontSize(): boolean;
7913
- /**
7914
- * Returns a metadata object for class sap.ui.layout.BlockLayout.
7915
- */
7916
- static getMetadata(): sap.ui.core.ElementMetadata;
7917
7924
  /**
7918
7925
  * Checks for the provided `sap.ui.layout.BlockLayoutRow` in the aggregation {@link #getContent content}.
7919
7926
  * and returns its index if found or -1 otherwise.
@@ -8027,25 +8034,6 @@ declare namespace sap {
8027
8034
  mSettings?: sap.ui.layout.$BlockLayoutCellSettings
8028
8035
  );
8029
8036
 
8030
- /**
8031
- * Adds some content to the aggregation {@link #getContent content}.
8032
- */
8033
- addContent(
8034
- /**
8035
- * The content to add; if empty, nothing is inserted
8036
- */
8037
- oContent: sap.ui.core.Control
8038
- ): this;
8039
- /**
8040
- * Destroys all the content in the aggregation {@link #getContent content}.
8041
- */
8042
- destroyContent(): this;
8043
- /**
8044
- * @SINCE 1.56
8045
- *
8046
- * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
8047
- */
8048
- destroyTitleLink(): this;
8049
8037
  /**
8050
8038
  * Creates a new subclass of class sap.ui.layout.BlockLayoutCell with name `sClassName` and enriches it
8051
8039
  * with the information contained in `oClassInfo`.
@@ -8067,6 +8055,29 @@ declare namespace sap {
8067
8055
  */
8068
8056
  FNMetaImpl?: Function
8069
8057
  ): Function;
8058
+ /**
8059
+ * Returns a metadata object for class sap.ui.layout.BlockLayoutCell.
8060
+ */
8061
+ static getMetadata(): sap.ui.core.ElementMetadata;
8062
+ /**
8063
+ * Adds some content to the aggregation {@link #getContent content}.
8064
+ */
8065
+ addContent(
8066
+ /**
8067
+ * The content to add; if empty, nothing is inserted
8068
+ */
8069
+ oContent: sap.ui.core.Control
8070
+ ): this;
8071
+ /**
8072
+ * Destroys all the content in the aggregation {@link #getContent content}.
8073
+ */
8074
+ destroyContent(): this;
8075
+ /**
8076
+ * @SINCE 1.56
8077
+ *
8078
+ * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
8079
+ */
8080
+ destroyTitleLink(): this;
8070
8081
  /**
8071
8082
  * @SINCE 1.48
8072
8083
  *
@@ -8093,10 +8104,6 @@ declare namespace sap {
8093
8104
  * The content to be included inside the cell
8094
8105
  */
8095
8106
  getContent(): sap.ui.core.Control[];
8096
- /**
8097
- * Returns a metadata object for class sap.ui.layout.BlockLayoutCell.
8098
- */
8099
- static getMetadata(): sap.ui.core.ElementMetadata;
8100
8107
  /**
8101
8108
  * Gets current value of property {@link #getTitle title}.
8102
8109
  *
@@ -8345,6 +8352,10 @@ declare namespace sap {
8345
8352
  */
8346
8353
  FNMetaImpl?: Function
8347
8354
  ): Function;
8355
+ /**
8356
+ * Returns a metadata object for class sap.ui.layout.BlockLayoutCellData.
8357
+ */
8358
+ static getMetadata(): sap.ui.core.ElementMetadata;
8348
8359
  /**
8349
8360
  * Gets current value of property {@link #getLSize lSize}.
8350
8361
  *
@@ -8353,10 +8364,6 @@ declare namespace sap {
8353
8364
  * Default value is `1`.
8354
8365
  */
8355
8366
  getLSize(): int;
8356
- /**
8357
- * Returns a metadata object for class sap.ui.layout.BlockLayoutCellData.
8358
- */
8359
- static getMetadata(): sap.ui.core.ElementMetadata;
8360
8367
  /**
8361
8368
  * Gets current value of property {@link #getMSize mSize}.
8362
8369
  *
@@ -8484,6 +8491,31 @@ declare namespace sap {
8484
8491
  mSettings?: sap.ui.layout.$BlockLayoutRowSettings
8485
8492
  );
8486
8493
 
8494
+ /**
8495
+ * Creates a new subclass of class sap.ui.layout.BlockLayoutRow with name `sClassName` and enriches it with
8496
+ * the information contained in `oClassInfo`.
8497
+ *
8498
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8499
+ */
8500
+ static extend<T extends Record<string, unknown>>(
8501
+ /**
8502
+ * Name of the class being created
8503
+ */
8504
+ sClassName: string,
8505
+ /**
8506
+ * Object literal with information about the class
8507
+ */
8508
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.BlockLayoutRow>,
8509
+ /**
8510
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8511
+ * used by this class
8512
+ */
8513
+ FNMetaImpl?: Function
8514
+ ): Function;
8515
+ /**
8516
+ * Returns a metadata object for class sap.ui.layout.BlockLayoutRow.
8517
+ */
8518
+ static getMetadata(): sap.ui.core.ElementMetadata;
8487
8519
  /**
8488
8520
  * @SINCE 1.42
8489
8521
  *
@@ -8508,27 +8540,6 @@ declare namespace sap {
8508
8540
  * Destroys all the content in the aggregation {@link #getContent content}.
8509
8541
  */
8510
8542
  destroyContent(): this;
8511
- /**
8512
- * Creates a new subclass of class sap.ui.layout.BlockLayoutRow with name `sClassName` and enriches it with
8513
- * the information contained in `oClassInfo`.
8514
- *
8515
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8516
- */
8517
- static extend<T extends Record<string, unknown>>(
8518
- /**
8519
- * Name of the class being created
8520
- */
8521
- sClassName: string,
8522
- /**
8523
- * Object literal with information about the class
8524
- */
8525
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.BlockLayoutRow>,
8526
- /**
8527
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8528
- * used by this class
8529
- */
8530
- FNMetaImpl?: Function
8531
- ): Function;
8532
8543
  /**
8533
8544
  * @SINCE 1.42
8534
8545
  *
@@ -8542,10 +8553,6 @@ declare namespace sap {
8542
8553
  * The content cells to be included in the row.
8543
8554
  */
8544
8555
  getContent(): sap.ui.layout.BlockLayoutCell[];
8545
- /**
8546
- * Returns a metadata object for class sap.ui.layout.BlockLayoutRow.
8547
- */
8548
- static getMetadata(): sap.ui.core.ElementMetadata;
8549
8556
  /**
8550
8557
  * @SINCE 1.42
8551
8558
  *
@@ -8740,6 +8747,31 @@ declare namespace sap {
8740
8747
  mSettings?: sap.ui.layout.$DynamicSideContentSettings
8741
8748
  );
8742
8749
 
8750
+ /**
8751
+ * Creates a new subclass of class sap.ui.layout.DynamicSideContent with name `sClassName` and enriches
8752
+ * it with the information contained in `oClassInfo`.
8753
+ *
8754
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8755
+ */
8756
+ static extend<T extends Record<string, unknown>>(
8757
+ /**
8758
+ * Name of the class being created
8759
+ */
8760
+ sClassName: string,
8761
+ /**
8762
+ * Object literal with information about the class
8763
+ */
8764
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.DynamicSideContent>,
8765
+ /**
8766
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8767
+ * used by this class
8768
+ */
8769
+ FNMetaImpl?: Function
8770
+ ): Function;
8771
+ /**
8772
+ * Returns a metadata object for class sap.ui.layout.DynamicSideContent.
8773
+ */
8774
+ static getMetadata(): sap.ui.core.ElementMetadata;
8743
8775
  /**
8744
8776
  * Adds a control to the main content area. Only the main content part in the aggregation is re-rendered.
8745
8777
  */
@@ -8831,27 +8863,6 @@ declare namespace sap {
8831
8863
  */
8832
8864
  oListener?: object
8833
8865
  ): this;
8834
- /**
8835
- * Creates a new subclass of class sap.ui.layout.DynamicSideContent with name `sClassName` and enriches
8836
- * it with the information contained in `oClassInfo`.
8837
- *
8838
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8839
- */
8840
- static extend<T extends Record<string, unknown>>(
8841
- /**
8842
- * Name of the class being created
8843
- */
8844
- sClassName: string,
8845
- /**
8846
- * Object literal with information about the class
8847
- */
8848
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.DynamicSideContent>,
8849
- /**
8850
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8851
- * used by this class
8852
- */
8853
- FNMetaImpl?: Function
8854
- ): Function;
8855
8866
  /**
8856
8867
  * @SINCE 1.32
8857
8868
  *
@@ -8897,10 +8908,6 @@ declare namespace sap {
8897
8908
  * Main content controls.
8898
8909
  */
8899
8910
  getMainContent(): sap.ui.core.Control[];
8900
- /**
8901
- * Returns a metadata object for class sap.ui.layout.DynamicSideContent.
8902
- */
8903
- static getMetadata(): sap.ui.core.ElementMetadata;
8904
8911
  /**
8905
8912
  * @SINCE 1.78
8906
8913
  *
@@ -9210,31 +9217,14 @@ declare namespace sap {
9210
9217
  );
9211
9218
 
9212
9219
  /**
9213
- * Adds some fixContent to the aggregation {@link #getFixContent fixContent}.
9220
+ * Creates a new subclass of class sap.ui.layout.FixFlex with name `sClassName` and enriches it with the
9221
+ * information contained in `oClassInfo`.
9222
+ *
9223
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9214
9224
  */
9215
- addFixContent(
9225
+ static extend<T extends Record<string, unknown>>(
9216
9226
  /**
9217
- * The fixContent to add; if empty, nothing is inserted
9218
- */
9219
- oFixContent: sap.ui.core.Control
9220
- ): this;
9221
- /**
9222
- * Destroys all the fixContent in the aggregation {@link #getFixContent fixContent}.
9223
- */
9224
- destroyFixContent(): this;
9225
- /**
9226
- * Destroys the flexContent in the aggregation {@link #getFlexContent flexContent}.
9227
- */
9228
- destroyFlexContent(): this;
9229
- /**
9230
- * Creates a new subclass of class sap.ui.layout.FixFlex with name `sClassName` and enriches it with the
9231
- * information contained in `oClassInfo`.
9232
- *
9233
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9234
- */
9235
- static extend<T extends Record<string, unknown>>(
9236
- /**
9237
- * Name of the class being created
9227
+ * Name of the class being created
9238
9228
  */
9239
9229
  sClassName: string,
9240
9230
  /**
@@ -9247,6 +9237,27 @@ declare namespace sap {
9247
9237
  */
9248
9238
  FNMetaImpl?: Function
9249
9239
  ): Function;
9240
+ /**
9241
+ * Returns a metadata object for class sap.ui.layout.FixFlex.
9242
+ */
9243
+ static getMetadata(): sap.ui.core.ElementMetadata;
9244
+ /**
9245
+ * Adds some fixContent to the aggregation {@link #getFixContent fixContent}.
9246
+ */
9247
+ addFixContent(
9248
+ /**
9249
+ * The fixContent to add; if empty, nothing is inserted
9250
+ */
9251
+ oFixContent: sap.ui.core.Control
9252
+ ): this;
9253
+ /**
9254
+ * Destroys all the fixContent in the aggregation {@link #getFixContent fixContent}.
9255
+ */
9256
+ destroyFixContent(): this;
9257
+ /**
9258
+ * Destroys the flexContent in the aggregation {@link #getFlexContent flexContent}.
9259
+ */
9260
+ destroyFlexContent(): this;
9250
9261
  /**
9251
9262
  * Gets content of aggregation {@link #getFixContent fixContent}.
9252
9263
  *
@@ -9278,10 +9289,6 @@ declare namespace sap {
9278
9289
  * Control in the stretching part of the layout.
9279
9290
  */
9280
9291
  getFlexContent(): sap.ui.core.Control;
9281
- /**
9282
- * Returns a metadata object for class sap.ui.layout.FixFlex.
9283
- */
9284
- static getMetadata(): sap.ui.core.ElementMetadata;
9285
9292
  /**
9286
9293
  * @SINCE 1.29
9287
9294
  *
@@ -9482,6 +9489,31 @@ declare namespace sap {
9482
9489
  mSettings?: sap.ui.layout.$GridSettings
9483
9490
  );
9484
9491
 
9492
+ /**
9493
+ * Creates a new subclass of class sap.ui.layout.Grid with name `sClassName` and enriches it with the information
9494
+ * contained in `oClassInfo`.
9495
+ *
9496
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9497
+ */
9498
+ static extend<T extends Record<string, unknown>>(
9499
+ /**
9500
+ * Name of the class being created
9501
+ */
9502
+ sClassName: string,
9503
+ /**
9504
+ * Object literal with information about the class
9505
+ */
9506
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.Grid>,
9507
+ /**
9508
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9509
+ * used by this class
9510
+ */
9511
+ FNMetaImpl?: Function
9512
+ ): Function;
9513
+ /**
9514
+ * Returns a metadata object for class sap.ui.layout.Grid.
9515
+ */
9516
+ static getMetadata(): sap.ui.core.ElementMetadata;
9485
9517
  /**
9486
9518
  * @SINCE 1.48.7
9487
9519
  *
@@ -9506,27 +9538,6 @@ declare namespace sap {
9506
9538
  * Destroys all the content in the aggregation {@link #getContent content}.
9507
9539
  */
9508
9540
  destroyContent(): this;
9509
- /**
9510
- * Creates a new subclass of class sap.ui.layout.Grid with name `sClassName` and enriches it with the information
9511
- * contained in `oClassInfo`.
9512
- *
9513
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9514
- */
9515
- static extend<T extends Record<string, unknown>>(
9516
- /**
9517
- * Name of the class being created
9518
- */
9519
- sClassName: string,
9520
- /**
9521
- * Object literal with information about the class
9522
- */
9523
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.Grid>,
9524
- /**
9525
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9526
- * used by this class
9527
- */
9528
- FNMetaImpl?: Function
9529
- ): Function;
9530
9541
  /**
9531
9542
  * Returns the `Grid` accessibility information.
9532
9543
  * See:
@@ -9589,10 +9600,6 @@ declare namespace sap {
9589
9600
  * Default value is `1`.
9590
9601
  */
9591
9602
  getHSpacing(): float;
9592
- /**
9593
- * Returns a metadata object for class sap.ui.layout.Grid.
9594
- */
9595
- static getMetadata(): sap.ui.core.ElementMetadata;
9596
9603
  /**
9597
9604
  * Gets current value of property {@link #getPosition position}.
9598
9605
  *
@@ -9861,6 +9868,10 @@ declare namespace sap {
9861
9868
  */
9862
9869
  FNMetaImpl?: Function
9863
9870
  ): Function;
9871
+ /**
9872
+ * Returns a metadata object for class sap.ui.layout.GridData.
9873
+ */
9874
+ static getMetadata(): sap.ui.core.ElementMetadata;
9864
9875
  /**
9865
9876
  * Gets current value of property {@link #getIndent indent}.
9866
9877
  *
@@ -9972,10 +9983,6 @@ declare namespace sap {
9972
9983
  * Default value is `false`.
9973
9984
  */
9974
9985
  getLinebreakXL(): boolean;
9975
- /**
9976
- * Returns a metadata object for class sap.ui.layout.GridData.
9977
- */
9978
- static getMetadata(): sap.ui.core.ElementMetadata;
9979
9986
  /**
9980
9987
  * Gets current value of property {@link #getMoveBackwards moveBackwards}.
9981
9988
  *
@@ -10615,19 +10622,6 @@ declare namespace sap {
10615
10622
  mSettings?: sap.ui.layout.$HorizontalLayoutSettings
10616
10623
  );
10617
10624
 
10618
- /**
10619
- * Adds some content to the aggregation {@link #getContent content}.
10620
- */
10621
- addContent(
10622
- /**
10623
- * The content to add; if empty, nothing is inserted
10624
- */
10625
- oContent: sap.ui.core.Control
10626
- ): this;
10627
- /**
10628
- * Destroys all the content in the aggregation {@link #getContent content}.
10629
- */
10630
- destroyContent(): this;
10631
10625
  /**
10632
10626
  * Creates a new subclass of class sap.ui.layout.HorizontalLayout with name `sClassName` and enriches it
10633
10627
  * with the information contained in `oClassInfo`.
@@ -10649,6 +10643,23 @@ declare namespace sap {
10649
10643
  */
10650
10644
  FNMetaImpl?: Function
10651
10645
  ): Function;
10646
+ /**
10647
+ * Returns a metadata object for class sap.ui.layout.HorizontalLayout.
10648
+ */
10649
+ static getMetadata(): sap.ui.core.ElementMetadata;
10650
+ /**
10651
+ * Adds some content to the aggregation {@link #getContent content}.
10652
+ */
10653
+ addContent(
10654
+ /**
10655
+ * The content to add; if empty, nothing is inserted
10656
+ */
10657
+ oContent: sap.ui.core.Control
10658
+ ): this;
10659
+ /**
10660
+ * Destroys all the content in the aggregation {@link #getContent content}.
10661
+ */
10662
+ destroyContent(): this;
10652
10663
  /**
10653
10664
  * See:
10654
10665
  * sap.ui.core.Control#getAccessibilityInfo
@@ -10669,10 +10680,6 @@ declare namespace sap {
10669
10680
  * The controls inside this layout
10670
10681
  */
10671
10682
  getContent(): sap.ui.core.Control[];
10672
- /**
10673
- * Returns a metadata object for class sap.ui.layout.HorizontalLayout.
10674
- */
10675
- static getMetadata(): sap.ui.core.ElementMetadata;
10676
10683
  /**
10677
10684
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
10678
10685
  * its index if found or -1 otherwise.
@@ -10769,6 +10776,31 @@ declare namespace sap {
10769
10776
  mSettings?: sap.ui.layout.$PaneContainerSettings
10770
10777
  );
10771
10778
 
10779
+ /**
10780
+ * Creates a new subclass of class sap.ui.layout.PaneContainer with name `sClassName` and enriches it with
10781
+ * the information contained in `oClassInfo`.
10782
+ *
10783
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
10784
+ */
10785
+ static extend<T extends Record<string, unknown>>(
10786
+ /**
10787
+ * Name of the class being created
10788
+ */
10789
+ sClassName: string,
10790
+ /**
10791
+ * Object literal with information about the class
10792
+ */
10793
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.PaneContainer>,
10794
+ /**
10795
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10796
+ * used by this class
10797
+ */
10798
+ FNMetaImpl?: Function
10799
+ ): Function;
10800
+ /**
10801
+ * Returns a metadata object for class sap.ui.layout.PaneContainer.
10802
+ */
10803
+ static getMetadata(): sap.ui.core.ElementMetadata;
10772
10804
  /**
10773
10805
  * Adds some pane to the aggregation {@link #getPanes panes}.
10774
10806
  */
@@ -10838,27 +10870,6 @@ declare namespace sap {
10838
10870
  */
10839
10871
  oListener?: object
10840
10872
  ): this;
10841
- /**
10842
- * Creates a new subclass of class sap.ui.layout.PaneContainer with name `sClassName` and enriches it with
10843
- * the information contained in `oClassInfo`.
10844
- *
10845
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
10846
- */
10847
- static extend<T extends Record<string, unknown>>(
10848
- /**
10849
- * Name of the class being created
10850
- */
10851
- sClassName: string,
10852
- /**
10853
- * Object literal with information about the class
10854
- */
10855
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.PaneContainer>,
10856
- /**
10857
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10858
- * used by this class
10859
- */
10860
- FNMetaImpl?: Function
10861
- ): Function;
10862
10873
  /**
10863
10874
  * Fires event {@link #event:resize resize} to attached listeners.
10864
10875
  */
@@ -10881,10 +10892,6 @@ declare namespace sap {
10881
10892
  * Getter for property layoutData.
10882
10893
  */
10883
10894
  getLayoutData(): sap.ui.core.LayoutData;
10884
- /**
10885
- * Returns a metadata object for class sap.ui.layout.PaneContainer.
10886
- */
10887
- static getMetadata(): sap.ui.core.ElementMetadata;
10888
10895
  /**
10889
10896
  * Gets current value of property {@link #getOrientation orientation}.
10890
10897
  *
@@ -10984,6 +10991,31 @@ declare namespace sap {
10984
10991
  mSettings?: sap.ui.layout.$ResponsiveFlowLayoutSettings
10985
10992
  );
10986
10993
 
10994
+ /**
10995
+ * Creates a new subclass of class sap.ui.layout.ResponsiveFlowLayout with name `sClassName` and enriches
10996
+ * it with the information contained in `oClassInfo`.
10997
+ *
10998
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10999
+ */
11000
+ static extend<T extends Record<string, unknown>>(
11001
+ /**
11002
+ * Name of the class being created
11003
+ */
11004
+ sClassName: string,
11005
+ /**
11006
+ * Object literal with information about the class
11007
+ */
11008
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.ResponsiveFlowLayout>,
11009
+ /**
11010
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11011
+ * used by this class
11012
+ */
11013
+ FNMetaImpl?: Function
11014
+ ): Function;
11015
+ /**
11016
+ * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayout.
11017
+ */
11018
+ static getMetadata(): sap.ui.core.ElementMetadata;
10987
11019
  /**
10988
11020
  * @SINCE 1.48.7
10989
11021
  *
@@ -11009,27 +11041,6 @@ declare namespace sap {
11009
11041
  * Destroys all the content in the aggregation {@link #getContent content}.
11010
11042
  */
11011
11043
  destroyContent(): this;
11012
- /**
11013
- * Creates a new subclass of class sap.ui.layout.ResponsiveFlowLayout with name `sClassName` and enriches
11014
- * it with the information contained in `oClassInfo`.
11015
- *
11016
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11017
- */
11018
- static extend<T extends Record<string, unknown>>(
11019
- /**
11020
- * Name of the class being created
11021
- */
11022
- sClassName: string,
11023
- /**
11024
- * Object literal with information about the class
11025
- */
11026
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.ResponsiveFlowLayout>,
11027
- /**
11028
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11029
- * used by this class
11030
- */
11031
- FNMetaImpl?: Function
11032
- ): Function;
11033
11044
  /**
11034
11045
  * @SINCE 1.48.7
11035
11046
  *
@@ -11044,10 +11055,6 @@ declare namespace sap {
11044
11055
  * or otherwise, the default values are used.
11045
11056
  */
11046
11057
  getContent(): sap.ui.core.Control[];
11047
- /**
11048
- * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayout.
11049
- */
11050
- static getMetadata(): sap.ui.core.ElementMetadata;
11051
11058
  /**
11052
11059
  * Gets current value of property {@link #getResponsive responsive}.
11053
11060
  *
@@ -11189,6 +11196,10 @@ declare namespace sap {
11189
11196
  */
11190
11197
  FNMetaImpl?: Function
11191
11198
  ): Function;
11199
+ /**
11200
+ * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayoutData.
11201
+ */
11202
+ static getMetadata(): sap.ui.core.ElementMetadata;
11192
11203
  /**
11193
11204
  * Gets current value of property {@link #getLinebreak linebreak}.
11194
11205
  *
@@ -11215,10 +11226,6 @@ declare namespace sap {
11215
11226
  * Default value is `true`.
11216
11227
  */
11217
11228
  getMargin(): boolean;
11218
- /**
11219
- * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayoutData.
11220
- */
11221
- static getMetadata(): sap.ui.core.ElementMetadata;
11222
11229
  /**
11223
11230
  * Gets current value of property {@link #getMinWidth minWidth}.
11224
11231
  *
@@ -11381,10 +11388,6 @@ declare namespace sap {
11381
11388
  mSettings?: sap.ui.layout.$ResponsiveSplitterSettings
11382
11389
  );
11383
11390
 
11384
- /**
11385
- * Destroys the rootPaneContainer in the aggregation {@link #getRootPaneContainer rootPaneContainer}.
11386
- */
11387
- destroyRootPaneContainer(): this;
11388
11391
  /**
11389
11392
  * Creates a new subclass of class sap.ui.layout.ResponsiveSplitter with name `sClassName` and enriches
11390
11393
  * it with the information contained in `oClassInfo`.
@@ -11406,6 +11409,14 @@ declare namespace sap {
11406
11409
  */
11407
11410
  FNMetaImpl?: Function
11408
11411
  ): Function;
11412
+ /**
11413
+ * Returns a metadata object for class sap.ui.layout.ResponsiveSplitter.
11414
+ */
11415
+ static getMetadata(): sap.ui.core.ElementMetadata;
11416
+ /**
11417
+ * Destroys the rootPaneContainer in the aggregation {@link #getRootPaneContainer rootPaneContainer}.
11418
+ */
11419
+ destroyRootPaneContainer(): this;
11409
11420
  /**
11410
11421
  * ID of the element which is the current target of the association {@link #getDefaultPane defaultPane},
11411
11422
  * or `null`.
@@ -11419,10 +11430,6 @@ declare namespace sap {
11419
11430
  * Default value is `'100%'`.
11420
11431
  */
11421
11432
  getHeight(): sap.ui.core.CSSSize;
11422
- /**
11423
- * Returns a metadata object for class sap.ui.layout.ResponsiveSplitter.
11424
- */
11425
- static getMetadata(): sap.ui.core.ElementMetadata;
11426
11433
  /**
11427
11434
  * Gets content of aggregation {@link #getRootPaneContainer rootPaneContainer}.
11428
11435
  *
@@ -11531,10 +11538,6 @@ declare namespace sap {
11531
11538
  mSettings?: sap.ui.layout.$SplitPaneSettings
11532
11539
  );
11533
11540
 
11534
- /**
11535
- * Destroys the content in the aggregation {@link #getContent content}.
11536
- */
11537
- destroyContent(): this;
11538
11541
  /**
11539
11542
  * Creates a new subclass of class sap.ui.layout.SplitPane with name `sClassName` and enriches it with the
11540
11543
  * information contained in `oClassInfo`.
@@ -11556,6 +11559,14 @@ declare namespace sap {
11556
11559
  */
11557
11560
  FNMetaImpl?: Function
11558
11561
  ): Function;
11562
+ /**
11563
+ * Returns a metadata object for class sap.ui.layout.SplitPane.
11564
+ */
11565
+ static getMetadata(): sap.ui.core.ElementMetadata;
11566
+ /**
11567
+ * Destroys the content in the aggregation {@link #getContent content}.
11568
+ */
11569
+ destroyContent(): this;
11559
11570
  /**
11560
11571
  * Gets content of aggregation {@link #getContent content}.
11561
11572
  *
@@ -11570,10 +11581,6 @@ declare namespace sap {
11570
11581
  * Default value is `true`.
11571
11582
  */
11572
11583
  getDemandPane(): boolean;
11573
- /**
11574
- * Returns a metadata object for class sap.ui.layout.SplitPane.
11575
- */
11576
- static getMetadata(): sap.ui.core.ElementMetadata;
11577
11584
  /**
11578
11585
  * Gets current value of property {@link #getRequiredParentWidth requiredParentWidth}.
11579
11586
  *
@@ -11690,6 +11697,31 @@ declare namespace sap {
11690
11697
  mSettings?: sap.ui.layout.$SplitterSettings
11691
11698
  );
11692
11699
 
11700
+ /**
11701
+ * Creates a new subclass of class sap.ui.layout.Splitter with name `sClassName` and enriches it with the
11702
+ * information contained in `oClassInfo`.
11703
+ *
11704
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11705
+ */
11706
+ static extend<T extends Record<string, unknown>>(
11707
+ /**
11708
+ * Name of the class being created
11709
+ */
11710
+ sClassName: string,
11711
+ /**
11712
+ * Object literal with information about the class
11713
+ */
11714
+ oClassInfo?: sap.ClassInfo<T, sap.ui.layout.Splitter>,
11715
+ /**
11716
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11717
+ * used by this class
11718
+ */
11719
+ FNMetaImpl?: Function
11720
+ ): Function;
11721
+ /**
11722
+ * Returns a metadata object for class sap.ui.layout.Splitter.
11723
+ */
11724
+ static getMetadata(): sap.ui.core.ElementMetadata;
11693
11725
  /**
11694
11726
  * Adds some contentArea to the aggregation {@link #getContentAreas contentAreas}.
11695
11727
  */
@@ -11817,27 +11849,6 @@ declare namespace sap {
11817
11849
  * that the contents are resized several times per second when moving the splitter bar.
11818
11850
  */
11819
11851
  enableLiveResize(): void;
11820
- /**
11821
- * Creates a new subclass of class sap.ui.layout.Splitter with name `sClassName` and enriches it with the
11822
- * information contained in `oClassInfo`.
11823
- *
11824
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11825
- */
11826
- static extend<T extends Record<string, unknown>>(
11827
- /**
11828
- * Name of the class being created
11829
- */
11830
- sClassName: string,
11831
- /**
11832
- * Object literal with information about the class
11833
- */
11834
- oClassInfo?: sap.ClassInfo<T, sap.ui.layout.Splitter>,
11835
- /**
11836
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11837
- * used by this class
11838
- */
11839
- FNMetaImpl?: Function
11840
- ): Function;
11841
11852
  /**
11842
11853
  * Fires event {@link #event:resize resize} to attached listeners.
11843
11854
  */
@@ -11868,7 +11879,7 @@ declare namespace sap {
11868
11879
  *
11869
11880
  * Returns the current actual content sizes as pixel value - these values can change with every resize.
11870
11881
  */
11871
- getCalculatedSizes(): Number[];
11882
+ getCalculatedSizes(): number[];
11872
11883
  /**
11873
11884
  * Gets content of aggregation {@link #getContentAreas contentAreas}.
11874
11885
  *
@@ -11883,10 +11894,6 @@ declare namespace sap {
11883
11894
  * Default value is `'100%'`.
11884
11895
  */
11885
11896
  getHeight(): sap.ui.core.CSSSize;
11886
- /**
11887
- * Returns a metadata object for class sap.ui.layout.Splitter.
11888
- */
11889
- static getMetadata(): sap.ui.core.ElementMetadata;
11890
11897
  /**
11891
11898
  * Gets current value of property {@link #getOrientation orientation}.
11892
11899
  *
@@ -12182,19 +12189,6 @@ declare namespace sap {
12182
12189
  mSettings?: sap.ui.layout.$VerticalLayoutSettings
12183
12190
  );
12184
12191
 
12185
- /**
12186
- * Adds some content to the aggregation {@link #getContent content}.
12187
- */
12188
- addContent(
12189
- /**
12190
- * The content to add; if empty, nothing is inserted
12191
- */
12192
- oContent: sap.ui.core.Control
12193
- ): this;
12194
- /**
12195
- * Destroys all the content in the aggregation {@link #getContent content}.
12196
- */
12197
- destroyContent(): this;
12198
12192
  /**
12199
12193
  * Creates a new subclass of class sap.ui.layout.VerticalLayout with name `sClassName` and enriches it with
12200
12194
  * the information contained in `oClassInfo`.
@@ -12216,6 +12210,23 @@ declare namespace sap {
12216
12210
  */
12217
12211
  FNMetaImpl?: Function
12218
12212
  ): Function;
12213
+ /**
12214
+ * Returns a metadata object for class sap.ui.layout.VerticalLayout.
12215
+ */
12216
+ static getMetadata(): sap.ui.core.ElementMetadata;
12217
+ /**
12218
+ * Adds some content to the aggregation {@link #getContent content}.
12219
+ */
12220
+ addContent(
12221
+ /**
12222
+ * The content to add; if empty, nothing is inserted
12223
+ */
12224
+ oContent: sap.ui.core.Control
12225
+ ): this;
12226
+ /**
12227
+ * Destroys all the content in the aggregation {@link #getContent content}.
12228
+ */
12229
+ destroyContent(): this;
12219
12230
  /**
12220
12231
  * See:
12221
12232
  * sap.ui.core.Control#getAccessibilityInfo
@@ -12235,10 +12246,6 @@ declare namespace sap {
12235
12246
  * Default value is `true`.
12236
12247
  */
12237
12248
  getEnabled(): boolean;
12238
- /**
12239
- * Returns a metadata object for class sap.ui.layout.VerticalLayout.
12240
- */
12241
- static getMetadata(): sap.ui.core.ElementMetadata;
12242
12249
  /**
12243
12250
  * Gets current value of property {@link #getWidth width}.
12244
12251
  *