@sapui5/types 1.116.0 → 1.117.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +114 -30
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +130 -36
- package/types/sap.fe.core.d.ts +21 -11
- package/types/sap.fe.macros.d.ts +160 -9
- 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 +282 -1118
- package/types/sap.insights.d.ts +248 -2
- package/types/sap.landvisz.d.ts +53 -14
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +33 -9
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +7 -97
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +90 -1
- package/types/sap.suite.ui.commons.d.ts +439 -108
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +69 -18
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +236 -68
- package/types/sap.ui.comp.d.ts +544 -169
- package/types/sap.ui.core.d.ts +929 -259
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +204 -3
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +71 -13
- package/types/sap.ui.layout.d.ts +95 -30
- package/types/sap.ui.mdc.d.ts +296 -98
- package/types/sap.ui.richtexteditor.d.ts +17 -5
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +118 -24
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +209 -53
- package/types/sap.ui.ux3.d.ts +220 -61
- package/types/sap.ui.vbm.d.ts +184 -61
- package/types/sap.ui.vk.d.ts +544 -139
- package/types/sap.ui.vtm.d.ts +130 -37
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +137 -35
- package/types/sap.ui.webc.main.d.ts +331 -100
- package/types/sap.uiext.inbox.d.ts +50 -14
- package/types/sap.ushell.d.ts +625 -46
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +42 -12
- package/types/sap.viz.d.ts +521 -137
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +29 -8
package/types/sap.zen.dsh.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/zen/dsh/library" {}
|
|
4
4
|
|
|
@@ -435,7 +435,10 @@ declare module "sap/zen/dsh/AnalyticGrid" {
|
|
|
435
435
|
selection?: object;
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
-
export type AnalyticGrid$SelectionChangeEvent = Event<
|
|
438
|
+
export type AnalyticGrid$SelectionChangeEvent = Event<
|
|
439
|
+
AnalyticGrid$SelectionChangeEventParameters,
|
|
440
|
+
AnalyticGrid
|
|
441
|
+
>;
|
|
439
442
|
|
|
440
443
|
export interface AnalyticGrid$StateChangeEventParameters {
|
|
441
444
|
/**
|
|
@@ -444,7 +447,10 @@ declare module "sap/zen/dsh/AnalyticGrid" {
|
|
|
444
447
|
state?: string;
|
|
445
448
|
}
|
|
446
449
|
|
|
447
|
-
export type AnalyticGrid$StateChangeEvent = Event<
|
|
450
|
+
export type AnalyticGrid$StateChangeEvent = Event<
|
|
451
|
+
AnalyticGrid$StateChangeEventParameters,
|
|
452
|
+
AnalyticGrid
|
|
453
|
+
>;
|
|
448
454
|
}
|
|
449
455
|
|
|
450
456
|
declare module "sap/zen/dsh/Dsh" {
|
|
@@ -1985,7 +1991,10 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
|
|
|
1985
1991
|
|
|
1986
1992
|
export interface ValueHelpDialog$CancelEventParameters {}
|
|
1987
1993
|
|
|
1988
|
-
export type ValueHelpDialog$CancelEvent = Event<
|
|
1994
|
+
export type ValueHelpDialog$CancelEvent = Event<
|
|
1995
|
+
ValueHelpDialog$CancelEventParameters,
|
|
1996
|
+
ValueHelpDialog
|
|
1997
|
+
>;
|
|
1989
1998
|
|
|
1990
1999
|
export interface ValueHelpDialog$OkEventParameters {
|
|
1991
2000
|
/**
|
|
@@ -1994,7 +2003,10 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
|
|
|
1994
2003
|
tokens?: Token[];
|
|
1995
2004
|
}
|
|
1996
2005
|
|
|
1997
|
-
export type ValueHelpDialog$OkEvent = Event<
|
|
2006
|
+
export type ValueHelpDialog$OkEvent = Event<
|
|
2007
|
+
ValueHelpDialog$OkEventParameters,
|
|
2008
|
+
ValueHelpDialog
|
|
2009
|
+
>;
|
|
1998
2010
|
|
|
1999
2011
|
export interface ValueHelpDialog$SelectionChangeEventParameters {
|
|
2000
2012
|
/**
|
|
@@ -2015,7 +2027,10 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
|
|
|
2015
2027
|
useDefault?: boolean;
|
|
2016
2028
|
}
|
|
2017
2029
|
|
|
2018
|
-
export type ValueHelpDialog$SelectionChangeEvent = Event<
|
|
2030
|
+
export type ValueHelpDialog$SelectionChangeEvent = Event<
|
|
2031
|
+
ValueHelpDialog$SelectionChangeEventParameters,
|
|
2032
|
+
ValueHelpDialog
|
|
2033
|
+
>;
|
|
2019
2034
|
|
|
2020
2035
|
export interface ValueHelpDialog$TokenRemoveEventParameters {
|
|
2021
2036
|
/**
|
|
@@ -2029,7 +2044,10 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
|
|
|
2029
2044
|
useDefault?: boolean;
|
|
2030
2045
|
}
|
|
2031
2046
|
|
|
2032
|
-
export type ValueHelpDialog$TokenRemoveEvent = Event<
|
|
2047
|
+
export type ValueHelpDialog$TokenRemoveEvent = Event<
|
|
2048
|
+
ValueHelpDialog$TokenRemoveEventParameters,
|
|
2049
|
+
ValueHelpDialog
|
|
2050
|
+
>;
|
|
2033
2051
|
|
|
2034
2052
|
export interface ValueHelpDialog$UpdateSelectionEventParameters {
|
|
2035
2053
|
/**
|
|
@@ -2043,7 +2061,10 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
|
|
|
2043
2061
|
useDefault?: boolean;
|
|
2044
2062
|
}
|
|
2045
2063
|
|
|
2046
|
-
export type ValueHelpDialog$UpdateSelectionEvent = Event<
|
|
2064
|
+
export type ValueHelpDialog$UpdateSelectionEvent = Event<
|
|
2065
|
+
ValueHelpDialog$UpdateSelectionEventParameters,
|
|
2066
|
+
ValueHelpDialog
|
|
2067
|
+
>;
|
|
2047
2068
|
}
|
|
2048
2069
|
|
|
2049
2070
|
declare module "sap/zen/dsh/ValueHelpRangeOperation" {
|