@openui5/ts-types-esm 1.92.0 → 1.95.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.92.0
1
+ // For Library Version: 1.95.0
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -404,6 +404,8 @@ declare module "sap/ui/layout/library" {
404
404
  */
405
405
  ResponsiveGridLayout = "ResponsiveGridLayout",
406
406
  /**
407
+ * @deprecated (since 1.93) - replaced by {@link sap.ui.layout.form.SimpleFormLayout.ColumnLayout ColumnLayout}
408
+ *
407
409
  * Uses the `ResponsiveLayout` layout to render the `SimpleForm` control
408
410
  */
409
411
  ResponsiveLayout = "ResponsiveLayout",
@@ -557,19 +559,6 @@ declare module "sap/ui/layout/BlockLayout" {
557
559
  mSettings?: $BlockLayoutSettings
558
560
  );
559
561
 
560
- /**
561
- * Adds some content to the aggregation {@link #getContent content}.
562
- */
563
- addContent(
564
- /**
565
- * The content to add; if empty, nothing is inserted
566
- */
567
- oContent: BlockLayoutRow
568
- ): this;
569
- /**
570
- * Destroys all the content in the aggregation {@link #getContent content}.
571
- */
572
- destroyContent(): this;
573
562
  /**
574
563
  * Creates a new subclass of class sap.ui.layout.BlockLayout with name `sClassName` and enriches it with
575
564
  * the information contained in `oClassInfo`.
@@ -591,6 +580,23 @@ declare module "sap/ui/layout/BlockLayout" {
591
580
  */
592
581
  FNMetaImpl?: Function
593
582
  ): Function;
583
+ /**
584
+ * Returns a metadata object for class sap.ui.layout.BlockLayout.
585
+ */
586
+ static getMetadata(): ElementMetadata;
587
+ /**
588
+ * Adds some content to the aggregation {@link #getContent content}.
589
+ */
590
+ addContent(
591
+ /**
592
+ * The content to add; if empty, nothing is inserted
593
+ */
594
+ oContent: BlockLayoutRow
595
+ ): this;
596
+ /**
597
+ * Destroys all the content in the aggregation {@link #getContent content}.
598
+ */
599
+ destroyContent(): this;
594
600
  /**
595
601
  * @SINCE 1.42
596
602
  *
@@ -617,10 +623,6 @@ declare module "sap/ui/layout/BlockLayout" {
617
623
  * Default value is `false`.
618
624
  */
619
625
  getKeepFontSize(): boolean;
620
- /**
621
- * Returns a metadata object for class sap.ui.layout.BlockLayout.
622
- */
623
- static getMetadata(): ElementMetadata;
624
626
  /**
625
627
  * Checks for the provided `sap.ui.layout.BlockLayoutRow` in the aggregation {@link #getContent content}.
626
628
  * and returns its index if found or -1 otherwise.
@@ -776,25 +778,6 @@ declare module "sap/ui/layout/BlockLayoutCell" {
776
778
  mSettings?: $BlockLayoutCellSettings
777
779
  );
778
780
 
779
- /**
780
- * Adds some content to the aggregation {@link #getContent content}.
781
- */
782
- addContent(
783
- /**
784
- * The content to add; if empty, nothing is inserted
785
- */
786
- oContent: Control
787
- ): this;
788
- /**
789
- * Destroys all the content in the aggregation {@link #getContent content}.
790
- */
791
- destroyContent(): this;
792
- /**
793
- * @SINCE 1.56
794
- *
795
- * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
796
- */
797
- destroyTitleLink(): this;
798
781
  /**
799
782
  * Creates a new subclass of class sap.ui.layout.BlockLayoutCell with name `sClassName` and enriches it
800
783
  * with the information contained in `oClassInfo`.
@@ -816,6 +799,29 @@ declare module "sap/ui/layout/BlockLayoutCell" {
816
799
  */
817
800
  FNMetaImpl?: Function
818
801
  ): Function;
802
+ /**
803
+ * Returns a metadata object for class sap.ui.layout.BlockLayoutCell.
804
+ */
805
+ static getMetadata(): ElementMetadata;
806
+ /**
807
+ * Adds some content to the aggregation {@link #getContent content}.
808
+ */
809
+ addContent(
810
+ /**
811
+ * The content to add; if empty, nothing is inserted
812
+ */
813
+ oContent: Control
814
+ ): this;
815
+ /**
816
+ * Destroys all the content in the aggregation {@link #getContent content}.
817
+ */
818
+ destroyContent(): this;
819
+ /**
820
+ * @SINCE 1.56
821
+ *
822
+ * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
823
+ */
824
+ destroyTitleLink(): this;
819
825
  /**
820
826
  * @SINCE 1.48
821
827
  *
@@ -846,10 +852,6 @@ declare module "sap/ui/layout/BlockLayoutCell" {
846
852
  * The content to be included inside the cell
847
853
  */
848
854
  getContent(): Control[];
849
- /**
850
- * Returns a metadata object for class sap.ui.layout.BlockLayoutCell.
851
- */
852
- static getMetadata(): ElementMetadata;
853
855
  /**
854
856
  * Gets current value of property {@link #getTitle title}.
855
857
  *
@@ -1184,6 +1186,10 @@ declare module "sap/ui/layout/BlockLayoutCellData" {
1184
1186
  */
1185
1187
  FNMetaImpl?: Function
1186
1188
  ): Function;
1189
+ /**
1190
+ * Returns a metadata object for class sap.ui.layout.BlockLayoutCellData.
1191
+ */
1192
+ static getMetadata(): ElementMetadata;
1187
1193
  /**
1188
1194
  * Gets current value of property {@link #getLSize lSize}.
1189
1195
  *
@@ -1192,10 +1198,6 @@ declare module "sap/ui/layout/BlockLayoutCellData" {
1192
1198
  * Default value is `1`.
1193
1199
  */
1194
1200
  getLSize(): int;
1195
- /**
1196
- * Returns a metadata object for class sap.ui.layout.BlockLayoutCellData.
1197
- */
1198
- static getMetadata(): ElementMetadata;
1199
1201
  /**
1200
1202
  * Gets current value of property {@link #getMSize mSize}.
1201
1203
  *
@@ -1363,6 +1365,31 @@ declare module "sap/ui/layout/BlockLayoutRow" {
1363
1365
  mSettings?: $BlockLayoutRowSettings
1364
1366
  );
1365
1367
 
1368
+ /**
1369
+ * Creates a new subclass of class sap.ui.layout.BlockLayoutRow with name `sClassName` and enriches it with
1370
+ * the information contained in `oClassInfo`.
1371
+ *
1372
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1373
+ */
1374
+ static extend<T extends Record<string, unknown>>(
1375
+ /**
1376
+ * Name of the class being created
1377
+ */
1378
+ sClassName: string,
1379
+ /**
1380
+ * Object literal with information about the class
1381
+ */
1382
+ oClassInfo?: sap.ClassInfo<T, BlockLayoutRow>,
1383
+ /**
1384
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1385
+ * used by this class
1386
+ */
1387
+ FNMetaImpl?: Function
1388
+ ): Function;
1389
+ /**
1390
+ * Returns a metadata object for class sap.ui.layout.BlockLayoutRow.
1391
+ */
1392
+ static getMetadata(): ElementMetadata;
1366
1393
  /**
1367
1394
  * @SINCE 1.42
1368
1395
  *
@@ -1387,27 +1414,6 @@ declare module "sap/ui/layout/BlockLayoutRow" {
1387
1414
  * Destroys all the content in the aggregation {@link #getContent content}.
1388
1415
  */
1389
1416
  destroyContent(): this;
1390
- /**
1391
- * Creates a new subclass of class sap.ui.layout.BlockLayoutRow with name `sClassName` and enriches it with
1392
- * the information contained in `oClassInfo`.
1393
- *
1394
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1395
- */
1396
- static extend<T extends Record<string, unknown>>(
1397
- /**
1398
- * Name of the class being created
1399
- */
1400
- sClassName: string,
1401
- /**
1402
- * Object literal with information about the class
1403
- */
1404
- oClassInfo?: sap.ClassInfo<T, BlockLayoutRow>,
1405
- /**
1406
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1407
- * used by this class
1408
- */
1409
- FNMetaImpl?: Function
1410
- ): Function;
1411
1417
  /**
1412
1418
  * @SINCE 1.42
1413
1419
  *
@@ -1421,10 +1427,6 @@ declare module "sap/ui/layout/BlockLayoutRow" {
1421
1427
  * The content cells to be included in the row.
1422
1428
  */
1423
1429
  getContent(): BlockLayoutCell[];
1424
- /**
1425
- * Returns a metadata object for class sap.ui.layout.BlockLayoutRow.
1426
- */
1427
- static getMetadata(): ElementMetadata;
1428
1430
  /**
1429
1431
  * @SINCE 1.42
1430
1432
  *
@@ -1685,23 +1687,6 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
1685
1687
  mSettings?: $CSSGridSettings
1686
1688
  );
1687
1689
 
1688
- /**
1689
- * Adds some item to the aggregation {@link #getItems items}.
1690
- */
1691
- addItem(
1692
- /**
1693
- * The item to add; if empty, nothing is inserted
1694
- */
1695
- oItem: Control
1696
- ): this;
1697
- /**
1698
- * Destroys the customLayout in the aggregation {@link #getCustomLayout customLayout}.
1699
- */
1700
- destroyCustomLayout(): this;
1701
- /**
1702
- * Destroys all the items in the aggregation {@link #getItems items}.
1703
- */
1704
- destroyItems(): this;
1705
1690
  /**
1706
1691
  * Creates a new subclass of class sap.ui.layout.cssgrid.CSSGrid with name `sClassName` and enriches it
1707
1692
  * with the information contained in `oClassInfo`.
@@ -1723,6 +1708,27 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
1723
1708
  */
1724
1709
  FNMetaImpl?: Function
