@openui5/ts-types-esm 1.108.2 → 1.110.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.108.2
1
+ // For Library Version: 1.110.0
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -105,6 +105,22 @@ declare module "sap/ui/integration/library" {
105
105
  */
106
106
  Inactive = "Inactive",
107
107
  }
108
+ /**
109
+ * @SINCE 1.109
110
+ * @EXPERIMENTAL (since 1.109)
111
+ *
112
+ * Possible designs for `{@link sap.ui.integration.widgets.Card}`.
113
+ */
114
+ export enum CardDesign {
115
+ /**
116
+ * When in this mode, the card has a solid background.
117
+ */
118
+ Solid = "Solid",
119
+ /**
120
+ * When in this mode, the card background is transparent.
121
+ */
122
+ Transparent = "Transparent",
123
+ }
108
124
  /**
109
125
  * @EXPERIMENTAL (since 1.79)
110
126
  *
@@ -1252,15 +1268,13 @@ declare module "sap/ui/integration/Extension" {
1252
1268
  */
1253
1269
  getCard(): CardFacade;
1254
1270
  /**
1255
- * @EXPERIMENTAL (since 1.79)
1256
- *
1257
1271
  * Gets current value of property {@link #getFormatters formatters}.
1258
1272
  *
1259
- * The formatters, which can be used in the manifest.
1273
+ * The formatters that can be used in the manifest.
1260
1274
  *
1261
1275
  * @returns Value of property `formatters`
1262
1276
  */
1263
- getFormatters(): object;
1277
+ getFormatters(): Record<string, () => void> | undefined;
1264
1278
  /**
1265
1279
  * @EXPERIMENTAL (since 1.108)
1266
1280
  *
@@ -1271,9 +1285,23 @@ declare module "sap/ui/integration/Extension" {
1271
1285
  */
1272
1286
  loadDependencies(): Promise<any>;
1273
1287
  /**
1274
- * Called when the card is ready.
1288
+ * Called after the card is initialized.
1275
1289
  */
1276
1290
  onCardReady(): void;
1291
+ /**
1292
+ * Sets current value of property {@link #setFormatters formatters}.
1293
+ *
1294
+ * The formatters that can be used in the manifest. When called with a value of `null` or `undefined`, the
1295
+ * default value of the property will be restored.
1296
+ *
1297
+ * @returns Reference to `this` in order to allow method chaining
1298
+ */
1299
+ setFormatters(
1300
+ /**
1301
+ * New value of property `formatters`
1302
+ */
1303
+ aFormatters?: Record<string, Function>
1304
+ ): this;
1277
1305
  }
1278
1306
 
