@openui5/ts-types 1.102.2 → 1.104.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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +320 -24
- package/types/sap.m.d.ts +2388 -334
- package/types/sap.tnt.d.ts +5 -5
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +36 -36
- package/types/sap.ui.core.d.ts +384 -111
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.integration.d.ts +43 -64
- package/types/sap.ui.layout.d.ts +33 -41
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +9 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +115 -35
- package/types/sap.ui.ux3.d.ts +43 -43
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +30 -30
- package/types/sap.ui.webc.main.d.ts +49 -49
- package/types/sap.uxap.d.ts +13 -13
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -425,6 +425,17 @@ declare namespace sap {
|
|
|
425
425
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
426
426
|
| `{${string}}`;
|
|
427
427
|
|
|
428
|
+
/**
|
|
429
|
+
* @SINCE 1.104.0
|
|
430
|
+
*
|
|
431
|
+
* If set, the months are also displayed in this calendar type If not set, the months are only displayed
|
|
432
|
+
* in the primary calendar type
|
|
433
|
+
*/
|
|
434
|
+
secondaryCalendarType?:
|
|
435
|
+
| sap.ui.core.CalendarType
|
|
436
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
437
|
+
| `{${string}}`;
|
|
438
|
+
|
|
428
439
|
/**
|
|
429
440
|
* @SINCE 1.74
|
|
430
441
|
*
|
|
@@ -736,6 +747,17 @@ declare namespace sap {
|
|
|
736
747
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
737
748
|
| `{${string}}`;
|
|
738
749
|
|
|
750
|
+
/**
|
|
751
|
+
* @SINCE 1.104.0
|
|
752
|
+
*
|
|
753
|
+
* If set, the years are also displayed in this calendar type If not set, the years are only displayed in
|
|
754
|
+
* the primary calendar type
|
|
755
|
+
*/
|
|
756
|
+
secondaryCalendarType?:
|
|
757
|
+
| sap.ui.core.CalendarType
|
|
758
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
759
|
+
| `{${string}}`;
|
|
760
|
+
|
|
739
761
|
/**
|
|
740
762
|
* @SINCE 1.74
|
|
741
763
|
*
|
|
@@ -2591,7 +2613,7 @@ declare namespace sap {
|
|
|
2591
2613
|
* The disabledDate to remove or its index or id
|
|
2592
2614
|
*/
|
|
2593
2615
|
vDisabledDate: int | string | sap.ui.unified.DateRange
|
|
2594
|
-
): sap.ui.unified.DateRange;
|
|
2616
|
+
): sap.ui.unified.DateRange | null;
|
|
2595
2617
|
/**
|
|
2596
2618
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
2597
2619
|
*
|
|
@@ -2602,7 +2624,7 @@ declare namespace sap {
|
|
|
2602
2624
|
* The selectedDate to remove or its index or id
|
|
2603
2625
|
*/
|
|
2604
2626
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
2605
|
-
): sap.ui.unified.DateRange;
|
|
2627
|
+
): sap.ui.unified.DateRange | null;
|
|
2606
2628
|
/**
|
|
2607
2629
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
2608
2630
|
*
|
|
@@ -2613,7 +2635,7 @@ declare namespace sap {
|
|
|
2613
2635
|
* The specialDate to remove or its index or id
|
|
2614
2636
|
*/
|
|
2615
2637
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
2616
|
-
): sap.ui.unified.DateTypeRange;
|
|
2638
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
2617
2639
|
/**
|
|
2618
2640
|
* Sets a new value for property {@link #getDate date}.
|
|
2619
2641
|
*
|
|
@@ -3134,6 +3156,17 @@ declare namespace sap {
|
|
|
3134
3156
|
* @returns Value of property `primaryCalendarType`
|
|
3135
3157
|
*/
|
|
3136
3158
|
getPrimaryCalendarType(): sap.ui.core.CalendarType;
|
|
3159
|
+
/**
|
|
3160
|
+
* @SINCE 1.104.0
|
|
3161
|
+
*
|
|
3162
|
+
* Gets current value of property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
3163
|
+
*
|
|
3164
|
+
* If set, the months are also displayed in this calendar type If not set, the months are only displayed
|
|
3165
|
+
* in the primary calendar type
|
|
3166
|
+
*
|
|
3167
|
+
* @returns Value of property `secondaryCalendarType`
|
|
3168
|
+
*/
|
|
3169
|
+
getSecondaryCalendarType(): sap.ui.core.CalendarType;
|
|
3137
3170
|
/**
|
|
3138
3171
|
* @SINCE 1.74
|
|
3139
3172
|
*
|
|
@@ -3230,7 +3263,7 @@ declare namespace sap {
|
|
|
3230
3263
|
* The selectedDate to remove or its index or id
|
|
3231
3264
|
*/
|
|
3232
3265
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
3233
|
-
): sap.ui.unified.DateRange;
|
|
3266
|
+
): sap.ui.unified.DateRange | null;
|
|
3234
3267
|
/**
|
|
3235
3268
|
* @SINCE 1.30.0
|
|
3236
3269
|
*
|
|
@@ -3339,6 +3372,24 @@ declare namespace sap {
|
|
|
3339
3372
|
*/
|
|
3340
3373
|
sPrimaryCalendarType: sap.ui.core.CalendarType
|
|
3341
3374
|
): this;
|
|
3375
|
+
/**
|
|
3376
|
+
* @SINCE 1.104.0
|
|
3377
|
+
*
|
|
3378
|
+
* Sets a new value for property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
3379
|
+
*
|
|
3380
|
+
* If set, the months are also displayed in this calendar type If not set, the months are only displayed
|
|
3381
|
+
* in the primary calendar type
|
|
3382
|
+
*
|
|
3383
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3384
|
+
*
|
|
3385
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3386
|
+
*/
|
|
3387
|
+
setSecondaryCalendarType(
|
|
3388
|
+
/**
|
|
3389
|
+
* New value for property `secondaryCalendarType`
|
|
3390
|
+
*/
|
|
3391
|
+
sSecondaryCalendarType: sap.ui.core.CalendarType
|
|
3392
|
+
): this;
|
|
3342
3393
|
}
|
|
3343
3394
|
/**
|
|
3344
3395
|
* @SINCE 1.32.0
|
|
@@ -3831,7 +3882,7 @@ declare namespace sap {
|
|
|
3831
3882
|
* The selectedDate to remove or its index or id
|
|
3832
3883
|
*/
|
|
3833
3884
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
3834
|
-
): sap.ui.unified.DateRange;
|
|
3885
|
+
): sap.ui.unified.DateRange | null;
|
|
3835
3886
|
/**
|
|
3836
3887
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
3837
3888
|
*
|
|
@@ -3842,7 +3893,7 @@ declare namespace sap {
|
|
|
3842
3893
|
* The specialDate to remove or its index or id
|
|
3843
3894
|
*/
|
|
3844
3895
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
3845
|
-
): sap.ui.unified.DateTypeRange;
|
|
3896
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
3846
3897
|
/**
|
|
3847
3898
|
* Sets a new value for property {@link #getIntervalSelection intervalSelection}.
|
|
3848
3899
|
*
|
|
@@ -4444,7 +4495,7 @@ declare namespace sap {
|
|
|
4444
4495
|
* The selectedDate to remove or its index or id
|
|
4445
4496
|
*/
|
|
4446
4497
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
4447
|
-
): sap.ui.unified.DateRange;
|
|
4498
|
+
): sap.ui.unified.DateRange | null;
|
|
4448
4499
|
/**
|
|
4449
4500
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
4450
4501
|
*
|
|
@@ -4455,7 +4506,7 @@ declare namespace sap {
|
|
|
4455
4506
|
* The specialDate to remove or its index or id
|
|
4456
4507
|
*/
|
|
4457
4508
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
4458
|
-
): sap.ui.unified.DateTypeRange;
|
|
4509
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
4459
4510
|
/**
|
|
4460
4511
|
* Sets a new value for property {@link #getDate date}.
|
|
4461
4512
|
*
|
|
@@ -4899,6 +4950,17 @@ declare namespace sap {
|
|
|
4899
4950
|
* @returns Value of property `primaryCalendarType`
|
|
4900
4951
|
*/
|
|
4901
4952
|
getPrimaryCalendarType(): sap.ui.core.CalendarType;
|
|
4953
|
+
/**
|
|
4954
|
+
* @SINCE 1.104.0
|
|
4955
|
+
*
|
|
4956
|
+
* Gets current value of property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
4957
|
+
*
|
|
4958
|
+
* If set, the years are also displayed in this calendar type If not set, the years are only displayed in
|
|
4959
|
+
* the primary calendar type
|
|
4960
|
+
*
|
|
4961
|
+
* @returns Value of property `secondaryCalendarType`
|
|
4962
|
+
*/
|
|
4963
|
+
getSecondaryCalendarType(): sap.ui.core.CalendarType;
|
|
4902
4964
|
/**
|
|
4903
4965
|
* @SINCE 1.74
|
|
4904
4966
|
*
|
|
@@ -4998,7 +5060,7 @@ declare namespace sap {
|
|
|
4998
5060
|
* The selectedDate to remove or its index or id
|
|
4999
5061
|
*/
|
|
5000
5062
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
5001
|
-
): sap.ui.unified.DateRange;
|
|
5063
|
+
): sap.ui.unified.DateRange | null;
|
|
5002
5064
|
/**
|
|
5003
5065
|
* @SINCE 1.30.0
|
|
5004
5066
|
*
|
|
@@ -5055,6 +5117,24 @@ declare namespace sap {
|
|
|
5055
5117
|
*/
|
|
5056
5118
|
sPrimaryCalendarType: sap.ui.core.CalendarType
|
|
5057
5119
|
): this;
|
|
5120
|
+
/**
|
|
5121
|
+
* @SINCE 1.104.0
|
|
5122
|
+
*
|
|
5123
|
+
* Sets a new value for property {@link #getSecondaryCalendarType secondaryCalendarType}.
|
|
5124
|
+
*
|
|
5125
|
+
* If set, the years are also displayed in this calendar type If not set, the years are only displayed in
|
|
5126
|
+
* the primary calendar type
|
|
5127
|
+
*
|
|
5128
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5129
|
+
*
|
|
5130
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5131
|
+
*/
|
|
5132
|
+
setSecondaryCalendarType(
|
|
5133
|
+
/**
|
|
5134
|
+
* New value for property `secondaryCalendarType`
|
|
5135
|
+
*/
|
|
5136
|
+
sSecondaryCalendarType: sap.ui.core.CalendarType
|
|
5137
|
+
): this;
|
|
5058
5138
|
/**
|
|
5059
5139
|
* @deprecated (since 1.34.0) - replaced by `date` property
|
|
5060
5140
|
*
|
|
@@ -8173,7 +8253,7 @@ declare namespace sap {
|
|
|
8173
8253
|
* The disabledDate to remove or its index or id
|
|
8174
8254
|
*/
|
|
8175
8255
|
vDisabledDate: int | string | sap.ui.unified.DateRange
|
|
8176
|
-
): sap.ui.unified.DateRange;
|
|
8256
|
+
): sap.ui.unified.DateRange | null;
|
|
8177
8257
|
/**
|
|
8178
8258
|
* Removes a selectedDate from the aggregation {@link #getSelectedDates selectedDates}.
|
|
8179
8259
|
*
|
|
@@ -8184,7 +8264,7 @@ declare namespace sap {
|
|
|
8184
8264
|
* The selectedDate to remove or its index or id
|
|
8185
8265
|
*/
|
|
8186
8266
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
8187
|
-
): sap.ui.unified.DateRange;
|
|
8267
|
+
): sap.ui.unified.DateRange | null;
|
|
8188
8268
|
/**
|
|
8189
8269
|
* @SINCE 1.24.0
|
|
8190
8270
|
*
|
|
@@ -8197,7 +8277,7 @@ declare namespace sap {
|
|
|
8197
8277
|
* The specialDate to remove or its index or id
|
|
8198
8278
|
*/
|
|
8199
8279
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
8200
|
-
): sap.ui.unified.DateTypeRange;
|
|
8280
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
8201
8281
|
/**
|
|
8202
8282
|
* @SINCE 1.28.9
|
|
8203
8283
|
*
|
|
@@ -8666,7 +8746,7 @@ declare namespace sap {
|
|
|
8666
8746
|
* The customContent to remove or its index or id
|
|
8667
8747
|
*/
|
|
8668
8748
|
vCustomContent: int | string | sap.ui.core.Control
|
|
8669
|
-
): sap.ui.core.Control;
|
|
8749
|
+
): sap.ui.core.Control | null;
|
|
8670
8750
|
/**
|
|
8671
8751
|
* @SINCE 1.46.0
|
|
8672
8752
|
*
|
|
@@ -9174,7 +9254,7 @@ declare namespace sap {
|
|
|
9174
9254
|
* The item to remove or its index or id
|
|
9175
9255
|
*/
|
|
9176
9256
|
vItem: int | string | sap.ui.unified.CalendarLegendItem
|
|
9177
|
-
): sap.ui.unified.CalendarLegendItem;
|
|
9257
|
+
): sap.ui.unified.CalendarLegendItem | null;
|
|
9178
9258
|
/**
|
|
9179
9259
|
* Sets a new value for property {@link #getColumnWidth columnWidth}.
|
|
9180
9260
|
*
|
|
@@ -9958,7 +10038,7 @@ declare namespace sap {
|
|
|
9958
10038
|
* The selectedDate to remove or its index or id
|
|
9959
10039
|
*/
|
|
9960
10040
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
9961
|
-
): sap.ui.unified.DateRange;
|
|
10041
|
+
): sap.ui.unified.DateRange | null;
|
|
9962
10042
|
/**
|
|
9963
10043
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
9964
10044
|
*
|
|
@@ -9969,7 +10049,7 @@ declare namespace sap {
|
|
|
9969
10049
|
* The specialDate to remove or its index or id
|
|
9970
10050
|
*/
|
|
9971
10051
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
9972
|
-
): sap.ui.unified.DateTypeRange;
|
|
10052
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
9973
10053
|
/**
|
|
9974
10054
|
* Sets a new value for property {@link #getIntervalSelection intervalSelection}.
|
|
9975
10055
|
*
|
|
@@ -10973,7 +11053,7 @@ declare namespace sap {
|
|
|
10973
11053
|
* The appointment to remove or its index or id
|
|
10974
11054
|
*/
|
|
10975
11055
|
vAppointment: int | string | sap.ui.unified.CalendarAppointment
|
|
10976
|
-
): sap.ui.unified.CalendarAppointment;
|
|
11056
|
+
): sap.ui.unified.CalendarAppointment | null;
|
|
10977
11057
|
/**
|
|
10978
11058
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
10979
11059
|
*
|
|
@@ -10995,7 +11075,7 @@ declare namespace sap {
|
|
|
10995
11075
|
* The intervalHeader to remove or its index or id
|
|
10996
11076
|
*/
|
|
10997
11077
|
vIntervalHeader: int | string | sap.ui.unified.CalendarAppointment
|
|
10998
|
-
): sap.ui.unified.CalendarAppointment;
|
|
11078
|
+
): sap.ui.unified.CalendarAppointment | null;
|
|
10999
11079
|
/**
|
|
11000
11080
|
* @SINCE 1.81.0
|
|
11001
11081
|
*
|
|
@@ -11991,7 +12071,7 @@ declare namespace sap {
|
|
|
11991
12071
|
* The selectedDate to remove or its index or id
|
|
11992
12072
|
*/
|
|
11993
12073
|
vSelectedDate: int | string | sap.ui.unified.DateRange
|
|
11994
|
-
): sap.ui.unified.DateRange;
|
|
12074
|
+
): sap.ui.unified.DateRange | null;
|
|
11995
12075
|
/**
|
|
11996
12076
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
11997
12077
|
*
|
|
@@ -12002,7 +12082,7 @@ declare namespace sap {
|
|
|
12002
12082
|
* The specialDate to remove or its index or id
|
|
12003
12083
|
*/
|
|
12004
12084
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
12005
|
-
): sap.ui.unified.DateTypeRange;
|
|
12085
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
12006
12086
|
/**
|
|
12007
12087
|
* Sets a new value for property {@link #getIntervalMinutes intervalMinutes}.
|
|
12008
12088
|
*
|
|
@@ -13250,7 +13330,7 @@ declare namespace sap {
|
|
|
13250
13330
|
* The content1 to remove or its index or id
|
|
13251
13331
|
*/
|
|
13252
13332
|
vContent1: int | string | sap.ui.core.Control
|
|
13253
|
-
): sap.ui.core.Control;
|
|
13333
|
+
): sap.ui.core.Control | null;
|
|
13254
13334
|
/**
|
|
13255
13335
|
* Removes a content2 from the aggregation {@link #getContent2 content2}.
|
|
13256
13336
|
*
|
|
@@ -13261,7 +13341,7 @@ declare namespace sap {
|
|
|
13261
13341
|
* The content2 to remove or its index or id
|
|
13262
13342
|
*/
|
|
13263
13343
|
vContent2: int | string | sap.ui.core.Control
|
|
13264
|
-
): sap.ui.core.Control;
|
|
13344
|
+
): sap.ui.core.Control | null;
|
|
13265
13345
|
/**
|
|
13266
13346
|
* Sets a new value for property {@link #getActiveContent activeContent}.
|
|
13267
13347
|
*
|
|
@@ -15602,7 +15682,7 @@ declare namespace sap {
|
|
|
15602
15682
|
* The headerParameter to remove or its index or id
|
|
15603
15683
|
*/
|
|
15604
15684
|
vHeaderParameter: int | string | sap.ui.unified.FileUploaderParameter
|
|
15605
|
-
): sap.ui.unified.FileUploaderParameter;
|
|
15685
|
+
): sap.ui.unified.FileUploaderParameter | null;
|
|
15606
15686
|
/**
|
|
15607
15687
|
* @SINCE 1.12.2
|
|
15608
15688
|
*
|
|
@@ -15615,7 +15695,7 @@ declare namespace sap {
|
|
|
15615
15695
|
* The parameter to remove or its index or id
|
|
15616
15696
|
*/
|
|
15617
15697
|
vParameter: int | string | sap.ui.unified.FileUploaderParameter
|
|
15618
|
-
): sap.ui.unified.FileUploaderParameter;
|
|
15698
|
+
): sap.ui.unified.FileUploaderParameter | null;
|
|
15619
15699
|
/**
|
|
15620
15700
|
* Sets a new value for property {@link #getAdditionalData additionalData}.
|
|
15621
15701
|
*
|
|
@@ -16739,7 +16819,7 @@ declare namespace sap {
|
|
|
16739
16819
|
* The item to remove or its index or id
|
|
16740
16820
|
*/
|
|
16741
16821
|
vItem: int | string | sap.ui.unified.MenuItemBase
|
|
16742
|
-
): sap.ui.unified.MenuItemBase;
|
|
16822
|
+
): sap.ui.unified.MenuItemBase | null;
|
|
16743
16823
|
/**
|
|
16744
16824
|
* @deprecated (since 1.27.0) - replaced by `ariaLabelledBy` association
|
|
16745
16825
|
*
|
|
@@ -17885,7 +17965,7 @@ declare namespace sap {
|
|
|
17885
17965
|
* The curtainContent to remove or its index or id
|
|
17886
17966
|
*/
|
|
17887
17967
|
vCurtainContent: int | string | sap.ui.core.Control
|
|
17888
|
-
): sap.ui.core.Control;
|
|
17968
|
+
): sap.ui.core.Control | null;
|
|
17889
17969
|
/**
|
|
17890
17970
|
* Removes a curtainPaneContent from the aggregation {@link #getCurtainPaneContent curtainPaneContent}.
|
|
17891
17971
|
*
|
|
@@ -17896,7 +17976,7 @@ declare namespace sap {
|
|
|
17896
17976
|
* The curtainPaneContent to remove or its index or id
|
|
17897
17977
|
*/
|
|
17898
17978
|
vCurtainPaneContent: int | string | sap.ui.core.Control
|
|
17899
|
-
): sap.ui.core.Control;
|
|
17979
|
+
): sap.ui.core.Control | null;
|
|
17900
17980
|
/**
|
|
17901
17981
|
* Removes a headEndItem from the aggregation {@link #getHeadEndItems headEndItems}.
|
|
17902
17982
|
*
|
|
@@ -17907,7 +17987,7 @@ declare namespace sap {
|
|
|
17907
17987
|
* The headEndItem to remove or its index or id
|
|
17908
17988
|
*/
|
|
17909
17989
|
vHeadEndItem: int | string | sap.ui.unified.ShellHeadItem
|
|
17910
|
-
): sap.ui.unified.ShellHeadItem;
|
|
17990
|
+
): sap.ui.unified.ShellHeadItem | null;
|
|
17911
17991
|
/**
|
|
17912
17992
|
* Removes a headItem from the aggregation {@link #getHeadItems headItems}.
|
|
17913
17993
|
*
|
|
@@ -17918,7 +17998,7 @@ declare namespace sap {
|
|
|
17918
17998
|
* The headItem to remove or its index or id
|
|
17919
17999
|
*/
|
|
17920
18000
|
vHeadItem: int | string | sap.ui.unified.ShellHeadItem
|
|
17921
|
-
): sap.ui.unified.ShellHeadItem;
|
|
18001
|
+
): sap.ui.unified.ShellHeadItem | null;
|
|
17922
18002
|
/**
|
|
17923
18003
|
* Setter for the aggregated `header`.
|
|
17924
18004
|
*
|
|
@@ -18909,7 +18989,7 @@ declare namespace sap {
|
|
|
18909
18989
|
* The content to remove or its index or id
|
|
18910
18990
|
*/
|
|
18911
18991
|
vContent: int | string | sap.ui.core.Control
|
|
18912
|
-
): sap.ui.core.Control;
|
|
18992
|
+
): sap.ui.core.Control | null;
|
|
18913
18993
|
/**
|
|
18914
18994
|
* Removes a paneContent from the aggregation {@link #getPaneContent paneContent}.
|
|
18915
18995
|
*
|
|
@@ -18920,7 +19000,7 @@ declare namespace sap {
|
|
|
18920
19000
|
* The paneContent to remove or its index or id
|
|
18921
19001
|
*/
|
|
18922
19002
|
vPaneContent: int | string | sap.ui.core.Control
|
|
18923
|
-
): sap.ui.core.Control;
|
|
19003
|
+
): sap.ui.core.Control | null;
|
|
18924
19004
|
/**
|
|
18925
19005
|
* Sets the aggregated {@link #getHeader header}.
|
|
18926
19006
|
*
|
|
@@ -19253,7 +19333,7 @@ declare namespace sap {
|
|
|
19253
19333
|
* The content to remove or its index or id
|
|
19254
19334
|
*/
|
|
19255
19335
|
vContent: int | string | sap.ui.core.Control
|
|
19256
|
-
): sap.ui.core.Control;
|
|
19336
|
+
): sap.ui.core.Control | null;
|
|
19257
19337
|
/**
|
|
19258
19338
|
* Sets the aggregated {@link #getSearch search}.
|
|
19259
19339
|
*
|
|
@@ -19518,7 +19598,7 @@ declare namespace sap {
|
|
|
19518
19598
|
* The content to remove or its index or id
|
|
19519
19599
|
*/
|
|
19520
19600
|
vContent: int | string | sap.ui.core.Control
|
|
19521
|
-
): sap.ui.core.Control;
|
|
19601
|
+
): sap.ui.core.Control | null;
|
|
19522
19602
|
/**
|
|
19523
19603
|
* Removes a secondaryContent from the aggregation {@link #getSecondaryContent secondaryContent}.
|
|
19524
19604
|
*
|
|
@@ -19529,7 +19609,7 @@ declare namespace sap {
|
|
|
19529
19609
|
* The secondaryContent to remove or its index or id
|
|
19530
19610
|
*/
|
|
19531
19611
|
vSecondaryContent: int | string | sap.ui.core.Control
|
|
19532
|
-
): sap.ui.core.Control;
|
|
19612
|
+
): sap.ui.core.Control | null;
|
|
19533
19613
|
/**
|
|
19534
19614
|
* @SINCE 1.22.0
|
|
19535
19615
|
*
|