@sapui5/ts-types-esm 1.105.2 → 1.106.1
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.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +25 -25
- package/types/sap.esh.search.ui.d.ts +108 -1
- package/types/sap.f.d.ts +82 -6
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +4 -4
- package/types/sap.fe.macros.d.ts +43 -126
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +17 -3
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +150 -4
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +383 -101
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +36 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +25 -11
- package/types/sap.suite.ui.generic.template.d.ts +17 -3
- package/types/sap.suite.ui.microchart.d.ts +13 -13
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.comp.d.ts +108 -36
- package/types/sap.ui.core.d.ts +429 -227
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.generic.app.d.ts +6 -2
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +64 -33
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.richtexteditor.d.ts +2 -2
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +26 -8
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +16 -16
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.vbm.d.ts +3 -3
- package/types/sap.ui.vk.d.ts +41 -6
- package/types/sap.ui.vtm.d.ts +2 -2
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +7 -3
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +43 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +2 -8
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.apf.d.ts
CHANGED
package/types/sap.ca.ui.d.ts
CHANGED
package/types/sap.chart.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/collaboration/library" {
|
|
4
4
|
/**
|
|
@@ -261,7 +261,7 @@ declare module "sap/collaboration/components/feed/Component" {
|
|
|
261
261
|
oAxisOrientation:
|
|
262
262
|
| TimelineAxisOrientation
|
|
263
263
|
| keyof typeof TimelineAxisOrientation
|
|
264
|
-
):
|
|
264
|
+
): this;
|
|
265
265
|
/**
|
|
266
266
|
* Setter for property `enableScroll`.
|
|
267
267
|
*
|
|
@@ -279,20 +279,22 @@ declare module "sap/collaboration/components/feed/Component" {
|
|
|
279
279
|
* new value for property `enableScroll`
|
|
280
280
|
*/
|
|
281
281
|
bEnableScroll: boolean
|
|
282
|
-
):
|
|
282
|
+
): this;
|
|
283
283
|
/**
|
|
284
284
|
* Setter for property `feedSources`.
|
|
285
285
|
*
|
|
286
286
|
* The feedSources is either an array of strings (SAP Jam Group IDs) or a map in the following structure:
|
|
287
287
|
* { mode : sap.collaboration.FeedType, data : any }
|
|
288
288
|
* Based on the mode, the data is either required or not.
|
|
289
|
+
*
|
|
290
|
+
* @returns `this` to allow method chaining
|
|
289
291
|
*/
|
|
290
292
|
setFeedSources(
|
|
291
293
|
/**
|
|
292
294
|
* new value for property `feedSources`
|
|
293
295
|
*/
|
|
294
296
|
oFeedSources: Record<string, any> | string[]
|
|
295
|
-
):
|
|
297
|
+
): this;
|
|
296
298
|
}
|
|
297
299
|
|
|
298
300
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
@@ -2101,7 +2103,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2101
2103
|
* new value for property `height`
|
|
2102
2104
|
*/
|
|
2103
2105
|
sHeight: string
|
|
2104
|
-
):
|
|
2106
|
+
): this;
|
|
2105
2107
|
/**
|
|
2106
2108
|
* Setter for property `memberId`. Sets the memberId of the user
|
|
2107
2109
|
*
|
|
@@ -2112,7 +2114,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2112
2114
|
* new value for property `memberId`
|
|
2113
2115
|
*/
|
|
2114
2116
|
sMemberId: string
|
|
2115
|
-
):
|
|
2117
|
+
): this;
|
|
2116
2118
|
/**
|
|
2117
2119
|
* Setter for property `memberInfo`. Sets the memberInformation of the user
|
|
2118
2120
|
*
|
|
@@ -2123,7 +2125,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2123
2125
|
* new value for property `memberInfo`
|
|
2124
2126
|
*/
|
|
2125
2127
|
oMemberInfo: object
|
|
2126
|
-
):
|
|
2128
|
+
): this;
|
|
2127
2129
|
/**
|
|
2128
2130
|
* Setter for property `openingControl`. Sets the opening control for the Social Profile
|
|
2129
2131
|
*
|
|
@@ -2134,7 +2136,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2134
2136
|
* new value for property `openingControl`
|
|
2135
2137
|
*/
|
|
2136
2138
|
oOpeningControl: object
|
|
2137
|
-
):
|
|
2139
|
+
): this;
|
|
2138
2140
|
/**
|
|
2139
2141
|
* Setter for property `placement`. Sets the placement of the Social Profile
|
|
2140
2142
|
*
|
|
@@ -2147,7 +2149,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2147
2149
|
* new value for property `placement`
|
|
2148
2150
|
*/
|
|
2149
2151
|
sPlacement: PlacementType | keyof typeof PlacementType
|
|
2150
|
-
):
|
|
2152
|
+
): this;
|
|
2151
2153
|
/**
|
|
2152
2154
|
* Setter for property `width`. Sets the width of the Social Profile
|
|
2153
2155
|
*
|
|
@@ -2160,7 +2162,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
|
|
|
2160
2162
|
* new value for property `width`
|
|
2161
2163
|
*/
|
|
2162
2164
|
sWidth: string
|
|
2163
|
-
):
|
|
2165
|
+
): this;
|
|
2164
2166
|
}
|
|
2165
2167
|
|
|
2166
2168
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
@@ -2441,11 +2443,11 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2441
2443
|
mParameters?: object
|
|
2442
2444
|
): this;
|
|
2443
2445
|
/**
|
|
2444
|
-
*
|
|
2446
|
+
* Getter for property `alignment`. Timeline item alignment.
|
|
2445
2447
|
*
|
|
2446
|
-
* Default value is `Right
|
|
2448
|
+
* Default value is `Right`
|
|
2447
2449
|
*
|
|
2448
|
-
* @returns
|
|
2450
|
+
* @returns the value of property `alignment`
|
|
2449
2451
|
*/
|
|
2450
2452
|
getAlignment(): TimelineAlignment | keyof typeof TimelineAlignment;
|
|
2451
2453
|
/**
|
|
@@ -2508,19 +2510,17 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2508
2510
|
*/
|
|
2509
2511
|
getWidth(): CSSSize;
|
|
2510
2512
|
/**
|
|
2511
|
-
*
|
|
2512
|
-
*
|
|
2513
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2513
|
+
* Setter for property `alignment`.
|
|
2514
2514
|
*
|
|
2515
|
-
* Default value is `Right
|
|
2515
|
+
* Default value is `Right`
|
|
2516
2516
|
*
|
|
2517
|
-
* @returns
|
|
2517
|
+
* @returns `this` to allow method chaining
|
|
2518
2518
|
*/
|
|
2519
2519
|
setAlignment(
|
|
2520
2520
|
/**
|
|
2521
|
-
*
|
|
2521
|
+
* new value for property `alignment`
|
|
2522
2522
|
*/
|
|
2523
|
-
|
|
2523
|
+
oAlignment: TimelineAlignment | keyof typeof TimelineAlignment
|
|
2524
2524
|
): this;
|
|
2525
2525
|
/**
|
|
2526
2526
|
* Setter for property `axisOrientation`.
|
|
@@ -2536,7 +2536,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2536
2536
|
oAxisOrientation:
|
|
2537
2537
|
| TimelineAxisOrientation
|
|
2538
2538
|
| keyof typeof TimelineAxisOrientation
|
|
2539
|
-
):
|
|
2539
|
+
): this;
|
|
2540
2540
|
/**
|
|
2541
2541
|
* Sets a new value for property {@link #getCustomFilter customFilter}.
|
|
2542
2542
|
*
|
|
@@ -2577,7 +2577,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2577
2577
|
* new value for property `noDataText`
|
|
2578
2578
|
*/
|
|
2579
2579
|
sNoDataText: string
|
|
2580
|
-
):
|
|
2580
|
+
): this;
|
|
2581
2581
|
/**
|
|
2582
2582
|
* Setter for property `showIcons`.
|
|
2583
2583
|
*
|
|
@@ -2590,7 +2590,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2590
2590
|
* new value for property `showIcons`
|
|
2591
2591
|
*/
|
|
2592
2592
|
bShowIcons: boolean
|
|
2593
|
-
):
|
|
2593
|
+
): this;
|
|
2594
2594
|
/**
|
|
2595
2595
|
* Setter for property `visible`.
|
|
2596
2596
|
*
|
|
@@ -2603,7 +2603,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2603
2603
|
* new value for property `visible`
|
|
2604
2604
|
*/
|
|
2605
2605
|
bVisible: boolean
|
|
2606
|
-
):
|
|
2606
|
+
): this;
|
|
2607
2607
|
/**
|
|
2608
2608
|
* Setter for property `width`.
|
|
2609
2609
|
*
|
|
@@ -2616,7 +2616,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
|
|
|
2616
2616
|
* new value for property `width`
|
|
2617
2617
|
*/
|
|
2618
2618
|
sWidth: CSSSize
|
|
2619
|
-
):
|
|
2619
|
+
): this;
|
|
2620
2620
|
}
|
|
2621
2621
|
|
|
2622
2622
|
export interface $ComponentSettings extends $UIComponentSettings {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/esh/search/ui/library" {}
|
|
4
4
|
|
|
@@ -264,6 +264,19 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
264
264
|
* @returns Value of property `assembleSearchCountBreadcrumbs`
|
|
265
265
|
*/
|
|
266
266
|
getAssembleSearchCountBreadcrumbs(): Function;
|
|
267
|
+
/**
|
|
268
|
+
* @SINCE 1.106.0
|
|
269
|
+
*
|
|
270
|
+
* Gets current value of property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
|
|
271
|
+
*
|
|
272
|
+
* In case folder mode is active: Automatically switch result view type to list in search mode and to table
|
|
273
|
+
* in folder mode.
|
|
274
|
+
*
|
|
275
|
+
* Default value is `false`.
|
|
276
|
+
*
|
|
277
|
+
* @returns Value of property `autoAdjustResultViewTypeInFolderMode`
|
|
278
|
+
*/
|
|
279
|
+
getAutoAdjustResultViewTypeInFolderMode(): boolean;
|
|
267
280
|
/**
|
|
268
281
|
* Gets content of aggregation {@link #getContent content}.
|
|
269
282
|
*
|
|
@@ -304,6 +317,27 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
304
317
|
* @returns Value of property `filterRootCondition`
|
|
305
318
|
*/
|
|
306
319
|
getFilterRootCondition(): object;
|
|
320
|
+
/**
|
|
321
|
+
* @SINCE 1.106.0
|
|
322
|
+
*
|
|
323
|
+
* Gets current value of property {@link #getFolderMode folderMode}.
|
|
324
|
+
*
|
|
325
|
+
* Activates the folder mode. Precondition for folder mode is 1) Search model: In the search model for the
|
|
326
|
+
* current datasource a hierarchy attribute (representing the folders) is defined 1.1) the hierarchy attribute
|
|
327
|
+
* is annotated with displayType=TREE and for the hierarchy there is a helper connector representing the
|
|
328
|
+
* hierarchy or 1.2) the current datasource is the helper datasource representing the folder hierarchy.
|
|
329
|
+
* The hierarchy attribute is annotated with displayType=FLAT 2) Search query: The folder mode is only active
|
|
330
|
+
* in case the search query has an empty search term and no filter conditions (except the hierarchy attribute)
|
|
331
|
+
* are set.
|
|
332
|
+
*
|
|
333
|
+
* In folder mode and in case a folder filter is set the result view only shows direct children of a folder.
|
|
334
|
+
* In contrast the counts in the facets are calculated by counting direct and not direct children. In case
|
|
335
|
+
* the folder mode is not active the UI uses the search mode: The result list shows direct and not direct
|
|
336
|
+
* children of a folder.
|
|
337
|
+
*
|
|
338
|
+
* @returns Value of property `folderMode`
|
|
339
|
+
*/
|
|
340
|
+
getFolderMode(): boolean;
|
|
307
341
|
/**
|
|
308
342
|
* @SINCE 1.100.0
|
|
309
343
|
*
|
|
@@ -472,6 +506,26 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
472
506
|
*/
|
|
473
507
|
fnAssembleSearchCountBreadcrumbs: Function
|
|
474
508
|
): this;
|
|
509
|
+
/**
|
|
510
|
+
* @SINCE 1.106.0
|
|
511
|
+
*
|
|
512
|
+
* Sets a new value for property {@link #getAutoAdjustResultViewTypeInFolderMode autoAdjustResultViewTypeInFolderMode}.
|
|
513
|
+
*
|
|
514
|
+
* In case folder mode is active: Automatically switch result view type to list in search mode and to table
|
|
515
|
+
* in folder mode.
|
|
516
|
+
*
|
|
517
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
518
|
+
*
|
|
519
|
+
* Default value is `false`.
|
|
520
|
+
*
|
|
521
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
522
|
+
*/
|
|
523
|
+
setAutoAdjustResultViewTypeInFolderMode(
|
|
524
|
+
/**
|
|
525
|
+
* New value for property `autoAdjustResultViewTypeInFolderMode`
|
|
526
|
+
*/
|
|
527
|
+
bAutoAdjustResultViewTypeInFolderMode?: boolean
|
|
528
|
+
): this;
|
|
475
529
|
/**
|
|
476
530
|
* @SINCE 1.93.0
|
|
477
531
|
*
|
|
@@ -527,6 +581,32 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
527
581
|
*/
|
|
528
582
|
oFilterRootCondition: object
|
|
529
583
|
): this;
|
|
584
|
+
/**
|
|
585
|
+
* @SINCE 1.106.0
|
|
586
|
+
*
|
|
587
|
+
* Sets a new value for property {@link #getFolderMode folderMode}.
|
|
588
|
+
*
|
|
589
|
+
* Activates the folder mode. Precondition for folder mode is 1) Search model: In the search model for the
|
|
590
|
+
* current datasource a hierarchy attribute (representing the folders) is defined 1.1) the hierarchy attribute
|
|
591
|
+
* is annotated with displayType=TREE and for the hierarchy there is a helper connector representing the
|
|
592
|
+
* hierarchy or 1.2) the current datasource is the helper datasource representing the folder hierarchy.
|
|
593
|
+
* The hierarchy attribute is annotated with displayType=FLAT 2) Search query: The folder mode is only active
|
|
594
|
+
* in case the search query has an empty search term and no filter conditions (except the hierarchy attribute)
|
|
595
|
+
* are set.
|
|
596
|
+
*
|
|
597
|
+
* In folder mode and in case a folder filter is set the result view only shows direct children of a folder.
|
|
598
|
+
* In contrast the counts in the facets are calculated by counting direct and not direct children. In case
|
|
599
|
+
* the folder mode is not active the UI uses the search mode: The result list shows direct and not direct
|
|
600
|
+
* children of a folder.
|
|
601
|
+
*
|
|
602
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
603
|
+
*/
|
|
604
|
+
setFolderMode(
|
|
605
|
+
/**
|
|
606
|
+
* New value for property `folderMode`
|
|
607
|
+
*/
|
|
608
|
+
bFolderMode?: boolean
|
|
609
|
+
): this;
|
|
530
610
|
/**
|
|
531
611
|
* @SINCE 1.100.0
|
|
532
612
|
*
|
|
@@ -788,6 +868,33 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
788
868
|
| PropertyBindingInfo
|
|
789
869
|
| `{${string}}`;
|
|
790
870
|
|
|
871
|
+
/**
|
|
872
|
+
* Activates the folder mode. Precondition for folder mode is 1) Search model: In the search model for the
|
|
873
|
+
* current datasource a hierarchy attribute (representing the folders) is defined 1.1) the hierarchy attribute
|
|
874
|
+
* is annotated with displayType=TREE and for the hierarchy there is a helper connector representing the
|
|
875
|
+
* hierarchy or 1.2) the current datasource is the helper datasource representing the folder hierarchy.
|
|
876
|
+
* The hierarchy attribute is annotated with displayType=FLAT 2) Search query: The folder mode is only active
|
|
877
|
+
* in case the search query has an empty search term and no filter conditions (except the hierarchy attribute)
|
|
878
|
+
* are set.
|
|
879
|
+
*
|
|
880
|
+
* In folder mode and in case a folder filter is set the result view only shows direct children of a folder.
|
|
881
|
+
* In contrast the counts in the facets are calculated by counting direct and not direct children. In case
|
|
882
|
+
* the folder mode is not active the UI uses the search mode: The result list shows direct and not direct
|
|
883
|
+
* children of a folder. * @since 1.106.0
|
|
884
|
+
*/
|
|
885
|
+
folderMode?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
886
|
+
|
|
887
|
+
/**
|
|
888
|
+
* @SINCE 1.106.0
|
|
889
|
+
*
|
|
890
|
+
* In case folder mode is active: Automatically switch result view type to list in search mode and to table
|
|
891
|
+
* in folder mode.
|
|
892
|
+
*/
|
|
893
|
+
autoAdjustResultViewTypeInFolderMode?:
|
|
894
|
+
| boolean
|
|
895
|
+
| PropertyBindingInfo
|
|
896
|
+
| `{${string}}`;
|
|
897
|
+
|
|
791
898
|
/**
|
|
792
899
|
* Control instances which are part of this composite control.
|
|
793
900
|
*/
|
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -5590,7 +5590,7 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
5590
5590
|
* The ariaDescribedBy to be removed or its index or ID
|
|
5591
5591
|
*/
|
|
5592
5592
|
vAriaDescribedBy: int | ID | Control
|
|
5593
|
-
): ID;
|
|
5593
|
+
): ID | null;
|
|
5594
5594
|
/**
|
|
5595
5595
|
* @SINCE 1.50
|
|
5596
5596
|
*
|
|
@@ -8965,14 +8965,14 @@ declare module "sap/f/GridContainer" {
|
|
|
8965
8965
|
|
|
8966
8966
|
import { dnd, NavigationDirection } from "sap/f/library";
|
|
8967
8967
|
|
|
8968
|
+
import { ID, CSSSize } from "sap/ui/core/library";
|
|
8969
|
+
|
|
8968
8970
|
import Event from "sap/ui/base/Event";
|
|
8969
8971
|
|
|
8970
8972
|
import GridContainerSettings from "sap/f/GridContainerSettings";
|
|
8971
8973
|
|
|
8972
8974
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
8973
8975
|
|
|
8974
|
-
import { CSSSize } from "sap/ui/core/library";
|
|
8975
|
-
|
|
8976
8976
|
import Item from "sap/ui/core/Item";
|
|
8977
8977
|
|
|
8978
8978
|
import {
|
|
@@ -9132,6 +9132,28 @@ declare module "sap/f/GridContainer" {
|
|
|
9132
9132
|
* @returns Metadata object describing this class
|
|
9133
9133
|
*/
|
|
9134
9134
|
static getMetadata(): ElementMetadata;
|
|
9135
|
+
/**
|
|
9136
|
+
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
9137
|
+
*
|
|
9138
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
9139
|
+
*/
|
|
9140
|
+
addAriaDescribedBy(
|
|
9141
|
+
/**
|
|
9142
|
+
* The ariaDescribedBy to add; if empty, nothing is inserted
|
|
9143
|
+
*/
|
|
9144
|
+
vAriaDescribedBy: ID | Control
|
|
9145
|
+
): this;
|
|
9146
|
+
/**
|
|
9147
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
9148
|
+
*
|
|
9149
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
9150
|
+
*/
|
|
9151
|
+
addAriaLabelledBy(
|
|
9152
|
+
/**
|
|
9153
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
9154
|
+
*/
|
|
9155
|
+
vAriaLabelledBy: ID | Control
|
|
9156
|
+
): this;
|
|
9135
9157
|
/**
|
|
9136
9158
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
9137
9159
|
*
|
|
@@ -9497,6 +9519,16 @@ declare module "sap/f/GridContainer" {
|
|
|
9497
9519
|
* @returns Value of property `allowDenseFill`
|
|
9498
9520
|
*/
|
|
9499
9521
|
getAllowDenseFill(): boolean;
|
|
9522
|
+
/**
|
|
9523
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
9524
|
+
* ariaDescribedBy}.
|
|
9525
|
+
*/
|
|
9526
|
+
getAriaDescribedBy(): ID[];
|
|
9527
|
+
/**
|
|
9528
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
9529
|
+
* ariaLabelledBy}.
|
|
9530
|
+
*/
|
|
9531
|
+
getAriaLabelledBy(): ID[];
|
|
9500
9532
|
/**
|
|
9501
9533
|
* Gets current value of property {@link #getContainerQuery containerQuery}.
|
|
9502
9534
|
*
|
|
@@ -9639,6 +9671,18 @@ declare module "sap/f/GridContainer" {
|
|
|
9639
9671
|
*/
|
|
9640
9672
|
iIndex: int
|
|
9641
9673
|
): this;
|
|
9674
|
+
/**
|
|
9675
|
+
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
9676
|
+
*
|
|
9677
|
+
* @returns An array of the removed elements (might be empty)
|
|
9678
|
+
*/
|
|
9679
|
+
removeAllAriaDescribedBy(): ID[];
|
|
9680
|
+
/**
|
|
9681
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
9682
|
+
*
|
|
9683
|
+
* @returns An array of the removed elements (might be empty)
|
|
9684
|
+
*/
|
|
9685
|
+
removeAllAriaLabelledBy(): ID[];
|
|
9642
9686
|
/**
|
|
9643
9687
|
* Removes all the controls from the aggregation {@link #getItems items}.
|
|
9644
9688
|
*
|
|
@@ -9647,17 +9691,39 @@ declare module "sap/f/GridContainer" {
|
|
|
9647
9691
|
* @returns An array of the removed elements (might be empty)
|
|
9648
9692
|
*/
|
|
9649
9693
|
removeAllItems(): Control[];
|
|
9694
|
+
/**
|
|
9695
|
+
* Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
9696
|
+
*
|
|
9697
|
+
* @returns The removed ariaDescribedBy or `null`
|
|
9698
|
+
*/
|
|
9699
|
+
removeAriaDescribedBy(
|
|
9700
|
+
/**
|
|
9701
|
+
* The ariaDescribedBy to be removed or its index or ID
|
|
9702
|
+
*/
|
|
9703
|
+
vAriaDescribedBy: int | ID | Control
|
|
9704
|
+
): ID | null;
|
|
9705
|
+
/**
|
|
9706
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
9707
|
+
*
|
|
9708
|
+
* @returns The removed ariaLabelledBy or `null`
|
|
9709
|
+
*/
|
|
9710
|
+
removeAriaLabelledBy(
|
|
9711
|
+
/**
|
|
9712
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
9713
|
+
*/
|
|
9714
|
+
vAriaLabelledBy: int | ID | Control
|
|
9715
|
+
): ID | null;
|
|
9650
9716
|
/**
|
|
9651
9717
|
* Removes an item from the aggregation named `items`.
|
|
9652
9718
|
*
|
|
9653
|
-
* @returns The removed item or null
|
|
9719
|
+
* @returns The removed item or `null`.
|
|
9654
9720
|
*/
|
|
9655
9721
|
removeItem(
|
|
9656
9722
|
/**
|
|
9657
9723
|
* The item to remove or its index or ID.
|
|
9658
9724
|
*/
|
|
9659
9725
|
vItem: int | string | Item
|
|
9660
|
-
): Control;
|
|
9726
|
+
): Control | null;
|
|
9661
9727
|
/**
|
|
9662
9728
|
* @EXPERIMENTAL (since 1.66)
|
|
9663
9729
|
*
|
|
@@ -9940,6 +10006,16 @@ declare module "sap/f/GridContainer" {
|
|
|
9940
10006
|
*/
|
|
9941
10007
|
layoutXL?: GridContainerSettings;
|
|
9942
10008
|
|
|
10009
|
+
/**
|
|
10010
|
+
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
10011
|
+
*/
|
|
10012
|
+
ariaDescribedBy?: Array<Control | string>;
|
|
10013
|
+
|
|
10014
|
+
/**
|
|
10015
|
+
* Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
|
|
10016
|
+
*/
|
|
10017
|
+
ariaLabelledBy?: Array<Control | string>;
|
|
10018
|
+
|
|
9943
10019
|
/**
|
|
9944
10020
|
* Fired when the currently active GridSettings change.
|
|
9945
10021
|
*/
|
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/library" {
|
|
4
4
|
/**
|
|
@@ -427,7 +427,7 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
|
|
|
427
427
|
* Invokes an action (bound or unbound) and tracks the changes so that other pages can be refreshed and
|
|
428
428
|
* show the updated data upon navigation.
|
|
429
429
|
*
|
|
430
|
-
* @returns A promise once the action has been
|
|
430
|
+
* @returns A promise which resolves once the action has been executed, providing the response
|
|
431
431
|
*/
|
|
432
432
|
invokeAction(
|
|
433
433
|
/**
|
|
@@ -1123,7 +1123,7 @@ declare module "sap/fe/core/controllerextensions/ViewState" {
|
|
|
1123
1123
|
*/
|
|
1124
1124
|
applyInitialStateOnly(): boolean;
|
|
1125
1125
|
/**
|
|
1126
|
-
* Apply navigation parameters
|
|
1126
|
+
* Apply navigation parameters is not called if the navigation type is iAppState
|
|
1127
1127
|
* This function is meant to be individually overridden by consuming controllers, but not to be called directly.
|
|
1128
1128
|
* The override execution is: {@link sap.ui.core.mvc.OverrideExecution.After}.
|
|
1129
1129
|
*/
|
|
@@ -1173,7 +1173,7 @@ declare module "sap/fe/core/controllerextensions/ViewState" {
|
|
|
1173
1173
|
*/
|
|
1174
1174
|
navigationType: any;
|
|
1175
1175
|
/**
|
|
1176
|
-
* Defines whether standard variant must be used in
|
|
1176
|
+
* Defines whether the standard variant must be used in variant management
|
|
1177
1177
|
*/
|
|
1178
1178
|
requiresStandardVariant?: boolean;
|
|
1179
1179
|
/**
|