1279
1307
  export interface $ExtensionSettings extends $ManagedObjectSettings {
@@ -1289,7 +1317,7 @@ declare module "sap/ui/integration/Extension" {
1289
1317
  /**
1290
1318
  * @EXPERIMENTAL (since 1.79)
1291
1319
  *
1292
- * The formatters, which can be used in the manifest.
1320
+ * The formatters that can be used in the manifest.
1293
1321
  */
1294
1322
  formatters?: object | PropertyBindingInfo | `{${string}}`;
1295
1323
 
@@ -1596,28 +1624,32 @@ declare module "sap/ui/integration/Host" {
1596
1624
  /**
1597
1625
  * @EXPERIMENTAL (since 1.97)
1598
1626
  *
1599
- * This functions is called when a CSRF token has expired.
1627
+ * This function is called when a CSRF token has expired.
1600
1628
  */
1601
1629
  csrfTokenExpired(
1602
1630
  /**
1603
1631
  * The CSRF token configuration.
1604
1632
  */
1605
- mCSRFTokenConfig: object
1633
+ mCSRFTokenConfig: {
1634
+ data: object;
1635
+ }
1606
1636
  ): void;
1607
1637
  /**
1608
1638
  * @EXPERIMENTAL (since 1.97)
1609
1639
  *
1610
- * This functions is called when a CSRF token is fetched.
1640
+ * This function is called when a CSRF token is fetched.
1611
1641
  */
1612
1642
  csrfTokenFetched(
1613
1643
  /**
1614
1644
  * The CSRF token configuration.
1615
1645
  */
1616
- mCSRFTokenConfig: object,
1646
+ mCSRFTokenConfig: {
1647
+ data: object;
1648
+ },
1617
1649
  /**
1618
1650
  * A promise which resolves the CSRF token to its value.
1619
1651
  */
1620
- pCSRFTokenValuePromise: Promise<any>
1652
+ pCSRFTokenValuePromise: Promise<string>
1621
1653
  ): void;
1622
1654
  /**
1623
1655
  * @EXPERIMENTAL (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
@@ -1827,7 +1859,7 @@ declare module "sap/ui/integration/Host" {
1827
1859
  *
1828
1860
  * @returns A promise which contains the context structure.
1829
1861
  */
1830
- getContexts(): Promise<any>;
1862
+ getContexts(): Promise<object>;
1831
1863
  /**
1832
1864
  * @SINCE 1.83
1833
1865
  *
@@ -1848,7 +1880,7 @@ declare module "sap/ui/integration/Host" {
1848
1880
  * The path to a context
1849
1881
  */
1850
1882
  sPath: string
1851
- ): Promise<any>;
1883
+ ): Promise<null>;
1852
1884
  /**
1853
1885
  * @EXPERIMENTAL (since 1.97)
1854
1886
  *
@@ -1860,8 +1892,10 @@ declare module "sap/ui/integration/Host" {
1860
1892
  /**
1861
1893
  * The CSRF token configuration.
1862
1894
  */
1863
- mCSRFTokenConfig: object
1864
- ): Promise<any>;
1895
+ mCSRFTokenConfig: {
1896
+ data: object;
1897
+ }
1898
+ ): Promise<string>;
1865
1899
  /**
1866
1900
  * Resolves the destination and returns its URL.
1867
1901
  *
@@ -1873,10 +1907,10 @@ declare module "sap/ui/integration/Host" {
1873
1907
  */
1874
1908
  sDestinationName: string,
1875
1909
  /**
1876
- * The card that depends on the destination. Most often the name which is used in the SAP Cloud Platform.
1910
+ * The card that depends on the destination.
1877
1911
  */
1878
1912
  oCard: Card
1879
- ): Promise<any>;
1913
+ ): Promise<string>;
1880
1914
  /**
1881
1915
  * @SINCE 1.83
1882
1916
  *
@@ -1885,7 +1919,7 @@ declare module "sap/ui/integration/Host" {
1885
1919
  *
1886
1920
  * @returns A promise which resolves with the list of destinations.
1887
1921
  */
1888
- getDestinations(): Promise<any>;
1922
+ getDestinations(): Promise<object[]>;
1889
1923
  /**
1890
1924
  * Gets current value of property {@link #getResolveDestination resolveDestination}.
1891
1925
  *
@@ -1901,7 +1935,10 @@ declare module "sap/ui/integration/Host" {
1901
1935
  *
1902
1936
  * @returns Value of property `resolveDestination`
1903
1937
  */