1725
1710
  ): Function;
1711
+ /**
1712
+ * Returns a metadata object for class sap.ui.layout.cssgrid.CSSGrid.
1713
+ */
1714
+ static getMetadata(): ElementMetadata;
1715
+ /**
1716
+ * Adds some item to the aggregation {@link #getItems items}.
1717
+ */
1718
+ addItem(
1719
+ /**
1720
+ * The item to add; if empty, nothing is inserted
1721
+ */
1722
+ oItem: Control
1723
+ ): this;
1724
+ /**
1725
+ * Destroys the customLayout in the aggregation {@link #getCustomLayout customLayout}.
1726
+ */
1727
+ destroyCustomLayout(): this;
1728
+ /**
1729
+ * Destroys all the items in the aggregation {@link #getItems items}.
1730
+ */
1731
+ destroyItems(): this;
1726
1732
  /**
1727
1733
  * Gets content of aggregation {@link #getCustomLayout customLayout}.
1728
1734
  *
@@ -1818,10 +1824,6 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
1818
1824
  * The items contained by the control.
1819
1825
  */
1820
1826
  getItems(): Control[];
1821
- /**
1822
- * Returns a metadata object for class sap.ui.layout.cssgrid.CSSGrid.
1823
- */
1824
- static getMetadata(): ElementMetadata;
1825
1827
  /**
1826
1828
  * Gets current value of property {@link #getWidth width}.
1827
1829
  *
@@ -2168,6 +2170,10 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
2168
2170
  */
2169
2171
  FNMetaImpl?: Function
2170
2172
  ): Function;
2173
+ /**
2174
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridBasicLayout.
2175
+ */
2176
+ static getMetadata(): ManagedObjectMetadata;
2171
2177
  /**
2172
2178
  * Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
2173
2179
  *
@@ -2242,10 +2248,6 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
2242
2248
  * Default value is `empty string`.
2243
2249
  */
2244
2250
  getGridTemplateRows(): cssgrid.CSSGridTrack;
2245
- /**
2246
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridBasicLayout.
2247
- */
2248
- static getMetadata(): ManagedObjectMetadata;
2249
2251
  /**
2250
2252
  * Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
2251
2253
  *
@@ -2482,10 +2484,6 @@ declare module "sap/ui/layout/cssgrid/GridBoxLayout" {
2482
2484
  mSettings?: $GridBoxLayoutSettings
2483
2485
  );
2484
2486
 
2485
- /**
2486
- * Returns a gridTemplateColumns value based on boxWidth and boxMinWidth properties
2487
- */
2488
- _getTemplateColumns(): string;
2489
2487
  /**
2490
2488
  * Creates a new subclass of class sap.ui.layout.cssgrid.GridBoxLayout with name `sClassName` and enriches
2491
2489
  * it with the information contained in `oClassInfo`.
@@ -2507,6 +2505,14 @@ declare module "sap/ui/layout/cssgrid/GridBoxLayout" {
2507
2505
  */
2508
2506
  FNMetaImpl?: Function
2509
2507
  ): Function;
2508
+ /**
2509
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridBoxLayout.
2510
+ */
2511
+ static getMetadata(): ManagedObjectMetadata;
2512
+ /**
2513
+ * Returns a gridTemplateColumns value based on boxWidth and boxMinWidth properties
2514
+ */
2515
+ _getTemplateColumns(): string;
2510
2516
  /**
2511
2517
  * Gets current value of property {@link #getBoxesPerRowConfig boxesPerRowConfig}.
2512
2518
  *
@@ -2533,13 +2539,7 @@ declare module "sap/ui/layout/cssgrid/GridBoxLayout" {
2533
2539
  * Default value is `empty string`.
2534
2540
  */
2535
2541
  getBoxWidth(): CSSSize;
2536
- /**
2537
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridBoxLayout.
2538
- */
2539
- static getMetadata(): ManagedObjectMetadata;
2540
- /**
2541
- *
2542
- */
2542
+
2543
2543
  isResponsive(): boolean;
2544
2544
  /**
2545
2545
  * Sets a new value for property {@link #getBoxesPerRowConfig boxesPerRowConfig}.
@@ -2681,6 +2681,10 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
2681
2681
  */
2682
2682
  FNMetaImpl?: Function
2683
2683
  ): Function;
2684
+ /**
2685
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridItemLayoutData.
2686
+ */
2687
+ static getMetadata(): ElementMetadata;
2684
2688
  /**
2685
2689
  * Gets current value of property {@link #getGridColumn gridColumn}.
2686
2690
  *
@@ -2735,10 +2739,6 @@ declare module "sap/ui/layout/cssgrid/GridItemLayoutData" {
2735
2739
  * Default value is `empty string`.
2736
2740
  */
2737
2741
  getGridRowStart(): cssgrid.CSSGridLine;
2738
- /**
2739
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridItemLayoutData.
2740
- */
2741
- static getMetadata(): ElementMetadata;
2742
2742
  /**
2743
2743
  * Sets a new value for property {@link #getGridColumn gridColumn}.
2744
2744
  *
@@ -2927,6 +2927,31 @@ declare module "sap/ui/layout/cssgrid/GridLayoutBase" {
2927
2927
  mSettings?: $GridLayoutBaseSettings
2928
2928
  );
2929
2929
 
2930
+ /**
2931
+ * Creates a new subclass of class sap.ui.layout.cssgrid.GridLayoutBase with name `sClassName` and enriches
2932
+ * it with the information contained in `oClassInfo`.
2933
+ *
2934
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
2935
+ */
2936
+ static extend<T extends Record<string, unknown>>(
2937
+ /**
2938
+ * Name of the class being created
2939
+ */
2940
+ sClassName: string,
2941
+ /**
2942
+ * Object literal with information about the class
2943
+ */
2944
+ oClassInfo?: sap.ClassInfo<T, GridLayoutBase>,
2945
+ /**
2946
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2947
+ * used by this class
2948
+ */
2949
+ FNMetaImpl?: Function
2950
+ ): Function;
2951
+ /**
2952
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridLayoutBase.
2953
+ */
2954
+ static getMetadata(): ManagedObjectMetadata;
2930
2955
  /**
2931
2956
  * Removes all display:grid styles from the provided HTML element
2932
2957
  */
@@ -2959,38 +2984,11 @@ declare module "sap/ui/layout/cssgrid/GridLayoutBase" {
2959
2984
  aElements: Control[] | HTMLElement[]
2960
2985
  ): void;
2961
2986
  /**
2962
- * Creates a new subclass of class sap.ui.layout.cssgrid.GridLayoutBase with name `sClassName` and enriches
2963
- * it with the information contained in `oClassInfo`.
2964
- *
2965
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
2966
- */
2967
- static extend<T extends Record<string, unknown>>(
2968
- /**
2969
- * Name of the class being created
2970
- */
2971
- sClassName: string,
2972
- /**
2973
- * Object literal with information about the class
2974
- */
2975
- oClassInfo?: sap.ClassInfo<T, GridLayoutBase>,
2976
- /**
2977
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2978
- * used by this class
2979
- */
2980
- FNMetaImpl?: Function
2981
- ): Function;
2982
- /**
2983
- * Should return sap.ui.layout.cssgrid.GridSettings - The active GridSettings Must be implemented by child
2984
- * classes
2987
+ * Should return sap.ui.layout.cssgrid.GridSettings - The active GridSettings Must be implemented by child
2988
+ * classes
2985
2989
  */
2986
2990
  getActiveGridSettings(): void;
2987
- /**
2988
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridLayoutBase.
2989
- */
2990
- static getMetadata(): ManagedObjectMetadata;
2991
- /**
2992
- *
2993
- */
2991
+
2994
2992
  isResponsive(): boolean;
2995
2993
  }
2996
2994
 
@@ -3005,9 +3003,6 @@ declare module "sap/ui/layout/cssgrid/GridLayoutDelegate" {
3005
3003
  * layout when necessary. Calls sap.ui.layout.cssgrid.GridLayoutBase hook functions.
3006
3004
  */
3007
3005
  export default class GridLayoutDelegate extends BaseObject {
3008
- /**
3009
- *
3010
- */
3011
3006
  constructor();
3012
3007
  }
3013
3008
  }
@@ -3064,6 +3059,31 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
3064
3059
  mSettings?: $GridResponsiveLayoutSettings
3065
3060
  );
3066
3061
 
3062
+ /**
3063
+ * Creates a new subclass of class sap.ui.layout.cssgrid.GridResponsiveLayout with name `sClassName` and
3064
+ * enriches it with the information contained in `oClassInfo`.
3065
+ *
3066
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
3067
+ */
3068
+ static extend<T extends Record<string, unknown>>(
3069
+ /**
3070
+ * Name of the class being created
3071
+ */
3072
+ sClassName: string,
3073
+ /**
3074
+ * Object literal with information about the class
3075
+ */
3076
+ oClassInfo?: sap.ClassInfo<T, GridResponsiveLayout>,
3077
+ /**
3078
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3079
+ * used by this class
3080
+ */
3081
+ FNMetaImpl?: Function
3082
+ ): Function;
3083
+ /**
3084
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridResponsiveLayout.
3085
+ */
3086
+ static getMetadata(): ManagedObjectMetadata;
3067
3087
  /**
3068
3088
  * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.layout.cssgrid.GridResponsiveLayout`.
3069
3089
  *
@@ -3142,27 +3162,6 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
3142
3162
  */
3143
3163
  oListener?: object
3144
3164
  ): this;
