@openui5/types 1.120.7 → 1.120.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +1484 -843
- package/types/sap.m.d.ts +12919 -8163
- package/types/sap.tnt.d.ts +190 -95
- package/types/sap.ui.codeeditor.d.ts +46 -17
- package/types/sap.ui.commons.d.ts +1992 -668
- package/types/sap.ui.core.d.ts +5281 -3347
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +95 -46
- package/types/sap.ui.integration.d.ts +446 -387
- package/types/sap.ui.layout.d.ts +1116 -634
- package/types/sap.ui.mdc.d.ts +1907 -1277
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +42 -10
- package/types/sap.ui.support.d.ts +31 -23
- package/types/sap.ui.table.d.ts +898 -616
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1834 -1207
- package/types/sap.ui.ux3.d.ts +1279 -477
- package/types/sap.ui.webc.common.d.ts +7 -5
- package/types/sap.ui.webc.fiori.d.ts +836 -213
- package/types/sap.ui.webc.main.d.ts +2670 -591
- package/types/sap.uxap.d.ts +571 -316
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.8
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
5
|
-
* @since 1.68
|
|
6
|
-
*
|
|
7
5
|
* Interface for controls suitable for the `header` aggregation of {@link sap.tnt.ToolPage}.
|
|
6
|
+
*
|
|
7
|
+
* @since 1.68
|
|
8
8
|
*/
|
|
9
9
|
export interface IToolHeader {
|
|
10
10
|
__implements__sap_tnt_IToolHeader: boolean;
|
|
@@ -42,8 +42,6 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
42
42
|
import { RenderMode } from "sap/tnt/library";
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
|
-
* @since 1.54
|
|
46
|
-
*
|
|
47
45
|
* The `InfoLabel` is a small non-interactive control which contains text information and non-semantic color
|
|
48
46
|
* chosen from a list of predefined color schemes. It serves the purpose to attract the user attention to
|
|
49
47
|
* some piece of information (state, quantity, condition, etc.).
|
|
@@ -64,6 +62,8 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
64
62
|
* - Colors are not semantic and have no visual representation in sap_belize_hcb, sap_belize_hcw, sap_fiori_3_hcb
|
|
65
63
|
* and sap_fiori_3_hcw themes.
|
|
66
64
|
* - The control shows plain text only, formatting is not visualized.
|
|
65
|
+
*
|
|
66
|
+
* @since 1.54
|
|
67
67
|
*/
|
|
68
68
|
export default class InfoLabel extends Control implements IFormContent {
|
|
69
69
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
@@ -104,6 +104,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
104
104
|
*
|
|
105
105
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
106
106
|
*
|
|
107
|
+
*
|
|
107
108
|
* @returns Created class / constructor function
|
|
108
109
|
*/
|
|
109
110
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -124,6 +125,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
124
125
|
/**
|
|
125
126
|
* Returns a metadata object for class sap.tnt.InfoLabel.
|
|
126
127
|
*
|
|
128
|
+
*
|
|
127
129
|
* @returns Metadata object describing this class
|
|
128
130
|
*/
|
|
129
131
|
static getMetadata(): ElementMetadata;
|
|
@@ -133,6 +135,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
133
135
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
134
136
|
* of the possible properties of `oBindingInfo`
|
|
135
137
|
*
|
|
138
|
+
*
|
|
136
139
|
* @returns Reference to `this` in order to allow method chaining
|
|
137
140
|
*/
|
|
138
141
|
bindText(
|
|
@@ -151,6 +154,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
151
154
|
*
|
|
152
155
|
* Default value is `7`.
|
|
153
156
|
*
|
|
157
|
+
*
|
|
154
158
|
* @returns Value of property `colorScheme`
|
|
155
159
|
*/
|
|
156
160
|
getColorScheme(): int;
|
|
@@ -162,12 +166,11 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
162
166
|
*
|
|
163
167
|
* Default value is `false`.
|
|
164
168
|
*
|
|
169
|
+
*
|
|
165
170
|
* @returns Value of property `displayOnly`
|
|
166
171
|
*/
|
|
167
172
|
getDisplayOnly(): boolean;
|
|
168
173
|
/**
|
|
169
|
-
* @since 1.74
|
|
170
|
-
*
|
|
171
174
|
* Gets current value of property {@link #getIcon icon}.
|
|
172
175
|
*
|
|
173
176
|
* Defines the icon to be displayed as graphical element within the `InfoLabel`. It can be an icon from
|
|
@@ -175,6 +178,8 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
175
178
|
*
|
|
176
179
|
* Default value is `empty string`.
|
|
177
180
|
*
|
|
181
|
+
* @since 1.74
|
|
182
|
+
*
|
|
178
183
|
* @returns Value of property `icon`
|
|
179
184
|
*/
|
|
180
185
|
getIcon(): URI;
|
|
@@ -187,6 +192,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
187
192
|
*
|
|
188
193
|
* Default value is `Loose`.
|
|
189
194
|
*
|
|
195
|
+
*
|
|
190
196
|
* @returns Value of property `renderMode`
|
|
191
197
|
*/
|
|
192
198
|
getRenderMode(): RenderMode | keyof typeof RenderMode;
|
|
@@ -197,6 +203,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
197
203
|
*
|
|
198
204
|
* Default value is `empty string`.
|
|
199
205
|
*
|
|
206
|
+
*
|
|
200
207
|
* @returns Value of property `text`
|
|
201
208
|
*/
|
|
202
209
|
getText(): string;
|
|
@@ -208,6 +215,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
208
215
|
*
|
|
209
216
|
* Default value is `Inherit`.
|
|
210
217
|
*
|
|
218
|
+
*
|
|
211
219
|
* @returns Value of property `textDirection`
|
|
212
220
|
*/
|
|
213
221
|
getTextDirection(): TextDirection | keyof typeof TextDirection;
|
|
@@ -217,6 +225,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
217
225
|
* Specifies the width of the `InfoLabel` control. By default, the `InfoLabel` control has the width of
|
|
218
226
|
* the content. Set this property to restrict the width to a custom value.
|
|
219
227
|
*
|
|
228
|
+
*
|
|
220
229
|
* @returns Value of property `width`
|
|
221
230
|
*/
|
|
222
231
|
getWidth(): CSSSize;
|
|
@@ -232,6 +241,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
232
241
|
*
|
|
233
242
|
* Default value is `7`.
|
|
234
243
|
*
|
|
244
|
+
*
|
|
235
245
|
* @returns Reference to `this` in order to allow method chaining
|
|
236
246
|
*/
|
|
237
247
|
setColorScheme(
|
|
@@ -250,6 +260,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
250
260
|
*
|
|
251
261
|
* Default value is `false`.
|
|
252
262
|
*
|
|
263
|
+
*
|
|
253
264
|
* @returns Reference to `this` in order to allow method chaining
|
|
254
265
|
*/
|
|
255
266
|
setDisplayOnly(
|
|
@@ -259,8 +270,6 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
259
270
|
bDisplayOnly?: boolean
|
|
260
271
|
): this;
|
|
261
272
|
/**
|
|
262
|
-
* @since 1.74
|
|
263
|
-
*
|
|
264
273
|
* Sets a new value for property {@link #getIcon icon}.
|
|
265
274
|
*
|
|
266
275
|
* Defines the icon to be displayed as graphical element within the `InfoLabel`. It can be an icon from
|
|
@@ -270,6 +279,8 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
270
279
|
*
|
|
271
280
|
* Default value is `empty string`.
|
|
272
281
|
*
|
|
282
|
+
* @since 1.74
|
|
283
|
+
*
|
|
273
284
|
* @returns Reference to `this` in order to allow method chaining
|
|
274
285
|
*/
|
|
275
286
|
setIcon(
|
|
@@ -289,6 +300,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
289
300
|
*
|
|
290
301
|
* Default value is `Loose`.
|
|
291
302
|
*
|
|
303
|
+
*
|
|
292
304
|
* @returns Reference to `this` in order to allow method chaining
|
|
293
305
|
*/
|
|
294
306
|
setRenderMode(
|
|
@@ -306,6 +318,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
306
318
|
*
|
|
307
319
|
* Default value is `empty string`.
|
|
308
320
|
*
|
|
321
|
+
*
|
|
309
322
|
* @returns Reference to `this` in order to allow method chaining
|
|
310
323
|
*/
|
|
311
324
|
setText(
|
|
@@ -324,6 +337,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
324
337
|
*
|
|
325
338
|
* Default value is `Inherit`.
|
|
326
339
|
*
|
|
340
|
+
*
|
|
327
341
|
* @returns Reference to `this` in order to allow method chaining
|
|
328
342
|
*/
|
|
329
343
|
setTextDirection(
|
|
@@ -340,6 +354,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
340
354
|
*
|
|
341
355
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
342
356
|
*
|
|
357
|
+
*
|
|
343
358
|
* @returns Reference to `this` in order to allow method chaining
|
|
344
359
|
*/
|
|
345
360
|
setWidth(
|
|
@@ -351,6 +366,7 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
351
366
|
/**
|
|
352
367
|
* Unbinds property {@link #getText text} from model data.
|
|
353
368
|
*
|
|
369
|
+
*
|
|
354
370
|
* @returns Reference to `this` in order to allow method chaining
|
|
355
371
|
*/
|
|
356
372
|
unbindText(): this;
|
|
@@ -402,10 +418,10 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
402
418
|
| `{${string}}`;
|
|
403
419
|
|
|
404
420
|
/**
|
|
405
|
-
* @since 1.74
|
|
406
|
-
*
|
|
407
421
|
* Defines the icon to be displayed as graphical element within the `InfoLabel`. It can be an icon from
|
|
408
422
|
* the icon font.
|
|
423
|
+
*
|
|
424
|
+
* @since 1.74
|
|
409
425
|
*/
|
|
410
426
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
411
427
|
}
|
|
@@ -430,10 +446,10 @@ declare module "sap/tnt/NavigationList" {
|
|
|
430
446
|
import Event from "sap/ui/base/Event";
|
|
431
447
|
|
|
432
448
|
/**
|
|
433
|
-
* @since 1.34
|
|
434
|
-
*
|
|
435
449
|
* The NavigationList control is an interactive control, which provides a choice of different items, ordered
|
|
436
450
|
* as a list.
|
|
451
|
+
*
|
|
452
|
+
* @since 1.34
|
|
437
453
|
*/
|
|
438
454
|
export default class NavigationList extends Control {
|
|
439
455
|
/**
|
|
@@ -473,6 +489,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
473
489
|
*
|
|
474
490
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
475
491
|
*
|
|
492
|
+
*
|
|
476
493
|
* @returns Created class / constructor function
|
|
477
494
|
*/
|
|
478
495
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -493,12 +510,14 @@ declare module "sap/tnt/NavigationList" {
|
|
|
493
510
|
/**
|
|
494
511
|
* Returns a metadata object for class sap.tnt.NavigationList.
|
|
495
512
|
*
|
|
513
|
+
*
|
|
496
514
|
* @returns Metadata object describing this class
|
|
497
515
|
*/
|
|
498
516
|
static getMetadata(): ElementMetadata;
|
|
499
517
|
/**
|
|
500
518
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
501
519
|
*
|
|
520
|
+
*
|
|
502
521
|
* @returns Reference to `this` in order to allow method chaining
|
|
503
522
|
*/
|
|
504
523
|
addAriaDescribedBy(
|
|
@@ -510,6 +529,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
510
529
|
/**
|
|
511
530
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
512
531
|
*
|
|
532
|
+
*
|
|
513
533
|
* @returns Reference to `this` in order to allow method chaining
|
|
514
534
|
*/
|
|
515
535
|
addAriaLabelledBy(
|
|
@@ -521,6 +541,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
521
541
|
/**
|
|
522
542
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
523
543
|
*
|
|
544
|
+
*
|
|
524
545
|
* @returns Reference to `this` in order to allow method chaining
|
|
525
546
|
*/
|
|
526
547
|
addItem(
|
|
@@ -537,6 +558,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
537
558
|
*
|
|
538
559
|
* Fired when an item is selected.
|
|
539
560
|
*
|
|
561
|
+
*
|
|
540
562
|
* @returns Reference to `this` in order to allow method chaining
|
|
541
563
|
*/
|
|
542
564
|
attachItemSelect(
|
|
@@ -562,6 +584,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
562
584
|
*
|
|
563
585
|
* Fired when an item is selected.
|
|
564
586
|
*
|
|
587
|
+
*
|
|
565
588
|
* @returns Reference to `this` in order to allow method chaining
|
|
566
589
|
*/
|
|
567
590
|
attachItemSelect(
|
|
@@ -577,6 +600,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
577
600
|
/**
|
|
578
601
|
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
579
602
|
*
|
|
603
|
+
*
|
|
580
604
|
* @returns Reference to `this` in order to allow method chaining
|
|
581
605
|
*/
|
|
582
606
|
destroyItems(): this;
|
|
@@ -585,6 +609,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
585
609
|
*
|
|
586
610
|
* The passed function and listener object must match the ones used for event registration.
|
|
587
611
|
*
|
|
612
|
+
*
|
|
588
613
|
* @returns Reference to `this` in order to allow method chaining
|
|
589
614
|
*/
|
|
590
615
|
detachItemSelect(
|
|
@@ -598,10 +623,10 @@ declare module "sap/tnt/NavigationList" {
|
|
|
598
623
|
oListener?: object
|
|
599
624
|
): this;
|
|
600
625
|
/**
|
|
601
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
602
|
-
*
|
|
603
626
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
604
627
|
*
|
|
628
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
629
|
+
*
|
|
605
630
|
* @returns Reference to `this` in order to allow method chaining
|
|
606
631
|
*/
|
|
607
632
|
fireItemSelect(
|
|
@@ -625,6 +650,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
625
650
|
*
|
|
626
651
|
* Default value is `true`.
|
|
627
652
|
*
|
|
653
|
+
*
|
|
628
654
|
* @returns Value of property `expanded`
|
|
629
655
|
*/
|
|
630
656
|
getExpanded(): boolean;
|
|
@@ -637,16 +663,17 @@ declare module "sap/tnt/NavigationList" {
|
|
|
637
663
|
/**
|
|
638
664
|
* Gets the currently selected `NavigationListItem`.
|
|
639
665
|
*
|
|
666
|
+
*
|
|
640
667
|
* @returns The selected item or `null` if nothing is selected
|
|
641
668
|
*/
|
|
642
669
|
getSelectedItem(): NavigationListItem | null;
|
|
643
670
|
/**
|
|
644
|
-
* @since 1.62.0
|
|
645
|
-
*
|
|
646
671
|
* Gets current value of property {@link #getSelectedKey selectedKey}.
|
|
647
672
|
*
|
|
648
673
|
* Specifies the currently selected key.
|
|
649
674
|
*
|
|
675
|
+
* @since 1.62.0
|
|
676
|
+
*
|
|
650
677
|
* @returns Value of property `selectedKey`
|
|
651
678
|
*/
|
|
652
679
|
getSelectedKey(): string;
|
|
@@ -655,6 +682,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
655
682
|
*
|
|
656
683
|
* Specifies the width of the control.
|
|
657
684
|
*
|
|
685
|
+
*
|
|
658
686
|
* @returns Value of property `width`
|
|
659
687
|
*/
|
|
660
688
|
getWidth(): CSSSize;
|
|
@@ -662,6 +690,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
662
690
|
* Checks for the provided `sap.tnt.NavigationListItem` in the aggregation {@link #getItems items}. and
|
|
663
691
|
* returns its index if found or -1 otherwise.
|
|
664
692
|
*
|
|
693
|
+
*
|
|
665
694
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
666
695
|
*/
|
|
667
696
|
indexOfItem(
|
|
@@ -673,6 +702,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
673
702
|
/**
|
|
674
703
|
* Inserts a item into the aggregation {@link #getItems items}.
|
|
675
704
|
*
|
|
705
|
+
*
|
|
676
706
|
* @returns Reference to `this` in order to allow method chaining
|
|
677
707
|
*/
|
|
678
708
|
insertItem(
|
|
@@ -690,12 +720,14 @@ declare module "sap/tnt/NavigationList" {
|
|
|
690
720
|
/**
|
|
691
721
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
692
722
|
*
|
|
723
|
+
*
|
|
693
724
|
* @returns An array of the removed elements (might be empty)
|
|
694
725
|
*/
|
|
695
726
|
removeAllAriaDescribedBy(): ID[];
|
|
696
727
|
/**
|
|
697
728
|
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
698
729
|
*
|
|
730
|
+
*
|
|
699
731
|
* @returns An array of the removed elements (might be empty)
|
|
700
732
|
*/
|
|
701
733
|
removeAllAriaLabelledBy(): ID[];
|
|
@@ -704,12 +736,14 @@ declare module "sap/tnt/NavigationList" {
|
|
|
704
736
|
*
|
|
705
737
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
706
738
|
*
|
|
739
|
+
*
|
|
707
740
|
* @returns An array of the removed elements (might be empty)
|
|
708
741
|
*/
|
|
709
742
|
removeAllItems(): NavigationListItem[];
|
|
710
743
|
/**
|
|
711
744
|
* Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
712
745
|
*
|
|
746
|
+
*
|
|
713
747
|
* @returns The removed ariaDescribedBy or `null`
|
|
714
748
|
*/
|
|
715
749
|
removeAriaDescribedBy(
|
|
@@ -721,6 +755,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
721
755
|
/**
|
|
722
756
|
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
723
757
|
*
|
|
758
|
+
*
|
|
724
759
|
* @returns The removed ariaLabelledBy or `null`
|
|
725
760
|
*/
|
|
726
761
|
removeAriaLabelledBy(
|
|
@@ -732,6 +767,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
732
767
|
/**
|
|
733
768
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
734
769
|
*
|
|
770
|
+
*
|
|
735
771
|
* @returns The removed item or `null`
|
|
736
772
|
*/
|
|
737
773
|
removeItem(
|
|
@@ -749,6 +785,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
749
785
|
*
|
|
750
786
|
* Default value is `true`.
|
|
751
787
|
*
|
|
788
|
+
*
|
|
752
789
|
* @returns Reference to `this` in order to allow method chaining
|
|
753
790
|
*/
|
|
754
791
|
setExpanded(
|
|
@@ -760,6 +797,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
760
797
|
/**
|
|
761
798
|
* Sets the association for selectedItem. Set `null` to deselect.
|
|
762
799
|
*
|
|
800
|
+
*
|
|
763
801
|
* @returns The `selectedItem` association
|
|
764
802
|
*/
|
|
765
803
|
setSelectedItem(
|
|
@@ -771,6 +809,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
771
809
|
/**
|
|
772
810
|
* Sets the selected item based on a key.
|
|
773
811
|
*
|
|
812
|
+
*
|
|
774
813
|
* @returns this pointer for chaining
|
|
775
814
|
*/
|
|
776
815
|
setSelectedKey(
|
|
@@ -786,6 +825,7 @@ declare module "sap/tnt/NavigationList" {
|
|
|
786
825
|
*
|
|
787
826
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
788
827
|
*
|
|
828
|
+
*
|
|
789
829
|
* @returns Reference to `this` in order to allow method chaining
|
|
790
830
|
*/
|
|
791
831
|
setWidth(
|
|
@@ -808,9 +848,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
808
848
|
expanded?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
809
849
|
|
|
810
850
|
/**
|
|
811
|
-
* @since 1.62.0
|
|
812
|
-
*
|
|
813
851
|
* Specifies the currently selected key.
|
|
852
|
+
*
|
|
853
|
+
* @since 1.62.0
|
|
814
854
|
*/
|
|
815
855
|
selectedKey?: string | PropertyBindingInfo;
|
|
816
856
|
|
|
@@ -834,9 +874,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
834
874
|
ariaLabelledBy?: Array<Control | string>;
|
|
835
875
|
|
|
836
876
|
/**
|
|
837
|
-
* @since 1.52.0
|
|
838
|
-
*
|
|
839
877
|
* The currently selected `NavigationListItem`.
|
|
878
|
+
*
|
|
879
|
+
* @since 1.52.0
|
|
840
880
|
*/
|
|
841
881
|
selectedItem?: NavigationListItem | string;
|
|
842
882
|
|
|
@@ -874,10 +914,10 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
874
914
|
import Event from "sap/ui/base/Event";
|
|
875
915
|
|
|
876
916
|
/**
|
|
877
|
-
* @since 1.34
|
|
878
|
-
*
|
|
879
917
|
* The NavigationListItem control represents an action, which can be selected by the user. It can provide
|
|
880
918
|
* sub items.
|
|
919
|
+
*
|
|
920
|
+
* @since 1.34
|
|
881
921
|
*/
|
|
882
922
|
export default class NavigationListItem extends Item {
|
|
883
923
|
/**
|
|
@@ -917,6 +957,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
917
957
|
*
|
|
918
958
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Item.extend}.
|
|
919
959
|
*
|
|
960
|
+
*
|
|
920
961
|
* @returns Created class / constructor function
|
|
921
962
|
*/
|
|
922
963
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -937,12 +978,14 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
937
978
|
/**
|
|
938
979
|
* Returns a metadata object for class sap.tnt.NavigationListItem.
|
|
939
980
|
*
|
|
981
|
+
*
|
|
940
982
|
* @returns Metadata object describing this class
|
|
941
983
|
*/
|
|
942
984
|
static getMetadata(): ElementMetadata;
|
|
943
985
|
/**
|
|
944
986
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
945
987
|
*
|
|
988
|
+
*
|
|
946
989
|
* @returns Reference to `this` in order to allow method chaining
|
|
947
990
|
*/
|
|
948
991
|
addItem(
|
|
@@ -959,6 +1002,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
959
1002
|
*
|
|
960
1003
|
* Fired when this item is selected.
|
|
961
1004
|
*
|
|
1005
|
+
*
|
|
962
1006
|
* @returns Reference to `this` in order to allow method chaining
|
|
963
1007
|
*/
|
|
964
1008
|
attachSelect(
|
|
@@ -984,6 +1028,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
984
1028
|
*
|
|
985
1029
|
* Fired when this item is selected.
|
|
986
1030
|
*
|
|
1031
|
+
*
|
|
987
1032
|
* @returns Reference to `this` in order to allow method chaining
|
|
988
1033
|
*/
|
|
989
1034
|
attachSelect(
|
|
@@ -999,6 +1044,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
999
1044
|
/**
|
|
1000
1045
|
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
1001
1046
|
*
|
|
1047
|
+
*
|
|
1002
1048
|
* @returns Reference to `this` in order to allow method chaining
|
|
1003
1049
|
*/
|
|
1004
1050
|
destroyItems(): this;
|
|
@@ -1007,6 +1053,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1007
1053
|
*
|
|
1008
1054
|
* The passed function and listener object must match the ones used for event registration.
|
|
1009
1055
|
*
|
|
1056
|
+
*
|
|
1010
1057
|
* @returns Reference to `this` in order to allow method chaining
|
|
1011
1058
|
*/
|
|
1012
1059
|
detachSelect(
|
|
@@ -1020,10 +1067,10 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1020
1067
|
oListener?: object
|
|
1021
1068
|
): this;
|
|
1022
1069
|
/**
|
|
1023
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1024
|
-
*
|
|
1025
1070
|
* Fires event {@link #event:select select} to attached listeners.
|
|
1026
1071
|
*
|
|
1072
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1073
|
+
*
|
|
1027
1074
|
* @returns Reference to `this` in order to allow method chaining
|
|
1028
1075
|
*/
|
|
1029
1076
|
fireSelect(
|
|
@@ -1039,14 +1086,15 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1039
1086
|
*
|
|
1040
1087
|
* Default value is `true`.
|
|
1041
1088
|
*
|
|
1089
|
+
*
|
|
1042
1090
|
* @returns Value of property `expanded`
|
|
1043
1091
|
*/
|
|
1044
1092
|
getExpanded(): boolean;
|
|
1045
1093
|
/**
|
|
1046
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1047
|
-
*
|
|
1048
1094
|
* Returns the DOM Element that should get the focus.
|
|
1049
1095
|
*
|
|
1096
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1097
|
+
*
|
|
1050
1098
|
* @returns Returns the DOM Element that should get the focus
|
|
1051
1099
|
*/
|
|
1052
1100
|
getFocusDomRef(): Element;
|
|
@@ -1057,6 +1105,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1057
1105
|
*
|
|
1058
1106
|
* Default value is `true`.
|
|
1059
1107
|
*
|
|
1108
|
+
*
|
|
1060
1109
|
* @returns Value of property `hasExpander`
|
|
1061
1110
|
*/
|
|
1062
1111
|
getHasExpander(): boolean;
|
|
@@ -1066,6 +1115,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1066
1115
|
* Defines the link target URI. Supports standard hyperlink behavior. If a JavaScript action should be triggered,
|
|
1067
1116
|
* this should not be set, but instead an event handler for the `select` event should be registered.
|
|
1068
1117
|
*
|
|
1118
|
+
*
|
|
1069
1119
|
* @returns Value of property `href`
|
|
1070
1120
|
*/
|
|
1071
1121
|
getHref(): URI;
|
|
@@ -1076,6 +1126,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1076
1126
|
*
|
|
1077
1127
|
* Default value is `empty string`.
|
|
1078
1128
|
*
|
|
1129
|
+
*
|
|
1079
1130
|
* @returns Value of property `icon`
|
|
1080
1131
|
*/
|
|
1081
1132
|
getIcon(): URI;
|
|
@@ -1086,16 +1137,16 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1086
1137
|
*/
|
|
1087
1138
|
getItems(): NavigationListItem[];
|
|
1088
1139
|
/**
|
|
1089
|
-
* @since 1.116
|
|
1090
|
-
* @experimental (since 1.116) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1091
|
-
* may be done before its official public release.
|
|
1092
|
-
*
|
|
1093
1140
|
* Gets current value of property {@link #getSelectable selectable}.
|
|
1094
1141
|
*
|
|
1095
1142
|
* Specifies if the item can be selected.
|
|
1096
1143
|
*
|
|
1097
1144
|
* Default value is `true`.
|
|
1098
1145
|
*
|
|
1146
|
+
* @since 1.116
|
|
1147
|
+
* @experimental (since 1.116) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1148
|
+
* may be done before its official public release.
|
|
1149
|
+
*
|
|
1099
1150
|
* @returns Value of property `selectable`
|
|
1100
1151
|
*/
|
|
1101
1152
|
getSelectable(): boolean;
|
|
@@ -1108,18 +1159,19 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1108
1159
|
* `_search`. Alternatively, a frame name can be entered. This property is only used when the `href` property
|
|
1109
1160
|
* is set.
|
|
1110
1161
|
*
|
|
1162
|
+
*
|
|
1111
1163
|
* @returns Value of property `target`
|
|
1112
1164
|
*/
|
|
1113
1165
|
getTarget(): string;
|
|
1114
1166
|
/**
|
|
1115
|
-
* @since 1.52
|
|
1116
|
-
*
|
|
1117
1167
|
* Gets current value of property {@link #getVisible visible}.
|
|
1118
1168
|
*
|
|
1119
1169
|
* Specifies if the item should be shown.
|
|
1120
1170
|
*
|
|
1121
1171
|
* Default value is `true`.
|
|
1122
1172
|
*
|
|
1173
|
+
* @since 1.52
|
|
1174
|
+
*
|
|
1123
1175
|
* @returns Value of property `visible`
|
|
1124
1176
|
*/
|
|
1125
1177
|
getVisible(): boolean;
|
|
@@ -1127,6 +1179,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1127
1179
|
* Checks for the provided `sap.tnt.NavigationListItem` in the aggregation {@link #getItems items}. and
|
|
1128
1180
|
* returns its index if found or -1 otherwise.
|
|
1129
1181
|
*
|
|
1182
|
+
*
|
|
1130
1183
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1131
1184
|
*/
|
|
1132
1185
|
indexOfItem(
|
|
@@ -1138,6 +1191,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1138
1191
|
/**
|
|
1139
1192
|
* Inserts a item into the aggregation {@link #getItems items}.
|
|
1140
1193
|
*
|
|
1194
|
+
*
|
|
1141
1195
|
* @returns Reference to `this` in order to allow method chaining
|
|
1142
1196
|
*/
|
|
1143
1197
|
insertItem(
|
|
@@ -1157,12 +1211,14 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1157
1211
|
*
|
|
1158
1212
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1159
1213
|
*
|
|
1214
|
+
*
|
|
1160
1215
|
* @returns An array of the removed elements (might be empty)
|
|
1161
1216
|
*/
|
|
1162
1217
|
removeAllItems(): NavigationListItem[];
|
|
1163
1218
|
/**
|
|
1164
1219
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
1165
1220
|
*
|
|
1221
|
+
*
|
|
1166
1222
|
* @returns The removed item or `null`
|
|
1167
1223
|
*/
|
|
1168
1224
|
removeItem(
|
|
@@ -1180,6 +1236,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1180
1236
|
*
|
|
1181
1237
|
* Default value is `true`.
|
|
1182
1238
|
*
|
|
1239
|
+
*
|
|
1183
1240
|
* @returns Reference to `this` in order to allow method chaining
|
|
1184
1241
|
*/
|
|
1185
1242
|
setExpanded(
|
|
@@ -1197,6 +1254,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1197
1254
|
*
|
|
1198
1255
|
* Default value is `true`.
|
|
1199
1256
|
*
|
|
1257
|
+
*
|
|
1200
1258
|
* @returns Reference to `this` in order to allow method chaining
|
|
1201
1259
|
*/
|
|
1202
1260
|
setHasExpander(
|
|
@@ -1213,6 +1271,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1213
1271
|
*
|
|
1214
1272
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1215
1273
|
*
|
|
1274
|
+
*
|
|
1216
1275
|
* @returns Reference to `this` in order to allow method chaining
|
|
1217
1276
|
*/
|
|
1218
1277
|
setHref(
|
|
@@ -1230,6 +1289,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1230
1289
|
*
|
|
1231
1290
|
* Default value is `empty string`.
|
|
1232
1291
|
*
|
|
1292
|
+
*
|
|
1233
1293
|
* @returns Reference to `this` in order to allow method chaining
|
|
1234
1294
|
*/
|
|
1235
1295
|
setIcon(
|
|
@@ -1239,10 +1299,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1239
1299
|
sIcon?: URI
|
|
1240
1300
|
): this;
|
|
1241
1301
|
/**
|
|
1242
|
-
* @since 1.116
|
|
1243
|
-
* @experimental (since 1.116) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1244
|
-
* may be done before its official public release.
|
|
1245
|
-
*
|
|
1246
1302
|
* Sets a new value for property {@link #getSelectable selectable}.
|
|
1247
1303
|
*
|
|
1248
1304
|
* Specifies if the item can be selected.
|
|
@@ -1251,6 +1307,10 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1251
1307
|
*
|
|
1252
1308
|
* Default value is `true`.
|
|
1253
1309
|
*
|
|
1310
|
+
* @since 1.116
|
|
1311
|
+
* @experimental (since 1.116) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1312
|
+
* may be done before its official public release.
|
|
1313
|
+
*
|
|
1254
1314
|
* @returns Reference to `this` in order to allow method chaining
|
|
1255
1315
|
*/
|
|
1256
1316
|
setSelectable(
|
|
@@ -1270,6 +1330,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1270
1330
|
*
|
|
1271
1331
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1272
1332
|
*
|
|
1333
|
+
*
|
|
1273
1334
|
* @returns Reference to `this` in order to allow method chaining
|
|
1274
1335
|
*/
|
|
1275
1336
|
setTarget(
|
|
@@ -1279,8 +1340,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1279
1340
|
sTarget?: string
|
|
1280
1341
|
): this;
|
|
1281
1342
|
/**
|
|
1282
|
-
* @since 1.52
|
|
1283
|
-
*
|
|
1284
1343
|
* Sets a new value for property {@link #getVisible visible}.
|
|
1285
1344
|
*
|
|
1286
1345
|
* Specifies if the item should be shown.
|
|
@@ -1289,6 +1348,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1289
1348
|
*
|
|
1290
1349
|
* Default value is `true`.
|
|
1291
1350
|
*
|
|
1351
|
+
* @since 1.52
|
|
1352
|
+
*
|
|
1292
1353
|
* @returns Reference to `this` in order to allow method chaining
|
|
1293
1354
|
*/
|
|
1294
1355
|
setVisible(
|
|
@@ -1316,18 +1377,18 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1316
1377
|
hasExpander?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1317
1378
|
|
|
1318
1379
|
/**
|
|
1319
|
-
* @since 1.52
|
|
1320
|
-
*
|
|
1321
1380
|
* Specifies if the item should be shown.
|
|
1381
|
+
*
|
|
1382
|
+
* @since 1.52
|
|
1322
1383
|
*/
|
|
1323
1384
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1324
1385
|
|
|
1325
1386
|
/**
|
|
1387
|
+
* Specifies if the item can be selected.
|
|
1388
|
+
*
|
|
1326
1389
|
* @since 1.116
|
|
1327
1390
|
* @experimental (since 1.116) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
1328
1391
|
* may be done before its official public release.
|
|
1329
|
-
*
|
|
1330
|
-
* Specifies if the item can be selected.
|
|
1331
1392
|
*/
|
|
1332
1393
|
selectable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1333
1394
|
|
|
@@ -1395,13 +1456,13 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1395
1456
|
import Event from "sap/ui/base/Event";
|
|
1396
1457
|
|
|
1397
1458
|
/**
|
|
1398
|
-
* @since 1.34
|
|
1399
|
-
*
|
|
1400
1459
|
* The SideNavigation control is a container, which consists of flexible and fixed parts on top of each
|
|
1401
1460
|
* other. Responsive Behavior:
|
|
1402
1461
|
* - The flexible part adapts its size to the fixed one.
|
|
1403
1462
|
* - The flexible part has a scrollbar when the content is larger than the available space. **Note:**
|
|
1404
1463
|
* In order for the SideNavigation to stretch properly, its parent layout control should only be the sap.tnt.ToolPage.
|
|
1464
|
+
*
|
|
1465
|
+
* @since 1.34
|
|
1405
1466
|
*/
|
|
1406
1467
|
export default class SideNavigation extends Control {
|
|
1407
1468
|
/**
|
|
@@ -1441,6 +1502,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1441
1502
|
*
|
|
1442
1503
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1443
1504
|
*
|
|
1505
|
+
*
|
|
1444
1506
|
* @returns Created class / constructor function
|
|
1445
1507
|
*/
|
|
1446
1508
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -1461,6 +1523,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1461
1523
|
/**
|
|
1462
1524
|
* Returns a metadata object for class sap.tnt.SideNavigation.
|
|
1463
1525
|
*
|
|
1526
|
+
*
|
|
1464
1527
|
* @returns Metadata object describing this class
|
|
1465
1528
|
*/
|
|
1466
1529
|
static getMetadata(): ElementMetadata;
|
|
@@ -1472,6 +1535,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1472
1535
|
*
|
|
1473
1536
|
* Fired when an item is selected.
|
|
1474
1537
|
*
|
|
1538
|
+
*
|
|
1475
1539
|
* @returns Reference to `this` in order to allow method chaining
|
|
1476
1540
|
*/
|
|
1477
1541
|
attachItemSelect(
|
|
@@ -1497,6 +1561,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1497
1561
|
*
|
|
1498
1562
|
* Fired when an item is selected.
|
|
1499
1563
|
*
|
|
1564
|
+
*
|
|
1500
1565
|
* @returns Reference to `this` in order to allow method chaining
|
|
1501
1566
|
*/
|
|
1502
1567
|
attachItemSelect(
|
|
@@ -1515,6 +1580,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1515
1580
|
* See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
|
|
1516
1581
|
* of the possible properties of `oBindingInfo`.
|
|
1517
1582
|
*
|
|
1583
|
+
*
|
|
1518
1584
|
* @returns Reference to `this` in order to allow method chaining
|
|
1519
1585
|
*/
|
|
1520
1586
|
bindItem(
|
|
@@ -1526,20 +1592,22 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1526
1592
|
/**
|
|
1527
1593
|
* Destroys the fixedItem in the aggregation {@link #getFixedItem fixedItem}.
|
|
1528
1594
|
*
|
|
1595
|
+
*
|
|
1529
1596
|
* @returns Reference to `this` in order to allow method chaining
|
|
1530
1597
|
*/
|
|
1531
1598
|
destroyFixedItem(): this;
|
|
1532
1599
|
/**
|
|
1533
|
-
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1534
|
-
*
|
|
1535
1600
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
1536
1601
|
*
|
|
1602
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1603
|
+
*
|
|
1537
1604
|
* @returns Reference to `this` in order to allow method chaining
|
|
1538
1605
|
*/
|
|
1539
1606
|
destroyFooter(): this;
|
|
1540
1607
|
/**
|
|
1541
1608
|
* Destroys the item in the aggregation {@link #getItem item}.
|
|
1542
1609
|
*
|
|
1610
|
+
*
|
|
1543
1611
|
* @returns Reference to `this` in order to allow method chaining
|
|
1544
1612
|
*/
|
|
1545
1613
|
destroyItem(): this;
|
|
@@ -1548,6 +1616,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1548
1616
|
*
|
|
1549
1617
|
* The passed function and listener object must match the ones used for event registration.
|
|
1550
1618
|
*
|
|
1619
|
+
*
|
|
1551
1620
|
* @returns Reference to `this` in order to allow method chaining
|
|
1552
1621
|
*/
|
|
1553
1622
|
detachItemSelect(
|
|
@@ -1561,10 +1630,10 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1561
1630
|
oListener?: object
|
|
1562
1631
|
): this;
|
|
1563
1632
|
/**
|
|
1564
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1565
|
-
*
|
|
1566
1633
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
1567
1634
|
*
|
|
1635
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1636
|
+
*
|
|
1568
1637
|
* @returns Reference to `this` in order to allow method chaining
|
|
1569
1638
|
*/
|
|
1570
1639
|
fireItemSelect(
|
|
@@ -1574,12 +1643,12 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1574
1643
|
mParameters?: SideNavigation$ItemSelectEventParameters
|
|
1575
1644
|
): this;
|
|
1576
1645
|
/**
|
|
1577
|
-
* @since 1.98
|
|
1578
|
-
*
|
|
1579
1646
|
* Gets current value of property {@link #getAriaLabel ariaLabel}.
|
|
1580
1647
|
*
|
|
1581
1648
|
* Specifies an optional aria-label that can be used by the screen readers.
|
|
1582
1649
|
*
|
|
1650
|
+
* @since 1.98
|
|
1651
|
+
*
|
|
1583
1652
|
* @returns Value of property `ariaLabel`
|
|
1584
1653
|
*/
|
|
1585
1654
|
getAriaLabel(): string;
|
|
@@ -1590,6 +1659,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1590
1659
|
*
|
|
1591
1660
|
* Default value is `true`.
|
|
1592
1661
|
*
|
|
1662
|
+
*
|
|
1593
1663
|
* @returns Value of property `expanded`
|
|
1594
1664
|
*/
|
|
1595
1665
|
getExpanded(): boolean;
|
|
@@ -1600,11 +1670,11 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1600
1670
|
*/
|
|
1601
1671
|
getFixedItem(): NavigationList;
|
|
1602
1672
|
/**
|
|
1603
|
-
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1604
|
-
*
|
|
1605
1673
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
1606
1674
|
*
|
|
1607
1675
|
* Defines the content inside the footer.
|
|
1676
|
+
*
|
|
1677
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1608
1678
|
*/
|
|
1609
1679
|
getFooter(): NavigationList;
|
|
1610
1680
|
/**
|
|
@@ -1614,25 +1684,23 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1614
1684
|
*/
|
|
1615
1685
|
getItem(): NavigationList;
|
|
1616
1686
|
/**
|
|
1617
|
-
* @since 1.52.0
|
|
1618
|
-
*
|
|
1619
1687
|
* ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
|
|
1620
1688
|
* or `null`.
|
|
1689
|
+
*
|
|
1690
|
+
* @since 1.52.0
|
|
1621
1691
|
*/
|
|
1622
1692
|
getSelectedItem(): ID;
|
|
1623
1693
|
/**
|
|
1624
|
-
* @since 1.62.0
|
|
1625
|
-
*
|
|
1626
1694
|
* Gets current value of property {@link #getSelectedKey selectedKey}.
|
|
1627
1695
|
*
|
|
1628
1696
|
* Specifies the currently selected key.
|
|
1629
1697
|
*
|
|
1698
|
+
* @since 1.62.0
|
|
1699
|
+
*
|
|
1630
1700
|
* @returns Value of property `selectedKey`
|
|
1631
1701
|
*/
|
|
1632
1702
|
getSelectedKey(): string;
|
|
1633
1703
|
/**
|
|
1634
|
-
* @since 1.120
|
|
1635
|
-
*
|
|
1636
1704
|
* Gets current value of property {@link #getWidth width}.
|
|
1637
1705
|
*
|
|
1638
1706
|
* Specifies the width of the control.
|
|
@@ -1640,18 +1708,20 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1640
1708
|
* Depending on the theme, there is a minimum width set (16rem for Horizon theme). This property
|
|
1641
1709
|
* can be used to set a bigger width.
|
|
1642
1710
|
*
|
|
1711
|
+
* @since 1.120
|
|
1712
|
+
*
|
|
1643
1713
|
* @returns Value of property `width`
|
|
1644
1714
|
*/
|
|
1645
1715
|
getWidth(): CSSSize;
|
|
1646
1716
|
/**
|
|
1647
|
-
* @since 1.98
|
|
1648
|
-
*
|
|
1649
1717
|
* Sets a new value for property {@link #getAriaLabel ariaLabel}.
|
|
1650
1718
|
*
|
|
1651
1719
|
* Specifies an optional aria-label that can be used by the screen readers.
|
|
1652
1720
|
*
|
|
1653
1721
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1654
1722
|
*
|
|
1723
|
+
* @since 1.98
|
|
1724
|
+
*
|
|
1655
1725
|
* @returns Reference to `this` in order to allow method chaining
|
|
1656
1726
|
*/
|
|
1657
1727
|
setAriaLabel(
|
|
@@ -1663,6 +1733,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1663
1733
|
/**
|
|
1664
1734
|
* Sets if the control is in expanded or collapsed mode.
|
|
1665
1735
|
*
|
|
1736
|
+
*
|
|
1666
1737
|
* @returns this SideNavigation reference for chaining.
|
|
1667
1738
|
*/
|
|
1668
1739
|
setExpanded(
|
|
@@ -1674,6 +1745,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1674
1745
|
/**
|
|
1675
1746
|
* Sets the aggregated {@link #getFixedItem fixedItem}.
|
|
1676
1747
|
*
|
|
1748
|
+
*
|
|
1677
1749
|
* @returns Reference to `this` in order to allow method chaining
|
|
1678
1750
|
*/
|
|
1679
1751
|
setFixedItem(
|
|
@@ -1683,10 +1755,10 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1683
1755
|
oFixedItem: NavigationList
|
|
1684
1756
|
): this;
|
|
1685
1757
|
/**
|
|
1686
|
-
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1687
|
-
*
|
|
1688
1758
|
* Sets the aggregated {@link #getFooter footer}.
|
|
1689
1759
|
*
|
|
1760
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1761
|
+
*
|
|
1690
1762
|
* @returns Reference to `this` in order to allow method chaining
|
|
1691
1763
|
*/
|
|
1692
1764
|
setFooter(
|
|
@@ -1698,6 +1770,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1698
1770
|
/**
|
|
1699
1771
|
* Sets the aggregated {@link #getItem item}.
|
|
1700
1772
|
*
|
|
1773
|
+
*
|
|
1701
1774
|
* @returns Reference to `this` in order to allow method chaining
|
|
1702
1775
|
*/
|
|
1703
1776
|
setItem(
|
|
@@ -1709,6 +1782,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1709
1782
|
/**
|
|
1710
1783
|
* Sets the association for selectedItem
|
|
1711
1784
|
*
|
|
1785
|
+
*
|
|
1712
1786
|
* @returns The `selectedItem` association
|
|
1713
1787
|
*/
|
|
1714
1788
|
setSelectedItem(
|
|
@@ -1720,6 +1794,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1720
1794
|
/**
|
|
1721
1795
|
* Sets the selected item based on a key.
|
|
1722
1796
|
*
|
|
1797
|
+
*
|
|
1723
1798
|
* @returns this pointer for chaining
|
|
1724
1799
|
*/
|
|
1725
1800
|
setSelectedKey(
|
|
@@ -1729,8 +1804,6 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1729
1804
|
selectedKey: string
|
|
1730
1805
|
): this;
|
|
1731
1806
|
/**
|
|
1732
|
-
* @since 1.120
|
|
1733
|
-
*
|
|
1734
1807
|
* Sets a new value for property {@link #getWidth width}.
|
|
1735
1808
|
*
|
|
1736
1809
|
* Specifies the width of the control.
|
|
@@ -1740,6 +1813,8 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1740
1813
|
*
|
|
1741
1814
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1742
1815
|
*
|
|
1816
|
+
* @since 1.120
|
|
1817
|
+
*
|
|
1743
1818
|
* @returns Reference to `this` in order to allow method chaining
|
|
1744
1819
|
*/
|
|
1745
1820
|
setWidth(
|
|
@@ -1751,6 +1826,7 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1751
1826
|
/**
|
|
1752
1827
|
* Unbinds aggregation {@link #getItem item} from model data.
|
|
1753
1828
|
*
|
|
1829
|
+
*
|
|
1754
1830
|
* @returns Reference to `this` in order to allow method chaining
|
|
1755
1831
|
*/
|
|
1756
1832
|
unbindItem(): this;
|
|
@@ -1758,12 +1834,12 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1758
1834
|
|
|
1759
1835
|
export interface $SideNavigationSettings extends $ControlSettings {
|
|
1760
1836
|
/**
|
|
1761
|
-
* @since 1.120
|
|
1762
|
-
*
|
|
1763
1837
|
* Specifies the width of the control.
|
|
1764
1838
|
*
|
|
1765
1839
|
* Depending on the theme, there is a minimum width set (16rem for Horizon theme). This property
|
|
1766
1840
|
* can be used to set a bigger width.
|
|
1841
|
+
*
|
|
1842
|
+
* @since 1.120
|
|
1767
1843
|
*/
|
|
1768
1844
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
1769
1845
|
|
|
@@ -1773,16 +1849,16 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1773
1849
|
expanded?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1774
1850
|
|
|
1775
1851
|
/**
|
|
1776
|
-
* @since 1.62.0
|
|
1777
|
-
*
|
|
1778
1852
|
* Specifies the currently selected key.
|
|
1853
|
+
*
|
|
1854
|
+
* @since 1.62.0
|
|
1779
1855
|
*/
|
|
1780
1856
|
selectedKey?: string | PropertyBindingInfo;
|
|
1781
1857
|
|
|
1782
1858
|
/**
|
|
1783
|
-
* @since 1.98
|
|
1784
|
-
*
|
|
1785
1859
|
* Specifies an optional aria-label that can be used by the screen readers.
|
|
1860
|
+
*
|
|
1861
|
+
* @since 1.98
|
|
1786
1862
|
*/
|
|
1787
1863
|
ariaLabel?: string | PropertyBindingInfo;
|
|
1788
1864
|
|
|
@@ -1797,16 +1873,16 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1797
1873
|
fixedItem?: NavigationList;
|
|
1798
1874
|
|
|
1799
1875
|
/**
|
|
1800
|
-
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1801
|
-
*
|
|
1802
1876
|
* Defines the content inside the footer.
|
|
1877
|
+
*
|
|
1878
|
+
* @deprecated (since 1.120) - Use the aggregation `fixedItem` instead.
|
|
1803
1879
|
*/
|
|
1804
1880
|
footer?: NavigationList;
|
|
1805
1881
|
|
|
1806
1882
|
/**
|
|
1807
|
-
* @since 1.52.0
|
|
1808
|
-
*
|
|
1809
1883
|
* The selected `NavigationListItem`.
|
|
1884
|
+
*
|
|
1885
|
+
* @since 1.52.0
|
|
1810
1886
|
*/
|
|
1811
1887
|
selectedItem?: NavigationListItem | string;
|
|
1812
1888
|
|
|
@@ -1840,8 +1916,6 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
1840
1916
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1841
1917
|
|
|
1842
1918
|
/**
|
|
1843
|
-
* @since 1.34
|
|
1844
|
-
*
|
|
1845
1919
|
* The ToolHeader control is a horizontal container that is most commonly used to display buttons, texts,
|
|
1846
1920
|
* and other various input controls. Overview: The ToolHeader control is based on {@link sap.m.OverflowToolbar}.
|
|
1847
1921
|
* It contains clearly structured menus of commands that are available across the various apps within the
|
|
@@ -1876,6 +1950,8 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
1876
1950
|
* in Inline mode only. Semantic colors, icons and separators. sap.f.Avatar/sap.m.Avatar
|
|
1877
1951
|
* Support for default (Accent 6) color. Image avatar. - sap.m.Image
|
|
1878
1952
|
* Primarily used for displaying the company logo. Interaction states
|
|
1953
|
+
*
|
|
1954
|
+
* @since 1.34
|
|
1879
1955
|
*/
|
|
1880
1956
|
export default class ToolHeader
|
|
1881
1957
|
extends OverflowToolbar
|
|
@@ -1924,6 +2000,7 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
1924
2000
|
*
|
|
1925
2001
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.OverflowToolbar.extend}.
|
|
1926
2002
|
*
|
|
2003
|
+
*
|
|
1927
2004
|
* @returns Created class / constructor function
|
|
1928
2005
|
*/
|
|
1929
2006
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -1944,6 +2021,7 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
1944
2021
|
/**
|
|
1945
2022
|
* Returns a metadata object for class sap.tnt.ToolHeader.
|
|
1946
2023
|
*
|
|
2024
|
+
*
|
|
1947
2025
|
* @returns Metadata object describing this class
|
|
1948
2026
|
*/
|
|
1949
2027
|
static getMetadata(): ElementMetadata;
|
|
@@ -1958,10 +2036,10 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
|
|
|
1958
2036
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1959
2037
|
|
|
1960
2038
|
/**
|
|
1961
|
-
* @since 1.16
|
|
1962
|
-
*
|
|
1963
2039
|
* The ToolHeaderUtilitySeparator control is used in the sap.tnt.ToolHeader control to specify where the
|
|
1964
2040
|
* overflow button is placed.
|
|
2041
|
+
*
|
|
2042
|
+
* @since 1.16
|
|
1965
2043
|
*/
|
|
1966
2044
|
export default class ToolHeaderUtilitySeparator extends Control {
|
|
1967
2045
|
/**
|
|
@@ -2007,6 +2085,7 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
|
|
|
2007
2085
|
*
|
|
2008
2086
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2009
2087
|
*
|
|
2088
|
+
*
|
|
2010
2089
|
* @returns Created class / constructor function
|
|
2011
2090
|
*/
|
|
2012
2091
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -2027,6 +2106,7 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
|
|
|
2027
2106
|
/**
|
|
2028
2107
|
* Returns a metadata object for class sap.tnt.ToolHeaderUtilitySeparator.
|
|
2029
2108
|
*
|
|
2109
|
+
*
|
|
2030
2110
|
* @returns Metadata object describing this class
|
|
2031
2111
|
*/
|
|
2032
2112
|
static getMetadata(): ElementMetadata;
|
|
@@ -2053,13 +2133,13 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2053
2133
|
} from "sap/ui/base/ManagedObject";
|
|
2054
2134
|
|
|
2055
2135
|
/**
|
|
2056
|
-
* @since 1.34
|
|
2057
|
-
*
|
|
2058
2136
|
* The ToolPage is a layout control, used to create a basic tools app that has a header, side navigation
|
|
2059
2137
|
* and contents area. Overview: The control has three main areas - a header on top, navigation to the side
|
|
2060
2138
|
* and a content area that can hold any control. The header and side navigation use custom controls - {@link sap.tnt.ToolHeader }
|
|
2061
2139
|
* and {@link sap.tnt.SideNavigation}. Usage: The main usage of the sap.tnt controls is for scenarios in
|
|
2062
2140
|
* the tooling or administration space.
|
|
2141
|
+
*
|
|
2142
|
+
* @since 1.34
|
|
2063
2143
|
*/
|
|
2064
2144
|
export default class ToolPage extends Control {
|
|
2065
2145
|
/**
|
|
@@ -2099,6 +2179,7 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2099
2179
|
*
|
|
2100
2180
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2101
2181
|
*
|
|
2182
|
+
*
|
|
2102
2183
|
* @returns Created class / constructor function
|
|
2103
2184
|
*/
|
|
2104
2185
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -2119,12 +2200,14 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2119
2200
|
/**
|
|
2120
2201
|
* Returns a metadata object for class sap.tnt.ToolPage.
|
|
2121
2202
|
*
|
|
2203
|
+
*
|
|
2122
2204
|
* @returns Metadata object describing this class
|
|
2123
2205
|
*/
|
|
2124
2206
|
static getMetadata(): ElementMetadata;
|
|
2125
2207
|
/**
|
|
2126
2208
|
* Adds some mainContent to the aggregation {@link #getMainContents mainContents}.
|
|
2127
2209
|
*
|
|
2210
|
+
*
|
|
2128
2211
|
* @returns Reference to `this` in order to allow method chaining
|
|
2129
2212
|
*/
|
|
2130
2213
|
addMainContent(
|
|
@@ -2136,38 +2219,41 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2136
2219
|
/**
|
|
2137
2220
|
* Destroys the header in the aggregation {@link #getHeader header}.
|
|
2138
2221
|
*
|
|
2222
|
+
*
|
|
2139
2223
|
* @returns Reference to `this` in order to allow method chaining
|
|
2140
2224
|
*/
|
|
2141
2225
|
destroyHeader(): this;
|
|
2142
2226
|
/**
|
|
2143
2227
|
* Destroys all the mainContents in the aggregation {@link #getMainContents mainContents}.
|
|
2144
2228
|
*
|
|
2229
|
+
*
|
|
2145
2230
|
* @returns Reference to `this` in order to allow method chaining
|
|
2146
2231
|
*/
|
|
2147
2232
|
destroyMainContents(): this;
|
|
2148
2233
|
/**
|
|
2149
2234
|
* Destroys the sideContent in the aggregation {@link #getSideContent sideContent}.
|
|
2150
2235
|
*
|
|
2236
|
+
*
|
|
2151
2237
|
* @returns Reference to `this` in order to allow method chaining
|
|
2152
2238
|
*/
|
|
2153
2239
|
destroySideContent(): this;
|
|
2154
2240
|
/**
|
|
2155
|
-
* @since 1.93
|
|
2156
|
-
*
|
|
2157
2241
|
* Destroys the subHeader in the aggregation {@link #getSubHeader subHeader}.
|
|
2158
2242
|
*
|
|
2243
|
+
* @since 1.93
|
|
2244
|
+
*
|
|
2159
2245
|
* @returns Reference to `this` in order to allow method chaining
|
|
2160
2246
|
*/
|
|
2161
2247
|
destroySubHeader(): this;
|
|
2162
2248
|
/**
|
|
2163
|
-
* @since 1.115
|
|
2164
|
-
*
|
|
2165
2249
|
* Gets current value of property {@link #getContentBackgroundDesign contentBackgroundDesign}.
|
|
2166
2250
|
*
|
|
2167
2251
|
* Specifies the content background design.
|
|
2168
2252
|
*
|
|
2169
2253
|
* Default value is `Standard`.
|
|
2170
2254
|
*
|
|
2255
|
+
* @since 1.115
|
|
2256
|
+
*
|
|
2171
2257
|
* @returns Value of property `contentBackgroundDesign`
|
|
2172
2258
|
*/
|
|
2173
2259
|
getContentBackgroundDesign():
|
|
@@ -2198,21 +2284,23 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2198
2284
|
*
|
|
2199
2285
|
* Default value is `true`.
|
|
2200
2286
|
*
|
|
2287
|
+
*
|
|
2201
2288
|
* @returns Value of property `sideExpanded`
|
|
2202
2289
|
*/
|
|
2203
2290
|
getSideExpanded(): boolean;
|
|
2204
2291
|
/**
|
|
2205
|
-
* @since 1.93
|
|
2206
|
-
*
|
|
2207
2292
|
* Gets content of aggregation {@link #getSubHeader subHeader}.
|
|
2208
2293
|
*
|
|
2209
2294
|
* The control to appear in the subheader area.
|
|
2295
|
+
*
|
|
2296
|
+
* @since 1.93
|
|
2210
2297
|
*/
|
|
2211
2298
|
getSubHeader(): IToolHeader;
|
|
2212
2299
|
/**
|
|
2213
2300
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMainContents mainContents}.
|
|
2214
2301
|
* and returns its index if found or -1 otherwise.
|
|
2215
2302
|
*
|
|
2303
|
+
*
|
|
2216
2304
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2217
2305
|
*/
|
|
2218
2306
|
indexOfMainContent(
|
|
@@ -2224,6 +2312,7 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2224
2312
|
/**
|
|
2225
2313
|
* Inserts a mainContent into the aggregation {@link #getMainContents mainContents}.
|
|
2226
2314
|
*
|
|
2315
|
+
*
|
|
2227
2316
|
* @returns Reference to `this` in order to allow method chaining
|
|
2228
2317
|
*/
|
|
2229
2318
|
insertMainContent(
|
|
@@ -2243,12 +2332,14 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2243
2332
|
*
|
|
2244
2333
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
2245
2334
|
*
|
|
2335
|
+
*
|
|
2246
2336
|
* @returns An array of the removed elements (might be empty)
|
|
2247
2337
|
*/
|
|
2248
2338
|
removeAllMainContents(): Control[];
|
|
2249
2339
|
/**
|
|
2250
2340
|
* Removes a mainContent from the aggregation {@link #getMainContents mainContents}.
|
|
2251
2341
|
*
|
|
2342
|
+
*
|
|
2252
2343
|
* @returns The removed mainContent or `null`
|
|
2253
2344
|
*/
|
|
2254
2345
|
removeMainContent(
|
|
@@ -2258,8 +2349,6 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2258
2349
|
vMainContent: int | string | Control
|
|
2259
2350
|
): Control | null;
|
|
2260
2351
|
/**
|
|
2261
|
-
* @since 1.115
|
|
2262
|
-
*
|
|
2263
2352
|
* Sets a new value for property {@link #getContentBackgroundDesign contentBackgroundDesign}.
|
|
2264
2353
|
*
|
|
2265
2354
|
* Specifies the content background design.
|
|
@@ -2268,6 +2357,8 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2268
2357
|
*
|
|
2269
2358
|
* Default value is `Standard`.
|
|
2270
2359
|
*
|
|
2360
|
+
* @since 1.115
|
|
2361
|
+
*
|
|
2271
2362
|
* @returns Reference to `this` in order to allow method chaining
|
|
2272
2363
|
*/
|
|
2273
2364
|
setContentBackgroundDesign(
|
|
@@ -2281,6 +2372,7 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2281
2372
|
/**
|
|
2282
2373
|
* Sets the aggregated {@link #getHeader header}.
|
|
2283
2374
|
*
|
|
2375
|
+
*
|
|
2284
2376
|
* @returns Reference to `this` in order to allow method chaining
|
|
2285
2377
|
*/
|
|
2286
2378
|
setHeader(
|
|
@@ -2292,6 +2384,7 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2292
2384
|
/**
|
|
2293
2385
|
* Sets the aggregated {@link #getSideContent sideContent}.
|
|
2294
2386
|
*
|
|
2387
|
+
*
|
|
2295
2388
|
* @returns Reference to `this` in order to allow method chaining
|
|
2296
2389
|
*/
|
|
2297
2390
|
setSideContent(
|
|
@@ -2303,6 +2396,7 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2303
2396
|
/**
|
|
2304
2397
|
* Sets the expand/collapse state of the SideContent.
|
|
2305
2398
|
*
|
|
2399
|
+
*
|
|
2306
2400
|
* @returns Pointer to the control instance for chaining
|
|
2307
2401
|
*/
|
|
2308
2402
|
setSideExpanded(
|
|
@@ -2312,10 +2406,10 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2312
2406
|
bSideExpanded: boolean
|
|
2313
2407
|
): this;
|
|
2314
2408
|
/**
|
|
2315
|
-
* @since 1.93
|
|
2316
|
-
*
|
|
2317
2409
|
* Sets the aggregated {@link #getSubHeader subHeader}.
|
|
2318
2410
|
*
|
|
2411
|
+
* @since 1.93
|
|
2412
|
+
*
|
|
2319
2413
|
* @returns Reference to `this` in order to allow method chaining
|
|
2320
2414
|
*/
|
|
2321
2415
|
setSubHeader(
|
|
@@ -2327,6 +2421,7 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2327
2421
|
/**
|
|
2328
2422
|
* Toggles the expand/collapse state of the SideContent.
|
|
2329
2423
|
*
|
|
2424
|
+
*
|
|
2330
2425
|
* @returns Pointer to the control instance for chaining.
|
|
2331
2426
|
*/
|
|
2332
2427
|
toggleSideContentMode(): this;
|
|
@@ -2339,9 +2434,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2339
2434
|
sideExpanded?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2340
2435
|
|
|
2341
2436
|
/**
|
|
2342
|
-
* @since 1.115
|
|
2343
|
-
*
|
|
2344
2437
|
* Specifies the content background design.
|
|
2438
|
+
*
|
|
2439
|
+
* @since 1.115
|
|
2345
2440
|
*/
|
|
2346
2441
|
contentBackgroundDesign?:
|
|
2347
2442
|
| (PageBackgroundDesign | keyof typeof PageBackgroundDesign)
|
|
@@ -2354,9 +2449,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2354
2449
|
header?: IToolHeader;
|
|
2355
2450
|
|
|
2356
2451
|
/**
|
|
2357
|
-
* @since 1.93
|
|
2358
|
-
*
|
|
2359
2452
|
* The control to appear in the subheader area.
|
|
2453
|
+
*
|
|
2454
|
+
* @since 1.93
|
|
2360
2455
|
*/
|
|
2361
2456
|
subHeader?: IToolHeader;
|
|
2362
2457
|
|