1904
- getResolveDestination(): Function;
1938
+ getResolveDestination():
1939
+ | ((p1: string, p2: Card) => string)
1940
+ | Promise<string>
1941
+ | undefined;
1905
1942
  /**
1906
1943
  * @EXPERIMENTAL (since 1.75) - Disclaimer: this property is in a beta state - incompatible API changes
1907
1944
  * may be done before its official public release. Use at your own discretion.
@@ -1921,17 +1958,13 @@ declare module "sap/ui/integration/Host" {
1921
1958
  sActions: CardMenuAction[]
1922
1959
  ): this;
1923
1960
  /**
1924
- * Sets a new value for property {@link #getResolveDestination resolveDestination}.
1961
+ * Sets a new value for property {@link #setResolveDestination resolveDestination}.
1925
1962
  *
1926
- * A function that resolves the given destination name to a URL.
1927
- *
1928
- * The Card calls this function when it needs to send a request to a destination. Function returns the URL
1929
- * to which the request is sent.
1930
- *
1931
- * If a card depends on a destination, but this callback is not implemented, an error will be logged.
1932
- *
1933
- * The callback receives `destinationName` as parameter and returns a string with the URL. Or alternatively
1934
- * the callback may return a `Promise` with the URL as an argument.
1963
+ * A function that resolves the given destination name to a URL. The Card calls this function when it needs
1964
+ * to send a request to a destination. Function returns the URL to which the request is sent. If a card
1965
+ * depends on a destination, but this callback is not implemented, an error will be logged. The callback
1966
+ * receives `destinationName` as parameter and returns a string with the URL. Or alternatively the callback
1967
+ * may return a `Promise` with the URL as an argument.
1935
1968
  *
1936
1969
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1937
1970
  *
@@ -1941,7 +1974,9 @@ declare module "sap/ui/integration/Host" {
1941
1974
  /**
1942
1975
  * New value for property `resolveDestination`
1943
1976
  */
1944
- fnResolveDestination: Function
1977
+ fnResolveDestination?:
1978
+ | ((p1: string, p2: Card) => string)
1979
+ | Promise<string>
1945
1980
  ): this;
1946
1981
  }
1947
1982
 
@@ -2012,6 +2047,7 @@ declare module "sap/ui/integration/widgets/Card" {
2012
2047
  import {
2013
2048
  CardActionType,
2014
2049
  CardDataMode,
2050
+ CardDesign,
2015
2051
  CardArea,
2016
2052
  } from "sap/ui/integration/library";
2017
2053
 
@@ -2655,11 +2691,24 @@ declare module "sap/ui/integration/widgets/Card" {
2655
2691
  *
2656
2692
  * Defines the state of the `Card`. When set to `Inactive`, the `Card` doesn't make requests.
2657
2693
  *
2658
- * Default value is `Active`.
2694
+ * Default value is `Auto`.
2659
2695
  *
2660
2696
  * @returns Value of property `dataMode`
2661
2697
  */
2662
2698
  getDataMode(): CardDataMode | keyof typeof CardDataMode;
2699
+ /**
2700
+ * @SINCE 1.109
2701
+ * @EXPERIMENTAL (since 1.109)
2702
+ *
2703
+ * Gets current value of property {@link #getDesign design}.
2704
+ *
2705
+ * Defines the design of the `Card`.
2706
+ *
2707
+ * Default value is `Solid`.
2708
+ *
2709
+ * @returns Value of property `design`
2710
+ */
2711
+ getDesign(): CardDesign | keyof typeof CardDesign;
2663
2712
  /**
2664
2713
  * Returns the DOM Element that should get the focus.
2665
2714
  *
@@ -2745,7 +2794,7 @@ declare module "sap/ui/integration/widgets/Card" {
2745
2794
  * The path to return a value for.
2746
2795
  */
2747
2796
  sPath: string
2748
- ): Object;
2797
+ ): any;
2749
2798
  /**
2750
2799
  * Gets current value of property {@link #getReferenceId referenceId}.
2751
2800
  *
@@ -2851,7 +2900,7 @@ declare module "sap/ui/integration/widgets/Card" {
2851
2900
  *
2852
2901
  * @returns Promise resolves after the designtime configuration is loaded.
2853
2902
  */
2854
- loadDesigntime(): Promise<any>;
2903
+ loadDesigntime(): Promise<object>;
2855
2904
  /**
2856
2905
  * @EXPERIMENTAL (since 1.65) - The API might change.
2857
2906
  *
@@ -2906,7 +2955,7 @@ declare module "sap/ui/integration/widgets/Card" {
2906
2955
  /**
2907
2956
  * The URL of the resource.
2908
2957
  */
2909
- URL: string;
2958
+ url: string;
2910
2959
  /**
2911
2960
  * The mode of the request. Possible values are "cors", "no-cors", "same-origin".
2912
2961
  */
