@openui5/ts-types 1.112.2 → 1.114.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.112.2
1
+ // For Library Version: 1.114.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.112.2
1
+ // For Library Version: 1.114.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -568,6 +568,8 @@ declare namespace sap {
568
568
  oListener?: object
569
569
  ): this;
570
570
  /**
571
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
572
+ *
571
573
  * Fires event {@link #event:cancel cancel} to attached listeners.
572
574
  *
573
575
  * @returns Reference to `this` in order to allow method chaining
@@ -579,6 +581,8 @@ declare namespace sap {
579
581
  mParameters?: object
580
582
  ): this;
581
583
  /**
584
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
585
+ *
582
586
  * Fires event {@link #event:initialized initialized} to attached listeners.
583
587
  *
584
588
  * @returns Reference to `this` in order to allow method chaining
@@ -590,6 +594,8 @@ declare namespace sap {
590
594
  mParameters?: object
591
595
  ): this;
592
596
  /**
597
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
598
+ *
593
599
  * Fires event {@link #event:manage manage} to attached listeners.
594
600
  *
595
601
  * @returns Reference to `this` in order to allow method chaining
@@ -619,6 +625,8 @@ declare namespace sap {
619
625
  }
620
626
  ): this;
621
627
  /**
628
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
629
+ *
622
630
  * Fires event {@link #event:save save} to attached listeners.
623
631
  *
624
632
  * @returns Reference to `this` in order to allow method chaining
@@ -661,6 +669,8 @@ declare namespace sap {
661
669
  }
662
670
  ): this;
663
671
  /**
672
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
673
+ *
664
674
  * Fires event {@link #event:select select} to attached listeners.
665
675
  *
666
676
  * @returns Reference to `this` in order to allow method chaining
@@ -782,6 +792,8 @@ declare namespace sap {
782
792
  */
783
793
  getModified(): boolean;
784
794
  /**
795
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
796
+ *
785
797
  * Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which
786
798
  * is fired when width of the control is changed.
787
799
  *
@@ -1315,8 +1327,6 @@ declare namespace sap {
1315
1327
 
1316
1328
  "sap/ui/fl/FlexControllerFactory": undefined;
1317
1329
 
1318
- "sap/ui/fl/initial/_internal/changeHandlers/ChangeRegistryItem": undefined;
1319
-
1320
1330
  "sap/ui/fl/initial/_internal/connectors/BackendConnector": undefined;
1321
1331
 
1322
1332
  "sap/ui/fl/initial/_internal/connectors/KeyUserConnector": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.112.2
1
+ // For Library Version: 1.114.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -438,6 +438,14 @@ declare namespace sap {
438
438
  * @returns Value of property `baseUrl`
439
439
  */
440
440
  getBaseUrl(): sap.ui.core.URI;
441
+ /**
442
+ * @EXPERIMENTAL (since 1.114)
443
+ *
444
+ * Get information about the blocking message in the card.
445
+ *
446
+ * @returns Information about the message or `null`, if such isn't shown.
447
+ */
448
+ getBlockingMessage(): sap.ui.integration.BlockingMessageSettings | null;
441
449
  /**
442
450
  * @EXPERIMENTAL (since 1.77)
443
451
  *
@@ -506,6 +514,12 @@ declare namespace sap {
506
514
  */
507
515
  bIgnoreKeyFallback?: boolean
508
516
  ): string;
517
+ /**
518
+ * @EXPERIMENTAL (since 1.114)
519
+ *
520
+ * Hide the blocking message that is shown in the card by `showBlockingMessage` call.
521
+ */
522
+ hideBlockingMessage(): void;
509
523
  /**
510
524
  * Hides the loading placeholders on the whole card, or a particular section of the card.
511
525
  */
