@sapui5/ts-types 1.115.1 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -14
- package/package.json +1 -1
- package/types/index.d.ts +10 -3
- package/types/sap.apf.d.ts +38 -30
- package/types/sap.ca.ui.d.ts +216 -87
- package/types/sap.chart.d.ts +31 -55
- package/types/sap.collaboration.d.ts +25 -20
- package/types/sap.esh.search.ui.d.ts +117 -107
- package/types/sap.f.d.ts +229 -310
- package/types/sap.fe.core.d.ts +147 -35
- package/types/sap.fe.macros.d.ts +167 -61
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1255 -2252
- package/types/sap.insights.d.ts +251 -11
- package/types/sap.landvisz.d.ts +92 -27
- package/types/sap.m.d.ts +2631 -3400
- package/types/sap.makit.d.ts +22 -42
- package/types/sap.me.d.ts +45 -78
- package/types/sap.ndc.d.ts +41 -39
- package/types/sap.ovp.d.ts +24 -98
- package/types/sap.rules.ui.d.ts +41 -37
- package/types/sap.sac.df.d.ts +93 -5
- package/types/sap.suite.ui.commons.d.ts +1361 -1165
- package/types/sap.suite.ui.generic.template.d.ts +5 -8
- package/types/sap.suite.ui.microchart.d.ts +88 -138
- package/types/sap.tnt.d.ts +63 -27
- package/types/sap.ui.codeeditor.d.ts +11 -21
- package/types/sap.ui.commons.d.ts +335 -530
- package/types/sap.ui.comp.d.ts +919 -1032
- package/types/sap.ui.core.d.ts +1176 -1078
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +192 -13
- package/types/sap.ui.fl.d.ts +28 -87
- package/types/sap.ui.generic.app.d.ts +28 -30
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +207 -114
- package/types/sap.ui.layout.d.ts +98 -69
- package/types/sap.ui.mdc.d.ts +7003 -6826
- package/types/sap.ui.richtexteditor.d.ts +18 -31
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -14
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +169 -229
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +288 -481
- package/types/sap.ui.ux3.d.ts +343 -602
- package/types/sap.ui.vbm.d.ts +664 -764
- package/types/sap.ui.vk.d.ts +1746 -1844
- package/types/sap.ui.vtm.d.ts +417 -386
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +894 -369
- package/types/sap.ui.webc.main.d.ts +4598 -1356
- package/types/sap.uiext.inbox.d.ts +64 -103
- package/types/sap.ushell.d.ts +285 -316
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +60 -100
- package/types/sap.viz.d.ts +677 -1089
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +2 -2
- package/types/sap.zen.crosstab.d.ts +2 -2
- package/types/sap.zen.dsh.d.ts +148 -157
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -158,9 +158,7 @@ declare namespace sap {
|
|
|
158
158
|
*
|
|
159
159
|
* Fired when an aggregated view is instantiated.
|
|
160
160
|
*/
|
|
161
|
-
viewInit?: (
|
|
162
|
-
oEvent: sap.ui.base.Event<sap.uxap.BlockBase$ViewInitEventParameters>
|
|
163
|
-
) => void;
|
|
161
|
+
viewInit?: (oEvent: BlockBase$ViewInitEvent) => void;
|
|
164
162
|
}
|
|
165
163
|
|
|
166
164
|
interface $BreadCrumbsSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -540,21 +538,19 @@ declare namespace sap {
|
|
|
540
538
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
541
539
|
*/
|
|
542
540
|
titleSelectorPress?: (
|
|
543
|
-
oEvent:
|
|
541
|
+
oEvent: ObjectPageHeader$TitleSelectorPressEvent
|
|
544
542
|
) => void;
|
|
545
543
|
|
|
546
544
|
/**
|
|
547
545
|
* The event is fired when the Locked button is pressed
|
|
548
546
|
*/
|
|
549
|
-
markLockedPress?: (
|
|
550
|
-
oEvent: sap.ui.base.Event<sap.uxap.ObjectPageHeader$MarkLockedPressEventParameters>
|
|
551
|
-
) => void;
|
|
547
|
+
markLockedPress?: (oEvent: ObjectPageHeader$MarkLockedPressEvent) => void;
|
|
552
548
|
|
|
553
549
|
/**
|
|
554
550
|
* The event is fired when the unsaved changes button is pressed
|
|
555
551
|
*/
|
|
556
552
|
markChangesPress?: (
|
|
557
|
-
oEvent:
|
|
553
|
+
oEvent: ObjectPageHeader$MarkChangesPressEvent
|
|
558
554
|
) => void;
|
|
559
555
|
}
|
|
560
556
|
|
|
@@ -990,24 +986,20 @@ declare namespace sap {
|
|
|
990
986
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
991
987
|
*/
|
|
992
988
|
headerContentPinnedStateChange?: (
|
|
993
|
-
oEvent:
|
|
989
|
+
oEvent: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
|
|
994
990
|
) => void;
|
|
995
991
|
|
|
996
992
|
/**
|
|
997
993
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
998
994
|
*/
|
|
999
|
-
toggleAnchorBar?: (
|
|
1000
|
-
oEvent: sap.ui.base.Event<sap.uxap.ObjectPageLayout$ToggleAnchorBarEventParameters>
|
|
1001
|
-
) => void;
|
|
995
|
+
toggleAnchorBar?: (oEvent: ObjectPageLayout$ToggleAnchorBarEvent) => void;
|
|
1002
996
|
|
|
1003
997
|
/**
|
|
1004
998
|
* @since 1.73
|
|
1005
999
|
*
|
|
1006
1000
|
* Fired when the current section is changed by scrolling.
|
|
1007
1001
|
*/
|
|
1008
|
-
sectionChange?: (
|
|
1009
|
-
oEvent: sap.ui.base.Event<sap.uxap.ObjectPageLayout$SectionChangeEventParameters>
|
|
1010
|
-
) => void;
|
|
1002
|
+
sectionChange?: (oEvent: ObjectPageLayout$SectionChangeEvent) => void;
|
|
1011
1003
|
|
|
1012
1004
|
/**
|
|
1013
1005
|
* The event is fired when the Edit Header button is pressed
|
|
@@ -1019,9 +1011,7 @@ declare namespace sap {
|
|
|
1019
1011
|
*
|
|
1020
1012
|
* The event is fired when the selected section is changed using the navigation.
|
|
1021
1013
|
*/
|
|
1022
|
-
navigate?: (
|
|
1023
|
-
oEvent: sap.ui.base.Event<sap.uxap.ObjectPageLayout$NavigateEventParameters>
|
|
1024
|
-
) => void;
|
|
1014
|
+
navigate?: (oEvent: ObjectPageLayout$NavigateEvent) => void;
|
|
1025
1015
|
|
|
1026
1016
|
/**
|
|
1027
1017
|
* @since 1.77
|
|
@@ -1029,7 +1019,7 @@ declare namespace sap {
|
|
|
1029
1019
|
* Fired when the visibility of subsections is changed.
|
|
1030
1020
|
*/
|
|
1031
1021
|
subSectionVisibilityChange?: (
|
|
1032
|
-
oEvent:
|
|
1022
|
+
oEvent: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
1033
1023
|
) => void;
|
|
1034
1024
|
}
|
|
1035
1025
|
|
|
@@ -5494,7 +5484,7 @@ declare namespace sap {
|
|
|
5494
5484
|
*/
|
|
5495
5485
|
getPreserveHeaderStateOnScroll(): boolean;
|
|
5496
5486
|
/**
|
|
5497
|
-
* Returns the `sap.ui.core.ScrollEnablement` delegate which is used with this control.
|
|
5487
|
+
* Returns the `sap.ui.core.delegate.ScrollEnablement` delegate which is used with this control.
|
|
5498
5488
|
*
|
|
5499
5489
|
* @returns The scroll delegate instance
|
|
5500
5490
|
*/
|
|
@@ -7532,85 +7522,55 @@ declare namespace sap {
|
|
|
7532
7522
|
*/
|
|
7533
7523
|
type BlockBaseColumnLayout = string;
|
|
7534
7524
|
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7543
|
-
|
|
7544
|
-
|
|
7545
|
-
|
|
7546
|
-
|
|
7547
|
-
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
|
|
7554
|
-
|
|
7555
|
-
type $
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
|
|
7562
|
-
|
|
7563
|
-
|
|
7564
|
-
|
|
7565
|
-
type
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
7572
|
-
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
7576
|
-
|
|
7577
|
-
|
|
7578
|
-
|
|
7579
|
-
|
|
7580
|
-
|
|
7581
|
-
|
|
7582
|
-
|
|
7583
|
-
|
|
7584
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$NavigateEventParameters'
|
|
7585
|
-
* in 1.115.1 and any later releases.
|
|
7586
|
-
*/
|
|
7587
|
-
type $ObjectPageLayoutNavigateEventParameters = sap.uxap.ObjectPageLayout$NavigateEventParameters;
|
|
7588
|
-
|
|
7589
|
-
type ObjectPageLayout$NavigateEvent = sap.ui.base.Event<ObjectPageLayout$NavigateEventParameters>;
|
|
7590
|
-
|
|
7591
|
-
/**
|
|
7592
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$SectionChangeEventParameters'
|
|
7593
|
-
* in 1.115.1 and any later releases.
|
|
7594
|
-
*/
|
|
7595
|
-
type $ObjectPageLayoutSectionChangeEventParameters = sap.uxap.ObjectPageLayout$SectionChangeEventParameters;
|
|
7596
|
-
|
|
7597
|
-
type ObjectPageLayout$SectionChangeEvent = sap.ui.base.Event<ObjectPageLayout$SectionChangeEventParameters>;
|
|
7598
|
-
|
|
7599
|
-
/**
|
|
7600
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$SubSectionVisibilityChangeEventParameters'
|
|
7601
|
-
* in 1.115.1 and any later releases.
|
|
7602
|
-
*/
|
|
7603
|
-
type $ObjectPageLayoutSubSectionVisibilityChangeEventParameters = sap.uxap.ObjectPageLayout$SubSectionVisibilityChangeEventParameters;
|
|
7604
|
-
|
|
7605
|
-
type ObjectPageLayout$SubSectionVisibilityChangeEvent = sap.ui.base.Event<ObjectPageLayout$SubSectionVisibilityChangeEventParameters>;
|
|
7606
|
-
|
|
7607
|
-
/**
|
|
7608
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$ToggleAnchorBarEventParameters'
|
|
7609
|
-
* in 1.115.1 and any later releases.
|
|
7610
|
-
*/
|
|
7611
|
-
type $ObjectPageLayoutToggleAnchorBarEventParameters = sap.uxap.ObjectPageLayout$ToggleAnchorBarEventParameters;
|
|
7612
|
-
|
|
7613
|
-
type ObjectPageLayout$ToggleAnchorBarEvent = sap.ui.base.Event<ObjectPageLayout$ToggleAnchorBarEventParameters>;
|
|
7525
|
+
type BlockBase$ViewInitEvent = sap.ui.base.Event<
|
|
7526
|
+
BlockBase$ViewInitEventParameters,
|
|
7527
|
+
BlockBase
|
|
7528
|
+
>;
|
|
7529
|
+
|
|
7530
|
+
type ObjectPageHeader$MarkChangesPressEvent = sap.ui.base.Event<
|
|
7531
|
+
ObjectPageHeader$MarkChangesPressEventParameters,
|
|
7532
|
+
ObjectPageHeader
|
|
7533
|
+
>;
|
|
7534
|
+
|
|
7535
|
+
type ObjectPageHeader$MarkLockedPressEvent = sap.ui.base.Event<
|
|
7536
|
+
ObjectPageHeader$MarkLockedPressEventParameters,
|
|
7537
|
+
ObjectPageHeader
|
|
7538
|
+
>;
|
|
7539
|
+
|
|
7540
|
+
type ObjectPageHeader$TitleSelectorPressEvent = sap.ui.base.Event<
|
|
7541
|
+
ObjectPageHeader$TitleSelectorPressEventParameters,
|
|
7542
|
+
ObjectPageHeader
|
|
7543
|
+
>;
|
|
7544
|
+
|
|
7545
|
+
type ObjectPageLayout$EditHeaderButtonPressEvent = sap.ui.base.Event<
|
|
7546
|
+
ObjectPageLayout$EditHeaderButtonPressEventParameters,
|
|
7547
|
+
ObjectPageLayout
|
|
7548
|
+
>;
|
|
7549
|
+
|
|
7550
|
+
type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = sap.ui.base.Event<
|
|
7551
|
+
ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters,
|
|
7552
|
+
ObjectPageLayout
|
|
7553
|
+
>;
|
|
7554
|
+
|
|
7555
|
+
type ObjectPageLayout$NavigateEvent = sap.ui.base.Event<
|
|
7556
|
+
ObjectPageLayout$NavigateEventParameters,
|
|
7557
|
+
ObjectPageLayout
|
|
7558
|
+
>;
|
|
7559
|
+
|
|
7560
|
+
type ObjectPageLayout$SectionChangeEvent = sap.ui.base.Event<
|
|
7561
|
+
ObjectPageLayout$SectionChangeEventParameters,
|
|
7562
|
+
ObjectPageLayout
|
|
7563
|
+
>;
|
|
7564
|
+
|
|
7565
|
+
type ObjectPageLayout$SubSectionVisibilityChangeEvent = sap.ui.base.Event<
|
|
7566
|
+
ObjectPageLayout$SubSectionVisibilityChangeEventParameters,
|
|
7567
|
+
ObjectPageLayout
|
|
7568
|
+
>;
|
|
7569
|
+
|
|
7570
|
+
type ObjectPageLayout$ToggleAnchorBarEvent = sap.ui.base.Event<
|
|
7571
|
+
ObjectPageLayout$ToggleAnchorBarEventParameters,
|
|
7572
|
+
ObjectPageLayout
|
|
7573
|
+
>;
|
|
7614
7574
|
}
|
|
7615
7575
|
|
|
7616
7576
|
interface IUI5DefineDependencyNames {
|