3145
- /**
3146
- * Creates a new subclass of class sap.ui.layout.cssgrid.GridResponsiveLayout with name `sClassName` and
3147
- * enriches it with the information contained in `oClassInfo`.
3148
- *
3149
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
3150
- */
3151
- static extend<T extends Record<string, unknown>>(
3152
- /**
3153
- * Name of the class being created
3154
- */
3155
- sClassName: string,
3156
- /**
3157
- * Object literal with information about the class
3158
- */
3159
- oClassInfo?: sap.ClassInfo<T, GridResponsiveLayout>,
3160
- /**
3161
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3162
- * used by this class
3163
- */
3164
- FNMetaImpl?: Function
3165
- ): Function;
3166
3165
  /**
3167
3166
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
3168
3167
  */
@@ -3216,10 +3215,6 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
3216
3215
  * The sap.ui.layout.cssgrid.GridSettings applied for size "XL"
3217
3216
  */
3218
3217
  getLayoutXL(): GridSettings;
3219
- /**
3220
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridResponsiveLayout.
3221
- */
3222
- static getMetadata(): ManagedObjectMetadata;
3223
3218
  /**
3224
3219
  * Sets a new value for property {@link #getContainerQuery containerQuery}.
3225
3220
  *
@@ -3319,7 +3314,7 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
3319
3314
  /**
3320
3315
  * Fired when the currently active GridSettings changes
3321
3316
  */
3322
- layoutChange?: Function;
3317
+ layoutChange?: (oEvent: Event) => void;
3323
3318
  }
3324
3319
  }
3325
3320
 
@@ -3394,6 +3389,10 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
3394
3389
  */
3395
3390
  FNMetaImpl?: Function
3396
3391
  ): Function;
3392
+ /**
3393
+ * Returns a metadata object for class sap.ui.layout.cssgrid.GridSettings.
3394
+ */
3395
+ static getMetadata(): ManagedObjectMetadata;
3397
3396
  /**
3398
3397
  * Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
3399
3398
  *
@@ -3468,10 +3467,6 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
3468
3467
  * Default value is `empty string`.
3469
3468
  */
3470
3469
  getGridTemplateRows(): cssgrid.CSSGridTrack;
3471
- /**
3472
- * Returns a metadata object for class sap.ui.layout.cssgrid.GridSettings.
3473
- */
3474
- static getMetadata(): ManagedObjectMetadata;
3475
3470
  /**
3476
3471
  * Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
3477
3472
  *
@@ -3730,6 +3725,10 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData" {
3730
3725
  */
3731
3726
  FNMetaImpl?: Function
3732
3727
  ): Function;
3728
+ /**
3729
+ * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnItemLayoutData.
3730
+ */
3731
+ static getMetadata(): ElementMetadata;
3733
3732
  /**
3734
3733
  * Gets current value of property {@link #getColumns columns}.
3735
3734
  *
@@ -3738,10 +3737,6 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData" {
3738
3737
  * Default value is `1`.
3739
3738
  */
3740
3739
  getColumns(): int;
3741
- /**
3742
- * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnItemLayoutData.
3743
- */
3744
- static getMetadata(): ElementMetadata;
3745
3740
  /**
3746
3741
  * Gets current value of property {@link #getRows rows}.
3747
3742
  *
@@ -3847,6 +3842,31 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
3847
3842
  mSettings?: $ResponsiveColumnLayoutSettings
3848
3843
  );
3849
3844
 
3845
+ /**
3846
+ * Creates a new subclass of class sap.ui.layout.cssgrid.ResponsiveColumnLayout with name `sClassName` and
3847
+ * enriches it with the information contained in `oClassInfo`.
3848
+ *
3849
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
3850
+ */
3851
+ static extend<T extends Record<string, unknown>>(
3852
+ /**
3853
+ * Name of the class being created
3854
+ */
3855
+ sClassName: string,
3856
+ /**
3857
+ * Object literal with information about the class
3858
+ */
3859
+ oClassInfo?: sap.ClassInfo<T, ResponsiveColumnLayout>,
3860
+ /**
3861
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3862
+ * used by this class
3863
+ */
3864
+ FNMetaImpl?: Function
3865
+ ): Function;
3866
+ /**
3867
+ * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnLayout.
3868
+ */
3869
+ static getMetadata(): ManagedObjectMetadata;
3850
3870
  /**
3851
3871
  * Attaches event handler `fnFunction` to the {@link #event:layoutChange layoutChange} event of this `sap.ui.layout.cssgrid.ResponsiveColumnLayout`.
3852
3872
  *
@@ -3905,27 +3925,6 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
3905
3925
  */
3906
3926
  oListener?: object
3907
3927
  ): this;
3908
- /**
3909
- * Creates a new subclass of class sap.ui.layout.cssgrid.ResponsiveColumnLayout with name `sClassName` and
3910
- * enriches it with the information contained in `oClassInfo`.
3911
- *
3912
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.layout.cssgrid.GridLayoutBase.extend}.
3913
- */
3914
- static extend<T extends Record<string, unknown>>(
3915
- /**
3916
- * Name of the class being created
3917
- */
3918
- sClassName: string,
3919
- /**
3920
- * Object literal with information about the class
3921
- */
3922
- oClassInfo?: sap.ClassInfo<T, ResponsiveColumnLayout>,
3923
- /**
3924
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3925
- * used by this class
3926
- */
3927
- FNMetaImpl?: Function
3928
- ): Function;
3929
3928
  /**
3930
3929
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
3931
3930
  */
@@ -3940,10 +3939,6 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
3940
3939
  layout?: string;
3941
3940
  }
3942
3941
  ): this;
3943
- /**
3944
- * Returns a metadata object for class sap.ui.layout.cssgrid.ResponsiveColumnLayout.
3945
- */
3946
- static getMetadata(): ManagedObjectMetadata;
3947
3942
  /**
3948
3943
  * Returns if the Grid Layout is responsive.
3949
3944
  */
@@ -3955,7 +3950,7 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
3955
3950
  /**
3956
3951
  * Fired when the currently active layout changes
3957
3952
  */
3958
- layoutChange?: Function;
3953
+ layoutChange?: (oEvent: Event) => void;
3959
3954
  }
3960
3955
  }
3961
3956
 
@@ -4075,6 +4070,31 @@ declare module "sap/ui/layout/DynamicSideContent" {
4075
4070
  mSettings?: $DynamicSideContentSettings
4076
4071
  );
4077
4072
 
4073
+ /**
4074
+ * Creates a new subclass of class sap.ui.layout.DynamicSideContent with name `sClassName` and enriches
4075
+ * it with the information contained in `oClassInfo`.
4076
+ *
4077
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4078
+ */
4079
+ static extend<T extends Record<string, unknown>>(
4080
+ /**
4081
+ * Name of the class being created
4082
+ */
4083
+ sClassName: string,
4084
+ /**
4085
+ * Object literal with information about the class
4086
+ */
4087
+ oClassInfo?: sap.ClassInfo<T, DynamicSideContent>,
4088
+ /**
4089
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4090
+ * used by this class
4091
+ */
4092
+ FNMetaImpl?: Function
4093
+ ): Function;
4094
+ /**
4095
+ * Returns a metadata object for class sap.ui.layout.DynamicSideContent.
4096
+ */
4097
+ static getMetadata(): ElementMetadata;
4078
4098
  /**
4079
4099
  * Adds a control to the main content area. Only the main content part in the aggregation is re-rendered.
4080
4100
  */
@@ -4166,27 +4186,6 @@ declare module "sap/ui/layout/DynamicSideContent" {
4166
4186
  */
4167
4187
  oListener?: object
4168
4188
  ): this;
4169
- /**
4170
- * Creates a new subclass of class sap.ui.layout.DynamicSideContent with name `sClassName` and enriches
4171
- * it with the information contained in `oClassInfo`.
4172
- *
4173
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4174
- */
4175
- static extend<T extends Record<string, unknown>>(
4176
- /**
4177
- * Name of the class being created
4178
- */
4179
- sClassName: string,
4180
- /**
4181
- * Object literal with information about the class
4182
- */
4183
- oClassInfo?: sap.ClassInfo<T, DynamicSideContent>,
4184
- /**
4185
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4186
- * used by this class
4187
- */
4188
- FNMetaImpl?: Function
4189
- ): Function;
4190
4189
  /**
4191
4190
  * @SINCE 1.32
4192
4191
  *
@@ -4232,10 +4231,6 @@ declare module "sap/ui/layout/DynamicSideContent" {
4232
4231
  * Main content controls.
4233
4232
  */
4234
4233
  getMainContent(): Control[];
4235
- /**
4236
- * Returns a metadata object for class sap.ui.layout.DynamicSideContent.
4237
- */
4238
- static getMetadata(): ElementMetadata;
4239
4234
  /**
4240
4235
  * @SINCE 1.78
4241
4236
  *
@@ -4565,7 +4560,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
4565
4560
  *
4566
4561
  * Fires when the current breakpoint has been changed.
4567
4562
  */
4568
- breakpointChanged?: Function;
4563
+ breakpointChanged?: (oEvent: Event) => void;
4569
4564
  }
4570
4565
  }
4571
4566
 
@@ -4636,23 +4631,6 @@ declare module "sap/ui/layout/FixFlex" {
4636
4631
  mSettings?: $FixFlexSettings
4637
4632
  );
4638
4633
 
4639
- /**
4640
- * Adds some fixContent to the aggregation {@link #getFixContent fixContent}.
4641
- */
4642
- addFixContent(
4643
- /**
4644
- * The fixContent to add; if empty, nothing is inserted
4645
- */
4646
- oFixContent: Control
4647
- ): this;
4648
- /**
4649
- * Destroys all the fixContent in the aggregation {@link #getFixContent fixContent}.
4650
- */
4651
- destroyFixContent(): this;
4652
- /**
4653
- * Destroys the flexContent in the aggregation {@link #getFlexContent flexContent}.
4654
- */
4655
- destroyFlexContent(): this;
4656
4634
  /**
4657
4635
  * Creates a new subclass of class sap.ui.layout.FixFlex with name `sClassName` and enriches it with the
4658
4636
  * information contained in `oClassInfo`.
@@ -4674,6 +4652,27 @@ declare module "sap/ui/layout/FixFlex" {
4674
4652
  */