@@ -604,18 +618,16 @@ declare namespace sap {
604
618
  */
605
619
  mode?: string;
606
620
  /**
607
- * The HTTP method. Possible values are "GET", "POST".
621
+ * The HTTP method. Possible values are "GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS", and "HEAD".
608
622
  */
609
623
  method?: string;
610
624
  /**
611
- * The request parameters. If the method is "POST" the parameters will be put as key/value pairs into the
612
- * body of the request.
625
+ * The request parameters. If the HTTP method is "POST", "PUT", "PATCH", or "DELETE" the parameters will
626
+ * be put as key/value pairs into the body of the request.
613
627
  */
614
628
  parameters?: object;
615
629
  /**
616
- * The expected Content-Type of the response. Possible values are "xml", "json", "text", "script", "html",
617
- * "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
618
- * to an object is up to the developer.
630
+ * Deprecated. Use the correct Accept headers and correct Content-Type header in the response.
619
631
  */
620
632
  dataType?: string;
621
633
  /**
@@ -639,6 +651,18 @@ declare namespace sap {
639
651
  */
640
652
  sKey: string
641
653
  ): Promise<string>;
654
+ /**
655
+ * @EXPERIMENTAL (since 1.114)
656
+ *
657
+ * Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
658
+ * after the `cardReady` lifecycle hook in Component cards and Extensions.
659
+ */
660
+ showBlockingMessage(
661
+ /**
662
+ * Blocking message settings
663
+ */
664
+ oSettings: sap.ui.integration.BlockingMessageSettings
665
+ ): void;
642
666
  /**
643
667
  * Displays the loading placeholders on the whole card, or a particular area of the card. **Note:** Only
644
668
  * areas that contain binding will receive a loading placeholder.
@@ -827,7 +851,7 @@ declare namespace sap {
827
851
  * Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
828
852
  *
829
853
  * - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
830
- * in the manifest. If such configuration is missing, then the real data is loaded.
854
+ * in the manifest. If such configuration is missing, then the Abstract mode will be used instead.
831
855
  * - When set to "Abstract", the card shows abstract placeholder without loading data.
832
856
  * - When set to "Off", the card displays real data.
833
857
  */
@@ -1396,6 +1420,7 @@ declare namespace sap {
1396
1420
  /**
1397
1421
  * @EXPERIMENTAL (since 1.64) - Disclaimer: this event is in a beta state - incompatible API changes may
1398
1422
  * be done before its official public release. Use at your own discretion.
1423
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1399
1424
  *
1400
1425
  * Fires event {@link #event:action action} to attached listeners.
1401
1426
  *
@@ -1429,6 +1454,7 @@ declare namespace sap {
1429
1454
  ): boolean;
1430
1455
  /**
1431
1456
  * @EXPERIMENTAL (since 1.96)
1457
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1432
1458
  *
1433
1459
  * Fires event {@link #event:configurationChange configurationChange} to attached listeners.
1434
1460
  *
@@ -1446,8 +1472,8 @@ declare namespace sap {
1446
1472
  * ```javascript
1447
1473
  *
1448
1474
  * {
1449
- * "/sap.card/configuration/filters/shipper/value": "key3",
1450
- * "/sap.card/configuration/filters/item/value": "key2",
1475
+ * "/sap.card/configuration/filters/shipper/value": "key3",
1476
+ * "/sap.card/configuration/filters/item/value": "key2",
1451
1477
  * }
1452
1478
  * ```
1453
1479
  */
@@ -1455,6 +1481,8 @@ declare namespace sap {
1455
1481
  }
1456
1482
  ): this;
1457
1483
  /**
1484
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1485
+ *
1458
1486
  * Fires event {@link #event:manifestApplied manifestApplied} to attached listeners.
1459
1487
  *
1460
1488
  * @returns Reference to `this` in order to allow method chaining
@@ -1467,6 +1495,7 @@ declare namespace sap {
1467
1495
  ): this;
1468
1496
  /**
1469
1497
  * @EXPERIMENTAL (since 1.72)
1498
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1470
1499
  *
1471
1500
  * Fires event {@link #event:manifestReady manifestReady} to attached listeners.
1472
1501
  *
@@ -1480,6 +1509,7 @@ declare namespace sap {
1480
1509
  ): this;
1481
1510
  /**
1482
1511
  * @EXPERIMENTAL (since 1.107)
1512
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1483
1513
  *
1484
1514
  * Fires event {@link #event:stateChanged stateChanged} to attached listeners.
1485
1515
  *
@@ -1514,6 +1544,14 @@ declare namespace sap {
1514
1544
  * @returns Value of property `baseUrl`
1515
1545
  */
