@sapui5/types 1.120.11 → 1.120.13
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/LICENSE.txt +13 -10
- package/README.md +1 -1
- package/package.json +1 -1
- package/types/sap.chart.d.ts +58 -6
- package/types/sap.esh.search.ui.d.ts +16 -2
- package/types/sap.f.d.ts +372 -54
- package/types/sap.fe.core.d.ts +11 -3
- package/types/sap.fe.macros.d.ts +96 -12
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.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 +1001 -139
- package/types/sap.insights.d.ts +4 -2
- package/types/sap.m.d.ts +3123 -276
- package/types/sap.makit.d.ts +115 -14
- package/types/sap.me.d.ts +84 -7
- package/types/sap.ndc.d.ts +22 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.sac.df.d.ts +294 -44
- package/types/sap.suite.ui.commons.d.ts +1148 -118
- package/types/sap.suite.ui.generic.template.d.ts +10 -2
- package/types/sap.suite.ui.microchart.d.ts +184 -28
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.comp.d.ts +884 -50
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +19 -4
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.vbm.d.ts +6427 -3308
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uiext.inbox.d.ts +124 -13
- package/types/sap.ushell.d.ts +147 -12
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +118 -18
- package/types/sap.viz.d.ts +2619 -130
- package/types/sap.zen.commons.d.ts +104 -23
- package/types/sap.zen.crosstab.d.ts +96 -16
- package/types/sap.zen.dsh.d.ts +255 -149
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.9
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/AppComponent" {
|
|
4
4
|
import {
|
|
@@ -6,6 +6,8 @@ declare module "sap/fe/core/AppComponent" {
|
|
|
6
6
|
$UIComponentSettings,
|
|
7
7
|
} from "sap/ui/core/UIComponent";
|
|
8
8
|
|
|
9
|
+
import { IAsyncContentCreation } from "sap/ui/core/library";
|
|
10
|
+
|
|
9
11
|
/**
|
|
10
12
|
* Main class for components used for an application in SAP Fiori elements.
|
|
11
13
|
* Application developers using the templates and building blocks provided by SAP Fiori elements should
|
|
@@ -19,7 +21,11 @@ declare module "sap/fe/core/AppComponent" {
|
|
|
19
21
|
*
|
|
20
22
|
* - sap.fe.core.rootView.Fcl when using sap.f.routing.Router (FCL use case)
|
|
21
23
|
*/
|
|
22
|
-
export default class AppComponent
|
|
24
|
+
export default class AppComponent
|
|
25
|
+
extends UIComponent
|
|
26
|
+
implements IAsyncContentCreation {
|
|
27
|
+
__implements__sap_ui_core_IAsyncContentCreation: boolean;
|
|
28
|
+
|
|
23
29
|
constructor();
|
|
24
30
|
|
|
25
31
|
/**
|
|
@@ -52,7 +58,9 @@ declare module "sap/fe/core/AppComponent" {
|
|
|
52
58
|
*/
|
|
53
59
|
initializeFeatureToggles(): Promise<void>;
|
|
54
60
|
}
|
|
55
|
-
|
|
61
|
+
/**
|
|
62
|
+
* Describes the settings that can be provided to the AppComponent constructor.
|
|
63
|
+
*/
|
|
56
64
|
export interface $AppComponentSettings extends $UIComponentSettings {}
|
|
57
65
|
}
|
|
58
66
|
|
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.9
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/macros/library" {}
|
|
4
4
|
|
|
@@ -17,7 +17,9 @@ declare module "sap/fe/macros/MacroAPI" {
|
|
|
17
17
|
|
|
18
18
|
constructor();
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
/**
|
|
21
|
+
* Describes the settings that can be provided to the MacroAPI constructor.
|
|
22
|
+
*/
|
|
21
23
|
export interface $MacroAPISettings extends $ControlSettings {
|
|
22
24
|
/**
|
|
23
25
|
* Defines the path of the context used in the current page or block.
|
|
@@ -134,6 +136,9 @@ declare module "sap/fe/macros/chart/ChartAPI" {
|
|
|
134
136
|
text: string;
|
|
135
137
|
};
|
|
136
138
|
|
|
139
|
+
/**
|
|
140
|
+
* Describes the settings that can be provided to the Chart constructor.
|
|
141
|
+
*/
|
|
137
142
|
export interface $ChartSettings extends $MacroAPISettings {
|
|
138
143
|
/**
|
|
139
144
|
* Metadata path to the entitySet or navigationProperty
|
|
@@ -206,8 +211,14 @@ declare module "sap/fe/macros/chart/ChartAPI" {
|
|
|
206
211
|
actions?: Action[] | Action | AggregationBindingInfo | `{${string}}`;
|
|
207
212
|
}
|
|
208
213
|
|
|
214
|
+
/**
|
|
215
|
+
* Parameters of the Chart#selectionChange event.
|
|
216
|
+
*/
|
|
209
217
|
export interface Chart$SelectionChangeEventParameters {}
|
|
210
218
|
|
|
219
|
+
/**
|
|
220
|
+
* Event object of the Chart#selectionChange event.
|
|
221
|
+
*/
|
|
211
222
|
export type Chart$SelectionChangeEvent = Event<
|
|
212
223
|
Chart$SelectionChangeEventParameters,
|
|
213
224
|
Chart
|
|
@@ -234,7 +245,9 @@ declare module "sap/fe/macros/fcl/FlexibleColumnLayoutActions.block" {
|
|
|
234
245
|
export default class FlexibleColumnLayoutActions extends Control {
|
|
235
246
|
constructor();
|
|
236
247
|
}
|
|
237
|
-
|
|
248
|
+
/**
|
|
249
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutActions constructor.
|
|
250
|
+
*/
|
|
238
251
|
export interface $FlexibleColumnLayoutActionsSettings
|
|
239
252
|
extends $ControlSettings {}
|
|
240
253
|
}
|
|
@@ -378,6 +391,9 @@ declare module "sap/fe/macros/field/FieldAPI" {
|
|
|
378
391
|
textMaxLines: number;
|
|
379
392
|
};
|
|
380
393
|
|
|
394
|
+
/**
|
|
395
|
+
* Describes the settings that can be provided to the Field constructor.
|
|
396
|
+
*/
|
|
381
397
|
export interface $FieldSettings extends $MacroAPISettings {
|
|
382
398
|
/**
|
|
383
399
|
* Defines the path of the context used in the current page or block.
|
|
@@ -410,12 +426,24 @@ declare module "sap/fe/macros/field/FieldAPI" {
|
|
|
410
426
|
semanticObject?: string | PropertyBindingInfo;
|
|
411
427
|
}
|
|
412
428
|
|
|
429
|
+
/**
|
|
430
|
+
* Parameters of the Field#change event.
|
|
431
|
+
*/
|
|
413
432
|
export interface Field$ChangeEventParameters {}
|
|
414
433
|
|
|
434
|
+
/**
|
|
435
|
+
* Event object of the Field#change event.
|
|
436
|
+
*/
|
|
415
437
|
export type Field$ChangeEvent = Event<Field$ChangeEventParameters, Field>;
|
|
416
438
|
|
|
439
|
+
/**
|
|
440
|
+
* Parameters of the Field#liveChange event.
|
|
441
|
+
*/
|
|
417
442
|
export interface Field$LiveChangeEventParameters {}
|
|
418
443
|
|
|
444
|
+
/**
|
|
445
|
+
* Event object of the Field#liveChange event.
|
|
446
|
+
*/
|
|
419
447
|
export type Field$LiveChangeEvent = Event<
|
|
420
448
|
Field$LiveChangeEventParameters,
|
|
421
449
|
Field
|
|
@@ -553,6 +581,9 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
553
581
|
showMessages: boolean;
|
|
554
582
|
};
|
|
555
583
|
|
|
584
|
+
/**
|
|
585
|
+
* Describes the settings that can be provided to the FilterBar constructor.
|
|
586
|
+
*/
|
|
556
587
|
export interface $FilterBarSettings extends $MacroAPISettings {
|
|
557
588
|
/**
|
|
558
589
|
* Defines the path of the context used in the current page or block.
|
|
@@ -595,22 +626,40 @@ declare module "sap/fe/macros/filterBar/FilterBarAPI" {
|
|
|
595
626
|
| `{${string}}`;
|
|
596
627
|
}
|
|
597
628
|
|
|
629
|
+
/**
|
|
630
|
+
* Parameters of the FilterBar#afterClear event.
|
|
631
|
+
*/
|
|
598
632
|
export interface FilterBar$AfterClearEventParameters {}
|
|
599
633
|
|
|
634
|
+
/**
|
|
635
|
+
* Event object of the FilterBar#afterClear event.
|
|
636
|
+
*/
|
|
600
637
|
export type FilterBar$AfterClearEvent = Event<
|
|
601
638
|
FilterBar$AfterClearEventParameters,
|
|
602
639
|
FilterBar
|
|
603
640
|
>;
|
|
604
641
|
|
|
642
|
+
/**
|
|
643
|
+
* Parameters of the FilterBar#filterChanged event.
|
|
644
|
+
*/
|
|
605
645
|
export interface FilterBar$FilterChangedEventParameters {}
|
|
606
646
|
|
|
647
|
+
/**
|
|
648
|
+
* Event object of the FilterBar#filterChanged event.
|
|
649
|
+
*/
|
|
607
650
|
export type FilterBar$FilterChangedEvent = Event<
|
|
608
651
|
FilterBar$FilterChangedEventParameters,
|
|
609
652
|
FilterBar
|
|
610
653
|
>;
|
|
611
654
|
|
|
655
|
+
/**
|
|
656
|
+
* Parameters of the FilterBar#search event.
|
|
657
|
+
*/
|
|
612
658
|
export interface FilterBar$SearchEventParameters {}
|
|
613
659
|
|
|
660
|
+
/**
|
|
661
|
+
* Event object of the FilterBar#search event.
|
|
662
|
+
*/
|
|
614
663
|
export type FilterBar$SearchEvent = Event<
|
|
615
664
|
FilterBar$SearchEventParameters,
|
|
616
665
|
FilterBar
|
|
@@ -641,7 +690,9 @@ declare module "sap/fe/macros/form/Form.block" {
|
|
|
641
690
|
export default class Form extends Control {
|
|
642
691
|
constructor();
|
|
643
692
|
}
|
|
644
|
-
|
|
693
|
+
/**
|
|
694
|
+
* Describes the settings that can be provided to the Form constructor.
|
|
695
|
+
*/
|
|
645
696
|
export interface $FormSettings extends $ControlSettings {
|
|
646
697
|
/**
|
|
647
698
|
* Defines the path of the context used in the current page or block.
|
|
@@ -676,7 +727,9 @@ declare module "sap/fe/macros/form/FormElement.block" {
|
|
|
676
727
|
export default class FormElement extends Control {
|
|
677
728
|
constructor();
|
|
678
729
|
}
|
|
679
|
-
|
|
730
|
+
/**
|
|
731
|
+
* Describes the settings that can be provided to the FormElement constructor.
|
|
732
|
+
*/
|
|
680
733
|
export interface $FormElementSettings extends $ControlSettings {
|
|
681
734
|
/**
|
|
682
735
|
* Defines the path of the context used in the current page or block.
|
|
@@ -718,7 +771,9 @@ declare module "sap/fe/macros/kpiTag/KPITag.block" {
|
|
|
718
771
|
export default class KPITag extends Control {
|
|
719
772
|
constructor();
|
|
720
773
|
}
|
|
721
|
-
|
|
774
|
+
/**
|
|
775
|
+
* Describes the settings that can be provided to the KPITag constructor.
|
|
776
|
+
*/
|
|
722
777
|
export interface $KPITagSettings extends $ControlSettings {
|
|
723
778
|
/**
|
|
724
779
|
* The Number to be displayed.
|
|
@@ -768,7 +823,9 @@ declare module "sap/fe/macros/microchart/MicroChart.block" {
|
|
|
768
823
|
export default class MicroChart extends Control {
|
|
769
824
|
constructor();
|
|
770
825
|
}
|
|
771
|
-
|
|
826
|
+
/**
|
|
827
|
+
* Describes the settings that can be provided to the MicroChart constructor.
|
|
828
|
+
*/
|
|
772
829
|
export interface $MicroChartSettings extends $ControlSettings {}
|
|
773
830
|
}
|
|
774
831
|
|
|
@@ -805,7 +862,11 @@ declare module "sap/fe/macros/multiValueField/MultiValueField.block" {
|
|
|
805
862
|
export default class MultiValueField extends Control {
|
|
806
863
|
constructor();
|
|
807
864
|
}
|
|
808
|
-
|
|
865
|
+
/**
|
|
866
|
+
* Describes the settings that can be provided to the MultiValueField constructor.
|
|
867
|
+
*
|
|
868
|
+
* @experimental (since 1.118.0)
|
|
869
|
+
*/
|
|
809
870
|
export interface $MultiValueFieldSettings extends $ControlSettings {
|
|
810
871
|
/**
|
|
811
872
|
* The context path provided for the MultiValueField
|
|
@@ -844,7 +905,9 @@ declare module "sap/fe/macros/paginator/Paginator.block" {
|
|
|
844
905
|
export default class Paginator extends Control {
|
|
845
906
|
constructor();
|
|
846
907
|
}
|
|
847
|
-
|
|
908
|
+
/**
|
|
909
|
+
* Describes the settings that can be provided to the Paginator constructor.
|
|
910
|
+
*/
|
|
848
911
|
export interface $PaginatorSettings extends $ControlSettings {}
|
|
849
912
|
}
|
|
850
913
|
|
|
@@ -863,7 +926,9 @@ declare module "sap/fe/macros/richtexteditor/RichTextEditor.block" {
|
|
|
863
926
|
export default class RichTextEditor extends Control {
|
|
864
927
|
constructor();
|
|
865
928
|
}
|
|
866
|
-
|
|
929
|
+
/**
|
|
930
|
+
* Describes the settings that can be provided to the RichTextEditor constructor.
|
|
931
|
+
*/
|
|
867
932
|
export interface $RichTextEditorSettings extends $ControlSettings {
|
|
868
933
|
/**
|
|
869
934
|
* With the 'buttonGroups' attribute you can customize the buttons that are displayed on the toolbar of
|
|
@@ -906,7 +971,9 @@ declare module "sap/fe/macros/richtexteditor/RichTextEditorWithMetadata.block" {
|
|
|
906
971
|
export default class RichTextEditorWithMetadata extends Control {
|
|
907
972
|
constructor();
|
|
908
973
|
}
|
|
909
|
-
|
|
974
|
+
/**
|
|
975
|
+
* Describes the settings that can be provided to the RichTextEditorWithMetadata constructor.
|
|
976
|
+
*/
|
|
910
977
|
export interface $RichTextEditorWithMetadataSettings
|
|
911
978
|
extends $ControlSettings {
|
|
912
979
|
/**
|
|
@@ -971,7 +1038,9 @@ declare module "sap/fe/macros/share/Share.block" {
|
|
|
971
1038
|
export default class Share extends Control {
|
|
972
1039
|
constructor();
|
|
973
1040
|
}
|
|
974
|
-
|
|
1041
|
+
/**
|
|
1042
|
+
* Describes the settings that can be provided to the Share constructor.
|
|
1043
|
+
*/
|
|
975
1044
|
export interface $ShareSettings extends $ControlSettings {
|
|
976
1045
|
/**
|
|
977
1046
|
* Whether the share control should be visible on the screen.
|
|
@@ -1214,6 +1283,9 @@ declare module "sap/fe/macros/table/TableAPI" {
|
|
|
1214
1283
|
outbound: string;
|
|
1215
1284
|
};
|
|
1216
1285
|
|
|
1286
|
+
/**
|
|
1287
|
+
* Describes the settings that can be provided to the Table constructor.
|
|
1288
|
+
*/
|
|
1217
1289
|
export interface $TableSettings extends $MacroAPISettings {
|
|
1218
1290
|
/**
|
|
1219
1291
|
* An expression that allows you to control the 'busy' state of the table.
|
|
@@ -1370,12 +1442,24 @@ declare module "sap/fe/macros/table/TableAPI" {
|
|
|
1370
1442
|
columns?: Column[] | Column | AggregationBindingInfo | `{${string}}`;
|
|
1371
1443
|
}
|
|
1372
1444
|
|
|
1445
|
+
/**
|
|
1446
|
+
* Parameters of the Table#rowPress event.
|
|
1447
|
+
*/
|
|
1373
1448
|
export interface Table$RowPressEventParameters {}
|
|
1374
1449
|
|
|
1450
|
+
/**
|
|
1451
|
+
* Event object of the Table#rowPress event.
|
|
1452
|
+
*/
|
|
1375
1453
|
export type Table$RowPressEvent = Event<Table$RowPressEventParameters, Table>;
|
|
1376
1454
|
|
|
1455
|
+
/**
|
|
1456
|
+
* Parameters of the Table#selectionChange event.
|
|
1457
|
+
*/
|
|
1377
1458
|
export interface Table$SelectionChangeEventParameters {}
|
|
1378
1459
|
|
|
1460
|
+
/**
|
|
1461
|
+
* Event object of the Table#selectionChange event.
|
|
1462
|
+
*/
|
|
1379
1463
|
export type Table$SelectionChangeEvent = Event<
|
|
1380
1464
|
Table$SelectionChangeEventParameters,
|
|
1381
1465
|
Table
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED