@sapui5/ts-types-esm 1.128.1 → 1.129.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/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +40 -0
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.core.d.ts +10 -10
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +105 -38
- package/types/sap.fe.navigation.d.ts +9 -2
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.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.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +19 -4
- package/types/sap.insights.d.ts +7 -1
- package/types/sap.m.d.ts +199 -30
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +362 -20
- package/types/sap.suite.ui.commons.d.ts +112 -2
- package/types/sap.suite.ui.generic.template.d.ts +24 -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 +446 -998
- package/types/sap.ui.core.d.ts +59 -65
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -1
- package/types/sap.ui.fl.d.ts +13 -1
- 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 +37 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +575 -28
- 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 +1 -1
- package/types/sap.ui.table.d.ts +68 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +102 -3
- 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 +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +182 -169
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- 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 +1 -1
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/sac/df/library" {}
|
|
4
4
|
|
|
@@ -79,6 +79,135 @@ declare module "sap/sac/df/changeHandler/MultiDimModelChangeHandler" {
|
|
|
79
79
|
extends $ControlSettings {}
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
+
declare module "sap/sac/df/DesignerPanel" {
|
|
83
|
+
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
84
|
+
|
|
85
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
86
|
+
|
|
87
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* DesignerPanel A panel control to design layouts / visualizations
|
|
91
|
+
*
|
|
92
|
+
* @experimental (since 1.129)
|
|
93
|
+
*/
|
|
94
|
+
export default class DesignerPanel extends Control {
|
|
95
|
+
/**
|
|
96
|
+
* Constructor for a new `MultiDimDesignerPanel` control.
|
|
97
|
+
*
|
|
98
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
99
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
100
|
+
* of the syntax of the settings object.
|
|
101
|
+
*/
|
|
102
|
+
constructor();
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Creates a new subclass of class sap.sac.df.DesignerPanel with name `sClassName` and enriches it with
|
|
106
|
+
* the information contained in `oClassInfo`.
|
|
107
|
+
*
|
|
108
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
109
|
+
*
|
|
110
|
+
*
|
|
111
|
+
* @returns Created class / constructor function
|
|
112
|
+
*/
|
|
113
|
+
static extend<T extends Record<string, unknown>>(
|
|
114
|
+
/**
|
|
115
|
+
* Name of the class being created
|
|
116
|
+
*/
|
|
117
|
+
sClassName: string,
|
|
118
|
+
/**
|
|
119
|
+
* Object literal with information about the class
|
|
120
|
+
*/
|
|
121
|
+
oClassInfo?: sap.ClassInfo<T, DesignerPanel>,
|
|
122
|
+
/**
|
|
123
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
124
|
+
* used by this class
|
|
125
|
+
*/
|
|
126
|
+
FNMetaImpl?: Function
|
|
127
|
+
): Function;
|
|
128
|
+
/**
|
|
129
|
+
* Returns a metadata object for class sap.sac.df.DesignerPanel.
|
|
130
|
+
*
|
|
131
|
+
*
|
|
132
|
+
* @returns Metadata object describing this class
|
|
133
|
+
*/
|
|
134
|
+
static getMetadata(): ElementMetadata;
|
|
135
|
+
/**
|
|
136
|
+
* Gets current value of property {@link #getHideAvailableObjects hideAvailableObjects}.
|
|
137
|
+
*
|
|
138
|
+
* Hide 'Available Objects' pane upon initial load
|
|
139
|
+
*
|
|
140
|
+
* Default value is `false`.
|
|
141
|
+
*
|
|
142
|
+
*
|
|
143
|
+
* @returns Value of property `hideAvailableObjects`
|
|
144
|
+
*/
|
|
145
|
+
getHideAvailableObjects(): boolean;
|
|
146
|
+
/**
|
|
147
|
+
* Gets current value of property {@link #getMetaPath metaPath}.
|
|
148
|
+
*
|
|
149
|
+
* Defines the relative path to visualization of the corresponding data provider in the multidimensional
|
|
150
|
+
* model.
|
|
151
|
+
*
|
|
152
|
+
*
|
|
153
|
+
* @returns Value of property `metaPath`
|
|
154
|
+
*/
|
|
155
|
+
getMetaPath(): string;
|
|
156
|
+
/**
|
|
157
|
+
* Sets a new value for property {@link #getHideAvailableObjects hideAvailableObjects}.
|
|
158
|
+
*
|
|
159
|
+
* Hide 'Available Objects' pane upon initial load
|
|
160
|
+
*
|
|
161
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
162
|
+
*
|
|
163
|
+
* Default value is `false`.
|
|
164
|
+
*
|
|
165
|
+
*
|
|
166
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
167
|
+
*/
|
|
168
|
+
setHideAvailableObjects(
|
|
169
|
+
/**
|
|
170
|
+
* New value for property `hideAvailableObjects`
|
|
171
|
+
*/
|
|
172
|
+
bHideAvailableObjects?: boolean
|
|
173
|
+
): this;
|
|
174
|
+
/**
|
|
175
|
+
* Sets a new value for property {@link #getMetaPath metaPath}.
|
|
176
|
+
*
|
|
177
|
+
* Defines the relative path to visualization of the corresponding data provider in the multidimensional
|
|
178
|
+
* model.
|
|
179
|
+
*
|
|
180
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
181
|
+
*
|
|
182
|
+
*
|
|
183
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
184
|
+
*/
|
|
185
|
+
setMetaPath(
|
|
186
|
+
/**
|
|
187
|
+
* New value for property `metaPath`
|
|
188
|
+
*/
|
|
189
|
+
sMetaPath: string
|
|
190
|
+
): this;
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* Describes the settings that can be provided to the DesignerPanel constructor.
|
|
194
|
+
*
|
|
195
|
+
* @experimental (since 1.129)
|
|
196
|
+
*/
|
|
197
|
+
export interface $DesignerPanelSettings extends $ControlSettings {
|
|
198
|
+
/**
|
|
199
|
+
* Defines the relative path to visualization of the corresponding data provider in the multidimensional
|
|
200
|
+
* model.
|
|
201
|
+
*/
|
|
202
|
+
metaPath?: string | PropertyBindingInfo;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* Hide 'Available Objects' pane upon initial load
|
|
206
|
+
*/
|
|
207
|
+
hideAvailableObjects?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
82
211
|
declare module "sap/sac/df/FilterBar" {
|
|
83
212
|
import {
|
|
84
213
|
default as FilterBar1,
|
|
@@ -1789,6 +1918,196 @@ declare module "sap/sac/df/FlexAnalysisPanel" {
|
|
|
1789
1918
|
}
|
|
1790
1919
|
}
|
|
1791
1920
|
|
|
1921
|
+
declare module "sap/sac/df/Grid" {
|
|
1922
|
+
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
1923
|
+
|
|
1924
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1925
|
+
|
|
1926
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1927
|
+
|
|
1928
|
+
/**
|
|
1929
|
+
* Grid A grid control for displaying multi-dimensional data
|
|
1930
|
+
*
|
|
1931
|
+
* @experimental (since 1.129)
|
|
1932
|
+
*/
|
|
1933
|
+
export default class Grid extends Control {
|
|
1934
|
+
/**
|
|
1935
|
+
* Constructor for a new `Grid` control.
|
|
1936
|
+
*
|
|
1937
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1938
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1939
|
+
* of the syntax of the settings object.
|
|
1940
|
+
*/
|
|
1941
|
+
constructor();
|
|
1942
|
+
|
|
1943
|
+
/**
|
|
1944
|
+
* Creates a new subclass of class sap.sac.df.Grid with name `sClassName` and enriches it with the information
|
|
1945
|
+
* contained in `oClassInfo`.
|
|
1946
|
+
*
|
|
1947
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1948
|
+
*
|
|
1949
|
+
*
|
|
1950
|
+
* @returns Created class / constructor function
|
|
1951
|
+
*/
|
|
1952
|
+
static extend<T extends Record<string, unknown>>(
|
|
1953
|
+
/**
|
|
1954
|
+
* Name of the class being created
|
|
1955
|
+
*/
|
|
1956
|
+
sClassName: string,
|
|
1957
|
+
/**
|
|
1958
|
+
* Object literal with information about the class
|
|
1959
|
+
*/
|
|
1960
|
+
oClassInfo?: sap.ClassInfo<T, Grid>,
|
|
1961
|
+
/**
|
|
1962
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1963
|
+
* used by this class
|
|
1964
|
+
*/
|
|
1965
|
+
FNMetaImpl?: Function
|
|
1966
|
+
): Function;
|
|
1967
|
+
/**
|
|
1968
|
+
* Returns a metadata object for class sap.sac.df.Grid.
|
|
1969
|
+
*
|
|
1970
|
+
*
|
|
1971
|
+
* @returns Metadata object describing this class
|
|
1972
|
+
*/
|
|
1973
|
+
static getMetadata(): ElementMetadata;
|
|
1974
|
+
/**
|
|
1975
|
+
* Gets current value of property {@link #getMetaPath metaPath}.
|
|
1976
|
+
*
|
|
1977
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
1978
|
+
*
|
|
1979
|
+
*
|
|
1980
|
+
* @returns Value of property `metaPath`
|
|
1981
|
+
*/
|
|
1982
|
+
getMetaPath(): string;
|
|
1983
|
+
/**
|
|
1984
|
+
* Gets current value of property {@link #getShowStatusBar showStatusBar}.
|
|
1985
|
+
*
|
|
1986
|
+
* Show / hide status bar
|
|
1987
|
+
*
|
|
1988
|
+
* Default value is `false`.
|
|
1989
|
+
*
|
|
1990
|
+
*
|
|
1991
|
+
* @returns Value of property `showStatusBar`
|
|
1992
|
+
*/
|
|
1993
|
+
getShowStatusBar(): boolean;
|
|
1994
|
+
/**
|
|
1995
|
+
* Gets current value of property {@link #getShowTitle showTitle}.
|
|
1996
|
+
*
|
|
1997
|
+
* Show / hide title
|
|
1998
|
+
*
|
|
1999
|
+
* Default value is `false`.
|
|
2000
|
+
*
|
|
2001
|
+
*
|
|
2002
|
+
* @returns Value of property `showTitle`
|
|
2003
|
+
*/
|
|
2004
|
+
getShowTitle(): boolean;
|
|
2005
|
+
/**
|
|
2006
|
+
* Gets current value of property {@link #getTitle title}.
|
|
2007
|
+
*
|
|
2008
|
+
* Title
|
|
2009
|
+
*
|
|
2010
|
+
*
|
|
2011
|
+
* @returns Value of property `title`
|
|
2012
|
+
*/
|
|
2013
|
+
getTitle(): string;
|
|
2014
|
+
/**
|
|
2015
|
+
* Sets a new value for property {@link #getMetaPath metaPath}.
|
|
2016
|
+
*
|
|
2017
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
2018
|
+
*
|
|
2019
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2020
|
+
*
|
|
2021
|
+
*
|
|
2022
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2023
|
+
*/
|
|
2024
|
+
setMetaPath(
|
|
2025
|
+
/**
|
|
2026
|
+
* New value for property `metaPath`
|
|
2027
|
+
*/
|
|
2028
|
+
sMetaPath: string
|
|
2029
|
+
): this;
|
|
2030
|
+
/**
|
|
2031
|
+
* Sets a new value for property {@link #getShowStatusBar showStatusBar}.
|
|
2032
|
+
*
|
|
2033
|
+
* Show / hide status bar
|
|
2034
|
+
*
|
|
2035
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2036
|
+
*
|
|
2037
|
+
* Default value is `false`.
|
|
2038
|
+
*
|
|
2039
|
+
*
|
|
2040
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2041
|
+
*/
|
|
2042
|
+
setShowStatusBar(
|
|
2043
|
+
/**
|
|
2044
|
+
* New value for property `showStatusBar`
|
|
2045
|
+
*/
|
|
2046
|
+
bShowStatusBar?: boolean
|
|
2047
|
+
): this;
|
|
2048
|
+
/**
|
|
2049
|
+
* Sets a new value for property {@link #getShowTitle showTitle}.
|
|
2050
|
+
*
|
|
2051
|
+
* Show / hide title
|
|
2052
|
+
*
|
|
2053
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2054
|
+
*
|
|
2055
|
+
* Default value is `false`.
|
|
2056
|
+
*
|
|
2057
|
+
*
|
|
2058
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2059
|
+
*/
|
|
2060
|
+
setShowTitle(
|
|
2061
|
+
/**
|
|
2062
|
+
* New value for property `showTitle`
|
|
2063
|
+
*/
|
|
2064
|
+
bShowTitle?: boolean
|
|
2065
|
+
): this;
|
|
2066
|
+
/**
|
|
2067
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
2068
|
+
*
|
|
2069
|
+
* Title
|
|
2070
|
+
*
|
|
2071
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2072
|
+
*
|
|
2073
|
+
*
|
|
2074
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2075
|
+
*/
|
|
2076
|
+
setTitle(
|
|
2077
|
+
/**
|
|
2078
|
+
* New value for property `title`
|
|
2079
|
+
*/
|
|
2080
|
+
sTitle: string
|
|
2081
|
+
): this;
|
|
2082
|
+
}
|
|
2083
|
+
/**
|
|
2084
|
+
* Describes the settings that can be provided to the Grid constructor.
|
|
2085
|
+
*
|
|
2086
|
+
* @experimental (since 1.129)
|
|
2087
|
+
*/
|
|
2088
|
+
export interface $GridSettings extends $ControlSettings {
|
|
2089
|
+
/**
|
|
2090
|
+
* Show / hide status bar
|
|
2091
|
+
*/
|
|
2092
|
+
showStatusBar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2093
|
+
|
|
2094
|
+
/**
|
|
2095
|
+
* Show / hide title
|
|
2096
|
+
*/
|
|
2097
|
+
showTitle?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2098
|
+
|
|
2099
|
+
/**
|
|
2100
|
+
* Title
|
|
2101
|
+
*/
|
|
2102
|
+
title?: string | PropertyBindingInfo;
|
|
2103
|
+
|
|
2104
|
+
/**
|
|
2105
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
2106
|
+
*/
|
|
2107
|
+
metaPath?: string | PropertyBindingInfo;
|
|
2108
|
+
}
|
|
2109
|
+
}
|
|
2110
|
+
|
|
1792
2111
|
declare module "sap/sac/df/model/AxesLayout" {
|
|
1793
2112
|
import BaseObject from "sap/ui/base/Object";
|
|
1794
2113
|
|
|
@@ -2407,6 +2726,12 @@ declare module "sap/sac/df/model/Documents" {
|
|
|
2407
2726
|
*/
|
|
2408
2727
|
protected constructor();
|
|
2409
2728
|
|
|
2729
|
+
ActiveDocumentsDirectory: undefined;
|
|
2730
|
+
|
|
2731
|
+
DocumentsSupportType: undefined;
|
|
2732
|
+
|
|
2733
|
+
IsBasedOnCDSView: undefined;
|
|
2734
|
+
|
|
2410
2735
|
/**
|
|
2411
2736
|
* Creates a new subclass of class sap.sac.df.model.Documents with name `sClassName` and enriches it with
|
|
2412
2737
|
* the information contained in `oClassInfo`.
|
|
@@ -2452,7 +2777,11 @@ declare module "sap/sac/df/model/Documents" {
|
|
|
2452
2777
|
/**
|
|
2453
2778
|
* the content of the document
|
|
2454
2779
|
*/
|
|
2455
|
-
sContent: undefined
|
|
2780
|
+
sContent: undefined,
|
|
2781
|
+
/**
|
|
2782
|
+
* properties (ideally as key-value-pair)
|
|
2783
|
+
*/
|
|
2784
|
+
oProperties: undefined
|
|
2456
2785
|
): Promise<object>;
|
|
2457
2786
|
/**
|
|
2458
2787
|
* Create a document in the document store
|
|
@@ -2468,7 +2797,11 @@ declare module "sap/sac/df/model/Documents" {
|
|
|
2468
2797
|
/**
|
|
2469
2798
|
* the content of the document
|
|
2470
2799
|
*/
|
|
2471
|
-
sContent: undefined
|
|
2800
|
+
sContent: undefined,
|
|
2801
|
+
/**
|
|
2802
|
+
* properties (ideally as key-value-pair)
|
|
2803
|
+
*/
|
|
2804
|
+
oProperties: undefined
|
|
2472
2805
|
): Promise<boolean>;
|
|
2473
2806
|
/**
|
|
2474
2807
|
* Creates a document ID for a data cell in the result set
|
|
@@ -2586,22 +2919,6 @@ declare module "sap/sac/df/model/Documents" {
|
|
|
2586
2919
|
* @returns if write (create and change) access is supported
|
|
2587
2920
|
*/
|
|
2588
2921
|
supportsWrite(): boolean;
|
|
2589
|
-
/**
|
|
2590
|
-
* Update a document in the document store
|
|
2591
|
-
*
|
|
2592
|
-
*
|
|
2593
|
-
* @returns a promise which resolves to true if update operation is successful, otherwise false.
|
|
2594
|
-
*/
|
|
2595
|
-
updateDocument(
|
|
2596
|
-
/**
|
|
2597
|
-
* the document ID
|
|
2598
|
-
*/
|
|
2599
|
-
sDocumentId: undefined,
|
|
2600
|
-
/**
|
|
2601
|
-
* the content of the document
|
|
2602
|
-
*/
|
|
2603
|
-
sContent: undefined
|
|
2604
|
-
): Promise<boolean>;
|
|
2605
2922
|
}
|
|
2606
2923
|
}
|
|
2607
2924
|
|
|
@@ -2739,6 +3056,14 @@ declare module "sap/sac/df/model/MultiDimModel" {
|
|
|
2739
3056
|
*/
|
|
2740
3057
|
mSettings?: object
|
|
2741
3058
|
);
|
|
3059
|
+
/**
|
|
3060
|
+
* Configuration
|
|
3061
|
+
*/
|
|
3062
|
+
Configuration: Record<
|
|
3063
|
+
string,
|
|
3064
|
+
/* was: sap.sac.df.model.Configuration */ any
|
|
3065
|
+
>;
|
|
3066
|
+
|
|
2742
3067
|
/**
|
|
2743
3068
|
* Data Providers
|
|
2744
3069
|
*/
|
|
@@ -2937,6 +3262,13 @@ declare module "sap/sac/df/model/MultiDimModel" {
|
|
|
2937
3262
|
*/
|
|
2938
3263
|
oParameters?: object
|
|
2939
3264
|
): this;
|
|
3265
|
+
/**
|
|
3266
|
+
* Get configuration
|
|
3267
|
+
*
|
|
3268
|
+
*
|
|
3269
|
+
* @returns Configuration object
|
|
3270
|
+
*/
|
|
3271
|
+
getConfiguration(): /* was: sap.sac.df.model.Configuration */ any;
|
|
2940
3272
|
/**
|
|
2941
3273
|
* Get a data provider
|
|
2942
3274
|
*
|
|
@@ -3317,7 +3649,7 @@ declare module "sap/sac/df/model/VariableGroup" {
|
|
|
3317
3649
|
*
|
|
3318
3650
|
* "Name": "",
|
|
3319
3651
|
* "MergedVariable": { },
|
|
3320
|
-
* "Rule: function () {}
|
|
3652
|
+
* "Rule": function () {}
|
|
3321
3653
|
* ```
|
|
3322
3654
|
*
|
|
3323
3655
|
*
|
|
@@ -3522,6 +3854,8 @@ declare module "sap/sac/df/model/Visualization" {
|
|
|
3522
3854
|
declare module "sap/sac/df/types/DataSourceType" {
|
|
3523
3855
|
/**
|
|
3524
3856
|
* Type of a data source
|
|
3857
|
+
*
|
|
3858
|
+
* @experimental (since 1.89)
|
|
3525
3859
|
*/
|
|
3526
3860
|
enum DataSourceType {
|
|
3527
3861
|
/**
|
|
@@ -3551,6 +3885,8 @@ declare module "sap/sac/df/types/DataSourceType" {
|
|
|
3551
3885
|
declare module "sap/sac/df/types/DocumentsSupportType" {
|
|
3552
3886
|
/**
|
|
3553
3887
|
* Documents support type
|
|
3888
|
+
*
|
|
3889
|
+
* @experimental (since 1.120)
|
|
3554
3890
|
*/
|
|
3555
3891
|
enum DocumentsSupportType {
|
|
3556
3892
|
/**
|
|
@@ -3576,6 +3912,8 @@ declare module "sap/sac/df/types/DocumentsSupportType" {
|
|
|
3576
3912
|
declare module "sap/sac/df/types/SystemType" {
|
|
3577
3913
|
/**
|
|
3578
3914
|
* System Type of an InA System
|
|
3915
|
+
*
|
|
3916
|
+
* @experimental (since 1.89)
|
|
3579
3917
|
*/
|
|
3580
3918
|
enum SystemType {
|
|
3581
3919
|
/**
|
|
@@ -3602,6 +3940,8 @@ declare namespace sap {
|
|
|
3602
3940
|
interface IUI5DefineDependencyNames {
|
|
3603
3941
|
"sap/sac/df/changeHandler/MultiDimModelChangeHandler": undefined;
|
|
3604
3942
|
|
|
3943
|
+
"sap/sac/df/DesignerPanel": undefined;
|
|
3944
|
+
|
|
3605
3945
|
"sap/sac/df/FilterBar": undefined;
|
|
3606
3946
|
|
|
3607
3947
|
"sap/sac/df/FilterField": undefined;
|
|
@@ -3612,6 +3952,8 @@ declare namespace sap {
|
|
|
3612
3952
|
|
|
3613
3953
|
"sap/sac/df/FlexAnalysisPanel": undefined;
|
|
3614
3954
|
|
|
3955
|
+
"sap/sac/df/Grid": undefined;
|
|
3956
|
+
|
|
3615
3957
|
"sap/sac/df/library": undefined;
|
|
3616
3958
|
|
|
3617
3959
|
"sap/sac/df/model/AxesLayout": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -23,7 +23,7 @@ declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
|
23
23
|
/**
|
|
24
24
|
* Parameter object which contains the information to be shared
|
|
25
25
|
*/
|
|
26
|
-
oParams:
|
|
26
|
+
oParams: object
|
|
27
27
|
): Promise<any>;
|
|
28
28
|
/**
|
|
29
29
|
* Provides a list of all collaboration options
|
|
@@ -5551,6 +5551,21 @@ declare module "sap/suite/ui/commons/ChartContainer" {
|
|
|
5551
5551
|
* Dimension Selects.
|
|
5552
5552
|
*/
|
|
5553
5553
|
getDimensionSelectors(): Control[];
|
|
5554
|
+
/**
|
|
5555
|
+
* Gets current value of property {@link #getEnableBrowserFullScreen enableBrowserFullScreen}.
|
|
5556
|
+
*
|
|
5557
|
+
* If set to `true`, the chart and the toolbar are going to be displayed in fullscreen using the browser
|
|
5558
|
+
* fullscreen APIs. In fullscreen mode {@link sap.m.Dialog}, {@link sap.m.Popover}, {@link sap.m.ResponsivePopover }
|
|
5559
|
+
* and {@link sap.m.SelectionDetails} can be displayed over the ChartContainer. In order to display, the
|
|
5560
|
+
* controls are to be added as dependents of the ChartContainer.
|
|
5561
|
+
*
|
|
5562
|
+
* Default value is `false`.
|
|
5563
|
+
*
|
|
5564
|
+
* @since 1.129.0
|
|
5565
|
+
*
|
|
5566
|
+
* @returns Value of property `enableBrowserFullScreen`
|
|
5567
|
+
*/
|
|
5568
|
+
getEnableBrowserFullScreen(): boolean;
|
|
5554
5569
|
/**
|
|
5555
5570
|
* Gets current value of property {@link #getEnableScroll enableScroll}.
|
|
5556
5571
|
*
|
|
@@ -5887,6 +5902,28 @@ declare module "sap/suite/ui/commons/ChartContainer" {
|
|
|
5887
5902
|
*/
|
|
5888
5903
|
bAutoAdjustHeight?: boolean
|
|
5889
5904
|
): this;
|
|
5905
|
+
/**
|
|
5906
|
+
* Sets a new value for property {@link #getEnableBrowserFullScreen enableBrowserFullScreen}.
|
|
5907
|
+
*
|
|
5908
|
+
* If set to `true`, the chart and the toolbar are going to be displayed in fullscreen using the browser
|
|
5909
|
+
* fullscreen APIs. In fullscreen mode {@link sap.m.Dialog}, {@link sap.m.Popover}, {@link sap.m.ResponsivePopover }
|
|
5910
|
+
* and {@link sap.m.SelectionDetails} can be displayed over the ChartContainer. In order to display, the
|
|
5911
|
+
* controls are to be added as dependents of the ChartContainer.
|
|
5912
|
+
*
|
|
5913
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5914
|
+
*
|
|
5915
|
+
* Default value is `false`.
|
|
5916
|
+
*
|
|
5917
|
+
* @since 1.129.0
|
|
5918
|
+
*
|
|
5919
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5920
|
+
*/
|
|
5921
|
+
setEnableBrowserFullScreen(
|
|
5922
|
+
/**
|
|
5923
|
+
* New value for property `enableBrowserFullScreen`
|
|
5924
|
+
*/
|
|
5925
|
+
bEnableBrowserFullScreen?: boolean
|
|
5926
|
+
): this;
|
|
5890
5927
|
/**
|
|
5891
5928
|
* Sets a new value for property {@link #getEnableScroll enableScroll}.
|
|
5892
5929
|
*
|
|
@@ -6197,6 +6234,16 @@ declare module "sap/suite/ui/commons/ChartContainer" {
|
|
|
6197
6234
|
*/
|
|
6198
6235
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
6199
6236
|
|
|
6237
|
+
/**
|
|
6238
|
+
* If set to `true`, the chart and the toolbar are going to be displayed in fullscreen using the browser
|
|
6239
|
+
* fullscreen APIs. In fullscreen mode {@link sap.m.Dialog}, {@link sap.m.Popover}, {@link sap.m.ResponsivePopover }
|
|
6240
|
+
* and {@link sap.m.SelectionDetails} can be displayed over the ChartContainer. In order to display, the
|
|
6241
|
+
* controls are to be added as dependents of the ChartContainer.
|
|
6242
|
+
*
|
|
6243
|
+
* @since 1.129.0
|
|
6244
|
+
*/
|
|
6245
|
+
enableBrowserFullScreen?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6246
|
+
|
|
6200
6247
|
/**
|
|
6201
6248
|
* Dimension Selects.
|
|
6202
6249
|
*/
|
|
@@ -7394,6 +7441,20 @@ declare module "sap/suite/ui/commons/collaboration/ServiceContainer" {
|
|
|
7394
7441
|
* @since 1.108
|
|
7395
7442
|
*/
|
|
7396
7443
|
interface ServiceContainer {
|
|
7444
|
+
/**
|
|
7445
|
+
* Method that returns the collaboration service object as 'active' on the system. Microsoft Teams is supported
|
|
7446
|
+
* as a collaboration option and must be enabled using the communication service SAP_COM_0860. The type
|
|
7447
|
+
* definition and class are only available internally and are not intended for external consumers.
|
|
7448
|
+
*
|
|
7449
|
+
*
|
|
7450
|
+
* @returns Returns the promise that is resolved to an object containing the helper service and the Collaboration
|
|
7451
|
+
* manager service.
|
|
7452
|
+
*/
|
|
7453
|
+
getCollaborationServices(): Promise<{
|
|
7454
|
+
oTeamsHelperService: BaseHelperService;
|
|
7455
|
+
|
|
7456
|
+
oCMHelperService: BaseHelperService;
|
|
7457
|
+
}>;
|
|
7397
7458
|
/**
|
|
7398
7459
|
* Method that returns the collaboration service object as 'active' on the system. Microsoft Teams is supported
|
|
7399
7460
|
* as a collaboration option and must be enabled using the communication service SAP_COM_0860. The type
|
|
@@ -51143,6 +51204,51 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
|
|
|
51143
51204
|
}
|
|
51144
51205
|
|
|
51145
51206
|
declare namespace sap {
|
|
51207
|
+
namespace ui {
|
|
51208
|
+
namespace commons {
|
|
51209
|
+
namespace channels {
|
|
51210
|
+
class MessageChannel extends /* was: sap.ui.base.Object */ Object {
|
|
51211
|
+
/**
|
|
51212
|
+
* Facilitates communication between message providers and consumers in FLP and embedded iframes.
|
|
51213
|
+
*/
|
|
51214
|
+
constructor();
|
|
51215
|
+
|
|
51216
|
+
/**
|
|
51217
|
+
* Creates a new subclass of class sap.ui.commons.channels.MessageChannel with name `sClassName` and enriches
|
|
51218
|
+
* it with the information contained in `oClassInfo`.
|
|
51219
|
+
*
|
|
51220
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
51221
|
+
*
|
|
51222
|
+
*
|
|
51223
|
+
* @returns Created class / constructor function
|
|
51224
|
+
*/
|
|
51225
|
+
static extend<T extends Record<string, unknown>>(
|
|
51226
|
+
/**
|
|
51227
|
+
* Name of the class being created
|
|
51228
|
+
*/
|
|
51229
|
+
sClassName: string,
|
|
51230
|
+
/**
|
|
51231
|
+
* Object literal with information about the class
|
|
51232
|
+
*/
|
|
51233
|
+
oClassInfo?: ClassInfo<T, MessageChannel>,
|
|
51234
|
+
/**
|
|
51235
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
51236
|
+
* used by this class
|
|
51237
|
+
*/
|
|
51238
|
+
FNMetaImpl?: Function
|
|
51239
|
+
): Function;
|
|
51240
|
+
/**
|
|
51241
|
+
* Returns a metadata object for class sap.ui.commons.channels.MessageChannel.
|
|
51242
|
+
*
|
|
51243
|
+
*
|
|
51244
|
+
* @returns Metadata object describing this class
|
|
51245
|
+
*/
|
|
51246
|
+
static getMetadata(): import("sap/ui/base/Metadata").default;
|
|
51247
|
+
}
|
|
51248
|
+
}
|
|
51249
|
+
}
|
|
51250
|
+
}
|
|
51251
|
+
|
|
51146
51252
|
interface IUI5DefineDependencyNames {
|
|
51147
51253
|
"sap/suite/ui/commons/AriaProperties": undefined;
|
|
51148
51254
|
|
|
@@ -51178,8 +51284,12 @@ declare namespace sap {
|
|
|
51178
51284
|
|
|
51179
51285
|
"sap/suite/ui/commons/collaboration/BaseHelperService": undefined;
|
|
51180
51286
|
|
|
51287
|
+
"sap/suite/ui/commons/collaboration/channels/MessageChannel": undefined;
|
|
51288
|
+
|
|
51181
51289
|
"sap/suite/ui/commons/collaboration/CollaborationHelper": undefined;
|
|
51182
51290
|
|
|
51291
|
+
"sap/suite/ui/commons/collaboration/CollaborationManagerService": undefined;
|
|
51292
|
+
|
|
51183
51293
|
"sap/suite/ui/commons/collaboration/ServiceContainer": undefined;
|
|
51184
51294
|
|
|
51185
51295
|
"sap/suite/ui/commons/collaboration/TeamsHelperService": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/generic/template/library" {
|
|
4
4
|
/**
|
|
@@ -1357,6 +1357,13 @@ declare module "sap/suite/ui/generic/template/lib/AppComponent" {
|
|
|
1357
1357
|
* @returns Value of property `enableAutoColumnWidthForSmartTable`
|
|
1358
1358
|
*/
|
|
1359
1359
|
getEnableAutoColumnWidthForSmartTable(): boolean;
|
|
1360
|
+
/**
|
|
1361
|
+
* Gets current value of property {@link #getExternalNavigationSettings externalNavigationSettings}.
|
|
1362
|
+
*
|
|
1363
|
+
*
|
|
1364
|
+
* @returns Value of property `externalNavigationSettings`
|
|
1365
|
+
*/
|
|
1366
|
+
getExternalNavigationSettings(): object;
|
|
1360
1367
|
/**
|
|
1361
1368
|
* Gets current value of property {@link #getFlexibleColumnLayout flexibleColumnLayout}.
|
|
1362
1369
|
*
|
|
@@ -1521,6 +1528,20 @@ declare module "sap/suite/ui/generic/template/lib/AppComponent" {
|
|
|
1521
1528
|
*/
|
|
1522
1529
|
bEnableAutoColumnWidthForSmartTable?: boolean
|
|
1523
1530
|
): this;
|
|
1531
|
+
/**
|
|
1532
|
+
* Sets a new value for property {@link #getExternalNavigationSettings externalNavigationSettings}.
|
|
1533
|
+
*
|
|
1534
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1535
|
+
*
|
|
1536
|
+
*
|
|
1537
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1538
|
+
*/
|
|
1539
|
+
setExternalNavigationSettings(
|
|
1540
|
+
/**
|
|
1541
|
+
* New value for property `externalNavigationSettings`
|
|
1542
|
+
*/
|
|
1543
|
+
oExternalNavigationSettings?: object
|
|
1544
|
+
): this;
|
|
1524
1545
|
/**
|
|
1525
1546
|
* Sets a new value for property {@link #getFlexibleColumnLayout flexibleColumnLayout}.
|
|
1526
1547
|
*
|
|
@@ -1751,6 +1772,8 @@ declare module "sap/suite/ui/generic/template/lib/AppComponent" {
|
|
|
1751
1772
|
|
|
1752
1773
|
mergeObjectPageSectionTitle?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1753
1774
|
|
|
1775
|
+
externalNavigationSettings?: object | PropertyBindingInfo | `{${string}}`;
|
|
1776
|
+
|
|
1754
1777
|
pageDataLoaded?: (oEvent: Event) => void;
|
|
1755
1778
|
}
|
|
1756
1779
|
|
package/types/sap.tnt.d.ts
CHANGED