1516
1546
  getBaseUrl(): sap.ui.core.URI;
1547
+ /**
1548
+ * @EXPERIMENTAL (since 1.114)
1549
+ *
1550
+ * Get information about the blocking message in the card.
1551
+ *
1552
+ * @returns Information about the message or `null`, if such isn't shown.
1553
+ */
1554
+ getBlockingMessage(): sap.ui.integration.BlockingMessageSettings | null;
1517
1555
  /**
1518
1556
  * @EXPERIMENTAL (since 1.77)
1519
1557
  *
@@ -1555,6 +1593,8 @@ declare namespace sap {
1555
1593
  */
1556
1594
  getDesign(): sap.ui.integration.CardDesign;
1557
1595
  /**
1596
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1597
+ *
1558
1598
  * Returns the DOM Element that should get the focus.
1559
1599
  *
1560
1600
  * @returns Returns the DOM Element that should get the focus
@@ -1649,7 +1689,7 @@ declare namespace sap {
1649
1689
  * Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
1650
1690
  *
1651
1691
  * - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
1652
- * in the manifest. If such configuration is missing, then the real data is loaded.
1692
+ * in the manifest. If such configuration is missing, then the Abstract mode will be used instead.
1653
1693
  * - When set to "Abstract", the card shows abstract placeholder without loading data.
1654
1694
  * - When set to "Off", the card displays real data.
1655
1695
  *
@@ -1697,6 +1737,12 @@ declare namespace sap {
1697
1737
  */
1698
1738
  bIgnoreKeyFallback?: boolean
1699
1739
  ): string;
1740
+ /**
1741
+ * @EXPERIMENTAL (since 1.114)
1742
+ *
1743
+ * Hide the blocking message that is shown in the card by `showBlockingMessage` call.
1744
+ */
1745
+ hideBlockingMessage(): void;
1700
1746
  /**
1701
1747
  * Hides the loading placeholders on the whole card, or a particular section of the card.
1702
1748
  */
@@ -1827,18 +1873,16 @@ declare namespace sap {
1827
1873
  */
1828
1874
  mode?: string;
1829
1875
  /**
1830
- * The HTTP method. Possible values are "GET", "POST".
1876
+ * The HTTP method. Possible values are "GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS", and "HEAD".
1831
1877
  */
1832
1878
  method?: string;
1833
1879
  /**
1834
- * The request parameters. If the method is "POST" the parameters will be put as key/value pairs into the
1835
- * body of the request.
1880
+ * The request parameters. If the HTTP method is "POST", "PUT", "PATCH", or "DELETE" the parameters will
1881
+ * be put as key/value pairs into the body of the request.
1836
1882
  */
1837
1883
  parameters?: object;
1838
1884
  /**
1839
- * The expected Content-Type of the response. Possible values are "xml", "json", "text", "script", "html",
1840
- * "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
1841
- * to an object is up to the developer.
1885
+ * Deprecated. Use the correct Accept headers and correct Content-Type header in the response.
1842
1886
  */
1843
1887
  dataType?: string;
1844
1888
  /**
@@ -2007,7 +2051,7 @@ declare namespace sap {
2007
2051
  * Preview mode of the `Card`. Helpful in scenarios when the end user is choosing or configuring a card.
2008
2052
  *
2009
2053
  * - When set to "MockData", the card data is loaded, using a data request, as configured in the "data/mockData"
2010
- * in the manifest. If such configuration is missing, then the real data is loaded.
2054
+ * in the manifest. If such configuration is missing, then the Abstract mode will be used instead.
2011
2055
  * - When set to "Abstract", the card shows abstract placeholder without loading data.
2012
2056
  * - When set to "Off", the card displays real data.
2013
2057
  *
@@ -2041,6 +2085,18 @@ declare namespace sap {
2041
2085
  */
2042
2086
  sReferenceId?: string
2043
2087
  ): this;