4675
4653
  FNMetaImpl?: Function
4676
4654
  ): Function;
4655
+ /**
4656
+ * Returns a metadata object for class sap.ui.layout.FixFlex.
4657
+ */
4658
+ static getMetadata(): ElementMetadata;
4659
+ /**
4660
+ * Adds some fixContent to the aggregation {@link #getFixContent fixContent}.
4661
+ */
4662
+ addFixContent(
4663
+ /**
4664
+ * The fixContent to add; if empty, nothing is inserted
4665
+ */
4666
+ oFixContent: Control
4667
+ ): this;
4668
+ /**
4669
+ * Destroys all the fixContent in the aggregation {@link #getFixContent fixContent}.
4670
+ */
4671
+ destroyFixContent(): this;
4672
+ /**
4673
+ * Destroys the flexContent in the aggregation {@link #getFlexContent flexContent}.
4674
+ */
4675
+ destroyFlexContent(): this;
4677
4676
  /**
4678
4677
  * Gets content of aggregation {@link #getFixContent fixContent}.
4679
4678
  *
@@ -4705,10 +4704,6 @@ declare module "sap/ui/layout/FixFlex" {
4705
4704
  * Control in the stretching part of the layout.
4706
4705
  */
4707
4706
  getFlexContent(): Control;
4708
- /**
4709
- * Returns a metadata object for class sap.ui.layout.FixFlex.
4710
- */
4711
- static getMetadata(): ElementMetadata;
4712
4707
  /**
4713
4708
  * @SINCE 1.29
4714
4709
  *
@@ -4966,6 +4961,10 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
4966
4961
  */
4967
4962
  FNMetaImpl?: Function
4968
4963
  ): Function;
4964
+ /**
4965
+ * Returns a metadata object for class sap.ui.layout.form.ColumnContainerData.
4966
+ */
4967
+ static getMetadata(): ElementMetadata;
4969
4968
  /**
4970
4969
  * Gets current value of property {@link #getColumnsL columnsL}.
4971
4970
  *
@@ -4994,10 +4993,6 @@ declare module "sap/ui/layout/form/ColumnContainerData" {
4994
4993
  * Default value is `2`.
4995
4994
  */
4996
4995
  getColumnsXL(): form.ColumnsXL;
4997
- /**
4998
- * Returns a metadata object for class sap.ui.layout.form.ColumnContainerData.
4999
- */
5000
- static getMetadata(): ElementMetadata;
5001
4996
  /**
5002
4997
  * Sets a new value for property {@link #getColumnsL columnsL}.
5003
4998
  *
@@ -5144,6 +5139,10 @@ declare module "sap/ui/layout/form/ColumnElementData" {
5144
5139
  */
5145
5140
  FNMetaImpl?: Function
5146
5141
  ): Function;
5142
+ /**
5143
+ * Returns a metadata object for class sap.ui.layout.form.ColumnElementData.
5144
+ */
5145
+ static getMetadata(): ElementMetadata;
5147
5146
  /**
5148
5147
  * Gets current value of property {@link #getCellsLarge cellsLarge}.
5149
5148
  *
@@ -5166,10 +5165,6 @@ declare module "sap/ui/layout/form/ColumnElementData" {
5166
5165
  * Default value is `12`.
5167
5166
  */
5168
5167
  getCellsSmall(): form.ColumnCells;
5169
- /**
5170
- * Returns a metadata object for class sap.ui.layout.form.ColumnElementData.
5171
- */
5172
- static getMetadata(): ElementMetadata;
5173
5168
  /**
5174
5169
  * Sets a new value for property {@link #getCellsLarge cellsLarge}.
5175
5170
  *
@@ -5328,6 +5323,10 @@ declare module "sap/ui/layout/form/ColumnLayout" {
5328
5323
  */
5329
5324
  FNMetaImpl?: Function
5330
5325
  ): Function;
5326
+ /**
5327
+ * Returns a metadata object for class sap.ui.layout.form.ColumnLayout.
5328
+ */
5329
+ static getMetadata(): ElementMetadata;
5331
5330
  /**
5332
5331
  * Gets current value of property {@link #getColumnsL columnsL}.
5333
5332
  *
@@ -5373,10 +5372,6 @@ declare module "sap/ui/layout/form/ColumnLayout" {
5373
5372
  * Default value is `4`.
5374
5373
  */
5375
5374
  getLabelCellsLarge(): form.ColumnCells;
5376
- /**
5377
- * Returns a metadata object for class sap.ui.layout.form.ColumnLayout.
5378
- */
5379
- static getMetadata(): ElementMetadata;
5380
5375
  /**
5381
5376
  * Sets a new value for property {@link #getColumnsL columnsL}.
5382
5377
  *
@@ -5567,8 +5562,33 @@ declare module "sap/ui/layout/form/Form" {
5567
5562
  );
5568
5563
 
5569
5564
  /**
5570
- * @SINCE 1.28.0
5571
- *
5565
+ * Creates a new subclass of class sap.ui.layout.form.Form with name `sClassName` and enriches it with the
5566
+ * information contained in `oClassInfo`.
5567
+ *
5568
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5569
+ */
5570
+ static extend<T extends Record<string, unknown>>(
5571
+ /**
5572
+ * Name of the class being created
5573
+ */
5574
+ sClassName: string,
5575
+ /**
5576
+ * Object literal with information about the class
5577
+ */
5578
+ oClassInfo?: sap.ClassInfo<T, Form>,
5579
+ /**
5580
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5581
+ * used by this class
5582
+ */
5583
+ FNMetaImpl?: Function
5584
+ ): Function;
5585
+ /**
5586
+ * Returns a metadata object for class sap.ui.layout.form.Form.
5587
+ */
5588
+ static getMetadata(): ElementMetadata;
5589
+ /**
5590
+ * @SINCE 1.28.0
5591
+ *
5572
5592
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
5573
5593
  */
