@openui5/ts-types 1.115.0 → 1.116.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/README.md +4 -14
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +637 -726
- package/types/sap.m.d.ts +6012 -6875
- package/types/sap.tnt.d.ts +108 -87
- package/types/sap.ui.codeeditor.d.ts +26 -38
- package/types/sap.ui.commons.d.ts +541 -751
- package/types/sap.ui.core.d.ts +2094 -2062
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +48 -100
- package/types/sap.ui.integration.d.ts +391 -319
- package/types/sap.ui.layout.d.ts +317 -341
- package/types/sap.ui.mdc.d.ts +1505 -1386
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +12 -8
- package/types/sap.ui.support.d.ts +11 -11
- package/types/sap.ui.table.d.ts +344 -454
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +875 -953
- package/types/sap.ui.ux3.d.ts +598 -816
- package/types/sap.ui.webc.common.d.ts +9 -9
- package/types/sap.ui.webc.fiori.d.ts +1036 -480
- package/types/sap.ui.webc.main.d.ts +4920 -1500
- package/types/sap.uxap.d.ts +220 -252
package/types/sap.f.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @since 1.44
|
|
6
6
|
*
|
|
7
7
|
* SAPUI5 library with controls specialized for SAP Fiori apps.
|
|
8
8
|
*/
|
|
@@ -10,13 +10,13 @@ declare namespace sap {
|
|
|
10
10
|
namespace cards {
|
|
11
11
|
namespace loading {
|
|
12
12
|
/**
|
|
13
|
-
* @
|
|
13
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
14
14
|
*
|
|
15
15
|
* PlaceholderBase renderer.
|
|
16
16
|
*/
|
|
17
17
|
interface PlaceholderBaseRenderer {
|
|
18
18
|
/**
|
|
19
|
-
* @
|
|
19
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20
20
|
*
|
|
21
21
|
* This method is reserved for derived classes to add their respective attributes.
|
|
22
22
|
*/
|
|
@@ -31,7 +31,7 @@ declare namespace sap {
|
|
|
31
31
|
oRm: sap.ui.core.RenderManager
|
|
32
32
|
): void;
|
|
33
33
|
/**
|
|
34
|
-
* @
|
|
34
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
35
35
|
*
|
|
36
36
|
* This method is reserved for derived classes to render their respective content.
|
|
37
37
|
*/
|
|
@@ -48,7 +48,7 @@ declare namespace sap {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
/**
|
|
51
|
-
* @
|
|
51
|
+
* @since 1.62
|
|
52
52
|
*
|
|
53
53
|
* Marker interface for controls suitable as a header in controls that implement the {@link sap.f.ICard }
|
|
54
54
|
* interface.
|
|
@@ -59,7 +59,7 @@ declare namespace sap {
|
|
|
59
59
|
|
|
60
60
|
interface $BaseHeaderSettings extends sap.ui.core.$ControlSettings {
|
|
61
61
|
/**
|
|
62
|
-
* @
|
|
62
|
+
* @experimental (since 1.89) - this feature is experimental and the API may change.
|
|
63
63
|
*
|
|
64
64
|
* Defines the timestamp of the oldest data in the card. Use this to show to the end user how fresh the
|
|
65
65
|
* information in the card is.
|
|
@@ -71,8 +71,18 @@ declare namespace sap {
|
|
|
71
71
|
dataTimestamp?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
|
-
* @
|
|
75
|
-
*
|
|
74
|
+
* @experimental (since 1.116) - this feature is experimental and the API may change.
|
|
75
|
+
*
|
|
76
|
+
* Defines the status text visibility.
|
|
77
|
+
*/
|
|
78
|
+
statusVisible?:
|
|
79
|
+
| boolean
|
|
80
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
81
|
+
| `{${string}}`;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @since 1.86
|
|
85
|
+
* @experimental (since 1.86)
|
|
76
86
|
*
|
|
77
87
|
* Defines the toolbar.
|
|
78
88
|
*/
|
|
@@ -86,7 +96,7 @@ declare namespace sap {
|
|
|
86
96
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
87
97
|
|
|
88
98
|
/**
|
|
89
|
-
* @
|
|
99
|
+
* @experimental (since 1.101)
|
|
90
100
|
*
|
|
91
101
|
* Limits the number of lines for the title.
|
|
92
102
|
*/
|
|
@@ -101,7 +111,7 @@ declare namespace sap {
|
|
|
101
111
|
subtitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
102
112
|
|
|
103
113
|
/**
|
|
104
|
-
* @
|
|
114
|
+
* @experimental (since 1.101)
|
|
105
115
|
*
|
|
106
116
|
* Limits the number of lines for the subtitle.
|
|
107
117
|
*/
|
|
@@ -137,14 +147,14 @@ declare namespace sap {
|
|
|
137
147
|
iconInitials?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
138
148
|
|
|
139
149
|
/**
|
|
140
|
-
* @
|
|
150
|
+
* @experimental (since 1.81) - this feature is experimental and the API may change.
|
|
141
151
|
*
|
|
142
152
|
* Defines an alt text for the avatar or icon.
|
|
143
153
|
*/
|
|
144
154
|
iconAlt?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
145
155
|
|
|
146
156
|
/**
|
|
147
|
-
* @
|
|
157
|
+
* @experimental (since 1.83) - this feature is experimental and the API may change.
|
|
148
158
|
*
|
|
149
159
|
* Defines a background color for the avatar or icon.
|
|
150
160
|
*/
|
|
@@ -154,7 +164,7 @@ declare namespace sap {
|
|
|
154
164
|
| `{${string}}`;
|
|
155
165
|
|
|
156
166
|
/**
|
|
157
|
-
* @
|
|
167
|
+
* @experimental (since 1.83) - this feature is experimental and the API may change.
|
|
158
168
|
*
|
|
159
169
|
* Defines whether the card icon is visible.
|
|
160
170
|
*/
|
|
@@ -176,7 +186,7 @@ declare namespace sap {
|
|
|
176
186
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
177
187
|
|
|
178
188
|
/**
|
|
179
|
-
* @
|
|
189
|
+
* @experimental (since 1.101)
|
|
180
190
|
*
|
|
181
191
|
* Limits the number of lines for the title.
|
|
182
192
|
*/
|
|
@@ -191,7 +201,7 @@ declare namespace sap {
|
|
|
191
201
|
subtitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
192
202
|
|
|
193
203
|
/**
|
|
194
|
-
* @
|
|
204
|
+
* @experimental (since 1.101)
|
|
195
205
|
*
|
|
196
206
|
* Limits the number of lines for the subtitle.
|
|
197
207
|
*/
|
|
@@ -219,7 +229,7 @@ declare namespace sap {
|
|
|
219
229
|
number?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
220
230
|
|
|
221
231
|
/**
|
|
222
|
-
* @
|
|
232
|
+
* @since 1.109
|
|
223
233
|
*
|
|
224
234
|
* Whether the main numeric indicator is visible or not
|
|
225
235
|
*/
|
|
@@ -244,7 +254,7 @@ declare namespace sap {
|
|
|
244
254
|
| `{${string}}`;
|
|
245
255
|
|
|
246
256
|
/**
|
|
247
|
-
* @
|
|
257
|
+
* @experimental (since 1.64) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
248
258
|
* may be done before its official public release. Use at your own discretion.
|
|
249
259
|
*
|
|
250
260
|
* The semantic color which represents the state of the main number indicator.
|
|
@@ -260,7 +270,7 @@ declare namespace sap {
|
|
|
260
270
|
details?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
261
271
|
|
|
262
272
|
/**
|
|
263
|
-
* @
|
|
273
|
+
* @experimental (since 1.101)
|
|
264
274
|
*
|
|
265
275
|
* Limits the number of lines for the details.
|
|
266
276
|
*/
|
|
@@ -311,7 +321,7 @@ declare namespace sap {
|
|
|
311
321
|
unit?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
312
322
|
|
|
313
323
|
/**
|
|
314
|
-
* @
|
|
324
|
+
* @experimental (since 1.95) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
315
325
|
* may be done before its official public release. Use at your own discretion.
|
|
316
326
|
*
|
|
317
327
|
* The semantic color which represents the state of the side indicator.
|
|
@@ -322,12 +332,12 @@ declare namespace sap {
|
|
|
322
332
|
| `{${string}}`;
|
|
323
333
|
}
|
|
324
334
|
|
|
325
|
-
interface $
|
|
335
|
+
interface Header$PressEventParameters {}
|
|
326
336
|
|
|
327
|
-
interface $
|
|
337
|
+
interface NumericHeader$PressEventParameters {}
|
|
328
338
|
|
|
329
339
|
/**
|
|
330
|
-
* @
|
|
340
|
+
* @since 1.86
|
|
331
341
|
*
|
|
332
342
|
* Provides basic functionality for header controls that can be used in sap.f.Card
|
|
333
343
|
*/
|
|
@@ -393,8 +403,8 @@ declare namespace sap {
|
|
|
393
403
|
*/
|
|
394
404
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
395
405
|
/**
|
|
396
|
-
* @
|
|
397
|
-
* @
|
|
406
|
+
* @since 1.86
|
|
407
|
+
* @experimental (since 1.86)
|
|
398
408
|
*
|
|
399
409
|
* Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
|
|
400
410
|
*
|
|
@@ -402,7 +412,7 @@ declare namespace sap {
|
|
|
402
412
|
*/
|
|
403
413
|
destroyToolbar(): this;
|
|
404
414
|
/**
|
|
405
|
-
* @
|
|
415
|
+
* @experimental (since 1.89) - this feature is experimental and the API may change.
|
|
406
416
|
*
|
|
407
417
|
* Gets current value of property {@link #getDataTimestamp dataTimestamp}.
|
|
408
418
|
*
|
|
@@ -419,8 +429,20 @@ declare namespace sap {
|
|
|
419
429
|
*/
|
|
420
430
|
getDataTimestamp(): string;
|
|
421
431
|
/**
|
|
422
|
-
* @
|
|
423
|
-
*
|
|
432
|
+
* @experimental (since 1.116) - this feature is experimental and the API may change.
|
|
433
|
+
*
|
|
434
|
+
* Gets current value of property {@link #getStatusVisible statusVisible}.
|
|
435
|
+
*
|
|
436
|
+
* Defines the status text visibility.
|
|
437
|
+
*
|
|
438
|
+
* Default value is `true`.
|
|
439
|
+
*
|
|
440
|
+
* @returns Value of property `statusVisible`
|
|
441
|
+
*/
|
|
442
|
+
getStatusVisible(): boolean;
|
|
443
|
+
/**
|
|
444
|
+
* @since 1.86
|
|
445
|
+
* @experimental (since 1.86)
|
|
424
446
|
*
|
|
425
447
|
* Gets content of aggregation {@link #getToolbar toolbar}.
|
|
426
448
|
*
|
|
@@ -428,8 +450,27 @@ declare namespace sap {
|
|
|
428
450
|
*/
|
|
429
451
|
getToolbar(): sap.ui.core.Control;
|
|
430
452
|
/**
|
|
431
|
-
* @
|
|
432
|
-
*
|
|
453
|
+
* @experimental (since 1.116) - this feature is experimental and the API may change.
|
|
454
|
+
*
|
|
455
|
+
* Sets a new value for property {@link #getStatusVisible statusVisible}.
|
|
456
|
+
*
|
|
457
|
+
* Defines the status text visibility.
|
|
458
|
+
*
|
|
459
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
460
|
+
*
|
|
461
|
+
* Default value is `true`.
|
|
462
|
+
*
|
|
463
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
464
|
+
*/
|
|
465
|
+
setStatusVisible(
|
|
466
|
+
/**
|
|
467
|
+
* New value for property `statusVisible`
|
|
468
|
+
*/
|
|
469
|
+
bStatusVisible?: boolean
|
|
470
|
+
): this;
|
|
471
|
+
/**
|
|
472
|
+
* @since 1.86
|
|
473
|
+
* @experimental (since 1.86)
|
|
433
474
|
*
|
|
434
475
|
* Sets the aggregated {@link #getToolbar toolbar}.
|
|
435
476
|
*
|
|
@@ -443,7 +484,7 @@ declare namespace sap {
|
|
|
443
484
|
): this;
|
|
444
485
|
}
|
|
445
486
|
/**
|
|
446
|
-
* @
|
|
487
|
+
* @since 1.64
|
|
447
488
|
*
|
|
448
489
|
* Displays general information in the header of the {@link sap.f.Card}.
|
|
449
490
|
*
|
|
@@ -580,7 +621,7 @@ declare namespace sap {
|
|
|
580
621
|
oListener?: object
|
|
581
622
|
): this;
|
|
582
623
|
/**
|
|
583
|
-
* @
|
|
624
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
584
625
|
*
|
|
585
626
|
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
586
627
|
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
@@ -600,7 +641,7 @@ declare namespace sap {
|
|
|
600
641
|
}
|
|
601
642
|
): void;
|
|
602
643
|
/**
|
|
603
|
-
* @
|
|
644
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
604
645
|
*
|
|
605
646
|
* Fires event {@link #event:press press} to attached listeners.
|
|
606
647
|
*
|
|
@@ -613,7 +654,7 @@ declare namespace sap {
|
|
|
613
654
|
mParameters?: object
|
|
614
655
|
): this;
|
|
615
656
|
/**
|
|
616
|
-
* @
|
|
657
|
+
* @experimental (since 1.81) - this feature is experimental and the API may change.
|
|
617
658
|
*
|
|
618
659
|
* Gets current value of property {@link #getIconAlt iconAlt}.
|
|
619
660
|
*
|
|
@@ -625,7 +666,7 @@ declare namespace sap {
|
|
|
625
666
|
*/
|
|
626
667
|
getIconAlt(): string;
|
|
627
668
|
/**
|
|
628
|
-
* @
|
|
669
|
+
* @experimental (since 1.83) - this feature is experimental and the API may change.
|
|
629
670
|
*
|
|
630
671
|
* Gets current value of property {@link #getIconBackgroundColor iconBackgroundColor}.
|
|
631
672
|
*
|
|
@@ -667,7 +708,7 @@ declare namespace sap {
|
|
|
667
708
|
*/
|
|
668
709
|
getIconSrc(): sap.ui.core.URI;
|
|
669
710
|
/**
|
|
670
|
-
* @
|
|
711
|
+
* @experimental (since 1.83) - this feature is experimental and the API may change.
|
|
671
712
|
*
|
|
672
713
|
* Gets current value of property {@link #getIconVisible iconVisible}.
|
|
673
714
|
*
|
|
@@ -699,7 +740,7 @@ declare namespace sap {
|
|
|
699
740
|
*/
|
|
700
741
|
getSubtitle(): string;
|
|
701
742
|
/**
|
|
702
|
-
* @
|
|
743
|
+
* @experimental (since 1.101)
|
|
703
744
|
*
|
|
704
745
|
* Gets current value of property {@link #getSubtitleMaxLines subtitleMaxLines}.
|
|
705
746
|
*
|
|
@@ -721,7 +762,7 @@ declare namespace sap {
|
|
|
721
762
|
*/
|
|
722
763
|
getTitle(): string;
|
|
723
764
|
/**
|
|
724
|
-
* @
|
|
765
|
+
* @experimental (since 1.101)
|
|
725
766
|
*
|
|
726
767
|
* Gets current value of property {@link #getTitleMaxLines titleMaxLines}.
|
|
727
768
|
*
|
|
@@ -733,7 +774,7 @@ declare namespace sap {
|
|
|
733
774
|
*/
|
|
734
775
|
getTitleMaxLines(): int;
|
|
735
776
|
/**
|
|
736
|
-
* @
|
|
777
|
+
* @experimental (since 1.81) - this feature is experimental and the API may change.
|
|
737
778
|
*
|
|
738
779
|
* Sets a new value for property {@link #getIconAlt iconAlt}.
|
|
739
780
|
*
|
|
@@ -752,7 +793,7 @@ declare namespace sap {
|
|
|
752
793
|
sIconAlt?: string
|
|
753
794
|
): this;
|
|
754
795
|
/**
|
|
755
|
-
* @
|
|
796
|
+
* @experimental (since 1.83) - this feature is experimental and the API may change.
|
|
756
797
|
*
|
|
757
798
|
* Sets a new value for property {@link #getIconBackgroundColor iconBackgroundColor}.
|
|
758
799
|
*
|
|
@@ -822,7 +863,7 @@ declare namespace sap {
|
|
|
822
863
|
sIconSrc?: sap.ui.core.URI
|
|
823
864
|
): this;
|
|
824
865
|
/**
|
|
825
|
-
* @
|
|
866
|
+
* @experimental (since 1.83) - this feature is experimental and the API may change.
|
|
826
867
|
*
|
|
827
868
|
* Sets a new value for property {@link #getIconVisible iconVisible}.
|
|
828
869
|
*
|
|
@@ -875,7 +916,7 @@ declare namespace sap {
|
|
|
875
916
|
sSubtitle?: string
|
|
876
917
|
): this;
|
|
877
918
|
/**
|
|
878
|
-
* @
|
|
919
|
+
* @experimental (since 1.101)
|
|
879
920
|
*
|
|
880
921
|
* Sets a new value for property {@link #getSubtitleMaxLines subtitleMaxLines}.
|
|
881
922
|
*
|
|
@@ -911,7 +952,7 @@ declare namespace sap {
|
|
|
911
952
|
sTitle?: string
|
|
912
953
|
): this;
|
|
913
954
|
/**
|
|
914
|
-
* @
|
|
955
|
+
* @experimental (since 1.101)
|
|
915
956
|
*
|
|
916
957
|
* Sets a new value for property {@link #getTitleMaxLines titleMaxLines}.
|
|
917
958
|
*
|
|
@@ -931,7 +972,7 @@ declare namespace sap {
|
|
|
931
972
|
): this;
|
|
932
973
|
}
|
|
933
974
|
/**
|
|
934
|
-
* @
|
|
975
|
+
* @since 1.64
|
|
935
976
|
*
|
|
936
977
|
* Displays general information in the header of the {@link sap.f.Card} and allows the configuration of
|
|
937
978
|
* a numeric value visualization.
|
|
@@ -1088,7 +1129,7 @@ declare namespace sap {
|
|
|
1088
1129
|
oListener?: object
|
|
1089
1130
|
): this;
|
|
1090
1131
|
/**
|
|
1091
|
-
* @
|
|
1132
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1092
1133
|
*
|
|
1093
1134
|
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
1094
1135
|
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
@@ -1108,7 +1149,7 @@ declare namespace sap {
|
|
|
1108
1149
|
}
|
|
1109
1150
|
): void;
|
|
1110
1151
|
/**
|
|
1111
|
-
* @
|
|
1152
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1112
1153
|
*
|
|
1113
1154
|
* Fires event {@link #event:press press} to attached listeners.
|
|
1114
1155
|
*
|
|
@@ -1129,7 +1170,7 @@ declare namespace sap {
|
|
|
1129
1170
|
*/
|
|
1130
1171
|
getDetails(): string;
|
|
1131
1172
|
/**
|
|
1132
|
-
* @
|
|
1173
|
+
* @experimental (since 1.101)
|
|
1133
1174
|
*
|
|
1134
1175
|
* Gets current value of property {@link #getDetailsMaxLines detailsMaxLines}.
|
|
1135
1176
|
*
|
|
@@ -1150,7 +1191,7 @@ declare namespace sap {
|
|
|
1150
1191
|
*/
|
|
1151
1192
|
getNumber(): string;
|
|
1152
1193
|
/**
|
|
1153
|
-
* @
|
|
1194
|
+
* @since 1.109
|
|
1154
1195
|
*
|
|
1155
1196
|
* Gets current value of property {@link #getNumberVisible numberVisible}.
|
|
1156
1197
|
*
|
|
@@ -1189,7 +1230,7 @@ declare namespace sap {
|
|
|
1189
1230
|
*/
|
|
1190
1231
|
getSideIndicatorsAlignment(): sap.f.cards.NumericHeaderSideIndicatorsAlignment;
|
|
1191
1232
|
/**
|
|
1192
|
-
* @
|
|
1233
|
+
* @experimental (since 1.64) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1193
1234
|
* may be done before its official public release. Use at your own discretion.
|
|
1194
1235
|
*
|
|
1195
1236
|
* Gets current value of property {@link #getState state}.
|
|
@@ -1220,7 +1261,7 @@ declare namespace sap {
|
|
|
1220
1261
|
*/
|
|
1221
1262
|
getSubtitle(): string;
|
|
1222
1263
|
/**
|
|
1223
|
-
* @
|
|
1264
|
+
* @experimental (since 1.101)
|
|
1224
1265
|
*
|
|
1225
1266
|
* Gets current value of property {@link #getSubtitleMaxLines subtitleMaxLines}.
|
|
1226
1267
|
*
|
|
@@ -1240,7 +1281,7 @@ declare namespace sap {
|
|
|
1240
1281
|
*/
|
|
1241
1282
|
getTitle(): string;
|
|
1242
1283
|
/**
|
|
1243
|
-
* @
|
|
1284
|
+
* @experimental (since 1.101)
|
|
1244
1285
|
*
|
|
1245
1286
|
* Gets current value of property {@link #getTitleMaxLines titleMaxLines}.
|
|
1246
1287
|
*
|
|
@@ -1333,7 +1374,7 @@ declare namespace sap {
|
|
|
1333
1374
|
sDetails: string
|
|
1334
1375
|
): this;
|
|
1335
1376
|
/**
|
|
1336
|
-
* @
|
|
1377
|
+
* @experimental (since 1.101)
|
|
1337
1378
|
*
|
|
1338
1379
|
* Sets a new value for property {@link #getDetailsMaxLines detailsMaxLines}.
|
|
1339
1380
|
*
|
|
@@ -1368,7 +1409,7 @@ declare namespace sap {
|
|
|
1368
1409
|
sNumber: string
|
|
1369
1410
|
): this;
|
|
1370
1411
|
/**
|
|
1371
|
-
* @
|
|
1412
|
+
* @since 1.109
|
|
1372
1413
|
*
|
|
1373
1414
|
* Sets a new value for property {@link #getNumberVisible numberVisible}.
|
|
1374
1415
|
*
|
|
@@ -1421,7 +1462,7 @@ declare namespace sap {
|
|
|
1421
1462
|
sSideIndicatorsAlignment?: sap.f.cards.NumericHeaderSideIndicatorsAlignment
|
|
1422
1463
|
): this;
|
|
1423
1464
|
/**
|
|
1424
|
-
* @
|
|
1465
|
+
* @experimental (since 1.64) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1425
1466
|
* may be done before its official public release. Use at your own discretion.
|
|
1426
1467
|
*
|
|
1427
1468
|
* Sets a new value for property {@link #getState state}.
|
|
@@ -1473,7 +1514,7 @@ declare namespace sap {
|
|
|
1473
1514
|
sSubtitle: string
|
|
1474
1515
|
): this;
|
|
1475
1516
|
/**
|
|
1476
|
-
* @
|
|
1517
|
+
* @experimental (since 1.101)
|
|
1477
1518
|
*
|
|
1478
1519
|
* Sets a new value for property {@link #getSubtitleMaxLines subtitleMaxLines}.
|
|
1479
1520
|
*
|
|
@@ -1507,7 +1548,7 @@ declare namespace sap {
|
|
|
1507
1548
|
sTitle: string
|
|
1508
1549
|
): this;
|
|
1509
1550
|
/**
|
|
1510
|
-
* @
|
|
1551
|
+
* @experimental (since 1.101)
|
|
1511
1552
|
*
|
|
1512
1553
|
* Sets a new value for property {@link #getTitleMaxLines titleMaxLines}.
|
|
1513
1554
|
*
|
|
@@ -1559,7 +1600,7 @@ declare namespace sap {
|
|
|
1559
1600
|
): this;
|
|
1560
1601
|
}
|
|
1561
1602
|
/**
|
|
1562
|
-
* @
|
|
1603
|
+
* @since 1.64
|
|
1563
1604
|
*
|
|
1564
1605
|
* Holds a set of side indicator attributes used in the {@link sap.f.cards.NumericHeader} control.
|
|
1565
1606
|
*/
|
|
@@ -1633,7 +1674,7 @@ declare namespace sap {
|
|
|
1633
1674
|
*/
|
|
1634
1675
|
getNumber(): string;
|
|
1635
1676
|
/**
|
|
1636
|
-
* @
|
|
1677
|
+
* @experimental (since 1.95) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1637
1678
|
* may be done before its official public release. Use at your own discretion.
|
|
1638
1679
|
*
|
|
1639
1680
|
* Gets current value of property {@link #getState state}.
|
|
@@ -1673,7 +1714,7 @@ declare namespace sap {
|
|
|
1673
1714
|
sValue: string
|
|
1674
1715
|
): this;
|
|
1675
1716
|
/**
|
|
1676
|
-
* @
|
|
1717
|
+
* @experimental (since 1.95) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1677
1718
|
* may be done before its official public release. Use at your own discretion.
|
|
1678
1719
|
*
|
|
1679
1720
|
* Sets a new value for property {@link #getState state}.
|
|
@@ -1716,7 +1757,7 @@ declare namespace sap {
|
|
|
1716
1757
|
): this;
|
|
1717
1758
|
}
|
|
1718
1759
|
/**
|
|
1719
|
-
* @
|
|
1760
|
+
* @since 1.65
|
|
1720
1761
|
*
|
|
1721
1762
|
* Different options for the position of the header in controls that implement the {@link sap.f.ICard} interface.
|
|
1722
1763
|
*/
|
|
@@ -1731,7 +1772,7 @@ declare namespace sap {
|
|
|
1731
1772
|
Top = "Top",
|
|
1732
1773
|
}
|
|
1733
1774
|
/**
|
|
1734
|
-
* @
|
|
1775
|
+
* @since 1.96
|
|
1735
1776
|
*
|
|
1736
1777
|
* Different options for the alignment of the side indicators in the numeric header.
|
|
1737
1778
|
*/
|
|
@@ -1745,11 +1786,15 @@ declare namespace sap {
|
|
|
1745
1786
|
*/
|
|
1746
1787
|
End = "End",
|
|
1747
1788
|
}
|
|
1789
|
+
|
|
1790
|
+
type Header$PressEvent = sap.ui.base.Event<Header$PressEventParameters>;
|
|
1791
|
+
|
|
1792
|
+
type NumericHeader$PressEvent = sap.ui.base.Event<NumericHeader$PressEventParameters>;
|
|
1748
1793
|
}
|
|
1749
1794
|
|
|
1750
1795
|
namespace dnd {
|
|
1751
1796
|
/**
|
|
1752
|
-
* @
|
|
1797
|
+
* @since 1.68
|
|
1753
1798
|
*
|
|
1754
1799
|
* Interface that should be implemented by grid controls, if they are working with the `sap.f.dnd.GridDropInfo`.
|
|
1755
1800
|
*
|
|
@@ -1783,8 +1828,8 @@ declare namespace sap {
|
|
|
1783
1828
|
}
|
|
1784
1829
|
|
|
1785
1830
|
/**
|
|
1786
|
-
* @
|
|
1787
|
-
* @
|
|
1831
|
+
* @since 1.68
|
|
1832
|
+
* @experimental (since 1.68) - This class is experimental. The API may change.
|
|
1788
1833
|
*
|
|
1789
1834
|
* Provides enhanced configuration for drop operations inside grid-based controls.
|
|
1790
1835
|
*
|
|
@@ -2075,7 +2120,7 @@ declare namespace sap {
|
|
|
2075
2120
|
|
|
2076
2121
|
namespace routing {
|
|
2077
2122
|
/**
|
|
2078
|
-
* @
|
|
2123
|
+
* @since 1.46
|
|
2079
2124
|
*
|
|
2080
2125
|
* The `sap.f.routing.Router` class is intended to be used with `{@link sap.f.FlexibleColumnLayout}` as
|
|
2081
2126
|
* a root control.
|
|
@@ -2147,7 +2192,7 @@ declare namespace sap {
|
|
|
2147
2192
|
getTargetHandler(): sap.f.routing.TargetHandler;
|
|
2148
2193
|
}
|
|
2149
2194
|
/**
|
|
2150
|
-
* @
|
|
2195
|
+
* @since 1.46
|
|
2151
2196
|
*
|
|
2152
2197
|
* Used for closing dialogs and showing transitions in `NavContainers` when targets are displayed.
|
|
2153
2198
|
*
|
|
@@ -2221,7 +2266,7 @@ declare namespace sap {
|
|
|
2221
2266
|
): this;
|
|
2222
2267
|
}
|
|
2223
2268
|
/**
|
|
2224
|
-
* @
|
|
2269
|
+
* @since 1.46
|
|
2225
2270
|
*
|
|
2226
2271
|
* Provides a convenient way for placing views into the correct containers of your app.
|
|
2227
2272
|
*
|
|
@@ -2788,7 +2833,7 @@ declare namespace sap {
|
|
|
2788
2833
|
| `{${string}}`;
|
|
2789
2834
|
|
|
2790
2835
|
/**
|
|
2791
|
-
* @
|
|
2836
|
+
* @since 1.52
|
|
2792
2837
|
* @deprecated (since 1.58) - Please use the `titleAreaShrinkRatio` property instead. The value of `titleAreaShrinkRatio`
|
|
2793
2838
|
* must be set in `Heading:Content:Actions` format where Heading, Content and Actions are numbers greater
|
|
2794
2839
|
* than or equal to 0. The greater value a section has the faster it shrinks when the screen size is being
|
|
@@ -2810,7 +2855,7 @@ declare namespace sap {
|
|
|
2810
2855
|
| `{${string}}`;
|
|
2811
2856
|
|
|
2812
2857
|
/**
|
|
2813
|
-
* @
|
|
2858
|
+
* @since 1.58
|
|
2814
2859
|
*
|
|
2815
2860
|
* Assigns shrinking ratio to the `SemanticPage` title areas (Heading, Content, Actions). The greater value
|
|
2816
2861
|
* a section has the faster it shrinks when the screen size is being reduced.
|
|
@@ -2831,7 +2876,7 @@ declare namespace sap {
|
|
|
2831
2876
|
| `{${string}}`;
|
|
2832
2877
|
|
|
2833
2878
|
/**
|
|
2834
|
-
* @
|
|
2879
|
+
* @since 1.73
|
|
2835
2880
|
*
|
|
2836
2881
|
* Optimizes `SemanticPage` responsiveness on small screens and behavior when expanding/collapsing the `SemanticPageHeader`.
|
|
2837
2882
|
*
|
|
@@ -2862,7 +2907,7 @@ declare namespace sap {
|
|
|
2862
2907
|
titleHeading?: sap.ui.core.Control;
|
|
2863
2908
|
|
|
2864
2909
|
/**
|
|
2865
|
-
* @
|
|
2910
|
+
* @since 1.58
|
|
2866
2911
|
*
|
|
2867
2912
|
* The `titleExpandedHeading` is positioned in the `SemanticPage` title left area and is displayed when
|
|
2868
2913
|
* the header is in expanded state only. Use this aggregation to display a title (or any other UI5 control
|
|
@@ -2875,7 +2920,7 @@ declare namespace sap {
|
|
|
2875
2920
|
titleExpandedHeading?: sap.ui.core.Control;
|
|
2876
2921
|
|
|
2877
2922
|
/**
|
|
2878
|
-
* @
|
|
2923
|
+
* @since 1.58
|
|
2879
2924
|
*
|
|
2880
2925
|
* The `titleSnappedHeading` is positioned in the `SemanticPage` title left area and is displayed when the
|
|
2881
2926
|
* header is in collapsed (snapped) state only. Use this aggregation to display a title (or any other UI5
|
|
@@ -2891,7 +2936,7 @@ declare namespace sap {
|
|
|
2891
2936
|
titleSnappedHeading?: sap.ui.core.Control;
|
|
2892
2937
|
|
|
2893
2938
|
/**
|
|
2894
|
-
* @
|
|
2939
|
+
* @since 1.52
|
|
2895
2940
|
*
|
|
2896
2941
|
* The `SemanticPage` breadcrumbs.
|
|
2897
2942
|
*
|
|
@@ -2907,7 +2952,7 @@ declare namespace sap {
|
|
|
2907
2952
|
titleBreadcrumbs?: sap.m.IBreadcrumbs;
|
|
2908
2953
|
|
|
2909
2954
|
/**
|
|
2910
|
-
* @
|
|
2955
|
+
* @since 1.63
|
|
2911
2956
|
*
|
|
2912
2957
|
* The only content that is displayed in the `SemanticPage` title when it is viewed on a phone mobile device
|
|
2913
2958
|
* and the `SemanticPage` header is in collapsed (snapped) state.
|
|
@@ -2948,7 +2993,7 @@ declare namespace sap {
|
|
|
2948
2993
|
| `{${string}}`;
|
|
2949
2994
|
|
|
2950
2995
|
/**
|
|
2951
|
-
* @
|
|
2996
|
+
* @since 1.52
|
|
2952
2997
|
*
|
|
2953
2998
|
* The content, displayed in the title.
|
|
2954
2999
|
*
|
|
@@ -2974,7 +3019,7 @@ declare namespace sap {
|
|
|
2974
3019
|
titleMainAction?: sap.f.semantic.TitleMainAction;
|
|
2975
3020
|
|
|
2976
3021
|
/**
|
|
2977
|
-
* @
|
|
3022
|
+
* @since 1.50
|
|
2978
3023
|
*
|
|
2979
3024
|
* A semantic-specific button which is placed in the `TextActions` area of the `SemanticPage` title.
|
|
2980
3025
|
*
|
|
@@ -3233,7 +3278,7 @@ declare namespace sap {
|
|
|
3233
3278
|
| `{${string}}`;
|
|
3234
3279
|
|
|
3235
3280
|
/**
|
|
3236
|
-
* @
|
|
3281
|
+
* @since 1.61
|
|
3237
3282
|
*
|
|
3238
3283
|
* Accessible landmark settings to be applied to the containers of the `sap.f.SemanticPage` control.
|
|
3239
3284
|
*
|
|
@@ -3258,7 +3303,7 @@ declare namespace sap {
|
|
|
3258
3303
|
extends sap.f.semantic.$MainActionSettings {}
|
|
3259
3304
|
|
|
3260
3305
|
/**
|
|
3261
|
-
* @
|
|
3306
|
+
* @since 1.46.0
|
|
3262
3307
|
*
|
|
3263
3308
|
* A semantic-specific button, eligible for the `addAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3264
3309
|
* to be placed in its title.
|
|
@@ -3334,7 +3379,7 @@ declare namespace sap {
|
|
|
3334
3379
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3335
3380
|
}
|
|
3336
3381
|
/**
|
|
3337
|
-
* @
|
|
3382
|
+
* @since 1.46.0
|
|
3338
3383
|
*
|
|
3339
3384
|
* A semantic-specific button, eligible for the `closeAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3340
3385
|
* to be placed in its title.
|
|
@@ -3410,7 +3455,7 @@ declare namespace sap {
|
|
|
3410
3455
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3411
3456
|
}
|
|
3412
3457
|
/**
|
|
3413
|
-
* @
|
|
3458
|
+
* @since 1.46.0
|
|
3414
3459
|
*
|
|
3415
3460
|
* A semantic-specific button, eligible for the `copyAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3416
3461
|
* to be placed in its title.
|
|
@@ -3486,7 +3531,7 @@ declare namespace sap {
|
|
|
3486
3531
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3487
3532
|
}
|
|
3488
3533
|
/**
|
|
3489
|
-
* @
|
|
3534
|
+
* @since 1.46.0
|
|
3490
3535
|
*
|
|
3491
3536
|
* A semantic-specific button, eligible for the `deleteAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3492
3537
|
* to be placed in its title.
|
|
@@ -3562,7 +3607,7 @@ declare namespace sap {
|
|
|
3562
3607
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3563
3608
|
}
|
|
3564
3609
|
/**
|
|
3565
|
-
* @
|
|
3610
|
+
* @since 1.46.0
|
|
3566
3611
|
*
|
|
3567
3612
|
* A semantic-specific button, eligible for the `discussInJamAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3568
3613
|
* to be placed in the share menu within its title.
|
|
@@ -3638,7 +3683,7 @@ declare namespace sap {
|
|
|
3638
3683
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3639
3684
|
}
|
|
3640
3685
|
/**
|
|
3641
|
-
* @
|
|
3686
|
+
* @since 1.50
|
|
3642
3687
|
*
|
|
3643
3688
|
* A semantic-specific button, eligible for the `editAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3644
3689
|
* to be placed in its title.
|
|
@@ -3714,7 +3759,7 @@ declare namespace sap {
|
|
|
3714
3759
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3715
3760
|
}
|
|
3716
3761
|
/**
|
|
3717
|
-
* @
|
|
3762
|
+
* @since 1.46.0
|
|
3718
3763
|
*
|
|
3719
3764
|
* A semantic-specific button, eligible for the `exitFullScreenAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3720
3765
|
* to be placed in its title.
|
|
@@ -3790,7 +3835,7 @@ declare namespace sap {
|
|
|
3790
3835
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3791
3836
|
}
|
|
3792
3837
|
/**
|
|
3793
|
-
* @
|
|
3838
|
+
* @since 1.46.0
|
|
3794
3839
|
*
|
|
3795
3840
|
* A semantic-specific button, eligible for the `favoriteAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3796
3841
|
* to be placed in its title.
|
|
@@ -3866,7 +3911,7 @@ declare namespace sap {
|
|
|
3866
3911
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3867
3912
|
}
|
|
3868
3913
|
/**
|
|
3869
|
-
* @
|
|
3914
|
+
* @since 1.46.0
|
|
3870
3915
|
*
|
|
3871
3916
|
* A semantic-specific button, eligible for the `flagAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3872
3917
|
* to be placed in its title.
|
|
@@ -3942,7 +3987,7 @@ declare namespace sap {
|
|
|
3942
3987
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3943
3988
|
}
|
|
3944
3989
|
/**
|
|
3945
|
-
* @
|
|
3990
|
+
* @since 1.46.0
|
|
3946
3991
|
*
|
|
3947
3992
|
* A semantic-specific button, eligible for the `footerMainAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
3948
3993
|
* to be placed in its footer.
|
|
@@ -4018,7 +4063,7 @@ declare namespace sap {
|
|
|
4018
4063
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4019
4064
|
}
|
|
4020
4065
|
/**
|
|
4021
|
-
* @
|
|
4066
|
+
* @since 1.46.0
|
|
4022
4067
|
*
|
|
4023
4068
|
* A semantic-specific button, eligible for the `fullScreenAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
4024
4069
|
* to be placed in its title.
|
|
@@ -4094,7 +4139,7 @@ declare namespace sap {
|
|
|
4094
4139
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4095
4140
|
}
|
|
4096
4141
|
/**
|
|
4097
|
-
* @
|
|
4142
|
+
* @since 1.46.0
|
|
4098
4143
|
*
|
|
4099
4144
|
* Serves as a base class for the {@link sap.f.semantic.TitleMainAction} and {@link sap.f.semantic.FooterMainAction }
|
|
4100
4145
|
* controls.
|
|
@@ -4187,7 +4232,7 @@ declare namespace sap {
|
|
|
4187
4232
|
): this;
|
|
4188
4233
|
}
|
|
4189
4234
|
/**
|
|
4190
|
-
* @
|
|
4235
|
+
* @since 1.46.0
|
|
4191
4236
|
*
|
|
4192
4237
|
* A semantic-specific button, eligible for the `messagesIndicator` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
4193
4238
|
* to be placed in its footer.
|
|
@@ -4263,7 +4308,7 @@ declare namespace sap {
|
|
|
4263
4308
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4264
4309
|
}
|
|
4265
4310
|
/**
|
|
4266
|
-
* @
|
|
4311
|
+
* @since 1.46.0
|
|
4267
4312
|
*
|
|
4268
4313
|
* A semantic-specific button, eligible for the `negativeAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
4269
4314
|
* to be placed in its footer.
|
|
@@ -4356,7 +4401,7 @@ declare namespace sap {
|
|
|
4356
4401
|
): this;
|
|
4357
4402
|
}
|
|
4358
4403
|
/**
|
|
4359
|
-
* @
|
|
4404
|
+
* @since 1.46.0
|
|
4360
4405
|
*
|
|
4361
4406
|
* A semantic-specific button, eligible for the `positiveAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
4362
4407
|
* to be placed in its footer.
|
|
@@ -4449,7 +4494,7 @@ declare namespace sap {
|
|
|
4449
4494
|
): this;
|
|
4450
4495
|
}
|
|
4451
4496
|
/**
|
|
4452
|
-
* @
|
|
4497
|
+
* @since 1.46.0
|
|
4453
4498
|
*
|
|
4454
4499
|
* A semantic-specific button, eligible for the `printAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
4455
4500
|
* to be placed in the share menu within its title.
|
|
@@ -4525,7 +4570,7 @@ declare namespace sap {
|
|
|
4525
4570
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4526
4571
|
}
|
|
4527
4572
|
/**
|
|
4528
|
-
* @
|
|
4573
|
+
* @since 1.46.0
|
|
4529
4574
|
*
|
|
4530
4575
|
* A base class for the available semantic actions, such as {@link sap.f.semantic.AddAction AddAction},
|
|
4531
4576
|
* {@link sap.f.semantic.CloseAction CloseAction}, etc.
|
|
@@ -4599,7 +4644,7 @@ declare namespace sap {
|
|
|
4599
4644
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4600
4645
|
}
|
|
4601
4646
|
/**
|
|
4602
|
-
* @
|
|
4647
|
+
* @since 1.46.0
|
|
4603
4648
|
*
|
|
4604
4649
|
* The base class for the {@link sap.f.semantic.SemanticButton}.
|
|
4605
4650
|
*/
|
|
@@ -4693,7 +4738,7 @@ declare namespace sap {
|
|
|
4693
4738
|
): this;
|
|
4694
4739
|
}
|
|
4695
4740
|
/**
|
|
4696
|
-
* @
|
|
4741
|
+
* @since 1.46.0
|
|
4697
4742
|
*
|
|
4698
4743
|
* Provides enhanced functionality by internally aggregating {@link sap.f.DynamicPage} and contains controls
|
|
4699
4744
|
* with semantic-specific meaning.
|
|
@@ -4850,7 +4895,7 @@ declare namespace sap {
|
|
|
4850
4895
|
oHeaderContent: sap.ui.core.Control
|
|
4851
4896
|
): this;
|
|
4852
4897
|
/**
|
|
4853
|
-
* @
|
|
4898
|
+
* @since 1.52
|
|
4854
4899
|
*
|
|
4855
4900
|
* Adds some titleContent to the aggregation {@link #getTitleContent titleContent}.
|
|
4856
4901
|
*
|
|
@@ -4955,7 +5000,7 @@ declare namespace sap {
|
|
|
4955
5000
|
*/
|
|
4956
5001
|
destroyDraftIndicator(): this;
|
|
4957
5002
|
/**
|
|
4958
|
-
* @
|
|
5003
|
+
* @since 1.50
|
|
4959
5004
|
*
|
|
4960
5005
|
* Destroys the editAction in the aggregation {@link #getEditAction editAction}.
|
|
4961
5006
|
*
|
|
@@ -5005,7 +5050,7 @@ declare namespace sap {
|
|
|
5005
5050
|
*/
|
|
5006
5051
|
destroyHeaderContent(): this;
|
|
5007
5052
|
/**
|
|
5008
|
-
* @
|
|
5053
|
+
* @since 1.61
|
|
5009
5054
|
*
|
|
5010
5055
|
* Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
5011
5056
|
*
|
|
@@ -5061,7 +5106,7 @@ declare namespace sap {
|
|
|
5061
5106
|
*/
|
|
5062
5107
|
destroyShareInJamAction(): this;
|
|
5063
5108
|
/**
|
|
5064
|
-
* @
|
|
5109
|
+
* @since 1.52
|
|
5065
5110
|
*
|
|
5066
5111
|
* Destroys the titleBreadcrumbs in the aggregation {@link #getTitleBreadcrumbs titleBreadcrumbs}.
|
|
5067
5112
|
*
|
|
@@ -5069,7 +5114,7 @@ declare namespace sap {
|
|
|
5069
5114
|
*/
|
|
5070
5115
|
destroyTitleBreadcrumbs(): this;
|
|
5071
5116
|
/**
|
|
5072
|
-
* @
|
|
5117
|
+
* @since 1.52
|
|
5073
5118
|
*
|
|
5074
5119
|
* Destroys all the titleContent in the aggregation {@link #getTitleContent titleContent}.
|
|
5075
5120
|
*
|
|
@@ -5095,7 +5140,7 @@ declare namespace sap {
|
|
|
5095
5140
|
*/
|
|
5096
5141
|
destroyTitleExpandedContent(): this;
|
|
5097
5142
|
/**
|
|
5098
|
-
* @
|
|
5143
|
+
* @since 1.58
|
|
5099
5144
|
*
|
|
5100
5145
|
* Destroys the titleExpandedHeading in the aggregation {@link #getTitleExpandedHeading titleExpandedHeading}.
|
|
5101
5146
|
*
|
|
@@ -5121,7 +5166,7 @@ declare namespace sap {
|
|
|
5121
5166
|
*/
|
|
5122
5167
|
destroyTitleSnappedContent(): this;
|
|
5123
5168
|
/**
|
|
5124
|
-
* @
|
|
5169
|
+
* @since 1.58
|
|
5125
5170
|
*
|
|
5126
5171
|
* Destroys the titleSnappedHeading in the aggregation {@link #getTitleSnappedHeading titleSnappedHeading}.
|
|
5127
5172
|
*
|
|
@@ -5129,7 +5174,7 @@ declare namespace sap {
|
|
|
5129
5174
|
*/
|
|
5130
5175
|
destroyTitleSnappedHeading(): this;
|
|
5131
5176
|
/**
|
|
5132
|
-
* @
|
|
5177
|
+
* @since 1.63
|
|
5133
5178
|
*
|
|
5134
5179
|
* Destroys the titleSnappedOnMobile in the aggregation {@link #getTitleSnappedOnMobile titleSnappedOnMobile}.
|
|
5135
5180
|
*
|
|
@@ -5231,7 +5276,7 @@ declare namespace sap {
|
|
|
5231
5276
|
*/
|
|
5232
5277
|
getDraftIndicator(): sap.m.DraftIndicator;
|
|
5233
5278
|
/**
|
|
5234
|
-
* @
|
|
5279
|
+
* @since 1.50
|
|
5235
5280
|
*
|
|
5236
5281
|
* Gets content of aggregation {@link #getEditAction editAction}.
|
|
5237
5282
|
*
|
|
@@ -5263,7 +5308,7 @@ declare namespace sap {
|
|
|
5263
5308
|
*/
|
|
5264
5309
|
getFavoriteAction(): sap.f.semantic.FavoriteAction;
|
|
5265
5310
|
/**
|
|
5266
|
-
* @
|
|
5311
|
+
* @since 1.73
|
|
5267
5312
|
*
|
|
5268
5313
|
* Gets current value of property {@link #getFitContent fitContent}.
|
|
5269
5314
|
*
|
|
@@ -5348,7 +5393,7 @@ declare namespace sap {
|
|
|
5348
5393
|
*/
|
|
5349
5394
|
getHeaderPinnable(): boolean;
|
|
5350
5395
|
/**
|
|
5351
|
-
* @
|
|
5396
|
+
* @since 1.61
|
|
5352
5397
|
*
|
|
5353
5398
|
* Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
5354
5399
|
*
|
|
@@ -5456,7 +5501,7 @@ declare namespace sap {
|
|
|
5456
5501
|
*/
|
|
5457
5502
|
getShowFooter(): boolean;
|
|
5458
5503
|
/**
|
|
5459
|
-
* @
|
|
5504
|
+
* @since 1.58
|
|
5460
5505
|
*
|
|
5461
5506
|
* Gets current value of property {@link #getTitleAreaShrinkRatio titleAreaShrinkRatio}.
|
|
5462
5507
|
*
|
|
@@ -5479,7 +5524,7 @@ declare namespace sap {
|
|
|
5479
5524
|
*/
|
|
5480
5525
|
getTitleAreaShrinkRatio(): sap.f.DynamicPageTitleShrinkRatio;
|
|
5481
5526
|
/**
|
|
5482
|
-
* @
|
|
5527
|
+
* @since 1.52
|
|
5483
5528
|
*
|
|
5484
5529
|
* Gets content of aggregation {@link #getTitleBreadcrumbs titleBreadcrumbs}.
|
|
5485
5530
|
*
|
|
@@ -5496,7 +5541,7 @@ declare namespace sap {
|
|
|
5496
5541
|
*/
|
|
5497
5542
|
getTitleBreadcrumbs(): sap.m.IBreadcrumbs;
|
|
5498
5543
|
/**
|
|
5499
|
-
* @
|
|
5544
|
+
* @since 1.52
|
|
5500
5545
|
*
|
|
5501
5546
|
* Gets content of aggregation {@link #getTitleContent titleContent}.
|
|
5502
5547
|
*
|
|
@@ -5543,7 +5588,7 @@ declare namespace sap {
|
|
|
5543
5588
|
*/
|
|
5544
5589
|
getTitleExpandedContent(): sap.ui.core.Control[];
|
|
5545
5590
|
/**
|
|
5546
|
-
* @
|
|
5591
|
+
* @since 1.58
|
|
5547
5592
|
*
|
|
5548
5593
|
* Gets content of aggregation {@link #getTitleExpandedHeading titleExpandedHeading}.
|
|
5549
5594
|
*
|
|
@@ -5585,7 +5630,7 @@ declare namespace sap {
|
|
|
5585
5630
|
*/
|
|
5586
5631
|
getTitleMainAction(): sap.f.semantic.TitleMainAction;
|
|
5587
5632
|
/**
|
|
5588
|
-
* @
|
|
5633
|
+
* @since 1.52
|
|
5589
5634
|
* @deprecated (since 1.58) - Please use the `titleAreaShrinkRatio` property instead. The value of `titleAreaShrinkRatio`
|
|
5590
5635
|
* must be set in `Heading:Content:Actions` format where Heading, Content and Actions are numbers greater
|
|
5591
5636
|
* than or equal to 0. The greater value a section has the faster it shrinks when the screen size is being
|
|
@@ -5621,7 +5666,7 @@ declare namespace sap {
|
|
|
5621
5666
|
*/
|
|
5622
5667
|
getTitleSnappedContent(): sap.ui.core.Control[];
|
|
5623
5668
|
/**
|
|
5624
|
-
* @
|
|
5669
|
+
* @since 1.58
|
|
5625
5670
|
*
|
|
5626
5671
|
* Gets content of aggregation {@link #getTitleSnappedHeading titleSnappedHeading}.
|
|
5627
5672
|
*
|
|
@@ -5638,7 +5683,7 @@ declare namespace sap {
|
|
|
5638
5683
|
*/
|
|
5639
5684
|
getTitleSnappedHeading(): sap.ui.core.Control;
|
|
5640
5685
|
/**
|
|
5641
|
-
* @
|
|
5686
|
+
* @since 1.63
|
|
5642
5687
|
*
|
|
5643
5688
|
* Gets content of aggregation {@link #getTitleSnappedOnMobile titleSnappedOnMobile}.
|
|
5644
5689
|
*
|
|
@@ -5704,7 +5749,7 @@ declare namespace sap {
|
|
|
5704
5749
|
oHeaderContent: sap.ui.core.Control
|
|
5705
5750
|
): int;
|
|
5706
5751
|
/**
|
|
5707
|
-
* @
|
|
5752
|
+
* @since 1.52
|
|
5708
5753
|
*
|
|
5709
5754
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getTitleContent titleContent}.
|
|
5710
5755
|
* and returns its index if found or -1 otherwise.
|
|
@@ -5817,7 +5862,7 @@ declare namespace sap {
|
|
|
5817
5862
|
iIndex: int
|
|
5818
5863
|
): this;
|
|
5819
5864
|
/**
|
|
5820
|
-
* @
|
|
5865
|
+
* @since 1.52
|
|
5821
5866
|
*
|
|
5822
5867
|
* Inserts a titleContent into the aggregation {@link #getTitleContent titleContent}.
|
|
5823
5868
|
*
|
|
@@ -5928,7 +5973,7 @@ declare namespace sap {
|
|
|
5928
5973
|
*/
|
|
5929
5974
|
removeAllHeaderContent(): sap.ui.core.Control[];
|
|
5930
5975
|
/**
|
|
5931
|
-
* @
|
|
5976
|
+
* @since 1.52
|
|
5932
5977
|
*
|
|
5933
5978
|
* Removes all the controls from the aggregation {@link #getTitleContent titleContent}.
|
|
5934
5979
|
*
|
|
@@ -6003,7 +6048,7 @@ declare namespace sap {
|
|
|
6003
6048
|
vHeaderContent: int | string | sap.ui.core.Control
|
|
6004
6049
|
): sap.ui.core.Control | null;
|
|
6005
6050
|
/**
|
|
6006
|
-
* @
|
|
6051
|
+
* @since 1.52
|
|
6007
6052
|
*
|
|
6008
6053
|
* Removes a titleContent from the aggregation {@link #getTitleContent titleContent}.
|
|
6009
6054
|
*
|
|
@@ -6137,7 +6182,7 @@ declare namespace sap {
|
|
|
6137
6182
|
oDraftIndicator: sap.m.DraftIndicator
|
|
6138
6183
|
): this;
|
|
6139
6184
|
/**
|
|
6140
|
-
* @
|
|
6185
|
+
* @since 1.50
|
|
6141
6186
|
*
|
|
6142
6187
|
* Sets the aggregated {@link #getEditAction editAction}.
|
|
6143
6188
|
*
|
|
@@ -6172,7 +6217,7 @@ declare namespace sap {
|
|
|
6172
6217
|
oFavoriteAction: sap.f.semantic.FavoriteAction
|
|
6173
6218
|
): this;
|
|
6174
6219
|
/**
|
|
6175
|
-
* @
|
|
6220
|
+
* @since 1.73
|
|
6176
6221
|
*
|
|
6177
6222
|
* Sets a new value for property {@link #getFitContent fitContent}.
|
|
6178
6223
|
*
|
|
@@ -6268,7 +6313,7 @@ declare namespace sap {
|
|
|
6268
6313
|
bHeaderPinnable?: boolean
|
|
6269
6314
|
): this;
|
|
6270
6315
|
/**
|
|
6271
|
-
* @
|
|
6316
|
+
* @since 1.61
|
|
6272
6317
|
*
|
|
6273
6318
|
* Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
|
|
6274
6319
|
*
|
|
@@ -6410,7 +6455,7 @@ declare namespace sap {
|
|
|
6410
6455
|
bShowFooter?: boolean
|
|
6411
6456
|
): this;
|
|
6412
6457
|
/**
|
|
6413
|
-
* @
|
|
6458
|
+
* @since 1.58
|
|
6414
6459
|
*
|
|
6415
6460
|
* Sets a new value for property {@link #getTitleAreaShrinkRatio titleAreaShrinkRatio}.
|
|
6416
6461
|
*
|
|
@@ -6440,7 +6485,7 @@ declare namespace sap {
|
|
|
6440
6485
|
sTitleAreaShrinkRatio?: sap.f.DynamicPageTitleShrinkRatio
|
|
6441
6486
|
): this;
|
|
6442
6487
|
/**
|
|
6443
|
-
* @
|
|
6488
|
+
* @since 1.52
|
|
6444
6489
|
*
|
|
6445
6490
|
* Sets the aggregated {@link #getTitleBreadcrumbs titleBreadcrumbs}.
|
|
6446
6491
|
*
|
|
@@ -6453,7 +6498,7 @@ declare namespace sap {
|
|
|
6453
6498
|
oTitleBreadcrumbs: sap.m.IBreadcrumbs
|
|
6454
6499
|
): this;
|
|
6455
6500
|
/**
|
|
6456
|
-
* @
|
|
6501
|
+
* @since 1.58
|
|
6457
6502
|
*
|
|
6458
6503
|
* Sets the aggregated {@link #getTitleExpandedHeading titleExpandedHeading}.
|
|
6459
6504
|
*
|
|
@@ -6488,7 +6533,7 @@ declare namespace sap {
|
|
|
6488
6533
|
oTitleMainAction: sap.f.semantic.TitleMainAction
|
|
6489
6534
|
): this;
|
|
6490
6535
|
/**
|
|
6491
|
-
* @
|
|
6536
|
+
* @since 1.58
|
|
6492
6537
|
*
|
|
6493
6538
|
* Sets the aggregated {@link #getTitleSnappedHeading titleSnappedHeading}.
|
|
6494
6539
|
*
|
|
@@ -6501,7 +6546,7 @@ declare namespace sap {
|
|
|
6501
6546
|
oTitleSnappedHeading: sap.ui.core.Control
|
|
6502
6547
|
): this;
|
|
6503
6548
|
/**
|
|
6504
|
-
* @
|
|
6549
|
+
* @since 1.63
|
|
6505
6550
|
*
|
|
6506
6551
|
* Sets the aggregated {@link #getTitleSnappedOnMobile titleSnappedOnMobile}.
|
|
6507
6552
|
*
|
|
@@ -6536,7 +6581,7 @@ declare namespace sap {
|
|
|
6536
6581
|
): this;
|
|
6537
6582
|
}
|
|
6538
6583
|
/**
|
|
6539
|
-
* @
|
|
6584
|
+
* @since 1.46.0
|
|
6540
6585
|
*
|
|
6541
6586
|
* A base class for the {@link sap.f.semantic.FavoriteAction} and {@link sap.f.semantic.FlagAction}.
|
|
6542
6587
|
*/
|
|
@@ -6609,7 +6654,7 @@ declare namespace sap {
|
|
|
6609
6654
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6610
6655
|
}
|
|
6611
6656
|
/**
|
|
6612
|
-
* @
|
|
6657
|
+
* @since 1.46.0
|
|
6613
6658
|
*
|
|
6614
6659
|
* A semantic-specific button, eligible for the `sendEmailAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
6615
6660
|
* to be placed in the share menu within its title.
|
|
@@ -6685,7 +6730,7 @@ declare namespace sap {
|
|
|
6685
6730
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6686
6731
|
}
|
|
6687
6732
|
/**
|
|
6688
|
-
* @
|
|
6733
|
+
* @since 1.46.0
|
|
6689
6734
|
*
|
|
6690
6735
|
* A semantic-specific button, eligible for the `sendMessageAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
6691
6736
|
* to be placed in the share menu within its title.
|
|
@@ -6761,7 +6806,7 @@ declare namespace sap {
|
|
|
6761
6806
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6762
6807
|
}
|
|
6763
6808
|
/**
|
|
6764
|
-
* @
|
|
6809
|
+
* @since 1.46.0
|
|
6765
6810
|
*
|
|
6766
6811
|
* A semantic-specific button, eligible for the `shareInJamAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
6767
6812
|
* to be placed in the share menu within its title.
|
|
@@ -6837,7 +6882,7 @@ declare namespace sap {
|
|
|
6837
6882
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6838
6883
|
}
|
|
6839
6884
|
/**
|
|
6840
|
-
* @
|
|
6885
|
+
* @since 1.46.0
|
|
6841
6886
|
*
|
|
6842
6887
|
* A semantic-specific button, eligible for the `titleMainAction` aggregation of the {@link sap.f.semantic.SemanticPage }
|
|
6843
6888
|
* to be placed in its title.
|
|
@@ -6914,7 +6959,7 @@ declare namespace sap {
|
|
|
6914
6959
|
}
|
|
6915
6960
|
}
|
|
6916
6961
|
/**
|
|
6917
|
-
* @
|
|
6962
|
+
* @since 1.62
|
|
6918
6963
|
*
|
|
6919
6964
|
* Interface that should be implemented by all card controls.
|
|
6920
6965
|
*/
|
|
@@ -6923,7 +6968,7 @@ declare namespace sap {
|
|
|
6923
6968
|
}
|
|
6924
6969
|
|
|
6925
6970
|
/**
|
|
6926
|
-
* @
|
|
6971
|
+
* @since 1.65
|
|
6927
6972
|
*
|
|
6928
6973
|
* Interface for controls suitable for the `stickySubheaderProvider` association of `{@link sap.f.DynamicPage}`.
|
|
6929
6974
|
*
|
|
@@ -6941,8 +6986,8 @@ declare namespace sap {
|
|
|
6941
6986
|
}
|
|
6942
6987
|
|
|
6943
6988
|
/**
|
|
6944
|
-
* @
|
|
6945
|
-
* @
|
|
6989
|
+
* @since 1.63
|
|
6990
|
+
* @experimental (since 1.63) - that provides only limited functionality. Also, it can be removed in future
|
|
6946
6991
|
* versions.
|
|
6947
6992
|
*
|
|
6948
6993
|
* Interface for controls suitable for the `additionalContent` aggregation of `{@link sap.f.ShellBar}`.
|
|
@@ -6971,7 +7016,7 @@ declare namespace sap {
|
|
|
6971
7016
|
| `{${string}}`;
|
|
6972
7017
|
|
|
6973
7018
|
/**
|
|
6974
|
-
* @
|
|
7019
|
+
* @since 1.103
|
|
6975
7020
|
*
|
|
6976
7021
|
* Specifies a custom display size for each avatar.
|
|
6977
7022
|
*
|
|
@@ -6985,7 +7030,7 @@ declare namespace sap {
|
|
|
6985
7030
|
| `{${string}}`;
|
|
6986
7031
|
|
|
6987
7032
|
/**
|
|
6988
|
-
* @
|
|
7033
|
+
* @since 1.103
|
|
6989
7034
|
*
|
|
6990
7035
|
* Specifies a custom font size for each avatar.
|
|
6991
7036
|
*
|
|
@@ -7008,9 +7053,7 @@ declare namespace sap {
|
|
|
7008
7053
|
/**
|
|
7009
7054
|
* Fired when the user clicks or taps on the control.
|
|
7010
7055
|
*/
|
|
7011
|
-
press?: (
|
|
7012
|
-
oEvent: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
|
|
7013
|
-
) => void;
|
|
7056
|
+
press?: (oEvent: AvatarGroup$PressEvent) => void;
|
|
7014
7057
|
}
|
|
7015
7058
|
|
|
7016
7059
|
interface $AvatarGroupItemSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -7039,7 +7082,7 @@ declare namespace sap {
|
|
|
7039
7082
|
|
|
7040
7083
|
interface $CardSettings extends sap.f.$CardBaseSettings {
|
|
7041
7084
|
/**
|
|
7042
|
-
* @
|
|
7085
|
+
* @since 1.65
|
|
7043
7086
|
*
|
|
7044
7087
|
* Defines the position of the Card Header.
|
|
7045
7088
|
*/
|
|
@@ -7105,7 +7148,7 @@ declare namespace sap {
|
|
|
7105
7148
|
| `{${string}}`;
|
|
7106
7149
|
|
|
7107
7150
|
/**
|
|
7108
|
-
* @
|
|
7151
|
+
* @since 1.93
|
|
7109
7152
|
*
|
|
7110
7153
|
* Determines whether the `DynamicPageHeader` is pinned.
|
|
7111
7154
|
*
|
|
@@ -7148,7 +7191,7 @@ declare namespace sap {
|
|
|
7148
7191
|
| `{${string}}`;
|
|
7149
7192
|
|
|
7150
7193
|
/**
|
|
7151
|
-
* @
|
|
7194
|
+
* @since 1.68
|
|
7152
7195
|
*
|
|
7153
7196
|
* Determines the background color of `DynamicPage`.
|
|
7154
7197
|
*/
|
|
@@ -7221,7 +7264,7 @@ declare namespace sap {
|
|
|
7221
7264
|
footer?: sap.m.IBar;
|
|
7222
7265
|
|
|
7223
7266
|
/**
|
|
7224
|
-
* @
|
|
7267
|
+
* @since 1.61
|
|
7225
7268
|
*
|
|
7226
7269
|
* Accessible landmark settings to be applied on the containers of the `sap.f.DynamicPage` control.
|
|
7227
7270
|
*
|
|
@@ -7230,7 +7273,7 @@ declare namespace sap {
|
|
|
7230
7273
|
landmarkInfo?: sap.f.DynamicPageAccessibleLandmarkInfo;
|
|
7231
7274
|
|
|
7232
7275
|
/**
|
|
7233
|
-
* @
|
|
7276
|
+
* @since 1.65
|
|
7234
7277
|
*
|
|
7235
7278
|
* Association of Controls / IDs, that provide sticky subheader content. All controls that provide this
|
|
7236
7279
|
* content have to implement the `sap.f.IDynamicPageStickyContent` interface.
|
|
@@ -7238,13 +7281,11 @@ declare namespace sap {
|
|
|
7238
7281
|
stickySubheaderProvider?: sap.f.IDynamicPageStickyContent | string;
|
|
7239
7282
|
|
|
7240
7283
|
/**
|
|
7241
|
-
* @
|
|
7284
|
+
* @since 1.93
|
|
7242
7285
|
*
|
|
7243
7286
|
* The event is fired when the `headerPinned` property is changed via user interaction.
|
|
7244
7287
|
*/
|
|
7245
|
-
pinnedStateChange?: (
|
|
7246
|
-
oEvent: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
|
|
7247
|
-
) => void;
|
|
7288
|
+
pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
|
|
7248
7289
|
}
|
|
7249
7290
|
|
|
7250
7291
|
interface $DynamicPageAccessibleLandmarkInfoSettings
|
|
@@ -7332,7 +7373,7 @@ declare namespace sap {
|
|
|
7332
7373
|
| `{${string}}`;
|
|
7333
7374
|
|
|
7334
7375
|
/**
|
|
7335
|
-
* @
|
|
7376
|
+
* @since 1.58
|
|
7336
7377
|
*
|
|
7337
7378
|
* Determines the background color of the `DynamicPageHeader`.
|
|
7338
7379
|
*
|
|
@@ -7356,7 +7397,7 @@ declare namespace sap {
|
|
|
7356
7397
|
|
|
7357
7398
|
interface $DynamicPageTitleSettings extends sap.ui.core.$ControlSettings {
|
|
7358
7399
|
/**
|
|
7359
|
-
* @
|
|
7400
|
+
* @since 1.50
|
|
7360
7401
|
* @deprecated (since 1.54) - Please use the `areaShrinkRatio` property instead. The value of `areaShrinkRatio`
|
|
7361
7402
|
* must be set in `Heading:Content:Actions` format where Heading, Content and Actions are numbers greater
|
|
7362
7403
|
* than or equal to 0. The greater value a section has the faster it shrinks when the screen size is being
|
|
@@ -7378,7 +7419,7 @@ declare namespace sap {
|
|
|
7378
7419
|
| `{${string}}`;
|
|
7379
7420
|
|
|
7380
7421
|
/**
|
|
7381
|
-
* @
|
|
7422
|
+
* @since 1.54
|
|
7382
7423
|
*
|
|
7383
7424
|
* Assigns shrinking ratio to the `DynamicPageTitle` areas (Heading, Content, Actions). The greater value
|
|
7384
7425
|
* a section has the faster it shrinks when the screen size is being reduced.
|
|
@@ -7401,7 +7442,7 @@ declare namespace sap {
|
|
|
7401
7442
|
| `{${string}}`;
|
|
7402
7443
|
|
|
7403
7444
|
/**
|
|
7404
|
-
* @
|
|
7445
|
+
* @since 1.58
|
|
7405
7446
|
*
|
|
7406
7447
|
* Determines the background color of the `DynamicPageTitle`.
|
|
7407
7448
|
*
|
|
@@ -7429,7 +7470,7 @@ declare namespace sap {
|
|
|
7429
7470
|
heading?: sap.ui.core.Control;
|
|
7430
7471
|
|
|
7431
7472
|
/**
|
|
7432
|
-
* @
|
|
7473
|
+
* @since 1.52
|
|
7433
7474
|
*
|
|
7434
7475
|
* The `snappedHeading` is positioned in the `DynamicPageTitle` left area and is displayed when the header
|
|
7435
7476
|
* is in collapsed (snapped) state only. Use this aggregation to display a title (or any other UI5 control
|
|
@@ -7445,7 +7486,7 @@ declare namespace sap {
|
|
|
7445
7486
|
snappedHeading?: sap.ui.core.Control;
|
|
7446
7487
|
|
|
7447
7488
|
/**
|
|
7448
|
-
* @
|
|
7489
|
+
* @since 1.52
|
|
7449
7490
|
*
|
|
7450
7491
|
* The `expandedHeading` is positioned in the `DynamicPageTitle` left area and is displayed when the header
|
|
7451
7492
|
* is in expanded state only. Use this aggregation to display a title (or any other UI5 control that serves
|
|
@@ -7472,7 +7513,7 @@ declare namespace sap {
|
|
|
7472
7513
|
| `{${string}}`;
|
|
7473
7514
|
|
|
7474
7515
|
/**
|
|
7475
|
-
* @
|
|
7516
|
+
* @since 1.52
|
|
7476
7517
|
*
|
|
7477
7518
|
* The `DynamicPageTitle` navigation actions.
|
|
7478
7519
|
*
|
|
@@ -7492,7 +7533,7 @@ declare namespace sap {
|
|
|
7492
7533
|
| `{${string}}`;
|
|
7493
7534
|
|
|
7494
7535
|
/**
|
|
7495
|
-
* @
|
|
7536
|
+
* @since 1.50
|
|
7496
7537
|
*
|
|
7497
7538
|
* The content is positioned in the `DynamicPageTitle` middle area and displayed in both expanded and collapsed
|
|
7498
7539
|
* (snapped) states.
|
|
@@ -7530,7 +7571,7 @@ declare namespace sap {
|
|
|
7530
7571
|
| `{${string}}`;
|
|
7531
7572
|
|
|
7532
7573
|
/**
|
|
7533
|
-
* @
|
|
7574
|
+
* @since 1.63
|
|
7534
7575
|
*
|
|
7535
7576
|
* The only content that is displayed in the `DynamicPageTitle` when it is viewed on a phone mobile device
|
|
7536
7577
|
* and the `DynamicPageHeader` is in collapsed (snapped) state.
|
|
@@ -7544,21 +7585,21 @@ declare namespace sap {
|
|
|
7544
7585
|
snappedTitleOnMobile?: sap.m.Title;
|
|
7545
7586
|
|
|
7546
7587
|
/**
|
|
7547
|
-
* @
|
|
7588
|
+
* @since 1.52
|
|
7548
7589
|
*
|
|
7549
7590
|
* The breadcrumbs displayed in the `DynamicPageTitle` top-left area.
|
|
7550
7591
|
*/
|
|
7551
7592
|
breadcrumbs?: sap.m.IBreadcrumbs;
|
|
7552
7593
|
|
|
7553
7594
|
/**
|
|
7554
|
-
* @
|
|
7595
|
+
* @since 1.78
|
|
7555
7596
|
*
|
|
7556
7597
|
* Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
|
|
7557
7598
|
*/
|
|
7558
7599
|
ariaDescribedBy?: Array<sap.ui.core.Control | string>;
|
|
7559
7600
|
|
|
7560
7601
|
/**
|
|
7561
|
-
* @
|
|
7602
|
+
* @since 1.54
|
|
7562
7603
|
*
|
|
7563
7604
|
* Fired when the title state (expanded/collapsed) is toggled by user interaction. For example, scrolling,
|
|
7564
7605
|
* title clicking/tapping, using expand/collapse button.
|
|
@@ -7566,15 +7607,13 @@ declare namespace sap {
|
|
|
7566
7607
|
* Also fired when the developer toggles the title state by programmatically changing the scroll position
|
|
7567
7608
|
* of the scrollbar of `DynamicPage`.
|
|
7568
7609
|
*/
|
|
7569
|
-
stateChange?: (
|
|
7570
|
-
oEvent: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
|
|
7571
|
-
) => void;
|
|
7610
|
+
stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
|
|
7572
7611
|
}
|
|
7573
7612
|
|
|
7574
7613
|
interface $FlexibleColumnLayoutSettings
|
|
7575
7614
|
extends sap.ui.core.$ControlSettings {
|
|
7576
7615
|
/**
|
|
7577
|
-
* @
|
|
7616
|
+
* @since 1.76
|
|
7578
7617
|
*
|
|
7579
7618
|
* Determines whether the initial focus is set automatically on first rendering and after navigating to
|
|
7580
7619
|
* a new page.
|
|
@@ -7625,7 +7664,7 @@ declare namespace sap {
|
|
|
7625
7664
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7626
7665
|
|
|
7627
7666
|
/**
|
|
7628
|
-
* @
|
|
7667
|
+
* @since 1.54
|
|
7629
7668
|
*
|
|
7630
7669
|
* Specifies the background color of the content. The visualization of the different options depends on
|
|
7631
7670
|
* the used theme.
|
|
@@ -7636,7 +7675,7 @@ declare namespace sap {
|
|
|
7636
7675
|
| `{${string}}`;
|
|
7637
7676
|
|
|
7638
7677
|
/**
|
|
7639
|
-
* @
|
|
7678
|
+
* @since 1.77
|
|
7640
7679
|
*
|
|
7641
7680
|
* Determines whether the focus is restored to the last known when navigating back to a prevously opened
|
|
7642
7681
|
* column, for example, upon closing of the end column and being transfered back to the mid column.
|
|
@@ -7686,7 +7725,7 @@ declare namespace sap {
|
|
|
7686
7725
|
| `{${string}}`;
|
|
7687
7726
|
|
|
7688
7727
|
/**
|
|
7689
|
-
* @
|
|
7728
|
+
* @since 1.95
|
|
7690
7729
|
*
|
|
7691
7730
|
* Accessible landmark settings to be applied on the containers of the `sap.f.FlexibleColumnLayout` control.
|
|
7692
7731
|
*
|
|
@@ -7721,9 +7760,7 @@ declare namespace sap {
|
|
|
7721
7760
|
* **Note: **The event is suppressed while the control has zero width and will be fired the first time
|
|
7722
7761
|
* it gets a non-zero width
|
|
7723
7762
|
*/
|
|
7724
|
-
stateChange?: (
|
|
7725
|
-
oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
|
|
7726
|
-
) => void;
|
|
7763
|
+
stateChange?: (oEvent: FlexibleColumnLayout$StateChangeEvent) => void;
|
|
7727
7764
|
|
|
7728
7765
|
/**
|
|
7729
7766
|
* Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
|
|
@@ -7731,7 +7768,7 @@ declare namespace sap {
|
|
|
7731
7768
|
* which means that there will be no navigation.
|
|
7732
7769
|
*/
|
|
7733
7770
|
beginColumnNavigate?: (
|
|
7734
|
-
oEvent:
|
|
7771
|
+
oEvent: FlexibleColumnLayout$BeginColumnNavigateEvent
|
|
7735
7772
|
) => void;
|
|
7736
7773
|
|
|
7737
7774
|
/**
|
|
@@ -7740,7 +7777,7 @@ declare namespace sap {
|
|
|
7740
7777
|
* NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
|
|
7741
7778
|
*/
|
|
7742
7779
|
afterBeginColumnNavigate?: (
|
|
7743
|
-
oEvent:
|
|
7780
|
+
oEvent: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
|
|
7744
7781
|
) => void;
|
|
7745
7782
|
|
|
7746
7783
|
/**
|
|
@@ -7749,7 +7786,7 @@ declare namespace sap {
|
|
|
7749
7786
|
* which means that there will be no navigation.
|
|
7750
7787
|
*/
|
|
7751
7788
|
midColumnNavigate?: (
|
|
7752
|
-
oEvent:
|
|
7789
|
+
oEvent: FlexibleColumnLayout$MidColumnNavigateEvent
|
|
7753
7790
|
) => void;
|
|
7754
7791
|
|
|
7755
7792
|
/**
|
|
@@ -7758,7 +7795,7 @@ declare namespace sap {
|
|
|
7758
7795
|
* NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
|
|
7759
7796
|
*/
|
|
7760
7797
|
afterMidColumnNavigate?: (
|
|
7761
|
-
oEvent:
|
|
7798
|
+
oEvent: FlexibleColumnLayout$AfterMidColumnNavigateEvent
|
|
7762
7799
|
) => void;
|
|
7763
7800
|
|
|
7764
7801
|
/**
|
|
@@ -7767,7 +7804,7 @@ declare namespace sap {
|
|
|
7767
7804
|
* which means that there will be no navigation.
|
|
7768
7805
|
*/
|
|
7769
7806
|
endColumnNavigate?: (
|
|
7770
|
-
oEvent:
|
|
7807
|
+
oEvent: FlexibleColumnLayout$EndColumnNavigateEvent
|
|
7771
7808
|
) => void;
|
|
7772
7809
|
|
|
7773
7810
|
/**
|
|
@@ -7776,17 +7813,15 @@ declare namespace sap {
|
|
|
7776
7813
|
* NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
|
|
7777
7814
|
*/
|
|
7778
7815
|
afterEndColumnNavigate?: (
|
|
7779
|
-
oEvent:
|
|
7816
|
+
oEvent: FlexibleColumnLayout$AfterEndColumnNavigateEvent
|
|
7780
7817
|
) => void;
|
|
7781
7818
|
|
|
7782
7819
|
/**
|
|
7783
|
-
* @
|
|
7820
|
+
* @since 1.76
|
|
7784
7821
|
*
|
|
7785
7822
|
* Fired when resize of each column has completed.
|
|
7786
7823
|
*/
|
|
7787
|
-
columnResize?: (
|
|
7788
|
-
oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
|
|
7789
|
-
) => void;
|
|
7824
|
+
columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
|
|
7790
7825
|
}
|
|
7791
7826
|
|
|
7792
7827
|
interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
@@ -7868,7 +7903,7 @@ declare namespace sap {
|
|
|
7868
7903
|
| `{${string}}`;
|
|
7869
7904
|
|
|
7870
7905
|
/**
|
|
7871
|
-
* @
|
|
7906
|
+
* @experimental (since 1.81) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
7872
7907
|
* may be done before its official public release.
|
|
7873
7908
|
*
|
|
7874
7909
|
* Defines the minimum height of the grid.
|
|
@@ -7900,7 +7935,7 @@ declare namespace sap {
|
|
|
7900
7935
|
| `{${string}}`;
|
|
7901
7936
|
|
|
7902
7937
|
/**
|
|
7903
|
-
* @
|
|
7938
|
+
* @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
7904
7939
|
* may be done before its official public release. Use at your own discretion.
|
|
7905
7940
|
*
|
|
7906
7941
|
* Increases the density when arranging the items. Smaller items will take up all of the available space,
|
|
@@ -7914,7 +7949,7 @@ declare namespace sap {
|
|
|
7914
7949
|
| `{${string}}`;
|
|
7915
7950
|
|
|
7916
7951
|
/**
|
|
7917
|
-
* @
|
|
7952
|
+
* @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
7918
7953
|
* may be done before its official public release. Use at your own discretion.
|
|
7919
7954
|
*
|
|
7920
7955
|
* Makes the grid items act like an inline-block elements. They will be arranged in rows with height equal
|
|
@@ -7949,7 +7984,7 @@ declare namespace sap {
|
|
|
7949
7984
|
layout?: sap.f.GridContainerSettings;
|
|
7950
7985
|
|
|
7951
7986
|
/**
|
|
7952
|
-
* @
|
|
7987
|
+
* @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
7953
7988
|
* may be done before its official public release. Use at your own discretion.
|
|
7954
7989
|
*
|
|
7955
7990
|
* The sap.f.GridContainerSettings applied for size "XS". Range: up to 374px.
|
|
@@ -7989,23 +8024,17 @@ declare namespace sap {
|
|
|
7989
8024
|
/**
|
|
7990
8025
|
* Fired when the currently active GridSettings change.
|
|
7991
8026
|
*/
|
|
7992
|
-
layoutChange?: (
|
|
7993
|
-
oEvent: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
|
|
7994
|
-
) => void;
|
|
8027
|
+
layoutChange?: (oEvent: GridContainer$LayoutChangeEvent) => void;
|
|
7995
8028
|
|
|
7996
8029
|
/**
|
|
7997
8030
|
* Fired when the grid columns count is changed.
|
|
7998
8031
|
*/
|
|
7999
|
-
columnsChange?: (
|
|
8000
|
-
oEvent: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
|
|
8001
|
-
) => void;
|
|
8032
|
+
columnsChange?: (oEvent: GridContainer$ColumnsChangeEvent) => void;
|
|
8002
8033
|
|
|
8003
8034
|
/**
|
|
8004
8035
|
* Fires if the border of the visualizations is reached so that an application can react on this.
|
|
8005
8036
|
*/
|
|
8006
|
-
borderReached?: (
|
|
8007
|
-
oEvent: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
|
|
8008
|
-
) => void;
|
|
8037
|
+
borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
|
|
8009
8038
|
}
|
|
8010
8039
|
|
|
8011
8040
|
interface $GridContainerItemLayoutDataSettings
|
|
@@ -8032,7 +8061,7 @@ declare namespace sap {
|
|
|
8032
8061
|
| `{${string}}`;
|
|
8033
8062
|
|
|
8034
8063
|
/**
|
|
8035
|
-
* @
|
|
8064
|
+
* @experimental (since 1.65) - this property may soon be removed, use minRows instead
|
|
8036
8065
|
*
|
|
8037
8066
|
* Specifies the number of rows, which the item should take.
|
|
8038
8067
|
*/
|
|
@@ -8114,9 +8143,7 @@ declare namespace sap {
|
|
|
8114
8143
|
/**
|
|
8115
8144
|
* Fires if the border of the visualizations is reached so that an application can react on this.
|
|
8116
8145
|
*/
|
|
8117
|
-
borderReached?: (
|
|
8118
|
-
oEvent: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
|
|
8119
|
-
) => void;
|
|
8146
|
+
borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
|
|
8120
8147
|
}
|
|
8121
8148
|
|
|
8122
8149
|
interface $GridListItemSettings extends sap.m.$ListItemBaseSettings {
|
|
@@ -8153,9 +8180,7 @@ declare namespace sap {
|
|
|
8153
8180
|
/**
|
|
8154
8181
|
* Fires when an unselected item is pressed.
|
|
8155
8182
|
*/
|
|
8156
|
-
change?: (
|
|
8157
|
-
oEvent: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
|
|
8158
|
-
) => void;
|
|
8183
|
+
change?: (oEvent: ProductSwitch$ChangeEvent) => void;
|
|
8159
8184
|
}
|
|
8160
8185
|
|
|
8161
8186
|
interface $ProductSwitchItemSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -8252,27 +8277,21 @@ declare namespace sap {
|
|
|
8252
8277
|
/**
|
|
8253
8278
|
* Fired when the user triggers a search.
|
|
8254
8279
|
*/
|
|
8255
|
-
search?: (
|
|
8256
|
-
oEvent: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
|
|
8257
|
-
) => void;
|
|
8280
|
+
search?: (oEvent: SearchManager$SearchEvent) => void;
|
|
8258
8281
|
|
|
8259
8282
|
/**
|
|
8260
8283
|
* Fired when the value of the search field is changed by the user, for example at each key press.
|
|
8261
8284
|
*
|
|
8262
8285
|
* **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
|
|
8263
8286
|
*/
|
|
8264
|
-
liveChange?: (
|
|
8265
|
-
oEvent: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
|
|
8266
|
-
) => void;
|
|
8287
|
+
liveChange?: (oEvent: SearchManager$LiveChangeEvent) => void;
|
|
8267
8288
|
|
|
8268
8289
|
/**
|
|
8269
8290
|
* Fired when the search field is initially focused or its value is changed by the user. This event means
|
|
8270
8291
|
* that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
|
|
8271
8292
|
* new suggestions for it.
|
|
8272
8293
|
*/
|
|
8273
|
-
suggest?: (
|
|
8274
|
-
oEvent: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
|
|
8275
|
-
) => void;
|
|
8294
|
+
suggest?: (oEvent: SearchManager$SuggestEvent) => void;
|
|
8276
8295
|
}
|
|
8277
8296
|
|
|
8278
8297
|
interface $ShellBarSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -8295,7 +8314,7 @@ declare namespace sap {
|
|
|
8295
8314
|
| `{${string}}`;
|
|
8296
8315
|
|
|
8297
8316
|
/**
|
|
8298
|
-
* @
|
|
8317
|
+
* @since 1.67
|
|
8299
8318
|
*
|
|
8300
8319
|
* Defines a custom tooltip for the home icon. If not set, a default tooltip is used.
|
|
8301
8320
|
*/
|
|
@@ -8351,7 +8370,7 @@ declare namespace sap {
|
|
|
8351
8370
|
| `{${string}}`;
|
|
8352
8371
|
|
|
8353
8372
|
/**
|
|
8354
|
-
* @
|
|
8373
|
+
* @since 1.64
|
|
8355
8374
|
*
|
|
8356
8375
|
* Defines the displayed number of upcoming notifications.
|
|
8357
8376
|
*/
|
|
@@ -8365,7 +8384,7 @@ declare namespace sap {
|
|
|
8365
8384
|
menu?: sap.m.Menu;
|
|
8366
8385
|
|
|
8367
8386
|
/**
|
|
8368
|
-
* @
|
|
8387
|
+
* @since 1.67
|
|
8369
8388
|
*
|
|
8370
8389
|
* Configurable search.
|
|
8371
8390
|
*
|
|
@@ -8392,58 +8411,46 @@ declare namespace sap {
|
|
|
8392
8411
|
/**
|
|
8393
8412
|
* Fired when the `homeIcon` is pressed.
|
|
8394
8413
|
*/
|
|
8395
|
-
homeIconPressed?: (
|
|
8396
|
-
oEvent: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
|
|
8397
|
-
) => void;
|
|
8414
|
+
homeIconPressed?: (oEvent: ShellBar$HomeIconPressedEvent) => void;
|
|
8398
8415
|
|
|
8399
8416
|
/**
|
|
8400
8417
|
* Fired when the alternative menu button is pressed.
|
|
8401
8418
|
*/
|
|
8402
|
-
menuButtonPressed?: (
|
|
8403
|
-
oEvent: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
|
|
8404
|
-
) => void;
|
|
8419
|
+
menuButtonPressed?: (oEvent: ShellBar$MenuButtonPressedEvent) => void;
|
|
8405
8420
|
|
|
8406
8421
|
/**
|
|
8407
8422
|
* Fired when the navigation/back button is pressed.
|
|
8408
8423
|
*/
|
|
8409
|
-
navButtonPressed?: (
|
|
8410
|
-
oEvent: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
|
|
8411
|
-
) => void;
|
|
8424
|
+
navButtonPressed?: (oEvent: ShellBar$NavButtonPressedEvent) => void;
|
|
8412
8425
|
|
|
8413
8426
|
/**
|
|
8414
8427
|
* Fired when the SAP CoPilot icon is pressed.
|
|
8415
8428
|
*/
|
|
8416
|
-
copilotPressed?: (
|
|
8417
|
-
oEvent: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
|
|
8418
|
-
) => void;
|
|
8429
|
+
copilotPressed?: (oEvent: ShellBar$CopilotPressedEvent) => void;
|
|
8419
8430
|
|
|
8420
8431
|
/**
|
|
8421
8432
|
* Fired when the search button is pressed.
|
|
8422
8433
|
*/
|
|
8423
|
-
searchButtonPressed?: (
|
|
8424
|
-
oEvent: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
|
|
8425
|
-
) => void;
|
|
8434
|
+
searchButtonPressed?: (oEvent: ShellBar$SearchButtonPressedEvent) => void;
|
|
8426
8435
|
|
|
8427
8436
|
/**
|
|
8428
8437
|
* Fired when the notifications button is pressed.
|
|
8429
8438
|
*/
|
|
8430
8439
|
notificationsPressed?: (
|
|
8431
|
-
oEvent:
|
|
8440
|
+
oEvent: ShellBar$NotificationsPressedEvent
|
|
8432
8441
|
) => void;
|
|
8433
8442
|
|
|
8434
8443
|
/**
|
|
8435
8444
|
* Fired when the product switcher button is pressed.
|
|
8436
8445
|
*/
|
|
8437
8446
|
productSwitcherPressed?: (
|
|
8438
|
-
oEvent:
|
|
8447
|
+
oEvent: ShellBar$ProductSwitcherPressedEvent
|
|
8439
8448
|
) => void;
|
|
8440
8449
|
|
|
8441
8450
|
/**
|
|
8442
8451
|
* Fired when the profile avatar is pressed.
|
|
8443
8452
|
*/
|
|
8444
|
-
avatarPressed?: (
|
|
8445
|
-
oEvent: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
|
|
8446
|
-
) => void;
|
|
8453
|
+
avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
|
|
8447
8454
|
}
|
|
8448
8455
|
|
|
8449
8456
|
interface $SidePanelSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -8480,7 +8487,7 @@ declare namespace sap {
|
|
|
8480
8487
|
| `{${string}}`;
|
|
8481
8488
|
|
|
8482
8489
|
/**
|
|
8483
|
-
* @
|
|
8490
|
+
* @since 1.109.0
|
|
8484
8491
|
*
|
|
8485
8492
|
* Determines the minimum side panel width (Side Content width + Action Bar width). **Note:** if the width
|
|
8486
8493
|
* is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
|
|
@@ -8492,7 +8499,7 @@ declare namespace sap {
|
|
|
8492
8499
|
| `{${string}}`;
|
|
8493
8500
|
|
|
8494
8501
|
/**
|
|
8495
|
-
* @
|
|
8502
|
+
* @since 1.109.0
|
|
8496
8503
|
*
|
|
8497
8504
|
* Determines the maximum side panel width (Side Content width + Action Bar width). **Note:** if the width
|
|
8498
8505
|
* is given in percent(%), it is calculated as given percent from the Side Panel parent container width,
|
|
@@ -8504,7 +8511,7 @@ declare namespace sap {
|
|
|
8504
8511
|
| `{${string}}`;
|
|
8505
8512
|
|
|
8506
8513
|
/**
|
|
8507
|
-
* @
|
|
8514
|
+
* @since 1.109.0
|
|
8508
8515
|
*
|
|
8509
8516
|
* Determines the step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
8510
8517
|
* the width can be changed by this step with `Left Arrow` and `Right Arrow` keys when the resize splitter
|
|
@@ -8516,7 +8523,7 @@ declare namespace sap {
|
|
|
8516
8523
|
| `{${string}}`;
|
|
8517
8524
|
|
|
8518
8525
|
/**
|
|
8519
|
-
* @
|
|
8526
|
+
* @since 1.109.0
|
|
8520
8527
|
*
|
|
8521
8528
|
* Determines the large step (in pixels) when changing the width of the side panel with the keyboard. **Note:**
|
|
8522
8529
|
* the width can be changed by large step with `Shift + Left Arrow` and `Shift + Right Arrow` keys when
|
|
@@ -8570,9 +8577,7 @@ declare namespace sap {
|
|
|
8570
8577
|
* of a different action item, the selection will be cancelled, and the next event (for expansion of a new
|
|
8571
8578
|
* action item) will not be fired and the new side content will not be displayed.
|
|
8572
8579
|
*/
|
|
8573
|
-
toggle?: (
|
|
8574
|
-
oEvent: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
|
|
8575
|
-
) => void;
|
|
8580
|
+
toggle?: (oEvent: SidePanel$ToggleEvent) => void;
|
|
8576
8581
|
}
|
|
8577
8582
|
|
|
8578
8583
|
interface $SidePanelItemSettings extends sap.ui.core.$ItemSettings {
|
|
@@ -8594,7 +8599,7 @@ declare namespace sap {
|
|
|
8594
8599
|
| `{${string}}`;
|
|
8595
8600
|
}
|
|
8596
8601
|
|
|
8597
|
-
interface $
|
|
8602
|
+
interface AvatarGroup$PressEventParameters {
|
|
8598
8603
|
/**
|
|
8599
8604
|
* The `GroupType` of the control.
|
|
8600
8605
|
*/
|
|
@@ -8611,21 +8616,21 @@ declare namespace sap {
|
|
|
8611
8616
|
avatarsDisplayed?: int;
|
|
8612
8617
|
}
|
|
8613
8618
|
|
|
8614
|
-
interface $
|
|
8619
|
+
interface DynamicPage$PinnedStateChangeEventParameters {
|
|
8615
8620
|
/**
|
|
8616
8621
|
* False or True values indicate the new pinned property value.
|
|
8617
8622
|
*/
|
|
8618
8623
|
pinned?: boolean;
|
|
8619
8624
|
}
|
|
8620
8625
|
|
|
8621
|
-
interface $
|
|
8626
|
+
interface DynamicPageTitle$StateChangeEventParameters {
|
|
8622
8627
|
/**
|
|
8623
8628
|
* Whether the title was expanded (true) or collapsed (false).
|
|
8624
8629
|
*/
|
|
8625
8630
|
isExpanded?: boolean;
|
|
8626
8631
|
}
|
|
8627
8632
|
|
|
8628
|
-
interface $
|
|
8633
|
+
interface FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters {
|
|
8629
8634
|
/**
|
|
8630
8635
|
* The page, which had been displayed before navigation.
|
|
8631
8636
|
*/
|
|
@@ -8678,7 +8683,7 @@ declare namespace sap {
|
|
|
8678
8683
|
direction?: string;
|
|
8679
8684
|
}
|
|
8680
8685
|
|
|
8681
|
-
interface $
|
|
8686
|
+
interface FlexibleColumnLayout$AfterEndColumnNavigateEventParameters {
|
|
8682
8687
|
/**
|
|
8683
8688
|
* The page, which had been displayed before navigation.
|
|
8684
8689
|
*/
|
|
@@ -8731,7 +8736,7 @@ declare namespace sap {
|
|
|
8731
8736
|
direction?: string;
|
|
8732
8737
|
}
|
|
8733
8738
|
|
|
8734
|
-
interface $
|
|
8739
|
+
interface FlexibleColumnLayout$AfterMidColumnNavigateEventParameters {
|
|
8735
8740
|
/**
|
|
8736
8741
|
* The page, which had been displayed before navigation.
|
|
8737
8742
|
*/
|
|
@@ -8784,7 +8789,7 @@ declare namespace sap {
|
|
|
8784
8789
|
direction?: string;
|
|
8785
8790
|
}
|
|
8786
8791
|
|
|
8787
|
-
interface $
|
|
8792
|
+
interface FlexibleColumnLayout$BeginColumnNavigateEventParameters {
|
|
8788
8793
|
/**
|
|
8789
8794
|
* The page, which was displayed before the current navigation.
|
|
8790
8795
|
*/
|
|
@@ -8837,7 +8842,7 @@ declare namespace sap {
|
|
|
8837
8842
|
direction?: string;
|
|
8838
8843
|
}
|
|
8839
8844
|
|
|
8840
|
-
interface $
|
|
8845
|
+
interface FlexibleColumnLayout$ColumnResizeEventParameters {
|
|
8841
8846
|
/**
|
|
8842
8847
|
* Determines whether `beginColumn` resize has completed.
|
|
8843
8848
|
*/
|
|
@@ -8854,7 +8859,7 @@ declare namespace sap {
|
|
|
8854
8859
|
endColumn?: boolean;
|
|
8855
8860
|
}
|
|
8856
8861
|
|
|
8857
|
-
interface $
|
|
8862
|
+
interface FlexibleColumnLayout$EndColumnNavigateEventParameters {
|
|
8858
8863
|
/**
|
|
8859
8864
|
* The page, which was displayed before the current navigation.
|
|
8860
8865
|
*/
|
|
@@ -8907,7 +8912,7 @@ declare namespace sap {
|
|
|
8907
8912
|
direction?: string;
|
|
8908
8913
|
}
|
|
8909
8914
|
|
|
8910
|
-
interface $
|
|
8915
|
+
interface FlexibleColumnLayout$MidColumnNavigateEventParameters {
|
|
8911
8916
|
/**
|
|
8912
8917
|
* The page, which was displayed before the current navigation.
|
|
8913
8918
|
*/
|
|
@@ -8960,7 +8965,7 @@ declare namespace sap {
|
|
|
8960
8965
|
direction?: string;
|
|
8961
8966
|
}
|
|
8962
8967
|
|
|
8963
|
-
interface $
|
|
8968
|
+
interface FlexibleColumnLayout$StateChangeEventParameters {
|
|
8964
8969
|
/**
|
|
8965
8970
|
* The value of the `layout` property
|
|
8966
8971
|
*/
|
|
@@ -8988,7 +8993,7 @@ declare namespace sap {
|
|
|
8988
8993
|
isResize?: boolean;
|
|
8989
8994
|
}
|
|
8990
8995
|
|
|
8991
|
-
interface $
|
|
8996
|
+
interface GridContainer$BorderReachedEventParameters {
|
|
8992
8997
|
/**
|
|
8993
8998
|
* Event that leads to the focus change.
|
|
8994
8999
|
*/
|
|
@@ -9010,21 +9015,21 @@ declare namespace sap {
|
|
|
9010
9015
|
column?: int;
|
|
9011
9016
|
}
|
|
9012
9017
|
|
|
9013
|
-
interface $
|
|
9018
|
+
interface GridContainer$ColumnsChangeEventParameters {
|
|
9014
9019
|
/**
|
|
9015
9020
|
* The count of the gird columns.
|
|
9016
9021
|
*/
|
|
9017
9022
|
columns?: int;
|
|
9018
9023
|
}
|
|
9019
9024
|
|
|
9020
|
-
interface $
|
|
9025
|
+
interface GridContainer$LayoutChangeEventParameters {
|
|
9021
9026
|
/**
|
|
9022
9027
|
* The name of the newly active layout.
|
|
9023
9028
|
*/
|
|
9024
9029
|
layout?: string;
|
|
9025
9030
|
}
|
|
9026
9031
|
|
|
9027
|
-
interface $
|
|
9032
|
+
interface GridList$BorderReachedEventParameters {
|
|
9028
9033
|
/**
|
|
9029
9034
|
* Event that leads to the focus change.
|
|
9030
9035
|
*/
|
|
@@ -9046,21 +9051,21 @@ declare namespace sap {
|
|
|
9046
9051
|
column?: int;
|
|
9047
9052
|
}
|
|
9048
9053
|
|
|
9049
|
-
interface $
|
|
9054
|
+
interface ProductSwitch$ChangeEventParameters {
|
|
9050
9055
|
/**
|
|
9051
9056
|
* Reference to the new item that has been selected.
|
|
9052
9057
|
*/
|
|
9053
9058
|
itemPressed?: sap.f.ProductSwitchItem;
|
|
9054
9059
|
}
|
|
9055
9060
|
|
|
9056
|
-
interface $
|
|
9061
|
+
interface SearchManager$LiveChangeEventParameters {
|
|
9057
9062
|
/**
|
|
9058
9063
|
* Current search string.
|
|
9059
9064
|
*/
|
|
9060
9065
|
newValue?: string;
|
|
9061
9066
|
}
|
|
9062
9067
|
|
|
9063
|
-
interface $
|
|
9068
|
+
interface SearchManager$SearchEventParameters {
|
|
9064
9069
|
/**
|
|
9065
9070
|
* The search query string.
|
|
9066
9071
|
*/
|
|
@@ -9072,70 +9077,70 @@ declare namespace sap {
|
|
|
9072
9077
|
clearButtonPressed?: boolean;
|
|
9073
9078
|
}
|
|
9074
9079
|
|
|
9075
|
-
interface $
|
|
9080
|
+
interface SearchManager$SuggestEventParameters {
|
|
9076
9081
|
/**
|
|
9077
9082
|
* Current search string of the search field.
|
|
9078
9083
|
*/
|
|
9079
9084
|
suggestValue?: string;
|
|
9080
9085
|
}
|
|
9081
9086
|
|
|
9082
|
-
interface $
|
|
9087
|
+
interface ShellBar$AvatarPressedEventParameters {
|
|
9083
9088
|
/**
|
|
9084
9089
|
* Reference to the button that has been pressed
|
|
9085
9090
|
*/
|
|
9086
9091
|
avatar?: sap.m.Avatar;
|
|
9087
9092
|
}
|
|
9088
9093
|
|
|
9089
|
-
interface $
|
|
9094
|
+
interface ShellBar$CopilotPressedEventParameters {
|
|
9090
9095
|
/**
|
|
9091
9096
|
* Reference to the button that has been pressed
|
|
9092
9097
|
*/
|
|
9093
9098
|
image?: sap.m.Image;
|
|
9094
9099
|
}
|
|
9095
9100
|
|
|
9096
|
-
interface $
|
|
9101
|
+
interface ShellBar$HomeIconPressedEventParameters {
|
|
9097
9102
|
/**
|
|
9098
9103
|
* Reference to the image that has been pressed
|
|
9099
9104
|
*/
|
|
9100
9105
|
icon?: sap.m.Image;
|
|
9101
9106
|
}
|
|
9102
9107
|
|
|
9103
|
-
interface $
|
|
9108
|
+
interface ShellBar$MenuButtonPressedEventParameters {
|
|
9104
9109
|
/**
|
|
9105
9110
|
* Reference to the button that has been pressed
|
|
9106
9111
|
*/
|
|
9107
9112
|
button?: sap.m.Button;
|
|
9108
9113
|
}
|
|
9109
9114
|
|
|
9110
|
-
interface $
|
|
9115
|
+
interface ShellBar$NavButtonPressedEventParameters {
|
|
9111
9116
|
/**
|
|
9112
9117
|
* Reference to the button that has been pressed
|
|
9113
9118
|
*/
|
|
9114
9119
|
button?: sap.m.Button;
|
|
9115
9120
|
}
|
|
9116
9121
|
|
|
9117
|
-
interface $
|
|
9122
|
+
interface ShellBar$NotificationsPressedEventParameters {
|
|
9118
9123
|
/**
|
|
9119
9124
|
* Reference to the button that has been pressed
|
|
9120
9125
|
*/
|
|
9121
9126
|
button?: sap.m.Button;
|
|
9122
9127
|
}
|
|
9123
9128
|
|
|
9124
|
-
interface $
|
|
9129
|
+
interface ShellBar$ProductSwitcherPressedEventParameters {
|
|
9125
9130
|
/**
|
|
9126
9131
|
* Reference to the button that has been pressed
|
|
9127
9132
|
*/
|
|
9128
9133
|
button?: sap.m.Button;
|
|
9129
9134
|
}
|
|
9130
9135
|
|
|
9131
|
-
interface $
|
|
9136
|
+
interface ShellBar$SearchButtonPressedEventParameters {
|
|
9132
9137
|
/**
|
|
9133
9138
|
* Reference to the button that has been pressed
|
|
9134
9139
|
*/
|
|
9135
9140
|
button?: sap.m.Button;
|
|
9136
9141
|
}
|
|
9137
9142
|
|
|
9138
|
-
interface $
|
|
9143
|
+
interface SidePanel$ToggleEventParameters {
|
|
9139
9144
|
/**
|
|
9140
9145
|
* The action item that triggers the event.
|
|
9141
9146
|
*/
|
|
@@ -9148,7 +9153,7 @@ declare namespace sap {
|
|
|
9148
9153
|
}
|
|
9149
9154
|
|
|
9150
9155
|
/**
|
|
9151
|
-
* @
|
|
9156
|
+
* @since 1.88
|
|
9152
9157
|
* @deprecated (since 1.98) - Use the {@link sap.m.IllustrationPool} instead.
|
|
9153
9158
|
*
|
|
9154
9159
|
* `IllustrationPool` loads the illustration assets (SVGs) via XMLHttpRequest requests.
|
|
@@ -9170,7 +9175,7 @@ declare namespace sap {
|
|
|
9170
9175
|
interface IllustrationPool {}
|
|
9171
9176
|
|
|
9172
9177
|
/**
|
|
9173
|
-
* @
|
|
9178
|
+
* @since 1.46
|
|
9174
9179
|
* @deprecated (since 1.73) - Use the {@link sap.m.Avatar} instead.
|
|
9175
9180
|
*
|
|
9176
9181
|
* An image-like control that has different display options for representing images, initials, and icons.
|
|
@@ -9260,8 +9265,8 @@ declare namespace sap {
|
|
|
9260
9265
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9261
9266
|
}
|
|
9262
9267
|
/**
|
|
9263
|
-
* @
|
|
9264
|
-
* @
|
|
9268
|
+
* @since 1.73
|
|
9269
|
+
* @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
|
|
9265
9270
|
* the API might be changed in future.
|
|
9266
9271
|
*
|
|
9267
9272
|
* Displays a group of avatars arranged horizontally. It is useful to visually showcase a group of related
|
|
@@ -9385,9 +9390,7 @@ declare namespace sap {
|
|
|
9385
9390
|
/**
|
|
9386
9391
|
* The function to be called when the event occurs
|
|
9387
9392
|
*/
|
|
9388
|
-
fnFunction: (
|
|
9389
|
-
p1: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
|
|
9390
|
-
) => void,
|
|
9393
|
+
fnFunction: (p1: AvatarGroup$PressEvent) => void,
|
|
9391
9394
|
/**
|
|
9392
9395
|
* Context object to call the event handler with. Defaults to this `sap.f.AvatarGroup` itself
|
|
9393
9396
|
*/
|
|
@@ -9407,9 +9410,7 @@ declare namespace sap {
|
|
|
9407
9410
|
/**
|
|
9408
9411
|
* The function to be called when the event occurs
|
|
9409
9412
|
*/
|
|
9410
|
-
fnFunction: (
|
|
9411
|
-
p1: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
|
|
9412
|
-
) => void,
|
|
9413
|
+
fnFunction: (p1: AvatarGroup$PressEvent) => void,
|
|
9413
9414
|
/**
|
|
9414
9415
|
* Context object to call the event handler with. Defaults to this `sap.f.AvatarGroup` itself
|
|
9415
9416
|
*/
|
|
@@ -9432,16 +9433,14 @@ declare namespace sap {
|
|
|
9432
9433
|
/**
|
|
9433
9434
|
* The function to be called, when the event occurs
|
|
9434
9435
|
*/
|
|
9435
|
-
fnFunction: (
|
|
9436
|
-
p1: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
|
|
9437
|
-
) => void,
|
|
9436
|
+
fnFunction: (p1: AvatarGroup$PressEvent) => void,
|
|
9438
9437
|
/**
|
|
9439
9438
|
* Context object on which the given function had to be called
|
|
9440
9439
|
*/
|
|
9441
9440
|
oListener?: object
|
|
9442
9441
|
): this;
|
|
9443
9442
|
/**
|
|
9444
|
-
* @
|
|
9443
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9445
9444
|
*
|
|
9446
9445
|
* Fires event {@link #event:press press} to attached listeners.
|
|
9447
9446
|
*
|
|
@@ -9451,10 +9450,10 @@ declare namespace sap {
|
|
|
9451
9450
|
/**
|
|
9452
9451
|
* Parameters to pass along with the event
|
|
9453
9452
|
*/
|
|
9454
|
-
mParameters?: sap.f
|
|
9453
|
+
mParameters?: sap.f.AvatarGroup$PressEventParameters
|
|
9455
9454
|
): this;
|
|
9456
9455
|
/**
|
|
9457
|
-
* @
|
|
9456
|
+
* @since 1.103
|
|
9458
9457
|
*
|
|
9459
9458
|
* Gets current value of property {@link #getAvatarCustomDisplaySize avatarCustomDisplaySize}.
|
|
9460
9459
|
*
|
|
@@ -9470,7 +9469,7 @@ declare namespace sap {
|
|
|
9470
9469
|
*/
|
|
9471
9470
|
getAvatarCustomDisplaySize(): sap.ui.core.AbsoluteCSSSize;
|
|
9472
9471
|
/**
|
|
9473
|
-
* @
|
|
9472
|
+
* @since 1.103
|
|
9474
9473
|
*
|
|
9475
9474
|
* Gets current value of property {@link #getAvatarCustomFontSize avatarCustomFontSize}.
|
|
9476
9475
|
*
|
|
@@ -9558,7 +9557,7 @@ declare namespace sap {
|
|
|
9558
9557
|
vItem: int | string | sap.f.AvatarGroupItem
|
|
9559
9558
|
): sap.f.AvatarGroupItem | null;
|
|
9560
9559
|
/**
|
|
9561
|
-
* @
|
|
9560
|
+
* @since 1.103
|
|
9562
9561
|
*
|
|
9563
9562
|
* Sets a new value for property {@link #getAvatarCustomDisplaySize avatarCustomDisplaySize}.
|
|
9564
9563
|
*
|
|
@@ -9581,7 +9580,7 @@ declare namespace sap {
|
|
|
9581
9580
|
sAvatarCustomDisplaySize?: sap.ui.core.AbsoluteCSSSize
|
|
9582
9581
|
): this;
|
|
9583
9582
|
/**
|
|
9584
|
-
* @
|
|
9583
|
+
* @since 1.103
|
|
9585
9584
|
*
|
|
9586
9585
|
* Sets a new value for property {@link #getAvatarCustomFontSize avatarCustomFontSize}.
|
|
9587
9586
|
*
|
|
@@ -9637,8 +9636,8 @@ declare namespace sap {
|
|
|
9637
9636
|
): this;
|
|
9638
9637
|
}
|
|
9639
9638
|
/**
|
|
9640
|
-
* @
|
|
9641
|
-
* @
|
|
9639
|
+
* @since 1.73
|
|
9640
|
+
* @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
|
|
9642
9641
|
* the API might be changed in future.
|
|
9643
9642
|
*
|
|
9644
9643
|
* Represents a single avatar item displayed in the {@link sap.f.AvatarGroup} control.
|
|
@@ -9792,7 +9791,7 @@ declare namespace sap {
|
|
|
9792
9791
|
): this;
|
|
9793
9792
|
}
|
|
9794
9793
|
/**
|
|
9795
|
-
* @
|
|
9794
|
+
* @since 1.64
|
|
9796
9795
|
*
|
|
9797
9796
|
* A control that represents a container with a predefined header and content.
|
|
9798
9797
|
*
|
|
@@ -9909,7 +9908,7 @@ declare namespace sap {
|
|
|
9909
9908
|
*/
|
|
9910
9909
|
getHeader(): sap.f.cards.IHeader;
|
|
9911
9910
|
/**
|
|
9912
|
-
* @
|
|
9911
|
+
* @since 1.65
|
|
9913
9912
|
*
|
|
9914
9913
|
* Gets current value of property {@link #getHeaderPosition headerPosition}.
|
|
9915
9914
|
*
|
|
@@ -9943,7 +9942,7 @@ declare namespace sap {
|
|
|
9943
9942
|
oHeader: sap.f.cards.IHeader
|
|
9944
9943
|
): this;
|
|
9945
9944
|
/**
|
|
9946
|
-
* @
|
|
9945
|
+
* @since 1.65
|
|
9947
9946
|
*
|
|
9948
9947
|
* Sets a new value for property {@link #getHeaderPosition headerPosition}.
|
|
9949
9948
|
*
|
|
@@ -10031,7 +10030,7 @@ declare namespace sap {
|
|
|
10031
10030
|
*/
|
|
10032
10031
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10033
10032
|
/**
|
|
10034
|
-
* @
|
|
10033
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
10035
10034
|
*
|
|
10036
10035
|
* Returns the DOM Element that should get the focus.
|
|
10037
10036
|
*
|
|
@@ -10094,7 +10093,7 @@ declare namespace sap {
|
|
|
10094
10093
|
): this;
|
|
10095
10094
|
}
|
|
10096
10095
|
/**
|
|
10097
|
-
* @
|
|
10096
|
+
* @since 1.42
|
|
10098
10097
|
*
|
|
10099
10098
|
* A layout control, representing a web page, consisting of a title, header with dynamic behavior, a content
|
|
10100
10099
|
* area, and an optional floating footer.
|
|
@@ -10210,7 +10209,7 @@ declare namespace sap {
|
|
|
10210
10209
|
*/
|
|
10211
10210
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10212
10211
|
/**
|
|
10213
|
-
* @
|
|
10212
|
+
* @since 1.93
|
|
10214
10213
|
*
|
|
10215
10214
|
* Attaches event handler `fnFunction` to the {@link #event:pinnedStateChange pinnedStateChange} event of
|
|
10216
10215
|
* this `sap.f.DynamicPage`.
|
|
@@ -10231,16 +10230,14 @@ declare namespace sap {
|
|
|
10231
10230
|
/**
|
|
10232
10231
|
* The function to be called when the event occurs
|
|
10233
10232
|
*/
|
|
10234
|
-
fnFunction: (
|
|
10235
|
-
p1: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
|
|
10236
|
-
) => void,
|
|
10233
|
+
fnFunction: (p1: DynamicPage$PinnedStateChangeEvent) => void,
|
|
10237
10234
|
/**
|
|
10238
10235
|
* Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
|
|
10239
10236
|
*/
|
|
10240
10237
|
oListener?: object
|
|
10241
10238
|
): this;
|
|
10242
10239
|
/**
|
|
10243
|
-
* @
|
|
10240
|
+
* @since 1.93
|
|
10244
10241
|
*
|
|
10245
10242
|
* Attaches event handler `fnFunction` to the {@link #event:pinnedStateChange pinnedStateChange} event of
|
|
10246
10243
|
* this `sap.f.DynamicPage`.
|
|
@@ -10256,9 +10253,7 @@ declare namespace sap {
|
|
|
10256
10253
|
/**
|
|
10257
10254
|
* The function to be called when the event occurs
|
|
10258
10255
|
*/
|
|
10259
|
-
fnFunction: (
|
|
10260
|
-
p1: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
|
|
10261
|
-
) => void,
|
|
10256
|
+
fnFunction: (p1: DynamicPage$PinnedStateChangeEvent) => void,
|
|
10262
10257
|
/**
|
|
10263
10258
|
* Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
|
|
10264
10259
|
*/
|
|
@@ -10283,7 +10278,7 @@ declare namespace sap {
|
|
|
10283
10278
|
*/
|
|
10284
10279
|
destroyHeader(): this;
|
|
10285
10280
|
/**
|
|
10286
|
-
* @
|
|
10281
|
+
* @since 1.61
|
|
10287
10282
|
*
|
|
10288
10283
|
* Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
10289
10284
|
*
|
|
@@ -10297,7 +10292,7 @@ declare namespace sap {
|
|
|
10297
10292
|
*/
|
|
10298
10293
|
destroyTitle(): this;
|
|
10299
10294
|
/**
|
|
10300
|
-
* @
|
|
10295
|
+
* @since 1.93
|
|
10301
10296
|
*
|
|
10302
10297
|
* Detaches event handler `fnFunction` from the {@link #event:pinnedStateChange pinnedStateChange} event
|
|
10303
10298
|
* of this `sap.f.DynamicPage`.
|
|
@@ -10310,17 +10305,15 @@ declare namespace sap {
|
|
|
10310
10305
|
/**
|
|
10311
10306
|
* The function to be called, when the event occurs
|
|
10312
10307
|
*/
|
|
10313
|
-
fnFunction: (
|
|
10314
|
-
p1: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
|
|
10315
|
-
) => void,
|
|
10308
|
+
fnFunction: (p1: DynamicPage$PinnedStateChangeEvent) => void,
|
|
10316
10309
|
/**
|
|
10317
10310
|
* Context object on which the given function had to be called
|
|
10318
10311
|
*/
|
|
10319
10312
|
oListener?: object
|
|
10320
10313
|
): this;
|
|
10321
10314
|
/**
|
|
10322
|
-
* @
|
|
10323
|
-
* @
|
|
10315
|
+
* @since 1.93
|
|
10316
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
10324
10317
|
*
|
|
10325
10318
|
* Fires event {@link #event:pinnedStateChange pinnedStateChange} to attached listeners.
|
|
10326
10319
|
*
|
|
@@ -10330,10 +10323,10 @@ declare namespace sap {
|
|
|
10330
10323
|
/**
|
|
10331
10324
|
* Parameters to pass along with the event
|
|
10332
10325
|
*/
|
|
10333
|
-
mParameters?: sap.f
|
|
10326
|
+
mParameters?: sap.f.DynamicPage$PinnedStateChangeEventParameters
|
|
10334
10327
|
): this;
|
|
10335
10328
|
/**
|
|
10336
|
-
* @
|
|
10329
|
+
* @since 1.68
|
|
10337
10330
|
*
|
|
10338
10331
|
* Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
|
|
10339
10332
|
*
|
|
@@ -10424,7 +10417,7 @@ declare namespace sap {
|
|
|
10424
10417
|
*/
|
|
10425
10418
|
getHeaderExpanded(): boolean;
|
|
10426
10419
|
/**
|
|
10427
|
-
* @
|
|
10420
|
+
* @since 1.93
|
|
10428
10421
|
*
|
|
10429
10422
|
* Gets current value of property {@link #getHeaderPinned headerPinned}.
|
|
10430
10423
|
*
|
|
@@ -10447,7 +10440,7 @@ declare namespace sap {
|
|
|
10447
10440
|
*/
|
|
10448
10441
|
getHeaderPinned(): boolean;
|
|
10449
10442
|
/**
|
|
10450
|
-
* @
|
|
10443
|
+
* @since 1.61
|
|
10451
10444
|
*
|
|
10452
10445
|
* Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
10453
10446
|
*
|
|
@@ -10487,7 +10480,7 @@ declare namespace sap {
|
|
|
10487
10480
|
*/
|
|
10488
10481
|
getShowFooter(): boolean;
|
|
10489
10482
|
/**
|
|
10490
|
-
* @
|
|
10483
|
+
* @since 1.65
|
|
10491
10484
|
*
|
|
10492
10485
|
* ID of the element which is the current target of the association {@link #getStickySubheaderProvider stickySubheaderProvider},
|
|
10493
10486
|
* or `null`.
|
|
@@ -10516,7 +10509,7 @@ declare namespace sap {
|
|
|
10516
10509
|
*/
|
|
10517
10510
|
getToggleHeaderOnTitleClick(): boolean;
|
|
10518
10511
|
/**
|
|
10519
|
-
* @
|
|
10512
|
+
* @since 1.68
|
|
10520
10513
|
*
|
|
10521
10514
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
10522
10515
|
*
|
|
@@ -10617,7 +10610,7 @@ declare namespace sap {
|
|
|
10617
10610
|
bHeaderExpanded?: boolean
|
|
10618
10611
|
): this;
|
|
10619
10612
|
/**
|
|
10620
|
-
* @
|
|
10613
|
+
* @since 1.93
|
|
10621
10614
|
*
|
|
10622
10615
|
* Sets a new value for property {@link #getHeaderPinned headerPinned}.
|
|
10623
10616
|
*
|
|
@@ -10647,7 +10640,7 @@ declare namespace sap {
|
|
|
10647
10640
|
bHeaderPinned?: boolean
|
|
10648
10641
|
): this;
|
|
10649
10642
|
/**
|
|
10650
|
-
* @
|
|
10643
|
+
* @since 1.61
|
|
10651
10644
|
*
|
|
10652
10645
|
* Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
|
|
10653
10646
|
*
|
|
@@ -10698,7 +10691,7 @@ declare namespace sap {
|
|
|
10698
10691
|
bShowFooter?: boolean
|
|
10699
10692
|
): this;
|
|
10700
10693
|
/**
|
|
10701
|
-
* @
|
|
10694
|
+
* @since 1.65
|
|
10702
10695
|
*
|
|
10703
10696
|
* Sets the associated {@link #getStickySubheaderProvider stickySubheaderProvider}.
|
|
10704
10697
|
*
|
|
@@ -10749,7 +10742,7 @@ declare namespace sap {
|
|
|
10749
10742
|
): this;
|
|
10750
10743
|
}
|
|
10751
10744
|
/**
|
|
10752
|
-
* @
|
|
10745
|
+
* @since 1.61
|
|
10753
10746
|
*
|
|
10754
10747
|
* Settings for accessible landmarks which can be applied to the container elements of a `sap.f.DynamicPage`
|
|
10755
10748
|
* control.
|
|
@@ -11060,7 +11053,7 @@ declare namespace sap {
|
|
|
11060
11053
|
): this;
|
|
11061
11054
|
}
|
|
11062
11055
|
/**
|
|
11063
|
-
* @
|
|
11056
|
+
* @since 1.42
|
|
11064
11057
|
*
|
|
11065
11058
|
* Header of the {@link sap.f.DynamicPage}.
|
|
11066
11059
|
*
|
|
@@ -11162,7 +11155,7 @@ declare namespace sap {
|
|
|
11162
11155
|
*/
|
|
11163
11156
|
destroyContent(): this;
|
|
11164
11157
|
/**
|
|
11165
|
-
* @
|
|
11158
|
+
* @since 1.58
|
|
11166
11159
|
*
|
|
11167
11160
|
* Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
|
|
11168
11161
|
*
|
|
@@ -11239,7 +11232,7 @@ declare namespace sap {
|
|
|
11239
11232
|
vContent: int | string | sap.ui.core.Control
|
|
11240
11233
|
): sap.ui.core.Control | null;
|
|
11241
11234
|
/**
|
|
11242
|
-
* @
|
|
11235
|
+
* @since 1.58
|
|
11243
11236
|
*
|
|
11244
11237
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
11245
11238
|
*
|
|
@@ -11277,7 +11270,7 @@ declare namespace sap {
|
|
|
11277
11270
|
): this;
|
|
11278
11271
|
}
|
|
11279
11272
|
/**
|
|
11280
|
-
* @
|
|
11273
|
+
* @since 1.42
|
|
11281
11274
|
*
|
|
11282
11275
|
* Title of the {@link sap.f.DynamicPage}.
|
|
11283
11276
|
*
|
|
@@ -11379,7 +11372,7 @@ declare namespace sap {
|
|
|
11379
11372
|
oAction: sap.ui.core.Control
|
|
11380
11373
|
): this;
|
|
11381
11374
|
/**
|
|
11382
|
-
* @
|
|
11375
|
+
* @since 1.78
|
|
11383
11376
|
*
|
|
11384
11377
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
11385
11378
|
*
|
|
@@ -11392,7 +11385,7 @@ declare namespace sap {
|
|
|
11392
11385
|
vAriaDescribedBy: sap.ui.core.ID | sap.ui.core.Control
|
|
11393
11386
|
): this;
|
|
11394
11387
|
/**
|
|
11395
|
-
* @
|
|
11388
|
+
* @since 1.50
|
|
11396
11389
|
*
|
|
11397
11390
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
11398
11391
|
*
|
|
@@ -11416,7 +11409,7 @@ declare namespace sap {
|
|
|
11416
11409
|
oExpandedContent: sap.ui.core.Control
|
|
11417
11410
|
): this;
|
|
11418
11411
|
/**
|
|
11419
|
-
* @
|
|
11412
|
+
* @since 1.52
|
|
11420
11413
|
*
|
|
11421
11414
|
* Adds some navigationAction to the aggregation {@link #getNavigationActions navigationActions}.
|
|
11422
11415
|
*
|
|
@@ -11440,7 +11433,7 @@ declare namespace sap {
|
|
|
11440
11433
|
oSnappedContent: sap.ui.core.Control
|
|
11441
11434
|
): this;
|
|
11442
11435
|
/**
|
|
11443
|
-
* @
|
|
11436
|
+
* @since 1.54
|
|
11444
11437
|
*
|
|
11445
11438
|
* Attaches event handler `fnFunction` to the {@link #event:stateChange stateChange} event of this `sap.f.DynamicPageTitle`.
|
|
11446
11439
|
*
|
|
@@ -11464,16 +11457,14 @@ declare namespace sap {
|
|
|
11464
11457
|
/**
|
|
11465
11458
|
* The function to be called when the event occurs
|
|
11466
11459
|
*/
|
|
11467
|
-
fnFunction: (
|
|
11468
|
-
p1: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
|
|
11469
|
-
) => void,
|
|
11460
|
+
fnFunction: (p1: DynamicPageTitle$StateChangeEvent) => void,
|
|
11470
11461
|
/**
|
|
11471
11462
|
* Context object to call the event handler with. Defaults to this `sap.f.DynamicPageTitle` itself
|
|
11472
11463
|
*/
|
|
11473
11464
|
oListener?: object
|
|
11474
11465
|
): this;
|
|
11475
11466
|
/**
|
|
11476
|
-
* @
|
|
11467
|
+
* @since 1.54
|
|
11477
11468
|
*
|
|
11478
11469
|
* Attaches event handler `fnFunction` to the {@link #event:stateChange stateChange} event of this `sap.f.DynamicPageTitle`.
|
|
11479
11470
|
*
|
|
@@ -11492,9 +11483,7 @@ declare namespace sap {
|
|
|
11492
11483
|
/**
|
|
11493
11484
|
* The function to be called when the event occurs
|
|
11494
11485
|
*/
|
|
11495
|
-
fnFunction: (
|
|
11496
|
-
p1: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
|
|
11497
|
-
) => void,
|
|
11486
|
+
fnFunction: (p1: DynamicPageTitle$StateChangeEvent) => void,
|
|
11498
11487
|
/**
|
|
11499
11488
|
* Context object to call the event handler with. Defaults to this `sap.f.DynamicPageTitle` itself
|
|
11500
11489
|
*/
|
|
@@ -11507,7 +11496,7 @@ declare namespace sap {
|
|
|
11507
11496
|
*/
|
|
11508
11497
|
destroyActions(): this;
|
|
11509
11498
|
/**
|
|
11510
|
-
* @
|
|
11499
|
+
* @since 1.52
|
|
11511
11500
|
*
|
|
11512
11501
|
* Destroys the breadcrumbs in the aggregation {@link #getBreadcrumbs breadcrumbs}.
|
|
11513
11502
|
*
|
|
@@ -11515,7 +11504,7 @@ declare namespace sap {
|
|
|
11515
11504
|
*/
|
|
11516
11505
|
destroyBreadcrumbs(): this;
|
|
11517
11506
|
/**
|
|
11518
|
-
* @
|
|
11507
|
+
* @since 1.50
|
|
11519
11508
|
*
|
|
11520
11509
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
11521
11510
|
*
|
|
@@ -11529,7 +11518,7 @@ declare namespace sap {
|
|
|
11529
11518
|
*/
|
|
11530
11519
|
destroyExpandedContent(): this;
|
|
11531
11520
|
/**
|
|
11532
|
-
* @
|
|
11521
|
+
* @since 1.52
|
|
11533
11522
|
*
|
|
11534
11523
|
* Destroys the expandedHeading in the aggregation {@link #getExpandedHeading expandedHeading}.
|
|
11535
11524
|
*
|
|
@@ -11543,7 +11532,7 @@ declare namespace sap {
|
|
|
11543
11532
|
*/
|
|
11544
11533
|
destroyHeading(): this;
|
|
11545
11534
|
/**
|
|
11546
|
-
* @
|
|
11535
|
+
* @since 1.52
|
|
11547
11536
|
*
|
|
11548
11537
|
* Destroys all the navigationActions in the aggregation {@link #getNavigationActions navigationActions}.
|
|
11549
11538
|
*
|
|
@@ -11557,7 +11546,7 @@ declare namespace sap {
|
|
|
11557
11546
|
*/
|
|
11558
11547
|
destroySnappedContent(): this;
|
|
11559
11548
|
/**
|
|
11560
|
-
* @
|
|
11549
|
+
* @since 1.52
|
|
11561
11550
|
*
|
|
11562
11551
|
* Destroys the snappedHeading in the aggregation {@link #getSnappedHeading snappedHeading}.
|
|
11563
11552
|
*
|
|
@@ -11565,7 +11554,7 @@ declare namespace sap {
|
|
|
11565
11554
|
*/
|
|
11566
11555
|
destroySnappedHeading(): this;
|
|
11567
11556
|
/**
|
|
11568
|
-
* @
|
|
11557
|
+
* @since 1.63
|
|
11569
11558
|
*
|
|
11570
11559
|
* Destroys the snappedTitleOnMobile in the aggregation {@link #getSnappedTitleOnMobile snappedTitleOnMobile}.
|
|
11571
11560
|
*
|
|
@@ -11573,7 +11562,7 @@ declare namespace sap {
|
|
|
11573
11562
|
*/
|
|
11574
11563
|
destroySnappedTitleOnMobile(): this;
|
|
11575
11564
|
/**
|
|
11576
|
-
* @
|
|
11565
|
+
* @since 1.54
|
|
11577
11566
|
*
|
|
11578
11567
|
* Detaches event handler `fnFunction` from the {@link #event:stateChange stateChange} event of this `sap.f.DynamicPageTitle`.
|
|
11579
11568
|
*
|
|
@@ -11585,17 +11574,15 @@ declare namespace sap {
|
|
|
11585
11574
|
/**
|
|
11586
11575
|
* The function to be called, when the event occurs
|
|
11587
11576
|
*/
|
|
11588
|
-
fnFunction: (
|
|
11589
|
-
p1: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
|
|
11590
|
-
) => void,
|
|
11577
|
+
fnFunction: (p1: DynamicPageTitle$StateChangeEvent) => void,
|
|
11591
11578
|
/**
|
|
11592
11579
|
* Context object on which the given function had to be called
|
|
11593
11580
|
*/
|
|
11594
11581
|
oListener?: object
|
|
11595
11582
|
): this;
|
|
11596
11583
|
/**
|
|
11597
|
-
* @
|
|
11598
|
-
* @
|
|
11584
|
+
* @since 1.54
|
|
11585
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
11599
11586
|
*
|
|
11600
11587
|
* Fires event {@link #event:stateChange stateChange} to attached listeners.
|
|
11601
11588
|
*
|
|
@@ -11605,7 +11592,7 @@ declare namespace sap {
|
|
|
11605
11592
|
/**
|
|
11606
11593
|
* Parameters to pass along with the event
|
|
11607
11594
|
*/
|
|
11608
|
-
mParameters?: sap.f
|
|
11595
|
+
mParameters?: sap.f.DynamicPageTitle$StateChangeEventParameters
|
|
11609
11596
|
): this;
|
|
11610
11597
|
/**
|
|
11611
11598
|
* Gets content of aggregation {@link #getActions actions}.
|
|
@@ -11620,7 +11607,7 @@ declare namespace sap {
|
|
|
11620
11607
|
*/
|
|
11621
11608
|
getActions(): sap.ui.core.Control[];
|
|
11622
11609
|
/**
|
|
11623
|
-
* @
|
|
11610
|
+
* @since 1.54
|
|
11624
11611
|
*
|
|
11625
11612
|
* Gets current value of property {@link #getAreaShrinkRatio areaShrinkRatio}.
|
|
11626
11613
|
*
|
|
@@ -11645,13 +11632,13 @@ declare namespace sap {
|
|
|
11645
11632
|
*/
|
|
11646
11633
|
getAreaShrinkRatio(): sap.f.DynamicPageTitleShrinkRatio;
|
|
11647
11634
|
/**
|
|
11648
|
-
* @
|
|
11635
|
+
* @since 1.78
|
|
11649
11636
|
*
|
|
11650
11637
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
11651
11638
|
*/
|
|
11652
11639
|
getAriaDescribedBy(): sap.ui.core.ID[];
|
|
11653
11640
|
/**
|
|
11654
|
-
* @
|
|
11641
|
+
* @since 1.58
|
|
11655
11642
|
*
|
|
11656
11643
|
* Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
|
|
11657
11644
|
*
|
|
@@ -11664,7 +11651,7 @@ declare namespace sap {
|
|
|
11664
11651
|
*/
|
|
11665
11652
|
getBackgroundDesign(): sap.m.BackgroundDesign;
|
|
11666
11653
|
/**
|
|
11667
|
-
* @
|
|
11654
|
+
* @since 1.52
|
|
11668
11655
|
*
|
|
11669
11656
|
* Gets content of aggregation {@link #getBreadcrumbs breadcrumbs}.
|
|
11670
11657
|
*
|
|
@@ -11672,7 +11659,7 @@ declare namespace sap {
|
|
|
11672
11659
|
*/
|
|
11673
11660
|
getBreadcrumbs(): sap.m.IBreadcrumbs;
|
|
11674
11661
|
/**
|
|
11675
|
-
* @
|
|
11662
|
+
* @since 1.50
|
|
11676
11663
|
*
|
|
11677
11664
|
* Gets content of aggregation {@link #getContent content}.
|
|
11678
11665
|
*
|
|
@@ -11691,7 +11678,7 @@ declare namespace sap {
|
|
|
11691
11678
|
*/
|
|
11692
11679
|
getExpandedContent(): sap.ui.core.Control[];
|
|
11693
11680
|
/**
|
|
11694
|
-
* @
|
|
11681
|
+
* @since 1.52
|
|
11695
11682
|
*
|
|
11696
11683
|
* Gets content of aggregation {@link #getExpandedHeading expandedHeading}.
|
|
11697
11684
|
*
|
|
@@ -11720,7 +11707,7 @@ declare namespace sap {
|
|
|
11720
11707
|
*/
|
|
11721
11708
|
getHeading(): sap.ui.core.Control;
|
|
11722
11709
|
/**
|
|
11723
|
-
* @
|
|
11710
|
+
* @since 1.52
|
|
11724
11711
|
*
|
|
11725
11712
|
* Gets content of aggregation {@link #getNavigationActions navigationActions}.
|
|
11726
11713
|
*
|
|
@@ -11737,7 +11724,7 @@ declare namespace sap {
|
|
|
11737
11724
|
*/
|
|
11738
11725
|
getNavigationActions(): sap.m.Button[];
|
|
11739
11726
|
/**
|
|
11740
|
-
* @
|
|
11727
|
+
* @since 1.50
|
|
11741
11728
|
* @deprecated (since 1.54) - Please use the `areaShrinkRatio` property instead. The value of `areaShrinkRatio`
|
|
11742
11729
|
* must be set in `Heading:Content:Actions` format where Heading, Content and Actions are numbers greater
|
|
11743
11730
|
* than or equal to 0. The greater value a section has the faster it shrinks when the screen size is being
|
|
@@ -11771,7 +11758,7 @@ declare namespace sap {
|
|
|
11771
11758
|
*/
|
|
11772
11759
|
getSnappedContent(): sap.ui.core.Control[];
|
|
11773
11760
|
/**
|
|
11774
|
-
* @
|
|
11761
|
+
* @since 1.52
|
|
11775
11762
|
*
|
|
11776
11763
|
* Gets content of aggregation {@link #getSnappedHeading snappedHeading}.
|
|
11777
11764
|
*
|
|
@@ -11788,7 +11775,7 @@ declare namespace sap {
|
|
|
11788
11775
|
*/
|
|
11789
11776
|
getSnappedHeading(): sap.ui.core.Control;
|
|
11790
11777
|
/**
|
|
11791
|
-
* @
|
|
11778
|
+
* @since 1.63
|
|
11792
11779
|
*
|
|
11793
11780
|
* Gets content of aggregation {@link #getSnappedTitleOnMobile snappedTitleOnMobile}.
|
|
11794
11781
|
*
|
|
@@ -11815,7 +11802,7 @@ declare namespace sap {
|
|
|
11815
11802
|
oAction: sap.ui.core.Control
|
|
11816
11803
|
): int;
|
|
11817
11804
|
/**
|
|
11818
|
-
* @
|
|
11805
|
+
* @since 1.50
|
|
11819
11806
|
*
|
|
11820
11807
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
11821
11808
|
* its index if found or -1 otherwise.
|
|
@@ -11841,7 +11828,7 @@ declare namespace sap {
|
|
|
11841
11828
|
oExpandedContent: sap.ui.core.Control
|
|
11842
11829
|
): int;
|
|
11843
11830
|
/**
|
|
11844
|
-
* @
|
|
11831
|
+
* @since 1.52
|
|
11845
11832
|
*
|
|
11846
11833
|
* Checks for the provided `sap.m.Button` in the aggregation {@link #getNavigationActions navigationActions}.
|
|
11847
11834
|
* and returns its index if found or -1 otherwise.
|
|
@@ -11884,7 +11871,7 @@ declare namespace sap {
|
|
|
11884
11871
|
iIndex: int
|
|
11885
11872
|
): this;
|
|
11886
11873
|
/**
|
|
11887
|
-
* @
|
|
11874
|
+
* @since 1.50
|
|
11888
11875
|
*
|
|
11889
11876
|
* Inserts a content into the aggregation {@link #getContent content}.
|
|
11890
11877
|
*
|
|
@@ -11920,7 +11907,7 @@ declare namespace sap {
|
|
|
11920
11907
|
iIndex: int
|
|
11921
11908
|
): this;
|
|
11922
11909
|
/**
|
|
11923
|
-
* @
|
|
11910
|
+
* @since 1.52
|
|
11924
11911
|
*
|
|
11925
11912
|
* Inserts a navigationAction into the aggregation {@link #getNavigationActions navigationActions}.
|
|
11926
11913
|
*
|
|
@@ -11975,7 +11962,7 @@ declare namespace sap {
|
|
|
11975
11962
|
*/
|
|
11976
11963
|
removeAllActions(): sap.ui.core.Control[];
|
|
11977
11964
|
/**
|
|
11978
|
-
* @
|
|
11965
|
+
* @since 1.78
|
|
11979
11966
|
*
|
|
11980
11967
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
11981
11968
|
*
|
|
@@ -11983,7 +11970,7 @@ declare namespace sap {
|
|
|
11983
11970
|
*/
|
|
11984
11971
|
removeAllAriaDescribedBy(): sap.ui.core.ID[];
|
|
11985
11972
|
/**
|
|
11986
|
-
* @
|
|
11973
|
+
* @since 1.50
|
|
11987
11974
|
*
|
|
11988
11975
|
* Removes all the controls from the aggregation {@link #getContent content}.
|
|
11989
11976
|
*
|
|
@@ -12001,7 +11988,7 @@ declare namespace sap {
|
|
|
12001
11988
|
*/
|
|
12002
11989
|
removeAllExpandedContent(): sap.ui.core.Control[];
|
|
12003
11990
|
/**
|
|
12004
|
-
* @
|
|
11991
|
+
* @since 1.52
|
|
12005
11992
|
*
|
|
12006
11993
|
* Removes all the controls from the aggregation {@link #getNavigationActions navigationActions}.
|
|
12007
11994
|
*
|
|
@@ -12019,7 +12006,7 @@ declare namespace sap {
|
|
|
12019
12006
|
*/
|
|
12020
12007
|
removeAllSnappedContent(): sap.ui.core.Control[];
|
|
12021
12008
|
/**
|
|
12022
|
-
* @
|
|
12009
|
+
* @since 1.78
|
|
12023
12010
|
*
|
|
12024
12011
|
* Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
12025
12012
|
*
|
|
@@ -12032,7 +12019,7 @@ declare namespace sap {
|
|
|
12032
12019
|
vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
12033
12020
|
): sap.ui.core.ID | null;
|
|
12034
12021
|
/**
|
|
12035
|
-
* @
|
|
12022
|
+
* @since 1.50
|
|
12036
12023
|
*
|
|
12037
12024
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
12038
12025
|
*
|
|
@@ -12056,7 +12043,7 @@ declare namespace sap {
|
|
|
12056
12043
|
vExpandedContent: int | string | sap.ui.core.Control
|
|
12057
12044
|
): sap.ui.core.Control | null;
|
|
12058
12045
|
/**
|
|
12059
|
-
* @
|
|
12046
|
+
* @since 1.52
|
|
12060
12047
|
*
|
|
12061
12048
|
* Removes a navigationAction from the aggregation {@link #getNavigationActions navigationActions}.
|
|
12062
12049
|
*
|
|
@@ -12080,7 +12067,7 @@ declare namespace sap {
|
|
|
12080
12067
|
vSnappedContent: int | string | sap.ui.core.Control
|
|
12081
12068
|
): sap.ui.core.Control | null;
|
|
12082
12069
|
/**
|
|
12083
|
-
* @
|
|
12070
|
+
* @since 1.54
|
|
12084
12071
|
*
|
|
12085
12072
|
* Sets the value of the `areaShrinkRatio` property.
|
|
12086
12073
|
*
|
|
@@ -12093,7 +12080,7 @@ declare namespace sap {
|
|
|
12093
12080
|
sAreaShrinkRatio: sap.f.DynamicPageTitleShrinkRatio
|
|
12094
12081
|
): this;
|
|
12095
12082
|
/**
|
|
12096
|
-
* @
|
|
12083
|
+
* @since 1.58
|
|
12097
12084
|
*
|
|
12098
12085
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
12099
12086
|
*
|
|
@@ -12113,7 +12100,7 @@ declare namespace sap {
|
|
|
12113
12100
|
sBackgroundDesign: sap.m.BackgroundDesign
|
|
12114
12101
|
): this;
|
|
12115
12102
|
/**
|
|
12116
|
-
* @
|
|
12103
|
+
* @since 1.52
|
|
12117
12104
|
*
|
|
12118
12105
|
* Sets the aggregated {@link #getBreadcrumbs breadcrumbs}.
|
|
12119
12106
|
*
|
|
@@ -12126,7 +12113,7 @@ declare namespace sap {
|
|
|
12126
12113
|
oBreadcrumbs: sap.m.IBreadcrumbs
|
|
12127
12114
|
): this;
|
|
12128
12115
|
/**
|
|
12129
|
-
* @
|
|
12116
|
+
* @since 1.52
|
|
12130
12117
|
*
|
|
12131
12118
|
* Sets the aggregated {@link #getExpandedHeading expandedHeading}.
|
|
12132
12119
|
*
|
|
@@ -12150,7 +12137,7 @@ declare namespace sap {
|
|
|
12150
12137
|
oHeading: sap.ui.core.Control
|
|
12151
12138
|
): this;
|
|
12152
12139
|
/**
|
|
12153
|
-
* @
|
|
12140
|
+
* @since 1.50
|
|
12154
12141
|
* @deprecated (since 1.54) - Please use the `areaShrinkRatio` property instead. The value of `areaShrinkRatio`
|
|
12155
12142
|
* must be set in `Heading:Content:Actions` format where Heading, Content and Actions are numbers greater
|
|
12156
12143
|
* than or equal to 0. The greater value a section has the faster it shrinks when the screen size is being
|
|
@@ -12181,7 +12168,7 @@ declare namespace sap {
|
|
|
12181
12168
|
sPrimaryArea?: sap.f.DynamicPageTitleArea
|
|
12182
12169
|
): this;
|
|
12183
12170
|
/**
|
|
12184
|
-
* @
|
|
12171
|
+
* @since 1.52
|
|
12185
12172
|
*
|
|
12186
12173
|
* Sets the aggregated {@link #getSnappedHeading snappedHeading}.
|
|
12187
12174
|
*
|
|
@@ -12194,7 +12181,7 @@ declare namespace sap {
|
|
|
12194
12181
|
oSnappedHeading: sap.ui.core.Control
|
|
12195
12182
|
): this;
|
|
12196
12183
|
/**
|
|
12197
|
-
* @
|
|
12184
|
+
* @since 1.63
|
|
12198
12185
|
*
|
|
12199
12186
|
* Sets the aggregated {@link #getSnappedTitleOnMobile snappedTitleOnMobile}.
|
|
12200
12187
|
*
|
|
@@ -12208,7 +12195,7 @@ declare namespace sap {
|
|
|
12208
12195
|
): this;
|
|
12209
12196
|
}
|
|
12210
12197
|
/**
|
|
12211
|
-
* @
|
|
12198
|
+
* @since 1.46
|
|
12212
12199
|
*
|
|
12213
12200
|
* Implements the list-detail-detail paradigm by displaying up to three pages in separate columns.
|
|
12214
12201
|
*
|
|
@@ -12376,7 +12363,7 @@ declare namespace sap {
|
|
|
12376
12363
|
* The function to be called when the event occurs
|
|
12377
12364
|
*/
|
|
12378
12365
|
fnFunction: (
|
|
12379
|
-
p1:
|
|
12366
|
+
p1: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
|
|
12380
12367
|
) => void,
|
|
12381
12368
|
/**
|
|
12382
12369
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
@@ -12401,7 +12388,7 @@ declare namespace sap {
|
|
|
12401
12388
|
* The function to be called when the event occurs
|
|
12402
12389
|
*/
|
|
12403
12390
|
fnFunction: (
|
|
12404
|
-
p1:
|
|
12391
|
+
p1: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
|
|
12405
12392
|
) => void,
|
|
12406
12393
|
/**
|
|
12407
12394
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
@@ -12431,7 +12418,7 @@ declare namespace sap {
|
|
|
12431
12418
|
* The function to be called when the event occurs
|
|
12432
12419
|
*/
|
|
12433
12420
|
fnFunction: (
|
|
12434
|
-
p1:
|
|
12421
|
+
p1: FlexibleColumnLayout$AfterEndColumnNavigateEvent
|
|
12435
12422
|
) => void,
|
|
12436
12423
|
/**
|
|
12437
12424
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
@@ -12456,7 +12443,7 @@ declare namespace sap {
|
|
|
12456
12443
|
* The function to be called when the event occurs
|
|
12457
12444
|
*/
|
|
12458
12445
|
fnFunction: (
|
|
12459
|
-
p1:
|
|
12446
|
+
p1: FlexibleColumnLayout$AfterEndColumnNavigateEvent
|
|
12460
12447
|
) => void,
|
|
12461
12448
|
/**
|
|
12462
12449
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
@@ -12486,7 +12473,7 @@ declare namespace sap {
|
|
|
12486
12473
|
* The function to be called when the event occurs
|
|
12487
12474
|
*/
|
|
12488
12475
|
fnFunction: (
|
|
12489
|
-
p1:
|
|
12476
|
+
p1: FlexibleColumnLayout$AfterMidColumnNavigateEvent
|
|
12490
12477
|
) => void,
|
|
12491
12478
|
/**
|
|
12492
12479
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
@@ -12511,7 +12498,7 @@ declare namespace sap {
|
|
|
12511
12498
|
* The function to be called when the event occurs
|
|
12512
12499
|
*/
|
|
12513
12500
|
fnFunction: (
|
|
12514
|
-
p1:
|
|
12501
|
+
p1: FlexibleColumnLayout$AfterMidColumnNavigateEvent
|
|
12515
12502
|
) => void,
|
|
12516
12503
|
/**
|
|
12517
12504
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
@@ -12540,9 +12527,7 @@ declare namespace sap {
|
|
|
12540
12527
|
/**
|
|
12541
12528
|
* The function to be called when the event occurs
|
|
12542
12529
|
*/
|
|
12543
|
-
fnFunction: (
|
|
12544
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters>
|
|
12545
|
-
) => void,
|
|
12530
|
+
fnFunction: (p1: FlexibleColumnLayout$BeginColumnNavigateEvent) => void,
|
|
12546
12531
|
/**
|
|
12547
12532
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12548
12533
|
*/
|
|
@@ -12565,16 +12550,14 @@ declare namespace sap {
|
|
|
12565
12550
|
/**
|
|
12566
12551
|
* The function to be called when the event occurs
|
|
12567
12552
|
*/
|
|
12568
|
-
fnFunction: (
|
|
12569
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters>
|
|
12570
|
-
) => void,
|
|
12553
|
+
fnFunction: (p1: FlexibleColumnLayout$BeginColumnNavigateEvent) => void,
|
|
12571
12554
|
/**
|
|
12572
12555
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12573
12556
|
*/
|
|
12574
12557
|
oListener?: object
|
|
12575
12558
|
): this;
|
|
12576
12559
|
/**
|
|
12577
|
-
* @
|
|
12560
|
+
* @since 1.76
|
|
12578
12561
|
*
|
|
12579
12562
|
* Attaches event handler `fnFunction` to the {@link #event:columnResize columnResize} event of this `sap.f.FlexibleColumnLayout`.
|
|
12580
12563
|
*
|
|
@@ -12594,16 +12577,14 @@ declare namespace sap {
|
|
|
12594
12577
|
/**
|
|
12595
12578
|
* The function to be called when the event occurs
|
|
12596
12579
|
*/
|
|
12597
|
-
fnFunction: (
|
|
12598
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
|
|
12599
|
-
) => void,
|
|
12580
|
+
fnFunction: (p1: FlexibleColumnLayout$ColumnResizeEvent) => void,
|
|
12600
12581
|
/**
|
|
12601
12582
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12602
12583
|
*/
|
|
12603
12584
|
oListener?: object
|
|
12604
12585
|
): this;
|
|
12605
12586
|
/**
|
|
12606
|
-
* @
|
|
12587
|
+
* @since 1.76
|
|
12607
12588
|
*
|
|
12608
12589
|
* Attaches event handler `fnFunction` to the {@link #event:columnResize columnResize} event of this `sap.f.FlexibleColumnLayout`.
|
|
12609
12590
|
*
|
|
@@ -12618,9 +12599,7 @@ declare namespace sap {
|
|
|
12618
12599
|
/**
|
|
12619
12600
|
* The function to be called when the event occurs
|
|
12620
12601
|
*/
|
|
12621
|
-
fnFunction: (
|
|
12622
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
|
|
12623
|
-
) => void,
|
|
12602
|
+
fnFunction: (p1: FlexibleColumnLayout$ColumnResizeEvent) => void,
|
|
12624
12603
|
/**
|
|
12625
12604
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12626
12605
|
*/
|
|
@@ -12648,9 +12627,7 @@ declare namespace sap {
|
|
|
12648
12627
|
/**
|
|
12649
12628
|
* The function to be called when the event occurs
|
|
12650
12629
|
*/
|
|
12651
|
-
fnFunction: (
|
|
12652
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters>
|
|
12653
|
-
) => void,
|
|
12630
|
+
fnFunction: (p1: FlexibleColumnLayout$EndColumnNavigateEvent) => void,
|
|
12654
12631
|
/**
|
|
12655
12632
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12656
12633
|
*/
|
|
@@ -12673,9 +12650,7 @@ declare namespace sap {
|
|
|
12673
12650
|
/**
|
|
12674
12651
|
* The function to be called when the event occurs
|
|
12675
12652
|
*/
|
|
12676
|
-
fnFunction: (
|
|
12677
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters>
|
|
12678
|
-
) => void,
|
|
12653
|
+
fnFunction: (p1: FlexibleColumnLayout$EndColumnNavigateEvent) => void,
|
|
12679
12654
|
/**
|
|
12680
12655
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12681
12656
|
*/
|
|
@@ -12703,9 +12678,7 @@ declare namespace sap {
|
|
|
12703
12678
|
/**
|
|
12704
12679
|
* The function to be called when the event occurs
|
|
12705
12680
|
*/
|
|
12706
|
-
fnFunction: (
|
|
12707
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters>
|
|
12708
|
-
) => void,
|
|
12681
|
+
fnFunction: (p1: FlexibleColumnLayout$MidColumnNavigateEvent) => void,
|
|
12709
12682
|
/**
|
|
12710
12683
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12711
12684
|
*/
|
|
@@ -12728,9 +12701,7 @@ declare namespace sap {
|
|
|
12728
12701
|
/**
|
|
12729
12702
|
* The function to be called when the event occurs
|
|
12730
12703
|
*/
|
|
12731
|
-
fnFunction: (
|
|
12732
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters>
|
|
12733
|
-
) => void,
|
|
12704
|
+
fnFunction: (p1: FlexibleColumnLayout$MidColumnNavigateEvent) => void,
|
|
12734
12705
|
/**
|
|
12735
12706
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12736
12707
|
*/
|
|
@@ -12764,9 +12735,7 @@ declare namespace sap {
|
|
|
12764
12735
|
/**
|
|
12765
12736
|
* The function to be called when the event occurs
|
|
12766
12737
|
*/
|
|
12767
|
-
fnFunction: (
|
|
12768
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
|
|
12769
|
-
) => void,
|
|
12738
|
+
fnFunction: (p1: FlexibleColumnLayout$StateChangeEvent) => void,
|
|
12770
12739
|
/**
|
|
12771
12740
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12772
12741
|
*/
|
|
@@ -12795,9 +12764,7 @@ declare namespace sap {
|
|
|
12795
12764
|
/**
|
|
12796
12765
|
* The function to be called when the event occurs
|
|
12797
12766
|
*/
|
|
12798
|
-
fnFunction: (
|
|
12799
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
|
|
12800
|
-
) => void,
|
|
12767
|
+
fnFunction: (p1: FlexibleColumnLayout$StateChangeEvent) => void,
|
|
12801
12768
|
/**
|
|
12802
12769
|
* Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
|
|
12803
12770
|
*/
|
|
@@ -12966,7 +12933,7 @@ declare namespace sap {
|
|
|
12966
12933
|
*/
|
|
12967
12934
|
destroyEndColumnPages(): this;
|
|
12968
12935
|
/**
|
|
12969
|
-
* @
|
|
12936
|
+
* @since 1.95
|
|
12970
12937
|
*
|
|
12971
12938
|
* Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
12972
12939
|
*
|
|
@@ -12992,7 +12959,7 @@ declare namespace sap {
|
|
|
12992
12959
|
* The function to be called, when the event occurs
|
|
12993
12960
|
*/
|
|
12994
12961
|
fnFunction: (
|
|
12995
|
-
p1:
|
|
12962
|
+
p1: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
|
|
12996
12963
|
) => void,
|
|
12997
12964
|
/**
|
|
12998
12965
|
* Context object on which the given function had to be called
|
|
@@ -13012,7 +12979,7 @@ declare namespace sap {
|
|
|
13012
12979
|
* The function to be called, when the event occurs
|
|
13013
12980
|
*/
|
|
13014
12981
|
fnFunction: (
|
|
13015
|
-
p1:
|
|
12982
|
+
p1: FlexibleColumnLayout$AfterEndColumnNavigateEvent
|
|
13016
12983
|
) => void,
|
|
13017
12984
|
/**
|
|
13018
12985
|
* Context object on which the given function had to be called
|
|
@@ -13032,7 +12999,7 @@ declare namespace sap {
|
|
|
13032
12999
|
* The function to be called, when the event occurs
|
|
13033
13000
|
*/
|
|
13034
13001
|
fnFunction: (
|
|
13035
|
-
p1:
|
|
13002
|
+
p1: FlexibleColumnLayout$AfterMidColumnNavigateEvent
|
|
13036
13003
|
) => void,
|
|
13037
13004
|
/**
|
|
13038
13005
|
* Context object on which the given function had to be called
|
|
@@ -13051,16 +13018,14 @@ declare namespace sap {
|
|
|
13051
13018
|
/**
|
|
13052
13019
|
* The function to be called, when the event occurs
|
|
13053
13020
|
*/
|
|
13054
|
-
fnFunction: (
|
|
13055
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters>
|
|
13056
|
-
) => void,
|
|
13021
|
+
fnFunction: (p1: FlexibleColumnLayout$BeginColumnNavigateEvent) => void,
|
|
13057
13022
|
/**
|
|
13058
13023
|
* Context object on which the given function had to be called
|
|
13059
13024
|
*/
|
|
13060
13025
|
oListener?: object
|
|
13061
13026
|
): this;
|
|
13062
13027
|
/**
|
|
13063
|
-
* @
|
|
13028
|
+
* @since 1.76
|
|
13064
13029
|
*
|
|
13065
13030
|
* Detaches event handler `fnFunction` from the {@link #event:columnResize columnResize} event of this `sap.f.FlexibleColumnLayout`.
|
|
13066
13031
|
*
|
|
@@ -13072,9 +13037,7 @@ declare namespace sap {
|
|
|
13072
13037
|
/**
|
|
13073
13038
|
* The function to be called, when the event occurs
|
|
13074
13039
|
*/
|
|
13075
|
-
fnFunction: (
|
|
13076
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
|
|
13077
|
-
) => void,
|
|
13040
|
+
fnFunction: (p1: FlexibleColumnLayout$ColumnResizeEvent) => void,
|
|
13078
13041
|
/**
|
|
13079
13042
|
* Context object on which the given function had to be called
|
|
13080
13043
|
*/
|
|
@@ -13092,9 +13055,7 @@ declare namespace sap {
|
|
|
13092
13055
|
/**
|
|
13093
13056
|
* The function to be called, when the event occurs
|
|
13094
13057
|
*/
|
|
13095
|
-
fnFunction: (
|
|
13096
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters>
|
|
13097
|
-
) => void,
|
|
13058
|
+
fnFunction: (p1: FlexibleColumnLayout$EndColumnNavigateEvent) => void,
|
|
13098
13059
|
/**
|
|
13099
13060
|
* Context object on which the given function had to be called
|
|
13100
13061
|
*/
|
|
@@ -13112,9 +13073,7 @@ declare namespace sap {
|
|
|
13112
13073
|
/**
|
|
13113
13074
|
* The function to be called, when the event occurs
|
|
13114
13075
|
*/
|
|
13115
|
-
fnFunction: (
|
|
13116
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters>
|
|
13117
|
-
) => void,
|
|
13076
|
+
fnFunction: (p1: FlexibleColumnLayout$MidColumnNavigateEvent) => void,
|
|
13118
13077
|
/**
|
|
13119
13078
|
* Context object on which the given function had to be called
|
|
13120
13079
|
*/
|
|
@@ -13131,16 +13090,14 @@ declare namespace sap {
|
|
|
13131
13090
|
/**
|
|
13132
13091
|
* The function to be called, when the event occurs
|
|
13133
13092
|
*/
|
|
13134
|
-
fnFunction: (
|
|
13135
|
-
p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
|
|
13136
|
-
) => void,
|
|
13093
|
+
fnFunction: (p1: FlexibleColumnLayout$StateChangeEvent) => void,
|
|
13137
13094
|
/**
|
|
13138
13095
|
* Context object on which the given function had to be called
|
|
13139
13096
|
*/
|
|
13140
13097
|
oListener?: object
|
|
13141
13098
|
): this;
|
|
13142
13099
|
/**
|
|
13143
|
-
* @
|
|
13100
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13144
13101
|
*
|
|
13145
13102
|
* Fires event {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate} to attached listeners.
|
|
13146
13103
|
*
|
|
@@ -13150,10 +13107,10 @@ declare namespace sap {
|
|
|
13150
13107
|
/**
|
|
13151
13108
|
* Parameters to pass along with the event
|
|
13152
13109
|
*/
|
|
13153
|
-
mParameters?: sap.f
|
|
13110
|
+
mParameters?: sap.f.FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters
|
|
13154
13111
|
): this;
|
|
13155
13112
|
/**
|
|
13156
|
-
* @
|
|
13113
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13157
13114
|
*
|
|
13158
13115
|
* Fires event {@link #event:afterEndColumnNavigate afterEndColumnNavigate} to attached listeners.
|
|
13159
13116
|
*
|
|
@@ -13163,10 +13120,10 @@ declare namespace sap {
|
|
|
13163
13120
|
/**
|
|
13164
13121
|
* Parameters to pass along with the event
|
|
13165
13122
|
*/
|
|
13166
|
-
mParameters?: sap.f
|
|
13123
|
+
mParameters?: sap.f.FlexibleColumnLayout$AfterEndColumnNavigateEventParameters
|
|
13167
13124
|
): this;
|
|
13168
13125
|
/**
|
|
13169
|
-
* @
|
|
13126
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13170
13127
|
*
|
|
13171
13128
|
* Fires event {@link #event:afterMidColumnNavigate afterMidColumnNavigate} to attached listeners.
|
|
13172
13129
|
*
|
|
@@ -13176,10 +13133,10 @@ declare namespace sap {
|
|
|
13176
13133
|
/**
|
|
13177
13134
|
* Parameters to pass along with the event
|
|
13178
13135
|
*/
|
|
13179
|
-
mParameters?: sap.f
|
|
13136
|
+
mParameters?: sap.f.FlexibleColumnLayout$AfterMidColumnNavigateEventParameters
|
|
13180
13137
|
): this;
|
|
13181
13138
|
/**
|
|
13182
|
-
* @
|
|
13139
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13183
13140
|
*
|
|
13184
13141
|
* Fires event {@link #event:beginColumnNavigate beginColumnNavigate} to attached listeners.
|
|
13185
13142
|
*
|
|
@@ -13192,11 +13149,11 @@ declare namespace sap {
|
|
|
13192
13149
|
/**
|
|
13193
13150
|
* Parameters to pass along with the event
|
|
13194
13151
|
*/
|
|
13195
|
-
mParameters?: sap.f
|
|
13152
|
+
mParameters?: sap.f.FlexibleColumnLayout$BeginColumnNavigateEventParameters
|
|
13196
13153
|
): boolean;
|
|
13197
13154
|
/**
|
|
13198
|
-
* @
|
|
13199
|
-
* @
|
|
13155
|
+
* @since 1.76
|
|
13156
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13200
13157
|
*
|
|
13201
13158
|
* Fires event {@link #event:columnResize columnResize} to attached listeners.
|
|
13202
13159
|
*
|
|
@@ -13206,10 +13163,10 @@ declare namespace sap {
|
|
|
13206
13163
|
/**
|
|
13207
13164
|
* Parameters to pass along with the event
|
|
13208
13165
|
*/
|
|
13209
|
-
mParameters?: sap.f
|
|
13166
|
+
mParameters?: sap.f.FlexibleColumnLayout$ColumnResizeEventParameters
|
|
13210
13167
|
): this;
|
|
13211
13168
|
/**
|
|
13212
|
-
* @
|
|
13169
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13213
13170
|
*
|
|
13214
13171
|
* Fires event {@link #event:endColumnNavigate endColumnNavigate} to attached listeners.
|
|
13215
13172
|
*
|
|
@@ -13222,10 +13179,10 @@ declare namespace sap {
|
|
|
13222
13179
|
/**
|
|
13223
13180
|
* Parameters to pass along with the event
|
|
13224
13181
|
*/
|
|
13225
|
-
mParameters?: sap.f
|
|
13182
|
+
mParameters?: sap.f.FlexibleColumnLayout$EndColumnNavigateEventParameters
|
|
13226
13183
|
): boolean;
|
|
13227
13184
|
/**
|
|
13228
|
-
* @
|
|
13185
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13229
13186
|
*
|
|
13230
13187
|
* Fires event {@link #event:midColumnNavigate midColumnNavigate} to attached listeners.
|
|
13231
13188
|
*
|
|
@@ -13238,10 +13195,10 @@ declare namespace sap {
|
|
|
13238
13195
|
/**
|
|
13239
13196
|
* Parameters to pass along with the event
|
|
13240
13197
|
*/
|
|
13241
|
-
mParameters?: sap.f
|
|
13198
|
+
mParameters?: sap.f.FlexibleColumnLayout$MidColumnNavigateEventParameters
|
|
13242
13199
|
): boolean;
|
|
13243
13200
|
/**
|
|
13244
|
-
* @
|
|
13201
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
13245
13202
|
*
|
|
13246
13203
|
* Fires event {@link #event:stateChange stateChange} to attached listeners.
|
|
13247
13204
|
*
|
|
@@ -13251,10 +13208,10 @@ declare namespace sap {
|
|
|
13251
13208
|
/**
|
|
13252
13209
|
* Parameters to pass along with the event
|
|
13253
13210
|
*/
|
|
13254
|
-
mParameters?: sap.f
|
|
13211
|
+
mParameters?: sap.f.FlexibleColumnLayout$StateChangeEventParameters
|
|
13255
13212
|
): this;
|
|
13256
13213
|
/**
|
|
13257
|
-
* @
|
|
13214
|
+
* @since 1.76
|
|
13258
13215
|
*
|
|
13259
13216
|
* Gets current value of property {@link #getAutoFocus autoFocus}.
|
|
13260
13217
|
*
|
|
@@ -13269,7 +13226,7 @@ declare namespace sap {
|
|
|
13269
13226
|
*/
|
|
13270
13227
|
getAutoFocus(): boolean;
|
|
13271
13228
|
/**
|
|
13272
|
-
* @
|
|
13229
|
+
* @since 1.54
|
|
13273
13230
|
*
|
|
13274
13231
|
* Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
|
|
13275
13232
|
*
|
|
@@ -13371,7 +13328,7 @@ declare namespace sap {
|
|
|
13371
13328
|
*/
|
|
13372
13329
|
getInitialMidColumnPage(): sap.ui.core.ID;
|
|
13373
13330
|
/**
|
|
13374
|
-
* @
|
|
13331
|
+
* @since 1.95
|
|
13375
13332
|
*
|
|
13376
13333
|
* Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
13377
13334
|
*
|
|
@@ -13410,7 +13367,7 @@ declare namespace sap {
|
|
|
13410
13367
|
*/
|
|
13411
13368
|
getMidColumnPages(): sap.ui.core.Control[];
|
|
13412
13369
|
/**
|
|
13413
|
-
* @
|
|
13370
|
+
* @since 1.77
|
|
13414
13371
|
*
|
|
13415
13372
|
* Gets current value of property {@link #getRestoreFocusOnBackNavigation restoreFocusOnBackNavigation}.
|
|
13416
13373
|
*
|
|
@@ -13567,7 +13524,7 @@ declare namespace sap {
|
|
|
13567
13524
|
vMidColumnPage: int | string | sap.ui.core.Control
|
|
13568
13525
|
): sap.ui.core.Control | null;
|
|
13569
13526
|
/**
|
|
13570
|
-
* @
|
|
13527
|
+
* @since 1.76
|
|
13571
13528
|
*
|
|
13572
13529
|
* Sets a new value for property {@link #getAutoFocus autoFocus}.
|
|
13573
13530
|
*
|
|
@@ -13589,7 +13546,7 @@ declare namespace sap {
|
|
|
13589
13546
|
bAutoFocus?: boolean
|
|
13590
13547
|
): this;
|
|
13591
13548
|
/**
|
|
13592
|
-
* @
|
|
13549
|
+
* @since 1.54
|
|
13593
13550
|
*
|
|
13594
13551
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
13595
13552
|
*
|
|
@@ -13702,7 +13659,7 @@ declare namespace sap {
|
|
|
13702
13659
|
oInitialMidColumnPage: sap.ui.core.ID | sap.ui.core.Control
|
|
13703
13660
|
): this;
|
|
13704
13661
|
/**
|
|
13705
|
-
* @
|
|
13662
|
+
* @since 1.95
|
|
13706
13663
|
*
|
|
13707
13664
|
* Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
|
|
13708
13665
|
*
|
|
@@ -13735,7 +13692,7 @@ declare namespace sap {
|
|
|
13735
13692
|
sLayout?: sap.f.LayoutType
|
|
13736
13693
|
): this;
|
|
13737
13694
|
/**
|
|
13738
|
-
* @
|
|
13695
|
+
* @since 1.77
|
|
13739
13696
|
*
|
|
13740
13697
|
* Sets a new value for property {@link #getRestoreFocusOnBackNavigation restoreFocusOnBackNavigation}.
|
|
13741
13698
|
*
|
|
@@ -14066,7 +14023,7 @@ declare namespace sap {
|
|
|
14066
14023
|
): this;
|
|
14067
14024
|
}
|
|
14068
14025
|
/**
|
|
14069
|
-
* @
|
|
14026
|
+
* @since 1.95
|
|
14070
14027
|
*
|
|
14071
14028
|
* Settings for accessible landmarks which can be applied to the container elements of a `sap.f.FlexibleColumnLayout`
|
|
14072
14029
|
* control. For example, these landmarks are used by assistive technologies (such as screen readers) to
|
|
@@ -14342,7 +14299,7 @@ declare namespace sap {
|
|
|
14342
14299
|
): this;
|
|
14343
14300
|
}
|
|
14344
14301
|
/**
|
|
14345
|
-
* @
|
|
14302
|
+
* @since 1.46.0
|
|
14346
14303
|
*
|
|
14347
14304
|
* Helper class, facilitating the implementation of the recommended UX design of a `sap.f.FlexibleColumnLayout`-based
|
|
14348
14305
|
* app.
|
|
@@ -14498,7 +14455,7 @@ declare namespace sap {
|
|
|
14498
14455
|
iNextLevel: int
|
|
14499
14456
|
): sap.f.FlexibleColumnLayoutSemanticHelper.UIState;
|
|
14500
14457
|
/**
|
|
14501
|
-
* @
|
|
14458
|
+
* @since 1.72
|
|
14502
14459
|
*
|
|
14503
14460
|
* Returns `true` if internal `FlexibleColumnLayout` reference is rendered in the DOM tree.
|
|
14504
14461
|
*
|
|
@@ -14506,7 +14463,7 @@ declare namespace sap {
|
|
|
14506
14463
|
*/
|
|
14507
14464
|
isDOMReady(): boolean;
|
|
14508
14465
|
/**
|
|
14509
|
-
* @
|
|
14466
|
+
* @since 1.72
|
|
14510
14467
|
*
|
|
14511
14468
|
* Abstract wrapper for {@link sap.f.FlexibleColumnLayoutSemanticHelper#isDOMReady}. Returns `true` if criteria
|
|
14512
14469
|
* are met for the APIs in this helper to be used.
|
|
@@ -14515,7 +14472,7 @@ declare namespace sap {
|
|
|
14515
14472
|
*/
|
|
14516
14473
|
isReady(): boolean;
|
|
14517
14474
|
/**
|
|
14518
|
-
* @
|
|
14475
|
+
* @since 1.72
|
|
14519
14476
|
*
|
|
14520
14477
|
* Returns promise which can be used to find out when the internal `FlexibleColumnLayout` is rendered. This
|
|
14521
14478
|
* is needed because methods in `FlexibleColumnLayout` rely on the control being rendered.
|
|
@@ -14524,7 +14481,7 @@ declare namespace sap {
|
|
|
14524
14481
|
*/
|
|
14525
14482
|
whenDOMReady(): Promise<any>;
|
|
14526
14483
|
/**
|
|
14527
|
-
* @
|
|
14484
|
+
* @since 1.72
|
|
14528
14485
|
*
|
|
14529
14486
|
* Returns promise which can be used to find out when internal criteria for this helper's API reliability
|
|
14530
14487
|
* are met.
|
|
@@ -14534,7 +14491,7 @@ declare namespace sap {
|
|
|
14534
14491
|
whenReady(): Promise<any>;
|
|
14535
14492
|
}
|
|
14536
14493
|
/**
|
|
14537
|
-
* @
|
|
14494
|
+
* @since 1.65
|
|
14538
14495
|
*
|
|
14539
14496
|
* A layout container control used for aligning items with various sizes in a simple grid.
|
|
14540
14497
|
*
|
|
@@ -14737,9 +14694,7 @@ declare namespace sap {
|
|
|
14737
14694
|
/**
|
|
14738
14695
|
* The function to be called when the event occurs
|
|
14739
14696
|
*/
|
|
14740
|
-
fnFunction: (
|
|
14741
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
|
|
14742
|
-
) => void,
|
|
14697
|
+
fnFunction: (p1: GridContainer$BorderReachedEvent) => void,
|
|
14743
14698
|
/**
|
|
14744
14699
|
* Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
|
|
14745
14700
|
*/
|
|
@@ -14759,9 +14714,7 @@ declare namespace sap {
|
|
|
14759
14714
|
/**
|
|
14760
14715
|
* The function to be called when the event occurs
|
|
14761
14716
|
*/
|
|
14762
|
-
fnFunction: (
|
|
14763
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
|
|
14764
|
-
) => void,
|
|
14717
|
+
fnFunction: (p1: GridContainer$BorderReachedEvent) => void,
|
|
14765
14718
|
/**
|
|
14766
14719
|
* Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
|
|
14767
14720
|
*/
|
|
@@ -14786,9 +14739,7 @@ declare namespace sap {
|
|
|
14786
14739
|
/**
|
|
14787
14740
|
* The function to be called when the event occurs
|
|
14788
14741
|
*/
|
|
14789
|
-
fnFunction: (
|
|
14790
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
|
|
14791
|
-
) => void,
|
|
14742
|
+
fnFunction: (p1: GridContainer$ColumnsChangeEvent) => void,
|
|
14792
14743
|
/**
|
|
14793
14744
|
* Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
|
|
14794
14745
|
*/
|
|
@@ -14808,9 +14759,7 @@ declare namespace sap {
|
|
|
14808
14759
|
/**
|
|
14809
14760
|
* The function to be called when the event occurs
|
|
14810
14761
|
*/
|
|
14811
|
-
fnFunction: (
|
|
14812
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
|
|
14813
|
-
) => void,
|
|
14762
|
+
fnFunction: (p1: GridContainer$ColumnsChangeEvent) => void,
|
|
14814
14763
|
/**
|
|
14815
14764
|
* Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
|
|
14816
14765
|
*/
|
|
@@ -14835,9 +14784,7 @@ declare namespace sap {
|
|
|
14835
14784
|
/**
|
|
14836
14785
|
* The function to be called when the event occurs
|
|
14837
14786
|
*/
|
|
14838
|
-
fnFunction: (
|
|
14839
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
|
|
14840
|
-
) => void,
|
|
14787
|
+
fnFunction: (p1: GridContainer$LayoutChangeEvent) => void,
|
|
14841
14788
|
/**
|
|
14842
14789
|
* Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
|
|
14843
14790
|
*/
|
|
@@ -14857,9 +14804,7 @@ declare namespace sap {
|
|
|
14857
14804
|
/**
|
|
14858
14805
|
* The function to be called when the event occurs
|
|
14859
14806
|
*/
|
|
14860
|
-
fnFunction: (
|
|
14861
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
|
|
14862
|
-
) => void,
|
|
14807
|
+
fnFunction: (p1: GridContainer$LayoutChangeEvent) => void,
|
|
14863
14808
|
/**
|
|
14864
14809
|
* Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
|
|
14865
14810
|
*/
|
|
@@ -14902,7 +14847,7 @@ declare namespace sap {
|
|
|
14902
14847
|
*/
|
|
14903
14848
|
destroyLayoutXL(): this;
|
|
14904
14849
|
/**
|
|
14905
|
-
* @
|
|
14850
|
+
* @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
14906
14851
|
* may be done before its official public release. Use at your own discretion.
|
|
14907
14852
|
*
|
|
14908
14853
|
* Destroys the layoutXS in the aggregation {@link #getLayoutXS layoutXS}.
|
|
@@ -14922,9 +14867,7 @@ declare namespace sap {
|
|
|
14922
14867
|
/**
|
|
14923
14868
|
* The function to be called, when the event occurs
|
|
14924
14869
|
*/
|
|
14925
|
-
fnFunction: (
|
|
14926
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
|
|
14927
|
-
) => void,
|
|
14870
|
+
fnFunction: (p1: GridContainer$BorderReachedEvent) => void,
|
|
14928
14871
|
/**
|
|
14929
14872
|
* Context object on which the given function had to be called
|
|
14930
14873
|
*/
|
|
@@ -14942,9 +14885,7 @@ declare namespace sap {
|
|
|
14942
14885
|
/**
|
|
14943
14886
|
* The function to be called, when the event occurs
|
|
14944
14887
|
*/
|
|
14945
|
-
fnFunction: (
|
|
14946
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
|
|
14947
|
-
) => void,
|
|
14888
|
+
fnFunction: (p1: GridContainer$ColumnsChangeEvent) => void,
|
|
14948
14889
|
/**
|
|
14949
14890
|
* Context object on which the given function had to be called
|
|
14950
14891
|
*/
|
|
@@ -14961,16 +14902,14 @@ declare namespace sap {
|
|
|
14961
14902
|
/**
|
|
14962
14903
|
* The function to be called, when the event occurs
|
|
14963
14904
|
*/
|
|
14964
|
-
fnFunction: (
|
|
14965
|
-
p1: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
|
|
14966
|
-
) => void,
|
|
14905
|
+
fnFunction: (p1: GridContainer$LayoutChangeEvent) => void,
|
|
14967
14906
|
/**
|
|
14968
14907
|
* Context object on which the given function had to be called
|
|
14969
14908
|
*/
|
|
14970
14909
|
oListener?: object
|
|
14971
14910
|
): this;
|
|
14972
14911
|
/**
|
|
14973
|
-
* @
|
|
14912
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14974
14913
|
*
|
|
14975
14914
|
* Fires event {@link #event:borderReached borderReached} to attached listeners.
|
|
14976
14915
|
*
|
|
@@ -14980,10 +14919,10 @@ declare namespace sap {
|
|
|
14980
14919
|
/**
|
|
14981
14920
|
* Parameters to pass along with the event
|
|
14982
14921
|
*/
|
|
14983
|
-
mParameters?: sap.f
|
|
14922
|
+
mParameters?: sap.f.GridContainer$BorderReachedEventParameters
|
|
14984
14923
|
): this;
|
|
14985
14924
|
/**
|
|
14986
|
-
* @
|
|
14925
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
14987
14926
|
*
|
|
14988
14927
|
* Fires event {@link #event:columnsChange columnsChange} to attached listeners.
|
|
14989
14928
|
*
|
|
@@ -14993,10 +14932,10 @@ declare namespace sap {
|
|
|
14993
14932
|
/**
|
|
14994
14933
|
* Parameters to pass along with the event
|
|
14995
14934
|
*/
|
|
14996
|
-
mParameters?: sap.f
|
|
14935
|
+
mParameters?: sap.f.GridContainer$ColumnsChangeEventParameters
|
|
14997
14936
|
): this;
|
|
14998
14937
|
/**
|
|
14999
|
-
* @
|
|
14938
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
15000
14939
|
*
|
|
15001
14940
|
* Fires event {@link #event:layoutChange layoutChange} to attached listeners.
|
|
15002
14941
|
*
|
|
@@ -15006,10 +14945,10 @@ declare namespace sap {
|
|
|
15006
14945
|
/**
|
|
15007
14946
|
* Parameters to pass along with the event
|
|
15008
14947
|
*/
|
|
15009
|
-
mParameters?: sap.f
|
|
14948
|
+
mParameters?: sap.f.GridContainer$LayoutChangeEventParameters
|
|
15010
14949
|
): this;
|
|
15011
14950
|
/**
|
|
15012
|
-
* @
|
|
14951
|
+
* @experimental (since 1.81) - Behavior might change.
|
|
15013
14952
|
*
|
|
15014
14953
|
* Focuses the item on the given index. Should be called after successful drop operation.
|
|
15015
14954
|
*
|
|
@@ -15022,7 +14961,7 @@ declare namespace sap {
|
|
|
15022
14961
|
iIndex: int
|
|
15023
14962
|
): void;
|
|
15024
14963
|
/**
|
|
15025
|
-
* @
|
|
14964
|
+
* @experimental (since 1.85) - Behavior might change.
|
|
15026
14965
|
*
|
|
15027
14966
|
* Focuses an item in the given direction - up, down, left or right, from the starting position specified
|
|
15028
14967
|
* by row and column.
|
|
@@ -15056,7 +14995,7 @@ declare namespace sap {
|
|
|
15056
14995
|
*/
|
|
15057
14996
|
getActiveLayoutSettings(): sap.f.GridContainerSettings;
|
|
15058
14997
|
/**
|
|
15059
|
-
* @
|
|
14998
|
+
* @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15060
14999
|
* may be done before its official public release. Use at your own discretion.
|
|
15061
15000
|
*
|
|
15062
15001
|
* Gets current value of property {@link #getAllowDenseFill allowDenseFill}.
|
|
@@ -15091,7 +15030,7 @@ declare namespace sap {
|
|
|
15091
15030
|
*/
|
|
15092
15031
|
getContainerQuery(): boolean;
|
|
15093
15032
|
/**
|
|
15094
|
-
* @
|
|
15033
|
+
* @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15095
15034
|
* may be done before its official public release. Use at your own discretion.
|
|
15096
15035
|
*
|
|
15097
15036
|
* Gets current value of property {@link #getInlineBlockLayout inlineBlockLayout}.
|
|
@@ -15150,7 +15089,7 @@ declare namespace sap {
|
|
|
15150
15089
|
*/
|
|
15151
15090
|
getLayoutXL(): sap.f.GridContainerSettings;
|
|
15152
15091
|
/**
|
|
15153
|
-
* @
|
|
15092
|
+
* @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15154
15093
|
* may be done before its official public release. Use at your own discretion.
|
|
15155
15094
|
*
|
|
15156
15095
|
* Gets content of aggregation {@link #getLayoutXS layoutXS}.
|
|
@@ -15159,7 +15098,7 @@ declare namespace sap {
|
|
|
15159
15098
|
*/
|
|
15160
15099
|
getLayoutXS(): sap.f.GridContainerSettings;
|
|
15161
15100
|
/**
|
|
15162
|
-
* @
|
|
15101
|
+
* @experimental (since 1.81) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15163
15102
|
* may be done before its official public release.
|
|
15164
15103
|
*
|
|
15165
15104
|
* Gets current value of property {@link #getMinHeight minHeight}.
|
|
@@ -15278,7 +15217,7 @@ declare namespace sap {
|
|
|
15278
15217
|
vItem: int | string | sap.ui.core.Control
|
|
15279
15218
|
): sap.ui.core.Control | null;
|
|
15280
15219
|
/**
|
|
15281
|
-
* @
|
|
15220
|
+
* @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15282
15221
|
* may be done before its official public release. Use at your own discretion.
|
|
15283
15222
|
*
|
|
15284
15223
|
* Sets a new value for property {@link #getAllowDenseFill allowDenseFill}.
|
|
@@ -15319,7 +15258,7 @@ declare namespace sap {
|
|
|
15319
15258
|
bContainerQuery?: boolean
|
|
15320
15259
|
): this;
|
|
15321
15260
|
/**
|
|
15322
|
-
* @
|
|
15261
|
+
* @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15323
15262
|
* may be done before its official public release. Use at your own discretion.
|
|
15324
15263
|
*
|
|
15325
15264
|
* Sets a new value for property {@link #getInlineBlockLayout inlineBlockLayout}.
|
|
@@ -15398,7 +15337,7 @@ declare namespace sap {
|
|
|
15398
15337
|
oLayoutXL: sap.f.GridContainerSettings
|
|
15399
15338
|
): this;
|
|
15400
15339
|
/**
|
|
15401
|
-
* @
|
|
15340
|
+
* @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15402
15341
|
* may be done before its official public release. Use at your own discretion.
|
|
15403
15342
|
*
|
|
15404
15343
|
* Sets the aggregated {@link #getLayoutXS layoutXS}.
|
|
@@ -15412,7 +15351,7 @@ declare namespace sap {
|
|
|
15412
15351
|
oLayoutXS: sap.f.GridContainerSettings
|
|
15413
15352
|
): this;
|
|
15414
15353
|
/**
|
|
15415
|
-
* @
|
|
15354
|
+
* @experimental (since 1.81) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
15416
15355
|
* may be done before its official public release.
|
|
15417
15356
|
*
|
|
15418
15357
|
* Sets a new value for property {@link #getMinHeight minHeight}.
|
|
@@ -15471,8 +15410,8 @@ declare namespace sap {
|
|
|
15471
15410
|
): this;
|
|
15472
15411
|
}
|
|
15473
15412
|
/**
|
|
15474
|
-
* @
|
|
15475
|
-
* @
|
|
15413
|
+
* @since 1.65
|
|
15414
|
+
* @experimental (since 1.65) - This class is experimental. The API may change.
|
|
15476
15415
|
*
|
|
15477
15416
|
* Holds layout data for an item inside a `sap.f.GridContainer`.
|
|
15478
15417
|
*/
|
|
@@ -15565,7 +15504,7 @@ declare namespace sap {
|
|
|
15565
15504
|
*/
|
|
15566
15505
|
getMinRows(): int;
|
|
15567
15506
|
/**
|
|
15568
|
-
* @
|
|
15507
|
+
* @experimental (since 1.65) - this property may soon be removed, use minRows instead
|
|
15569
15508
|
*
|
|
15570
15509
|
* Gets current value of property {@link #getRows rows}.
|
|
15571
15510
|
*
|
|
@@ -15612,7 +15551,7 @@ declare namespace sap {
|
|
|
15612
15551
|
iMinRows: int
|
|
15613
15552
|
): this;
|
|
15614
15553
|
/**
|
|
15615
|
-
* @
|
|
15554
|
+
* @experimental (since 1.65) - this property may soon be removed, use minRows instead
|
|
15616
15555
|
*
|
|
15617
15556
|
* Sets a new value for property {@link #getRows rows}.
|
|
15618
15557
|
*
|
|
@@ -15630,8 +15569,8 @@ declare namespace sap {
|
|
|
15630
15569
|
): this;
|
|
15631
15570
|
}
|
|
15632
15571
|
/**
|
|
15633
|
-
* @
|
|
15634
|
-
* @
|
|
15572
|
+
* @since 1.65
|
|
15573
|
+
* @experimental (since 1.65) - This class is experimental. The API may change.
|
|
15635
15574
|
*
|
|
15636
15575
|
* Holds a set of settings that define the dimensions of `sap.f.GridContainer`.
|
|
15637
15576
|
*
|
|
@@ -15879,7 +15818,7 @@ declare namespace sap {
|
|
|
15879
15818
|
): this;
|
|
15880
15819
|
}
|
|
15881
15820
|
/**
|
|
15882
|
-
* @
|
|
15821
|
+
* @since 1.60
|
|
15883
15822
|
*
|
|
15884
15823
|
* A list-based control with grid layout capabilities.
|
|
15885
15824
|
*
|
|
@@ -16027,9 +15966,7 @@ declare namespace sap {
|
|
|
16027
15966
|
/**
|
|
16028
15967
|
* The function to be called when the event occurs
|
|
16029
15968
|
*/
|
|
16030
|
-
fnFunction: (
|
|
16031
|
-
p1: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
|
|
16032
|
-
) => void,
|
|
15969
|
+
fnFunction: (p1: GridList$BorderReachedEvent) => void,
|
|
16033
15970
|
/**
|
|
16034
15971
|
* Context object to call the event handler with. Defaults to this `sap.f.GridList` itself
|
|
16035
15972
|
*/
|
|
@@ -16049,9 +15986,7 @@ declare namespace sap {
|
|
|
16049
15986
|
/**
|
|
16050
15987
|
* The function to be called when the event occurs
|
|
16051
15988
|
*/
|
|
16052
|
-
fnFunction: (
|
|
16053
|
-
p1: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
|
|
16054
|
-
) => void,
|
|
15989
|
+
fnFunction: (p1: GridList$BorderReachedEvent) => void,
|
|
16055
15990
|
/**
|
|
16056
15991
|
* Context object to call the event handler with. Defaults to this `sap.f.GridList` itself
|
|
16057
15992
|
*/
|
|
@@ -16075,16 +16010,14 @@ declare namespace sap {
|
|
|
16075
16010
|
/**
|
|
16076
16011
|
* The function to be called, when the event occurs
|
|
16077
16012
|
*/
|
|
16078
|
-
fnFunction: (
|
|
16079
|
-
p1: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
|
|
16080
|
-
) => void,
|
|
16013
|
+
fnFunction: (p1: GridList$BorderReachedEvent) => void,
|
|
16081
16014
|
/**
|
|
16082
16015
|
* Context object on which the given function had to be called
|
|
16083
16016
|
*/
|
|
16084
16017
|
oListener?: object
|
|
16085
16018
|
): this;
|
|
16086
16019
|
/**
|
|
16087
|
-
* @
|
|
16020
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16088
16021
|
*
|
|
16089
16022
|
* Fires event {@link #event:borderReached borderReached} to attached listeners.
|
|
16090
16023
|
*
|
|
@@ -16094,10 +16027,10 @@ declare namespace sap {
|
|
|
16094
16027
|
/**
|
|
16095
16028
|
* Parameters to pass along with the event
|
|
16096
16029
|
*/
|
|
16097
|
-
mParameters?: sap.f
|
|
16030
|
+
mParameters?: sap.f.GridList$BorderReachedEventParameters
|
|
16098
16031
|
): this;
|
|
16099
16032
|
/**
|
|
16100
|
-
* @
|
|
16033
|
+
* @experimental (since 1.87) - Behavior might change.
|
|
16101
16034
|
*
|
|
16102
16035
|
* Focuses an item in the given direction - up, down, left or right, from the starting position specified
|
|
16103
16036
|
* by row and column.
|
|
@@ -16131,7 +16064,7 @@ declare namespace sap {
|
|
|
16131
16064
|
*/
|
|
16132
16065
|
getCustomLayout(): sap.ui.layout.cssgrid.GridLayoutBase;
|
|
16133
16066
|
/**
|
|
16134
|
-
* @
|
|
16067
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16135
16068
|
*
|
|
16136
16069
|
* Implements IGridConfigurable interface.
|
|
16137
16070
|
*
|
|
@@ -16139,7 +16072,7 @@ declare namespace sap {
|
|
|
16139
16072
|
*/
|
|
16140
16073
|
getGridDomRefs(): HTMLElement[];
|
|
16141
16074
|
/**
|
|
16142
|
-
* @
|
|
16075
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16143
16076
|
*
|
|
16144
16077
|
* Implements IGridConfigurable interface.
|
|
16145
16078
|
*
|
|
@@ -16159,7 +16092,7 @@ declare namespace sap {
|
|
|
16159
16092
|
): this;
|
|
16160
16093
|
}
|
|
16161
16094
|
/**
|
|
16162
|
-
* @
|
|
16095
|
+
* @since 1.70
|
|
16163
16096
|
*
|
|
16164
16097
|
* The `GridListItem` with a content aggregation can be used to display all kind of information. It is used
|
|
16165
16098
|
* in {@link sap.f.GridList sap.f.GridList}. **Note:** Even though the content aggregation can be used for
|
|
@@ -16320,7 +16253,7 @@ declare namespace sap {
|
|
|
16320
16253
|
unbindContent(): this;
|
|
16321
16254
|
}
|
|
16322
16255
|
/**
|
|
16323
|
-
* @
|
|
16256
|
+
* @since 1.88
|
|
16324
16257
|
* @deprecated (since 1.98) - Use the {@link sap.m.IllustratedMessage} instead.
|
|
16325
16258
|
*
|
|
16326
16259
|
* A combination of message and illustration to represent an empty or a success state.
|
|
@@ -16419,7 +16352,7 @@ declare namespace sap {
|
|
|
16419
16352
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16420
16353
|
}
|
|
16421
16354
|
/**
|
|
16422
|
-
* @
|
|
16355
|
+
* @since 1.88
|
|
16423
16356
|
* @deprecated (since 1.98) - Use the {@link sap.m.Illustration} instead.
|
|
16424
16357
|
*
|
|
16425
16358
|
* A simple control which uses a Symbol ID to visualize an SVG which has already been loaded in the {@link sap.f.IllustrationPool}.
|
|
@@ -16495,8 +16428,8 @@ declare namespace sap {
|
|
|
16495
16428
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16496
16429
|
}
|
|
16497
16430
|
/**
|
|
16498
|
-
* @
|
|
16499
|
-
* @
|
|
16431
|
+
* @since 1.72
|
|
16432
|
+
* @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
|
|
16500
16433
|
* the API might be changed in future.
|
|
16501
16434
|
*
|
|
16502
16435
|
* A layout control that provides specific configuration about how the items should be displayed.
|
|
@@ -16592,9 +16525,7 @@ declare namespace sap {
|
|
|
16592
16525
|
/**
|
|
16593
16526
|
* The function to be called when the event occurs
|
|
16594
16527
|
*/
|
|
16595
|
-
fnFunction: (
|
|
16596
|
-
p1: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
|
|
16597
|
-
) => void,
|
|
16528
|
+
fnFunction: (p1: ProductSwitch$ChangeEvent) => void,
|
|
16598
16529
|
/**
|
|
16599
16530
|
* Context object to call the event handler with. Defaults to this `sap.f.ProductSwitch` itself
|
|
16600
16531
|
*/
|
|
@@ -16614,9 +16545,7 @@ declare namespace sap {
|
|
|
16614
16545
|
/**
|
|
16615
16546
|
* The function to be called when the event occurs
|
|
16616
16547
|
*/
|
|
16617
|
-
fnFunction: (
|
|
16618
|
-
p1: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
|
|
16619
|
-
) => void,
|
|
16548
|
+
fnFunction: (p1: ProductSwitch$ChangeEvent) => void,
|
|
16620
16549
|
/**
|
|
16621
16550
|
* Context object to call the event handler with. Defaults to this `sap.f.ProductSwitch` itself
|
|
16622
16551
|
*/
|
|
@@ -16639,16 +16568,14 @@ declare namespace sap {
|
|
|
16639
16568
|
/**
|
|
16640
16569
|
* The function to be called, when the event occurs
|
|
16641
16570
|
*/
|
|
16642
|
-
fnFunction: (
|
|
16643
|
-
p1: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
|
|
16644
|
-
) => void,
|
|
16571
|
+
fnFunction: (p1: ProductSwitch$ChangeEvent) => void,
|
|
16645
16572
|
/**
|
|
16646
16573
|
* Context object on which the given function had to be called
|
|
16647
16574
|
*/
|
|
16648
16575
|
oListener?: object
|
|
16649
16576
|
): this;
|
|
16650
16577
|
/**
|
|
16651
|
-
* @
|
|
16578
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
16652
16579
|
*
|
|
16653
16580
|
* Fires event {@link #event:change change} to attached listeners.
|
|
16654
16581
|
*
|
|
@@ -16658,7 +16585,7 @@ declare namespace sap {
|
|
|
16658
16585
|
/**
|
|
16659
16586
|
* Parameters to pass along with the event
|
|
16660
16587
|
*/
|
|
16661
|
-
mParameters?: sap.f
|
|
16588
|
+
mParameters?: sap.f.ProductSwitch$ChangeEventParameters
|
|
16662
16589
|
): this;
|
|
16663
16590
|
/**
|
|
16664
16591
|
* Gets content of aggregation {@link #getItems items}.
|
|
@@ -16734,8 +16661,8 @@ declare namespace sap {
|
|
|
16734
16661
|
): this;
|
|
16735
16662
|
}
|
|
16736
16663
|
/**
|
|
16737
|
-
* @
|
|
16738
|
-
* @
|
|
16664
|
+
* @since 1.72
|
|
16665
|
+
* @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
|
|
16739
16666
|
* the API might be changed in future.
|
|
16740
16667
|
*
|
|
16741
16668
|
* A control that is used as a child of `ProductSwitch`
|
|
@@ -16934,7 +16861,7 @@ declare namespace sap {
|
|
|
16934
16861
|
): this;
|
|
16935
16862
|
}
|
|
16936
16863
|
/**
|
|
16937
|
-
* @
|
|
16864
|
+
* @since 1.67
|
|
16938
16865
|
*
|
|
16939
16866
|
* Defines specific properties of the search that are applied to `sap.f.ShellBar`.
|
|
16940
16867
|
*/
|
|
@@ -17031,9 +16958,7 @@ declare namespace sap {
|
|
|
17031
16958
|
/**
|
|
17032
16959
|
* The function to be called when the event occurs
|
|
17033
16960
|
*/
|
|
17034
|
-
fnFunction: (
|
|
17035
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
|
|
17036
|
-
) => void,
|
|
16961
|
+
fnFunction: (p1: SearchManager$LiveChangeEvent) => void,
|
|
17037
16962
|
/**
|
|
17038
16963
|
* Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
|
|
17039
16964
|
*/
|
|
@@ -17055,9 +16980,7 @@ declare namespace sap {
|
|
|
17055
16980
|
/**
|
|
17056
16981
|
* The function to be called when the event occurs
|
|
17057
16982
|
*/
|
|
17058
|
-
fnFunction: (
|
|
17059
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
|
|
17060
|
-
) => void,
|
|
16983
|
+
fnFunction: (p1: SearchManager$LiveChangeEvent) => void,
|
|
17061
16984
|
/**
|
|
17062
16985
|
* Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
|
|
17063
16986
|
*/
|
|
@@ -17082,9 +17005,7 @@ declare namespace sap {
|
|
|
17082
17005
|
/**
|
|
17083
17006
|
* The function to be called when the event occurs
|
|
17084
17007
|
*/
|
|
17085
|
-
fnFunction: (
|
|
17086
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
|
|
17087
|
-
) => void,
|
|
17008
|
+
fnFunction: (p1: SearchManager$SearchEvent) => void,
|
|
17088
17009
|
/**
|
|
17089
17010
|
* Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
|
|
17090
17011
|
*/
|
|
@@ -17104,9 +17025,7 @@ declare namespace sap {
|
|
|
17104
17025
|
/**
|
|
17105
17026
|
* The function to be called when the event occurs
|
|
17106
17027
|
*/
|
|
17107
|
-
fnFunction: (
|
|
17108
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
|
|
17109
|
-
) => void,
|
|
17028
|
+
fnFunction: (p1: SearchManager$SearchEvent) => void,
|
|
17110
17029
|
/**
|
|
17111
17030
|
* Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
|
|
17112
17031
|
*/
|
|
@@ -17133,9 +17052,7 @@ declare namespace sap {
|
|
|
17133
17052
|
/**
|
|
17134
17053
|
* The function to be called when the event occurs
|
|
17135
17054
|
*/
|
|
17136
|
-
fnFunction: (
|
|
17137
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
|
|
17138
|
-
) => void,
|
|
17055
|
+
fnFunction: (p1: SearchManager$SuggestEvent) => void,
|
|
17139
17056
|
/**
|
|
17140
17057
|
* Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
|
|
17141
17058
|
*/
|
|
@@ -17157,9 +17074,7 @@ declare namespace sap {
|
|
|
17157
17074
|
/**
|
|
17158
17075
|
* The function to be called when the event occurs
|
|
17159
17076
|
*/
|
|
17160
|
-
fnFunction: (
|
|
17161
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
|
|
17162
|
-
) => void,
|
|
17077
|
+
fnFunction: (p1: SearchManager$SuggestEvent) => void,
|
|
17163
17078
|
/**
|
|
17164
17079
|
* Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
|
|
17165
17080
|
*/
|
|
@@ -17196,9 +17111,7 @@ declare namespace sap {
|
|
|
17196
17111
|
/**
|
|
17197
17112
|
* The function to be called, when the event occurs
|
|
17198
17113
|
*/
|
|
17199
|
-
fnFunction: (
|
|
17200
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
|
|
17201
|
-
) => void,
|
|
17114
|
+
fnFunction: (p1: SearchManager$LiveChangeEvent) => void,
|
|
17202
17115
|
/**
|
|
17203
17116
|
* Context object on which the given function had to be called
|
|
17204
17117
|
*/
|
|
@@ -17215,9 +17128,7 @@ declare namespace sap {
|
|
|
17215
17128
|
/**
|
|
17216
17129
|
* The function to be called, when the event occurs
|
|
17217
17130
|
*/
|
|
17218
|
-
fnFunction: (
|
|
17219
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
|
|
17220
|
-
) => void,
|
|
17131
|
+
fnFunction: (p1: SearchManager$SearchEvent) => void,
|
|
17221
17132
|
/**
|
|
17222
17133
|
* Context object on which the given function had to be called
|
|
17223
17134
|
*/
|
|
@@ -17234,16 +17145,14 @@ declare namespace sap {
|
|
|
17234
17145
|
/**
|
|
17235
17146
|
* The function to be called, when the event occurs
|
|
17236
17147
|
*/
|
|
17237
|
-
fnFunction: (
|
|
17238
|
-
p1: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
|
|
17239
|
-
) => void,
|
|
17148
|
+
fnFunction: (p1: SearchManager$SuggestEvent) => void,
|
|
17240
17149
|
/**
|
|
17241
17150
|
* Context object on which the given function had to be called
|
|
17242
17151
|
*/
|
|
17243
17152
|
oListener?: object
|
|
17244
17153
|
): this;
|
|
17245
17154
|
/**
|
|
17246
|
-
* @
|
|
17155
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
17247
17156
|
*
|
|
17248
17157
|
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
17249
17158
|
*
|
|
@@ -17253,10 +17162,10 @@ declare namespace sap {
|
|
|
17253
17162
|
/**
|
|
17254
17163
|
* Parameters to pass along with the event
|
|
17255
17164
|
*/
|
|
17256
|
-
mParameters?: sap.f
|
|
17165
|
+
mParameters?: sap.f.SearchManager$LiveChangeEventParameters
|
|
17257
17166
|
): this;
|
|
17258
17167
|
/**
|
|
17259
|
-
* @
|
|
17168
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
17260
17169
|
*
|
|
17261
17170
|
* Fires event {@link #event:search search} to attached listeners.
|
|
17262
17171
|
*
|
|
@@ -17266,10 +17175,10 @@ declare namespace sap {
|
|
|
17266
17175
|
/**
|
|
17267
17176
|
* Parameters to pass along with the event
|
|
17268
17177
|
*/
|
|
17269
|
-
mParameters?: sap.f
|
|
17178
|
+
mParameters?: sap.f.SearchManager$SearchEventParameters
|
|
17270
17179
|
): this;
|
|
17271
17180
|
/**
|
|
17272
|
-
* @
|
|
17181
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
17273
17182
|
*
|
|
17274
17183
|
* Fires event {@link #event:suggest suggest} to attached listeners.
|
|
17275
17184
|
*
|
|
@@ -17279,7 +17188,7 @@ declare namespace sap {
|
|
|
17279
17188
|
/**
|
|
17280
17189
|
* Parameters to pass along with the event
|
|
17281
17190
|
*/
|
|
17282
|
-
mParameters?: sap.f
|
|
17191
|
+
mParameters?: sap.f.SearchManager$SuggestEventParameters
|
|
17283
17192
|
): this;
|
|
17284
17193
|
/**
|
|
17285
17194
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
@@ -17479,7 +17388,7 @@ declare namespace sap {
|
|
|
17479
17388
|
unbindValue(): this;
|
|
17480
17389
|
}
|
|
17481
17390
|
/**
|
|
17482
|
-
* @
|
|
17391
|
+
* @since 1.63
|
|
17483
17392
|
*
|
|
17484
17393
|
* A horizontal bar control holding multiple child controls used as application shell header.
|
|
17485
17394
|
*
|
|
@@ -17560,8 +17469,8 @@ declare namespace sap {
|
|
|
17560
17469
|
*/
|
|
17561
17470
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17562
17471
|
/**
|
|
17563
|
-
* @
|
|
17564
|
-
* @
|
|
17472
|
+
* @since 1.65
|
|
17473
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
17565
17474
|
*
|
|
17566
17475
|
* Sets classes according to the context of the page. Possible contexts are header, footer, and subheader.
|
|
17567
17476
|
*
|
|
@@ -17569,8 +17478,8 @@ declare namespace sap {
|
|
|
17569
17478
|
*/
|
|
17570
17479
|
_applyContextClassFor(): sap.m.IBar;
|
|
17571
17480
|
/**
|
|
17572
|
-
* @
|
|
17573
|
-
* @
|
|
17481
|
+
* @since 1.65
|
|
17482
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
17574
17483
|
*
|
|
17575
17484
|
* Sets the HTML tag according to the context of the page. Possible contexts are header, footer, and subheader.
|
|
17576
17485
|
*
|
|
@@ -17589,8 +17498,8 @@ declare namespace sap {
|
|
|
17589
17498
|
oAdditionalContent: sap.f.IShellBar
|
|
17590
17499
|
): this;
|
|
17591
17500
|
/**
|
|
17592
|
-
* @
|
|
17593
|
-
* @
|
|
17501
|
+
* @since 1.65
|
|
17502
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
17594
17503
|
*
|
|
17595
17504
|
* Sets classes and HTML tag according to the context of the page. Possible contexts are header, footer,
|
|
17596
17505
|
* and subheader
|
|
@@ -17617,9 +17526,7 @@ declare namespace sap {
|
|
|
17617
17526
|
/**
|
|
17618
17527
|
* The function to be called when the event occurs
|
|
17619
17528
|
*/
|
|
17620
|
-
fnFunction: (
|
|
17621
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
|
|
17622
|
-
) => void,
|
|
17529
|
+
fnFunction: (p1: ShellBar$AvatarPressedEvent) => void,
|
|
17623
17530
|
/**
|
|
17624
17531
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17625
17532
|
*/
|
|
@@ -17639,9 +17546,7 @@ declare namespace sap {
|
|
|
17639
17546
|
/**
|
|
17640
17547
|
* The function to be called when the event occurs
|
|
17641
17548
|
*/
|
|
17642
|
-
fnFunction: (
|
|
17643
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
|
|
17644
|
-
) => void,
|
|
17549
|
+
fnFunction: (p1: ShellBar$AvatarPressedEvent) => void,
|
|
17645
17550
|
/**
|
|
17646
17551
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17647
17552
|
*/
|
|
@@ -17667,9 +17572,7 @@ declare namespace sap {
|
|
|
17667
17572
|
/**
|
|
17668
17573
|
* The function to be called when the event occurs
|
|
17669
17574
|
*/
|
|
17670
|
-
fnFunction: (
|
|
17671
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
|
|
17672
|
-
) => void,
|
|
17575
|
+
fnFunction: (p1: ShellBar$CopilotPressedEvent) => void,
|
|
17673
17576
|
/**
|
|
17674
17577
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17675
17578
|
*/
|
|
@@ -17690,9 +17593,7 @@ declare namespace sap {
|
|
|
17690
17593
|
/**
|
|
17691
17594
|
* The function to be called when the event occurs
|
|
17692
17595
|
*/
|
|
17693
|
-
fnFunction: (
|
|
17694
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
|
|
17695
|
-
) => void,
|
|
17596
|
+
fnFunction: (p1: ShellBar$CopilotPressedEvent) => void,
|
|
17696
17597
|
/**
|
|
17697
17598
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17698
17599
|
*/
|
|
@@ -17718,9 +17619,7 @@ declare namespace sap {
|
|
|
17718
17619
|
/**
|
|
17719
17620
|
* The function to be called when the event occurs
|
|
17720
17621
|
*/
|
|
17721
|
-
fnFunction: (
|
|
17722
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
|
|
17723
|
-
) => void,
|
|
17622
|
+
fnFunction: (p1: ShellBar$HomeIconPressedEvent) => void,
|
|
17724
17623
|
/**
|
|
17725
17624
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17726
17625
|
*/
|
|
@@ -17741,9 +17640,7 @@ declare namespace sap {
|
|
|
17741
17640
|
/**
|
|
17742
17641
|
* The function to be called when the event occurs
|
|
17743
17642
|
*/
|
|
17744
|
-
fnFunction: (
|
|
17745
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
|
|
17746
|
-
) => void,
|
|
17643
|
+
fnFunction: (p1: ShellBar$HomeIconPressedEvent) => void,
|
|
17747
17644
|
/**
|
|
17748
17645
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17749
17646
|
*/
|
|
@@ -17769,9 +17666,7 @@ declare namespace sap {
|
|
|
17769
17666
|
/**
|
|
17770
17667
|
* The function to be called when the event occurs
|
|
17771
17668
|
*/
|
|
17772
|
-
fnFunction: (
|
|
17773
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
|
|
17774
|
-
) => void,
|
|
17669
|
+
fnFunction: (p1: ShellBar$MenuButtonPressedEvent) => void,
|
|
17775
17670
|
/**
|
|
17776
17671
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17777
17672
|
*/
|
|
@@ -17792,9 +17687,7 @@ declare namespace sap {
|
|
|
17792
17687
|
/**
|
|
17793
17688
|
* The function to be called when the event occurs
|
|
17794
17689
|
*/
|
|
17795
|
-
fnFunction: (
|
|
17796
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
|
|
17797
|
-
) => void,
|
|
17690
|
+
fnFunction: (p1: ShellBar$MenuButtonPressedEvent) => void,
|
|
17798
17691
|
/**
|
|
17799
17692
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17800
17693
|
*/
|
|
@@ -17820,9 +17713,7 @@ declare namespace sap {
|
|
|
17820
17713
|
/**
|
|
17821
17714
|
* The function to be called when the event occurs
|
|
17822
17715
|
*/
|
|
17823
|
-
fnFunction: (
|
|
17824
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
|
|
17825
|
-
) => void,
|
|
17716
|
+
fnFunction: (p1: ShellBar$NavButtonPressedEvent) => void,
|
|
17826
17717
|
/**
|
|
17827
17718
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17828
17719
|
*/
|
|
@@ -17843,9 +17734,7 @@ declare namespace sap {
|
|
|
17843
17734
|
/**
|
|
17844
17735
|
* The function to be called when the event occurs
|
|
17845
17736
|
*/
|
|
17846
|
-
fnFunction: (
|
|
17847
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
|
|
17848
|
-
) => void,
|
|
17737
|
+
fnFunction: (p1: ShellBar$NavButtonPressedEvent) => void,
|
|
17849
17738
|
/**
|
|
17850
17739
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17851
17740
|
*/
|
|
@@ -17871,9 +17760,7 @@ declare namespace sap {
|
|
|
17871
17760
|
/**
|
|
17872
17761
|
* The function to be called when the event occurs
|
|
17873
17762
|
*/
|
|
17874
|
-
fnFunction: (
|
|
17875
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarNotificationsPressedEventParameters>
|
|
17876
|
-
) => void,
|
|
17763
|
+
fnFunction: (p1: ShellBar$NotificationsPressedEvent) => void,
|
|
17877
17764
|
/**
|
|
17878
17765
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17879
17766
|
*/
|
|
@@ -17894,9 +17781,7 @@ declare namespace sap {
|
|
|
17894
17781
|
/**
|
|
17895
17782
|
* The function to be called when the event occurs
|
|
17896
17783
|
*/
|
|
17897
|
-
fnFunction: (
|
|
17898
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarNotificationsPressedEventParameters>
|
|
17899
|
-
) => void,
|
|
17784
|
+
fnFunction: (p1: ShellBar$NotificationsPressedEvent) => void,
|
|
17900
17785
|
/**
|
|
17901
17786
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17902
17787
|
*/
|
|
@@ -17922,9 +17807,7 @@ declare namespace sap {
|
|
|
17922
17807
|
/**
|
|
17923
17808
|
* The function to be called when the event occurs
|
|
17924
17809
|
*/
|
|
17925
|
-
fnFunction: (
|
|
17926
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarProductSwitcherPressedEventParameters>
|
|
17927
|
-
) => void,
|
|
17810
|
+
fnFunction: (p1: ShellBar$ProductSwitcherPressedEvent) => void,
|
|
17928
17811
|
/**
|
|
17929
17812
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17930
17813
|
*/
|
|
@@ -17945,9 +17828,7 @@ declare namespace sap {
|
|
|
17945
17828
|
/**
|
|
17946
17829
|
* The function to be called when the event occurs
|
|
17947
17830
|
*/
|
|
17948
|
-
fnFunction: (
|
|
17949
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarProductSwitcherPressedEventParameters>
|
|
17950
|
-
) => void,
|
|
17831
|
+
fnFunction: (p1: ShellBar$ProductSwitcherPressedEvent) => void,
|
|
17951
17832
|
/**
|
|
17952
17833
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17953
17834
|
*/
|
|
@@ -17973,9 +17854,7 @@ declare namespace sap {
|
|
|
17973
17854
|
/**
|
|
17974
17855
|
* The function to be called when the event occurs
|
|
17975
17856
|
*/
|
|
17976
|
-
fnFunction: (
|
|
17977
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
|
|
17978
|
-
) => void,
|
|
17857
|
+
fnFunction: (p1: ShellBar$SearchButtonPressedEvent) => void,
|
|
17979
17858
|
/**
|
|
17980
17859
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
17981
17860
|
*/
|
|
@@ -17996,9 +17875,7 @@ declare namespace sap {
|
|
|
17996
17875
|
/**
|
|
17997
17876
|
* The function to be called when the event occurs
|
|
17998
17877
|
*/
|
|
17999
|
-
fnFunction: (
|
|
18000
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
|
|
18001
|
-
) => void,
|
|
17878
|
+
fnFunction: (p1: ShellBar$SearchButtonPressedEvent) => void,
|
|
18002
17879
|
/**
|
|
18003
17880
|
* Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
|
|
18004
17881
|
*/
|
|
@@ -18023,7 +17900,7 @@ declare namespace sap {
|
|
|
18023
17900
|
*/
|
|
18024
17901
|
destroyProfile(): this;
|
|
18025
17902
|
/**
|
|
18026
|
-
* @
|
|
17903
|
+
* @since 1.67
|
|
18027
17904
|
*
|
|
18028
17905
|
* Destroys the searchManager in the aggregation {@link #getSearchManager searchManager}.
|
|
18029
17906
|
*
|
|
@@ -18042,9 +17919,7 @@ declare namespace sap {
|
|
|
18042
17919
|
/**
|
|
18043
17920
|
* The function to be called, when the event occurs
|
|
18044
17921
|
*/
|
|
18045
|
-
fnFunction: (
|
|
18046
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
|
|
18047
|
-
) => void,
|
|
17922
|
+
fnFunction: (p1: ShellBar$AvatarPressedEvent) => void,
|
|
18048
17923
|
/**
|
|
18049
17924
|
* Context object on which the given function had to be called
|
|
18050
17925
|
*/
|
|
@@ -18062,9 +17937,7 @@ declare namespace sap {
|
|
|
18062
17937
|
/**
|
|
18063
17938
|
* The function to be called, when the event occurs
|
|
18064
17939
|
*/
|
|
18065
|
-
fnFunction: (
|
|
18066
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
|
|
18067
|
-
) => void,
|
|
17940
|
+
fnFunction: (p1: ShellBar$CopilotPressedEvent) => void,
|
|
18068
17941
|
/**
|
|
18069
17942
|
* Context object on which the given function had to be called
|
|
18070
17943
|
*/
|
|
@@ -18082,9 +17955,7 @@ declare namespace sap {
|
|
|
18082
17955
|
/**
|
|
18083
17956
|
* The function to be called, when the event occurs
|
|
18084
17957
|
*/
|
|
18085
|
-
fnFunction: (
|
|
18086
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
|
|
18087
|
-
) => void,
|
|
17958
|
+
fnFunction: (p1: ShellBar$HomeIconPressedEvent) => void,
|
|
18088
17959
|
/**
|
|
18089
17960
|
* Context object on which the given function had to be called
|
|
18090
17961
|
*/
|
|
@@ -18102,9 +17973,7 @@ declare namespace sap {
|
|
|
18102
17973
|
/**
|
|
18103
17974
|
* The function to be called, when the event occurs
|
|
18104
17975
|
*/
|
|
18105
|
-
fnFunction: (
|
|
18106
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
|
|
18107
|
-
) => void,
|
|
17976
|
+
fnFunction: (p1: ShellBar$MenuButtonPressedEvent) => void,
|
|
18108
17977
|
/**
|
|
18109
17978
|
* Context object on which the given function had to be called
|
|
18110
17979
|
*/
|
|
@@ -18122,9 +17991,7 @@ declare namespace sap {
|
|
|
18122
17991
|
/**
|
|
18123
17992
|
* The function to be called, when the event occurs
|
|
18124
17993
|
*/
|
|
18125
|
-
fnFunction: (
|
|
18126
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
|
|
18127
|
-
) => void,
|
|
17994
|
+
fnFunction: (p1: ShellBar$NavButtonPressedEvent) => void,
|
|
18128
17995
|
/**
|
|
18129
17996
|
* Context object on which the given function had to be called
|
|
18130
17997
|
*/
|
|
@@ -18142,9 +18009,7 @@ declare namespace sap {
|
|
|
18142
18009
|
/**
|
|
18143
18010
|
* The function to be called, when the event occurs
|
|
18144
18011
|
*/
|
|
18145
|
-
fnFunction: (
|
|
18146
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarNotificationsPressedEventParameters>
|
|
18147
|
-
) => void,
|
|
18012
|
+
fnFunction: (p1: ShellBar$NotificationsPressedEvent) => void,
|
|
18148
18013
|
/**
|
|
18149
18014
|
* Context object on which the given function had to be called
|
|
18150
18015
|
*/
|
|
@@ -18162,9 +18027,7 @@ declare namespace sap {
|
|
|
18162
18027
|
/**
|
|
18163
18028
|
* The function to be called, when the event occurs
|
|
18164
18029
|
*/
|
|
18165
|
-
fnFunction: (
|
|
18166
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarProductSwitcherPressedEventParameters>
|
|
18167
|
-
) => void,
|
|
18030
|
+
fnFunction: (p1: ShellBar$ProductSwitcherPressedEvent) => void,
|
|
18168
18031
|
/**
|
|
18169
18032
|
* Context object on which the given function had to be called
|
|
18170
18033
|
*/
|
|
@@ -18182,16 +18045,14 @@ declare namespace sap {
|
|
|
18182
18045
|
/**
|
|
18183
18046
|
* The function to be called, when the event occurs
|
|
18184
18047
|
*/
|
|
18185
|
-
fnFunction: (
|
|
18186
|
-
p1: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
|
|
18187
|
-
) => void,
|
|
18048
|
+
fnFunction: (p1: ShellBar$SearchButtonPressedEvent) => void,
|
|
18188
18049
|
/**
|
|
18189
18050
|
* Context object on which the given function had to be called
|
|
18190
18051
|
*/
|
|
18191
18052
|
oListener?: object
|
|
18192
18053
|
): this;
|
|
18193
18054
|
/**
|
|
18194
|
-
* @
|
|
18055
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18195
18056
|
*
|
|
18196
18057
|
* Fires event {@link #event:avatarPressed avatarPressed} to attached listeners.
|
|
18197
18058
|
*
|
|
@@ -18201,10 +18062,10 @@ declare namespace sap {
|
|
|
18201
18062
|
/**
|
|
18202
18063
|
* Parameters to pass along with the event
|
|
18203
18064
|
*/
|
|
18204
|
-
mParameters?: sap.f
|
|
18065
|
+
mParameters?: sap.f.ShellBar$AvatarPressedEventParameters
|
|
18205
18066
|
): this;
|
|
18206
18067
|
/**
|
|
18207
|
-
* @
|
|
18068
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18208
18069
|
*
|
|
18209
18070
|
* Fires event {@link #event:copilotPressed copilotPressed} to attached listeners.
|
|
18210
18071
|
*
|
|
@@ -18214,10 +18075,10 @@ declare namespace sap {
|
|
|
18214
18075
|
/**
|
|
18215
18076
|
* Parameters to pass along with the event
|
|
18216
18077
|
*/
|
|
18217
|
-
mParameters?: sap.f
|
|
18078
|
+
mParameters?: sap.f.ShellBar$CopilotPressedEventParameters
|
|
18218
18079
|
): this;
|
|
18219
18080
|
/**
|
|
18220
|
-
* @
|
|
18081
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18221
18082
|
*
|
|
18222
18083
|
* Fires event {@link #event:homeIconPressed homeIconPressed} to attached listeners.
|
|
18223
18084
|
*
|
|
@@ -18227,10 +18088,10 @@ declare namespace sap {
|
|
|
18227
18088
|
/**
|
|
18228
18089
|
* Parameters to pass along with the event
|
|
18229
18090
|
*/
|
|
18230
|
-
mParameters?: sap.f
|
|
18091
|
+
mParameters?: sap.f.ShellBar$HomeIconPressedEventParameters
|
|
18231
18092
|
): this;
|
|
18232
18093
|
/**
|
|
18233
|
-
* @
|
|
18094
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18234
18095
|
*
|
|
18235
18096
|
* Fires event {@link #event:menuButtonPressed menuButtonPressed} to attached listeners.
|
|
18236
18097
|
*
|
|
@@ -18240,10 +18101,10 @@ declare namespace sap {
|
|
|
18240
18101
|
/**
|
|
18241
18102
|
* Parameters to pass along with the event
|
|
18242
18103
|
*/
|
|
18243
|
-
mParameters?: sap.f
|
|
18104
|
+
mParameters?: sap.f.ShellBar$MenuButtonPressedEventParameters
|
|
18244
18105
|
): this;
|
|
18245
18106
|
/**
|
|
18246
|
-
* @
|
|
18107
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18247
18108
|
*
|
|
18248
18109
|
* Fires event {@link #event:navButtonPressed navButtonPressed} to attached listeners.
|
|
18249
18110
|
*
|
|
@@ -18253,10 +18114,10 @@ declare namespace sap {
|
|
|
18253
18114
|
/**
|
|
18254
18115
|
* Parameters to pass along with the event
|
|
18255
18116
|
*/
|
|
18256
|
-
mParameters?: sap.f
|
|
18117
|
+
mParameters?: sap.f.ShellBar$NavButtonPressedEventParameters
|
|
18257
18118
|
): this;
|
|
18258
18119
|
/**
|
|
18259
|
-
* @
|
|
18120
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18260
18121
|
*
|
|
18261
18122
|
* Fires event {@link #event:notificationsPressed notificationsPressed} to attached listeners.
|
|
18262
18123
|
*
|
|
@@ -18266,10 +18127,10 @@ declare namespace sap {
|
|
|
18266
18127
|
/**
|
|
18267
18128
|
* Parameters to pass along with the event
|
|
18268
18129
|
*/
|
|
18269
|
-
mParameters?: sap.f
|
|
18130
|
+
mParameters?: sap.f.ShellBar$NotificationsPressedEventParameters
|
|
18270
18131
|
): this;
|
|
18271
18132
|
/**
|
|
18272
|
-
* @
|
|
18133
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18273
18134
|
*
|
|
18274
18135
|
* Fires event {@link #event:productSwitcherPressed productSwitcherPressed} to attached listeners.
|
|
18275
18136
|
*
|
|
@@ -18279,10 +18140,10 @@ declare namespace sap {
|
|
|
18279
18140
|
/**
|
|
18280
18141
|
* Parameters to pass along with the event
|
|
18281
18142
|
*/
|
|
18282
|
-
mParameters?: sap.f
|
|
18143
|
+
mParameters?: sap.f.ShellBar$ProductSwitcherPressedEventParameters
|
|
18283
18144
|
): this;
|
|
18284
18145
|
/**
|
|
18285
|
-
* @
|
|
18146
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18286
18147
|
*
|
|
18287
18148
|
* Fires event {@link #event:searchButtonPressed searchButtonPressed} to attached listeners.
|
|
18288
18149
|
*
|
|
@@ -18292,7 +18153,7 @@ declare namespace sap {
|
|
|
18292
18153
|
/**
|
|
18293
18154
|
* Parameters to pass along with the event
|
|
18294
18155
|
*/
|
|
18295
|
-
mParameters?: sap.f
|
|
18156
|
+
mParameters?: sap.f.ShellBar$SearchButtonPressedEventParameters
|
|
18296
18157
|
): this;
|
|
18297
18158
|
/**
|
|
18298
18159
|
* Gets content of aggregation {@link #getAdditionalContent additionalContent}.
|
|
@@ -18303,8 +18164,8 @@ declare namespace sap {
|
|
|
18303
18164
|
*/
|
|
18304
18165
|
getAdditionalContent(): sap.f.IShellBar[];
|
|
18305
18166
|
/**
|
|
18306
|
-
* @
|
|
18307
|
-
* @
|
|
18167
|
+
* @since 1.65
|
|
18168
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18308
18169
|
*
|
|
18309
18170
|
* Gets the available Bar contexts.
|
|
18310
18171
|
*
|
|
@@ -18322,7 +18183,7 @@ declare namespace sap {
|
|
|
18322
18183
|
*/
|
|
18323
18184
|
getHomeIcon(): sap.ui.core.URI;
|
|
18324
18185
|
/**
|
|
18325
|
-
* @
|
|
18186
|
+
* @since 1.67
|
|
18326
18187
|
*
|
|
18327
18188
|
* Gets current value of property {@link #getHomeIconTooltip homeIconTooltip}.
|
|
18328
18189
|
*
|
|
@@ -18334,8 +18195,8 @@ declare namespace sap {
|
|
|
18334
18195
|
*/
|
|
18335
18196
|
getHomeIconTooltip(): string;
|
|
18336
18197
|
/**
|
|
18337
|
-
* @
|
|
18338
|
-
* @
|
|
18198
|
+
* @since 1.65
|
|
18199
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18339
18200
|
*
|
|
18340
18201
|
* Gets the HTML tag of the root DOM Reference.
|
|
18341
18202
|
*
|
|
@@ -18349,7 +18210,7 @@ declare namespace sap {
|
|
|
18349
18210
|
*/
|
|
18350
18211
|
getMenu(): sap.m.Menu;
|
|
18351
18212
|
/**
|
|
18352
|
-
* @
|
|
18213
|
+
* @since 1.64
|
|
18353
18214
|
*
|
|
18354
18215
|
* Gets current value of property {@link #getNotificationsNumber notificationsNumber}.
|
|
18355
18216
|
*
|
|
@@ -18367,7 +18228,7 @@ declare namespace sap {
|
|
|
18367
18228
|
*/
|
|
18368
18229
|
getProfile(): sap.m.Avatar;
|
|
18369
18230
|
/**
|
|
18370
|
-
* @
|
|
18231
|
+
* @since 1.67
|
|
18371
18232
|
*
|
|
18372
18233
|
* Gets content of aggregation {@link #getSearchManager searchManager}.
|
|
18373
18234
|
*
|
|
@@ -18487,8 +18348,8 @@ declare namespace sap {
|
|
|
18487
18348
|
iIndex: int
|
|
18488
18349
|
): this;
|
|
18489
18350
|
/**
|
|
18490
|
-
* @
|
|
18491
|
-
* @
|
|
18351
|
+
* @since 1.65
|
|
18352
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18492
18353
|
*
|
|
18493
18354
|
* Returns if the bar is sensitive to the container context. Implementation of the IBar interface
|
|
18494
18355
|
*
|
|
@@ -18532,7 +18393,7 @@ declare namespace sap {
|
|
|
18532
18393
|
sHomeIcon?: sap.ui.core.URI
|
|
18533
18394
|
): this;
|
|
18534
18395
|
/**
|
|
18535
|
-
* @
|
|
18396
|
+
* @since 1.67
|
|
18536
18397
|
*
|
|
18537
18398
|
* Sets a new value for property {@link #getHomeIconTooltip homeIconTooltip}.
|
|
18538
18399
|
*
|
|
@@ -18551,8 +18412,8 @@ declare namespace sap {
|
|
|
18551
18412
|
sHomeIconTooltip?: string
|
|
18552
18413
|
): this;
|
|
18553
18414
|
/**
|
|
18554
|
-
* @
|
|
18555
|
-
* @
|
|
18415
|
+
* @since 1.65
|
|
18416
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18556
18417
|
*
|
|
18557
18418
|
* Sets the HTML tag of the root DOM Reference.
|
|
18558
18419
|
*
|
|
@@ -18582,7 +18443,7 @@ declare namespace sap {
|
|
|
18582
18443
|
oProfile: sap.m.Avatar
|
|
18583
18444
|
): this;
|
|
18584
18445
|
/**
|
|
18585
|
-
* @
|
|
18446
|
+
* @since 1.67
|
|
18586
18447
|
*
|
|
18587
18448
|
* Sets the aggregated {@link #getSearchManager searchManager}.
|
|
18588
18449
|
*
|
|
@@ -18733,7 +18594,7 @@ declare namespace sap {
|
|
|
18733
18594
|
): this;
|
|
18734
18595
|
}
|
|
18735
18596
|
/**
|
|
18736
|
-
* @
|
|
18597
|
+
* @since 1.107
|
|
18737
18598
|
*
|
|
18738
18599
|
* Overview:
|
|
18739
18600
|
*
|
|
@@ -18922,9 +18783,7 @@ declare namespace sap {
|
|
|
18922
18783
|
/**
|
|
18923
18784
|
* The function to be called when the event occurs
|
|
18924
18785
|
*/
|
|
18925
|
-
fnFunction: (
|
|
18926
|
-
p1: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
|
|
18927
|
-
) => void,
|
|
18786
|
+
fnFunction: (p1: SidePanel$ToggleEvent) => void,
|
|
18928
18787
|
/**
|
|
18929
18788
|
* Context object to call the event handler with. Defaults to this `sap.f.SidePanel` itself
|
|
18930
18789
|
*/
|
|
@@ -18953,9 +18812,7 @@ declare namespace sap {
|
|
|
18953
18812
|
/**
|
|
18954
18813
|
* The function to be called when the event occurs
|
|
18955
18814
|
*/
|
|
18956
|
-
fnFunction: (
|
|
18957
|
-
p1: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
|
|
18958
|
-
) => void,
|
|
18815
|
+
fnFunction: (p1: SidePanel$ToggleEvent) => void,
|
|
18959
18816
|
/**
|
|
18960
18817
|
* Context object to call the event handler with. Defaults to this `sap.f.SidePanel` itself
|
|
18961
18818
|
*/
|
|
@@ -18984,16 +18841,14 @@ declare namespace sap {
|
|
|
18984
18841
|
/**
|
|
18985
18842
|
* The function to be called, when the event occurs
|
|
18986
18843
|
*/
|
|
18987
|
-
fnFunction: (
|
|
18988
|
-
p1: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
|
|
18989
|
-
) => void,
|
|
18844
|
+
fnFunction: (p1: SidePanel$ToggleEvent) => void,
|
|
18990
18845
|
/**
|
|
18991
18846
|
* Context object on which the given function had to be called
|
|
18992
18847
|
*/
|
|
18993
18848
|
oListener?: object
|
|
18994
18849
|
): this;
|
|
18995
18850
|
/**
|
|
18996
|
-
* @
|
|
18851
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18997
18852
|
*
|
|
18998
18853
|
* Fires event {@link #event:toggle toggle} to attached listeners.
|
|
18999
18854
|
*
|
|
@@ -19006,7 +18861,7 @@ declare namespace sap {
|
|
|
19006
18861
|
/**
|
|
19007
18862
|
* Parameters to pass along with the event
|
|
19008
18863
|
*/
|
|
19009
|
-
mParameters?: sap.f
|
|
18864
|
+
mParameters?: sap.f.SidePanel$ToggleEventParameters
|
|
19010
18865
|
): boolean;
|
|
19011
18866
|
/**
|
|
19012
18867
|
* Gets current value of property {@link #getActionBarExpanded actionBarExpanded}.
|
|
@@ -19046,7 +18901,7 @@ declare namespace sap {
|
|
|
19046
18901
|
*/
|
|
19047
18902
|
getSelectedItem(): sap.ui.core.ID;
|
|
19048
18903
|
/**
|
|
19049
|
-
* @
|
|
18904
|
+
* @since 1.109.0
|
|
19050
18905
|
*
|
|
19051
18906
|
* Gets current value of property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
|
|
19052
18907
|
*
|
|
@@ -19060,7 +18915,7 @@ declare namespace sap {
|
|
|
19060
18915
|
*/
|
|
19061
18916
|
getSidePanelMaxWidth(): sap.ui.core.CSSSize;
|
|
19062
18917
|
/**
|
|
19063
|
-
* @
|
|
18918
|
+
* @since 1.109.0
|
|
19064
18919
|
*
|
|
19065
18920
|
* Gets current value of property {@link #getSidePanelMinWidth sidePanelMinWidth}.
|
|
19066
18921
|
*
|
|
@@ -19095,7 +18950,7 @@ declare namespace sap {
|
|
|
19095
18950
|
*/
|
|
19096
18951
|
getSidePanelResizable(): boolean;
|
|
19097
18952
|
/**
|
|
19098
|
-
* @
|
|
18953
|
+
* @since 1.109.0
|
|
19099
18954
|
*
|
|
19100
18955
|
* Gets current value of property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
|
|
19101
18956
|
*
|
|
@@ -19109,7 +18964,7 @@ declare namespace sap {
|
|
|
19109
18964
|
*/
|
|
19110
18965
|
getSidePanelResizeLargerStep(): int;
|
|
19111
18966
|
/**
|
|
19112
|
-
* @
|
|
18967
|
+
* @since 1.109.0
|
|
19113
18968
|
*
|
|
19114
18969
|
* Gets current value of property {@link #getSidePanelResizeStep sidePanelResizeStep}.
|
|
19115
18970
|
*
|
|
@@ -19265,7 +19120,7 @@ declare namespace sap {
|
|
|
19265
19120
|
sAriaLabel?: string
|
|
19266
19121
|
): this;
|
|
19267
19122
|
/**
|
|
19268
|
-
* @
|
|
19123
|
+
* @since 1.109.0
|
|
19269
19124
|
*
|
|
19270
19125
|
* Sets a new value for property {@link #getSidePanelMaxWidth sidePanelMaxWidth}.
|
|
19271
19126
|
*
|
|
@@ -19286,7 +19141,7 @@ declare namespace sap {
|
|
|
19286
19141
|
sSidePanelMaxWidth?: sap.ui.core.CSSSize
|
|
19287
19142
|
): this;
|
|
19288
19143
|
/**
|
|
19289
|
-
* @
|
|
19144
|
+
* @since 1.109.0
|
|
19290
19145
|
*
|
|
19291
19146
|
* Sets a new value for property {@link #getSidePanelMinWidth sidePanelMinWidth}.
|
|
19292
19147
|
*
|
|
@@ -19342,7 +19197,7 @@ declare namespace sap {
|
|
|
19342
19197
|
bSidePanelResizable?: boolean
|
|
19343
19198
|
): this;
|
|
19344
19199
|
/**
|
|
19345
|
-
* @
|
|
19200
|
+
* @since 1.109.0
|
|
19346
19201
|
*
|
|
19347
19202
|
* Sets a new value for property {@link #getSidePanelResizeLargerStep sidePanelResizeLargerStep}.
|
|
19348
19203
|
*
|
|
@@ -19363,7 +19218,7 @@ declare namespace sap {
|
|
|
19363
19218
|
iSidePanelResizeLargerStep?: int
|
|
19364
19219
|
): this;
|
|
19365
19220
|
/**
|
|
19366
|
-
* @
|
|
19221
|
+
* @since 1.109.0
|
|
19367
19222
|
*
|
|
19368
19223
|
* Sets a new value for property {@link #getSidePanelResizeStep sidePanelResizeStep}.
|
|
19369
19224
|
*
|
|
@@ -19385,7 +19240,7 @@ declare namespace sap {
|
|
|
19385
19240
|
): this;
|
|
19386
19241
|
}
|
|
19387
19242
|
/**
|
|
19388
|
-
* @
|
|
19243
|
+
* @since 1.107
|
|
19389
19244
|
*
|
|
19390
19245
|
* Overview:
|
|
19391
19246
|
*
|
|
@@ -19552,8 +19407,8 @@ declare namespace sap {
|
|
|
19552
19407
|
): this;
|
|
19553
19408
|
}
|
|
19554
19409
|
/**
|
|
19555
|
-
* @
|
|
19556
|
-
* @
|
|
19410
|
+
* @since 1.73
|
|
19411
|
+
* @experimental (since 1.73)
|
|
19557
19412
|
*
|
|
19558
19413
|
* Group modes for the {@link sap.f.AvatarGroup} control.
|
|
19559
19414
|
*/
|
|
@@ -19569,7 +19424,7 @@ declare namespace sap {
|
|
|
19569
19424
|
Individual = "Individual",
|
|
19570
19425
|
}
|
|
19571
19426
|
/**
|
|
19572
|
-
* @
|
|
19427
|
+
* @since 1.50
|
|
19573
19428
|
* @deprecated (since 1.54) - Consumers of the {@link sap.f.DynamicPageTitle} control should now use the
|
|
19574
19429
|
* `areaShrinkRatio` property instead of the `primaryArea` property.
|
|
19575
19430
|
*
|
|
@@ -19587,7 +19442,7 @@ declare namespace sap {
|
|
|
19587
19442
|
Middle = "Middle",
|
|
19588
19443
|
}
|
|
19589
19444
|
/**
|
|
19590
|
-
* @
|
|
19445
|
+
* @since 1.46
|
|
19591
19446
|
*
|
|
19592
19447
|
* Layouts, representing the number of columns to be displayed and their relative widths for a {@link sap.f.FlexibleColumnLayout }
|
|
19593
19448
|
* control.
|
|
@@ -19700,7 +19555,7 @@ declare namespace sap {
|
|
|
19700
19555
|
TwoColumnsMidExpanded = "TwoColumnsMidExpanded",
|
|
19701
19556
|
}
|
|
19702
19557
|
/**
|
|
19703
|
-
* @
|
|
19558
|
+
* @since 1.85
|
|
19704
19559
|
*
|
|
19705
19560
|
* Enumeration for different navigation directions.
|
|
19706
19561
|
*/
|
|
@@ -19723,7 +19578,7 @@ declare namespace sap {
|
|
|
19723
19578
|
Up = "Up",
|
|
19724
19579
|
}
|
|
19725
19580
|
/**
|
|
19726
|
-
* @
|
|
19581
|
+
* @since 1.104
|
|
19727
19582
|
*
|
|
19728
19583
|
* Enumeration for different SidePanel position.
|
|
19729
19584
|
*/
|
|
@@ -19738,7 +19593,7 @@ declare namespace sap {
|
|
|
19738
19593
|
Right = "Right",
|
|
19739
19594
|
}
|
|
19740
19595
|
/**
|
|
19741
|
-
* @
|
|
19596
|
+
* @since 1.69
|
|
19742
19597
|
* @deprecated (since 1.73) - Use the {@link sap.m.AvatarColor} instead.
|
|
19743
19598
|
*
|
|
19744
19599
|
* Possible background color options for the {@link sap.f.Avatar} control.
|
|
@@ -19754,7 +19609,7 @@ declare namespace sap {
|
|
|
19754
19609
|
type AvatarColor = sap.m.AvatarColor;
|
|
19755
19610
|
|
|
19756
19611
|
/**
|
|
19757
|
-
* @
|
|
19612
|
+
* @since 1.46
|
|
19758
19613
|
* @deprecated (since 1.73) - Use the {@link sap.m.AvatarImageFitType} instead.
|
|
19759
19614
|
*
|
|
19760
19615
|
* Types of image size and position that determine how an image fits in the {@link sap.f.Avatar} control
|
|
@@ -19765,7 +19620,7 @@ declare namespace sap {
|
|
|
19765
19620
|
type AvatarImageFitType = sap.m.AvatarImageFitType;
|
|
19766
19621
|
|
|
19767
19622
|
/**
|
|
19768
|
-
* @
|
|
19623
|
+
* @since 1.46
|
|
19769
19624
|
* @deprecated (since 1.73) - Use the {@link sap.m.AvatarShape} instead.
|
|
19770
19625
|
*
|
|
19771
19626
|
* Types of shape for the {@link sap.f.Avatar} control.
|
|
@@ -19775,7 +19630,7 @@ declare namespace sap {
|
|
|
19775
19630
|
type AvatarShape = sap.m.AvatarShape;
|
|
19776
19631
|
|
|
19777
19632
|
/**
|
|
19778
|
-
* @
|
|
19633
|
+
* @since 1.46
|
|
19779
19634
|
* @deprecated (since 1.73) - Use the {@link sap.m.AvatarSize} instead.
|
|
19780
19635
|
*
|
|
19781
19636
|
* Predefined sizes for the {@link sap.f.Avatar} control.
|
|
@@ -19785,7 +19640,7 @@ declare namespace sap {
|
|
|
19785
19640
|
type AvatarSize = sap.m.AvatarSize;
|
|
19786
19641
|
|
|
19787
19642
|
/**
|
|
19788
|
-
* @
|
|
19643
|
+
* @since 1.46
|
|
19789
19644
|
* @deprecated (since 1.73) - Use the {@link sap.m.AvatarType} instead.
|
|
19790
19645
|
*
|
|
19791
19646
|
* Types of {@link sap.f.Avatar} based on the displayed content.
|
|
@@ -19795,14 +19650,14 @@ declare namespace sap {
|
|
|
19795
19650
|
type AvatarType = sap.m.AvatarType;
|
|
19796
19651
|
|
|
19797
19652
|
/**
|
|
19798
|
-
* @
|
|
19653
|
+
* @since 1.54
|
|
19799
19654
|
*
|
|
19800
19655
|
* A string type that represents the shrink ratios of the areas within the `sap.f.DynamicPageTitle`.
|
|
19801
19656
|
*/
|
|
19802
19657
|
type DynamicPageTitleShrinkRatio = string;
|
|
19803
19658
|
|
|
19804
19659
|
/**
|
|
19805
|
-
* @
|
|
19660
|
+
* @since 1.88
|
|
19806
19661
|
* @deprecated (since 1.98) - Use the {@link sap.m.IllustratedMessageSize} instead.
|
|
19807
19662
|
*
|
|
19808
19663
|
* Available `Illustration` sizes for the {@link sap.f.IllustratedMessage} control.
|
|
@@ -19812,7 +19667,7 @@ declare namespace sap {
|
|
|
19812
19667
|
type IllustratedMessageSize = sap.m.IllustratedMessageSize;
|
|
19813
19668
|
|
|
19814
19669
|
/**
|
|
19815
|
-
* @
|
|
19670
|
+
* @since 1.88
|
|
19816
19671
|
* @deprecated (since 1.98) - Use the {@link sap.m.IllustratedMessageType} instead.
|
|
19817
19672
|
*
|
|
19818
19673
|
* Available `Illustration` types for the {@link sap.f.IllustratedMessage} control.
|
|
@@ -19820,6 +19675,62 @@ declare namespace sap {
|
|
|
19820
19675
|
* This is an alias for {@link sap.m.IllustratedMessageType} and only kept for compatibility reasons.
|
|
19821
19676
|
*/
|
|
19822
19677
|
type IllustratedMessageType = sap.m.IllustratedMessageType;
|
|
19678
|
+
|
|
19679
|
+
type AvatarGroup$PressEvent = sap.ui.base.Event<AvatarGroup$PressEventParameters>;
|
|
19680
|
+
|
|
19681
|
+
type DynamicPage$PinnedStateChangeEvent = sap.ui.base.Event<DynamicPage$PinnedStateChangeEventParameters>;
|
|
19682
|
+
|
|
19683
|
+
type DynamicPageTitle$StateChangeEvent = sap.ui.base.Event<DynamicPageTitle$StateChangeEventParameters>;
|
|
19684
|
+
|
|
19685
|
+
type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>;
|
|
19686
|
+
|
|
19687
|
+
type FlexibleColumnLayout$AfterEndColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>;
|
|
19688
|
+
|
|
19689
|
+
type FlexibleColumnLayout$AfterMidColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>;
|
|
19690
|
+
|
|
19691
|
+
type FlexibleColumnLayout$BeginColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$BeginColumnNavigateEventParameters>;
|
|
19692
|
+
|
|
19693
|
+
type FlexibleColumnLayout$ColumnResizeEvent = sap.ui.base.Event<FlexibleColumnLayout$ColumnResizeEventParameters>;
|
|
19694
|
+
|
|
19695
|
+
type FlexibleColumnLayout$EndColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$EndColumnNavigateEventParameters>;
|
|
19696
|
+
|
|
19697
|
+
type FlexibleColumnLayout$MidColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$MidColumnNavigateEventParameters>;
|
|
19698
|
+
|
|
19699
|
+
type FlexibleColumnLayout$StateChangeEvent = sap.ui.base.Event<FlexibleColumnLayout$StateChangeEventParameters>;
|
|
19700
|
+
|
|
19701
|
+
type GridContainer$BorderReachedEvent = sap.ui.base.Event<GridContainer$BorderReachedEventParameters>;
|
|
19702
|
+
|
|
19703
|
+
type GridContainer$ColumnsChangeEvent = sap.ui.base.Event<GridContainer$ColumnsChangeEventParameters>;
|
|
19704
|
+
|
|
19705
|
+
type GridContainer$LayoutChangeEvent = sap.ui.base.Event<GridContainer$LayoutChangeEventParameters>;
|
|
19706
|
+
|
|
19707
|
+
type GridList$BorderReachedEvent = sap.ui.base.Event<GridList$BorderReachedEventParameters>;
|
|
19708
|
+
|
|
19709
|
+
type ProductSwitch$ChangeEvent = sap.ui.base.Event<ProductSwitch$ChangeEventParameters>;
|
|
19710
|
+
|
|
19711
|
+
type SearchManager$LiveChangeEvent = sap.ui.base.Event<SearchManager$LiveChangeEventParameters>;
|
|
19712
|
+
|
|
19713
|
+
type SearchManager$SearchEvent = sap.ui.base.Event<SearchManager$SearchEventParameters>;
|
|
19714
|
+
|
|
19715
|
+
type SearchManager$SuggestEvent = sap.ui.base.Event<SearchManager$SuggestEventParameters>;
|
|
19716
|
+
|
|
19717
|
+
type ShellBar$AvatarPressedEvent = sap.ui.base.Event<ShellBar$AvatarPressedEventParameters>;
|
|
19718
|
+
|
|
19719
|
+
type ShellBar$CopilotPressedEvent = sap.ui.base.Event<ShellBar$CopilotPressedEventParameters>;
|
|
19720
|
+
|
|
19721
|
+
type ShellBar$HomeIconPressedEvent = sap.ui.base.Event<ShellBar$HomeIconPressedEventParameters>;
|
|
19722
|
+
|
|
19723
|
+
type ShellBar$MenuButtonPressedEvent = sap.ui.base.Event<ShellBar$MenuButtonPressedEventParameters>;
|
|
19724
|
+
|
|
19725
|
+
type ShellBar$NavButtonPressedEvent = sap.ui.base.Event<ShellBar$NavButtonPressedEventParameters>;
|
|
19726
|
+
|
|
19727
|
+
type ShellBar$NotificationsPressedEvent = sap.ui.base.Event<ShellBar$NotificationsPressedEventParameters>;
|
|
19728
|
+
|
|
19729
|
+
type ShellBar$ProductSwitcherPressedEvent = sap.ui.base.Event<ShellBar$ProductSwitcherPressedEventParameters>;
|
|
19730
|
+
|
|
19731
|
+
type ShellBar$SearchButtonPressedEvent = sap.ui.base.Event<ShellBar$SearchButtonPressedEventParameters>;
|
|
19732
|
+
|
|
19733
|
+
type SidePanel$ToggleEvent = sap.ui.base.Event<SidePanel$ToggleEventParameters>;
|
|
19823
19734
|
}
|
|
19824
19735
|
|
|
19825
19736
|
namespace tnt {
|