@@ -2919,7 +2968,7 @@ declare module "sap/ui/integration/widgets/Card" {
2919
2968
  * The request parameters. If the method is "POST" the parameters will be put as key/value pairs into the
2920
2969
  * body of the request.
2921
2970
  */
2922
- parameters?: Object;
2971
+ parameters?: object;
2923
2972
  /**
2924
2973
  * The expected Content-Type of the response. Possible values are "xml", "json", "text", "script", "html",
2925
2974
  * "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
@@ -2929,7 +2978,7 @@ declare module "sap/ui/integration/widgets/Card" {
2929
2978
  /**
2930
2979
  * The HTTP headers of the request.
2931
2980
  */
2932
- headers?: Object;
2981
+ headers?: object;
2933
2982
  /**
2934
2983
  * Indicates whether cross-site requests should be made using credentials.
2935
2984
  */
@@ -2946,7 +2995,7 @@ declare module "sap/ui/integration/widgets/Card" {
2946
2995
  * The destination's key used in the configuration.
2947
2996
  */
2948
2997
  sKey: string
2949
- ): Promise<any>;
2998
+ ): Promise<string>;
2950
2999
  /**
2951
3000
  * @SINCE 1.70
2952
3001
  * @EXPERIMENTAL (since 1.70)
@@ -2980,6 +3029,26 @@ declare module "sap/ui/integration/widgets/Card" {
2980
3029
  */
2981
3030
  sMode: CardDataMode | keyof typeof CardDataMode
2982
3031
  ): this;
3032
+ /**
3033
+ * @SINCE 1.109
3034
+ * @EXPERIMENTAL (since 1.109)
3035
+ *
3036
+ * Sets a new value for property {@link #getDesign design}.
3037
+ *
3038
+ * Defines the design of the `Card`.
3039
+ *
3040
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3041
+ *
3042
+ * Default value is `Solid`.
3043
+ *
3044
+ * @returns Reference to `this` in order to allow method chaining
3045
+ */
3046
+ setDesign(
3047
+ /**
3048
+ * New value for property `design`
3049
+ */
3050
+ sDesign?: CardDesign | keyof typeof CardDesign
3051
+ ): this;
2983
3052
  /**
2984
3053
  * Sets the associated {@link #getHost host}.
2985
3054
  *
@@ -3218,7 +3287,7 @@ declare module "sap/ui/integration/widgets/Card" {
3218
3287
  * The path to return a value for.
3219
3288
  */
3220
3289
  sPath: string
3221
- ): Object;
3290
+ ): any;
3222
3291
  /**
3223
3292
  * @EXPERIMENTAL (since 1.65) - This property might be changed in future.
3224
3293
  *
@@ -3347,7 +3416,7 @@ declare module "sap/ui/integration/widgets/Card" {
3347
3416
  /**
3348
3417
  * The URL of the resource.
3349
3418
  */
3350
- URL: string;
3419
+ url: string;
3351
3420
  /**
3352
3421
  * The mode of the request. Possible values are "cors", "no-cors", "same-origin".
3353
3422
  */
@@ -3360,7 +3429,7 @@ declare module "sap/ui/integration/widgets/Card" {
3360
3429
  * The request parameters. If the method is "POST" the parameters will be put as key/value pairs into the
3361
3430
  * body of the request.
3362
3431
  */
3363
- parameters?: Object;
3432
+ parameters?: object;
3364
3433
  /**
3365
3434
  * The expected Content-Type of the response. Possible values are "xml", "json", "text", "script", "html",
3366
3435
  * "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
@@ -3370,7 +3439,7 @@ declare module "sap/ui/integration/widgets/Card" {
3370
3439
  /**
3371
3440
  * The HTTP headers of the request.
3372
3441
  */
3373
- headers?: Object;
3442
+ headers?: object;
3374
3443
  /**
3375
3444
  * Indicates whether cross-site requests should be made using credentials.
3376
3445
  */
@@ -3387,7 +3456,7 @@ declare module "sap/ui/integration/widgets/Card" {
3387
3456
  * The destination's key used in the configuration.
3388
3457
  */
3389
3458
  sKey: string
3390
- ): Promise<any>;
3459
+ ): Promise<string>;
3391
3460
  /**
3392
3461
  * Displays the loading placeholders on the whole card, or a particular area of the card. **Note:** Only
3393
3462
  * areas that contain binding will receive a loading placeholder.
@@ -3546,6 +3615,17 @@ declare module "sap/ui/integration/widgets/Card" {
3546
3615
  */
