@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.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.8
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -6,14 +6,15 @@ declare module "sap/ui/fl/apply/api/ControlVariantApplyAPI" {
|
|
|
6
6
|
import ManagedObject from "sap/ui/base/ManagedObject";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* @since 1.67
|
|
10
|
-
*
|
|
11
9
|
* Provides an API for applications to work with control variants. See also {@link sap.ui.fl.variants.VariantManagement}.
|
|
10
|
+
*
|
|
11
|
+
* @since 1.67
|
|
12
12
|
*/
|
|
13
13
|
interface ControlVariantApplyAPI {
|
|
14
14
|
/**
|
|
15
15
|
* Activates the passed variant applicable to the passed control/component.
|
|
16
16
|
*
|
|
17
|
+
*
|
|
17
18
|
* @returns Resolves after the variant is activated or rejects if an error occurs
|
|
18
19
|
*/
|
|
19
20
|
activateVariant(
|
|
@@ -108,12 +109,12 @@ declare module "sap/ui/fl/transport/TransportDialog" {
|
|
|
108
109
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
109
110
|
|
|
110
111
|
/**
|
|
111
|
-
* @deprecated (since 1.74) - The TransportDialog should be used only internally inside the `sap.ui.fl`
|
|
112
|
-
* library.
|
|
113
|
-
*
|
|
114
112
|
* The Transport Dialog Control can be used to implement a value help for selecting an ABAP package and
|
|
115
113
|
* transport request. It is not a generic utility, but part of the Variantmanament and therefore cannot
|
|
116
114
|
* be used in any other application.
|
|
115
|
+
*
|
|
116
|
+
* @deprecated (since 1.74) - The TransportDialog should be used only internally inside the `sap.ui.fl`
|
|
117
|
+
* library.
|
|
117
118
|
*/
|
|
118
119
|
export default class TransportDialog extends Dialog {
|
|
119
120
|
/**
|
|
@@ -159,6 +160,7 @@ declare module "sap/ui/fl/transport/TransportDialog" {
|
|
|
159
160
|
*
|
|
160
161
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Dialog.extend}.
|
|
161
162
|
*
|
|
163
|
+
*
|
|
162
164
|
* @returns Created class / constructor function
|
|
163
165
|
*/
|
|
164
166
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -179,6 +181,7 @@ declare module "sap/ui/fl/transport/TransportDialog" {
|
|
|
179
181
|
/**
|
|
180
182
|
* Returns a metadata object for class sap.ui.fl.transport.TransportDialog.
|
|
181
183
|
*
|
|
184
|
+
*
|
|
182
185
|
* @returns Metadata object describing this class
|
|
183
186
|
*/
|
|
184
187
|
static getMetadata(): ElementMetadata;
|
|
@@ -201,11 +204,11 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
201
204
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
202
205
|
|
|
203
206
|
/**
|
|
204
|
-
* @since 1.56
|
|
205
|
-
*
|
|
206
207
|
* Can be used to manage variants. You can use this control in most controls that are enabled for key
|
|
207
208
|
* user adaptation.
|
|
208
209
|
* **Note: **On the user interface, variants are generally referred to as "views".
|
|
210
|
+
*
|
|
211
|
+
* @since 1.56
|
|
209
212
|
*/
|
|
210
213
|
export default class VariantManagement
|
|
211
214
|
extends Control
|
|
@@ -257,6 +260,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
257
260
|
*
|
|
258
261
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
259
262
|
*
|
|
263
|
+
*
|
|
260
264
|
* @returns Created class / constructor function
|
|
261
265
|
*/
|
|
262
266
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -277,12 +281,14 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
277
281
|
/**
|
|
278
282
|
* Returns a metadata object for class sap.ui.fl.variants.VariantManagement.
|
|
279
283
|
*
|
|
284
|
+
*
|
|
280
285
|
* @returns Metadata object describing this class
|
|
281
286
|
*/
|
|
282
287
|
static getMetadata(): ElementMetadata;
|
|
283
288
|
/**
|
|
284
289
|
* Adds a control to the association {@link #for for}.
|
|
285
290
|
*
|
|
291
|
+
*
|
|
286
292
|
* @returns Reference to `this` in order to allow method chaining
|
|
287
293
|
*/
|
|
288
294
|
addFor(
|
|
@@ -299,6 +305,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
299
305
|
*
|
|
300
306
|
* This event is fired when users presses the cancel button inside Save As dialog.
|
|
301
307
|
*
|
|
308
|
+
*
|
|
302
309
|
* @returns Reference to `this` in order to allow method chaining
|
|
303
310
|
*/
|
|
304
311
|
attachCancel(
|
|
@@ -325,6 +332,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
325
332
|
*
|
|
326
333
|
* This event is fired when users presses the cancel button inside Save As dialog.
|
|
327
334
|
*
|
|
335
|
+
*
|
|
328
336
|
* @returns Reference to `this` in order to allow method chaining
|
|
329
337
|
*/
|
|
330
338
|
attachCancel(
|
|
@@ -346,6 +354,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
346
354
|
*
|
|
347
355
|
* This event is fired when the model and context are set.
|
|
348
356
|
*
|
|
357
|
+
*
|
|
349
358
|
* @returns Reference to `this` in order to allow method chaining
|
|
350
359
|
*/
|
|
351
360
|
attachInitialized(
|
|
@@ -372,6 +381,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
372
381
|
*
|
|
373
382
|
* This event is fired when the model and context are set.
|
|
374
383
|
*
|
|
384
|
+
*
|
|
375
385
|
* @returns Reference to `this` in order to allow method chaining
|
|
376
386
|
*/
|
|
377
387
|
attachInitialized(
|
|
@@ -393,6 +403,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
393
403
|
*
|
|
394
404
|
* This event is fired when users apply changes to variants in the Manage Views dialog.
|
|
395
405
|
*
|
|
406
|
+
*
|
|
396
407
|
* @returns Reference to `this` in order to allow method chaining
|
|
397
408
|
*/
|
|
398
409
|
attachManage(
|
|
@@ -419,6 +430,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
419
430
|
*
|
|
420
431
|
* This event is fired when users apply changes to variants in the Manage Views dialog.
|
|
421
432
|
*
|
|
433
|
+
*
|
|
422
434
|
* @returns Reference to `this` in order to allow method chaining
|
|
423
435
|
*/
|
|
424
436
|
attachManage(
|
|
@@ -441,6 +453,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
441
453
|
* This event is fired when the Save View dialog or the Save As dialog is closed with the
|
|
442
454
|
* save button.
|
|
443
455
|
*
|
|
456
|
+
*
|
|
444
457
|
* @returns Reference to `this` in order to allow method chaining
|
|
445
458
|
*/
|
|
446
459
|
attachSave(
|
|
@@ -468,6 +481,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
468
481
|
* This event is fired when the Save View dialog or the Save As dialog is closed with the
|
|
469
482
|
* save button.
|
|
470
483
|
*
|
|
484
|
+
*
|
|
471
485
|
* @returns Reference to `this` in order to allow method chaining
|
|
472
486
|
*/
|
|
473
487
|
attachSave(
|
|
@@ -489,6 +503,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
489
503
|
*
|
|
490
504
|
* This event is fired when a new variant is selected.
|
|
491
505
|
*
|
|
506
|
+
*
|
|
492
507
|
* @returns Reference to `this` in order to allow method chaining
|
|
493
508
|
*/
|
|
494
509
|
attachSelect(
|
|
@@ -515,6 +530,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
515
530
|
*
|
|
516
531
|
* This event is fired when a new variant is selected.
|
|
517
532
|
*
|
|
533
|
+
*
|
|
518
534
|
* @returns Reference to `this` in order to allow method chaining
|
|
519
535
|
*/
|
|
520
536
|
attachSelect(
|
|
@@ -533,6 +549,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
533
549
|
*
|
|
534
550
|
* The passed function and listener object must match the ones used for event registration.
|
|
535
551
|
*
|
|
552
|
+
*
|
|
536
553
|
* @returns Reference to `this` in order to allow method chaining
|
|
537
554
|
*/
|
|
538
555
|
detachCancel(
|
|
@@ -550,6 +567,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
550
567
|
*
|
|
551
568
|
* The passed function and listener object must match the ones used for event registration.
|
|
552
569
|
*
|
|
570
|
+
*
|
|
553
571
|
* @returns Reference to `this` in order to allow method chaining
|
|
554
572
|
*/
|
|
555
573
|
detachInitialized(
|
|
@@ -567,6 +585,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
567
585
|
*
|
|
568
586
|
* The passed function and listener object must match the ones used for event registration.
|
|
569
587
|
*
|
|
588
|
+
*
|
|
570
589
|
* @returns Reference to `this` in order to allow method chaining
|
|
571
590
|
*/
|
|
572
591
|
detachManage(
|
|
@@ -584,6 +603,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
584
603
|
*
|
|
585
604
|
* The passed function and listener object must match the ones used for event registration.
|
|
586
605
|
*
|
|
606
|
+
*
|
|
587
607
|
* @returns Reference to `this` in order to allow method chaining
|
|
588
608
|
*/
|
|
589
609
|
detachSave(
|
|
@@ -601,6 +621,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
601
621
|
*
|
|
602
622
|
* The passed function and listener object must match the ones used for event registration.
|
|
603
623
|
*
|
|
624
|
+
*
|
|
604
625
|
* @returns Reference to `this` in order to allow method chaining
|
|
605
626
|
*/
|
|
606
627
|
detachSelect(
|
|
@@ -614,10 +635,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
614
635
|
oListener?: object
|
|
615
636
|
): this;
|
|
616
637
|
/**
|
|
617
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
618
|
-
*
|
|
619
638
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
620
639
|
*
|
|
640
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
641
|
+
*
|
|
621
642
|
* @returns Reference to `this` in order to allow method chaining
|
|
622
643
|
*/
|
|
623
644
|
fireCancel(
|
|
@@ -627,10 +648,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
627
648
|
mParameters?: object
|
|
628
649
|
): this;
|
|
629
650
|
/**
|
|
630
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
631
|
-
*
|
|
632
651
|
* Fires event {@link #event:initialized initialized} to attached listeners.
|
|
633
652
|
*
|
|
653
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
654
|
+
*
|
|
634
655
|
* @returns Reference to `this` in order to allow method chaining
|
|
635
656
|
*/
|
|
636
657
|
fireInitialized(
|
|
@@ -640,10 +661,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
640
661
|
mParameters?: object
|
|
641
662
|
): this;
|
|
642
663
|
/**
|
|
643
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
644
|
-
*
|
|
645
664
|
* Fires event {@link #event:manage manage} to attached listeners.
|
|
646
665
|
*
|
|
666
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
667
|
+
*
|
|
647
668
|
* @returns Reference to `this` in order to allow method chaining
|
|
648
669
|
*/
|
|
649
670
|
fireManage(
|
|
@@ -653,10 +674,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
653
674
|
mParameters?: VariantManagement$ManageEventParameters
|
|
654
675
|
): this;
|
|
655
676
|
/**
|
|
656
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
657
|
-
*
|
|
658
677
|
* Fires event {@link #event:save save} to attached listeners.
|
|
659
678
|
*
|
|
679
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
680
|
+
*
|
|
660
681
|
* @returns Reference to `this` in order to allow method chaining
|
|
661
682
|
*/
|
|
662
683
|
fireSave(
|
|
@@ -666,10 +687,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
666
687
|
mParameters?: VariantManagement$SaveEventParameters
|
|
667
688
|
): this;
|
|
668
689
|
/**
|
|
669
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
670
|
-
*
|
|
671
690
|
* Fires event {@link #event:select select} to attached listeners.
|
|
672
691
|
*
|
|
692
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
693
|
+
*
|
|
673
694
|
* @returns Reference to `this` in order to allow method chaining
|
|
674
695
|
*/
|
|
675
696
|
fireSelect(
|
|
@@ -681,6 +702,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
681
702
|
/**
|
|
682
703
|
* Gets the currently selected variant key.
|
|
683
704
|
*
|
|
705
|
+
*
|
|
684
706
|
* @returns Key of the currently selected variant. In case the model is not yet set `null` will be returned.
|
|
685
707
|
*/
|
|
686
708
|
getCurrentVariantKey(): string | null;
|
|
@@ -693,6 +715,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
693
715
|
*
|
|
694
716
|
* Default value is `empty string`.
|
|
695
717
|
*
|
|
718
|
+
*
|
|
696
719
|
* @returns Value of property `displayTextForExecuteOnSelectionForStandardVariant`
|
|
697
720
|
*/
|
|
698
721
|
getDisplayTextForExecuteOnSelectionForStandardVariant(): string;
|
|
@@ -703,6 +726,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
703
726
|
*
|
|
704
727
|
* Default value is `true`.
|
|
705
728
|
*
|
|
729
|
+
*
|
|
706
730
|
* @returns Value of property `editable`
|
|
707
731
|
*/
|
|
708
732
|
getEditable(): boolean;
|
|
@@ -713,6 +737,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
713
737
|
*
|
|
714
738
|
* Default value is `false`.
|
|
715
739
|
*
|
|
740
|
+
*
|
|
716
741
|
* @returns Value of property `executeOnSelectionForStandardDefault`
|
|
717
742
|
*/
|
|
718
743
|
getExecuteOnSelectionForStandardDefault(): boolean;
|
|
@@ -721,14 +746,14 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
721
746
|
*/
|
|
722
747
|
getFor(): ID[];
|
|
723
748
|
/**
|
|
724
|
-
* @since 1.104
|
|
725
|
-
*
|
|
726
749
|
* Gets current value of property {@link #getHeaderLevel headerLevel}.
|
|
727
750
|
*
|
|
728
751
|
* Semantic level of the header. For more information, see {@link sap.m.Title#setLevel}.
|
|
729
752
|
*
|
|
730
753
|
* Default value is `Auto`.
|
|
731
754
|
*
|
|
755
|
+
* @since 1.104
|
|
756
|
+
*
|
|
732
757
|
* @returns Value of property `headerLevel`
|
|
733
758
|
*/
|
|
734
759
|
getHeaderLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
@@ -740,18 +765,19 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
740
765
|
*
|
|
741
766
|
* Default value is `false`.
|
|
742
767
|
*
|
|
768
|
+
*
|
|
743
769
|
* @returns Value of property `inErrorState`
|
|
744
770
|
*/
|
|
745
771
|
getInErrorState(): boolean;
|
|
746
772
|
/**
|
|
747
|
-
* @since 1.109
|
|
748
|
-
*
|
|
749
773
|
* Gets current value of property {@link #getMaxWidth maxWidth}.
|
|
750
774
|
*
|
|
751
775
|
* Sets the maximum width of the control.
|
|
752
776
|
*
|
|
753
777
|
* Default value is `"100%"`.
|
|
754
778
|
*
|
|
779
|
+
* @since 1.109
|
|
780
|
+
*
|
|
755
781
|
* @returns Value of property `maxWidth`
|
|
756
782
|
*/
|
|
757
783
|
getMaxWidth(): CSSSize;
|
|
@@ -762,21 +788,23 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
762
788
|
*
|
|
763
789
|
* Default value is `empty string`.
|
|
764
790
|
*
|
|
791
|
+
*
|
|
765
792
|
* @returns Value of property `modelName`
|
|
766
793
|
*/
|
|
767
794
|
getModelName(): string;
|
|
768
795
|
/**
|
|
769
796
|
* Determines if the current variant is modified.
|
|
770
797
|
*
|
|
798
|
+
*
|
|
771
799
|
* @returns If the current variant is modified `true`, otherwise `false`
|
|
772
800
|
*/
|
|
773
801
|
getModified(): boolean;
|
|
774
802
|
/**
|
|
775
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
776
|
-
*
|
|
777
803
|
* Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which
|
|
778
804
|
* is fired when width of the control is changed.
|
|
779
805
|
*
|
|
806
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
807
|
+
*
|
|
780
808
|
* @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
|
|
781
809
|
*/
|
|
782
810
|
getOverflowToolbarConfig(): {
|
|
@@ -793,6 +821,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
793
821
|
*
|
|
794
822
|
* Default value is `true`.
|
|
795
823
|
*
|
|
824
|
+
*
|
|
796
825
|
* @returns Value of property `resetOnContextChange`
|
|
797
826
|
*/
|
|
798
827
|
getResetOnContextChange(): boolean;
|
|
@@ -803,18 +832,19 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
803
832
|
*
|
|
804
833
|
* Default value is `true`.
|
|
805
834
|
*
|
|
835
|
+
*
|
|
806
836
|
* @returns Value of property `showSetAsDefault`
|
|
807
837
|
*/
|
|
808
838
|
getShowSetAsDefault(): boolean;
|
|
809
839
|
/**
|
|
810
|
-
* @since 1.109
|
|
811
|
-
*
|
|
812
840
|
* Gets current value of property {@link #getTitleStyle titleStyle}.
|
|
813
841
|
*
|
|
814
842
|
* Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
815
843
|
*
|
|
816
844
|
* Default value is `Auto`.
|
|
817
845
|
*
|
|
846
|
+
* @since 1.109
|
|
847
|
+
*
|
|
818
848
|
* @returns Value of property `titleStyle`
|
|
819
849
|
*/
|
|
820
850
|
getTitleStyle(): TitleLevel | keyof typeof TitleLevel;
|
|
@@ -827,24 +857,28 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
827
857
|
*
|
|
828
858
|
* Default value is `false`.
|
|
829
859
|
*
|
|
860
|
+
*
|
|
830
861
|
* @returns Value of property `updateVariantInURL`
|
|
831
862
|
*/
|
|
832
863
|
getUpdateVariantInURL(): boolean;
|
|
833
864
|
/**
|
|
834
865
|
* Retrieves all variants.
|
|
835
866
|
*
|
|
867
|
+
*
|
|
836
868
|
* @returns All variants. In case the model is not yet set, an empty array will be returned.
|
|
837
869
|
*/
|
|
838
870
|
getVariants(): any[];
|
|
839
871
|
/**
|
|
840
872
|
* Removes all the controls in the association named {@link #getFor for}.
|
|
841
873
|
*
|
|
874
|
+
*
|
|
842
875
|
* @returns An array of the removed elements (might be empty)
|
|
843
876
|
*/
|
|
844
877
|
removeAllFor(): ID[];
|
|
845
878
|
/**
|
|
846
879
|
* Removes an for from the association named {@link #getFor for}.
|
|
847
880
|
*
|
|
881
|
+
*
|
|
848
882
|
* @returns The removed for or `null`
|
|
849
883
|
*/
|
|
850
884
|
removeFor(
|
|
@@ -873,6 +907,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
873
907
|
*
|
|
874
908
|
* Default value is `empty string`.
|
|
875
909
|
*
|
|
910
|
+
*
|
|
876
911
|
* @returns Reference to `this` in order to allow method chaining
|
|
877
912
|
*/
|
|
878
913
|
setDisplayTextForExecuteOnSelectionForStandardVariant(
|
|
@@ -890,6 +925,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
890
925
|
*
|
|
891
926
|
* Default value is `true`.
|
|
892
927
|
*
|
|
928
|
+
*
|
|
893
929
|
* @returns Reference to `this` in order to allow method chaining
|
|
894
930
|
*/
|
|
895
931
|
setEditable(
|
|
@@ -907,6 +943,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
907
943
|
*
|
|
908
944
|
* Default value is `false`.
|
|
909
945
|
*
|
|
946
|
+
*
|
|
910
947
|
* @returns Reference to `this` in order to allow method chaining
|
|
911
948
|
*/
|
|
912
949
|
setExecuteOnSelectionForStandardDefault(
|
|
@@ -916,8 +953,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
916
953
|
bExecuteOnSelectionForStandardDefault?: boolean
|
|
917
954
|
): this;
|
|
918
955
|
/**
|
|
919
|
-
* @since 1.104
|
|
920
|
-
*
|
|
921
956
|
* Sets a new value for property {@link #getHeaderLevel headerLevel}.
|
|
922
957
|
*
|
|
923
958
|
* Semantic level of the header. For more information, see {@link sap.m.Title#setLevel}.
|
|
@@ -926,6 +961,8 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
926
961
|
*
|
|
927
962
|
* Default value is `Auto`.
|
|
928
963
|
*
|
|
964
|
+
* @since 1.104
|
|
965
|
+
*
|
|
929
966
|
* @returns Reference to `this` in order to allow method chaining
|
|
930
967
|
*/
|
|
931
968
|
setHeaderLevel(
|
|
@@ -944,6 +981,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
944
981
|
*
|
|
945
982
|
* Default value is `false`.
|
|
946
983
|
*
|
|
984
|
+
*
|
|
947
985
|
* @returns Reference to `this` in order to allow method chaining
|
|
948
986
|
*/
|
|
949
987
|
setInErrorState(
|
|
@@ -953,8 +991,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
953
991
|
bInErrorState?: boolean
|
|
954
992
|
): this;
|
|
955
993
|
/**
|
|
956
|
-
* @since 1.109
|
|
957
|
-
*
|
|
958
994
|
* Sets a new value for property {@link #getMaxWidth maxWidth}.
|
|
959
995
|
*
|
|
960
996
|
* Sets the maximum width of the control.
|
|
@@ -963,6 +999,8 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
963
999
|
*
|
|
964
1000
|
* Default value is `"100%"`.
|
|
965
1001
|
*
|
|
1002
|
+
* @since 1.109
|
|
1003
|
+
*
|
|
966
1004
|
* @returns Reference to `this` in order to allow method chaining
|
|
967
1005
|
*/
|
|
968
1006
|
setMaxWidth(
|
|
@@ -980,6 +1018,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
980
1018
|
*
|
|
981
1019
|
* Default value is `empty string`.
|
|
982
1020
|
*
|
|
1021
|
+
*
|
|
983
1022
|
* @returns Reference to `this` in order to allow method chaining
|
|
984
1023
|
*/
|
|
985
1024
|
setModelName(
|
|
@@ -999,6 +1038,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
999
1038
|
*
|
|
1000
1039
|
* Default value is `true`.
|
|
1001
1040
|
*
|
|
1041
|
+
*
|
|
1002
1042
|
* @returns Reference to `this` in order to allow method chaining
|
|
1003
1043
|
*/
|
|
1004
1044
|
setResetOnContextChange(
|
|
@@ -1016,6 +1056,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1016
1056
|
*
|
|
1017
1057
|
* Default value is `true`.
|
|
1018
1058
|
*
|
|
1059
|
+
*
|
|
1019
1060
|
* @returns Reference to `this` in order to allow method chaining
|
|
1020
1061
|
*/
|
|
1021
1062
|
setShowSetAsDefault(
|
|
@@ -1025,8 +1066,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1025
1066
|
bShowSetAsDefault?: boolean
|
|
1026
1067
|
): this;
|
|
1027
1068
|
/**
|
|
1028
|
-
* @since 1.109
|
|
1029
|
-
*
|
|
1030
1069
|
* Sets a new value for property {@link #getTitleStyle titleStyle}.
|
|
1031
1070
|
*
|
|
1032
1071
|
* Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
@@ -1035,6 +1074,8 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1035
1074
|
*
|
|
1036
1075
|
* Default value is `Auto`.
|
|
1037
1076
|
*
|
|
1077
|
+
* @since 1.109
|
|
1078
|
+
*
|
|
1038
1079
|
* @returns Reference to `this` in order to allow method chaining
|
|
1039
1080
|
*/
|
|
1040
1081
|
setTitleStyle(
|
|
@@ -1054,6 +1095,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1054
1095
|
*
|
|
1055
1096
|
* Default value is `false`.
|
|
1056
1097
|
*
|
|
1098
|
+
*
|
|
1057
1099
|
* @returns Reference to `this` in order to allow method chaining
|
|
1058
1100
|
*/
|
|
1059
1101
|
setUpdateVariantInURL(
|
|
@@ -1118,9 +1160,9 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1118
1160
|
| PropertyBindingInfo;
|
|
1119
1161
|
|
|
1120
1162
|
/**
|
|
1121
|
-
* @since 1.104
|
|
1122
|
-
*
|
|
1123
1163
|
* Semantic level of the header. For more information, see {@link sap.m.Title#setLevel}.
|
|
1164
|
+
*
|
|
1165
|
+
* @since 1.104
|
|
1124
1166
|
*/
|
|
1125
1167
|
headerLevel?:
|
|
1126
1168
|
| (TitleLevel | keyof typeof TitleLevel)
|
|
@@ -1128,9 +1170,9 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1128
1170
|
| `{${string}}`;
|
|
1129
1171
|
|
|
1130
1172
|
/**
|
|
1131
|
-
* @since 1.109
|
|
1132
|
-
*
|
|
1133
1173
|
* Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
1174
|
+
*
|
|
1175
|
+
* @since 1.109
|
|
1134
1176
|
*/
|
|
1135
1177
|
titleStyle?:
|
|
1136
1178
|
| (TitleLevel | keyof typeof TitleLevel)
|
|
@@ -1138,9 +1180,9 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1138
1180
|
| `{${string}}`;
|
|
1139
1181
|
|
|
1140
1182
|
/**
|
|
1141
|
-
* @since 1.109
|
|
1142
|
-
*
|
|
1143
1183
|
* Sets the maximum width of the control.
|
|
1184
|
+
*
|
|
1185
|
+
* @since 1.109
|
|
1144
1186
|
*/
|
|
1145
1187
|
maxWidth?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
1146
1188
|
|
|
@@ -1281,10 +1323,10 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVa
|
|
|
1281
1323
|
import Metadata from "sap/ui/base/Metadata";
|
|
1282
1324
|
|
|
1283
1325
|
/**
|
|
1284
|
-
* @since 1.87
|
|
1285
|
-
*
|
|
1286
1326
|
* Abstraction providing an API to handle an ABAP extension variant. Serves also as base class and dummy
|
|
1287
1327
|
* implementation.
|
|
1328
|
+
*
|
|
1329
|
+
* @since 1.87
|
|
1288
1330
|
*/
|
|
1289
1331
|
interface ABAPExtensibilityVariant extends BaseObject {
|
|
1290
1332
|
/**
|
|
@@ -1293,6 +1335,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVa
|
|
|
1293
1335
|
*
|
|
1294
1336
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
1295
1337
|
*
|
|
1338
|
+
*
|
|
1296
1339
|
* @returns Created class / constructor function
|
|
1297
1340
|
*/
|
|
1298
1341
|
extend(
|
|
@@ -1313,6 +1356,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVa
|
|
|
1313
1356
|
/**
|
|
1314
1357
|
* Returns a metadata object for class sap.ui.fl.write._internal.fieldExtensibility.ABAPExtensibilityVariant.
|
|
1315
1358
|
*
|
|
1359
|
+
*
|
|
1316
1360
|
* @returns Metadata object describing this class
|
|
1317
1361
|
*/
|
|
1318
1362
|
getMetadata(): Metadata;
|
|
@@ -1327,9 +1371,9 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExte
|
|
|
1327
1371
|
import Metadata from "sap/ui/base/Metadata";
|
|
1328
1372
|
|
|
1329
1373
|
/**
|
|
1330
|
-
* @since 1.87
|
|
1331
|
-
*
|
|
1332
1374
|
* Extension variant for ABAP multi tenant environments (via so called Predefined Fields)
|
|
1375
|
+
*
|
|
1376
|
+
* @since 1.87
|
|
1333
1377
|
*/
|
|
1334
1378
|
interface MultiTenantABAPExtensibilityVariant
|
|
1335
1379
|
extends ABAPExtensibilityVariant {
|
|
@@ -1339,6 +1383,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExte
|
|
|
1339
1383
|
*
|
|
1340
1384
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.fl.write._internal.fieldExtensibility.ABAPExtensibilityVariant.extend}.
|
|
1341
1385
|
*
|
|
1386
|
+
*
|
|
1342
1387
|
* @returns Created class / constructor function
|
|
1343
1388
|
*/
|
|
1344
1389
|
extend(
|
|
@@ -1359,6 +1404,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExte
|
|
|
1359
1404
|
/**
|
|
1360
1405
|
* Returns a metadata object for class sap.ui.fl.write._internal.fieldExtensibility.MultiTenantABAPExtensibilityVariant.
|
|
1361
1406
|
*
|
|
1407
|
+
*
|
|
1362
1408
|
* @returns Metadata object describing this class
|
|
1363
1409
|
*/
|
|
1364
1410
|
getMetadata(): Metadata;
|
|
@@ -1373,9 +1419,9 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExt
|
|
|
1373
1419
|
import Metadata from "sap/ui/base/Metadata";
|
|
1374
1420
|
|
|
1375
1421
|
/**
|
|
1376
|
-
* @since 1.87
|
|
1377
|
-
*
|
|
1378
1422
|
* Extension variant for ABAP single tenant environnments (via so called Custom Fields)
|
|
1423
|
+
*
|
|
1424
|
+
* @since 1.87
|
|
1379
1425
|
*/
|
|
1380
1426
|
interface SingleTenantABAPExtensibilityVariant
|
|
1381
1427
|
extends ABAPExtensibilityVariant {
|
|
@@ -1385,6 +1431,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExt
|
|
|
1385
1431
|
*
|
|
1386
1432
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.fl.write._internal.fieldExtensibility.ABAPExtensibilityVariant.extend}.
|
|
1387
1433
|
*
|
|
1434
|
+
*
|
|
1388
1435
|
* @returns Created class / constructor function
|
|
1389
1436
|
*/
|
|
1390
1437
|
extend(
|
|
@@ -1405,6 +1452,7 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExt
|
|
|
1405
1452
|
/**
|
|
1406
1453
|
* Returns a metadata object for class sap.ui.fl.write._internal.fieldExtensibility.SingleTenantABAPExtensibilityVariant.
|
|
1407
1454
|
*
|
|
1455
|
+
*
|
|
1408
1456
|
* @returns Metadata object describing this class
|
|
1409
1457
|
*/
|
|
1410
1458
|
getMetadata(): Metadata;
|
|
@@ -1415,9 +1463,9 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExt
|
|
|
1415
1463
|
|
|
1416
1464
|
declare module "sap/ui/fl/write/api/FeaturesAPI" {
|
|
1417
1465
|
/**
|
|
1418
|
-
* @since 1.70
|
|
1419
|
-
*
|
|
1420
1466
|
* Provides an API to determine which features are available for flexibility.
|
|
1467
|
+
*
|
|
1468
|
+
* @since 1.70
|
|
1421
1469
|
*/
|
|
1422
1470
|
interface FeaturesAPI {
|
|
1423
1471
|
/**
|
|
@@ -1425,6 +1473,7 @@ declare module "sap/ui/fl/write/api/FeaturesAPI" {
|
|
|
1425
1473
|
* to decide if the key user adaptation feature should be visible to the current user. This only applies
|
|
1426
1474
|
* if key user adaptation should be handled standalone without an SAP Fiori launchpad.
|
|
1427
1475
|
*
|
|
1476
|
+
*
|
|
1428
1477
|
* @returns Resolves to a boolean indicating if the key user role is assigned to the user
|
|
1429
1478
|
*/
|
|
1430
1479
|
isKeyUser(): Promise<boolean>;
|