2088
+ /**
2089
+ * @EXPERIMENTAL (since 1.114)
2090
+ *
2091
+ * Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
2092
+ * after the `cardReady` lifecycle hook in Component cards and Extensions.
2093
+ */
2094
+ showBlockingMessage(
2095
+ /**
2096
+ * Blocking message settings
2097
+ */
2098
+ oSettings: sap.ui.integration.BlockingMessageSettings
2099
+ ): void;
2044
2100
  /**
2045
2101
  * Displays the loading placeholders on the whole card, or a particular area of the card. **Note:** Only
2046
2102
  * areas that contain binding will receive a loading placeholder.
@@ -2415,6 +2471,8 @@ declare namespace sap {
2415
2471
  oListener?: object
2416
2472
  ): this;
2417
2473
  /**
2474
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2475
+ *
2418
2476
  * Fires event {@link #event:press press} to attached listeners.
2419
2477
  *
2420
2478
  * @returns Reference to `this` in order to allow method chaining
@@ -2832,9 +2890,34 @@ declare namespace sap {
2832
2890
  */
2833
2891
  oListener?: object
2834
2892
  ): this;
2893
+ /**
2894
+ * @EXPERIMENTAL (since 1.113) - The API might change.
2895
+ *
2896
+ * Starts the process of fetching a resource from the network, returning a promise that is fulfilled once
2897
+ * the response is available. Use this method to override the default behavior when fetching network resources.
2898
+ * Mimics the browser native Fetch API.
2899
+ *
2900
+ * @returns A `Promise` that resolves to a `Response` object.
2901
+ */
2902
+ fetch(
2903
+ /**
2904
+ * This defines the resource that you wish to fetch.
2905
+ */
2906
+ sResource: string,
2907
+ /**
2908
+ * An object containing any custom settings that you want to apply to the request.
2909
+ */
2910
+ mOptions: object,
2911
+ /**
2912
+ * The map of request settings defined in the card manifest. Use this only for reading, they can not be
2913
+ * modified.
2914
+ */
2915
+ mRequestSettings: object
2916
+ ): Promise<Response>;
2835
2917
  /**
2836
2918
  * @EXPERIMENTAL (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
2837
2919
  * be done before its official public release. Use at your own discretion.
2920
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2838
2921
  *
2839
2922
  * Fires event {@link #event:action action} to attached listeners.
2840
2923
  *
@@ -3319,6 +3402,7 @@ declare namespace sap {
3319
3402
  /**
3320
3403
  * @EXPERIMENTAL (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
3321
3404
  * be done before its official public release. Use at your own discretion.
3405
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3322
3406
  *
3323
3407
  * Fires event {@link #event:action action} to attached listeners.
3324
3408
  *
@@ -3356,6 +3440,7 @@ declare namespace sap {
3356
3440
  ): boolean;
3357
3441
  /**
3358
3442
  * @EXPERIMENTAL (since 1.96)
3443
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3359
3444
  *
3360
3445
  * Fires event {@link #event:cardConfigurationChange cardConfigurationChange} to attached listeners.
3361
3446
  *
@@ -3377,8 +3462,8 @@ declare namespace sap {
3377
3462
  * ```javascript
3378
3463
  *
3379
3464
  * {
3380
- * "/sap.card/configuration/filters/shipper/value": "key3",
3381
- * "/sap.card/configuration/filters/item/value": "key2"
3465
+ * "/sap.card/configuration/filters/shipper/value": "key3",
3466
+ * "/sap.card/configuration/filters/item/value": "key2"
3382
3467
  * }
3383
3468
  * ```
3384
3469
  */