3547
3616
  manifestChanges?: object[] | PropertyBindingInfo | `{${string}}`;
3548
3617
 
3618
+ /**
3619
+ * @SINCE 1.109
3620
+ * @EXPERIMENTAL (since 1.109)
3621
+ *
3622
+ * Defines the design of the `Card`.
3623
+ */
3624
+ design?:
3625
+ | (CardDesign | keyof typeof CardDesign)
3626
+ | PropertyBindingInfo
3627
+ | `{${string}}`;
3628
+
3549
3629
  /**
3550
3630
  * @SINCE 1.85
3551
3631
  * @EXPERIMENTAL (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
@@ -3673,8 +3753,6 @@ declare namespace sap {
3673
3753
 
3674
3754
  "sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor": undefined;
3675
3755
 
3676
- "sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator": undefined;
3677
-
3678
3756
  "sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor": undefined;
3679
3757
 
3680
3758
  "sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.110.0
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -4535,24 +4535,24 @@ declare module "sap/ui/layout/DynamicSideContent" {
4535
4535
  /**
4536
4536
  * Adds a control to the main content area. Only the main content part in the aggregation is re-rendered.
4537
4537
  *
4538
- * @returns this pointer for chaining
4538
+ * @returns Reference to `this` for method chaining
4539
4539
  */
4540
4540
  addMainContent(
4541
4541
  /**
4542
4542
  * Object to be added in the aggregation
4543
4543
  */
4544
- oControl: object
4544
+ oControl: Control
4545
4545
  ): this;
4546
4546
  /**
4547
4547
  * Adds a control to the side content area. Only the side content part in the aggregation is re-rendered.
4548
4548
  *
4549
- * @returns this pointer for chaining
4549
+ * @returns Reference to `this` for method chaining
4550
4550
  */
4551
4551
  addSideContent(
4552
4552
  /**
4553
4553
  * Object to be added in the aggregation
4554
4554
  */
4555
- oControl: object
4555
+ oControl: Control
4556
4556
  ): this;
4557
4557
  /**
4558
4558
  * @SINCE 1.32
@@ -4701,7 +4701,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
4701
4701
  /**
4702
4702
  * The control instance that requested the scroll helper
4703
4703
  */
4704
- oControl: object
4704
+ oControl: Control
4705
4705
  ): ScrollEnablement;
4706
4706
  /**
4707
4707
  * Gets current value of property {@link #getShowMainContent showMainContent}.
@@ -4899,7 +4899,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
4899
4899
  /**
4900
4900
  * Sets or unsets the page in equalSplit mode.
4901
4901
  *
4902
- * @returns this pointer for chaining
4902
+ * @returns Reference to `this` for method chaining
4903
4903
  */
