@sapui5/ts-types 1.84.17 → 1.84.21
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.apf.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +317 -281
- package/types/sap.m.d.ts +7 -2
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +57 -35
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +447 -316
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +13 -6
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +77 -4
- package/types/sap.uiext.inbox.d.ts +2 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.84.
|
|
1
|
+
// For Library Version: 1.84.10
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -239,7 +239,7 @@ declare namespace sap {
|
|
|
239
239
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.HistoryItem.extend}.
|
|
240
240
|
*/
|
|
241
241
|
// @ts-ignore
|
|
242
|
-
static extend(
|
|
242
|
+
static extend<T extends Record<string, unknown>>(
|
|
243
243
|
/**
|
|
244
244
|
* Name of the class being created
|
|
245
245
|
*/
|
|
@@ -247,7 +247,11 @@ declare namespace sap {
|
|
|
247
247
|
/**
|
|
248
248
|
* Object literal with information about the class
|
|
249
249
|
*/
|
|
250
|
-
oClassInfo?:
|
|
250
|
+
oClassInfo?: T &
|
|
251
|
+
ThisType<
|
|
252
|
+
T &
|
|
253
|
+
sap.suite.ui.commons.imageeditor.CropCustomShapeHistoryItem
|
|
254
|
+
>,
|
|
251
255
|
/**
|
|
252
256
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
253
257
|
* used by this class
|
|
@@ -318,7 +322,7 @@ declare namespace sap {
|
|
|
318
322
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.HistoryItem.extend}.
|
|
319
323
|
*/
|
|
320
324
|
// @ts-ignore
|
|
321
|
-
static extend(
|
|
325
|
+
static extend<T extends Record<string, unknown>>(
|
|
322
326
|
/**
|
|
323
327
|
* Name of the class being created
|
|
324
328
|
*/
|
|
@@ -326,7 +330,10 @@ declare namespace sap {
|
|
|
326
330
|
/**
|
|
327
331
|
* Object literal with information about the class
|
|
328
332
|
*/
|
|
329
|
-
oClassInfo?:
|
|
333
|
+
oClassInfo?: T &
|
|
334
|
+
ThisType<
|
|
335
|
+
T & sap.suite.ui.commons.imageeditor.CropEllipseHistoryItem
|
|
336
|
+
>,
|
|
330
337
|
/**
|
|
331
338
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
332
339
|
* used by this class
|
|
@@ -389,7 +396,7 @@ declare namespace sap {
|
|
|
389
396
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.HistoryItem.extend}.
|
|
390
397
|
*/
|
|
391
398
|
// @ts-ignore
|
|
392
|
-
static extend(
|
|
399
|
+
static extend<T extends Record<string, unknown>>(
|
|
393
400
|
/**
|
|
394
401
|
* Name of the class being created
|
|
395
402
|
*/
|
|
@@ -397,7 +404,10 @@ declare namespace sap {
|
|
|
397
404
|
/**
|
|
398
405
|
* Object literal with information about the class
|
|
399
406
|
*/
|
|
400
|
-
oClassInfo?:
|
|
407
|
+
oClassInfo?: T &
|
|
408
|
+
ThisType<
|
|
409
|
+
T & sap.suite.ui.commons.imageeditor.CropRectangleHistoryItem
|
|
410
|
+
>,
|
|
401
411
|
/**
|
|
402
412
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
403
413
|
* used by this class
|
|
@@ -442,7 +452,7 @@ declare namespace sap {
|
|
|
442
452
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
443
453
|
*/
|
|
444
454
|
// @ts-ignore
|
|
445
|
-
static extend(
|
|
455
|
+
static extend<T extends Record<string, unknown>>(
|
|
446
456
|
/**
|
|
447
457
|
* Name of the class being created
|
|
448
458
|
*/
|
|
@@ -450,7 +460,8 @@ declare namespace sap {
|
|
|
450
460
|
/**
|
|
451
461
|
* Object literal with information about the class
|
|
452
462
|
*/
|
|
453
|
-
oClassInfo?:
|
|
463
|
+
oClassInfo?: T &
|
|
464
|
+
ThisType<T & sap.suite.ui.commons.imageeditor.CustomSizeItem>,
|
|
454
465
|
/**
|
|
455
466
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
456
467
|
* used by this class
|
|
@@ -635,7 +646,7 @@ declare namespace sap {
|
|
|
635
646
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.HistoryItem.extend}.
|
|
636
647
|
*/
|
|
637
648
|
// @ts-ignore
|
|
638
|
-
static extend(
|
|
649
|
+
static extend<T extends Record<string, unknown>>(
|
|
639
650
|
/**
|
|
640
651
|
* Name of the class being created
|
|
641
652
|
*/
|
|
@@ -643,7 +654,10 @@ declare namespace sap {
|
|
|
643
654
|
/**
|
|
644
655
|
* Object literal with information about the class
|
|
645
656
|
*/
|
|
646
|
-
oClassInfo?:
|
|
657
|
+
oClassInfo?: T &
|
|
658
|
+
ThisType<
|
|
659
|
+
T & sap.suite.ui.commons.imageeditor.FilterHistoryItem
|
|
660
|
+
>,
|
|
647
661
|
/**
|
|
648
662
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
649
663
|
* used by this class
|
|
@@ -703,7 +717,7 @@ declare namespace sap {
|
|
|
703
717
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.HistoryItem.extend}.
|
|
704
718
|
*/
|
|
705
719
|
// @ts-ignore
|
|
706
|
-
static extend(
|
|
720
|
+
static extend<T extends Record<string, unknown>>(
|
|
707
721
|
/**
|
|
708
722
|
* Name of the class being created
|
|
709
723
|
*/
|
|
@@ -711,7 +725,8 @@ declare namespace sap {
|
|
|
711
725
|
/**
|
|
712
726
|
* Object literal with information about the class
|
|
713
727
|
*/
|
|
714
|
-
oClassInfo?:
|
|
728
|
+
oClassInfo?: T &
|
|
729
|
+
ThisType<T & sap.suite.ui.commons.imageeditor.FlipHistoryItem>,
|
|
715
730
|
/**
|
|
716
731
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
717
732
|
* used by this class
|
|
@@ -740,7 +755,7 @@ declare namespace sap {
|
|
|
740
755
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
741
756
|
*/
|
|
742
757
|
// @ts-ignore
|
|
743
|
-
static extend(
|
|
758
|
+
static extend<T extends Record<string, unknown>>(
|
|
744
759
|
/**
|
|
745
760
|
* Name of the class being created
|
|
746
761
|
*/
|
|
@@ -748,7 +763,8 @@ declare namespace sap {
|
|
|
748
763
|
/**
|
|
749
764
|
* Object literal with information about the class
|
|
750
765
|
*/
|
|
751
|
-
oClassInfo?:
|
|
766
|
+
oClassInfo?: T &
|
|
767
|
+
ThisType<T & sap.suite.ui.commons.imageeditor.HistoryItem>,
|
|
752
768
|
/**
|
|
753
769
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
754
770
|
* used by this class
|
|
@@ -1219,7 +1235,7 @@ declare namespace sap {
|
|
|
1219
1235
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1220
1236
|
*/
|
|
1221
1237
|
// @ts-ignore
|
|
1222
|
-
static extend(
|
|
1238
|
+
static extend<T extends Record<string, unknown>>(
|
|
1223
1239
|
/**
|
|
1224
1240
|
* Name of the class being created
|
|
1225
1241
|
*/
|
|
@@ -1227,7 +1243,8 @@ declare namespace sap {
|
|
|
1227
1243
|
/**
|
|
1228
1244
|
* Object literal with information about the class
|
|
1229
1245
|
*/
|
|
1230
|
-
oClassInfo?:
|
|
1246
|
+
oClassInfo?: T &
|
|
1247
|
+
ThisType<T & sap.suite.ui.commons.imageeditor.ImageEditor>,
|
|
1231
1248
|
/**
|
|
1232
1249
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1233
1250
|
* used by this class
|
|
@@ -2196,7 +2213,7 @@ declare namespace sap {
|
|
|
2196
2213
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2197
2214
|
*/
|
|
2198
2215
|
// @ts-ignore
|
|
2199
|
-
static extend(
|
|
2216
|
+
static extend<T extends Record<string, unknown>>(
|
|
2200
2217
|
/**
|
|
2201
2218
|
* Name of the class being created
|
|
2202
2219
|
*/
|
|
@@ -2204,7 +2221,10 @@ declare namespace sap {
|
|
|
2204
2221
|
/**
|
|
2205
2222
|
* Object literal with information about the class
|
|
2206
2223
|
*/
|
|
2207
|
-
oClassInfo?:
|
|
2224
|
+
oClassInfo?: T &
|
|
2225
|
+
ThisType<
|
|
2226
|
+
T & sap.suite.ui.commons.imageeditor.ImageEditorContainer
|
|
2227
|
+
>,
|
|
2208
2228
|
/**
|
|
2209
2229
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2210
2230
|
* used by this class
|
|
@@ -2542,7 +2562,7 @@ declare namespace sap {
|
|
|
2542
2562
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.ImageEditorContainer.extend}.
|
|
2543
2563
|
*/
|
|
2544
2564
|
// @ts-ignore
|
|
2545
|
-
static extend(
|
|
2565
|
+
static extend<T extends Record<string, unknown>>(
|
|
2546
2566
|
/**
|
|
2547
2567
|
* Name of the class being created
|
|
2548
2568
|
*/
|
|
@@ -2550,7 +2570,11 @@ declare namespace sap {
|
|
|
2550
2570
|
/**
|
|
2551
2571
|
* Object literal with information about the class
|
|
2552
2572
|
*/
|
|
2553
|
-
oClassInfo?:
|
|
2573
|
+
oClassInfo?: T &
|
|
2574
|
+
ThisType<
|
|
2575
|
+
T &
|
|
2576
|
+
sap.suite.ui.commons.imageeditor.ImageEditorResponsiveContainer
|
|
2577
|
+
>,
|
|
2554
2578
|
/**
|
|
2555
2579
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2556
2580
|
* used by this class
|
|
@@ -2606,7 +2630,7 @@ declare namespace sap {
|
|
|
2606
2630
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.HistoryItem.extend}.
|
|
2607
2631
|
*/
|
|
2608
2632
|
// @ts-ignore
|
|
2609
|
-
static extend(
|
|
2633
|
+
static extend<T extends Record<string, unknown>>(
|
|
2610
2634
|
/**
|
|
2611
2635
|
* Name of the class being created
|
|
2612
2636
|
*/
|
|
@@ -2614,7 +2638,10 @@ declare namespace sap {
|
|
|
2614
2638
|
/**
|
|
2615
2639
|
* Object literal with information about the class
|
|
2616
2640
|
*/
|
|
2617
|
-
oClassInfo?:
|
|
2641
|
+
oClassInfo?: T &
|
|
2642
|
+
ThisType<
|
|
2643
|
+
T & sap.suite.ui.commons.imageeditor.ResizeHistoryItem
|
|
2644
|
+
>,
|
|
2618
2645
|
/**
|
|
2619
2646
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2620
2647
|
* used by this class
|
|
@@ -2657,7 +2684,7 @@ declare namespace sap {
|
|
|
2657
2684
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.imageeditor.HistoryItem.extend}.
|
|
2658
2685
|
*/
|
|
2659
2686
|
// @ts-ignore
|
|
2660
|
-
static extend(
|
|
2687
|
+
static extend<T extends Record<string, unknown>>(
|
|
2661
2688
|
/**
|
|
2662
2689
|
* Name of the class being created
|
|
2663
2690
|
*/
|
|
@@ -2665,7 +2692,10 @@ declare namespace sap {
|
|
|
2665
2692
|
/**
|
|
2666
2693
|
* Object literal with information about the class
|
|
2667
2694
|
*/
|
|
2668
|
-
oClassInfo?:
|
|
2695
|
+
oClassInfo?: T &
|
|
2696
|
+
ThisType<
|
|
2697
|
+
T & sap.suite.ui.commons.imageeditor.RotateHistoryItem
|
|
2698
|
+
>,
|
|
2669
2699
|
/**
|
|
2670
2700
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2671
2701
|
* used by this class
|
|
@@ -2706,7 +2736,7 @@ declare namespace sap {
|
|
|
2706
2736
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.layout.LayoutAlgorithm.extend}.
|
|
2707
2737
|
*/
|
|
2708
2738
|
// @ts-ignore
|
|
2709
|
-
static extend(
|
|
2739
|
+
static extend<T extends Record<string, unknown>>(
|
|
2710
2740
|
/**
|
|
2711
2741
|
* Name of the class being created
|
|
2712
2742
|
*/
|
|
@@ -2714,7 +2744,11 @@ declare namespace sap {
|
|
|
2714
2744
|
/**
|
|
2715
2745
|
* Object literal with information about the class
|
|
2716
2746
|
*/
|
|
2717
|
-
oClassInfo?:
|
|
2747
|
+
oClassInfo?: T &
|
|
2748
|
+
ThisType<
|
|
2749
|
+
T &
|
|
2750
|
+
sap.suite.ui.commons.networkgraph.layout.ForceBasedLayout
|
|
2751
|
+
>,
|
|
2718
2752
|
/**
|
|
2719
2753
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2720
2754
|
* used by this class
|
|
@@ -2859,7 +2893,7 @@ declare namespace sap {
|
|
|
2859
2893
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.layout.LayoutAlgorithm.extend}.
|
|
2860
2894
|
*/
|
|
2861
2895
|
// @ts-ignore
|
|
2862
|
-
static extend(
|
|
2896
|
+
static extend<T extends Record<string, unknown>>(
|
|
2863
2897
|
/**
|
|
2864
2898
|
* Name of the class being created
|
|
2865
2899
|
*/
|
|
@@ -2867,7 +2901,11 @@ declare namespace sap {
|
|
|
2867
2901
|
/**
|
|
2868
2902
|
* Object literal with information about the class
|
|
2869
2903
|
*/
|
|
2870
|
-
oClassInfo?:
|
|
2904
|
+
oClassInfo?: T &
|
|
2905
|
+
ThisType<
|
|
2906
|
+
T &
|
|
2907
|
+
sap.suite.ui.commons.networkgraph.layout.ForceDirectedLayout
|
|
2908
|
+
>,
|
|
2871
2909
|
/**
|
|
2872
2910
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2873
2911
|
* used by this class
|
|
@@ -3063,7 +3101,7 @@ declare namespace sap {
|
|
|
3063
3101
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.layout.LayoutAlgorithm.extend}.
|
|
3064
3102
|
*/
|
|
3065
3103
|
// @ts-ignore
|
|
3066
|
-
static extend(
|
|
3104
|
+
static extend<T extends Record<string, unknown>>(
|
|
3067
3105
|
/**
|
|
3068
3106
|
* Name of the class being created
|
|
3069
3107
|
*/
|
|
@@ -3071,7 +3109,10 @@ declare namespace sap {
|
|
|
3071
3109
|
/**
|
|
3072
3110
|
* Object literal with information about the class
|
|
3073
3111
|
*/
|
|
3074
|
-
oClassInfo?:
|
|
3112
|
+
oClassInfo?: T &
|
|
3113
|
+
ThisType<
|
|
3114
|
+
T & sap.suite.ui.commons.networkgraph.layout.LayeredLayout
|
|
3115
|
+
>,
|
|
3075
3116
|
/**
|
|
3076
3117
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3077
3118
|
* used by this class
|
|
@@ -3216,7 +3257,7 @@ declare namespace sap {
|
|
|
3216
3257
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3217
3258
|
*/
|
|
3218
3259
|
// @ts-ignore
|
|
3219
|
-
static extend(
|
|
3260
|
+
static extend<T extends Record<string, unknown>>(
|
|
3220
3261
|
/**
|
|
3221
3262
|
* Name of the class being created
|
|
3222
3263
|
*/
|
|
@@ -3224,7 +3265,10 @@ declare namespace sap {
|
|
|
3224
3265
|
/**
|
|
3225
3266
|
* Object literal with information about the class
|
|
3226
3267
|
*/
|
|
3227
|
-
oClassInfo?:
|
|
3268
|
+
oClassInfo?: T &
|
|
3269
|
+
ThisType<
|
|
3270
|
+
T & sap.suite.ui.commons.networkgraph.layout.LayoutAlgorithm
|
|
3271
|
+
>,
|
|
3228
3272
|
/**
|
|
3229
3273
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3230
3274
|
* used by this class
|
|
@@ -3274,7 +3318,7 @@ declare namespace sap {
|
|
|
3274
3318
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
3275
3319
|
*/
|
|
3276
3320
|
// @ts-ignore
|
|
3277
|
-
static extend(
|
|
3321
|
+
static extend<T extends Record<string, unknown>>(
|
|
3278
3322
|
/**
|
|
3279
3323
|
* Name of the class being created
|
|
3280
3324
|
*/
|
|
@@ -3282,7 +3326,10 @@ declare namespace sap {
|
|
|
3282
3326
|
/**
|
|
3283
3327
|
* Object literal with information about the class
|
|
3284
3328
|
*/
|
|
3285
|
-
oClassInfo?:
|
|
3329
|
+
oClassInfo?: T &
|
|
3330
|
+
ThisType<
|
|
3331
|
+
T & sap.suite.ui.commons.networkgraph.layout.LayoutTask
|
|
3332
|
+
>,
|
|
3286
3333
|
/**
|
|
3287
3334
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3288
3335
|
* used by this class
|
|
@@ -3488,7 +3535,7 @@ declare namespace sap {
|
|
|
3488
3535
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3489
3536
|
*/
|
|
3490
3537
|
// @ts-ignore
|
|
3491
|
-
static extend(
|
|
3538
|
+
static extend<T extends Record<string, unknown>>(
|
|
3492
3539
|
/**
|
|
3493
3540
|
* Name of the class being created
|
|
3494
3541
|
*/
|
|
@@ -3496,7 +3543,8 @@ declare namespace sap {
|
|
|
3496
3543
|
/**
|
|
3497
3544
|
* Object literal with information about the class
|
|
3498
3545
|
*/
|
|
3499
|
-
oClassInfo?:
|
|
3546
|
+
oClassInfo?: T &
|
|
3547
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.ActionButton>,
|
|
3500
3548
|
/**
|
|
3501
3549
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3502
3550
|
* used by this class
|
|
@@ -3645,7 +3693,7 @@ declare namespace sap {
|
|
|
3645
3693
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3646
3694
|
*/
|
|
3647
3695
|
// @ts-ignore
|
|
3648
|
-
static extend(
|
|
3696
|
+
static extend<T extends Record<string, unknown>>(
|
|
3649
3697
|
/**
|
|
3650
3698
|
* Name of the class being created
|
|
3651
3699
|
*/
|
|
@@ -3653,7 +3701,8 @@ declare namespace sap {
|
|
|
3653
3701
|
/**
|
|
3654
3702
|
* Object literal with information about the class
|
|
3655
3703
|
*/
|
|
3656
|
-
oClassInfo?:
|
|
3704
|
+
oClassInfo?: T &
|
|
3705
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.Coordinate>,
|
|
3657
3706
|
/**
|
|
3658
3707
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3659
3708
|
* used by this class
|
|
@@ -3734,7 +3783,7 @@ declare namespace sap {
|
|
|
3734
3783
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
3735
3784
|
*/
|
|
3736
3785
|
// @ts-ignore
|
|
3737
|
-
static extend(
|
|
3786
|
+
static extend<T extends Record<string, unknown>>(
|
|
3738
3787
|
/**
|
|
3739
3788
|
* Name of the class being created
|
|
3740
3789
|
*/
|
|
@@ -3742,7 +3791,10 @@ declare namespace sap {
|
|
|
3742
3791
|
/**
|
|
3743
3792
|
* Object literal with information about the class
|
|
3744
3793
|
*/
|
|
3745
|
-
oClassInfo?:
|
|
3794
|
+
oClassInfo?: T &
|
|
3795
|
+
ThisType<
|
|
3796
|
+
T & sap.suite.ui.commons.networkgraph.ElementAttribute
|
|
3797
|
+
>,
|
|
3746
3798
|
/**
|
|
3747
3799
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3748
3800
|
* used by this class
|
|
@@ -3920,7 +3972,7 @@ declare namespace sap {
|
|
|
3920
3972
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.SvgBase.extend}.
|
|
3921
3973
|
*/
|
|
3922
3974
|
// @ts-ignore
|
|
3923
|
-
static extend(
|
|
3975
|
+
static extend<T extends Record<string, unknown>>(
|
|
3924
3976
|
/**
|
|
3925
3977
|
* Name of the class being created
|
|
3926
3978
|
*/
|
|
@@ -3928,7 +3980,8 @@ declare namespace sap {
|
|
|
3928
3980
|
/**
|
|
3929
3981
|
* Object literal with information about the class
|
|
3930
3982
|
*/
|
|
3931
|
-
oClassInfo?:
|
|
3983
|
+
oClassInfo?: T &
|
|
3984
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.ElementBase>,
|
|
3932
3985
|
/**
|
|
3933
3986
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3934
3987
|
* used by this class
|
|
@@ -4497,7 +4550,7 @@ declare namespace sap {
|
|
|
4497
4550
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.SvgBase.extend}.
|
|
4498
4551
|
*/
|
|
4499
4552
|
// @ts-ignore
|
|
4500
|
-
static extend(
|
|
4553
|
+
static extend<T extends Record<string, unknown>>(
|
|
4501
4554
|
/**
|
|
4502
4555
|
* Name of the class being created
|
|
4503
4556
|
*/
|
|
@@ -4505,7 +4558,8 @@ declare namespace sap {
|
|
|
4505
4558
|
/**
|
|
4506
4559
|
* Object literal with information about the class
|
|
4507
4560
|
*/
|
|
4508
|
-
oClassInfo?:
|
|
4561
|
+
oClassInfo?: T &
|
|
4562
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.Graph>,
|
|
4509
4563
|
/**
|
|
4510
4564
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4511
4565
|
* used by this class
|
|
@@ -5442,7 +5496,7 @@ declare namespace sap {
|
|
|
5442
5496
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
5443
5497
|
*/
|
|
5444
5498
|
// @ts-ignore
|
|
5445
|
-
static extend(
|
|
5499
|
+
static extend<T extends Record<string, unknown>>(
|
|
5446
5500
|
/**
|
|
5447
5501
|
* Name of the class being created
|
|
5448
5502
|
*/
|
|
@@ -5450,7 +5504,8 @@ declare namespace sap {
|
|
|
5450
5504
|
/**
|
|
5451
5505
|
* Object literal with information about the class
|
|
5452
5506
|
*/
|
|
5453
|
-
oClassInfo?:
|
|
5507
|
+
oClassInfo?: T &
|
|
5508
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.GraphMap>,
|
|
5454
5509
|
/**
|
|
5455
5510
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5456
5511
|
* used by this class
|
|
@@ -5746,7 +5801,7 @@ declare namespace sap {
|
|
|
5746
5801
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.ElementBase.extend}.
|
|
5747
5802
|
*/
|
|
5748
5803
|
// @ts-ignore
|
|
5749
|
-
static extend(
|
|
5804
|
+
static extend<T extends Record<string, unknown>>(
|
|
5750
5805
|
/**
|
|
5751
5806
|
* Name of the class being created
|
|
5752
5807
|
*/
|
|
@@ -5754,7 +5809,8 @@ declare namespace sap {
|
|
|
5754
5809
|
/**
|
|
5755
5810
|
* Object literal with information about the class
|
|
5756
5811
|
*/
|
|
5757
|
-
oClassInfo?:
|
|
5812
|
+
oClassInfo?: T &
|
|
5813
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.Group>,
|
|
5758
5814
|
/**
|
|
5759
5815
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5760
5816
|
* used by this class
|
|
@@ -6153,7 +6209,7 @@ declare namespace sap {
|
|
|
6153
6209
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.ElementBase.extend}.
|
|
6154
6210
|
*/
|
|
6155
6211
|
// @ts-ignore
|
|
6156
|
-
static extend(
|
|
6212
|
+
static extend<T extends Record<string, unknown>>(
|
|
6157
6213
|
/**
|
|
6158
6214
|
* Name of the class being created
|
|
6159
6215
|
*/
|
|
@@ -6161,7 +6217,8 @@ declare namespace sap {
|
|
|
6161
6217
|
/**
|
|
6162
6218
|
* Object literal with information about the class
|
|
6163
6219
|
*/
|
|
6164
|
-
oClassInfo?:
|
|
6220
|
+
oClassInfo?: T &
|
|
6221
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.Line>,
|
|
6165
6222
|
/**
|
|
6166
6223
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6167
6224
|
* used by this class
|
|
@@ -6789,7 +6846,7 @@ declare namespace sap {
|
|
|
6789
6846
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.networkgraph.ElementBase.extend}.
|
|
6790
6847
|
*/
|
|
6791
6848
|
// @ts-ignore
|
|
6792
|
-
static extend(
|
|
6849
|
+
static extend<T extends Record<string, unknown>>(
|
|
6793
6850
|
/**
|
|
6794
6851
|
* Name of the class being created
|
|
6795
6852
|
*/
|
|
@@ -6797,7 +6854,8 @@ declare namespace sap {
|
|
|
6797
6854
|
/**
|
|
6798
6855
|
* Object literal with information about the class
|
|
6799
6856
|
*/
|
|
6800
|
-
oClassInfo?:
|
|
6857
|
+
oClassInfo?: T &
|
|
6858
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.Node>,
|
|
6801
6859
|
/**
|
|
6802
6860
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6803
6861
|
* used by this class
|
|
@@ -7801,7 +7859,7 @@ declare namespace sap {
|
|
|
7801
7859
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
7802
7860
|
*/
|
|
7803
7861
|
// @ts-ignore
|
|
7804
|
-
static extend(
|
|
7862
|
+
static extend<T extends Record<string, unknown>>(
|
|
7805
7863
|
/**
|
|
7806
7864
|
* Name of the class being created
|
|
7807
7865
|
*/
|
|
@@ -7809,7 +7867,8 @@ declare namespace sap {
|
|
|
7809
7867
|
/**
|
|
7810
7868
|
* Object literal with information about the class
|
|
7811
7869
|
*/
|
|
7812
|
-
oClassInfo?:
|
|
7870
|
+
oClassInfo?: T &
|
|
7871
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.NodeImage>,
|
|
7813
7872
|
/**
|
|
7814
7873
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7815
7874
|
* used by this class
|
|
@@ -7908,7 +7967,7 @@ declare namespace sap {
|
|
|
7908
7967
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
7909
7968
|
*/
|
|
7910
7969
|
// @ts-ignore
|
|
7911
|
-
static extend(
|
|
7970
|
+
static extend<T extends Record<string, unknown>>(
|
|
7912
7971
|
/**
|
|
7913
7972
|
* Name of the class being created
|
|
7914
7973
|
*/
|
|
@@ -7916,7 +7975,8 @@ declare namespace sap {
|
|
|
7916
7975
|
/**
|
|
7917
7976
|
* Object literal with information about the class
|
|
7918
7977
|
*/
|
|
7919
|
-
oClassInfo?:
|
|
7978
|
+
oClassInfo?: T &
|
|
7979
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.Status>,
|
|
7920
7980
|
/**
|
|
7921
7981
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7922
7982
|
* used by this class
|
|
@@ -8285,7 +8345,7 @@ declare namespace sap {
|
|
|
8285
8345
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8286
8346
|
*/
|
|
8287
8347
|
// @ts-ignore
|
|
8288
|
-
static extend(
|
|
8348
|
+
static extend<T extends Record<string, unknown>>(
|
|
8289
8349
|
/**
|
|
8290
8350
|
* Name of the class being created
|
|
8291
8351
|
*/
|
|
@@ -8293,7 +8353,8 @@ declare namespace sap {
|
|
|
8293
8353
|
/**
|
|
8294
8354
|
* Object literal with information about the class
|
|
8295
8355
|
*/
|
|
8296
|
-
oClassInfo?:
|
|
8356
|
+
oClassInfo?: T &
|
|
8357
|
+
ThisType<T & sap.suite.ui.commons.networkgraph.SvgBase>,
|
|
8297
8358
|
/**
|
|
8298
8359
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8299
8360
|
* used by this class
|
|
@@ -8317,7 +8378,7 @@ declare namespace sap {
|
|
|
8317
8378
|
/**
|
|
8318
8379
|
* The action button is aligned to the right.
|
|
8319
8380
|
*/
|
|
8320
|
-
Right
|
|
8381
|
+
Right,
|
|
8321
8382
|
}
|
|
8322
8383
|
/**
|
|
8323
8384
|
* Background color for the network graph.
|
|
@@ -8330,7 +8391,7 @@ declare namespace sap {
|
|
|
8330
8391
|
/**
|
|
8331
8392
|
* White.
|
|
8332
8393
|
*/
|
|
8333
|
-
White
|
|
8394
|
+
White,
|
|
8334
8395
|
}
|
|
8335
8396
|
/**
|
|
8336
8397
|
* Semantic type of the node status.
|
|
@@ -8355,7 +8416,7 @@ declare namespace sap {
|
|
|
8355
8416
|
/**
|
|
8356
8417
|
* A node type that communicates a warning.
|
|
8357
8418
|
*/
|
|
8358
|
-
Warning
|
|
8419
|
+
Warning,
|
|
8359
8420
|
}
|
|
8360
8421
|
/**
|
|
8361
8422
|
* States of the Header checkbox.
|
|
@@ -8372,7 +8433,7 @@ declare namespace sap {
|
|
|
8372
8433
|
/**
|
|
8373
8434
|
* Checkbox is visible and not selected.
|
|
8374
8435
|
*/
|
|
8375
|
-
Unchecked
|
|
8436
|
+
Unchecked,
|
|
8376
8437
|
}
|
|
8377
8438
|
/**
|
|
8378
8439
|
* Types of layout algorithms that define the visual features and layout of the network graph.
|
|
@@ -8397,7 +8458,7 @@ declare namespace sap {
|
|
|
8397
8458
|
* Algorithm that supports nested groups, similar to `SwimLanes`, but arranges them into two columns only:
|
|
8398
8459
|
* one on the left and one on the right.
|
|
8399
8460
|
*/
|
|
8400
|
-
TwoColumns
|
|
8461
|
+
TwoColumns,
|
|
8401
8462
|
}
|
|
8402
8463
|
/**
|
|
8403
8464
|
* Direction of the arrow on the connector line.
|
|
@@ -8418,7 +8479,7 @@ declare namespace sap {
|
|
|
8418
8479
|
/**
|
|
8419
8480
|
* The arrow points from parent to child.
|
|
8420
8481
|
*/
|
|
8421
|
-
ParentOf
|
|
8482
|
+
ParentOf,
|
|
8422
8483
|
}
|
|
8423
8484
|
/**
|
|
8424
8485
|
* Position of the arrow on a connector line.
|
|
@@ -8436,7 +8497,7 @@ declare namespace sap {
|
|
|
8436
8497
|
/**
|
|
8437
8498
|
* The arrow is placed at the beginning of the first line segment.
|
|
8438
8499
|
*/
|
|
8439
|
-
Start
|
|
8500
|
+
Start,
|
|
8440
8501
|
}
|
|
8441
8502
|
/**
|
|
8442
8503
|
* Type of connector line used in the network graph.
|
|
@@ -8453,7 +8514,7 @@ declare namespace sap {
|
|
|
8453
8514
|
/**
|
|
8454
8515
|
* Solid connector line.
|
|
8455
8516
|
*/
|
|
8456
|
-
Solid
|
|
8517
|
+
Solid,
|
|
8457
8518
|
}
|
|
8458
8519
|
/**
|
|
8459
8520
|
* Type of node placement for Layered Algorithm. See {@link https://rtsys.informatik.uni-kiel.de/confluence/display/KIELER/KLay+Layered+Layout+Options#KLayLayeredLayoutOptions-nodePlacement}
|
|
@@ -8470,7 +8531,7 @@ declare namespace sap {
|
|
|
8470
8531
|
/**
|
|
8471
8532
|
* Minimizes the area taken by the graph at the expense of everything else.
|
|
8472
8533
|
*/
|
|
8473
|
-
Simple
|
|
8534
|
+
Simple,
|
|
8474
8535
|
}
|
|
8475
8536
|
/**
|
|
8476
8537
|
* Shape of a node in a network graph.
|
|
@@ -8487,7 +8548,7 @@ declare namespace sap {
|
|
|
8487
8548
|
/**
|
|
8488
8549
|
* Shape for custom rendering.
|
|
8489
8550
|
*/
|
|
8490
|
-
Custom
|
|
8551
|
+
Custom,
|
|
8491
8552
|
}
|
|
8492
8553
|
/**
|
|
8493
8554
|
* Orientation of layered layout.
|
|
@@ -8508,7 +8569,7 @@ declare namespace sap {
|
|
|
8508
8569
|
/**
|
|
8509
8570
|
* The flow of the graph is top to bottom.
|
|
8510
8571
|
*/
|
|
8511
|
-
TopBottom
|
|
8572
|
+
TopBottom,
|
|
8512
8573
|
}
|
|
8513
8574
|
/**
|
|
8514
8575
|
* Determines how nodes are rendered. For optimal performance and usability, it is recommended that you
|
|
@@ -8522,7 +8583,7 @@ declare namespace sap {
|
|
|
8522
8583
|
/**
|
|
8523
8584
|
* Nodes are rendered as SVG.
|
|
8524
8585
|
*/
|
|
8525
|
-
Svg
|
|
8586
|
+
Svg,
|
|
8526
8587
|
}
|
|
8527
8588
|
}
|
|
8528
8589
|
|
|
@@ -8980,7 +9041,7 @@ declare namespace sap {
|
|
|
8980
9041
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.statusindicator.SimpleShape.extend}.
|
|
8981
9042
|
*/
|
|
8982
9043
|
// @ts-ignore
|
|
8983
|
-
static extend(
|
|
9044
|
+
static extend<T extends Record<string, unknown>>(
|
|
8984
9045
|
/**
|
|
8985
9046
|
* Name of the class being created
|
|
8986
9047
|
*/
|
|
@@ -8988,7 +9049,8 @@ declare namespace sap {
|
|
|
8988
9049
|
/**
|
|
8989
9050
|
* Object literal with information about the class
|
|
8990
9051
|
*/
|
|
8991
|
-
oClassInfo?:
|
|
9052
|
+
oClassInfo?: T &
|
|
9053
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.Circle>,
|
|
8992
9054
|
/**
|
|
8993
9055
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8994
9056
|
* used by this class
|
|
@@ -9127,7 +9189,7 @@ declare namespace sap {
|
|
|
9127
9189
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.statusindicator.Shape.extend}.
|
|
9128
9190
|
*/
|
|
9129
9191
|
// @ts-ignore
|
|
9130
|
-
static extend(
|
|
9192
|
+
static extend<T extends Record<string, unknown>>(
|
|
9131
9193
|
/**
|
|
9132
9194
|
* Name of the class being created
|
|
9133
9195
|
*/
|
|
@@ -9135,7 +9197,8 @@ declare namespace sap {
|
|
|
9135
9197
|
/**
|
|
9136
9198
|
* Object literal with information about the class
|
|
9137
9199
|
*/
|
|
9138
|
-
oClassInfo?:
|
|
9200
|
+
oClassInfo?: T &
|
|
9201
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.CustomShape>,
|
|
9139
9202
|
/**
|
|
9140
9203
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9141
9204
|
* used by this class
|
|
@@ -9485,7 +9548,7 @@ declare namespace sap {
|
|
|
9485
9548
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9486
9549
|
*/
|
|
9487
9550
|
// @ts-ignore
|
|
9488
|
-
static extend(
|
|
9551
|
+
static extend<T extends Record<string, unknown>>(
|
|
9489
9552
|
/**
|
|
9490
9553
|
* Name of the class being created
|
|
9491
9554
|
*/
|
|
@@ -9493,7 +9556,10 @@ declare namespace sap {
|
|
|
9493
9556
|
/**
|
|
9494
9557
|
* Object literal with information about the class
|
|
9495
9558
|
*/
|
|
9496
|
-
oClassInfo?:
|
|
9559
|
+
oClassInfo?: T &
|
|
9560
|
+
ThisType<
|
|
9561
|
+
T & sap.suite.ui.commons.statusindicator.DiscreteThreshold
|
|
9562
|
+
>,
|
|
9497
9563
|
/**
|
|
9498
9564
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9499
9565
|
* used by this class
|
|
@@ -9581,7 +9647,7 @@ declare namespace sap {
|
|
|
9581
9647
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9582
9648
|
*/
|
|
9583
9649
|
// @ts-ignore
|
|
9584
|
-
static extend(
|
|
9650
|
+
static extend<T extends Record<string, unknown>>(
|
|
9585
9651
|
/**
|
|
9586
9652
|
* Name of the class being created
|
|
9587
9653
|
*/
|
|
@@ -9589,7 +9655,10 @@ declare namespace sap {
|
|
|
9589
9655
|
/**
|
|
9590
9656
|
* Object literal with information about the class
|
|
9591
9657
|
*/
|
|
9592
|
-
oClassInfo?:
|
|
9658
|
+
oClassInfo?: T &
|
|
9659
|
+
ThisType<
|
|
9660
|
+
T & sap.suite.ui.commons.statusindicator.FillingOption
|
|
9661
|
+
>,
|
|
9593
9662
|
/**
|
|
9594
9663
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9595
9664
|
* used by this class
|
|
@@ -9774,7 +9843,7 @@ declare namespace sap {
|
|
|
9774
9843
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.statusindicator.CustomShape.extend}.
|
|
9775
9844
|
*/
|
|
9776
9845
|
// @ts-ignore
|
|
9777
|
-
static extend(
|
|
9846
|
+
static extend<T extends Record<string, unknown>>(
|
|
9778
9847
|
/**
|
|
9779
9848
|
* Name of the class being created
|
|
9780
9849
|
*/
|
|
@@ -9782,7 +9851,8 @@ declare namespace sap {
|
|
|
9782
9851
|
/**
|
|
9783
9852
|
* Object literal with information about the class
|
|
9784
9853
|
*/
|
|
9785
|
-
oClassInfo?:
|
|
9854
|
+
oClassInfo?: T &
|
|
9855
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.LibraryShape>,
|
|
9786
9856
|
/**
|
|
9787
9857
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9788
9858
|
* used by this class
|
|
@@ -9874,7 +9944,7 @@ declare namespace sap {
|
|
|
9874
9944
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.statusindicator.SimpleShape.extend}.
|
|
9875
9945
|
*/
|
|
9876
9946
|
// @ts-ignore
|
|
9877
|
-
static extend(
|
|
9947
|
+
static extend<T extends Record<string, unknown>>(
|
|
9878
9948
|
/**
|
|
9879
9949
|
* Name of the class being created
|
|
9880
9950
|
*/
|
|
@@ -9882,7 +9952,8 @@ declare namespace sap {
|
|
|
9882
9952
|
/**
|
|
9883
9953
|
* Object literal with information about the class
|
|
9884
9954
|
*/
|
|
9885
|
-
oClassInfo?:
|
|
9955
|
+
oClassInfo?: T &
|
|
9956
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.Path>,
|
|
9886
9957
|
/**
|
|
9887
9958
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9888
9959
|
* used by this class
|
|
@@ -9948,7 +10019,7 @@ declare namespace sap {
|
|
|
9948
10019
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9949
10020
|
*/
|
|
9950
10021
|
// @ts-ignore
|
|
9951
|
-
static extend(
|
|
10022
|
+
static extend<T extends Record<string, unknown>>(
|
|
9952
10023
|
/**
|
|
9953
10024
|
* Name of the class being created
|
|
9954
10025
|
*/
|
|
@@ -9956,7 +10027,10 @@ declare namespace sap {
|
|
|
9956
10027
|
/**
|
|
9957
10028
|
* Object literal with information about the class
|
|
9958
10029
|
*/
|
|
9959
|
-
oClassInfo?:
|
|
10030
|
+
oClassInfo?: T &
|
|
10031
|
+
ThisType<
|
|
10032
|
+
T & sap.suite.ui.commons.statusindicator.PropertyThreshold
|
|
10033
|
+
>,
|
|
9960
10034
|
/**
|
|
9961
10035
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9962
10036
|
* used by this class
|
|
@@ -10066,7 +10140,7 @@ declare namespace sap {
|
|
|
10066
10140
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.statusindicator.SimpleShape.extend}.
|
|
10067
10141
|
*/
|
|
10068
10142
|
// @ts-ignore
|
|
10069
|
-
static extend(
|
|
10143
|
+
static extend<T extends Record<string, unknown>>(
|
|
10070
10144
|
/**
|
|
10071
10145
|
* Name of the class being created
|
|
10072
10146
|
*/
|
|
@@ -10074,7 +10148,8 @@ declare namespace sap {
|
|
|
10074
10148
|
/**
|
|
10075
10149
|
* Object literal with information about the class
|
|
10076
10150
|
*/
|
|
10077
|
-
oClassInfo?:
|
|
10151
|
+
oClassInfo?: T &
|
|
10152
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.Rectangle>,
|
|
10078
10153
|
/**
|
|
10079
10154
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10080
10155
|
* used by this class
|
|
@@ -10257,7 +10332,7 @@ declare namespace sap {
|
|
|
10257
10332
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10258
10333
|
*/
|
|
10259
10334
|
// @ts-ignore
|
|
10260
|
-
static extend(
|
|
10335
|
+
static extend<T extends Record<string, unknown>>(
|
|
10261
10336
|
/**
|
|
10262
10337
|
* Name of the class being created
|
|
10263
10338
|
*/
|
|
@@ -10265,7 +10340,8 @@ declare namespace sap {
|
|
|
10265
10340
|
/**
|
|
10266
10341
|
* Object literal with information about the class
|
|
10267
10342
|
*/
|
|
10268
|
-
oClassInfo?:
|
|
10343
|
+
oClassInfo?: T &
|
|
10344
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.Shape>,
|
|
10269
10345
|
/**
|
|
10270
10346
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10271
10347
|
* used by this class
|
|
@@ -10593,7 +10669,7 @@ declare namespace sap {
|
|
|
10593
10669
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10594
10670
|
*/
|
|
10595
10671
|
// @ts-ignore
|
|
10596
|
-
static extend(
|
|
10672
|
+
static extend<T extends Record<string, unknown>>(
|
|
10597
10673
|
/**
|
|
10598
10674
|
* Name of the class being created
|
|
10599
10675
|
*/
|
|
@@ -10601,7 +10677,8 @@ declare namespace sap {
|
|
|
10601
10677
|
/**
|
|
10602
10678
|
* Object literal with information about the class
|
|
10603
10679
|
*/
|
|
10604
|
-
oClassInfo?:
|
|
10680
|
+
oClassInfo?: T &
|
|
10681
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.ShapeGroup>,
|
|
10605
10682
|
/**
|
|
10606
10683
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10607
10684
|
* used by this class
|
|
@@ -10741,7 +10818,7 @@ declare namespace sap {
|
|
|
10741
10818
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.statusindicator.Shape.extend}.
|
|
10742
10819
|
*/
|
|
10743
10820
|
// @ts-ignore
|
|
10744
|
-
static extend(
|
|
10821
|
+
static extend<T extends Record<string, unknown>>(
|
|
10745
10822
|
/**
|
|
10746
10823
|
* Name of the class being created
|
|
10747
10824
|
*/
|
|
@@ -10749,7 +10826,8 @@ declare namespace sap {
|
|
|
10749
10826
|
/**
|
|
10750
10827
|
* Object literal with information about the class
|
|
10751
10828
|
*/
|
|
10752
|
-
oClassInfo?:
|
|
10829
|
+
oClassInfo?: T &
|
|
10830
|
+
ThisType<T & sap.suite.ui.commons.statusindicator.SimpleShape>,
|
|
10753
10831
|
/**
|
|
10754
10832
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10755
10833
|
* used by this class
|
|
@@ -10952,7 +11030,7 @@ declare namespace sap {
|
|
|
10952
11030
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10953
11031
|
*/
|
|
10954
11032
|
// @ts-ignore
|
|
10955
|
-
static extend(
|
|
11033
|
+
static extend<T extends Record<string, unknown>>(
|
|
10956
11034
|
/**
|
|
10957
11035
|
* Name of the class being created
|
|
10958
11036
|
*/
|
|
@@ -10960,7 +11038,10 @@ declare namespace sap {
|
|
|
10960
11038
|
/**
|
|
10961
11039
|
* Object literal with information about the class
|
|
10962
11040
|
*/
|
|
10963
|
-
oClassInfo?:
|
|
11041
|
+
oClassInfo?: T &
|
|
11042
|
+
ThisType<
|
|
11043
|
+
T & sap.suite.ui.commons.statusindicator.StatusIndicator
|
|
11044
|
+
>,
|
|
10964
11045
|
/**
|
|
10965
11046
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10966
11047
|
* used by this class
|
|
@@ -11404,7 +11485,7 @@ declare namespace sap {
|
|
|
11404
11485
|
/**
|
|
11405
11486
|
* From bottom upwards.
|
|
11406
11487
|
*/
|
|
11407
|
-
Up
|
|
11488
|
+
Up,
|
|
11408
11489
|
}
|
|
11409
11490
|
/**
|
|
11410
11491
|
* The type of filling.
|
|
@@ -11423,7 +11504,7 @@ declare namespace sap {
|
|
|
11423
11504
|
/**
|
|
11424
11505
|
* No filling is applied.
|
|
11425
11506
|
*/
|
|
11426
|
-
None
|
|
11507
|
+
None,
|
|
11427
11508
|
}
|
|
11428
11509
|
/**
|
|
11429
11510
|
* The horizontal alignment of the status indicator within its parent container.
|
|
@@ -11440,7 +11521,7 @@ declare namespace sap {
|
|
|
11440
11521
|
/**
|
|
11441
11522
|
* Right.
|
|
11442
11523
|
*/
|
|
11443
|
-
Right
|
|
11524
|
+
Right,
|
|
11444
11525
|
}
|
|
11445
11526
|
/**
|
|
11446
11527
|
* Position of the label, relative to the status indicator.
|
|
@@ -11461,7 +11542,7 @@ declare namespace sap {
|
|
|
11461
11542
|
/**
|
|
11462
11543
|
* Top.
|
|
11463
11544
|
*/
|
|
11464
|
-
Top
|
|
11545
|
+
Top,
|
|
11465
11546
|
}
|
|
11466
11547
|
/**
|
|
11467
11548
|
* Predefined sizes of the status indicator.
|
|
@@ -11486,7 +11567,7 @@ declare namespace sap {
|
|
|
11486
11567
|
/**
|
|
11487
11568
|
* Small status indicator.
|
|
11488
11569
|
*/
|
|
11489
|
-
Small
|
|
11570
|
+
Small,
|
|
11490
11571
|
}
|
|
11491
11572
|
/**
|
|
11492
11573
|
* The vertical alignment of the status indicator within its parent container.
|
|
@@ -11503,7 +11584,7 @@ declare namespace sap {
|
|
|
11503
11584
|
/**
|
|
11504
11585
|
* Top.
|
|
11505
11586
|
*/
|
|
11506
|
-
Top
|
|
11587
|
+
Top,
|
|
11507
11588
|
}
|
|
11508
11589
|
}
|
|
11509
11590
|
|
|
@@ -11756,7 +11837,7 @@ declare namespace sap {
|
|
|
11756
11837
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11757
11838
|
*/
|
|
11758
11839
|
// @ts-ignore
|
|
11759
|
-
static extend(
|
|
11840
|
+
static extend<T extends Record<string, unknown>>(
|
|
11760
11841
|
/**
|
|
11761
11842
|
* Name of the class being created
|
|
11762
11843
|
*/
|
|
@@ -11764,7 +11845,8 @@ declare namespace sap {
|
|
|
11764
11845
|
/**
|
|
11765
11846
|
* Object literal with information about the class
|
|
11766
11847
|
*/
|
|
11767
|
-
oClassInfo?:
|
|
11848
|
+
oClassInfo?: T &
|
|
11849
|
+
ThisType<T & sap.suite.ui.commons.taccount.TAccount>,
|
|
11768
11850
|
/**
|
|
11769
11851
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11770
11852
|
* used by this class
|
|
@@ -12110,7 +12192,7 @@ declare namespace sap {
|
|
|
12110
12192
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12111
12193
|
*/
|
|
12112
12194
|
// @ts-ignore
|
|
12113
|
-
static extend(
|
|
12195
|
+
static extend<T extends Record<string, unknown>>(
|
|
12114
12196
|
/**
|
|
12115
12197
|
* Name of the class being created
|
|
12116
12198
|
*/
|
|
@@ -12118,7 +12200,8 @@ declare namespace sap {
|
|
|
12118
12200
|
/**
|
|
12119
12201
|
* Object literal with information about the class
|
|
12120
12202
|
*/
|
|
12121
|
-
oClassInfo?:
|
|
12203
|
+
oClassInfo?: T &
|
|
12204
|
+
ThisType<T & sap.suite.ui.commons.taccount.TAccountGroup>,
|
|
12122
12205
|
/**
|
|
12123
12206
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12124
12207
|
* used by this class
|
|
@@ -12309,7 +12392,7 @@ declare namespace sap {
|
|
|
12309
12392
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12310
12393
|
*/
|
|
12311
12394
|
// @ts-ignore
|
|
12312
|
-
static extend(
|
|
12395
|
+
static extend<T extends Record<string, unknown>>(
|
|
12313
12396
|
/**
|
|
12314
12397
|
* Name of the class being created
|
|
12315
12398
|
*/
|
|
@@ -12317,7 +12400,8 @@ declare namespace sap {
|
|
|
12317
12400
|
/**
|
|
12318
12401
|
* Object literal with information about the class
|
|
12319
12402
|
*/
|
|
12320
|
-
oClassInfo?:
|
|
12403
|
+
oClassInfo?: T &
|
|
12404
|
+
ThisType<T & sap.suite.ui.commons.taccount.TAccountItem>,
|
|
12321
12405
|
/**
|
|
12322
12406
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12323
12407
|
* used by this class
|
|
@@ -12529,7 +12613,7 @@ declare namespace sap {
|
|
|
12529
12613
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12530
12614
|
*/
|
|
12531
12615
|
// @ts-ignore
|
|
12532
|
-
static extend(
|
|
12616
|
+
static extend<T extends Record<string, unknown>>(
|
|
12533
12617
|
/**
|
|
12534
12618
|
* Name of the class being created
|
|
12535
12619
|
*/
|
|
@@ -12537,7 +12621,10 @@ declare namespace sap {
|
|
|
12537
12621
|
/**
|
|
12538
12622
|
* Object literal with information about the class
|
|
12539
12623
|
*/
|
|
12540
|
-
oClassInfo?:
|
|
12624
|
+
oClassInfo?: T &
|
|
12625
|
+
ThisType<
|
|
12626
|
+
T & sap.suite.ui.commons.taccount.TAccountItemProperty
|
|
12627
|
+
>,
|
|
12541
12628
|
/**
|
|
12542
12629
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12543
12630
|
* used by this class
|
|
@@ -12790,7 +12877,7 @@ declare namespace sap {
|
|
|
12790
12877
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12791
12878
|
*/
|
|
12792
12879
|
// @ts-ignore
|
|
12793
|
-
static extend(
|
|
12880
|
+
static extend<T extends Record<string, unknown>>(
|
|
12794
12881
|
/**
|
|
12795
12882
|
* Name of the class being created
|
|
12796
12883
|
*/
|
|
@@ -12798,7 +12885,8 @@ declare namespace sap {
|
|
|
12798
12885
|
/**
|
|
12799
12886
|
* Object literal with information about the class
|
|
12800
12887
|
*/
|
|
12801
|
-
oClassInfo?:
|
|
12888
|
+
oClassInfo?: T &
|
|
12889
|
+
ThisType<T & sap.suite.ui.commons.taccount.TAccountPanel>,
|
|
12802
12890
|
/**
|
|
12803
12891
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12804
12892
|
* used by this class
|
|
@@ -13068,7 +13156,7 @@ declare namespace sap {
|
|
|
13068
13156
|
* The T account panel displays T accounts as an aggregated table, with each debit and credit entry listed
|
|
13069
13157
|
* on a separate row.
|
|
13070
13158
|
*/
|
|
13071
|
-
Table
|
|
13159
|
+
Table,
|
|
13072
13160
|
}
|
|
13073
13161
|
}
|
|
13074
13162
|
|
|
@@ -13154,7 +13242,7 @@ declare namespace sap {
|
|
|
13154
13242
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
13155
13243
|
*/
|
|
13156
13244
|
// @ts-ignore
|
|
13157
|
-
static extend(
|
|
13245
|
+
static extend<T extends Record<string, unknown>>(
|
|
13158
13246
|
/**
|
|
13159
13247
|
* Name of the class being created
|
|
13160
13248
|
*/
|
|
@@ -13162,7 +13250,8 @@ declare namespace sap {
|
|
|
13162
13250
|
/**
|
|
13163
13251
|
* Object literal with information about the class
|
|
13164
13252
|
*/
|
|
13165
|
-
oClassInfo?:
|
|
13253
|
+
oClassInfo?: T &
|
|
13254
|
+
ThisType<T & sap.suite.ui.commons.util.HtmlElement>,
|
|
13166
13255
|
/**
|
|
13167
13256
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13168
13257
|
* used by this class
|
|
@@ -13248,7 +13337,7 @@ declare namespace sap {
|
|
|
13248
13337
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
13249
13338
|
*/
|
|
13250
13339
|
// @ts-ignore
|
|
13251
|
-
static extend(
|
|
13340
|
+
static extend<T extends Record<string, unknown>>(
|
|
13252
13341
|
/**
|
|
13253
13342
|
* Name of the class being created
|
|
13254
13343
|
*/
|
|
@@ -13256,7 +13345,8 @@ declare namespace sap {
|
|
|
13256
13345
|
/**
|
|
13257
13346
|
* Object literal with information about the class
|
|
13258
13347
|
*/
|
|
13259
|
-
oClassInfo?:
|
|
13348
|
+
oClassInfo?: T &
|
|
13349
|
+
ThisType<T & sap.suite.ui.commons.util.HtmlElementRenderer>,
|
|
13260
13350
|
/**
|
|
13261
13351
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13262
13352
|
* used by this class
|
|
@@ -13320,7 +13410,7 @@ declare namespace sap {
|
|
|
13320
13410
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
13321
13411
|
*/
|
|
13322
13412
|
// @ts-ignore
|
|
13323
|
-
static extend(
|
|
13413
|
+
static extend<T extends Record<string, unknown>>(
|
|
13324
13414
|
/**
|
|
13325
13415
|
* Name of the class being created
|
|
13326
13416
|
*/
|
|
@@ -13328,7 +13418,8 @@ declare namespace sap {
|
|
|
13328
13418
|
/**
|
|
13329
13419
|
* Object literal with information about the class
|
|
13330
13420
|
*/
|
|
13331
|
-
oClassInfo?:
|
|
13421
|
+
oClassInfo?: T &
|
|
13422
|
+
ThisType<T & sap.suite.ui.commons.util.ManagedObjectRegister>,
|
|
13332
13423
|
/**
|
|
13333
13424
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13334
13425
|
* used by this class
|
|
@@ -13464,7 +13555,7 @@ declare namespace sap {
|
|
|
13464
13555
|
readOnly?: boolean;
|
|
13465
13556
|
|
|
13466
13557
|
/**
|
|
13467
|
-
* Defines whether comparison operators (
|
|
13558
|
+
* Defines whether comparison operators (<, >, <=, >=, =, !=) are allowed.
|
|
13468
13559
|
*/
|
|
13469
13560
|
allowComparisonOperators?: boolean;
|
|
13470
13561
|
|
|
@@ -16179,7 +16270,7 @@ declare namespace sap {
|
|
|
16179
16270
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
16180
16271
|
*/
|
|
16181
16272
|
// @ts-ignore
|
|
16182
|
-
static extend(
|
|
16273
|
+
static extend<T extends Record<string, unknown>>(
|
|
16183
16274
|
/**
|
|
16184
16275
|
* Name of the class being created
|
|
16185
16276
|
*/
|
|
@@ -16187,7 +16278,7 @@ declare namespace sap {
|
|
|
16187
16278
|
/**
|
|
16188
16279
|
* Object literal with information about the class
|
|
16189
16280
|
*/
|
|
16190
|
-
oClassInfo?:
|
|
16281
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.AriaProperties>,
|
|
16191
16282
|
/**
|
|
16192
16283
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16193
16284
|
* used by this class
|
|
@@ -16343,7 +16434,7 @@ declare namespace sap {
|
|
|
16343
16434
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.BulletMicroChart.extend}.
|
|
16344
16435
|
*/
|
|
16345
16436
|
// @ts-ignore
|
|
16346
|
-
static extend(
|
|
16437
|
+
static extend<T extends Record<string, unknown>>(
|
|
16347
16438
|
/**
|
|
16348
16439
|
* Name of the class being created
|
|
16349
16440
|
*/
|
|
@@ -16351,7 +16442,7 @@ declare namespace sap {
|
|
|
16351
16442
|
/**
|
|
16352
16443
|
* Object literal with information about the class
|
|
16353
16444
|
*/
|
|
16354
|
-
oClassInfo?:
|
|
16445
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.BulletChart>,
|
|
16355
16446
|
/**
|
|
16356
16447
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16357
16448
|
* used by this class
|
|
@@ -16392,7 +16483,7 @@ declare namespace sap {
|
|
|
16392
16483
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.BulletMicroChartData.extend}.
|
|
16393
16484
|
*/
|
|
16394
16485
|
// @ts-ignore
|
|
16395
|
-
static extend(
|
|
16486
|
+
static extend<T extends Record<string, unknown>>(
|
|
16396
16487
|
/**
|
|
16397
16488
|
* Name of the class being created
|
|
16398
16489
|
*/
|
|
@@ -16400,7 +16491,7 @@ declare namespace sap {
|
|
|
16400
16491
|
/**
|
|
16401
16492
|
* Object literal with information about the class
|
|
16402
16493
|
*/
|
|
16403
|
-
oClassInfo?:
|
|
16494
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.BulletChartData>,
|
|
16404
16495
|
/**
|
|
16405
16496
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16406
16497
|
* used by this class
|
|
@@ -16453,7 +16544,7 @@ declare namespace sap {
|
|
|
16453
16544
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16454
16545
|
*/
|
|
16455
16546
|
// @ts-ignore
|
|
16456
|
-
static extend(
|
|
16547
|
+
static extend<T extends Record<string, unknown>>(
|
|
16457
16548
|
/**
|
|
16458
16549
|
* Name of the class being created
|
|
16459
16550
|
*/
|
|
@@ -16461,7 +16552,7 @@ declare namespace sap {
|
|
|
16461
16552
|
/**
|
|
16462
16553
|
* Object literal with information about the class
|
|
16463
16554
|
*/
|
|
16464
|
-
oClassInfo?:
|
|
16555
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.BusinessCard>,
|
|
16465
16556
|
/**
|
|
16466
16557
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16467
16558
|
* used by this class
|
|
@@ -16869,7 +16960,7 @@ declare namespace sap {
|
|
|
16869
16960
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16870
16961
|
*/
|
|
16871
16962
|
// @ts-ignore
|
|
16872
|
-
static extend(
|
|
16963
|
+
static extend<T extends Record<string, unknown>>(
|
|
16873
16964
|
/**
|
|
16874
16965
|
* Name of the class being created
|
|
16875
16966
|
*/
|
|
@@ -16877,7 +16968,8 @@ declare namespace sap {
|
|
|
16877
16968
|
/**
|
|
16878
16969
|
* Object literal with information about the class
|
|
16879
16970
|
*/
|
|
16880
|
-
oClassInfo?:
|
|
16971
|
+
oClassInfo?: T &
|
|
16972
|
+
ThisType<T & sap.suite.ui.commons.CalculationBuilder>,
|
|
16881
16973
|
/**
|
|
16882
16974
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16883
16975
|
* used by this class
|
|
@@ -16920,7 +17012,7 @@ declare namespace sap {
|
|
|
16920
17012
|
/**
|
|
16921
17013
|
* Gets current value of property {@link #getAllowComparisonOperators allowComparisonOperators}.
|
|
16922
17014
|
*
|
|
16923
|
-
* Defines whether comparison operators (
|
|
17015
|
+
* Defines whether comparison operators (<, >, <=, >=, =, !=) are allowed.
|
|
16924
17016
|
*
|
|
16925
17017
|
* Default value is `true`.
|
|
16926
17018
|
*/
|
|
@@ -17297,7 +17389,7 @@ declare namespace sap {
|
|
|
17297
17389
|
/**
|
|
17298
17390
|
* Sets a new value for property {@link #getAllowComparisonOperators allowComparisonOperators}.
|
|
17299
17391
|
*
|
|
17300
|
-
* Defines whether comparison operators (
|
|
17392
|
+
* Defines whether comparison operators (<, >, <=, >=, =, !=) are allowed.
|
|
17301
17393
|
*
|
|
17302
17394
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17303
17395
|
*
|
|
@@ -17643,7 +17735,7 @@ declare namespace sap {
|
|
|
17643
17735
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17644
17736
|
*/
|
|
17645
17737
|
// @ts-ignore
|
|
17646
|
-
static extend(
|
|
17738
|
+
static extend<T extends Record<string, unknown>>(
|
|
17647
17739
|
/**
|
|
17648
17740
|
* Name of the class being created
|
|
17649
17741
|
*/
|
|
@@ -17651,7 +17743,8 @@ declare namespace sap {
|
|
|
17651
17743
|
/**
|
|
17652
17744
|
* Object literal with information about the class
|
|
17653
17745
|
*/
|
|
17654
|
-
oClassInfo?:
|
|
17746
|
+
oClassInfo?: T &
|
|
17747
|
+
ThisType<T & sap.suite.ui.commons.CalculationBuilderFunction>,
|
|
17655
17748
|
/**
|
|
17656
17749
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17657
17750
|
* used by this class
|
|
@@ -17890,7 +17983,7 @@ declare namespace sap {
|
|
|
17890
17983
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17891
17984
|
*/
|
|
17892
17985
|
// @ts-ignore
|
|
17893
|
-
static extend(
|
|
17986
|
+
static extend<T extends Record<string, unknown>>(
|
|
17894
17987
|
/**
|
|
17895
17988
|
* Name of the class being created
|
|
17896
17989
|
*/
|
|
@@ -17898,7 +17991,8 @@ declare namespace sap {
|
|
|
17898
17991
|
/**
|
|
17899
17992
|
* Object literal with information about the class
|
|
17900
17993
|
*/
|
|
17901
|
-
oClassInfo?:
|
|
17994
|
+
oClassInfo?: T &
|
|
17995
|
+
ThisType<T & sap.suite.ui.commons.CalculationBuilderGroup>,
|
|
17902
17996
|
/**
|
|
17903
17997
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17904
17998
|
* used by this class
|
|
@@ -18069,7 +18163,7 @@ declare namespace sap {
|
|
|
18069
18163
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18070
18164
|
*/
|
|
18071
18165
|
// @ts-ignore
|
|
18072
|
-
static extend(
|
|
18166
|
+
static extend<T extends Record<string, unknown>>(
|
|
18073
18167
|
/**
|
|
18074
18168
|
* Name of the class being created
|
|
18075
18169
|
*/
|
|
@@ -18077,7 +18171,8 @@ declare namespace sap {
|
|
|
18077
18171
|
/**
|
|
18078
18172
|
* Object literal with information about the class
|
|
18079
18173
|
*/
|
|
18080
|
-
oClassInfo?:
|
|
18174
|
+
oClassInfo?: T &
|
|
18175
|
+
ThisType<T & sap.suite.ui.commons.CalculationBuilderItem>,
|
|
18081
18176
|
/**
|
|
18082
18177
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18083
18178
|
* used by this class
|
|
@@ -18148,7 +18243,7 @@ declare namespace sap {
|
|
|
18148
18243
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
|
|
18149
18244
|
*/
|
|
18150
18245
|
// @ts-ignore
|
|
18151
|
-
static extend(
|
|
18246
|
+
static extend<T extends Record<string, unknown>>(
|
|
18152
18247
|
/**
|
|
18153
18248
|
* Name of the class being created
|
|
18154
18249
|
*/
|
|
@@ -18156,7 +18251,10 @@ declare namespace sap {
|
|
|
18156
18251
|
/**
|
|
18157
18252
|
* Object literal with information about the class
|
|
18158
18253
|
*/
|
|
18159
|
-
oClassInfo?:
|
|
18254
|
+
oClassInfo?: T &
|
|
18255
|
+
ThisType<
|
|
18256
|
+
T & sap.suite.ui.commons.CalculationBuilderValidationResult
|
|
18257
|
+
>,
|
|
18160
18258
|
/**
|
|
18161
18259
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18162
18260
|
* used by this class
|
|
@@ -18213,7 +18311,7 @@ declare namespace sap {
|
|
|
18213
18311
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18214
18312
|
*/
|
|
18215
18313
|
// @ts-ignore
|
|
18216
|
-
static extend(
|
|
18314
|
+
static extend<T extends Record<string, unknown>>(
|
|
18217
18315
|
/**
|
|
18218
18316
|
* Name of the class being created
|
|
18219
18317
|
*/
|
|
@@ -18221,7 +18319,8 @@ declare namespace sap {
|
|
|
18221
18319
|
/**
|
|
18222
18320
|
* Object literal with information about the class
|
|
18223
18321
|
*/
|
|
18224
|
-
oClassInfo?:
|
|
18322
|
+
oClassInfo?: T &
|
|
18323
|
+
ThisType<T & sap.suite.ui.commons.CalculationBuilderVariable>,
|
|
18225
18324
|
/**
|
|
18226
18325
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18227
18326
|
* used by this class
|
|
@@ -18583,7 +18682,7 @@ declare namespace sap {
|
|
|
18583
18682
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18584
18683
|
*/
|
|
18585
18684
|
// @ts-ignore
|
|
18586
|
-
static extend(
|
|
18685
|
+
static extend<T extends Record<string, unknown>>(
|
|
18587
18686
|
/**
|
|
18588
18687
|
* Name of the class being created
|
|
18589
18688
|
*/
|
|
@@ -18591,7 +18690,7 @@ declare namespace sap {
|
|
|
18591
18690
|
/**
|
|
18592
18691
|
* Object literal with information about the class
|
|
18593
18692
|
*/
|
|
18594
|
-
oClassInfo?:
|
|
18693
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ChartContainer>,
|
|
18595
18694
|
/**
|
|
18596
18695
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18597
18696
|
* used by this class
|
|
@@ -19244,7 +19343,7 @@ declare namespace sap {
|
|
|
19244
19343
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
19245
19344
|
*/
|
|
19246
19345
|
// @ts-ignore
|
|
19247
|
-
static extend(
|
|
19346
|
+
static extend<T extends Record<string, unknown>>(
|
|
19248
19347
|
/**
|
|
19249
19348
|
* Name of the class being created
|
|
19250
19349
|
*/
|
|
@@ -19252,7 +19351,8 @@ declare namespace sap {
|
|
|
19252
19351
|
/**
|
|
19253
19352
|
* Object literal with information about the class
|
|
19254
19353
|
*/
|
|
19255
|
-
oClassInfo?:
|
|
19354
|
+
oClassInfo?: T &
|
|
19355
|
+
ThisType<T & sap.suite.ui.commons.ChartContainerContent>,
|
|
19256
19356
|
/**
|
|
19257
19357
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19258
19358
|
* used by this class
|
|
@@ -19357,7 +19457,7 @@ declare namespace sap {
|
|
|
19357
19457
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
19358
19458
|
*/
|
|
19359
19459
|
// @ts-ignore
|
|
19360
|
-
static extend(
|
|
19460
|
+
static extend<T extends Record<string, unknown>>(
|
|
19361
19461
|
/**
|
|
19362
19462
|
* Name of the class being created
|
|
19363
19463
|
*/
|
|
@@ -19365,7 +19465,10 @@ declare namespace sap {
|
|
|
19365
19465
|
/**
|
|
19366
19466
|
* Object literal with information about the class
|
|
19367
19467
|
*/
|
|
19368
|
-
oClassInfo?:
|
|
19468
|
+
oClassInfo?: T &
|
|
19469
|
+
ThisType<
|
|
19470
|
+
T & sap.suite.ui.commons.ChartContainerToolbarPlaceholder
|
|
19471
|
+
>,
|
|
19369
19472
|
/**
|
|
19370
19473
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19371
19474
|
* used by this class
|
|
@@ -19409,7 +19512,7 @@ declare namespace sap {
|
|
|
19409
19512
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.InfoTile.extend}.
|
|
19410
19513
|
*/
|
|
19411
19514
|
// @ts-ignore
|
|
19412
|
-
static extend(
|
|
19515
|
+
static extend<T extends Record<string, unknown>>(
|
|
19413
19516
|
/**
|
|
19414
19517
|
* Name of the class being created
|
|
19415
19518
|
*/
|
|
@@ -19417,7 +19520,7 @@ declare namespace sap {
|
|
|
19417
19520
|
/**
|
|
19418
19521
|
* Object literal with information about the class
|
|
19419
19522
|
*/
|
|
19420
|
-
oClassInfo?:
|
|
19523
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ChartTile>,
|
|
19421
19524
|
/**
|
|
19422
19525
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19423
19526
|
* used by this class
|
|
@@ -19476,7 +19579,7 @@ declare namespace sap {
|
|
|
19476
19579
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.ColumnMicroChartData.extend}.
|
|
19477
19580
|
*/
|
|
19478
19581
|
// @ts-ignore
|
|
19479
|
-
static extend(
|
|
19582
|
+
static extend<T extends Record<string, unknown>>(
|
|
19480
19583
|
/**
|
|
19481
19584
|
* Name of the class being created
|
|
19482
19585
|
*/
|
|
@@ -19484,7 +19587,7 @@ declare namespace sap {
|
|
|
19484
19587
|
/**
|
|
19485
19588
|
* Object literal with information about the class
|
|
19486
19589
|
*/
|
|
19487
|
-
oClassInfo?:
|
|
19590
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ColumnData>,
|
|
19488
19591
|
/**
|
|
19489
19592
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19490
19593
|
* used by this class
|
|
@@ -19525,7 +19628,7 @@ declare namespace sap {
|
|
|
19525
19628
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.ColumnMicroChart.extend}.
|
|
19526
19629
|
*/
|
|
19527
19630
|
// @ts-ignore
|
|
19528
|
-
static extend(
|
|
19631
|
+
static extend<T extends Record<string, unknown>>(
|
|
19529
19632
|
/**
|
|
19530
19633
|
* Name of the class being created
|
|
19531
19634
|
*/
|
|
@@ -19533,7 +19636,8 @@ declare namespace sap {
|
|
|
19533
19636
|
/**
|
|
19534
19637
|
* Object literal with information about the class
|
|
19535
19638
|
*/
|
|
19536
|
-
oClassInfo?:
|
|
19639
|
+
oClassInfo?: T &
|
|
19640
|
+
ThisType<T & sap.suite.ui.commons.ColumnMicroChart>,
|
|
19537
19641
|
/**
|
|
19538
19642
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19539
19643
|
* used by this class
|
|
@@ -19574,7 +19678,7 @@ declare namespace sap {
|
|
|
19574
19678
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.ColumnMicroChartLabel.extend}.
|
|
19575
19679
|
*/
|
|
19576
19680
|
// @ts-ignore
|
|
19577
|
-
static extend(
|
|
19681
|
+
static extend<T extends Record<string, unknown>>(
|
|
19578
19682
|
/**
|
|
19579
19683
|
* Name of the class being created
|
|
19580
19684
|
*/
|
|
@@ -19582,7 +19686,8 @@ declare namespace sap {
|
|
|
19582
19686
|
/**
|
|
19583
19687
|
* Object literal with information about the class
|
|
19584
19688
|
*/
|
|
19585
|
-
oClassInfo?:
|
|
19689
|
+
oClassInfo?: T &
|
|
19690
|
+
ThisType<T & sap.suite.ui.commons.ColumnMicroChartLabel>,
|
|
19586
19691
|
/**
|
|
19587
19692
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19588
19693
|
* used by this class
|
|
@@ -19623,7 +19728,7 @@ declare namespace sap {
|
|
|
19623
19728
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.ComparisonMicroChart.extend}.
|
|
19624
19729
|
*/
|
|
19625
19730
|
// @ts-ignore
|
|
19626
|
-
static extend(
|
|
19731
|
+
static extend<T extends Record<string, unknown>>(
|
|
19627
19732
|
/**
|
|
19628
19733
|
* Name of the class being created
|
|
19629
19734
|
*/
|
|
@@ -19631,7 +19736,7 @@ declare namespace sap {
|
|
|
19631
19736
|
/**
|
|
19632
19737
|
* Object literal with information about the class
|
|
19633
19738
|
*/
|
|
19634
|
-
oClassInfo?:
|
|
19739
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ComparisonChart>,
|
|
19635
19740
|
/**
|
|
19636
19741
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19637
19742
|
* used by this class
|
|
@@ -19672,7 +19777,7 @@ declare namespace sap {
|
|
|
19672
19777
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.ComparisonMicroChartData.extend}.
|
|
19673
19778
|
*/
|
|
19674
19779
|
// @ts-ignore
|
|
19675
|
-
static extend(
|
|
19780
|
+
static extend<T extends Record<string, unknown>>(
|
|
19676
19781
|
/**
|
|
19677
19782
|
* Name of the class being created
|
|
19678
19783
|
*/
|
|
@@ -19680,7 +19785,7 @@ declare namespace sap {
|
|
|
19680
19785
|
/**
|
|
19681
19786
|
* Object literal with information about the class
|
|
19682
19787
|
*/
|
|
19683
|
-
oClassInfo?:
|
|
19788
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ComparisonData>,
|
|
19684
19789
|
/**
|
|
19685
19790
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19686
19791
|
* used by this class
|
|
@@ -19789,7 +19894,7 @@ declare namespace sap {
|
|
|
19789
19894
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
19790
19895
|
*/
|
|
19791
19896
|
// @ts-ignore
|
|
19792
|
-
static extend(
|
|
19897
|
+
static extend<T extends Record<string, unknown>>(
|
|
19793
19898
|
/**
|
|
19794
19899
|
* Name of the class being created
|
|
19795
19900
|
*/
|
|
@@ -19797,7 +19902,8 @@ declare namespace sap {
|
|
|
19797
19902
|
/**
|
|
19798
19903
|
* Object literal with information about the class
|
|
19799
19904
|
*/
|
|
19800
|
-
oClassInfo?:
|
|
19905
|
+
oClassInfo?: T &
|
|
19906
|
+
ThisType<T & sap.suite.ui.commons.DateRangeScroller>,
|
|
19801
19907
|
/**
|
|
19802
19908
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19803
19909
|
* used by this class
|
|
@@ -20084,7 +20190,7 @@ declare namespace sap {
|
|
|
20084
20190
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
20085
20191
|
*/
|
|
20086
20192
|
// @ts-ignore
|
|
20087
|
-
static extend(
|
|
20193
|
+
static extend<T extends Record<string, unknown>>(
|
|
20088
20194
|
/**
|
|
20089
20195
|
* Name of the class being created
|
|
20090
20196
|
*/
|
|
@@ -20092,7 +20198,7 @@ declare namespace sap {
|
|
|
20092
20198
|
/**
|
|
20093
20199
|
* Object literal with information about the class
|
|
20094
20200
|
*/
|
|
20095
|
-
oClassInfo?:
|
|
20201
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.DateRangeSlider>,
|
|
20096
20202
|
/**
|
|
20097
20203
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20098
20204
|
* used by this class
|
|
@@ -20609,7 +20715,7 @@ declare namespace sap {
|
|
|
20609
20715
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.RangeSlider.extend}.
|
|
20610
20716
|
*/
|
|
20611
20717
|
// @ts-ignore
|
|
20612
|
-
static extend(
|
|
20718
|
+
static extend<T extends Record<string, unknown>>(
|
|
20613
20719
|
/**
|
|
20614
20720
|
* Name of the class being created
|
|
20615
20721
|
*/
|
|
@@ -20617,7 +20723,8 @@ declare namespace sap {
|
|
|
20617
20723
|
/**
|
|
20618
20724
|
* Object literal with information about the class
|
|
20619
20725
|
*/
|
|
20620
|
-
oClassInfo?:
|
|
20726
|
+
oClassInfo?: T &
|
|
20727
|
+
ThisType<T & sap.suite.ui.commons.DateRangeSliderInternal>,
|
|
20621
20728
|
/**
|
|
20622
20729
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20623
20730
|
* used by this class
|
|
@@ -20788,7 +20895,7 @@ declare namespace sap {
|
|
|
20788
20895
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.DeltaMicroChart.extend}.
|
|
20789
20896
|
*/
|
|
20790
20897
|
// @ts-ignore
|
|
20791
|
-
static extend(
|
|
20898
|
+
static extend<T extends Record<string, unknown>>(
|
|
20792
20899
|
/**
|
|
20793
20900
|
* Name of the class being created
|
|
20794
20901
|
*/
|
|
@@ -20796,7 +20903,7 @@ declare namespace sap {
|
|
|
20796
20903
|
/**
|
|
20797
20904
|
* Object literal with information about the class
|
|
20798
20905
|
*/
|
|
20799
|
-
oClassInfo?:
|
|
20906
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.DeltaMicroChart>,
|
|
20800
20907
|
/**
|
|
20801
20908
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20802
20909
|
* used by this class
|
|
@@ -20836,7 +20943,7 @@ declare namespace sap {
|
|
|
20836
20943
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.SlideTile.extend}.
|
|
20837
20944
|
*/
|
|
20838
20945
|
// @ts-ignore
|
|
20839
|
-
static extend(
|
|
20946
|
+
static extend<T extends Record<string, unknown>>(
|
|
20840
20947
|
/**
|
|
20841
20948
|
* Name of the class being created
|
|
20842
20949
|
*/
|
|
@@ -20844,7 +20951,8 @@ declare namespace sap {
|
|
|
20844
20951
|
/**
|
|
20845
20952
|
* Object literal with information about the class
|
|
20846
20953
|
*/
|
|
20847
|
-
oClassInfo?:
|
|
20954
|
+
oClassInfo?: T &
|
|
20955
|
+
ThisType<T & sap.suite.ui.commons.DynamicContainer>,
|
|
20848
20956
|
/**
|
|
20849
20957
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20850
20958
|
* used by this class
|
|
@@ -20971,7 +21079,7 @@ declare namespace sap {
|
|
|
20971
21079
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
20972
21080
|
*/
|
|
20973
21081
|
// @ts-ignore
|
|
20974
|
-
static extend(
|
|
21082
|
+
static extend<T extends Record<string, unknown>>(
|
|
20975
21083
|
/**
|
|
20976
21084
|
* Name of the class being created
|
|
20977
21085
|
*/
|
|
@@ -20979,7 +21087,7 @@ declare namespace sap {
|
|
|
20979
21087
|
/**
|
|
20980
21088
|
* Object literal with information about the class
|
|
20981
21089
|
*/
|
|
20982
|
-
oClassInfo?:
|
|
21090
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.FacetOverview>,
|
|
20983
21091
|
/**
|
|
20984
21092
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20985
21093
|
* used by this class
|
|
@@ -21248,7 +21356,7 @@ declare namespace sap {
|
|
|
21248
21356
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
21249
21357
|
*/
|
|
21250
21358
|
// @ts-ignore
|
|
21251
|
-
static extend(
|
|
21359
|
+
static extend<T extends Record<string, unknown>>(
|
|
21252
21360
|
/**
|
|
21253
21361
|
* Name of the class being created
|
|
21254
21362
|
*/
|
|
@@ -21256,7 +21364,7 @@ declare namespace sap {
|
|
|
21256
21364
|
/**
|
|
21257
21365
|
* Object literal with information about the class
|
|
21258
21366
|
*/
|
|
21259
|
-
oClassInfo?:
|
|
21367
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.FeedItem>,
|
|
21260
21368
|
/**
|
|
21261
21369
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21262
21370
|
* used by this class
|
|
@@ -21395,7 +21503,7 @@ declare namespace sap {
|
|
|
21395
21503
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListItemBase.extend}.
|
|
21396
21504
|
*/
|
|
21397
21505
|
// @ts-ignore
|
|
21398
|
-
static extend(
|
|
21506
|
+
static extend<T extends Record<string, unknown>>(
|
|
21399
21507
|
/**
|
|
21400
21508
|
* Name of the class being created
|
|
21401
21509
|
*/
|
|
@@ -21403,7 +21511,7 @@ declare namespace sap {
|
|
|
21403
21511
|
/**
|
|
21404
21512
|
* Object literal with information about the class
|
|
21405
21513
|
*/
|
|
21406
|
-
oClassInfo?:
|
|
21514
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.FeedItemHeader>,
|
|
21407
21515
|
/**
|
|
21408
21516
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21409
21517
|
* used by this class
|
|
@@ -21612,7 +21720,7 @@ declare namespace sap {
|
|
|
21612
21720
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
21613
21721
|
*/
|
|
21614
21722
|
// @ts-ignore
|
|
21615
|
-
static extend(
|
|
21723
|
+
static extend<T extends Record<string, unknown>>(
|
|
21616
21724
|
/**
|
|
21617
21725
|
* Name of the class being created
|
|
21618
21726
|
*/
|
|
@@ -21620,7 +21728,7 @@ declare namespace sap {
|
|
|
21620
21728
|
/**
|
|
21621
21729
|
* Object literal with information about the class
|
|
21622
21730
|
*/
|
|
21623
|
-
oClassInfo?:
|
|
21731
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.FeedTile>,
|
|
21624
21732
|
/**
|
|
21625
21733
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21626
21734
|
* used by this class
|
|
@@ -21828,7 +21936,7 @@ declare namespace sap {
|
|
|
21828
21936
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.GenericTile.extend}.
|
|
21829
21937
|
*/
|
|
21830
21938
|
// @ts-ignore
|
|
21831
|
-
static extend(
|
|
21939
|
+
static extend<T extends Record<string, unknown>>(
|
|
21832
21940
|
/**
|
|
21833
21941
|
* Name of the class being created
|
|
21834
21942
|
*/
|
|
@@ -21836,7 +21944,7 @@ declare namespace sap {
|
|
|
21836
21944
|
/**
|
|
21837
21945
|
* Object literal with information about the class
|
|
21838
21946
|
*/
|
|
21839
|
-
oClassInfo?:
|
|
21947
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.GenericTile>,
|
|
21840
21948
|
/**
|
|
21841
21949
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21842
21950
|
* used by this class
|
|
@@ -21936,7 +22044,7 @@ declare namespace sap {
|
|
|
21936
22044
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
21937
22045
|
*/
|
|
21938
22046
|
// @ts-ignore
|
|
21939
|
-
static extend(
|
|
22047
|
+
static extend<T extends Record<string, unknown>>(
|
|
21940
22048
|
/**
|
|
21941
22049
|
* Name of the class being created
|
|
21942
22050
|
*/
|
|
@@ -21944,7 +22052,7 @@ declare namespace sap {
|
|
|
21944
22052
|
/**
|
|
21945
22053
|
* Object literal with information about the class
|
|
21946
22054
|
*/
|
|
21947
|
-
oClassInfo?:
|
|
22055
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.GenericTile2X2>,
|
|
21948
22056
|
/**
|
|
21949
22057
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21950
22058
|
* used by this class
|
|
@@ -22259,7 +22367,7 @@ declare namespace sap {
|
|
|
22259
22367
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.HarveyBallMicroChart.extend}.
|
|
22260
22368
|
*/
|
|
22261
22369
|
// @ts-ignore
|
|
22262
|
-
static extend(
|
|
22370
|
+
static extend<T extends Record<string, unknown>>(
|
|
22263
22371
|
/**
|
|
22264
22372
|
* Name of the class being created
|
|
22265
22373
|
*/
|
|
@@ -22267,7 +22375,8 @@ declare namespace sap {
|
|
|
22267
22375
|
/**
|
|
22268
22376
|
* Object literal with information about the class
|
|
22269
22377
|
*/
|
|
22270
|
-
oClassInfo?:
|
|
22378
|
+
oClassInfo?: T &
|
|
22379
|
+
ThisType<T & sap.suite.ui.commons.HarveyBallMicroChart>,
|
|
22271
22380
|
/**
|
|
22272
22381
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22273
22382
|
* used by this class
|
|
@@ -22308,7 +22417,7 @@ declare namespace sap {
|
|
|
22308
22417
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.HarveyBallMicroChartItem.extend}.
|
|
22309
22418
|
*/
|
|
22310
22419
|
// @ts-ignore
|
|
22311
|
-
static extend(
|
|
22420
|
+
static extend<T extends Record<string, unknown>>(
|
|
22312
22421
|
/**
|
|
22313
22422
|
* Name of the class being created
|
|
22314
22423
|
*/
|
|
@@ -22316,7 +22425,8 @@ declare namespace sap {
|
|
|
22316
22425
|
/**
|
|
22317
22426
|
* Object literal with information about the class
|
|
22318
22427
|
*/
|
|
22319
|
-
oClassInfo?:
|
|
22428
|
+
oClassInfo?: T &
|
|
22429
|
+
ThisType<T & sap.suite.ui.commons.HarveyBallMicroChartItem>,
|
|
22320
22430
|
/**
|
|
22321
22431
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22322
22432
|
* used by this class
|
|
@@ -22378,7 +22488,7 @@ declare namespace sap {
|
|
|
22378
22488
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
22379
22489
|
*/
|
|
22380
22490
|
// @ts-ignore
|
|
22381
|
-
static extend(
|
|
22491
|
+
static extend<T extends Record<string, unknown>>(
|
|
22382
22492
|
/**
|
|
22383
22493
|
* Name of the class being created
|
|
22384
22494
|
*/
|
|
@@ -22386,7 +22496,7 @@ declare namespace sap {
|
|
|
22386
22496
|
/**
|
|
22387
22497
|
* Object literal with information about the class
|
|
22388
22498
|
*/
|
|
22389
|
-
oClassInfo?:
|
|
22499
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.HeaderCell>,
|
|
22390
22500
|
/**
|
|
22391
22501
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22392
22502
|
* used by this class
|
|
@@ -22545,7 +22655,7 @@ declare namespace sap {
|
|
|
22545
22655
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
22546
22656
|
*/
|
|
22547
22657
|
// @ts-ignore
|
|
22548
|
-
static extend(
|
|
22658
|
+
static extend<T extends Record<string, unknown>>(
|
|
22549
22659
|
/**
|
|
22550
22660
|
* Name of the class being created
|
|
22551
22661
|
*/
|
|
@@ -22553,7 +22663,7 @@ declare namespace sap {
|
|
|
22553
22663
|
/**
|
|
22554
22664
|
* Object literal with information about the class
|
|
22555
22665
|
*/
|
|
22556
|
-
oClassInfo?:
|
|
22666
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.HeaderCellItem>,
|
|
22557
22667
|
/**
|
|
22558
22668
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22559
22669
|
* used by this class
|
|
@@ -22610,7 +22720,8 @@ declare namespace sap {
|
|
|
22610
22720
|
* on the first control and the End key puts focus on the last control. Use Enter or Space to choose the
|
|
22611
22721
|
* control.
|
|
22612
22722
|
*/
|
|
22613
|
-
class HeaderContainer
|
|
22723
|
+
class HeaderContainer
|
|
22724
|
+
extends sap.ui.core.Control
|
|
22614
22725
|
implements sap.m.ObjectHeaderContainer {
|
|
22615
22726
|
/**
|
|
22616
22727
|
* Constructor for a new HeaderContainer.
|
|
@@ -22650,7 +22761,7 @@ declare namespace sap {
|
|
|
22650
22761
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
22651
22762
|
*/
|
|
22652
22763
|
// @ts-ignore
|
|
22653
|
-
static extend(
|
|
22764
|
+
static extend<T extends Record<string, unknown>>(
|
|
22654
22765
|
/**
|
|
22655
22766
|
* Name of the class being created
|
|
22656
22767
|
*/
|
|
@@ -22658,7 +22769,7 @@ declare namespace sap {
|
|
|
22658
22769
|
/**
|
|
22659
22770
|
* Object literal with information about the class
|
|
22660
22771
|
*/
|
|
22661
|
-
oClassInfo?:
|
|
22772
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.HeaderContainer>,
|
|
22662
22773
|
/**
|
|
22663
22774
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22664
22775
|
* used by this class
|
|
@@ -22923,7 +23034,7 @@ declare namespace sap {
|
|
|
22923
23034
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
22924
23035
|
*/
|
|
22925
23036
|
// @ts-ignore
|
|
22926
|
-
static extend(
|
|
23037
|
+
static extend<T extends Record<string, unknown>>(
|
|
22927
23038
|
/**
|
|
22928
23039
|
* Name of the class being created
|
|
22929
23040
|
*/
|
|
@@ -22931,7 +23042,7 @@ declare namespace sap {
|
|
|
22931
23042
|
/**
|
|
22932
23043
|
* Object literal with information about the class
|
|
22933
23044
|
*/
|
|
22934
|
-
oClassInfo?:
|
|
23045
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.InfoTile>,
|
|
22935
23046
|
/**
|
|
22936
23047
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22937
23048
|
* used by this class
|
|
@@ -23116,7 +23227,7 @@ declare namespace sap {
|
|
|
23116
23227
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.FeedContent.extend}.
|
|
23117
23228
|
*/
|
|
23118
23229
|
// @ts-ignore
|
|
23119
|
-
static extend(
|
|
23230
|
+
static extend<T extends Record<string, unknown>>(
|
|
23120
23231
|
/**
|
|
23121
23232
|
* Name of the class being created
|
|
23122
23233
|
*/
|
|
@@ -23124,7 +23235,7 @@ declare namespace sap {
|
|
|
23124
23235
|
/**
|
|
23125
23236
|
* Object literal with information about the class
|
|
23126
23237
|
*/
|
|
23127
|
-
oClassInfo?:
|
|
23238
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.JamContent>,
|
|
23128
23239
|
/**
|
|
23129
23240
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23130
23241
|
* used by this class
|
|
@@ -23169,7 +23280,7 @@ declare namespace sap {
|
|
|
23169
23280
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
23170
23281
|
*/
|
|
23171
23282
|
// @ts-ignore
|
|
23172
|
-
static extend(
|
|
23283
|
+
static extend<T extends Record<string, unknown>>(
|
|
23173
23284
|
/**
|
|
23174
23285
|
* Name of the class being created
|
|
23175
23286
|
*/
|
|
@@ -23177,7 +23288,7 @@ declare namespace sap {
|
|
|
23177
23288
|
/**
|
|
23178
23289
|
* Object literal with information about the class
|
|
23179
23290
|
*/
|
|
23180
|
-
oClassInfo?:
|
|
23291
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.KpiTile>,
|
|
23181
23292
|
/**
|
|
23182
23293
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23183
23294
|
* used by this class
|
|
@@ -23381,7 +23492,7 @@ declare namespace sap {
|
|
|
23381
23492
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
23382
23493
|
*/
|
|
23383
23494
|
// @ts-ignore
|
|
23384
|
-
static extend(
|
|
23495
|
+
static extend<T extends Record<string, unknown>>(
|
|
23385
23496
|
/**
|
|
23386
23497
|
* Name of the class being created
|
|
23387
23498
|
*/
|
|
@@ -23389,7 +23500,7 @@ declare namespace sap {
|
|
|
23389
23500
|
/**
|
|
23390
23501
|
* Object literal with information about the class
|
|
23391
23502
|
*/
|
|
23392
|
-
oClassInfo?:
|
|
23503
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.LaunchTile>,
|
|
23393
23504
|
/**
|
|
23394
23505
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23395
23506
|
* used by this class
|
|
@@ -23571,7 +23682,7 @@ declare namespace sap {
|
|
|
23571
23682
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.ActionSheet.extend}.
|
|
23572
23683
|
*/
|
|
23573
23684
|
// @ts-ignore
|
|
23574
|
-
static extend(
|
|
23685
|
+
static extend<T extends Record<string, unknown>>(
|
|
23575
23686
|
/**
|
|
23576
23687
|
* Name of the class being created
|
|
23577
23688
|
*/
|
|
@@ -23579,7 +23690,7 @@ declare namespace sap {
|
|
|
23579
23690
|
/**
|
|
23580
23691
|
* Object literal with information about the class
|
|
23581
23692
|
*/
|
|
23582
|
-
oClassInfo?:
|
|
23693
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.LinkActionSheet>,
|
|
23583
23694
|
/**
|
|
23584
23695
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23585
23696
|
* used by this class
|
|
@@ -23702,7 +23813,7 @@ declare namespace sap {
|
|
|
23702
23813
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.AreaMicroChart.extend}.
|
|
23703
23814
|
*/
|
|
23704
23815
|
// @ts-ignore
|
|
23705
|
-
static extend(
|
|
23816
|
+
static extend<T extends Record<string, unknown>>(
|
|
23706
23817
|
/**
|
|
23707
23818
|
* Name of the class being created
|
|
23708
23819
|
*/
|
|
@@ -23710,7 +23821,7 @@ declare namespace sap {
|
|
|
23710
23821
|
/**
|
|
23711
23822
|
* Object literal with information about the class
|
|
23712
23823
|
*/
|
|
23713
|
-
oClassInfo?:
|
|
23824
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.MicroAreaChart>,
|
|
23714
23825
|
/**
|
|
23715
23826
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23716
23827
|
* used by this class
|
|
@@ -23751,7 +23862,7 @@ declare namespace sap {
|
|
|
23751
23862
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.AreaMicroChartItem.extend}.
|
|
23752
23863
|
*/
|
|
23753
23864
|
// @ts-ignore
|
|
23754
|
-
static extend(
|
|
23865
|
+
static extend<T extends Record<string, unknown>>(
|
|
23755
23866
|
/**
|
|
23756
23867
|
* Name of the class being created
|
|
23757
23868
|
*/
|
|
@@ -23759,7 +23870,8 @@ declare namespace sap {
|
|
|
23759
23870
|
/**
|
|
23760
23871
|
* Object literal with information about the class
|
|
23761
23872
|
*/
|
|
23762
|
-
oClassInfo?:
|
|
23873
|
+
oClassInfo?: T &
|
|
23874
|
+
ThisType<T & sap.suite.ui.commons.MicroAreaChartItem>,
|
|
23763
23875
|
/**
|
|
23764
23876
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23765
23877
|
* used by this class
|
|
@@ -23800,7 +23912,7 @@ declare namespace sap {
|
|
|
23800
23912
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.AreaMicroChartLabel.extend}.
|
|
23801
23913
|
*/
|
|
23802
23914
|
// @ts-ignore
|
|
23803
|
-
static extend(
|
|
23915
|
+
static extend<T extends Record<string, unknown>>(
|
|
23804
23916
|
/**
|
|
23805
23917
|
* Name of the class being created
|
|
23806
23918
|
*/
|
|
@@ -23808,7 +23920,8 @@ declare namespace sap {
|
|
|
23808
23920
|
/**
|
|
23809
23921
|
* Object literal with information about the class
|
|
23810
23922
|
*/
|
|
23811
|
-
oClassInfo?:
|
|
23923
|
+
oClassInfo?: T &
|
|
23924
|
+
ThisType<T & sap.suite.ui.commons.MicroAreaChartLabel>,
|
|
23812
23925
|
/**
|
|
23813
23926
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23814
23927
|
* used by this class
|
|
@@ -23849,7 +23962,7 @@ declare namespace sap {
|
|
|
23849
23962
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.microchart.AreaMicroChartPoint.extend}.
|
|
23850
23963
|
*/
|
|
23851
23964
|
// @ts-ignore
|
|
23852
|
-
static extend(
|
|
23965
|
+
static extend<T extends Record<string, unknown>>(
|
|
23853
23966
|
/**
|
|
23854
23967
|
* Name of the class being created
|
|
23855
23968
|
*/
|
|
@@ -23857,7 +23970,8 @@ declare namespace sap {
|
|
|
23857
23970
|
/**
|
|
23858
23971
|
* Object literal with information about the class
|
|
23859
23972
|
*/
|
|
23860
|
-
oClassInfo?:
|
|
23973
|
+
oClassInfo?: T &
|
|
23974
|
+
ThisType<T & sap.suite.ui.commons.MicroAreaChartPoint>,
|
|
23861
23975
|
/**
|
|
23862
23976
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23863
23977
|
* used by this class
|
|
@@ -23877,7 +23991,8 @@ declare namespace sap {
|
|
|
23877
23991
|
*
|
|
23878
23992
|
* To display more complex processes and workflows, use {@link sap.suite.ui.commons.ProcessFlow} instead.
|
|
23879
23993
|
*/
|
|
23880
|
-
class MicroProcessFlow
|
|
23994
|
+
class MicroProcessFlow
|
|
23995
|
+
extends sap.ui.core.Control
|
|
23881
23996
|
implements sap.ui.core.IFormContent {
|
|
23882
23997
|
/**
|
|
23883
23998
|
* Constructor for a new MicroProcessFlow.
|
|
@@ -23908,7 +24023,7 @@ declare namespace sap {
|
|
|
23908
24023
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
23909
24024
|
*/
|
|
23910
24025
|
// @ts-ignore
|
|
23911
|
-
static extend(
|
|
24026
|
+
static extend<T extends Record<string, unknown>>(
|
|
23912
24027
|
/**
|
|
23913
24028
|
* Name of the class being created
|
|
23914
24029
|
*/
|
|
@@ -23916,7 +24031,8 @@ declare namespace sap {
|
|
|
23916
24031
|
/**
|
|
23917
24032
|
* Object literal with information about the class
|
|
23918
24033
|
*/
|
|
23919
|
-
oClassInfo?:
|
|
24034
|
+
oClassInfo?: T &
|
|
24035
|
+
ThisType<T & sap.suite.ui.commons.MicroProcessFlow>,
|
|
23920
24036
|
/**
|
|
23921
24037
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23922
24038
|
* used by this class
|
|
@@ -24123,7 +24239,7 @@ declare namespace sap {
|
|
|
24123
24239
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
24124
24240
|
*/
|
|
24125
24241
|
// @ts-ignore
|
|
24126
|
-
static extend(
|
|
24242
|
+
static extend<T extends Record<string, unknown>>(
|
|
24127
24243
|
/**
|
|
24128
24244
|
* Name of the class being created
|
|
24129
24245
|
*/
|
|
@@ -24131,7 +24247,8 @@ declare namespace sap {
|
|
|
24131
24247
|
/**
|
|
24132
24248
|
* Object literal with information about the class
|
|
24133
24249
|
*/
|
|
24134
|
-
oClassInfo?:
|
|
24250
|
+
oClassInfo?: T &
|
|
24251
|
+
ThisType<T & sap.suite.ui.commons.MicroProcessFlowItem>,
|
|
24135
24252
|
/**
|
|
24136
24253
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24137
24254
|
* used by this class
|
|
@@ -24442,7 +24559,7 @@ declare namespace sap {
|
|
|
24442
24559
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
24443
24560
|
*/
|
|
24444
24561
|
// @ts-ignore
|
|
24445
|
-
static extend(
|
|
24562
|
+
static extend<T extends Record<string, unknown>>(
|
|
24446
24563
|
/**
|
|
24447
24564
|
* Name of the class being created
|
|
24448
24565
|
*/
|
|
@@ -24450,7 +24567,8 @@ declare namespace sap {
|
|
|
24450
24567
|
/**
|
|
24451
24568
|
* Object literal with information about the class
|
|
24452
24569
|
*/
|
|
24453
|
-
oClassInfo?:
|
|
24570
|
+
oClassInfo?: T &
|
|
24571
|
+
ThisType<T & sap.suite.ui.commons.MonitoringContent>,
|
|
24454
24572
|
/**
|
|
24455
24573
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24456
24574
|
* used by this class
|
|
@@ -24648,7 +24766,7 @@ declare namespace sap {
|
|
|
24648
24766
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.InfoTile.extend}.
|
|
24649
24767
|
*/
|
|
24650
24768
|
// @ts-ignore
|
|
24651
|
-
static extend(
|
|
24769
|
+
static extend<T extends Record<string, unknown>>(
|
|
24652
24770
|
/**
|
|
24653
24771
|
* Name of the class being created
|
|
24654
24772
|
*/
|
|
@@ -24656,7 +24774,7 @@ declare namespace sap {
|
|
|
24656
24774
|
/**
|
|
24657
24775
|
* Object literal with information about the class
|
|
24658
24776
|
*/
|
|
24659
|
-
oClassInfo?:
|
|
24777
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.MonitoringTile>,
|
|
24660
24778
|
/**
|
|
24661
24779
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24662
24780
|
* used by this class
|
|
@@ -24761,7 +24879,7 @@ declare namespace sap {
|
|
|
24761
24879
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.NewsContent.extend}.
|
|
24762
24880
|
*/
|
|
24763
24881
|
// @ts-ignore
|
|
24764
|
-
static extend(
|
|
24882
|
+
static extend<T extends Record<string, unknown>>(
|
|
24765
24883
|
/**
|
|
24766
24884
|
* Name of the class being created
|
|
24767
24885
|
*/
|
|
@@ -24769,7 +24887,7 @@ declare namespace sap {
|
|
|
24769
24887
|
/**
|
|
24770
24888
|
* Object literal with information about the class
|
|
24771
24889
|
*/
|
|
24772
|
-
oClassInfo?:
|
|
24890
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.NewsContent>,
|
|
24773
24891
|
/**
|
|
24774
24892
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24775
24893
|
* used by this class
|
|
@@ -25102,7 +25220,7 @@ declare namespace sap {
|
|
|
25102
25220
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
25103
25221
|
*/
|
|
25104
25222
|
// @ts-ignore
|
|
25105
|
-
static extend(
|
|
25223
|
+
static extend<T extends Record<string, unknown>>(
|
|
25106
25224
|
/**
|
|
25107
25225
|
* Name of the class being created
|
|
25108
25226
|
*/
|
|
@@ -25110,7 +25228,7 @@ declare namespace sap {
|
|
|
25110
25228
|
/**
|
|
25111
25229
|
* Object literal with information about the class
|
|
25112
25230
|
*/
|
|
25113
|
-
oClassInfo?:
|
|
25231
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.NoteTaker>,
|
|
25114
25232
|
/**
|
|
25115
25233
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25116
25234
|
* used by this class
|
|
@@ -25758,7 +25876,7 @@ declare namespace sap {
|
|
|
25758
25876
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
25759
25877
|
*/
|
|
25760
25878
|
// @ts-ignore
|
|
25761
|
-
static extend(
|
|
25879
|
+
static extend<T extends Record<string, unknown>>(
|
|
25762
25880
|
/**
|
|
25763
25881
|
* Name of the class being created
|
|
25764
25882
|
*/
|
|
@@ -25766,7 +25884,7 @@ declare namespace sap {
|
|
|
25766
25884
|
/**
|
|
25767
25885
|
* Object literal with information about the class
|
|
25768
25886
|
*/
|
|
25769
|
-
oClassInfo?:
|
|
25887
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.NoteTakerCard>,
|
|
25770
25888
|
/**
|
|
25771
25889
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25772
25890
|
* used by this class
|
|
@@ -26418,7 +26536,7 @@ declare namespace sap {
|
|
|
26418
26536
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
26419
26537
|
*/
|
|
26420
26538
|
// @ts-ignore
|
|
26421
|
-
static extend(
|
|
26539
|
+
static extend<T extends Record<string, unknown>>(
|
|
26422
26540
|
/**
|
|
26423
26541
|
* Name of the class being created
|
|
26424
26542
|
*/
|
|
@@ -26426,7 +26544,7 @@ declare namespace sap {
|
|
|
26426
26544
|
/**
|
|
26427
26545
|
* Object literal with information about the class
|
|
26428
26546
|
*/
|
|
26429
|
-
oClassInfo?:
|
|
26547
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.NoteTakerFeeder>,
|
|
26430
26548
|
/**
|
|
26431
26549
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
26432
26550
|
* used by this class
|
|
@@ -26803,7 +26921,7 @@ declare namespace sap {
|
|
|
26803
26921
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.InfoTile.extend}.
|
|
26804
26922
|
*/
|
|
26805
26923
|
// @ts-ignore
|
|
26806
|
-
static extend(
|
|
26924
|
+
static extend<T extends Record<string, unknown>>(
|
|
26807
26925
|
/**
|
|
26808
26926
|
* Name of the class being created
|
|
26809
26927
|
*/
|
|
@@ -26811,7 +26929,7 @@ declare namespace sap {
|
|
|
26811
26929
|
/**
|
|
26812
26930
|
* Object literal with information about the class
|
|
26813
26931
|
*/
|
|
26814
|
-
oClassInfo?:
|
|
26932
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.NumericTile>,
|
|
26815
26933
|
/**
|
|
26816
26934
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
26817
26935
|
* used by this class
|
|
@@ -26960,7 +27078,7 @@ declare namespace sap {
|
|
|
26960
27078
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
26961
27079
|
*/
|
|
26962
27080
|
// @ts-ignore
|
|
26963
|
-
static extend(
|
|
27081
|
+
static extend<T extends Record<string, unknown>>(
|
|
26964
27082
|
/**
|
|
26965
27083
|
* Name of the class being created
|
|
26966
27084
|
*/
|
|
@@ -26968,7 +27086,7 @@ declare namespace sap {
|
|
|
26968
27086
|
/**
|
|
26969
27087
|
* Object literal with information about the class
|
|
26970
27088
|
*/
|
|
26971
|
-
oClassInfo?:
|
|
27089
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.PictureZoomIn>,
|
|
26972
27090
|
/**
|
|
26973
27091
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
26974
27092
|
* used by this class
|
|
@@ -27290,7 +27408,7 @@ declare namespace sap {
|
|
|
27290
27408
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
27291
27409
|
*/
|
|
27292
27410
|
// @ts-ignore
|
|
27293
|
-
static extend(
|
|
27411
|
+
static extend<T extends Record<string, unknown>>(
|
|
27294
27412
|
/**
|
|
27295
27413
|
* Name of the class being created
|
|
27296
27414
|
*/
|
|
@@ -27298,7 +27416,7 @@ declare namespace sap {
|
|
|
27298
27416
|
/**
|
|
27299
27417
|
* Object literal with information about the class
|
|
27300
27418
|
*/
|
|
27301
|
-
oClassInfo?:
|
|
27419
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ProcessFlow>,
|
|
27302
27420
|
/**
|
|
27303
27421
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
27304
27422
|
* used by this class
|
|
@@ -27814,7 +27932,7 @@ declare namespace sap {
|
|
|
27814
27932
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
27815
27933
|
*/
|
|
27816
27934
|
// @ts-ignore
|
|
27817
|
-
static extend(
|
|
27935
|
+
static extend<T extends Record<string, unknown>>(
|
|
27818
27936
|
/**
|
|
27819
27937
|
* Name of the class being created
|
|
27820
27938
|
*/
|
|
@@ -27822,7 +27940,8 @@ declare namespace sap {
|
|
|
27822
27940
|
/**
|
|
27823
27941
|
* Object literal with information about the class
|
|
27824
27942
|
*/
|
|
27825
|
-
oClassInfo?:
|
|
27943
|
+
oClassInfo?: T &
|
|
27944
|
+
ThisType<T & sap.suite.ui.commons.ProcessFlowConnection>,
|
|
27826
27945
|
/**
|
|
27827
27946
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
27828
27947
|
* used by this class
|
|
@@ -27978,7 +28097,7 @@ declare namespace sap {
|
|
|
27978
28097
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Button.extend}.
|
|
27979
28098
|
*/
|
|
27980
28099
|
// @ts-ignore
|
|
27981
|
-
static extend(
|
|
28100
|
+
static extend<T extends Record<string, unknown>>(
|
|
27982
28101
|
/**
|
|
27983
28102
|
* Name of the class being created
|
|
27984
28103
|
*/
|
|
@@ -27986,7 +28105,8 @@ declare namespace sap {
|
|
|
27986
28105
|
/**
|
|
27987
28106
|
* Object literal with information about the class
|
|
27988
28107
|
*/
|
|
27989
|
-
oClassInfo?:
|
|
28108
|
+
oClassInfo?: T &
|
|
28109
|
+
ThisType<T & sap.suite.ui.commons.ProcessFlowConnectionLabel>,
|
|
27990
28110
|
/**
|
|
27991
28111
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
27992
28112
|
* used by this class
|
|
@@ -28123,7 +28243,7 @@ declare namespace sap {
|
|
|
28123
28243
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
28124
28244
|
*/
|
|
28125
28245
|
// @ts-ignore
|
|
28126
|
-
static extend(
|
|
28246
|
+
static extend<T extends Record<string, unknown>>(
|
|
28127
28247
|
/**
|
|
28128
28248
|
* Name of the class being created
|
|
28129
28249
|
*/
|
|
@@ -28131,7 +28251,8 @@ declare namespace sap {
|
|
|
28131
28251
|
/**
|
|
28132
28252
|
* Object literal with information about the class
|
|
28133
28253
|
*/
|
|
28134
|
-
oClassInfo?:
|
|
28254
|
+
oClassInfo?: T &
|
|
28255
|
+
ThisType<T & sap.suite.ui.commons.ProcessFlowLaneHeader>,
|
|
28135
28256
|
/**
|
|
28136
28257
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28137
28258
|
* used by this class
|
|
@@ -28456,7 +28577,7 @@ declare namespace sap {
|
|
|
28456
28577
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
28457
28578
|
*/
|
|
28458
28579
|
// @ts-ignore
|
|
28459
|
-
static extend(
|
|
28580
|
+
static extend<T extends Record<string, unknown>>(
|
|
28460
28581
|
/**
|
|
28461
28582
|
* Name of the class being created
|
|
28462
28583
|
*/
|
|
@@ -28464,7 +28585,7 @@ declare namespace sap {
|
|
|
28464
28585
|
/**
|
|
28465
28586
|
* Object literal with information about the class
|
|
28466
28587
|
*/
|
|
28467
|
-
oClassInfo?:
|
|
28588
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ProcessFlowNode>,
|
|
28468
28589
|
/**
|
|
28469
28590
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28470
28591
|
* used by this class
|
|
@@ -29011,7 +29132,7 @@ declare namespace sap {
|
|
|
29011
29132
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
29012
29133
|
*/
|
|
29013
29134
|
// @ts-ignore
|
|
29014
|
-
static extend(
|
|
29135
|
+
static extend<T extends Record<string, unknown>>(
|
|
29015
29136
|
/**
|
|
29016
29137
|
* Name of the class being created
|
|
29017
29138
|
*/
|
|
@@ -29019,7 +29140,8 @@ declare namespace sap {
|
|
|
29019
29140
|
/**
|
|
29020
29141
|
* Object literal with information about the class
|
|
29021
29142
|
*/
|
|
29022
|
-
oClassInfo?:
|
|
29143
|
+
oClassInfo?: T &
|
|
29144
|
+
ThisType<T & sap.suite.ui.commons.RepeaterViewConfiguration>,
|
|
29023
29145
|
/**
|
|
29024
29146
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
29025
29147
|
* used by this class
|
|
@@ -29333,7 +29455,7 @@ declare namespace sap {
|
|
|
29333
29455
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
29334
29456
|
*/
|
|
29335
29457
|
// @ts-ignore
|
|
29336
|
-
static extend(
|
|
29458
|
+
static extend<T extends Record<string, unknown>>(
|
|
29337
29459
|
/**
|
|
29338
29460
|
* Name of the class being created
|
|
29339
29461
|
*/
|
|
@@ -29341,7 +29463,7 @@ declare namespace sap {
|
|
|
29341
29463
|
/**
|
|
29342
29464
|
* Object literal with information about the class
|
|
29343
29465
|
*/
|
|
29344
|
-
oClassInfo?:
|
|
29466
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.SplitButton>,
|
|
29345
29467
|
/**
|
|
29346
29468
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
29347
29469
|
* used by this class
|
|
@@ -29738,7 +29860,7 @@ declare namespace sap {
|
|
|
29738
29860
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
29739
29861
|
*/
|
|
29740
29862
|
// @ts-ignore
|
|
29741
|
-
static extend(
|
|
29863
|
+
static extend<T extends Record<string, unknown>>(
|
|
29742
29864
|
/**
|
|
29743
29865
|
* Name of the class being created
|
|
29744
29866
|
*/
|
|
@@ -29746,7 +29868,7 @@ declare namespace sap {
|
|
|
29746
29868
|
/**
|
|
29747
29869
|
* Object literal with information about the class
|
|
29748
29870
|
*/
|
|
29749
|
-
oClassInfo?:
|
|
29871
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.TargetFilter>,
|
|
29750
29872
|
/**
|
|
29751
29873
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
29752
29874
|
* used by this class
|
|
@@ -29984,7 +30106,7 @@ declare namespace sap {
|
|
|
29984
30106
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
29985
30107
|
*/
|
|
29986
30108
|
// @ts-ignore
|
|
29987
|
-
static extend(
|
|
30109
|
+
static extend<T extends Record<string, unknown>>(
|
|
29988
30110
|
/**
|
|
29989
30111
|
* Name of the class being created
|
|
29990
30112
|
*/
|
|
@@ -29992,7 +30114,8 @@ declare namespace sap {
|
|
|
29992
30114
|
/**
|
|
29993
30115
|
* Object literal with information about the class
|
|
29994
30116
|
*/
|
|
29995
|
-
oClassInfo?:
|
|
30117
|
+
oClassInfo?: T &
|
|
30118
|
+
ThisType<T & sap.suite.ui.commons.TargetFilterColumn>,
|
|
29996
30119
|
/**
|
|
29997
30120
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
29998
30121
|
* used by this class
|
|
@@ -30126,7 +30249,7 @@ declare namespace sap {
|
|
|
30126
30249
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
30127
30250
|
*/
|
|
30128
30251
|
// @ts-ignore
|
|
30129
|
-
static extend(
|
|
30252
|
+
static extend<T extends Record<string, unknown>>(
|
|
30130
30253
|
/**
|
|
30131
30254
|
* Name of the class being created
|
|
30132
30255
|
*/
|
|
@@ -30134,7 +30257,8 @@ declare namespace sap {
|
|
|
30134
30257
|
/**
|
|
30135
30258
|
* Object literal with information about the class
|
|
30136
30259
|
*/
|
|
30137
|
-
oClassInfo?:
|
|
30260
|
+
oClassInfo?: T &
|
|
30261
|
+
ThisType<T & sap.suite.ui.commons.TargetFilterMeasureColumn>,
|
|
30138
30262
|
/**
|
|
30139
30263
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
30140
30264
|
* used by this class
|
|
@@ -30232,7 +30356,7 @@ declare namespace sap {
|
|
|
30232
30356
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
30233
30357
|
*/
|
|
30234
30358
|
// @ts-ignore
|
|
30235
|
-
static extend(
|
|
30359
|
+
static extend<T extends Record<string, unknown>>(
|
|
30236
30360
|
/**
|
|
30237
30361
|
* Name of the class being created
|
|
30238
30362
|
*/
|
|
@@ -30240,7 +30364,7 @@ declare namespace sap {
|
|
|
30240
30364
|
/**
|
|
30241
30365
|
* Object literal with information about the class
|
|
30242
30366
|
*/
|
|
30243
|
-
oClassInfo?:
|
|
30367
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ThingCollection>,
|
|
30244
30368
|
/**
|
|
30245
30369
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
30246
30370
|
* used by this class
|
|
@@ -30428,7 +30552,7 @@ declare namespace sap {
|
|
|
30428
30552
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.ux3.ThingInspector.extend}.
|
|
30429
30553
|
*/
|
|
30430
30554
|
// @ts-ignore
|
|
30431
|
-
static extend(
|
|
30555
|
+
static extend<T extends Record<string, unknown>>(
|
|
30432
30556
|
/**
|
|
30433
30557
|
* Name of the class being created
|
|
30434
30558
|
*/
|
|
@@ -30436,7 +30560,8 @@ declare namespace sap {
|
|
|
30436
30560
|
/**
|
|
30437
30561
|
* Object literal with information about the class
|
|
30438
30562
|
*/
|
|
30439
|
-
oClassInfo?:
|
|
30563
|
+
oClassInfo?: T &
|
|
30564
|
+
ThisType<T & sap.suite.ui.commons.ThreePanelThingInspector>,
|
|
30440
30565
|
/**
|
|
30441
30566
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
30442
30567
|
* used by this class
|
|
@@ -30608,7 +30733,7 @@ declare namespace sap {
|
|
|
30608
30733
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.ux3.ThingViewer.extend}.
|
|
30609
30734
|
*/
|
|
30610
30735
|
// @ts-ignore
|
|
30611
|
-
static extend(
|
|
30736
|
+
static extend<T extends Record<string, unknown>>(
|
|
30612
30737
|
/**
|
|
30613
30738
|
* Name of the class being created
|
|
30614
30739
|
*/
|
|
@@ -30616,7 +30741,8 @@ declare namespace sap {
|
|
|
30616
30741
|
/**
|
|
30617
30742
|
* Object literal with information about the class
|
|
30618
30743
|
*/
|
|
30619
|
-
oClassInfo?:
|
|
30744
|
+
oClassInfo?: T &
|
|
30745
|
+
ThisType<T & sap.suite.ui.commons.ThreePanelThingViewer>,
|
|
30620
30746
|
/**
|
|
30621
30747
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
30622
30748
|
* used by this class
|
|
@@ -30766,7 +30892,7 @@ declare namespace sap {
|
|
|
30766
30892
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.TileContent.extend}.
|
|
30767
30893
|
*/
|
|
30768
30894
|
// @ts-ignore
|
|
30769
|
-
static extend(
|
|
30895
|
+
static extend<T extends Record<string, unknown>>(
|
|
30770
30896
|
/**
|
|
30771
30897
|
* Name of the class being created
|
|
30772
30898
|
*/
|
|
@@ -30774,7 +30900,7 @@ declare namespace sap {
|
|
|
30774
30900
|
/**
|
|
30775
30901
|
* Object literal with information about the class
|
|
30776
30902
|
*/
|
|
30777
|
-
oClassInfo?:
|
|
30903
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.TileContent>,
|
|
30778
30904
|
/**
|
|
30779
30905
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
30780
30906
|
* used by this class
|
|
@@ -30822,7 +30948,7 @@ declare namespace sap {
|
|
|
30822
30948
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
30823
30949
|
*/
|
|
30824
30950
|
// @ts-ignore
|
|
30825
|
-
static extend(
|
|
30951
|
+
static extend<T extends Record<string, unknown>>(
|
|
30826
30952
|
/**
|
|
30827
30953
|
* Name of the class being created
|
|
30828
30954
|
*/
|
|
@@ -30830,7 +30956,7 @@ declare namespace sap {
|
|
|
30830
30956
|
/**
|
|
30831
30957
|
* Object literal with information about the class
|
|
30832
30958
|
*/
|
|
30833
|
-
oClassInfo?:
|
|
30959
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.TileContent2X2>,
|
|
30834
30960
|
/**
|
|
30835
30961
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
30836
30962
|
* used by this class
|
|
@@ -31401,7 +31527,7 @@ declare namespace sap {
|
|
|
31401
31527
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
31402
31528
|
*/
|
|
31403
31529
|
// @ts-ignore
|
|
31404
|
-
static extend(
|
|
31530
|
+
static extend<T extends Record<string, unknown>>(
|
|
31405
31531
|
/**
|
|
31406
31532
|
* Name of the class being created
|
|
31407
31533
|
*/
|
|
@@ -31409,7 +31535,7 @@ declare namespace sap {
|
|
|
31409
31535
|
/**
|
|
31410
31536
|
* Object literal with information about the class
|
|
31411
31537
|
*/
|
|
31412
|
-
oClassInfo?:
|
|
31538
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.Timeline>,
|
|
31413
31539
|
/**
|
|
31414
31540
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
31415
31541
|
* used by this class
|
|
@@ -33013,7 +33139,7 @@ declare namespace sap {
|
|
|
33013
33139
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
33014
33140
|
*/
|
|
33015
33141
|
// @ts-ignore
|
|
33016
|
-
static extend(
|
|
33142
|
+
static extend<T extends Record<string, unknown>>(
|
|
33017
33143
|
/**
|
|
33018
33144
|
* Name of the class being created
|
|
33019
33145
|
*/
|
|
@@ -33021,7 +33147,8 @@ declare namespace sap {
|
|
|
33021
33147
|
/**
|
|
33022
33148
|
* Object literal with information about the class
|
|
33023
33149
|
*/
|
|
33024
|
-
oClassInfo?:
|
|
33150
|
+
oClassInfo?: T &
|
|
33151
|
+
ThisType<T & sap.suite.ui.commons.TimelineFilterListItem>,
|
|
33025
33152
|
/**
|
|
33026
33153
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
33027
33154
|
* used by this class
|
|
@@ -33395,7 +33522,7 @@ declare namespace sap {
|
|
|
33395
33522
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
33396
33523
|
*/
|
|
33397
33524
|
// @ts-ignore
|
|
33398
|
-
static extend(
|
|
33525
|
+
static extend<T extends Record<string, unknown>>(
|
|
33399
33526
|
/**
|
|
33400
33527
|
* Name of the class being created
|
|
33401
33528
|
*/
|
|
@@ -33403,7 +33530,7 @@ declare namespace sap {
|
|
|
33403
33530
|
/**
|
|
33404
33531
|
* Object literal with information about the class
|
|
33405
33532
|
*/
|
|
33406
|
-
oClassInfo?:
|
|
33533
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.TimelineItem>,
|
|
33407
33534
|
/**
|
|
33408
33535
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
33409
33536
|
* used by this class
|
|
@@ -34122,7 +34249,7 @@ declare namespace sap {
|
|
|
34122
34249
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.delegate.ItemNavigation.extend}.
|
|
34123
34250
|
*/
|
|
34124
34251
|
// @ts-ignore
|
|
34125
|
-
static extend(
|
|
34252
|
+
static extend<T extends Record<string, unknown>>(
|
|
34126
34253
|
/**
|
|
34127
34254
|
* Name of the class being created
|
|
34128
34255
|
*/
|
|
@@ -34130,7 +34257,8 @@ declare namespace sap {
|
|
|
34130
34257
|
/**
|
|
34131
34258
|
* Object literal with information about the class
|
|
34132
34259
|
*/
|
|
34133
|
-
oClassInfo?:
|
|
34260
|
+
oClassInfo?: T &
|
|
34261
|
+
ThisType<T & sap.suite.ui.commons.TimelineNavigator>,
|
|
34134
34262
|
/**
|
|
34135
34263
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
34136
34264
|
* used by this class
|
|
@@ -34205,7 +34333,7 @@ declare namespace sap {
|
|
|
34205
34333
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
34206
34334
|
*/
|
|
34207
34335
|
// @ts-ignore
|
|
34208
|
-
static extend(
|
|
34336
|
+
static extend<T extends Record<string, unknown>>(
|
|
34209
34337
|
/**
|
|
34210
34338
|
* Name of the class being created
|
|
34211
34339
|
*/
|
|
@@ -34213,7 +34341,8 @@ declare namespace sap {
|
|
|
34213
34341
|
/**
|
|
34214
34342
|
* Object literal with information about the class
|
|
34215
34343
|
*/
|
|
34216
|
-
oClassInfo?:
|
|
34344
|
+
oClassInfo?: T &
|
|
34345
|
+
ThisType<T & sap.suite.ui.commons.UnifiedThingGroup>,
|
|
34217
34346
|
/**
|
|
34218
34347
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
34219
34348
|
* used by this class
|
|
@@ -34670,7 +34799,7 @@ declare namespace sap {
|
|
|
34670
34799
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
34671
34800
|
*/
|
|
34672
34801
|
// @ts-ignore
|
|
34673
|
-
static extend(
|
|
34802
|
+
static extend<T extends Record<string, unknown>>(
|
|
34674
34803
|
/**
|
|
34675
34804
|
* Name of the class being created
|
|
34676
34805
|
*/
|
|
@@ -34678,7 +34807,8 @@ declare namespace sap {
|
|
|
34678
34807
|
/**
|
|
34679
34808
|
* Object literal with information about the class
|
|
34680
34809
|
*/
|
|
34681
|
-
oClassInfo?:
|
|
34810
|
+
oClassInfo?: T &
|
|
34811
|
+
ThisType<T & sap.suite.ui.commons.UnifiedThingInspector>,
|
|
34682
34812
|
/**
|
|
34683
34813
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
34684
34814
|
* used by this class
|
|
@@ -35504,7 +35634,7 @@ declare namespace sap {
|
|
|
35504
35634
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.ux3.NavigationBar.extend}.
|
|
35505
35635
|
*/
|
|
35506
35636
|
// @ts-ignore
|
|
35507
|
-
static extend(
|
|
35637
|
+
static extend<T extends Record<string, unknown>>(
|
|
35508
35638
|
/**
|
|
35509
35639
|
* Name of the class being created
|
|
35510
35640
|
*/
|
|
@@ -35512,7 +35642,8 @@ declare namespace sap {
|
|
|
35512
35642
|
/**
|
|
35513
35643
|
* Object literal with information about the class
|
|
35514
35644
|
*/
|
|
35515
|
-
oClassInfo?:
|
|
35645
|
+
oClassInfo?: T &
|
|
35646
|
+
ThisType<T & sap.suite.ui.commons.VerticalNavigationBar>,
|
|
35516
35647
|
/**
|
|
35517
35648
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
35518
35649
|
* used by this class
|
|
@@ -35647,7 +35778,7 @@ declare namespace sap {
|
|
|
35647
35778
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.RowRepeater.extend}.
|
|
35648
35779
|
*/
|
|
35649
35780
|
// @ts-ignore
|
|
35650
|
-
static extend(
|
|
35781
|
+
static extend<T extends Record<string, unknown>>(
|
|
35651
35782
|
/**
|
|
35652
35783
|
* Name of the class being created
|
|
35653
35784
|
*/
|
|
@@ -35655,7 +35786,7 @@ declare namespace sap {
|
|
|
35655
35786
|
/**
|
|
35656
35787
|
* Object literal with information about the class
|
|
35657
35788
|
*/
|
|
35658
|
-
oClassInfo?:
|
|
35789
|
+
oClassInfo?: T & ThisType<T & sap.suite.ui.commons.ViewRepeater>,
|
|
35659
35790
|
/**
|
|
35660
35791
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
35661
35792
|
* used by this class
|
|
@@ -36015,7 +36146,7 @@ declare namespace sap {
|
|
|
36015
36146
|
/**
|
|
36016
36147
|
* Displays delta between the Actual and Threshold values.
|
|
36017
36148
|
*/
|
|
36018
|
-
Delta
|
|
36149
|
+
Delta,
|
|
36019
36150
|
}
|
|
36020
36151
|
/**
|
|
36021
36152
|
* Comparison operators supported by the calculation builder.
|
|
@@ -36044,7 +36175,7 @@ declare namespace sap {
|
|
|
36044
36175
|
/**
|
|
36045
36176
|
* Greater than or equal to.
|
|
36046
36177
|
*/
|
|
36047
|
-
">="
|
|
36178
|
+
">=",
|
|
36048
36179
|
}
|
|
36049
36180
|
/**
|
|
36050
36181
|
* Functions supported by the calculation builder.
|
|
@@ -36094,7 +36225,7 @@ declare namespace sap {
|
|
|
36094
36225
|
/**
|
|
36095
36226
|
* SUMRT.
|
|
36096
36227
|
*/
|
|
36097
|
-
SUMRT
|
|
36228
|
+
SUMRT,
|
|
36098
36229
|
}
|
|
36099
36230
|
/**
|
|
36100
36231
|
* The types of items (operands) that can be used in a calculation builder expression.
|
|
@@ -36134,7 +36265,7 @@ declare namespace sap {
|
|
|
36134
36265
|
/**
|
|
36135
36266
|
* Variable.
|
|
36136
36267
|
*/
|
|
36137
|
-
Variable
|
|
36268
|
+
Variable,
|
|
36138
36269
|
}
|
|
36139
36270
|
/**
|
|
36140
36271
|
* Layout of the calculation builder.
|
|
@@ -36155,7 +36286,7 @@ declare namespace sap {
|
|
|
36155
36286
|
/**
|
|
36156
36287
|
* Both the visual and text editors are displayed, but the text editor is read-only.
|
|
36157
36288
|
*/
|
|
36158
|
-
VisualTextualReadOnly
|
|
36289
|
+
VisualTextualReadOnly,
|
|
36159
36290
|
}
|
|
36160
36291
|
/**
|
|
36161
36292
|
* Logical operators supported by the calculation builder.
|
|
@@ -36176,7 +36307,7 @@ declare namespace sap {
|
|
|
36176
36307
|
/**
|
|
36177
36308
|
* Exclusive disjunction.
|
|
36178
36309
|
*/
|
|
36179
|
-
XOR
|
|
36310
|
+
XOR,
|
|
36180
36311
|
}
|
|
36181
36312
|
/**
|
|
36182
36313
|
* Arithmetic operators supported by the calculation builder.
|
|
@@ -36209,7 +36340,7 @@ declare namespace sap {
|
|
|
36209
36340
|
/**
|
|
36210
36341
|
* Division.
|
|
36211
36342
|
*/
|
|
36212
|
-
"/"
|
|
36343
|
+
"/",
|
|
36213
36344
|
}
|
|
36214
36345
|
/**
|
|
36215
36346
|
* Types of expression validation that define when the expression entered into the {@link sap.suite.ui.commons.CalculationBuilder}
|
|
@@ -36253,7 +36384,7 @@ declare namespace sap {
|
|
|
36253
36384
|
/**
|
|
36254
36385
|
* Medium light background color.
|
|
36255
36386
|
*/
|
|
36256
|
-
MediumLight
|
|
36387
|
+
MediumLight,
|
|
36257
36388
|
}
|
|
36258
36389
|
/**
|
|
36259
36390
|
* @deprecated (since 1.34) - Deprecated. sap.suite.ui.microchart.ComparisonMicroChartViewType should be
|
|
@@ -36269,7 +36400,7 @@ declare namespace sap {
|
|
|
36269
36400
|
/**
|
|
36270
36401
|
* Titles and values are displayed in the same line with the bars.
|
|
36271
36402
|
*/
|
|
36272
|
-
Wide
|
|
36403
|
+
Wide,
|
|
36273
36404
|
}
|
|
36274
36405
|
/**
|
|
36275
36406
|
* @deprecated (since 1.34) - Deprecated. Moved to sapui5.runtime.
|
|
@@ -36288,7 +36419,7 @@ declare namespace sap {
|
|
|
36288
36419
|
/**
|
|
36289
36420
|
* The actual value is more than the target value.
|
|
36290
36421
|
*/
|
|
36291
|
-
Up
|
|
36422
|
+
Up,
|
|
36292
36423
|
}
|
|
36293
36424
|
/**
|
|
36294
36425
|
* @deprecated (since 1.32) - Deprecated. Object page should be used instead.
|
|
@@ -36327,7 +36458,7 @@ declare namespace sap {
|
|
|
36327
36458
|
/**
|
|
36328
36459
|
* Extra extra large height
|
|
36329
36460
|
*/
|
|
36330
|
-
XXL
|
|
36461
|
+
XXL,
|
|
36331
36462
|
}
|
|
36332
36463
|
/**
|
|
36333
36464
|
* @deprecated (since 1.34) - Deprecated. Moved to openUI5.
|
|
@@ -36350,7 +36481,7 @@ declare namespace sap {
|
|
|
36350
36481
|
/**
|
|
36351
36482
|
* The 2/3 frame type.
|
|
36352
36483
|
*/
|
|
36353
|
-
TwoThirds
|
|
36484
|
+
TwoThirds,
|
|
36354
36485
|
}
|
|
36355
36486
|
/**
|
|
36356
36487
|
* @deprecated (since 1.48) - This control is deprecated since 1.48. Please use the equivalent sap.ui.core.Orientation.
|
|
@@ -36365,7 +36496,7 @@ declare namespace sap {
|
|
|
36365
36496
|
/**
|
|
36366
36497
|
* The vertical orientation of the control.
|
|
36367
36498
|
*/
|
|
36368
|
-
Vertical
|
|
36499
|
+
Vertical,
|
|
36369
36500
|
}
|
|
36370
36501
|
/**
|
|
36371
36502
|
* Action buttons for the {@link sap.suite.ui.commons.imageeditor.ImageEditorContainer}.
|
|
@@ -36382,7 +36513,7 @@ declare namespace sap {
|
|
|
36382
36513
|
/**
|
|
36383
36514
|
* Transform button.
|
|
36384
36515
|
*/
|
|
36385
|
-
Transform
|
|
36516
|
+
Transform,
|
|
36386
36517
|
}
|
|
36387
36518
|
/**
|
|
36388
36519
|
* Mode types for {@link sap.suite.ui.commons.imageeditor.ImageEditorContainer}.
|
|
@@ -36399,7 +36530,7 @@ declare namespace sap {
|
|
|
36399
36530
|
/**
|
|
36400
36531
|
* Mode with resize, rotate, and flip options.
|
|
36401
36532
|
*/
|
|
36402
|
-
Transform
|
|
36533
|
+
Transform,
|
|
36403
36534
|
}
|
|
36404
36535
|
/**
|
|
36405
36536
|
* Mode types for {@link sap.suite.ui.commons.imageeditor.ImageEditor}.
|
|
@@ -36425,7 +36556,7 @@ declare namespace sap {
|
|
|
36425
36556
|
/**
|
|
36426
36557
|
* Image editor mode with resize handlers.
|
|
36427
36558
|
*/
|
|
36428
|
-
Resize
|
|
36559
|
+
Resize,
|
|
36429
36560
|
}
|
|
36430
36561
|
/**
|
|
36431
36562
|
* Image file format.
|
|
@@ -36438,7 +36569,7 @@ declare namespace sap {
|
|
|
36438
36569
|
/**
|
|
36439
36570
|
* PNG file format.
|
|
36440
36571
|
*/
|
|
36441
|
-
Png
|
|
36572
|
+
Png,
|
|
36442
36573
|
}
|
|
36443
36574
|
/**
|
|
36444
36575
|
* @deprecated (since 1.34) - Deprecated. sap.m.InfoTileSize should be used.
|
|
@@ -36466,7 +36597,7 @@ declare namespace sap {
|
|
|
36466
36597
|
/**
|
|
36467
36598
|
* Extra small size.
|
|
36468
36599
|
*/
|
|
36469
|
-
XS
|
|
36600
|
+
XS,
|
|
36470
36601
|
}
|
|
36471
36602
|
/**
|
|
36472
36603
|
* @deprecated (since 1.34) - Deprecated. sap.m.InfoTileTextColor should be used.
|
|
@@ -36485,7 +36616,7 @@ declare namespace sap {
|
|
|
36485
36616
|
/**
|
|
36486
36617
|
* Positive InfoTile text color.
|
|
36487
36618
|
*/
|
|
36488
|
-
Positive
|
|
36619
|
+
Positive,
|
|
36489
36620
|
}
|
|
36490
36621
|
/**
|
|
36491
36622
|
* @deprecated (since 1.34) - Deprecated. sap.m.InfoTileValueColor should be used.
|
|
@@ -36508,7 +36639,7 @@ declare namespace sap {
|
|
|
36508
36639
|
/**
|
|
36509
36640
|
* Neutral InfoTile value color.
|
|
36510
36641
|
*/
|
|
36511
|
-
Neutral
|
|
36642
|
+
Neutral,
|
|
36512
36643
|
}
|
|
36513
36644
|
/**
|
|
36514
36645
|
* @deprecated (since 1.34) - Deprecated. sap.m.LoadState should be used.
|
|
@@ -36531,7 +36662,7 @@ declare namespace sap {
|
|
|
36531
36662
|
/**
|
|
36532
36663
|
* LoadableView is loading the control.
|
|
36533
36664
|
*/
|
|
36534
|
-
Loading
|
|
36665
|
+
Loading,
|
|
36535
36666
|
}
|
|
36536
36667
|
/**
|
|
36537
36668
|
* @deprecated (since 1.34) - Deprecated. sap.suite.ui.microchart.AreaMicroChartViewType should be used.
|
|
@@ -36546,7 +36677,7 @@ declare namespace sap {
|
|
|
36546
36677
|
/**
|
|
36547
36678
|
* The view with labels on the left and right.
|
|
36548
36679
|
*/
|
|
36549
|
-
Wide
|
|
36680
|
+
Wide,
|
|
36550
36681
|
}
|
|
36551
36682
|
/**
|
|
36552
36683
|
* Options that define how the micro process flow should be rendered inside its parent container.
|
|
@@ -36578,7 +36709,7 @@ declare namespace sap {
|
|
|
36578
36709
|
/**
|
|
36579
36710
|
* The micro process flow nodes are wrapped inside the parent container.
|
|
36580
36711
|
*/
|
|
36581
|
-
Wrap
|
|
36712
|
+
Wrap,
|
|
36582
36713
|
}
|
|
36583
36714
|
/**
|
|
36584
36715
|
* Describes the state of a connection label.
|
|
@@ -36599,7 +36730,7 @@ declare namespace sap {
|
|
|
36599
36730
|
/**
|
|
36600
36731
|
* Positive connection label.
|
|
36601
36732
|
*/
|
|
36602
|
-
Positive
|
|
36733
|
+
Positive,
|
|
36603
36734
|
}
|
|
36604
36735
|
/**
|
|
36605
36736
|
* Describes the state of a connection.
|
|
@@ -36620,7 +36751,7 @@ declare namespace sap {
|
|
|
36620
36751
|
/**
|
|
36621
36752
|
* Selected connection.
|
|
36622
36753
|
*/
|
|
36623
|
-
Selected
|
|
36754
|
+
Selected,
|
|
36624
36755
|
}
|
|
36625
36756
|
/**
|
|
36626
36757
|
* Describes the type of a connection.
|
|
@@ -36633,7 +36764,7 @@ declare namespace sap {
|
|
|
36633
36764
|
/**
|
|
36634
36765
|
* Planned connection.
|
|
36635
36766
|
*/
|
|
36636
|
-
Planned
|
|
36767
|
+
Planned,
|
|
36637
36768
|
}
|
|
36638
36769
|
/**
|
|
36639
36770
|
* The ProcessFlow calculates the ProcessFlowDisplayState based on the 'focused' and 'highlighted' properties
|
|
@@ -36679,7 +36810,7 @@ declare namespace sap {
|
|
|
36679
36810
|
/**
|
|
36680
36811
|
* The control is in the combination of selected, highlighted and focused display state
|
|
36681
36812
|
*/
|
|
36682
|
-
SelectedHighlightedFocused
|
|
36813
|
+
SelectedHighlightedFocused,
|
|
36683
36814
|
}
|
|
36684
36815
|
/**
|
|
36685
36816
|
* This type is used in the 'state' property of the ProcessFlowLaneHeader. For example, app developers can
|
|
@@ -36697,7 +36828,7 @@ declare namespace sap {
|
|
|
36697
36828
|
/**
|
|
36698
36829
|
* In the 'state' array, the total amount of values needs to be 100%.
|
|
36699
36830
|
*/
|
|
36700
|
-
value
|
|
36831
|
+
value,
|
|
36701
36832
|
}
|
|
36702
36833
|
/**
|
|
36703
36834
|
* Describes the state connected to the content it is representing in the Process Flow Node. The state is
|
|
@@ -36730,7 +36861,7 @@ declare namespace sap {
|
|
|
36730
36861
|
/**
|
|
36731
36862
|
* Positive status for a created document: the document is done, finished, solved.
|
|
36732
36863
|
*/
|
|
36733
|
-
Positive
|
|
36864
|
+
Positive,
|
|
36734
36865
|
}
|
|
36735
36866
|
/**
|
|
36736
36867
|
* Describes the type of a node. The type value could be single or aggregated. With this type, the application
|
|
@@ -36745,7 +36876,7 @@ declare namespace sap {
|
|
|
36745
36876
|
/**
|
|
36746
36877
|
* Single node - one node is illustrated in a column.
|
|
36747
36878
|
*/
|
|
36748
|
-
Single
|
|
36879
|
+
Single,
|
|
36749
36880
|
}
|
|
36750
36881
|
/**
|
|
36751
36882
|
* The zoom level defines level of details for the node and how much space the process flow requires.
|
|
@@ -36766,7 +36897,7 @@ declare namespace sap {
|
|
|
36766
36897
|
/**
|
|
36767
36898
|
* The full detail view of the node but with smaller font size.
|
|
36768
36899
|
*/
|
|
36769
|
-
Two
|
|
36900
|
+
Two,
|
|
36770
36901
|
}
|
|
36771
36902
|
/**
|
|
36772
36903
|
* @deprecated (since 1.48) - This Enumeration is deprecated as it is not used anywhere.
|
|
@@ -36785,7 +36916,7 @@ declare namespace sap {
|
|
|
36785
36916
|
/**
|
|
36786
36917
|
* Semantic
|
|
36787
36918
|
*/
|
|
36788
|
-
Semantic
|
|
36919
|
+
Semantic,
|
|
36789
36920
|
}
|
|
36790
36921
|
/**
|
|
36791
36922
|
* @deprecated (since 1.32) - Deprecated. Object page should be used instead.
|
|
@@ -36800,7 +36931,7 @@ declare namespace sap {
|
|
|
36800
36931
|
/**
|
|
36801
36932
|
* In this design there is no indentation between header and content of the group.
|
|
36802
36933
|
*/
|
|
36803
|
-
ZeroIndent
|
|
36934
|
+
ZeroIndent,
|
|
36804
36935
|
}
|
|
36805
36936
|
/**
|
|
36806
36937
|
* The alignment of timeline posts relative to the timeline axis.
|
|
@@ -36825,7 +36956,7 @@ declare namespace sap {
|
|
|
36825
36956
|
* Entries are displayed above the timeline axis.
|
|
36826
36957
|
* In a vertical timeline, entries are displayed to the left of the timeline axis. Synonym for Left.
|
|
36827
36958
|
*/
|
|
36828
|
-
Top
|
|
36959
|
+
Top,
|
|
36829
36960
|
}
|
|
36830
36961
|
/**
|
|
36831
36962
|
* Defines the orientation of the timeline axis.
|
|
@@ -36838,7 +36969,7 @@ declare namespace sap {
|
|
|
36838
36969
|
/**
|
|
36839
36970
|
* Vertical timeline.
|
|
36840
36971
|
*/
|
|
36841
|
-
Vertical
|
|
36972
|
+
Vertical,
|
|
36842
36973
|
}
|
|
36843
36974
|
/**
|
|
36844
36975
|
* Filter type for the timeline.
|
|
@@ -36856,7 +36987,7 @@ declare namespace sap {
|
|
|
36856
36987
|
/**
|
|
36857
36988
|
* Time range filter, defined by the start date (`from`) and end date (`to`) of the time range.
|
|
36858
36989
|
*/
|
|
36859
|
-
Time
|
|
36990
|
+
Time,
|
|
36860
36991
|
}
|
|
36861
36992
|
/**
|
|
36862
36993
|
* Type of grouping for timeline entries.
|
|
@@ -36885,7 +37016,7 @@ declare namespace sap {
|
|
|
36885
37016
|
/**
|
|
36886
37017
|
* Data is grouped by year.
|
|
36887
37018
|
*/
|
|
36888
|
-
Year
|
|
37019
|
+
Year,
|
|
36889
37020
|
}
|
|
36890
37021
|
/**
|
|
36891
37022
|
* @deprecated (since 1.54.0) - Not Fiori.
|
|
@@ -36904,7 +37035,7 @@ declare namespace sap {
|
|
|
36904
37035
|
/**
|
|
36905
37036
|
* Timeline does not fade out.
|
|
36906
37037
|
*/
|
|
36907
|
-
None
|
|
37038
|
+
None,
|
|
36908
37039
|
}
|
|
36909
37040
|
/**
|
|
36910
37041
|
* @deprecated (since 1.32) - Deprecated. Numeric content or any other standard Fiori control should be
|
|
@@ -36928,7 +37059,7 @@ declare namespace sap {
|
|
|
36928
37059
|
/**
|
|
36929
37060
|
* Positive value.
|
|
36930
37061
|
*/
|
|
36931
|
-
Neutral
|
|
37062
|
+
Neutral,
|
|
36932
37063
|
}
|
|
36933
37064
|
}
|
|
36934
37065
|
}
|