5574
5594
  addAriaLabelledBy(
@@ -5604,27 +5624,6 @@ declare module "sap/ui/layout/form/Form" {
5604
5624
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
5605
5625
  */
5606
5626
  destroyToolbar(): this;
5607
- /**
5608
- * Creates a new subclass of class sap.ui.layout.form.Form with name `sClassName` and enriches it with the
5609
- * information contained in `oClassInfo`.
5610
- *
5611
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5612
- */
5613
- static extend<T extends Record<string, unknown>>(
5614
- /**
5615
- * Name of the class being created
5616
- */
5617
- sClassName: string,
5618
- /**
5619
- * Object literal with information about the class
5620
- */
5621
- oClassInfo?: sap.ClassInfo<T, Form>,
5622
- /**
5623
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5624
- * used by this class
5625
- */
5626
- FNMetaImpl?: Function
5627
- ): Function;
5628
5627
  /**
5629
5628
  * @SINCE 1.28.0
5630
5629
  *
@@ -5667,10 +5666,6 @@ declare module "sap/ui/layout/form/Form" {
5667
5666
  * the best way possible.
5668
5667
  */
5669
5668
  getLayout(): FormLayout;
5670
- /**
5671
- * Returns a metadata object for class sap.ui.layout.form.Form.
5672
- */
5673
- static getMetadata(): ElementMetadata;
5674
5669
  /**
5675
5670
  * Gets content of aggregation {@link #getTitle title}.
5676
5671
  *
@@ -5957,6 +5952,31 @@ declare module "sap/ui/layout/form/FormContainer" {
5957
5952
  mSettings?: $FormContainerSettings
5958
5953
  );
5959
5954
 
5955
+ /**
5956
+ * Creates a new subclass of class sap.ui.layout.form.FormContainer with name `sClassName` and enriches
5957
+ * it with the information contained in `oClassInfo`.
5958
+ *
5959
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
5960
+ */
5961
+ static extend<T extends Record<string, unknown>>(
5962
+ /**
5963
+ * Name of the class being created
5964
+ */
5965
+ sClassName: string,
5966
+ /**
5967
+ * Object literal with information about the class
5968
+ */
5969
+ oClassInfo?: sap.ClassInfo<T, FormContainer>,
5970
+ /**
5971
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5972
+ * used by this class
5973
+ */
5974
+ FNMetaImpl?: Function
5975
+ ): Function;
5976
+ /**
5977
+ * Returns a metadata object for class sap.ui.layout.form.FormContainer.
5978
+ */
5979
+ static getMetadata(): ElementMetadata;
5960
5980
  /**
5961
5981
  * @SINCE 1.74.0
5962
5982
  *
@@ -6006,27 +6026,6 @@ declare module "sap/ui/layout/form/FormContainer" {
6006
6026
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
6007
6027
  */
6008
6028
  destroyToolbar(): this;
6009
- /**
6010
- * Creates a new subclass of class sap.ui.layout.form.FormContainer with name `sClassName` and enriches
6011
- * it with the information contained in `oClassInfo`.
6012
- *
6013
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
6014
- */
6015
- static extend<T extends Record<string, unknown>>(
6016
- /**
6017
- * Name of the class being created
6018
- */
6019
- sClassName: string,
6020
- /**
6021
- * Object literal with information about the class
6022
- */
6023
- oClassInfo?: sap.ClassInfo<T, FormContainer>,
6024
- /**
6025
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6026
- * used by this class
6027
- */
6028
- FNMetaImpl?: Function
6029
- ): Function;
6030
6029
  /**
6031
6030
  * @SINCE 1.36.0
6032
6031
  *
@@ -6060,10 +6059,6 @@ declare module "sap/ui/layout/form/FormContainer" {
6060
6059
  * The `FormElements` contain the content (labels and fields) of the `FormContainers`.
6061
6060
  */
6062
6061
  getFormElements(): FormElement[];
6063
- /**
6064
- * Returns a metadata object for class sap.ui.layout.form.FormContainer.
6065
- */
6066
- static getMetadata(): ElementMetadata;
6067
6062
  /**
6068
6063
  * Gets content of aggregation {@link #getTitle title}.
6069
6064
  *
@@ -6346,6 +6341,31 @@ declare module "sap/ui/layout/form/FormElement" {
6346
6341
  mSettings?: $FormElementSettings
6347
6342
  );
6348
6343
 
6344
+ /**
6345
+ * Creates a new subclass of class sap.ui.layout.form.FormElement with name `sClassName` and enriches it
6346
+ * with the information contained in `oClassInfo`.
6347
+ *
6348
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
6349
+ */
6350
+ static extend<T extends Record<string, unknown>>(
6351
+ /**
6352
+ * Name of the class being created
6353
+ */
6354
+ sClassName: string,
6355
+ /**
6356
+ * Object literal with information about the class
6357
+ */
6358
+ oClassInfo?: sap.ClassInfo<T, FormElement>,
6359
+ /**
6360
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6361
+ * used by this class
6362
+ */
6363
+ FNMetaImpl?: Function
6364
+ ): Function;
6365
+ /**
6366
+ * Returns a metadata object for class sap.ui.layout.form.FormElement.
6367
+ */
6368
+ static getMetadata(): ElementMetadata;
6349
6369
  /**
6350
6370
  * @SINCE 1.74.0
6351
6371
  *
@@ -6378,27 +6398,6 @@ declare module "sap/ui/layout/form/FormElement" {
6378
6398
  * Destroys the label in the aggregation {@link #getLabel label}.
6379
6399
  */
6380
6400
  destroyLabel(): this;
6381
- /**
6382
- * Creates a new subclass of class sap.ui.layout.form.FormElement with name `sClassName` and enriches it
6383
- * with the information contained in `oClassInfo`.
6384
- *
6385
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
6386
- */
6387
- static extend<T extends Record<string, unknown>>(
6388
- /**
6389
- * Name of the class being created
6390
- */
6391
- sClassName: string,
6392
- /**
6393
- * Object literal with information about the class
6394
- */
6395
- oClassInfo?: sap.ClassInfo<T, FormElement>,
6396
- /**
6397
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6398
- * used by this class
6399
- */
6400
- FNMetaImpl?: Function
6401
- ): Function;
6402
6401
  /**
6403
6402
  * Gets content of aggregation {@link #getFields fields}.
6404
6403
  *
@@ -6423,10 +6422,6 @@ declare module "sap/ui/layout/form/FormElement" {
6423
6422
  * needs the information of the label to render the `Form`.
6424
6423
  */
6425
6424
  getLabelControl(): Label;
6426
- /**
6427
- * Returns a metadata object for class sap.ui.layout.form.FormElement.
6428
- */
6429
- static getMetadata(): ElementMetadata;
6430
6425
  /**
6431
6426
  * Gets current value of property {@link #getVisible visible}.
6432
6427
  *
@@ -6607,6 +6602,10 @@ declare module "sap/ui/layout/form/FormLayout" {
6607
6602
  */
6608
6603
  FNMetaImpl?: Function
6609
6604
  ): Function;
6605
+ /**
6606
+ * Returns a metadata object for class sap.ui.layout.form.FormLayout.
6607
+ */
6608
+ static getMetadata(): ElementMetadata;
6610
6609
  /**
6611
6610
  * @SINCE 1.36.0
6612
6611
  *
@@ -6619,10 +6618,6 @@ declare module "sap/ui/layout/form/FormLayout" {
6619
6618
  * Default value is `Translucent`.
6620
6619
  */
6621
6620
  getBackgroundDesign(): BackgroundDesign | keyof typeof BackgroundDesign;
6622
- /**
6623
- * Returns a metadata object for class sap.ui.layout.form.FormLayout.
6624
- */
6625
- static getMetadata(): ElementMetadata;
6626
6621
  /**
6627
6622
  * @SINCE 1.36.0
6628
6623
  *
@@ -6726,6 +6721,10 @@ declare module "sap/ui/layout/form/GridContainerData" {
6726
6721
  */
6727
6722
  FNMetaImpl?: Function
6728
6723
  ): Function;
6724
+ /**
6725
+ * Returns a metadata object for class sap.ui.layout.form.GridContainerData.
6726
+ */
6727
+ static getMetadata(): ElementMetadata;
6729
6728
  /**
6730
6729
  * Gets current value of property {@link #getHalfGrid halfGrid}.
6731
6730
  *
@@ -6736,10 +6735,6 @@ declare module "sap/ui/layout/form/GridContainerData" {
6736
6735
  * Default value is `false`.
6737
6736
  */
6738
6737
  getHalfGrid(): boolean;
6739
- /**
6740
- * Returns a metadata object for class sap.ui.layout.form.GridContainerData.
6741
- */
6742
- static getMetadata(): ElementMetadata;
6743
6738
  /**
6744
6739
  * Sets a new value for property {@link #getHalfGrid halfGrid}.
6745
6740
  *
@@ -6839,6 +6834,10 @@ declare module "sap/ui/layout/form/GridElementData" {
6839
6834
  */
6840
6835
  FNMetaImpl?: Function
6841
6836
  ): Function;
6837
+ /**
6838
+ * Returns a metadata object for class sap.ui.layout.form.GridElementData.
6839
+ */
6840
+ static getMetadata(): ElementMetadata;
6842
6841
  /**
6843
6842
  * Gets current value of property {@link #getHCells hCells}.
6844
6843
  *
@@ -6855,10 +6854,6 @@ declare module "sap/ui/layout/form/GridElementData" {
6855
6854
  * Default value is `'auto'`.
6856
6855
  */
6857
6856
  getHCells(): form.GridElementCells;
6858
- /**
6859
- * Returns a metadata object for class sap.ui.layout.form.GridElementData.
6860
- */
6861
- static getMetadata(): ElementMetadata;
6862
6857
  /**
6863
6858
  * Gets current value of property {@link #getVCells vCells}.
6864
6859
  *
@@ -7146,6 +7141,10 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
7146
7141
  */
7147
7142
  FNMetaImpl?: Function
7148
7143
  ): Function;
7144
+ /**
7145
+ * Returns a metadata object for class sap.ui.layout.form.ResponsiveGridLayout.
7146
+ */
7147
+ static getMetadata(): ElementMetadata;
7149
7148
  /**
7150
7149
  * @SINCE 1.34.0
7151
7150
  *
@@ -7321,10 +7320,6 @@ declare module "sap/ui/layout/form/ResponsiveGridLayout" {
7321
7320
  * Default value is `-1`.
7322
7321
  */
7323
7322
  getLabelSpanXL(): int;
7324
- /**
7325
- * Returns a metadata object for class sap.ui.layout.form.ResponsiveGridLayout.
7326
- */
7327
- static getMetadata(): ElementMetadata;
7328
7323
  /**
7329
7324
  * @SINCE 1.34.0
7330
7325
  *
@@ -7796,6 +7791,7 @@ declare module "sap/ui/layout/form/ResponsiveLayout" {
7796
7791
 
7797
7792
  /**
7798
7793
  * @SINCE 1.16.0
7794
+ * @deprecated (since 1.93) - replaced by {@link sap.ui.layout.form.ColumnLayout ColumnLayout}
7799
7795
  *
7800
7796
  * The `ResponsiveLayout` renders a `Form` with a responsive layout. Internally the `ResponsiveFlowLayout`
7801
7797
  * is used. The responsiveness of this layout tries to best use the available space. This means that the
@@ -7941,19 +7937,6 @@ declare module "sap/ui/layout/form/SemanticFormElement" {
7941
7937
  mSettings?: $SemanticFormElementSettings
7942
7938
  );
7943
7939
 
7944
- /**
7945
- * Adds some fieldLabel to the aggregation {@link #getFieldLabels fieldLabels}.
7946
- */
7947
- addFieldLabel(
7948
- /**
7949
- * The fieldLabel to add; if empty, nothing is inserted
7950
- */
7951
- oFieldLabel: Label
7952
- ): this;
7953
- /**
7954
- * Destroys all the fieldLabels in the aggregation {@link #getFieldLabels fieldLabels}.
7955
- */
7956
- destroyFieldLabels(): this;
7957
7940
  /**
7958
7941
  * Creates a new subclass of class sap.ui.layout.form.SemanticFormElement with name `sClassName` and enriches
7959
7942
  * it with the information contained in `oClassInfo`.
@@ -7975,6 +7958,23 @@ declare module "sap/ui/layout/form/SemanticFormElement" {
7975
7958
  */
7976
7959
  FNMetaImpl?: Function
7977
7960
  ): Function;
7961
+ /**
7962
+ * Returns a metadata object for class sap.ui.layout.form.SemanticFormElement.
7963
+ */
7964
+ static getMetadata(): ElementMetadata;
7965
+ /**
7966
+ * Adds some fieldLabel to the aggregation {@link #getFieldLabels fieldLabels}.
7967
+ */
7968
+ addFieldLabel(
7969
+ /**
7970
+ * The fieldLabel to add; if empty, nothing is inserted
7971
+ */
7972
+ oFieldLabel: Label
7973
+ ): this;
7974
+ /**
7975
+ * Destroys all the fieldLabels in the aggregation {@link #getFieldLabels fieldLabels}.
7976
+ */
7977
+ destroyFieldLabels(): this;
7978
7978
  /**
7979
7979
  * Gets current value of property {@link #getDelimiter delimiter}.
7980
7980
  *
@@ -7998,10 +7998,6 @@ declare module "sap/ui/layout/form/SemanticFormElement" {
7998
7998
  * The order of the labels and the fields must be the same.
7999
7999
  */
8000
8000
  getFieldLabels(): Label[];