@@ -3387,6 +3472,7 @@ declare namespace sap {
3387
3472
  ): this;
3388
3473
  /**
3389
3474
  * @EXPERIMENTAL (since 1.107)
3475
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3390
3476
  *
3391
3477
  * Fires event {@link #event:cardStateChanged cardStateChanged} to attached listeners.
3392
3478
  *
@@ -3405,6 +3491,7 @@ declare namespace sap {
3405
3491
  ): this;
3406
3492
  /**
3407
3493
  * @EXPERIMENTAL (since 1.91)
3494
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3408
3495
  *
3409
3496
  * Fires event {@link #event:message message} to attached listeners.
3410
3497
  *
@@ -3648,6 +3735,25 @@ declare namespace sap {
3648
3735
  */
3649
3736
  Header = "Header",
3650
3737
  }
3738
+ /**
3739
+ * @EXPERIMENTAL (since 1.114)
3740
+ *
3741
+ * Card blocking message types.
3742
+ */
3743
+ enum CardBlockingMessageType {
3744
+ /**
3745
+ * An error ocurred in the card.
3746
+ */
3747
+ Error = "Error",
3748
+ /**
3749
+ * Information message.
3750
+ */
3751
+ Information = "Information",
3752
+ /**
3753
+ * There is no data to be displayed.
3754
+ */
3755
+ NoData = "NoData",
3756
+ }
3651
3757
  /**
3652
3758
  * @SINCE 1.65
3653
3759
  * @EXPERIMENTAL (since 1.65)
@@ -3705,6 +3811,38 @@ declare namespace sap {
3705
3811
  */
3706
3812
  Off = "Off",
3707
3813
  }
3814
+ /**
3815
+ * @EXPERIMENTAL (since 1.114)
3816
+ *
3817
+ * Settings for blocking message that ocurred in a {@link sap.ui.integration.widgets.Card}
3818
+ */
3819
+ type BlockingMessageSettings = {
3820
+ /**
3821
+ * Blocking message type
3822
+ */
3823
+ type: sap.ui.integration.CardBlockingMessageType;
3824
+ /**
3825
+ * Illustration type
3826
+ */
3827
+ illustrationType: sap.m.IllustratedMessageType;
3828
+ /**
3829
+ * Illustration size
3830
+ */
3831
+ illustrationSize?: sap.m.IllustratedMessageSize;
3832
+ /**
3833
+ * Title
3834
+ */
3835
+ title: string;
3836
+ /**
3837
+ * Description
3838
+ */
3839
+ description?: string;
3840
+ /**
3841
+ * Response object in case of a network error
3842
+ */
3843
+ httpResponse?: Response;
3844
+ };
3845
+
3708
3846
  /**
3709
3847
  * @EXPERIMENTAL (since 1.79)
3710
3848
  *
@@ -3846,8 +3984,6 @@ declare namespace sap {
3846
3984
 
3847
3985
  "sap/ui/integration/editor/Editor": undefined;
3848
3986
 
3849
- "sap/ui/integration/editor/EditorResourceBundles": undefined;
3850
-
3851
3987
  "sap/ui/integration/editor/Extension": undefined;
3852
3988
 
3853
3989
  "sap/ui/integration/editor/fields/BaseField": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.112.2
1
+ // For Library Version: 1.114.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -662,6 +662,8 @@ declare namespace sap {
662
662
  */
663
663
  getGridColumnGap(): sap.ui.core.CSSSize;
664
664
  /**
665
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
666
+ *
665
667
  * Implements IGridConfigurable interface
666
668
  *
667
669
  * @returns An array with the DOM elements
@@ -680,6 +682,8 @@ declare namespace sap {
680
682
  */
681
683
  getGridGap(): sap.ui.layout.cssgrid.CSSGridGapShortHand;