4904
4904
  setEqualSplit(
4905
4905
  /**
@@ -4910,7 +4910,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
4910
4910
  /**
4911
4911
  * Sets the showMainContent property.
4912
4912
  *
4913
- * @returns this pointer for chaining
4913
+ * @returns Reference to `this` for method chaining
4914
4914
  */
4915
4915
  setShowMainContent(
4916
4916
  /**
@@ -4925,7 +4925,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
4925
4925
  /**
4926
4926
  * Sets the showSideContent property.
4927
4927
  *
4928
- * @returns this pointer for chaining
4928
+ * @returns Reference to `this` for method chaining
4929
4929
  */
4930
4930
  setShowSideContent(
4931
4931
  /**
@@ -4980,7 +4980,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
4980
4980
  /**
4981
4981
  * Sets the sideContentVisibility property.
4982
4982
  *
4983
- * @returns this pointer for chaining
4983
+ * @returns Reference to `this` for method chaining
4984
4984
  */
4985
4985
  setSideContentVisibility(
4986
4986
  /**
@@ -4997,7 +4997,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
4997
4997
  * area is visible. This helper method is used to implement a button/switch for changing between the main
4998
4998
  * and side content areas. Only works if the current breakpoint is "S".
4999
4999
  *
5000
- * @returns this pointer for chaining
5000
+ * @returns Reference to `this` for method chaining
5001
5001
  */
5002
5002
  toggle(): this;
5003
5003
  }
@@ -12070,6 +12070,8 @@ declare module "sap/ui/layout/GridData" {
12070
12070
  declare module "sap/ui/layout/HorizontalLayout" {
12071
12071
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
12072
12072
 
12073
+ import { AccessibilityInfo } from "sap/ui/core/library";
12074
+
12073
12075
  import ElementMetadata from "sap/ui/core/ElementMetadata";
12074
12076
 
12075
12077
  import {
@@ -12166,7 +12168,7 @@ declare module "sap/ui/layout/HorizontalLayout" {
12166
12168
  *
12167
12169
  * @returns Current accessibility state of the control
12168
12170
  */
12169
- getAccessibilityInfo(): object;
12171
+ getAccessibilityInfo(): AccessibilityInfo;
12170
12172
  /**
12171
12173
  * Gets current value of property {@link #getAllowWrapping allowWrapping}.
12172
12174
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.110.0
2
2
 
3
3
  declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
4
4
  import Metadata from "sap/ui/base/Metadata";
@@ -149,17 +149,6 @@ declare module "sap/ui/mdc/p13n/panels/FilterPanel" {
149
149
  * @returns Metadata object describing this class
150
150
  */
151
151
  static getMetadata(): ElementMetadata;
152
- /**
153
- * Sets the personalization state of the panel instance.
154
- *
155
- * @returns The SortPanel instance
156
- */
157
- static setP13nData(
158
- /**
159
- * An array containing the personalization state
160
- */
161
- aP13nData: FilterItem
162
- ): FilterPanel;
163
152
  /**
164
153
  * Gets current value of property {@link #getItemFactory itemFactory}.
165
154
  *
@@ -171,7 +160,8 @@ declare module "sap/ui/mdc/p13n/panels/FilterPanel" {
171
160
  *
172
161
  * **Note:**: The Panel will not handle the lifecylce of the provided factory control instance, in case
173
162
  * the row is going to be removed, the according consumer needs to decide about destroying or keeping the
174
- * control instance.
163
+ * control instance. In addition, the `getIdForLabel` method can be used to return a focusable children
164
+ * control to provide the `labelFor` reference.
175
165
  *
176
166
  * @returns Value of property `itemFactory`
177
167
  */
@@ -187,7 +177,8 @@ declare module "sap/ui/mdc/p13n/panels/FilterPanel" {
187
177
  *
188
178
  * **Note:**: The Panel will not handle the lifecylce of the provided factory control instance, in case
189
179
  * the row is going to be removed, the according consumer needs to decide about destroying or keeping the
190
- * control instance.
180
+ * control instance. In addition, the `getIdForLabel` method can be used to return a focusable children
181
+ * control to provide the `labelFor` reference.
191
182
  *
192
183
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
193
184
  *
@@ -199,6 +190,17 @@ declare module "sap/ui/mdc/p13n/panels/FilterPanel" {
199
190
  */
200
191
  fnItemFactory: Function
201
192
  ): this;
193
+ /**
194
+ * Sets the personalization state of the panel instance.
195
+ *
196
+ * @returns The FilterPanel instance
197
+ */
198
+ setP13nData(
199
+ /**
200
+ * An array containing the personalization state
201
+ */
202
+ aP13nData: FilterItem[]
203
+ ): this;
202
204
  }
203
205
 
204
206
  export interface $FilterPanelSettings
@@ -212,7 +214,8 @@ declare module "sap/ui/mdc/p13n/panels/FilterPanel" {
212
214
  *
213
215
  * **Note:**: The Panel will not handle the lifecylce of the provided factory control instance, in case
214
216
  * the row is going to be removed, the according consumer needs to decide about destroying or keeping the
215
- * control instance.
217
+ * control instance. In addition, the `getIdForLabel` method can be used to return a focusable children
218
+ * control to provide the `labelFor` reference.
216
219
  */
217
220
  itemFactory?: Function | PropertyBindingInfo | `{${string}}`;
218
221
  }
@@ -234,6 +237,8 @@ declare namespace sap {
234
237
 
235
238
  "sap/ui/mdc/chart/SelectionDetailsActions": undefined;
236
239
 
240
+ "sap/ui/mdc/ChartDelegate": undefined;
241
+
237
242
  "sap/ui/mdc/condition/Condition": undefined;
238
243
 
239
244
  "sap/ui/mdc/condition/ConditionConverter": undefined;
@@ -242,6 +247,8 @@ declare namespace sap {
242
247
 
243
248
  "sap/ui/mdc/condition/ConditionModelPropertyBinding": undefined;
244
249
 
250
+ "sap/ui/mdc/condition/ConditionValidateException": undefined;
251
+
245
252
  "sap/ui/mdc/condition/FilterConverter": undefined;
246
253
 
247
254
  "sap/ui/mdc/condition/FilterOperatorUtil": undefined;
@@ -362,6 +369,8 @@ declare namespace sap {
362
369
 
363
370
  "sap/ui/mdc/Link": undefined;
364
371
 
372
+ "sap/ui/mdc/link/LinkItem": undefined;
373
+
365
374
  "sap/ui/mdc/LinkDelegate": undefined;
366
375
 
367
376
  "sap/ui/mdc/mixin/AdaptationMixin": undefined;
@@ -384,14 +393,8 @@ declare namespace sap {
384
393
 
385
394
  "sap/ui/mdc/odata/v4/ValueHelpDelegate": undefined;
386
395
 
387
- "sap/ui/mdc/p13n/AdaptationProvider": undefined;
388
-
389
396
  "sap/ui/mdc/p13n/Engine": undefined;
390
397
 
391
- "sap/ui/mdc/p13n/modification/ModificationHandler": undefined;
392
-
393
- "sap/ui/mdc/p13n/modules/DefaultProviderRegistry": undefined;
394
-
395
398
  "sap/ui/mdc/p13n/panels/FilterPanel": undefined;
396
399
 
397
400
  "sap/ui/mdc/p13n/StateUtil": undefined;
@@ -404,12 +407,16 @@ declare namespace sap {
404
407
 
405
408
  "sap/ui/mdc/table/Column": undefined;
406
409
 
410
+ "sap/ui/mdc/table/ColumnSettings": undefined;
411
+
407
412
  "sap/ui/mdc/table/CreationRow": undefined;
408
413
 
409
414
  "sap/ui/mdc/table/GridTableType": undefined;
410
415
 
411
416
  "sap/ui/mdc/table/PropertyHelper": undefined;
412
417
 
418
+ "sap/ui/mdc/table/ResponsiveColumnSettings": undefined;
419
+
413
420
  "sap/ui/mdc/table/ResponsiveTableType": undefined;
414
421
 
415
422
  "sap/ui/mdc/table/RowActionItem": undefined;
@@ -418,6 +425,8 @@ declare namespace sap {
418
425
 
419
426
  "sap/ui/mdc/table/TableTypeBase": undefined;
420
427
 
428
+ "sap/ui/mdc/table/TreeTableType": undefined;
429
+
421
430
  "sap/ui/mdc/table/V4AnalyticsPropertyHelper": undefined;
422
431
 
423
432
  "sap/ui/mdc/TableDelegate": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.110.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.110.0
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**