8001
- /**
8002
- * Returns a metadata object for class sap.ui.layout.form.SemanticFormElement.
8003
- */
8004
- static getMetadata(): ElementMetadata;
8005
8001
  /**
8006
8002
  * Checks for the provided `sap.ui.core.Label` in the aggregation {@link #getFieldLabels fieldLabels}. and
8007
8003
  * returns its index if found or -1 otherwise.
@@ -8148,6 +8144,31 @@ declare module "sap/ui/layout/form/SimpleForm" {
8148
8144
  mSettings?: $SimpleFormSettings
8149
8145
  );
8150
8146
 
8147
+ /**
8148
+ * Creates a new subclass of class sap.ui.layout.form.SimpleForm with name `sClassName` and enriches it
8149
+ * with the information contained in `oClassInfo`.
8150
+ *
8151
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8152
+ */
8153
+ static extend<T extends Record<string, unknown>>(
8154
+ /**
8155
+ * Name of the class being created
8156
+ */
8157
+ sClassName: string,
8158
+ /**
8159
+ * Object literal with information about the class
8160
+ */
8161
+ oClassInfo?: sap.ClassInfo<T, SimpleForm>,
8162
+ /**
8163
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8164
+ * used by this class
8165
+ */
8166
+ FNMetaImpl?: Function
8167
+ ): Function;
8168
+ /**
8169
+ * Returns a metadata object for class sap.ui.layout.form.SimpleForm.
8170
+ */
8171
+ static getMetadata(): ElementMetadata;
8151
8172
  /**
8152
8173
  * @SINCE 1.32.0
8153
8174
  *
@@ -8185,28 +8206,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
8185
8206
  */
8186
8207
  destroyToolbar(): this;
8187
8208
  /**
8188
- * Creates a new subclass of class sap.ui.layout.form.SimpleForm with name `sClassName` and enriches it
8189
- * with the information contained in `oClassInfo`.
8190
- *
8191
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8192
- */
8193
- static extend<T extends Record<string, unknown>>(
8194
- /**
8195
- * Name of the class being created
8196
- */
8197
- sClassName: string,
8198
- /**
8199
- * Object literal with information about the class
8200
- */
8201
- oClassInfo?: sap.ClassInfo<T, SimpleForm>,
8202
- /**
8203
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8204
- * used by this class
8205
- */
8206
- FNMetaImpl?: Function
8207
- ): Function;
8208
- /**
8209
- * @SINCE 1.34.0
8209
+ * @SINCE 1.34.0
8210
8210
  *
8211
8211
  * Gets current value of property {@link #getAdjustLabelSpan adjustLabelSpan}.
8212
8212
  *
@@ -8329,17 +8329,18 @@ declare module "sap/ui/layout/form/SimpleForm" {
8329
8329
  *
8330
8330
  * - Add controls as input fields, text fields or other as needed.
8331
8331
  * - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
8332
- * a `ResponsiveLayout` is used as a layout, the form content is weighted using weight 3 for the labels
8333
- * and weight 5 for the fields part. By default the label column is 192 pixels wide. If your input controls
8334
- * should influence their width, you can add `sap.ui.layout.ResponsiveFlowLayoutData` to them via `setLayoutData`
8335
- * method. Ensure that the sum of the weights in the `ResponsiveFlowLayoutData` is not more than 5, as this
8336
- * is the total width of the input control part of each form row. Example for a row where the `Input`
8337
- * weight 4 and the second `Input` weight 1 (using `ResponsiveLayout`):
8332
+ * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
8333
+ * cells for the field part, for large size. If there is only little space, the labels are above the fields
8334
+ * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
8335
+ * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
8336
+ * not more than 12, as this is the total width of the input control part of each form row. Example
8337
+ * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
8338
+ *
8338
8339
  * ```javascript
8339
8340
  *
8340
8341
  * new sap.m.Label({text:"Label"});
8341
- * new sap.m.Input({value:"Weight 4", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:4})}),
8342
- * new sap.m.Input({value:"Weight 1", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:1})}),
8342
+ * new sap.m.Input({value:"6 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 6, cellsSmall: 8})}),
8343
+ * new sap.m.Input({value:"2 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 2, cellsSmall: 4})}),
8343
8344
  * ```
8344
8345
  *
8345
8346
  *
@@ -8513,6 +8514,9 @@ declare module "sap/ui/layout/form/SimpleForm" {
8513
8514
  * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
8514
8515
  * layout.
8515
8516
  *
8517
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used. For compatibility reasons
8518
+ * the default could not be changed.
8519
+ *
8516
8520
  * Default value is `ResponsiveLayout`.
8517
8521
  */
8518
8522
  getLayout(): form.SimpleFormLayout | keyof typeof form.SimpleFormLayout;
@@ -8528,10 +8532,6 @@ declare module "sap/ui/layout/form/SimpleForm" {
8528
8532
  * Default value is `2`.
8529
8533
  */
8530
8534
  getMaxContainerCols(): int;
8531
- /**
8532
- * Returns a metadata object for class sap.ui.layout.form.SimpleForm.
8533
- */
8534
- static getMetadata(): ElementMetadata;
8535
8535
  /**
8536
8536
  * Gets current value of property {@link #getMinWidth minWidth}.
8537
8537
  *
@@ -9026,6 +9026,9 @@ declare module "sap/ui/layout/form/SimpleForm" {
9026
9026
  * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
9027
9027
  * layout.
9028
9028
  *
9029
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used. For compatibility reasons
9030
+ * the default could not be changed.
9031
+ *
9029
9032
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9030
9033
  *
9031
9034
  * Default value is `ResponsiveLayout`.
@@ -9199,6 +9202,9 @@ declare module "sap/ui/layout/form/SimpleForm" {
9199
9202
  *
9200
9203
  * **Note** If possible, set the `layout` before adding content to prevent calculations for the default
9201
9204
  * layout.
9205
+ *
9206
+ * **Note** The `ResponsiveLayout` has been deprecated and must no longer be used. For compatibility reasons
9207
+ * the default could not be changed.
9202
9208
  */
9203
9209
  layout?:
9204
9210
  | (form.SimpleFormLayout | keyof typeof form.SimpleFormLayout)
@@ -9394,17 +9400,18 @@ declare module "sap/ui/layout/form/SimpleForm" {
9394
9400
  *
9395
9401
  * - Add controls as input fields, text fields or other as needed.
9396
9402
  * - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
9397
- * a `ResponsiveLayout` is used as a layout, the form content is weighted using weight 3 for the labels
9398
- * and weight 5 for the fields part. By default the label column is 192 pixels wide. If your input controls
9399
- * should influence their width, you can add `sap.ui.layout.ResponsiveFlowLayoutData` to them via `setLayoutData`
9400
- * method. Ensure that the sum of the weights in the `ResponsiveFlowLayoutData` is not more than 5, as this
9401
- * is the total width of the input control part of each form row. Example for a row where the `Input`
9402
- * weight 4 and the second `Input` weight 1 (using `ResponsiveLayout`):
9403
+ * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
9404
+ * cells for the field part, for large size. If there is only little space, the labels are above the fields
9405
+ * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
9406
+ * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
9407
+ * not more than 12, as this is the total width of the input control part of each form row. Example
9408
+ * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
9409
+ *
9403
9410
  * ```javascript
9404
9411
  *
9405
9412
  * new sap.m.Label({text:"Label"});
9406
- * new sap.m.Input({value:"Weight 4", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:4})}),
9407
- * new sap.m.Input({value:"Weight 1", layoutData: new sap.ui.layout.ResponsiveFlowLayoutData({weight:1})}),
9413
+ * new sap.m.Input({value:"6 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 6, cellsSmall: 8})}),
9414
+ * new sap.m.Input({value:"2 cells", layoutData: new sap.ui.layout.ColumnElementData({cellsLarge: 2, cellsSmall: 4})}),
9408
9415
  * ```
9409
9416
  *
9410
9417
  *
@@ -9532,6 +9539,31 @@ declare module "sap/ui/layout/Grid" {
9532
9539
  mSettings?: $GridSettings
9533
9540
  );
9534
9541
 
9542
+ /**
9543
+ * Creates a new subclass of class sap.ui.layout.Grid with name `sClassName` and enriches it with the information
9544
+ * contained in `oClassInfo`.
9545
+ *
9546
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9547
+ */
9548
+ static extend<T extends Record<string, unknown>>(
9549
+ /**
9550
+ * Name of the class being created
9551
+ */
9552
+ sClassName: string,
9553
+ /**
9554
+ * Object literal with information about the class
9555
+ */
9556
+ oClassInfo?: sap.ClassInfo<T, Grid>,
9557
+ /**
9558
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9559
+ * used by this class
9560
+ */
9561
+ FNMetaImpl?: Function
9562
+ ): Function;
9563
+ /**
9564
+ * Returns a metadata object for class sap.ui.layout.Grid.
9565
+ */
9566
+ static getMetadata(): ElementMetadata;
9535
9567
  /**
9536
9568
  * @SINCE 1.48.7
9537
9569
  *
@@ -9556,27 +9588,6 @@ declare module "sap/ui/layout/Grid" {
9556
9588
  * Destroys all the content in the aggregation {@link #getContent content}.
9557
9589
  */
9558
9590
  destroyContent(): this;
9559
- /**
9560
- * Creates a new subclass of class sap.ui.layout.Grid with name `sClassName` and enriches it with the information
9561
- * contained in `oClassInfo`.
9562
- *
9563
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9564
- */
9565
- static extend<T extends Record<string, unknown>>(
9566
- /**
9567
- * Name of the class being created
9568
- */
9569
- sClassName: string,
9570
- /**
9571
- * Object literal with information about the class
9572
- */
9573
- oClassInfo?: sap.ClassInfo<T, Grid>,
9574
- /**
9575
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9576
- * used by this class
9577
- */
9578
- FNMetaImpl?: Function
9579
- ): Function;
9580
9591
  /**
9581
9592
  * Returns the `Grid` accessibility information.
9582
9593
  * See:
@@ -9639,10 +9650,6 @@ declare module "sap/ui/layout/Grid" {
9639
9650
  * Default value is `1`.
9640
9651
  */
9641
9652
  getHSpacing(): float;
9642
- /**
9643
- * Returns a metadata object for class sap.ui.layout.Grid.
9644
- */
9645
- static getMetadata(): ElementMetadata;
9646
9653
  /**
9647
9654
  * Gets current value of property {@link #getPosition position}.
9648
9655
  *
@@ -9986,6 +9993,10 @@ declare module "sap/ui/layout/GridData" {
9986
9993
  */
9987
9994
  FNMetaImpl?: Function
9988
9995
  ): Function;
9996
+ /**
9997
+ * Returns a metadata object for class sap.ui.layout.GridData.
9998
+ */
9999
+ static getMetadata(): ElementMetadata;
9989
10000
  /**
9990
10001
  * Gets current value of property {@link #getIndent indent}.
9991
10002
  *
@@ -10097,10 +10108,6 @@ declare module "sap/ui/layout/GridData" {
10097
10108
  * Default value is `false`.
10098
10109
  */
10099
10110
  getLinebreakXL(): boolean;
10100
- /**
10101
- * Returns a metadata object for class sap.ui.layout.GridData.
10102
- */
10103
- static getMetadata(): ElementMetadata;
10104
10111
  /**
10105
10112
  * Gets current value of property {@link #getMoveBackwards moveBackwards}.
10106
10113
  *
@@ -10951,19 +10958,6 @@ declare module "sap/ui/layout/HorizontalLayout" {
10951
10958
  mSettings?: $HorizontalLayoutSettings
10952
10959
  );
10953
10960
 
10954
- /**
10955
- * Adds some content to the aggregation {@link #getContent content}.
10956
- */
10957
- addContent(
10958
- /**
10959
- * The content to add; if empty, nothing is inserted
10960
- */
10961
- oContent: Control
10962
- ): this;
10963
- /**
10964
- * Destroys all the content in the aggregation {@link #getContent content}.
10965
- */
10966
- destroyContent(): this;
10967
10961
  /**
10968
10962
  * Creates a new subclass of class sap.ui.layout.HorizontalLayout with name `sClassName` and enriches it
10969
10963
  * with the information contained in `oClassInfo`.
@@ -10985,6 +10979,23 @@ declare module "sap/ui/layout/HorizontalLayout" {
10985
10979
  */
10986
10980
  FNMetaImpl?: Function
10987
10981
  ): Function;