682
684
  /**
685
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
686
+ *
683
687
  * Returns the layout configuration of the `CSSGrid`.
684
688
  *
685
689
  * @returns The grid layout
@@ -1325,6 +1329,8 @@ declare namespace sap {
1325
1329
  */
1326
1330
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1327
1331
  /**
1332
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1333
+ *
1328
1334
  * Returns a gridTemplateColumns value based on boxWidth and boxMinWidth properties
1329
1335
  *
1330
1336
  * @returns A value for gridTemplateColumns property
@@ -1735,6 +1741,8 @@ declare namespace sap {
1735
1741
  */
1736
1742
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1737
1743
  /**
1744
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1745
+ *
1738
1746
  * Removes all display:grid styles from the provided HTML element
1739
1747
  */
1740
1748
  _removeGridLayout(
@@ -1744,6 +1752,8 @@ declare namespace sap {
1744
1752
  oElement: HTMLElement
1745
1753
  ): void;
1746
1754
  /**
1755
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1756
+ *
1747
1757
  * Sets all display:grid styles to the provided HTML element
1748
1758
  */
1749
1759
  _setGridLayout(
@@ -1775,6 +1785,8 @@ declare namespace sap {
1775
1785
  */
1776
1786
  isResponsive(): boolean;
1777
1787
  /**
1788
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1789
+ *
1778
1790
  * Hook function for the Grid's onAfterRendering
1779
1791
  */
1780
1792
  onGridAfterRendering(
@@ -1784,6 +1796,8 @@ declare namespace sap {
1784
1796
  oGrid: sap.ui.layout.cssgrid.IGridConfigurable
1785
1797
  ): void;
1786
1798
  /**
1799
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1800
+ *
1787
1801
  * Hook function for the Grid's resize. Will be called if the grid layout is responsive.
1788
1802
  */
1789
1803
  onGridResize(
@@ -1966,6 +1980,8 @@ declare namespace sap {
1966
1980
  oListener?: object
1967
1981
  ): this;
1968
1982
  /**
1983
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1984
+ *
1969
1985
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
1970
1986
  *
1971
1987
  * @returns Reference to `this` in order to allow method chaining
@@ -2661,6 +2677,8 @@ declare namespace sap {
2661
2677
  oListener?: object
2662
2678
  ): this;
2663
2679
  /**
2680
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2681
+ *
2664
2682
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
2665
2683
  *
2666
2684
  * @returns Reference to `this` in order to allow method chaining
@@ -4705,6 +4723,7 @@ declare namespace sap {
4705
4723
  static getMetadata(): sap.ui.core.ElementMetadata;
4706
4724
  /**
4707
4725
  * @SINCE 1.74.0
4726
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4708
4727
  *
4709
4728
  * Sets the editable state of the `FormContainer`.
4710
4729
  *
@@ -5062,6 +5081,7 @@ declare namespace sap {
5062
5081
  static getMetadata(): sap.ui.core.ElementMetadata;
5063
5082
  /**
5064
5083
  * @SINCE 1.74.0
5084
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5065
5085
  *
5066
5086
  * Sets the editable state of the `FormElement`.
5067
5087
  *
@@ -5164,6 +5184,8 @@ declare namespace sap {
5164
5184
  iIndex: int
5165
5185
  ): this;
5166
5186
  /**
5187
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5188
+ *
5167
5189
  * Labels inside of a Form must be invalidated if "editable" changed on Form
5168
5190
  */
5169
5191
  invalidateLabel(): void;
@@ -10054,6 +10076,7 @@ declare namespace sap {
10054
10076
  ): this;
10055
10077
  /**
10056
10078
  * @SINCE 1.32
10079
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10057
10080
  *
10058
10081
  * Fires event {@link #event:breakpointChanged breakpointChanged} to attached listeners.
10059
10082
  *
@@ -10830,6 +10853,8 @@ declare namespace sap {
10830
10853
  */
10831
10854
  destroyContent(): this;
10832
10855
  /**
10856
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10857
+ *
10833
10858
  * Returns the `Grid` accessibility information.
10834
10859
  * See:
10835
10860
  * sap.ui.core.Control#getAccessibilityInfo
@@ -12126,6 +12151,8 @@ declare namespace sap {
12126
12151
  */
12127
12152
  destroyContent(): this;
12128
12153
  /**
12154
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12155
+ *
12129
12156
  * See:
12130
12157
  * sap.ui.core.Control#getAccessibilityInfo
12131
12158
  *
@@ -12364,6 +12391,8 @@ declare namespace sap {
12364
12391
  oListener?: object
12365
12392
  ): this;
12366
12393
  /**
12394
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12395
+ *
12367
12396
  * Fires event {@link #event:resize resize} to attached listeners.
12368
12397
  *
12369
12398
  * @returns Reference to `this` in order to allow method chaining
@@ -13394,6 +13423,7 @@ declare namespace sap {
13394
13423
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13395
13424
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13396
13425
  * enough to make it part of the official Splitter interface
13426
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13397
13427
  *
13398
13428
  * Disables the resize handler for this control, this leads to an automatic resize of the contents whenever
13399
13429
  * the control changes its size. The resize handler is enabled in every control instance by default. For
@@ -13407,6 +13437,8 @@ declare namespace sap {
13407
13437
  bTemporarily?: boolean
13408
13438
  ): void;
13409
13439
  /**
13440
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13441
+ *
13410
13442
  * Disables the resizing of the Splitter contents via keyboard. This changes the Splitter bars to non-focusable
13411
13443
  * elements.
13412
13444
  */
@@ -13415,6 +13447,7 @@ declare namespace sap {
13415
13447
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13416
13448
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13417
13449
  * enough to make it part of the official Splitter interface
13450
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13418
13451
  *
13419
13452
  * Disables recalculation and resize of the splitter contents while dragging the splitter bar. This means
13420
13453
  * that the contents are resized only once after moving the splitter bar.
@@ -13424,6 +13457,7 @@ declare namespace sap {
13424
13457
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13425
13458
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13426
13459
  * enough to make it part of the official Splitter interface
13460
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13427
13461
  *
13428
13462
  * Enables the resize handler for this control, this leads to an automatic resize of the contents whenever
13429
13463
  * the control changes its size. The resize handler is enabled in every control instance by default. For
@@ -13436,6 +13470,8 @@ declare namespace sap {
13436
13470
  bTemporarily?: boolean
13437
13471
  ): void;
13438
13472
  /**
13473
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13474
+ *
13439
13475
  * Enables the resizing of the Splitter contents via keyboard. This makes the Splitter bars focusable elements.
13440
13476
  */
13441
13477
  enableKeyboardSupport(): void;
@@ -13443,12 +13479,15 @@ declare namespace sap {
13443
13479
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13444
13480
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13445
13481
  * enough to make it part of the official Splitter interface
13482
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13446
13483
  *
13447
13484
  * Enables recalculation and resize of the splitter contents while dragging the splitter bar. This means
13448
13485
  * that the contents are resized several times per second when moving the splitter bar.
13449
13486
  */
13450
13487
  enableLiveResize(): void;
13451
13488
  /**
13489
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13490
+ *
13452
13491
  * Fires event {@link #event:resize resize} to attached listeners.
13453
13492
  *
13454
13493
  * @returns Reference to `this` in order to allow method chaining
@@ -13477,6 +13516,7 @@ declare namespace sap {
13477
13516
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13478
13517
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13479
13518
  * enough to make it part of the official Splitter interface
13519
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13480
13520
  *
13481
13521
  * Returns the current actual content sizes as pixel value - these values can change with every resize.
13482
13522
  *
@@ -13875,6 +13915,8 @@ declare namespace sap {
13875
13915
  */
13876
13916
  destroyContent(): this;
13877
13917
  /**
13918
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13919
+ *
13878
13920
  * See:
13879
13921
  * sap.ui.core.Control#getAccessibilityInfo
13880
13922
  *