@sapui5/types 1.120.7 → 1.121.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +50 -18
- package/types/sap.ca.ui.d.ts +1112 -544
- package/types/sap.chart.d.ts +191 -43
- package/types/sap.collaboration.d.ts +185 -64
- package/types/sap.esh.search.ui.d.ts +2 -1870
- package/types/sap.f.d.ts +1605 -885
- package/types/sap.fe.core.d.ts +221 -191
- package/types/sap.fe.macros.d.ts +461 -568
- package/types/sap.fe.navigation.d.ts +59 -26
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +9 -0
- package/types/sap.fe.templates.d.ts +16 -11
- package/types/sap.fe.test.d.ts +333 -33
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +3938 -1749
- package/types/sap.insights.d.ts +165 -43
- package/types/sap.m.d.ts +14948 -8390
- package/types/sap.makit.d.ts +377 -185
- package/types/sap.me.d.ts +235 -35
- package/types/sap.ndc.d.ts +40 -9
- package/types/sap.ovp.d.ts +9 -7
- package/types/sap.rules.ui.d.ts +134 -75
- package/types/sap.sac.df.d.ts +270 -47
- package/types/sap.suite.ui.commons.d.ts +4323 -1016
- package/types/sap.suite.ui.generic.template.d.ts +236 -171
- package/types/sap.suite.ui.microchart.d.ts +1024 -388
- package/types/sap.tnt.d.ts +904 -294
- package/types/sap.ui.codeeditor.d.ts +55 -22
- package/types/sap.ui.commons.d.ts +2084 -676
- package/types/sap.ui.comp.d.ts +3909 -2996
- package/types/sap.ui.core.d.ts +5771 -3523
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +88 -67
- package/types/sap.ui.fl.d.ts +184 -112
- package/types/sap.ui.generic.app.d.ts +250 -193
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +496 -390
- package/types/sap.ui.layout.d.ts +1337 -668
- package/types/sap.ui.mdc.d.ts +3384 -2021
- package/types/sap.ui.richtexteditor.d.ts +115 -55
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +44 -10
- package/types/sap.ui.support.d.ts +58 -26
- package/types/sap.ui.table.d.ts +962 -626
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1976 -1246
- package/types/sap.ui.ux3.d.ts +1308 -488
- package/types/sap.ui.vbm.d.ts +6081 -3279
- package/types/sap.ui.vk.d.ts +2742 -837
- package/types/sap.ui.vtm.d.ts +681 -211
- package/types/sap.ui.webc.common.d.ts +7 -5
- package/types/sap.ui.webc.fiori.d.ts +884 -213
- package/types/sap.ui.webc.main.d.ts +2813 -599
- package/types/sap.uiext.inbox.d.ts +207 -36
- package/types/sap.ushell.d.ts +4972 -4262
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +621 -319
- package/types/sap.viz.d.ts +4118 -2318
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +79 -18
- package/types/sap.zen.crosstab.d.ts +81 -13
- package/types/sap.zen.dsh.d.ts +194 -143
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/zen/commons/library" {}
|
|
4
4
|
|
|
5
5
|
declare module "sap/zen/commons/HAlign" {
|
|
6
6
|
/**
|
|
7
|
-
* @deprecated (since 1.89.0)
|
|
8
|
-
*
|
|
9
7
|
* Horizontal alignment, e.g. of a layout cell's content within the cell's borders. Note that some values
|
|
10
8
|
* depend on the current locale's writing direction while others do not.
|
|
9
|
+
*
|
|
10
|
+
* @deprecated (since 1.89.0)
|
|
11
11
|
*/
|
|
12
12
|
enum HAlign {
|
|
13
13
|
/**
|
|
@@ -49,9 +49,9 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
49
49
|
} from "sap/ui/base/ManagedObject";
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* @deprecated (since 1.38)
|
|
53
|
-
*
|
|
54
52
|
* The Absolute Layout positions its child controls absolutely
|
|
53
|
+
*
|
|
54
|
+
* @deprecated (since 1.38)
|
|
55
55
|
*/
|
|
56
56
|
export default class AbsoluteLayout extends Control {
|
|
57
57
|
/**
|
|
@@ -91,6 +91,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
91
91
|
*
|
|
92
92
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
93
93
|
*
|
|
94
|
+
*
|
|
94
95
|
* @returns Created class / constructor function
|
|
95
96
|
*/
|
|
96
97
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -111,6 +112,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
111
112
|
/**
|
|
112
113
|
* Returns a metadata object for class sap.zen.commons.layout.AbsoluteLayout.
|
|
113
114
|
*
|
|
115
|
+
*
|
|
114
116
|
* @returns Metadata object describing this class
|
|
115
117
|
*/
|
|
116
118
|
static getMetadata(): ElementMetadata;
|
|
@@ -133,6 +135,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
133
135
|
/**
|
|
134
136
|
* Adds some position to the aggregation {@link #getPositions positions}.
|
|
135
137
|
*
|
|
138
|
+
*
|
|
136
139
|
* @returns Reference to `this` in order to allow method chaining
|
|
137
140
|
*/
|
|
138
141
|
addPosition(
|
|
@@ -149,6 +152,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
149
152
|
/**
|
|
150
153
|
* Destroys all the positions in the aggregation {@link #getPositions positions}.
|
|
151
154
|
*
|
|
155
|
+
*
|
|
152
156
|
* @returns Reference to `this` in order to allow method chaining
|
|
153
157
|
*/
|
|
154
158
|
destroyPositions(): this;
|
|
@@ -163,6 +167,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
163
167
|
*
|
|
164
168
|
* Default value is `"100%"`.
|
|
165
169
|
*
|
|
170
|
+
*
|
|
166
171
|
* @returns Value of property `height`
|
|
167
172
|
*/
|
|
168
173
|
getHeight(): CSSSize;
|
|
@@ -173,6 +178,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
173
178
|
*
|
|
174
179
|
* Default value is `Hidden`.
|
|
175
180
|
*
|
|
181
|
+
*
|
|
176
182
|
* @returns Value of property `horizontalScrolling`
|
|
177
183
|
*/
|
|
178
184
|
getHorizontalScrolling(): Scrolling | keyof typeof Scrolling;
|
|
@@ -189,6 +195,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
189
195
|
*
|
|
190
196
|
* Default value is `Hidden`.
|
|
191
197
|
*
|
|
198
|
+
*
|
|
192
199
|
* @returns Value of property `verticalScrolling`
|
|
193
200
|
*/
|
|
194
201
|
getVerticalScrolling(): Scrolling | keyof typeof Scrolling;
|
|
@@ -199,6 +206,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
199
206
|
*
|
|
200
207
|
* Default value is `'100%'`.
|
|
201
208
|
*
|
|
209
|
+
*
|
|
202
210
|
* @returns Value of property `width`
|
|
203
211
|
*/
|
|
204
212
|
getWidth(): CSSSize;
|
|
@@ -216,6 +224,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
216
224
|
* Checks for the provided `sap.zen.commons.layout.PositionContainer` in the aggregation {@link #getPositions positions}.
|
|
217
225
|
* and returns its index if found or -1 otherwise.
|
|
218
226
|
*
|
|
227
|
+
*
|
|
219
228
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
220
229
|
*/
|
|
221
230
|
indexOfPosition(
|
|
@@ -249,6 +258,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
249
258
|
/**
|
|
250
259
|
* Inserts a position into the aggregation {@link #getPositions positions}.
|
|
251
260
|
*
|
|
261
|
+
*
|
|
252
262
|
* @returns Reference to `this` in order to allow method chaining
|
|
253
263
|
*/
|
|
254
264
|
insertPosition(
|
|
@@ -273,6 +283,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
273
283
|
*
|
|
274
284
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
275
285
|
*
|
|
286
|
+
*
|
|
276
287
|
* @returns An array of the removed elements (might be empty)
|
|
277
288
|
*/
|
|
278
289
|
removeAllPositions(): PositionContainer[];
|
|
@@ -289,6 +300,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
289
300
|
/**
|
|
290
301
|
* Removes a position from the aggregation {@link #getPositions positions}.
|
|
291
302
|
*
|
|
303
|
+
*
|
|
292
304
|
* @returns The removed position or `null`
|
|
293
305
|
*/
|
|
294
306
|
removePosition(
|
|
@@ -306,6 +318,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
306
318
|
*
|
|
307
319
|
* Default value is `"100%"`.
|
|
308
320
|
*
|
|
321
|
+
*
|
|
309
322
|
* @returns Reference to `this` in order to allow method chaining
|
|
310
323
|
*/
|
|
311
324
|
setHeight(
|
|
@@ -323,6 +336,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
323
336
|
*
|
|
324
337
|
* Default value is `Hidden`.
|
|
325
338
|
*
|
|
339
|
+
*
|
|
326
340
|
* @returns Reference to `this` in order to allow method chaining
|
|
327
341
|
*/
|
|
328
342
|
setHorizontalScrolling(
|
|
@@ -356,6 +370,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
356
370
|
*
|
|
357
371
|
* Default value is `Hidden`.
|
|
358
372
|
*
|
|
373
|
+
*
|
|
359
374
|
* @returns Reference to `this` in order to allow method chaining
|
|
360
375
|
*/
|
|
361
376
|
setVerticalScrolling(
|
|
@@ -373,6 +388,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
373
388
|
*
|
|
374
389
|
* Default value is `'100%'`.
|
|
375
390
|
*
|
|
391
|
+
*
|
|
376
392
|
* @returns Reference to `this` in order to allow method chaining
|
|
377
393
|
*/
|
|
378
394
|
setWidth(
|
|
@@ -478,6 +494,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
478
494
|
*
|
|
479
495
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
480
496
|
*
|
|
497
|
+
*
|
|
481
498
|
* @returns Created class / constructor function
|
|
482
499
|
*/
|
|
483
500
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -498,12 +515,14 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
498
515
|
/**
|
|
499
516
|
* Returns a metadata object for class sap.zen.commons.layout.MatrixLayout.
|
|
500
517
|
*
|
|
518
|
+
*
|
|
501
519
|
* @returns Metadata object describing this class
|
|
502
520
|
*/
|
|
503
521
|
static getMetadata(): ElementMetadata;
|
|
504
522
|
/**
|
|
505
523
|
* Adds some row to the aggregation {@link #getRows rows}.
|
|
506
524
|
*
|
|
525
|
+
*
|
|
507
526
|
* @returns Reference to `this` in order to allow method chaining
|
|
508
527
|
*/
|
|
509
528
|
addRow(
|
|
@@ -519,6 +538,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
519
538
|
* content control, which is wrapped with a new (default) matrix layout cell first and then added to the
|
|
520
539
|
* row.
|
|
521
540
|
*
|
|
541
|
+
*
|
|
522
542
|
* @returns `this` to allow method chaining
|
|
523
543
|
*/
|
|
524
544
|
createRow(
|
|
@@ -530,6 +550,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
530
550
|
/**
|
|
531
551
|
* Destroys all the rows in the aggregation {@link #getRows rows}.
|
|
532
552
|
*
|
|
553
|
+
*
|
|
533
554
|
* @returns Reference to `this` in order to allow method chaining
|
|
534
555
|
*/
|
|
535
556
|
destroyRows(): this;
|
|
@@ -538,6 +559,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
538
559
|
*
|
|
539
560
|
* Number of columns. If not specified, the number of columns will be determined from the given cells.
|
|
540
561
|
*
|
|
562
|
+
*
|
|
541
563
|
* @returns Value of property `columns`
|
|
542
564
|
*/
|
|
543
565
|
getColumns(): int;
|
|
@@ -546,6 +568,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
546
568
|
*
|
|
547
569
|
* CSS height of the matrix layout.
|
|
548
570
|
*
|
|
571
|
+
*
|
|
549
572
|
* @returns Value of property `height`
|
|
550
573
|
*/
|
|
551
574
|
getHeight(): CSSSize;
|
|
@@ -559,6 +582,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
559
582
|
*
|
|
560
583
|
* Default value is `true`.
|
|
561
584
|
*
|
|
585
|
+
*
|
|
562
586
|
* @returns Value of property `layoutFixed`
|
|
563
587
|
*/
|
|
564
588
|
getLayoutFixed(): boolean;
|
|
@@ -573,6 +597,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
573
597
|
*
|
|
574
598
|
* CSS width of the matrix layout. If the LayoutFixed = true a adequate width should be provided.
|
|
575
599
|
*
|
|
600
|
+
*
|
|
576
601
|
* @returns Value of property `width`
|
|
577
602
|
*/
|
|
578
603
|
getWidth(): CSSSize;
|
|
@@ -582,6 +607,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
582
607
|
* Widths of the columns. Use an array to define the widths of the columns. If a column shall have an automatical
|
|
583
608
|
* sizing enter "auto" for this column width.
|
|
584
609
|
*
|
|
610
|
+
*
|
|
585
611
|
* @returns Value of property `widths`
|
|
586
612
|
*/
|
|
587
613
|
getWidths(): CSSSize[];
|
|
@@ -589,6 +615,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
589
615
|
* Checks for the provided `sap.zen.commons.layout.MatrixLayoutRow` in the aggregation {@link #getRows rows}.
|
|
590
616
|
* and returns its index if found or -1 otherwise.
|
|
591
617
|
*
|
|
618
|
+
*
|
|
592
619
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
593
620
|
*/
|
|
594
621
|
indexOfRow(
|
|
@@ -600,6 +627,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
600
627
|
/**
|
|
601
628
|
* Inserts a row into the aggregation {@link #getRows rows}.
|
|
602
629
|
*
|
|
630
|
+
*
|
|
603
631
|
* @returns Reference to `this` in order to allow method chaining
|
|
604
632
|
*/
|
|
605
633
|
insertRow(
|
|
@@ -619,12 +647,14 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
619
647
|
*
|
|
620
648
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
621
649
|
*
|
|
650
|
+
*
|
|
622
651
|
* @returns An array of the removed elements (might be empty)
|
|
623
652
|
*/
|
|
624
653
|
removeAllRows(): MatrixLayoutRow[];
|
|
625
654
|
/**
|
|
626
655
|
* Removes a row from the aggregation {@link #getRows rows}.
|
|
627
656
|
*
|
|
657
|
+
*
|
|
628
658
|
* @returns The removed row or `null`
|
|
629
659
|
*/
|
|
630
660
|
removeRow(
|
|
@@ -640,6 +670,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
640
670
|
*
|
|
641
671
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
642
672
|
*
|
|
673
|
+
*
|
|
643
674
|
* @returns Reference to `this` in order to allow method chaining
|
|
644
675
|
*/
|
|
645
676
|
setColumns(
|
|
@@ -655,6 +686,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
655
686
|
*
|
|
656
687
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
657
688
|
*
|
|
689
|
+
*
|
|
658
690
|
* @returns Reference to `this` in order to allow method chaining
|
|
659
691
|
*/
|
|
660
692
|
setHeight(
|
|
@@ -675,6 +707,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
675
707
|
*
|
|
676
708
|
* Default value is `true`.
|
|
677
709
|
*
|
|
710
|
+
*
|
|
678
711
|
* @returns Reference to `this` in order to allow method chaining
|
|
679
712
|
*/
|
|
680
713
|
setLayoutFixed(
|
|
@@ -690,6 +723,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
690
723
|
*
|
|
691
724
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
692
725
|
*
|
|
726
|
+
*
|
|
693
727
|
* @returns Reference to `this` in order to allow method chaining
|
|
694
728
|
*/
|
|
695
729
|
setWidth(
|
|
@@ -706,6 +740,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
706
740
|
*
|
|
707
741
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
708
742
|
*
|
|
743
|
+
*
|
|
709
744
|
* @returns Reference to `this` in order to allow method chaining
|
|
710
745
|
*/
|
|
711
746
|
setWidths(
|
|
@@ -761,9 +796,9 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
|
|
|
761
796
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
762
797
|
|
|
763
798
|
/**
|
|
764
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
765
|
-
*
|
|
766
799
|
* Non-control element used as part of a matrix layout's inner structure.
|
|
800
|
+
*
|
|
801
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
767
802
|
*/
|
|
768
803
|
export default class MatrixLayoutCell extends UI5Element {
|
|
769
804
|
/**
|
|
@@ -877,9 +912,9 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
877
912
|
} from "sap/ui/base/ManagedObject";
|
|
878
913
|
|
|
879
914
|
/**
|
|
880
|
-
* @deprecated (since 1.89.0)
|
|
881
|
-
*
|
|
882
915
|
* Non-control element used as part of a matrix layout's inner structure.
|
|
916
|
+
*
|
|
917
|
+
* @deprecated (since 1.89.0)
|
|
883
918
|
*/
|
|
884
919
|
export default class MatrixLayoutRow extends UI5Element {
|
|
885
920
|
/**
|
|
@@ -919,6 +954,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
919
954
|
*
|
|
920
955
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
921
956
|
*
|
|
957
|
+
*
|
|
922
958
|
* @returns Created class / constructor function
|
|
923
959
|
*/
|
|
924
960
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -939,12 +975,14 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
939
975
|
/**
|
|
940
976
|
* Returns a metadata object for class sap.zen.commons.layout.MatrixLayoutRow.
|
|
941
977
|
*
|
|
978
|
+
*
|
|
942
979
|
* @returns Metadata object describing this class
|
|
943
980
|
*/
|
|
944
981
|
static getMetadata(): ElementMetadata;
|
|
945
982
|
/**
|
|
946
983
|
* Adds some cell to the aggregation {@link #getCells cells}.
|
|
947
984
|
*
|
|
985
|
+
*
|
|
948
986
|
* @returns Reference to `this` in order to allow method chaining
|
|
949
987
|
*/
|
|
950
988
|
addCell(
|
|
@@ -994,6 +1032,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
994
1032
|
/**
|
|
995
1033
|
* Destroys all the cells in the aggregation {@link #getCells cells}.
|
|
996
1034
|
*
|
|
1035
|
+
*
|
|
997
1036
|
* @returns Reference to `this` in order to allow method chaining
|
|
998
1037
|
*/
|
|
999
1038
|
destroyCells(): this;
|
|
@@ -1008,6 +1047,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
1008
1047
|
*
|
|
1009
1048
|
* Height of the row.
|
|
1010
1049
|
*
|
|
1050
|
+
*
|
|
1011
1051
|
* @returns Value of property `height`
|
|
1012
1052
|
*/
|
|
1013
1053
|
getHeight(): CSSSize;
|
|
@@ -1025,6 +1065,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
1025
1065
|
* Checks for the provided `sap.zen.commons.layout.MatrixLayoutCell` in the aggregation {@link #getCells cells}.
|
|
1026
1066
|
* and returns its index if found or -1 otherwise.
|
|
1027
1067
|
*
|
|
1068
|
+
*
|
|
1028
1069
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1029
1070
|
*/
|
|
1030
1071
|
indexOfCell(
|
|
@@ -1036,6 +1077,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
1036
1077
|
/**
|
|
1037
1078
|
* Inserts a cell into the aggregation {@link #getCells cells}.
|
|
1038
1079
|
*
|
|
1080
|
+
*
|
|
1039
1081
|
* @returns Reference to `this` in order to allow method chaining
|
|
1040
1082
|
*/
|
|
1041
1083
|
insertCell(
|
|
@@ -1055,12 +1097,14 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
1055
1097
|
*
|
|
1056
1098
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1057
1099
|
*
|
|
1100
|
+
*
|
|
1058
1101
|
* @returns An array of the removed elements (might be empty)
|
|
1059
1102
|
*/
|
|
1060
1103
|
removeAllCells(): MatrixLayoutCell[];
|
|
1061
1104
|
/**
|
|
1062
1105
|
* Removes a cell from the aggregation {@link #getCells cells}.
|
|
1063
1106
|
*
|
|
1107
|
+
*
|
|
1064
1108
|
* @returns The removed cell or `null`
|
|
1065
1109
|
*/
|
|
1066
1110
|
removeCell(
|
|
@@ -1088,6 +1132,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
|
|
|
1088
1132
|
*
|
|
1089
1133
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1090
1134
|
*
|
|
1135
|
+
*
|
|
1091
1136
|
* @returns Reference to `this` in order to allow method chaining
|
|
1092
1137
|
*/
|
|
1093
1138
|
setHeight(
|
|
@@ -1127,9 +1172,9 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1127
1172
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1128
1173
|
|
|
1129
1174
|
/**
|
|
1130
|
-
* @deprecated (since 1.89)
|
|
1131
|
-
*
|
|
1132
1175
|
* Is used to specify the position of a control in the AbsoluteLayout
|
|
1176
|
+
*
|
|
1177
|
+
* @deprecated (since 1.89)
|
|
1133
1178
|
*/
|
|
1134
1179
|
export default class PositionContainer extends UI5Element {
|
|
1135
1180
|
/**
|
|
@@ -1169,6 +1214,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1169
1214
|
*
|
|
1170
1215
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1171
1216
|
*
|
|
1217
|
+
*
|
|
1172
1218
|
* @returns Created class / constructor function
|
|
1173
1219
|
*/
|
|
1174
1220
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -1189,12 +1235,14 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1189
1235
|
/**
|
|
1190
1236
|
* Returns a metadata object for class sap.zen.commons.layout.PositionContainer.
|
|
1191
1237
|
*
|
|
1238
|
+
*
|
|
1192
1239
|
* @returns Metadata object describing this class
|
|
1193
1240
|
*/
|
|
1194
1241
|
static getMetadata(): ElementMetadata;
|
|
1195
1242
|
/**
|
|
1196
1243
|
* Destroys the control in the aggregation {@link #getControl control}.
|
|
1197
1244
|
*
|
|
1245
|
+
*
|
|
1198
1246
|
* @returns Reference to `this` in order to allow method chaining
|
|
1199
1247
|
*/
|
|
1200
1248
|
destroyControl(): this;
|
|
@@ -1203,6 +1251,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1203
1251
|
*
|
|
1204
1252
|
* Defines the distance to the bottom of the layout (as specified in HTML)
|
|
1205
1253
|
*
|
|
1254
|
+
*
|
|
1206
1255
|
* @returns Value of property `bottom`
|
|
1207
1256
|
*/
|
|
1208
1257
|
getBottom(): CSSSize;
|
|
@@ -1214,6 +1263,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1214
1263
|
*
|
|
1215
1264
|
* Default value is `false`.
|
|
1216
1265
|
*
|
|
1266
|
+
*
|
|
1217
1267
|
* @returns Value of property `centerHorizontally`
|
|
1218
1268
|
*/
|
|
1219
1269
|
getCenterHorizontally(): boolean;
|
|
@@ -1225,6 +1275,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1225
1275
|
*
|
|
1226
1276
|
* Default value is `false`.
|
|
1227
1277
|
*
|
|
1278
|
+
*
|
|
1228
1279
|
* @returns Value of property `centerVertically`
|
|
1229
1280
|
*/
|
|
1230
1281
|
getCenterVertically(): boolean;
|
|
@@ -1239,6 +1290,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1239
1290
|
*
|
|
1240
1291
|
* Defines the distance to the left of the layout (as specified in HTML)
|
|
1241
1292
|
*
|
|
1293
|
+
*
|
|
1242
1294
|
* @returns Value of property `left`
|
|
1243
1295
|
*/
|
|
1244
1296
|
getLeft(): CSSSize;
|
|
@@ -1247,6 +1299,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1247
1299
|
*
|
|
1248
1300
|
* Defines the distance to the right of the layout (as specified in HTML)
|
|
1249
1301
|
*
|
|
1302
|
+
*
|
|
1250
1303
|
* @returns Value of property `right`
|
|
1251
1304
|
*/
|
|
1252
1305
|
getRight(): CSSSize;
|
|
@@ -1255,6 +1308,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1255
1308
|
*
|
|
1256
1309
|
* Defines the distance to the top of the layout (as specified in HTML)
|
|
1257
1310
|
*
|
|
1311
|
+
*
|
|
1258
1312
|
* @returns Value of property `top`
|
|
1259
1313
|
*/
|
|
1260
1314
|
getTop(): CSSSize;
|
|
@@ -1265,6 +1319,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1265
1319
|
*
|
|
1266
1320
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1267
1321
|
*
|
|
1322
|
+
*
|
|
1268
1323
|
* @returns Reference to `this` in order to allow method chaining
|
|
1269
1324
|
*/
|
|
1270
1325
|
setBottom(
|
|
@@ -1283,6 +1338,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1283
1338
|
*
|
|
1284
1339
|
* Default value is `false`.
|
|
1285
1340
|
*
|
|
1341
|
+
*
|
|
1286
1342
|
* @returns Reference to `this` in order to allow method chaining
|
|
1287
1343
|
*/
|
|
1288
1344
|
setCenterHorizontally(
|
|
@@ -1301,6 +1357,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1301
1357
|
*
|
|
1302
1358
|
* Default value is `false`.
|
|
1303
1359
|
*
|
|
1360
|
+
*
|
|
1304
1361
|
* @returns Reference to `this` in order to allow method chaining
|
|
1305
1362
|
*/
|
|
1306
1363
|
setCenterVertically(
|
|
@@ -1312,6 +1369,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1312
1369
|
/**
|
|
1313
1370
|
* Sets the aggregated {@link #getControl control}.
|
|
1314
1371
|
*
|
|
1372
|
+
*
|
|
1315
1373
|
* @returns Reference to `this` in order to allow method chaining
|
|
1316
1374
|
*/
|
|
1317
1375
|
setControl(
|
|
@@ -1327,6 +1385,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1327
1385
|
*
|
|
1328
1386
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1329
1387
|
*
|
|
1388
|
+
*
|
|
1330
1389
|
* @returns Reference to `this` in order to allow method chaining
|
|
1331
1390
|
*/
|
|
1332
1391
|
setLeft(
|
|
@@ -1342,6 +1401,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1342
1401
|
*
|
|
1343
1402
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1344
1403
|
*
|
|
1404
|
+
*
|
|
1345
1405
|
* @returns Reference to `this` in order to allow method chaining
|
|
1346
1406
|
*/
|
|
1347
1407
|
setRight(
|
|
@@ -1357,6 +1417,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1357
1417
|
*
|
|
1358
1418
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1359
1419
|
*
|
|
1420
|
+
*
|
|
1360
1421
|
* @returns Reference to `this` in order to allow method chaining
|
|
1361
1422
|
*/
|
|
1362
1423
|
setTop(
|
|
@@ -1420,12 +1481,12 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1420
1481
|
|
|
1421
1482
|
declare module "sap/zen/commons/Padding" {
|
|
1422
1483
|
/**
|
|
1423
|
-
* @deprecated (since 1.89)
|
|
1424
|
-
* @experimental
|
|
1425
|
-
*
|
|
1426
1484
|
* Padding, e.g. of a layout cell's content within the cell's borders. Note that all options except "None"
|
|
1427
1485
|
* include a padding of 2px at the top and bottom, and differ only in the presence of a 4px padding towards
|
|
1428
1486
|
* the beginning or end of a line, in the current locale's writing direction.
|
|
1487
|
+
*
|
|
1488
|
+
* @deprecated (since 1.89)
|
|
1489
|
+
* @experimental
|
|
1429
1490
|
*/
|
|
1430
1491
|
enum Padding {
|
|
1431
1492
|
/**
|
|
@@ -1456,10 +1517,10 @@ declare module "sap/zen/commons/Padding" {
|
|
|
1456
1517
|
|
|
1457
1518
|
declare module "sap/zen/commons/Separation" {
|
|
1458
1519
|
/**
|
|
1459
|
-
* @deprecated (since 1.89.0)
|
|
1460
|
-
*
|
|
1461
1520
|
* Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of defined width, with or
|
|
1462
1521
|
* without a vertical line in its middle.
|
|
1522
|
+
*
|
|
1523
|
+
* @deprecated (since 1.89.0)
|
|
1463
1524
|
*/
|
|
1464
1525
|
enum Separation {
|
|
1465
1526
|
/**
|
|
@@ -1496,9 +1557,9 @@ declare module "sap/zen/commons/Separation" {
|
|
|
1496
1557
|
|
|
1497
1558
|
declare module "sap/zen/commons/VAlign" {
|
|
1498
1559
|
/**
|
|
1499
|
-
* @deprecated (since 1.89.0)
|
|
1500
|
-
*
|
|
1501
1560
|
* Vertical alignment, e.g. of a layout cell's content within the cell's borders.
|
|
1561
|
+
*
|
|
1562
|
+
* @deprecated (since 1.89.0)
|
|
1502
1563
|
*/
|
|
1503
1564
|
enum VAlign {
|
|
1504
1565
|
/**
|