10982
+ /**
10983
+ * Returns a metadata object for class sap.ui.layout.HorizontalLayout.
10984
+ */
10985
+ static getMetadata(): ElementMetadata;
10986
+ /**
10987
+ * Adds some content to the aggregation {@link #getContent content}.
10988
+ */
10989
+ addContent(
10990
+ /**
10991
+ * The content to add; if empty, nothing is inserted
10992
+ */
10993
+ oContent: Control
10994
+ ): this;
10995
+ /**
10996
+ * Destroys all the content in the aggregation {@link #getContent content}.
10997
+ */
10998
+ destroyContent(): this;
10988
10999
  /**
10989
11000
  * See:
10990
11001
  * sap.ui.core.Control#getAccessibilityInfo
@@ -11005,10 +11016,6 @@ declare module "sap/ui/layout/HorizontalLayout" {
11005
11016
  * The controls inside this layout
11006
11017
  */
11007
11018
  getContent(): Control[];
11008
- /**
11009
- * Returns a metadata object for class sap.ui.layout.HorizontalLayout.
11010
- */
11011
- static getMetadata(): ElementMetadata;
11012
11019
  /**
11013
11020
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
11014
11021
  * its index if found or -1 otherwise.
@@ -11137,6 +11144,31 @@ declare module "sap/ui/layout/PaneContainer" {
11137
11144
  mSettings?: $PaneContainerSettings
11138
11145
  );
11139
11146
 
11147
+ /**
11148
+ * Creates a new subclass of class sap.ui.layout.PaneContainer with name `sClassName` and enriches it with
11149
+ * the information contained in `oClassInfo`.
11150
+ *
11151
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
11152
+ */
11153
+ static extend<T extends Record<string, unknown>>(
11154
+ /**
11155
+ * Name of the class being created
11156
+ */
11157
+ sClassName: string,
11158
+ /**
11159
+ * Object literal with information about the class
11160
+ */
11161
+ oClassInfo?: sap.ClassInfo<T, PaneContainer>,
11162
+ /**
11163
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11164
+ * used by this class
11165
+ */
11166
+ FNMetaImpl?: Function
11167
+ ): Function;
11168
+ /**
11169
+ * Returns a metadata object for class sap.ui.layout.PaneContainer.
11170
+ */
11171
+ static getMetadata(): ElementMetadata;
11140
11172
  /**
11141
11173
  * Adds some pane to the aggregation {@link #getPanes panes}.
11142
11174
  */
@@ -11206,27 +11238,6 @@ declare module "sap/ui/layout/PaneContainer" {
11206
11238
  */
11207
11239
  oListener?: object
11208
11240
  ): this;
11209
- /**
11210
- * Creates a new subclass of class sap.ui.layout.PaneContainer with name `sClassName` and enriches it with
11211
- * the information contained in `oClassInfo`.
11212
- *
11213
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
11214
- */
11215
- static extend<T extends Record<string, unknown>>(
11216
- /**
11217
- * Name of the class being created
11218
- */
11219
- sClassName: string,
11220
- /**
11221
- * Object literal with information about the class
11222
- */
11223
- oClassInfo?: sap.ClassInfo<T, PaneContainer>,
11224
- /**
11225
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11226
- * used by this class
11227
- */
11228
- FNMetaImpl?: Function
11229
- ): Function;
11230
11241
  /**
11231
11242
  * Fires event {@link #event:resize resize} to attached listeners.
11232
11243
  */
@@ -11249,10 +11260,6 @@ declare module "sap/ui/layout/PaneContainer" {
11249
11260
  * Getter for property layoutData.
11250
11261
  */
11251
11262
  getLayoutData(): LayoutData;
11252
- /**
11253
- * Returns a metadata object for class sap.ui.layout.PaneContainer.
11254
- */
11255
- static getMetadata(): ElementMetadata;
11256
11263
  /**
11257
11264
  * Gets current value of property {@link #getOrientation orientation}.
11258
11265
  *
@@ -11331,7 +11338,7 @@ declare module "sap/ui/layout/PaneContainer" {
11331
11338
  /**
11332
11339
  * Fired when contents are resized.
11333
11340
  */
11334
- resize?: Function;
11341
+ resize?: (oEvent: Event) => void;
11335
11342
  }
11336
11343
  }
11337
11344
 
@@ -11385,6 +11392,31 @@ declare module "sap/ui/layout/ResponsiveFlowLayout" {
11385
11392
  mSettings?: $ResponsiveFlowLayoutSettings
11386
11393
  );
11387
11394
 
11395
+ /**
11396
+ * Creates a new subclass of class sap.ui.layout.ResponsiveFlowLayout with name `sClassName` and enriches
11397
+ * it with the information contained in `oClassInfo`.
11398
+ *
11399
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11400
+ */
11401
+ static extend<T extends Record<string, unknown>>(
11402
+ /**
11403
+ * Name of the class being created
11404
+ */
11405
+ sClassName: string,
11406
+ /**
11407
+ * Object literal with information about the class
11408
+ */
11409
+ oClassInfo?: sap.ClassInfo<T, ResponsiveFlowLayout>,
11410
+ /**
11411
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11412
+ * used by this class
11413
+ */
11414
+ FNMetaImpl?: Function
11415
+ ): Function;
11416
+ /**
11417
+ * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayout.
11418
+ */
11419
+ static getMetadata(): ElementMetadata;
11388
11420
  /**
11389
11421
  * @SINCE 1.48.7
11390
11422
  *
@@ -11410,27 +11442,6 @@ declare module "sap/ui/layout/ResponsiveFlowLayout" {
11410
11442
  * Destroys all the content in the aggregation {@link #getContent content}.
11411
11443
  */
11412
11444
  destroyContent(): this;
11413
- /**
11414
- * Creates a new subclass of class sap.ui.layout.ResponsiveFlowLayout with name `sClassName` and enriches
11415
- * it with the information contained in `oClassInfo`.
11416
- *
11417
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
11418
- */
11419
- static extend<T extends Record<string, unknown>>(
11420
- /**
11421
- * Name of the class being created
11422
- */
11423
- sClassName: string,
11424
- /**
11425
- * Object literal with information about the class
11426
- */
11427
- oClassInfo?: sap.ClassInfo<T, ResponsiveFlowLayout>,
11428
- /**
11429
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11430
- * used by this class
11431
- */
11432
- FNMetaImpl?: Function
11433
- ): Function;
11434
11445
  /**
11435
11446
  * @SINCE 1.48.7
11436
11447
  *
@@ -11445,10 +11456,6 @@ declare module "sap/ui/layout/ResponsiveFlowLayout" {
11445
11456
  * or otherwise, the default values are used.
11446
11457
  */
11447
11458
  getContent(): Control[];
11448
- /**
11449
- * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayout.
11450
- */
11451
- static getMetadata(): ElementMetadata;
11452
11459
  /**
11453
11460
  * Gets current value of property {@link #getResponsive responsive}.
11454
11461
  *
@@ -11623,6 +11630,10 @@ declare module "sap/ui/layout/ResponsiveFlowLayoutData" {
11623
11630
  */
11624
11631
  FNMetaImpl?: Function
11625
11632
  ): Function;
11633
+ /**
11634
+ * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayoutData.
11635
+ */
11636
+ static getMetadata(): ElementMetadata;
11626
11637
  /**
11627
11638
  * Gets current value of property {@link #getLinebreak linebreak}.
11628
11639
  *
@@ -11649,10 +11660,6 @@ declare module "sap/ui/layout/ResponsiveFlowLayoutData" {
11649
11660
  * Default value is `true`.
11650
11661
  */
11651
11662
  getMargin(): boolean;
11652
- /**
11653
- * Returns a metadata object for class sap.ui.layout.ResponsiveFlowLayoutData.
11654
- */
11655
- static getMetadata(): ElementMetadata;
11656
11663
  /**
11657
11664
  * Gets current value of property {@link #getMinWidth minWidth}.
11658
11665
  *
@@ -11863,10 +11870,6 @@ declare module "sap/ui/layout/ResponsiveSplitter" {
11863
11870
  mSettings?: $ResponsiveSplitterSettings
11864
11871
  );
11865
11872
 
11866
- /**
11867
- * Destroys the rootPaneContainer in the aggregation {@link #getRootPaneContainer rootPaneContainer}.
11868
- */
11869
- destroyRootPaneContainer(): this;
11870
11873
  /**
11871
11874
  * Creates a new subclass of class sap.ui.layout.ResponsiveSplitter with name `sClassName` and enriches
11872
11875
  * it with the information contained in `oClassInfo`.
@@ -11888,6 +11891,14 @@ declare module "sap/ui/layout/ResponsiveSplitter" {
11888
11891
  */
11889
11892
  FNMetaImpl?: Function
11890
11893
  ): Function;
11894
+ /**
11895
+ * Returns a metadata object for class sap.ui.layout.ResponsiveSplitter.
11896
+ */
11897
+ static getMetadata(): ElementMetadata;
11898
+ /**
11899
+ * Destroys the rootPaneContainer in the aggregation {@link #getRootPaneContainer rootPaneContainer}.
11900
+ */
11901
+ destroyRootPaneContainer(): this;
11891
11902
  /**
11892
11903
  * ID of the element which is the current target of the association {@link #getDefaultPane defaultPane},
11893
11904
  * or `null`.
@@ -11901,10 +11912,6 @@ declare module "sap/ui/layout/ResponsiveSplitter" {
11901
11912
  * Default value is `'100%'`.
11902
11913
  */
11903
11914
  getHeight(): CSSSize;
11904
- /**
11905
- * Returns a metadata object for class sap.ui.layout.ResponsiveSplitter.
11906
- */
11907
- static getMetadata(): ElementMetadata;
11908
11915
  /**
11909
11916
  * Gets content of aggregation {@link #getRootPaneContainer rootPaneContainer}.
11910
11917
  *
@@ -12047,10 +12054,6 @@ declare module "sap/ui/layout/SplitPane" {
12047
12054
  mSettings?: $SplitPaneSettings
12048
12055
  );
12049
12056
 
12050
- /**
12051
- * Destroys the content in the aggregation {@link #getContent content}.
12052
- */
12053
- destroyContent(): this;
12054
12057
  /**
12055
12058
  * Creates a new subclass of class sap.ui.layout.SplitPane with name `sClassName` and enriches it with the
12056
12059
  * information contained in `oClassInfo`.
@@ -12072,6 +12075,14 @@ declare module "sap/ui/layout/SplitPane" {
12072
12075
  */
12073
12076
  FNMetaImpl?: Function
12074
12077
  ): Function;
12078
+ /**
12079
+ * Returns a metadata object for class sap.ui.layout.SplitPane.
12080
+ */
12081
+ static getMetadata(): ElementMetadata;
12082
+ /**
12083
+ * Destroys the content in the aggregation {@link #getContent content}.
12084
+ */
12085
+ destroyContent(): this;
12075
12086
  /**
12076
12087
  * Gets content of aggregation {@link #getContent content}.
12077
12088
  *
@@ -12086,10 +12097,6 @@ declare module "sap/ui/layout/SplitPane" {
12086
12097
  * Default value is `true`.
12087
12098
  */
12088
12099
  getDemandPane(): boolean;
12089
- /**
12090
- * Returns a metadata object for class sap.ui.layout.SplitPane.
12091
- */
12092
- static getMetadata(): ElementMetadata;
12093
12100
  /**
12094
12101
  * Gets current value of property {@link #getRequiredParentWidth requiredParentWidth}.
12095
12102
  *
@@ -12243,6 +12250,31 @@ declare module "sap/ui/layout/Splitter" {
12243
12250
  mSettings?: $SplitterSettings
12244
12251
  );
12245
12252
 
12253
+ /**
12254
+ * Creates a new subclass of class sap.ui.layout.Splitter with name `sClassName` and enriches it with the
12255
+ * information contained in `oClassInfo`.
12256
+ *
12257
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
12258
+ */
12259
+ static extend<T extends Record<string, unknown>>(
12260
+ /**
12261
+ * Name of the class being created
12262
+ */
12263
+ sClassName: string,
12264
+ /**
12265
+ * Object literal with information about the class
12266
+ */
12267
+ oClassInfo?: sap.ClassInfo<T, Splitter>,
12268
+ /**
12269
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12270
+ * used by this class
12271
+ */
12272
+ FNMetaImpl?: Function
12273
+ ): Function;
12274
+ /**
12275
+ * Returns a metadata object for class sap.ui.layout.Splitter.
12276
+ */
12277
+ static getMetadata(): ElementMetadata;
12246
12278
  /**
12247
12279
  * Adds some contentArea to the aggregation {@link #getContentAreas contentAreas}.
12248
12280
  */
@@ -12370,27 +12402,6 @@ declare module "sap/ui/layout/Splitter" {
12370
12402
  * that the contents are resized several times per second when moving the splitter bar.
12371
12403
  */
12372
12404
  enableLiveResize(): void;
12373
- /**
12374
- * Creates a new subclass of class sap.ui.layout.Splitter with name `sClassName` and enriches it with the
12375
- * information contained in `oClassInfo`.
12376
- *
12377
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
12378
- */
12379
- static extend<T extends Record<string, unknown>>(
12380
- /**
12381
- * Name of the class being created
12382
- */
12383
- sClassName: string,
12384
- /**
12385
- * Object literal with information about the class
12386
- */
12387
- oClassInfo?: sap.ClassInfo<T, Splitter>,
12388
- /**
12389
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12390
- * used by this class
12391
- */
12392
- FNMetaImpl?: Function
12393
- ): Function;
12394
12405
  /**
12395
12406
  * Fires event {@link #event:resize resize} to attached listeners.
12396
12407
  */
@@ -12421,7 +12432,7 @@ declare module "sap/ui/layout/Splitter" {
12421
12432
  *
12422
12433
  * Returns the current actual content sizes as pixel value - these values can change with every resize.
12423
12434
  */
12424
- getCalculatedSizes(): Number[];
12435
+ getCalculatedSizes(): number[];
12425
12436
  /**
12426
12437
  * Gets content of aggregation {@link #getContentAreas contentAreas}.
12427
12438
  *
@@ -12436,10 +12447,6 @@ declare module "sap/ui/layout/Splitter" {
12436
12447
  * Default value is `'100%'`.
12437
12448
  */
12438
12449
  getHeight(): CSSSize;
12439
- /**
12440
- * Returns a metadata object for class sap.ui.layout.Splitter.
12441
- */
12442
- static getMetadata(): ElementMetadata;
12443
12450
  /**
12444
12451
  * Gets current value of property {@link #getOrientation orientation}.
12445
12452
  *
@@ -12584,7 +12591,7 @@ declare module "sap/ui/layout/Splitter" {
12584
12591
  /**
12585
12592
  * Event is fired when contents are resized.
12586
12593
  */
12587
- resize?: Function;
12594
+ resize?: (oEvent: Event) => void;
12588
12595
  }
12589
12596
  }
12590
12597
 
@@ -12812,19 +12819,6 @@ declare module "sap/ui/layout/VerticalLayout" {
12812
12819
  mSettings?: $VerticalLayoutSettings
12813
12820
  );
12814
12821
 
12815
- /**
12816
- * Adds some content to the aggregation {@link #getContent content}.
12817
- */
12818
- addContent(
12819
- /**
12820
- * The content to add; if empty, nothing is inserted
12821
- */
12822
- oContent: Control
12823
- ): this;
12824
- /**
12825
- * Destroys all the content in the aggregation {@link #getContent content}.
12826
- */
12827
- destroyContent(): this;
12828
12822
  /**
12829
12823
  * Creates a new subclass of class sap.ui.layout.VerticalLayout with name `sClassName` and enriches it with
12830
12824
  * the information contained in `oClassInfo`.
@@ -12846,6 +12840,23 @@ declare module "sap/ui/layout/VerticalLayout" {
12846
12840
  */
12847
12841
  FNMetaImpl?: Function
12848
12842
  ): Function;
12843
+ /**
12844
+ * Returns a metadata object for class sap.ui.layout.VerticalLayout.
12845
+ */
12846
+ static getMetadata(): ElementMetadata;
12847
+ /**
12848
+ * Adds some content to the aggregation {@link #getContent content}.
12849
+ */
12850
+ addContent(
12851
+ /**
12852
+ * The content to add; if empty, nothing is inserted
12853
+ */
12854
+ oContent: Control
12855
+ ): this;
12856
+ /**
12857
+ * Destroys all the content in the aggregation {@link #getContent content}.
12858
+ */
12859
+ destroyContent(): this;
12849
12860
  /**
12850
12861
  * See:
12851
12862
  * sap.ui.core.Control#getAccessibilityInfo
@@ -12865,10 +12876,6 @@ declare module "sap/ui/layout/VerticalLayout" {
12865
12876
  * Default value is `true`.
12866
12877
  */
12867
12878
  getEnabled(): boolean;
12868
- /**
12869
- * Returns a metadata object for class sap.ui.layout.VerticalLayout.
12870
- */
12871
- static getMetadata(): ElementMetadata;
12872
12879
  /**
12873
12880
  * Gets current value of property {@link #getWidth width}.
12874
12881
  *